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.cpp1918 unsigned DivOpc; in selectDivRem() local
1924 DivOpc = Mips::SDIV; in selectDivRem()
1928 DivOpc = Mips::UDIV; in selectDivRem()
1937 emitInst(DivOpc).addReg(Src0Reg).addReg(Src1Reg); in selectDivRem()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeVectorOps.cpp1538 unsigned DivOpc = Node->getOpcode() == ISD::VP_SREM ? ISD::VP_SDIV : ISD::VP_UDIV; in ExpandVP_REM() local
1540 if (!TLI.isOperationLegalOrCustom(DivOpc, VT) || in ExpandVP_REM()
1553 SDValue Div = DAG.getNode(DivOpc, DL, VT, Dividend, Divisor, Mask, EVL); in ExpandVP_REM()
H A DTargetLowering.cpp11109 unsigned DivOpc = isSigned ? ISD::SDIV : ISD::UDIV; in expandREM() local
11118 if (isOperationLegalOrCustom(DivOpc, VT)) { in expandREM()
11120 SDValue Divide = DAG.getNode(DivOpc, dl, VT, Dividend, Divisor); in expandREM()
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64FastISel.cpp4622 unsigned DivOpc; in selectRem() local
4628 DivOpc = Is64bit ? AArch64::SDIVXr : AArch64::SDIVWr; in selectRem()
4631 DivOpc = Is64bit ? AArch64::UDIVXr : AArch64::UDIVWr; in selectRem()
4645 Register QuotReg = fastEmitInst_rr(DivOpc, RC, Src0Reg, Src1Reg); in selectRem()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DBasicTTIImpl.h942 unsigned DivOpc = IsSigned ? Instruction::SDiv : Instruction::UDiv; variable
944 DivOpc, Ty, CostKind, Opd1Info, Opd2Info);
/freebsd/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXISelLowering.cpp5596 unsigned DivOpc = IsSigned ? ISD::SDIV : ISD::UDIV; in PerformREMCombine() local
5602 if (U->getOpcode() == DivOpc && U->getOperand(0) == Num && in PerformREMCombine()
5607 DAG.getNode(DivOpc, DL, VT, Num, Den), in PerformREMCombine()