Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsFastISel.cpp1924 unsigned DivOpc; in selectDivRem() local
1930 DivOpc = Mips::SDIV; in selectDivRem()
1934 DivOpc = Mips::UDIV; in selectDivRem()
1943 emitInst(DivOpc).addReg(Src0Reg).addReg(Src1Reg); in selectDivRem()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DBasicTTIImpl.h788 unsigned DivOpc = IsSigned ? Instruction::SDiv : Instruction::UDiv; variable
790 DivOpc, Ty, CostKind, Opd1Info, Opd2Info, Opd1PropInfo,
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64FastISel.cpp4533 unsigned DivOpc; in selectRem() local
4539 DivOpc = Is64bit ? AArch64::SDIVXr : AArch64::SDIVWr; in selectRem()
4542 DivOpc = Is64bit ? AArch64::UDIVXr : AArch64::UDIVWr; in selectRem()
4556 unsigned QuotReg = fastEmitInst_rr(DivOpc, RC, Src0Reg, Src1Reg); in selectRem()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXISelLowering.cpp4611 unsigned DivOpc = IsSigned ? ISD::SDIV : ISD::UDIV; in PerformREMCombine() local
4617 if (U->getOpcode() == DivOpc && U->getOperand(0) == Num && in PerformREMCombine()
4622 DAG.getNode(DivOpc, DL, VT, Num, Den), in PerformREMCombine()
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp8637 unsigned DivOpc = isSigned ? ISD::SDIV : ISD::UDIV; in expandREM() local
8646 if (isOperationLegalOrCustom(DivOpc, VT)) { in expandREM()
8648 SDValue Divide = DAG.getNode(DivOpc, dl, VT, Dividend, Divisor); in expandREM()