Lines Matching refs:InstX86Push
2931 class InstX86Push final : public InstX86Base {
2932 InstX86Push() = delete;
2933 InstX86Push(const InstX86Push &) = delete;
2934 InstX86Push &operator=(const InstX86Push &) = delete;
2937 static InstX86Push *create(Cfg *Func, InstX86Label *Label) { in create()
2938 return new (Func->allocate<InstX86Push>()) InstX86Push(Func, Label); in create()
2940 static InstX86Push *create(Cfg *Func, Operand *Source) { in create()
2941 return new (Func->allocate<InstX86Push>()) InstX86Push(Func, Source); in create()
2953 InstX86Push(Cfg *Func, Operand *Source);
2954 InstX86Push(Cfg *Func, InstX86Label *Label);
3309 using Push = typename InstImpl<TraitsType>::InstX86Push;