Searched refs:DivRemOpc (Results 1 – 2 of 2) sorted by relevance
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | LegalizeDAG.cpp | 3454 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM; in ExpandNode() local 3457 if (TLI.isOperationLegalOrCustom(DivRemOpc, VT)) { in ExpandNode() 3459 Tmp1 = DAG.getNode(DivRemOpc, dl, VTs, Tmp2, Tmp3).getValue(1); in ExpandNode() 3473 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM; in ExpandNode() local 3475 if (TLI.isOperationLegalOrCustom(DivRemOpc, VT)) { in ExpandNode() 3477 Tmp1 = DAG.getNode(DivRemOpc, dl, VTs, Node->getOperand(0), in ExpandNode()
|
D | DAGCombiner.cpp | 2173 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM; in useDivRem() local 2176 if (!TLI.isOperationLegalOrCustom(DivRemOpc, VT) && in useDivRem() 2204 if ((UserOpc == Opcode || UserOpc == OtherOpcode || UserOpc == DivRemOpc) && in useDivRem() 2210 combined = DAG.getNode(DivRemOpc, SDLoc(Node), VTs, Op0, Op1); in useDivRem() 2211 } else if (UserOpc == DivRemOpc) { in useDivRem()
|