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

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DTargetTransformInfo.h649 bool isProfitableToHoist(Instruction *I) const;
1252 virtual bool isProfitableToHoist(Instruction *I) = 0;
1573 bool isProfitableToHoist(Instruction *I) override {
1574 return Impl.isProfitableToHoist(I);
H A DTargetTransformInfoImpl.h306 bool isProfitableToHoist(Instruction *I) { return true; } function in class:llvm::TargetTransformInfoImplBase
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DTargetTransformInfo.cpp368 bool TargetTransformInfo::isProfitableToHoist(Instruction *I) const { function in class:TargetTransformInfo
369 return TTIImpl->isProfitableToHoist(I);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DBasicTTIImpl.h278 bool isProfitableToHoist(Instruction *I) { function in class:llvm::BasicTTIImplBase
279 return getTLI()->isProfitableToHoist(I);
H A DTargetLowering.h2315 virtual bool isProfitableToHoist(Instruction *I) const { return true; }
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.h400 bool isProfitableToHoist(Instruction *I) const override;
H A DAArch64ISelLowering.cpp8858 bool AArch64TargetLowering::isProfitableToHoist(Instruction *I) const { function in class:AArch64TargetLowering
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp1287 if (!TTI.isProfitableToHoist(I1) || !TTI.isProfitableToHoist(I2))

Completed in 166 milliseconds