Searched defs:LIR_OpBranch (Results 1 - 2 of 2) sorted by relevance

/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_LIR.cpp296 LIR_OpBranch::LIR_OpBranch(LIR_Condition cond, BasicType type, BlockBegin* block) function in class:LIR_OpBranch
306 LIR_OpBranch::LIR_OpBranch(LIR_Condition cond, BasicType type, CodeStub* stub) : function in class:LIR_OpBranch
316 LIR_OpBranch::LIR_OpBranch(LIR_Condition cond, BasicType type, BlockBegin* block, BlockBegin* ublock) function in class:LIR_OpBranch
327 void LIR_OpBranch::change_block(BlockBegin* b) {
335 void LIR_OpBranch::change_ublock(BlockBegin* b) {
340 void LIR_OpBranch::negate_cond() {
558 // LIR_OpBranch;
[all...]
H A Dc1_LIR.hpp833 class LIR_OpBranch;
1092 virtual LIR_OpBranch* as_OpBranch() { return NULL; }
1355 class LIR_OpBranch: public LIR_Op { class in inherits:LIR_Op
1367 LIR_OpBranch(LIR_Condition cond, BasicType type, Label* lbl) function in class:LIR_OpBranch
1376 LIR_OpBranch(LIR_Condition cond, BasicType type, BlockBegin* block);
1377 LIR_OpBranch(LIR_Condition cond, BasicType type, CodeStub* stub);
1380 LIR_OpBranch(LIR_Condition cond, BasicType type, BlockBegin* block, BlockBegin* ublock);
1394 virtual LIR_OpBranch* as_OpBranch() { return this; }
2096 append(new LIR_OpBranch(lir_cond_always, T_ILLEGAL, block));
2099 append(new LIR_OpBranch(lir_cond_alway
[all...]

Completed in 1766 milliseconds