Home | History | Annotate | Download | only in src

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) {
2938 return new (Func->allocate<InstX86Push>()) InstX86Push(Func, Label);
2940 static InstX86Push *create(Cfg *Func, Operand *Source) {
2941 return new (Func->allocate<InstX86Push>()) InstX86Push(Func, Source);
2953 InstX86Push(Cfg *Func, Operand *Source);
2954 InstX86Push(Cfg *Func, InstX86Label *Label);
3309 using Push = typename InstImpl<TraitsType>::InstX86Push;