Home | History | Annotate | Download | only in src

Lines Matching refs:InstX86Call

476   class InstX86Call final : public InstX86Base {
477 InstX86Call() = delete;
478 InstX86Call(const InstX86Call &) = delete;
479 InstX86Call &operator=(const InstX86Call &) = delete;
482 static InstX86Call *create(Cfg *Func, Variable *Dest, Operand *CallTarget) {
483 return new (Func->allocate<InstX86Call>())
484 InstX86Call(Func, Dest, CallTarget);
495 InstX86Call(Cfg *Func, Variable *Dest, Operand *CallTarget);
3195 using Call = typename InstImpl<TraitsType>::InstX86Call;