Home
last modified time | relevance | path

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

/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
DLegalizeDAG.cpp3450 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM; in ExpandNode() local
3453 if (TLI.isOperationLegalOrCustom(DivRemOpc, VT) || in ExpandNode()
3456 Tmp1 = DAG.getNode(DivRemOpc, dl, VTs, Tmp2, Tmp3).getValue(1); in ExpandNode()
3478 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM; in ExpandNode() local
3481 if (TLI.isOperationLegalOrCustom(DivRemOpc, VT) || in ExpandNode()
3484 Tmp1 = DAG.getNode(DivRemOpc, dl, VTs, Node->getOperand(0), in ExpandNode()
/external/llvm/lib/CodeGen/SelectionDAG/
DLegalizeDAG.cpp3235 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM; in ExpandNode() local
3238 if (TLI.isOperationLegalOrCustom(DivRemOpc, VT)) { in ExpandNode()
3240 Tmp1 = DAG.getNode(DivRemOpc, dl, VTs, Tmp2, Tmp3).getValue(1); in ExpandNode()
3254 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM; in ExpandNode() local
3256 if (TLI.isOperationLegalOrCustom(DivRemOpc, VT)) { in ExpandNode()
3258 Tmp1 = DAG.getNode(DivRemOpc, dl, VTs, Node->getOperand(0), in ExpandNode()
DDAGCombiner.cpp2159 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM; in useDivRem() local
2166 if (!TLI.isTypeLegal(VT) && !TLI.isOperationCustom(DivRemOpc, VT)) in useDivRem()
2171 if (!TLI.isOperationLegalOrCustom(DivRemOpc, VT) && in useDivRem()
2199 if ((UserOpc == Opcode || UserOpc == OtherOpcode || UserOpc == DivRemOpc) && in useDivRem()
2205 combined = DAG.getNode(DivRemOpc, SDLoc(Node), VTs, Op0, Op1); in useDivRem()
2206 } else if (UserOpc == DivRemOpc) { in useDivRem()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/
DLegalizeDAG.cpp3343 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM; in ExpandNode() local
3346 if (TLI.isOperationLegalOrCustom(DivRemOpc, VT)) { in ExpandNode()
3348 Tmp1 = DAG.getNode(DivRemOpc, dl, VTs, Tmp2, Tmp3).getValue(1); in ExpandNode()
3362 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM; in ExpandNode() local
3364 if (TLI.isOperationLegalOrCustom(DivRemOpc, VT)) { in ExpandNode()
3366 Tmp1 = DAG.getNode(DivRemOpc, dl, VTs, Node->getOperand(0), in ExpandNode()
DDAGCombiner.cpp3009 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM; in useDivRem() local
3016 if (!TLI.isTypeLegal(VT) && !TLI.isOperationCustom(DivRemOpc, VT)) in useDivRem()
3021 if (!TLI.isOperationLegalOrCustom(DivRemOpc, VT) && in useDivRem()
3050 if ((UserOpc == Opcode || UserOpc == OtherOpcode || UserOpc == DivRemOpc) && in useDivRem()
3056 combined = DAG.getNode(DivRemOpc, SDLoc(Node), VTs, Op0, Op1); in useDivRem()
3057 } else if (UserOpc == DivRemOpc) { in useDivRem()