Lines Matching refs:InstX86Label
343 class InstX86Label final : public InstX86Base {
344 InstX86Label() = delete;
345 InstX86Label(const InstX86Label &) = delete;
346 InstX86Label &operator=(const InstX86Label &) = delete;
349 static InstX86Label *create(Cfg *Func, TargetLowering *Target) { in create()
350 return new (Func->allocate<InstX86Label>()) InstX86Label(Func, Target); in create()
362 InstX86Label(Cfg *Func, TargetLowering *Target);
383 constexpr InstX86Label *NoLabel = nullptr; in create()
390 constexpr InstX86Label *NoLabel = nullptr; in create()
401 constexpr InstX86Label *NoLabel = nullptr; in create()
407 static InstX86Br *create(Cfg *Func, InstX86Label *Label, BrCond Condition, in create()
442 const InstX86Label *Label, BrCond Condition, Mode Kind);
447 const InstX86Label *Label; // Intra-block branch target
2937 static InstX86Push *create(Cfg *Func, InstX86Label *Label) { in create()
2951 InstX86Label *Label = nullptr;
2954 InstX86Push(Cfg *Func, InstX86Label *Label);
3193 using Label = typename InstImpl<TraitsType>::InstX86Label;