Home
last modified time | relevance | path

Searched refs:isProfitableToHoist (Results 1 – 10 of 10) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DTargetTransformInfo.h704 bool isProfitableToHoist(Instruction *I) const;
1517 virtual bool isProfitableToHoist(Instruction *I) = 0;
1909 bool isProfitableToHoist(Instruction *I) override { in isProfitableToHoist() function
1910 return Impl.isProfitableToHoist(I); in isProfitableToHoist()
H A DTargetTransformInfoImpl.h288 bool isProfitableToHoist(Instruction *I) const { return true; } in isProfitableToHoist() function
/freebsd-13.1/contrib/llvm-project/llvm/lib/Analysis/
H A DTargetTransformInfo.cpp438 bool TargetTransformInfo::isProfitableToHoist(Instruction *I) const { in isProfitableToHoist() function in TargetTransformInfo
439 return TTIImpl->isProfitableToHoist(I); in isProfitableToHoist()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.h1049 bool isProfitableToHoist(Instruction *I) const override;
H A DPPCISelLowering.cpp16335 bool PPCTargetLowering::isProfitableToHoist(Instruction *I) const { in isProfitableToHoist() function in PPCTargetLowering
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DBasicTTIImpl.h348 bool isProfitableToHoist(Instruction *I) { in isProfitableToHoist() function
349 return getTLI()->isProfitableToHoist(I); in isProfitableToHoist()
H A DTargetLowering.h2518 virtual bool isProfitableToHoist(Instruction *I) const { return true; } in isProfitableToHoist() function
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.h575 bool isProfitableToHoist(Instruction *I) const override;
H A DAArch64ISelLowering.cpp11350 bool AArch64TargetLowering::isProfitableToHoist(Instruction *I) const { in isProfitableToHoist() function in AArch64TargetLowering
/freebsd-13.1/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp1476 if (!TTI.isProfitableToHoist(I1) || !TTI.isProfitableToHoist(I2)) in HoistThenElseCodeToIf()