Home
last modified time | relevance | path

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

/external/llvm/include/llvm/Analysis/
DTargetTransformInfo.h331 bool isProfitableToHoist(Instruction *I) const;
549 virtual bool isProfitableToHoist(Instruction *I) = 0;
668 bool isProfitableToHoist(Instruction *I) override { in isProfitableToHoist() function
669 return Impl.isProfitableToHoist(I); in isProfitableToHoist()
DTargetTransformInfoImpl.h230 bool isProfitableToHoist(Instruction *I) { return true; } in isProfitableToHoist() function
/external/llvm/lib/Analysis/
DTargetTransformInfo.cpp130 bool TargetTransformInfo::isProfitableToHoist(Instruction *I) const { in isProfitableToHoist() function in TargetTransformInfo
131 return TTIImpl->isProfitableToHoist(I); in isProfitableToHoist()
/external/llvm/include/llvm/CodeGen/
DBasicTTIImpl.h151 bool isProfitableToHoist(Instruction *I) { in isProfitableToHoist() function
152 return getTLI()->isProfitableToHoist(I); in isProfitableToHoist()
/external/llvm/lib/Target/AArch64/
DAArch64ISelLowering.h298 bool isProfitableToHoist(Instruction *I) const override;
DAArch64ISelLowering.cpp6567 bool AArch64TargetLowering::isProfitableToHoist(Instruction *I) const { in isProfitableToHoist() function in AArch64TargetLowering
/external/llvm/include/llvm/Target/
DTargetLowering.h1500 virtual bool isProfitableToHoist(Instruction *I) const { return true; } in isProfitableToHoist() function
/external/llvm/lib/Transforms/Utils/
DSimplifyCFG.cpp1091 if (!TTI.isProfitableToHoist(I1) || !TTI.isProfitableToHoist(I2)) in HoistThenElseCodeToIf()