Home | History | Annotate | Download | only in src

Lines Matching refs:InstX86Pop

2911   class InstX86Pop final : public InstX86Base {
2912 InstX86Pop() = delete;
2913 InstX86Pop(const InstX86Pop &) = delete;
2914 InstX86Pop &operator=(const InstX86Pop &) = delete;
2917 static InstX86Pop *create(Cfg *Func, Variable *Dest) {
2918 return new (Func->allocate<InstX86Pop>()) InstX86Pop(Func, Dest);
2928 InstX86Pop(Cfg *Func, Variable *Dest);
3308 using Pop = typename InstImpl<TraitsType>::InstX86Pop;