if (s instanceof IRExecutionScope)
c = ((IRExecutionScope)s).getCFG();
if (c != null) {
System.out.println("\nGraph:\n" + c.getGraph().toString());
System.out.println("\nInstructions:\n" + c.toStringInstrs());
} else if (s instanceof IRMethod) {
IRMethod m = (IRMethod)s;
System.out.println("\n instrs:\n" + m.toStringInstrs());
System.out.println("\n live variables:\n" + m.toStringVariables());
}