Lines Matching refs:InstARM32Br
1099 class InstARM32Br : public InstARM32Pred {
1100 InstARM32Br() = delete;
1101 InstARM32Br(const InstARM32Br &) = delete;
1102 InstARM32Br &operator=(const InstARM32Br &) = delete;
1106 static InstARM32Br *create(Cfg *Func, CfgNode *TargetTrue, in create()
1110 return new (Func->allocate<InstARM32Br>()) in create()
1111 InstARM32Br(Func, TargetTrue, TargetFalse, NoLabel, Predicate); in create()
1114 static InstARM32Br *create(Cfg *Func, CfgNode *Target) { in create()
1117 return new (Func->allocate<InstARM32Br>()) in create()
1118 InstARM32Br(Func, NoCondTarget, Target, NoLabel, CondARM32::AL); in create()
1123 static InstARM32Br *create(Cfg *Func, CfgNode *Target, in create()
1128 return new (Func->allocate<InstARM32Br>()) in create()
1129 InstARM32Br(Func, Target, NoUncondTarget, NoLabel, Predicate); in create()
1133 static InstARM32Br *create(Cfg *Func, InstARM32Label *Label, in create()
1137 return new (Func->allocate<InstARM32Br>()) in create()
1138 InstARM32Br(Func, NoCondTarget, NoUncondTarget, Label, Predicate); in create()
1163 InstARM32Br(Cfg *Func, const CfgNode *TargetTrue, const CfgNode *TargetFalse,