Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/include/llvm/Analysis/
H A DTargetTransformInfo.h743 bool isProfitableToHoist(Instruction *I) const;
1624 virtual bool isProfitableToHoist(Instruction *I) = 0;
2068 bool isProfitableToHoist(Instruction *I) override { in isProfitableToHoist() function
2069 return Impl.isProfitableToHoist(I); in isProfitableToHoist()
H A DTargetTransformInfoImpl.h314 bool isProfitableToHoist(Instruction *I) const { return true; } in isProfitableToHoist() function
/llvm-project-15.0.7/llvm/lib/Analysis/
H A DTargetTransformInfo.cpp480 bool TargetTransformInfo::isProfitableToHoist(Instruction *I) const { in isProfitableToHoist() function in TargetTransformInfo
481 return TTIImpl->isProfitableToHoist(I); in isProfitableToHoist()
/llvm-project-15.0.7/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.h1085 bool isProfitableToHoist(Instruction *I) const override;
H A DPPCISelLowering.cpp16741 bool PPCTargetLowering::isProfitableToHoist(Instruction *I) const { in isProfitableToHoist() function in PPCTargetLowering
/llvm-project-15.0.7/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.h596 bool isProfitableToHoist(Instruction *I) const override;
H A DAArch64ISelLowering.cpp12583 bool AArch64TargetLowering::isProfitableToHoist(Instruction *I) const { in isProfitableToHoist() function in AArch64TargetLowering
/llvm-project-15.0.7/llvm/include/llvm/CodeGen/
H A DBasicTTIImpl.h378 bool isProfitableToHoist(Instruction *I) { in isProfitableToHoist() function
379 return getTLI()->isProfitableToHoist(I); in isProfitableToHoist()
H A DTargetLowering.h2692 virtual bool isProfitableToHoist(Instruction *I) const { return true; } in isProfitableToHoist() function
/llvm-project-15.0.7/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp1513 if (!TTI.isProfitableToHoist(I1) || !TTI.isProfitableToHoist(I2)) in HoistThenElseCodeToIf()