Searched refs:isIntDivCheap (Results 1 - 10 of 10) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/VE/
H A DVEISelLowering.h103 bool isIntDivCheap(EVT VT, AttributeList Attr) const override { return true; }
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyISelLowering.h72 bool isIntDivCheap(EVT VT, AttributeList Attr) const override;
H A DWebAssemblyISelLowering.cpp596 bool WebAssemblyTargetLowering::isIntDivCheap(EVT VT, function in class:WebAssemblyTargetLowering
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.h627 bool isIntDivCheap(EVT VT, AttributeList Attr) const override;
H A DAArch64ISelLowering.cpp10457 if (isIntDivCheap(N->getValueType(0), Attr))
14883 bool AArch64TargetLowering::isIntDivCheap(EVT VT, AttributeList Attr) const { function in class:AArch64TargetLowering
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.h1370 bool isIntDivCheap(EVT VT, AttributeList Attr) const override;
H A DX86ISelLowering.cpp21895 if (isIntDivCheap(N->getValueType(0), Attr))
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DTargetLowering.h456 virtual bool isIntDivCheap(EVT VT, AttributeList Attr) const { return false; } function in class:llvm::TargetLoweringBase::NegatibleCost
/freebsd-13-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp4152 if (!isIntDivCheap(VT, Attr) && !Attr.hasFnAttribute(Attribute::MinSize)) {
4917 if (TLI.isIntDivCheap(N->getValueType(0), Attr))
H A DDAGCombiner.cpp3889 // If the divisor is constant, then return DIVREM only if isIntDivCheap() is
3892 if (!N1C || TLI.isIntDivCheap(N->getValueType(0), Attr))
3973 !TLI.isIntDivCheap(N->getValueType(0), Attr))
4025 // If the divisor is constant, then return DIVREM only if isIntDivCheap() is
4028 if (!N1C || TLI.isIntDivCheap(N->getValueType(0), Attr))
4071 !TLI.isIntDivCheap(N->getValueType(0), Attr))
4133 // by skipping the simplification if isIntDivCheap(). When div is not cheap,
4136 if (DAG.isKnownNeverZero(N1) && !TLI.isIntDivCheap(VT, Attr)) {

Completed in 308 milliseconds