comparison graal/GraalCompiler/src/com/sun/c1x/ir/ExceptionDispatch.java @ 2793:d3fc4fe063bf

Rename BlockBegin to Merge, remove some Block related member from it. Made CFGPrinter work with the Block class from schedule
author Gilles Duboscq <gilles.duboscq@oracle.com>
date Fri, 27 May 2011 11:08:55 +0200
parents 93ec3f067420
children bd17ac598c6e
comparison
equal deleted inserted replaced
2792:2f3258e3800e 2793:d3fc4fe063bf
112 print(exception()). 112 print(exception()).
113 print(' '). 113 print(' ').
114 print("instanceof"). 114 print("instanceof").
115 print(' '). 115 print(' ').
116 print(catchType().name()). 116 print(catchType().name()).
117 print(" then B"). 117 print(" then ").
118 print(blockSuccessors().get(1).blockID). 118 print(blockSuccessors().get(1).toString()).
119 print(" else B"). 119 print(" else B").
120 print(blockSuccessors().get(0).blockID); 120 print(blockSuccessors().get(0).toString());
121 } 121 }
122 122
123 @Override 123 @Override
124 public String shortName() { 124 public String shortName() {
125 return "Dispatch " + catchType().name(); 125 return "Dispatch " + catchType().name();