Lines Matching defs:LIR_OpBranch
833 class LIR_OpBranch;
1092 virtual LIR_OpBranch* as_OpBranch() { return NULL; }
1355 class LIR_OpBranch: public LIR_Op {
1367 LIR_OpBranch(LIR_Condition cond, BasicType type, Label* lbl)
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_always, T_ILLEGAL, stub));
2101 void branch(LIR_Condition cond, BasicType type, Label* lbl) { append(new LIR_OpBranch(cond, type, lbl)); }
2104 append(new LIR_OpBranch(cond, type, block));
2108 append(new LIR_OpBranch(cond, type, stub));
2112 append(new LIR_OpBranch(cond, type, block, unordered));