/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
D | ISDOpcodes.h | 211 SDIVREM, UDIVREM, enumerator
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AVR/ |
D | AVRISelLowering.cpp | 156 setOperationAction(ISD::SDIVREM, VT, Custom); in AVRTargetLowering() 341 assert((Opcode == ISD::SDIVREM || Opcode == ISD::UDIVREM) && in LowerDivRem() 343 bool IsSigned = (Opcode == ISD::SDIVREM); in LowerDivRem() 705 case ISD::SDIVREM: in LowerOperation()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/SystemZ/ |
D | SystemZISelLowering.h | 93 SDIVREM, enumerator
|
D | SystemZOperators.td | 275 def z_sdivrem : SDNode<"SystemZISD::SDIVREM", SDT_ZGR128Binary>;
|
D | SystemZISelLowering.cpp | 170 setOperationAction(ISD::SDIVREM, VT, Custom); in SystemZTargetLowering() 3521 lowerGR128Binary(DAG, DL, VT, SystemZISD::SDIVREM, Op0, Op1, Ops[1], Ops[0]); in lowerSDIVREM() 5131 case ISD::SDIVREM: in LowerOperation() 5321 OPCODE(SDIVREM); in getTargetNodeName()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/ |
D | MipsSEISelLowering.cpp | 198 setOperationAction(ISD::SDIVREM, MVT::i64, Custom); in MipsSETargetLowering() 205 setOperationAction(ISD::SDIVREM, MVT::i32, Custom); in MipsSETargetLowering() 238 setOperationAction(ISD::SDIVREM, MVT::i32, Expand); in MipsSETargetLowering() 285 setOperationAction(ISD::SDIVREM, MVT::i64, Expand); in MipsSETargetLowering() 459 case ISD::SDIVREM: return lowerMulDiv(Op, MipsISD::DivRem, true, true, DAG); in LowerOperation()
|
D | MipsISelLowering.cpp | 498 setTargetDAGCombine(ISD::SDIVREM); in MipsTargetLowering() 575 unsigned Opc = N->getOpcode() == ISD::SDIVREM ? MipsISD::DivRem16 : in performDivRemCombine() 1161 case ISD::SDIVREM: in PerformDAGCombine()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/ |
D | SelectionDAGDumper.cpp | 236 case ISD::SDIVREM: return "sdivrem"; in getOperationName()
|
D | LegalizeDAG.cpp | 2182 bool isSigned = Opcode == ISD::SDIVREM; in ExpandDivRemLibCall() 3280 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM; in ExpandNode() 3299 unsigned DivRemOpc = isSigned ? ISD::SDIVREM : ISD::UDIVREM; in ExpandNode() 4172 case ISD::SDIVREM: in ConvertNodeToLibcall()
|
D | LegalizeIntegerTypes.cpp | 3288 if (TLI.getOperationAction(ISD::SDIVREM, VT) == TargetLowering::Custom) { in ExpandIntRes_SDIV() 3289 SDValue Res = DAG.getNode(ISD::SDIVREM, dl, DAG.getVTList(VT, VT), Ops); in ExpandIntRes_SDIV() 3479 if (TLI.getOperationAction(ISD::SDIVREM, VT) == TargetLowering::Custom) { in ExpandIntRes_SREM() 3480 SDValue Res = DAG.getNode(ISD::SDIVREM, dl, DAG.getVTList(VT, VT), Ops); in ExpandIntRes_SREM()
|
D | LegalizeVectorOps.cpp | 375 case ISD::SDIVREM: in LegalizeOp()
|
D | TargetLowering.cpp | 7361 isOperationLegalOrCustom(ISD::SDIVREM, VT)) { in expandFixedPointDiv() 7362 Quot = DAG.getNode(ISD::SDIVREM, dl, in expandFixedPointDiv()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/BPF/ |
D | BPFISelLowering.cpp | 86 setOperationAction(ISD::SDIVREM, VT, Expand); in BPFTargetLowering()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/MSP430/ |
D | MSP430ISelLowering.cpp | 137 setOperationAction(ISD::SDIVREM, MVT::i8, Promote); in MSP430TargetLowering() 143 setOperationAction(ISD::SDIVREM, MVT::i16, Expand); in MSP430TargetLowering()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/ |
D | ARMTargetTransformInfo.cpp | 981 case ISD::SDIVREM: in isHardwareLoopProfitable()
|
D | ARMISelLowering.cpp | 1187 setOperationAction(ISD::SDIVREM, MVT::i32, Custom); in ARMTargetLowering() 1189 setOperationAction(ISD::SDIVREM, MVT::i64, Custom); in ARMTargetLowering() 1192 setOperationAction(ISD::SDIVREM, MVT::i32, Expand); in ARMTargetLowering() 9369 case ISD::SDIVREM: in LowerOperation() 9440 case ISD::SDIVREM: in ReplaceNodeResults() 16190 assert((N->getOpcode() == ISD::SDIVREM || N->getOpcode() == ISD::UDIVREM || in getDivRemLibcall() 16193 bool isSigned = N->getOpcode() == ISD::SDIVREM || in getDivRemLibcall() 16208 assert((N->getOpcode() == ISD::SDIVREM || N->getOpcode() == ISD::UDIVREM || in getDivRemArgList() 16211 bool isSigned = N->getOpcode() == ISD::SDIVREM || in getDivRemArgList() 16235 assert((Opcode == ISD::SDIVREM || Opcode == ISD::UDIVREM) && in LowerDivRem() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/ |
D | AMDGPUISelLowering.cpp | 314 setOperationAction(ISD::SDIVREM, VT, Custom); in AMDGPUTargetLowering() 384 setOperationAction(ISD::SDIVREM, VT, Custom); in AMDGPUTargetLowering() 1134 case ISD::SDIVREM: return LowerSDIVREM(Op, DAG); in LowerOperation() 1987 SDValue DIVREM = DAG.getNode(ISD::SDIVREM, DL, DAG.getVTList(HalfVT, HalfVT), in LowerSDIVREM()
|
D | R600ISelLowering.cpp | 679 case ISD::SDIVREM: { in ReplaceNodeResults()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Lanai/ |
D | LanaiISelLowering.cpp | 108 setOperationAction(ISD::SDIVREM, MVT::i32, Expand); in LanaiTargetLowering()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/ |
D | WebAssemblyISelLowering.cpp | 114 ISD::SDIVREM, ISD::UDIVREM, ISD::SHL_PARTS, ISD::SRA_PARTS, in WebAssemblyTargetLowering()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/ |
D | HexagonISelLowering.cpp | 1429 ISD::SDIVREM, ISD::UDIVREM, ISD::ROTL, ISD::ROTR, in HexagonTargetLowering() 1475 ISD::SREM, ISD::UREM, ISD::SDIVREM, ISD::UDIVREM, ISD::SADDO, in HexagonTargetLowering()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Sparc/ |
D | SparcISelLowering.cpp | 1497 setOperationAction(ISD::SDIVREM, MVT::i32, Expand); in SparcTargetLowering() 1504 setOperationAction(ISD::SDIVREM, MVT::i64, Expand); in SparcTargetLowering()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/ |
D | X86ISelDAGToDAG.cpp | 4860 case ISD::SDIVREM: in Select() 4866 bool isSigned = Opcode == ISD::SDIVREM; in Select()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Target/ |
D | TargetSelectionDAG.td | 362 def sdivrem : SDNode<"ISD::SDIVREM" , SDTIntBinHiLoOp>;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/RISCV/ |
D | RISCVISelLowering.cpp | 142 setOperationAction(ISD::SDIVREM, XLenVT, Expand); in RISCVTargetLowering()
|