Home
last modified time | relevance | path

Searched refs:DivOpc (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsFastISel.cpp1930 unsigned DivOpc; in selectDivRem() local
1936 DivOpc = Mips::SDIV; in selectDivRem()
1940 DivOpc = Mips::UDIV; in selectDivRem()
1949 emitInst(DivOpc).addReg(Src0Reg).addReg(Src1Reg); in selectDivRem()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeVectorOps.cpp1708 unsigned DivOpc = Node->getOpcode() == ISD::VP_SREM ? ISD::VP_SDIV : ISD::VP_UDIV; in ExpandVP_REM() local
1710 if (!TLI.isOperationLegalOrCustom(DivOpc, VT) || in ExpandVP_REM()
1723 SDValue Div = DAG.getNode(DivOpc, DL, VT, Dividend, Divisor, Mask, EVL); in ExpandVP_REM()
H A DTargetLowering.cpp11616 unsigned DivOpc = isSigned ? ISD::SDIV : ISD::UDIV; in expandREM() local
11625 if (isOperationLegalOrCustom(DivOpc, VT)) { in expandREM()
11627 SDValue Divide = DAG.getNode(DivOpc, dl, VT, Dividend, Divisor); in expandREM()
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64FastISel.cpp4625 unsigned DivOpc; in selectRem() local
4631 DivOpc = Is64bit ? AArch64::SDIVXr : AArch64::SDIVWr; in selectRem()
4634 DivOpc = Is64bit ? AArch64::UDIVXr : AArch64::UDIVWr; in selectRem()
4648 Register QuotReg = fastEmitInst_rr(DivOpc, RC, Src0Reg, Src1Reg); in selectRem()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DBasicTTIImpl.h1069 unsigned DivOpc = IsSigned ? Instruction::SDiv : Instruction::UDiv; variable
1071 DivOpc, Ty, CostKind, Opd1Info, Opd2Info);
/freebsd/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXISelLowering.cpp5331 unsigned DivOpc = IsSigned ? ISD::SDIV : ISD::UDIV; in PerformREMCombine() local
5337 if (U->getOpcode() == DivOpc && U->getOperand(0) == Num && in PerformREMCombine()
5342 DAG.getNode(DivOpc, DL, VT, Num, Den), in PerformREMCombine()