Searched refs:DivOpc (Results 1 - 3 of 3) sorted by relevance

/external/llvm/lib/Target/Mips/
H A DMipsFastISel.cpp1657 unsigned DivOpc; local
1663 DivOpc = Mips::SDIV;
1667 DivOpc = Mips::UDIV;
1676 emitInst(DivOpc).addReg(Src0Reg).addReg(Src1Reg);
/external/llvm/lib/Target/AArch64/
H A DAArch64FastISel.cpp4436 unsigned DivOpc; local
4442 DivOpc = Is64bit ? AArch64::SDIVXr : AArch64::SDIVWr;
4445 DivOpc = Is64bit ? AArch64::UDIVXr : AArch64::UDIVWr;
4461 unsigned QuotReg = fastEmitInst_rr(DivOpc, RC, Src0Reg, /*IsKill=*/false,
/external/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp3453 unsigned DivOpc = isSigned ? ISD::SDIV : ISD::UDIV;
3461 } else if (TLI.isOperationLegalOrCustom(DivOpc, VT)) {
3463 Tmp1 = DAG.getNode(DivOpc, dl, VT, Tmp2, Tmp3);

Completed in 171 milliseconds