< prev index next >

src/hotspot/share/opto/node.hpp

Print this page

        

*** 71,80 **** --- 71,81 ---- class EncodePNode; class EncodePKlassNode; class FastLockNode; class FastUnlockNode; class IfNode; + class IfProjNode; class IfFalseNode; class IfTrueNode; class InitializeNode; class JVMState; class JumpNode;
*** 670,681 **** DEFINE_CLASS_ID(EncodePKlass, EncodeNarrowPtr, 1) DEFINE_CLASS_ID(Proj, Node, 3) DEFINE_CLASS_ID(CatchProj, Proj, 0) DEFINE_CLASS_ID(JumpProj, Proj, 1) ! DEFINE_CLASS_ID(IfTrue, Proj, 2) ! DEFINE_CLASS_ID(IfFalse, Proj, 3) DEFINE_CLASS_ID(Parm, Proj, 4) DEFINE_CLASS_ID(MachProj, Proj, 5) DEFINE_CLASS_ID(Mem, Node, 4) DEFINE_CLASS_ID(Load, Mem, 0) --- 671,683 ---- DEFINE_CLASS_ID(EncodePKlass, EncodeNarrowPtr, 1) DEFINE_CLASS_ID(Proj, Node, 3) DEFINE_CLASS_ID(CatchProj, Proj, 0) DEFINE_CLASS_ID(JumpProj, Proj, 1) ! DEFINE_CLASS_ID(IfProj, Proj, 2) ! DEFINE_CLASS_ID(IfTrue, IfProj, 0) ! DEFINE_CLASS_ID(IfFalse, IfProj, 1) DEFINE_CLASS_ID(Parm, Proj, 4) DEFINE_CLASS_ID(MachProj, Proj, 5) DEFINE_CLASS_ID(Mem, Node, 4) DEFINE_CLASS_ID(Load, Mem, 0)
*** 810,819 **** --- 812,822 ---- DEFINE_CLASS_QUERY(EncodePKlass) DEFINE_CLASS_QUERY(FastLock) DEFINE_CLASS_QUERY(FastUnlock) DEFINE_CLASS_QUERY(If) DEFINE_CLASS_QUERY(RangeCheck) + DEFINE_CLASS_QUERY(IfProj) DEFINE_CLASS_QUERY(IfFalse) DEFINE_CLASS_QUERY(IfTrue) DEFINE_CLASS_QUERY(Initialize) DEFINE_CLASS_QUERY(Jump) DEFINE_CLASS_QUERY(JumpProj)
< prev index next >