Home | History | Annotate | Download | only in src

Lines Matching refs:InstX86Icmp

2622   class InstX86Icmp final : public InstX86Base {
2623 InstX86Icmp() = delete;
2624 InstX86Icmp(const InstX86Icmp &) = delete;
2625 InstX86Icmp &operator=(const InstX86Icmp &) = delete;
2628 static InstX86Icmp *create(Cfg *Func, Operand *Src1, Operand *Src2) {
2629 return new (Func->allocate<InstX86Icmp>()) InstX86Icmp(Func, Src1, Src2);
2639 InstX86Icmp(Cfg *Func, Operand *Src1, Operand *Src2);
3289 using Icmp = typename InstImpl<TraitsType>::InstX86Icmp;