Searched refs:DivRemOpc (Results 1 – 3 of 3) sorted by relevance
| /freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | LegalizeDAG.cpp | 3247 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM; in ExpandNode() local 3249 if (TLI.isOperationLegalOrCustom(DivRemOpc, VT)) { in ExpandNode() 3251 Tmp1 = DAG.getNode(DivRemOpc, dl, VTs, Node->getOperand(0), in ExpandNode()
|
| H A D | TargetLowering.cpp | 8638 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM; in expandREM() local 8641 if (isOperationLegalOrCustom(DivRemOpc, VT)) { in expandREM() 8643 Result = DAG.getNode(DivRemOpc, dl, VTs, Dividend, Divisor).getValue(1); in expandREM()
|
| H A D | DAGCombiner.cpp | 4024 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM; in useDivRem() local 4031 if (!TLI.isTypeLegal(VT) && !TLI.isOperationCustom(DivRemOpc, VT)) in useDivRem() 4036 if (!TLI.isOperationLegalOrCustom(DivRemOpc, VT) && in useDivRem() 4065 if ((UserOpc == Opcode || UserOpc == OtherOpcode || UserOpc == DivRemOpc) && in useDivRem() 4071 combined = DAG.getNode(DivRemOpc, SDLoc(Node), VTs, Op0, Op1); in useDivRem() 4072 } else if (UserOpc == DivRemOpc) { in useDivRem()
|