Lines Matching refs:InstX86Br
370 class InstX86Br final : public InstX86Base {
371 InstX86Br() = delete;
372 InstX86Br(const InstX86Br &) = delete;
373 InstX86Br &operator=(const InstX86Br &) = delete;
379 static InstX86Br *create(Cfg *Func, CfgNode *TargetTrue, in create()
384 return new (Func->allocate<InstX86Br>()) in create()
385 InstX86Br(Func, TargetTrue, TargetFalse, NoLabel, Condition, Kind); in create()
388 static InstX86Br *create(Cfg *Func, CfgNode *Target, Mode Kind) { in create()
391 return new (Func->allocate<InstX86Br>()) in create()
392 InstX86Br(Func, NoCondTarget, Target, NoLabel, Cond::Br_None, Kind); in create()
397 static InstX86Br *create(Cfg *Func, CfgNode *Target, BrCond Condition, in create()
402 return new (Func->allocate<InstX86Br>()) in create()
403 InstX86Br(Func, Target, NoUncondTarget, NoLabel, Condition, Kind); in create()
407 static InstX86Br *create(Cfg *Func, InstX86Label *Label, BrCond Condition, in create()
411 return new (Func->allocate<InstX86Br>()) in create()
412 InstX86Br(Func, NoCondTarget, NoUncondTarget, Label, Condition, Kind); in create()
441 InstX86Br(Cfg *Func, const CfgNode *TargetTrue, const CfgNode *TargetFalse,
3197 using Br = typename InstImpl<TraitsType>::InstX86Br;