Home
last modified time | relevance | path

Searched refs:SDIVREM (Results 1 – 25 of 35) sorted by relevance

12

/openbsd/src/gnu/llvm/llvm/lib/Target/Mips/
DMipsTargetTransformInfo.cpp15 return TLI->isOperationLegalOrCustom(IsSigned ? ISD::SDIVREM : ISD::UDIVREM, in hasDivRemOp()
DMipsSEISelLowering.cpp191 setOperationAction(ISD::SDIVREM, MVT::i64, Custom); in MipsSETargetLowering()
198 setOperationAction(ISD::SDIVREM, MVT::i32, Custom); in MipsSETargetLowering()
231 setOperationAction(ISD::SDIVREM, MVT::i32, Expand); in MipsSETargetLowering()
278 setOperationAction(ISD::SDIVREM, MVT::i64, Expand); in MipsSETargetLowering()
452 case ISD::SDIVREM: return lowerMulDiv(Op, MipsISD::DivRem, true, true, DAG); in LowerOperation()
DMipsISelLowering.cpp483 setTargetDAGCombine({ISD::SDIVREM, ISD::UDIVREM, ISD::SELECT, ISD::AND, in MipsTargetLowering()
556 unsigned Opc = N->getOpcode() == ISD::SDIVREM ? MipsISD::DivRem16 : in performDivRemCombine()
1152 case ISD::SDIVREM: in PerformDAGCombine()
/openbsd/src/gnu/llvm/llvm/include/llvm/CodeGen/
DISDOpcodes.h255 SDIVREM, enumerator
DBasicTTIImpl.h890 if (TLI->isOperationLegalOrCustom(IsSigned ? ISD::SDIVREM : ISD::UDIVREM,
DSelectionDAG.h2306 case ISD::SDIVREM:
/openbsd/src/gnu/llvm/llvm/lib/Target/AVR/
DAVRISelLowering.cpp164 setOperationAction(ISD::SDIVREM, MVT::i8, Custom); in AVRTargetLowering()
165 setOperationAction(ISD::SDIVREM, MVT::i16, Custom); in AVRTargetLowering()
166 setOperationAction(ISD::SDIVREM, MVT::i32, Custom); in AVRTargetLowering()
531 assert((Opcode == ISD::SDIVREM || Opcode == ISD::UDIVREM) && in LowerDivRem()
533 bool IsSigned = (Opcode == ISD::SDIVREM); in LowerDivRem()
966 case ISD::SDIVREM: in LowerOperation()
/openbsd/src/gnu/llvm/llvm/lib/Target/SystemZ/
DSystemZISelLowering.h95 SDIVREM, enumerator
DSystemZOperators.td273 def z_sdivrem : SDNode<"SystemZISD::SDIVREM", SDT_ZGR128Binary>;
DSystemZISelLowering.cpp177 setOperationAction(ISD::SDIVREM, VT, Custom); in SystemZTargetLowering()
3876 lowerGR128Binary(DAG, DL, VT, SystemZISD::SDIVREM, Op0, Op1, Ops[1], Ops[0]); in lowerSDIVREM()
5733 case ISD::SDIVREM: in LowerOperation()
5932 OPCODE(SDIVREM); in getTargetNodeName()
/openbsd/src/gnu/llvm/llvm/lib/Target/MSP430/
DMSP430ISelLowering.cpp136 setOperationAction(ISD::SDIVREM, MVT::i8, Promote); in MSP430TargetLowering()
142 setOperationAction(ISD::SDIVREM, MVT::i16, Expand); in MSP430TargetLowering()
/openbsd/src/gnu/llvm/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGDumper.cpp250 case ISD::SDIVREM: return "sdivrem"; in getOperationName()
DLegalizeVectorOps.cpp325 case ISD::SDIVREM: in LegalizeOp()
DLegalizeIntegerTypes.cpp4121 if (TLI.getOperationAction(ISD::SDIVREM, VT) == TargetLowering::Custom) { in ExpandIntRes_SDIV()
4122 SDValue Res = DAG.getNode(ISD::SDIVREM, dl, DAG.getVTList(VT, VT), Ops); in ExpandIntRes_SDIV()
4434 if (TLI.getOperationAction(ISD::SDIVREM, VT) == TargetLowering::Custom) { in ExpandIntRes_SREM()
4435 SDValue Res = DAG.getNode(ISD::SDIVREM, dl, DAG.getVTList(VT, VT), Ops); in ExpandIntRes_SREM()
DLegalizeDAG.cpp2156 bool isSigned = Opcode == ISD::SDIVREM; in ExpandDivRemLibCall()
3333 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM; in ExpandNode()
4434 case ISD::SDIVREM: in ConvertNodeToLibcall()
DTargetLowering.cpp7292 if (Opcode == ISD::SREM || Opcode == ISD::SDIV || Opcode == ISD::SDIVREM) in expandDIVREMByConstant()
9856 isOperationLegalOrCustom(ISD::SDIVREM, VT)) { in expandFixedPointDiv()
9857 Quot = DAG.getNode(ISD::SDIVREM, dl, in expandFixedPointDiv()
10183 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM; in expandREM()
/openbsd/src/gnu/llvm/llvm/lib/Target/BPF/
DBPFISelLowering.cpp103 setOperationAction(ISD::SDIVREM, VT, Expand); in BPFTargetLowering()
/openbsd/src/gnu/llvm/llvm/lib/Target/AMDGPU/
DAMDGPUISelLowering.cpp387 setOperationAction({ISD::SDIVREM, ISD::UDIVREM}, VT, Custom); in AMDGPUTargetLowering()
433 ISD::UMUL_LOHI, ISD::SDIVREM, ISD::UDIVREM, in AMDGPUTargetLowering()
1251 case ISD::SDIVREM: return LowerSDIVREM(Op, DAG); in LowerOperation()
2095 SDValue DIVREM = DAG.getNode(ISD::SDIVREM, DL, DAG.getVTList(HalfVT, HalfVT), in LowerSDIVREM()
DR600ISelLowering.cpp608 case ISD::SDIVREM: { in ReplaceNodeResults()
/openbsd/src/gnu/llvm/llvm/lib/Target/Lanai/
DLanaiISelLowering.cpp108 setOperationAction(ISD::SDIVREM, MVT::i32, Expand); in LanaiTargetLowering()
/openbsd/src/gnu/llvm/llvm/lib/Target/ARM/
DARMISelLowering.cpp205 setOperationAction(ISD::SDIVREM, VT, Expand); in addTypeForNEON()
288 setOperationAction(ISD::SDIVREM, VT, Expand); in addMVEVectorTypes()
1275 setOperationAction(ISD::SDIVREM, MVT::i32, Custom); in ARMTargetLowering()
1277 setOperationAction(ISD::SDIVREM, MVT::i64, Custom); in ARMTargetLowering()
1280 setOperationAction(ISD::SDIVREM, MVT::i32, Expand); in ARMTargetLowering()
10512 case ISD::SDIVREM: in LowerOperation()
10585 case ISD::SDIVREM: in ReplaceNodeResults()
20446 assert((N->getOpcode() == ISD::SDIVREM || N->getOpcode() == ISD::UDIVREM || in getDivRemLibcall()
20449 bool isSigned = N->getOpcode() == ISD::SDIVREM || in getDivRemLibcall()
20464 assert((N->getOpcode() == ISD::SDIVREM || N->getOpcode() == ISD::UDIVREM || in getDivRemArgList()
[all …]
DARMTargetTransformInfo.cpp1969 case ISD::SDIVREM: in maybeLoweredToCall()
/openbsd/src/gnu/llvm/llvm/lib/Target/Hexagon/
DHexagonISelLowering.cpp1581 ISD::SDIVREM, ISD::UDIVREM, ISD::ROTL, ISD::ROTR, in HexagonTargetLowering()
1627 ISD::SREM, ISD::UREM, ISD::SDIVREM, ISD::UDIVREM, ISD::SADDO, in HexagonTargetLowering()
/openbsd/src/gnu/llvm/llvm/lib/Target/Sparc/
DSparcISelLowering.cpp1634 setOperationAction(ISD::SDIVREM, MVT::i32, Expand); in SparcTargetLowering()
1641 setOperationAction(ISD::SDIVREM, MVT::i64, Expand); in SparcTargetLowering()
/openbsd/src/gnu/llvm/llvm/lib/Target/WebAssembly/
DWebAssemblyISelLowering.cpp144 ISD::SDIVREM, ISD::UDIVREM, ISD::SHL_PARTS, ISD::SRA_PARTS, in WebAssemblyTargetLowering()

12