comparison graal/GraalCompiler/src/com/sun/c1x/ir/If.java @ 2581:4a36a0bd6d18

added GraalGraph to classpath, Node as superclass of Value
author Lukas Stadler <lukas.stadler@jku.at>
date Thu, 05 May 2011 13:27:48 +0200
parents 4a016ff4d2df
children 0c6564c254af
comparison
equal deleted inserted replaced
2579:4984c8ebd6c7 2581:4a36a0bd6d18
169 print(' '). 169 print(' ').
170 print(condition().operator). 170 print(condition().operator).
171 print(' '). 171 print(' ').
172 print(y()). 172 print(y()).
173 print(" then B"). 173 print(" then B").
174 print(successors().get(0).blockID). 174 print(blockSuccessors().get(0).blockID).
175 print(" else B"). 175 print(" else B").
176 print(successors().get(1).blockID); 176 print(blockSuccessors().get(1).blockID);
177 if (isSafepoint()) { 177 if (isSafepoint()) {
178 out.print(" (safepoint)"); 178 out.print(" (safepoint)");
179 } 179 }
180 } 180 }
181 } 181 }