Home | History | Annotate | Download | only in X86

Lines Matching refs:BaseOpc

2549     unsigned BaseOpc, CondOpc;
2553 BaseOpc = UseIncDec ? unsigned(X86ISD::INC) : unsigned(ISD::ADD);
2557 BaseOpc = ISD::ADD; CondOpc = X86::SETBr; break;
2559 BaseOpc = UseIncDec ? unsigned(X86ISD::DEC) : unsigned(ISD::SUB);
2563 BaseOpc = ISD::SUB; CondOpc = X86::SETBr; break;
2565 BaseOpc = X86ISD::SMUL; CondOpc = X86::SETOr; break;
2567 BaseOpc = X86ISD::UMUL; CondOpc = X86::SETOr; break;
2583 if (BaseOpc == X86ISD::INC || BaseOpc == X86ISD::DEC) {
2585 bool IsDec = BaseOpc == X86ISD::DEC;
2590 ResultReg = fastEmit_ri(VT, VT, BaseOpc, LHSReg, LHSIsKill,
2601 ResultReg = fastEmit_rr(VT, VT, BaseOpc, LHSReg, LHSIsKill, RHSReg,
2607 if (BaseOpc == X86ISD::UMUL && !ResultReg) {
2618 } else if (BaseOpc == X86ISD::SMUL && !ResultReg) {