Searched refs:DivRemOpc (Results 1 – 3 of 3) sorted by relevance
| /llvm-project-15.0.7/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | LegalizeDAG.cpp | 3304 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM; in ExpandNode() local 3306 if (TLI.isOperationLegalOrCustom(DivRemOpc, VT)) { in ExpandNode() 3308 Tmp1 = DAG.getNode(DivRemOpc, dl, VTs, Node->getOperand(0), in ExpandNode()
|
| H A D | TargetLowering.cpp | 9509 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM; in expandREM() local 9512 if (isOperationLegalOrCustom(DivRemOpc, VT)) { in expandREM() 9514 Result = DAG.getNode(DivRemOpc, dl, VTs, Dividend, Divisor).getValue(1); in expandREM()
|
| H A D | DAGCombiner.cpp | 4194 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM; in useDivRem() local 4201 if (!TLI.isTypeLegal(VT) && !TLI.isOperationCustom(DivRemOpc, VT)) in useDivRem() 4206 if (!TLI.isOperationLegalOrCustom(DivRemOpc, VT) && in useDivRem() 4233 if ((UserOpc == Opcode || UserOpc == OtherOpcode || UserOpc == DivRemOpc) && in useDivRem() 4239 combined = DAG.getNode(DivRemOpc, SDLoc(Node), VTs, Op0, Op1); in useDivRem() 4240 } else if (UserOpc == DivRemOpc) { in useDivRem()
|