Searched refs:DivRemOpc (Results 1 – 3 of 3) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
H A D | LegalizeDAG.cpp | 3779 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM; in ExpandNode() local 3781 if (TLI.isOperationLegalOrCustom(DivRemOpc, VT)) { in ExpandNode() 3783 Tmp1 = DAG.getNode(DivRemOpc, dl, VTs, Node->getOperand(0), in ExpandNode()
|
H A D | TargetLowering.cpp | 11110 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM; in expandREM() local 11113 if (isOperationLegalOrCustom(DivRemOpc, VT)) { in expandREM() 11115 Result = DAG.getNode(DivRemOpc, dl, VTs, Dividend, Divisor).getValue(1); in expandREM()
|
H A D | DAGCombiner.cpp | 4597 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM; in useDivRem() local 4604 if (!TLI.isTypeLegal(VT) && !TLI.isOperationCustom(DivRemOpc, VT)) in useDivRem() 4609 if (!TLI.isOperationLegalOrCustom(DivRemOpc, VT) && in useDivRem() 4636 if ((UserOpc == Opcode || UserOpc == OtherOpcode || UserOpc == DivRemOpc) && in useDivRem() 4642 combined = DAG.getNode(DivRemOpc, SDLoc(Node), VTs, Op0, Op1); in useDivRem() 4643 } else if (UserOpc == DivRemOpc) { in useDivRem()
|