Home | History | Annotate | Download | only in src

Lines Matching refs:InstIcmp

548 class InstIcmp : public InstHighLevel {
549 InstIcmp() = delete;
550 InstIcmp(const InstIcmp &) = delete;
551 InstIcmp &operator=(const InstIcmp &) = delete;
561 static InstIcmp *create(Cfg *Func, ICond Condition, Variable *Dest,
563 return new (Func->allocate<InstIcmp>())
564 InstIcmp(Func, Condition, Dest, Source1, Source2);
573 InstIcmp(Cfg *Func, ICond Condition, Variable *Dest, Operand *Source1,