Home
last modified time | relevance | path

Searched refs:isIntDivCheap (Results 1 – 25 of 32) sorted by relevance

12

/external/llvm/lib/Target/WebAssembly/
DWebAssemblyISelLowering.h61 bool isIntDivCheap(EVT VT, AttributeSet Attr) const override;
DWebAssemblyISelLowering.cpp246 bool WebAssemblyTargetLowering::isIntDivCheap(EVT VT, AttributeSet Attr) const { in isIntDivCheap() function in WebAssemblyTargetLowering
/external/swiftshader/third_party/llvm-16.0/llvm/lib/Target/BPF/
DBPFISelLowering.h113 bool isIntDivCheap(EVT VT, AttributeList Attr) const override { return true; } in isIntDivCheap() function
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/
DWebAssemblyISelLowering.h73 bool isIntDivCheap(EVT VT, AttributeList Attr) const override;
DWebAssemblyISelLowering.cpp560 bool WebAssemblyTargetLowering::isIntDivCheap(EVT VT, in isIntDivCheap() function in WebAssemblyTargetLowering
/external/swiftshader/third_party/llvm-16.0/llvm/lib/Target/WebAssembly/
DWebAssemblyISelLowering.h76 bool isIntDivCheap(EVT VT, AttributeList Attr) const override;
DWebAssemblyISelLowering.cpp801 bool WebAssemblyTargetLowering::isIntDivCheap(EVT VT, in isIntDivCheap() function in WebAssemblyTargetLowering
/external/swiftshader/third_party/llvm-16.0/llvm/lib/Target/VE/
DVEISelLowering.h242 bool isIntDivCheap(EVT, AttributeList) const override { return false; } in isIntDivCheap() function
/external/llvm/lib/Target/AArch64/
DAArch64ISelLowering.h389 bool isIntDivCheap(EVT VT, AttributeSet Attr) const override;
/external/swiftshader/third_party/llvm-16.0/llvm/lib/Target/RISCV/
DRISCVISelLowering.h388 bool isIntDivCheap(EVT VT, AttributeList Attr) const override;
/external/llvm/lib/Target/X86/
DX86ISelLowering.h996 bool isIntDivCheap(EVT VT, AttributeSet Attr) const override;
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/
DAArch64ISelLowering.h518 bool isIntDivCheap(EVT VT, AttributeList Attr) const override;
/external/swiftshader/third_party/llvm-16.0/llvm/lib/Target/AArch64/
DAArch64ISelLowering.h754 bool isIntDivCheap(EVT VT, AttributeList Attr) const override;
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
DX86ISelLowering.h1250 bool isIntDivCheap(EVT VT, AttributeList Attr) const override;
/external/swiftshader/third_party/llvm-16.0/llvm/lib/Target/X86/
DX86ISelLowering.h1511 bool isIntDivCheap(EVT VT, AttributeList Attr) const override;
/external/llvm/include/llvm/Target/
DTargetLowering.h237 virtual bool isIntDivCheap(EVT VT, AttributeSet Attr) const { in isIntDivCheap() function
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DTargetLowering.h339 virtual bool isIntDivCheap(EVT VT, AttributeList Attr) const { return false; } in isIntDivCheap() function
/external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/CodeGen/
DTargetLowering.h501 virtual bool isIntDivCheap(EVT VT, AttributeList Attr) const { return false; } in isIntDivCheap() function
/external/swiftshader/third_party/llvm-16.0/llvm/lib/CodeGen/GlobalISel/
DCombinerHelper.cpp5050 if (TLI.isIntDivCheap(getApproximateEVTForLLT(DstTy, DL, Ctx), Attr)) in matchUDivByConst()
5095 if (TLI.isIntDivCheap(getApproximateEVTForLLT(DstTy, DL, Ctx), Attr)) in matchSDivByConst()
/external/llvm/lib/CodeGen/SelectionDAG/
DDAGCombiner.cpp2300 if (N1C && !TLI.isIntDivCheap(N->getValueType(0), Attr)) in visitSDIV()
2307 if (!N1C || TLI.isIntDivCheap(N->getValueType(0), Attr)) in visitSDIV()
2364 if (N1C && !TLI.isIntDivCheap(N->getValueType(0), Attr)) in visitUDIV()
2371 if (!N1C || TLI.isIntDivCheap(N->getValueType(0), Attr)) in visitUDIV()
2438 if (N1C && !N1C->isNullValue() && !TLI.isIntDivCheap(VT, Attr)) { in visitREM()
DTargetLowering.cpp2822 if (TLI.isIntDivCheap(N->getValueType(0), Attr)) in BuildSDIVPow2()
/external/swiftshader/third_party/llvm-16.0/llvm/lib/CodeGen/SelectionDAG/
DTargetLowering.cpp5064 if (!isIntDivCheap(VT, Attr) && !Attr.hasFnAttr(Attribute::MinSize)) { in SimplifySetCC()
5839 if (TLI.isIntDivCheap(N->getValueType(0), Attr)) in BuildSDIVPow2()
5850 if (TLI.isIntDivCheap(N->getValueType(0), Attr)) in BuildSREMPow2()
DDAGCombiner.cpp4423 if (!N1C || TLI.isIntDivCheap(N->getValueType(0), Attr)) in visitSDIV()
4508 !TLI.isIntDivCheap(N->getValueType(0), Attr)) in visitSDIVLike()
4563 if (!N1C || TLI.isIntDivCheap(N->getValueType(0), Attr)) in visitUDIV()
4606 !TLI.isIntDivCheap(N->getValueType(0), Attr)) in visitUDIVLike()
4688 if (DAG.isKnownNeverZero(N1) && !TLI.isIntDivCheap(VT, Attr)) { in visitREM()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/
DDAGCombiner.cpp3791 if (!N1C || TLI.isIntDivCheap(N->getValueType(0), Attr)) in visitSDIV()
3872 !TLI.isIntDivCheap(N->getValueType(0), Attr)) in visitSDIVLike()
3929 if (!N1C || TLI.isIntDivCheap(N->getValueType(0), Attr)) in visitUDIV()
3972 !TLI.isIntDivCheap(N->getValueType(0), Attr)) in visitUDIVLike()
4038 if (DAG.isKnownNeverZero(N1) && !TLI.isIntDivCheap(VT, Attr)) { in visitREM()
DTargetLowering.cpp3933 if (!isIntDivCheap(VT, Attr) && !Attr.hasFnAttribute(Attribute::MinSize)) { in SimplifySetCC()
4699 if (TLI.isIntDivCheap(N->getValueType(0), Attr)) in BuildSDIVPow2()

12