Searched refs:DivOpc (Results 1 – 5 of 5) sorted by relevance
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Target/Mips/ |
| H A D | MipsFastISel.cpp | 1924 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 D | BasicTTIImpl.h | 788 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 D | AArch64FastISel.cpp | 4533 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 D | NVPTXISelLowering.cpp | 4611 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 D | TargetLowering.cpp | 8637 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()
|