Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/include/llvm/Analysis/
H A DTargetTransformInfo.h541 bool isProfitableToHoist(Instruction *I) const;
1081 virtual bool isProfitableToHoist(Instruction *I) = 0;
1338 bool isProfitableToHoist(Instruction *I) override { in isProfitableToHoist() function
1339 return Impl.isProfitableToHoist(I); in isProfitableToHoist()
H A DTargetTransformInfoImpl.h284 bool isProfitableToHoist(Instruction *I) { return true; } in isProfitableToHoist() function
/freebsd-12.1/contrib/llvm/lib/Analysis/
H A DTargetTransformInfo.cpp214 bool TargetTransformInfo::isProfitableToHoist(Instruction *I) const { in isProfitableToHoist() function in TargetTransformInfo
215 return TTIImpl->isProfitableToHoist(I); in isProfitableToHoist()
/freebsd-12.1/contrib/llvm/include/llvm/CodeGen/
H A DBasicTTIImpl.h267 bool isProfitableToHoist(Instruction *I) { in isProfitableToHoist() function
268 return getTLI()->isProfitableToHoist(I); in isProfitableToHoist()
H A DTargetLowering.h2190 virtual bool isProfitableToHoist(Instruction *I) const { return true; } in isProfitableToHoist() function
/freebsd-12.1/contrib/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.h325 bool isProfitableToHoist(Instruction *I) const override;
H A DAArch64ISelLowering.cpp8176 bool AArch64TargetLowering::isProfitableToHoist(Instruction *I) const { in isProfitableToHoist() function in AArch64TargetLowering
/freebsd-12.1/contrib/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp1293 if (!TTI.isProfitableToHoist(I1) || !TTI.isProfitableToHoist(I2)) in HoistThenElseCodeToIf()