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

/external/llvm/lib/Analysis/
H A DTargetTransformInfo.cpp157 bool TargetTransformInfo::isProfitableToHoist(Instruction *I) const { function in class:TargetTransformInfo
158 return TTIImpl->isProfitableToHoist(I);
/external/llvm/include/llvm/Analysis/
H A DTargetTransformInfo.h361 bool isProfitableToHoist(Instruction *I) const;
663 virtual bool isProfitableToHoist(Instruction *I) = 0;
826 bool isProfitableToHoist(Instruction *I) override {
827 return Impl.isProfitableToHoist(I);
H A DTargetTransformInfoImpl.h231 bool isProfitableToHoist(Instruction *I) { return true; } function in class:llvm::TargetTransformInfoImplBase
/external/llvm/include/llvm/CodeGen/
H A DBasicTTIImpl.h151 bool isProfitableToHoist(Instruction *I) { function in class:llvm::BasicTTIImplBase
152 return getTLI()->isProfitableToHoist(I);
/external/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.h292 bool isProfitableToHoist(Instruction *I) const override;
H A DAArch64ISelLowering.cpp6953 bool AArch64TargetLowering::isProfitableToHoist(Instruction *I) const { function in class:AArch64TargetLowering
/external/llvm/include/llvm/Target/
H A DTargetLowering.h1669 virtual bool isProfitableToHoist(Instruction *I) const { return true; }
/external/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp1209 if (!TTI.isProfitableToHoist(I1) || !TTI.isProfitableToHoist(I2))

Completed in 196 milliseconds