Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/include/llvm/Analysis/
H A DTargetTransformInfo.h725 bool isProfitableToHoist(Instruction *I) const;
1673 virtual bool isProfitableToHoist(Instruction *I) = 0;
2138 bool isProfitableToHoist(Instruction *I) override { in isProfitableToHoist() function
2139 return Impl.isProfitableToHoist(I); in isProfitableToHoist()
H A DTargetTransformInfoImpl.h318 bool isProfitableToHoist(Instruction *I) const { return true; } in isProfitableToHoist() function
/openbsd-src/gnu/llvm/llvm/lib/Analysis/
H A DTargetTransformInfo.cpp485 bool TargetTransformInfo::isProfitableToHoist(Instruction *I) const { in isProfitableToHoist() function in TargetTransformInfo
486 return TTIImpl->isProfitableToHoist(I); in isProfitableToHoist()
/openbsd-src/gnu/llvm/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.h617 bool isProfitableToHoist(Instruction *I) const override;
H A DAArch64ISelLowering.cpp13626 bool AArch64TargetLowering::isProfitableToHoist(Instruction *I) const { in isProfitableToHoist() function in AArch64TargetLowering
/openbsd-src/gnu/llvm/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.h1096 bool isProfitableToHoist(Instruction *I) const override;
H A DPPCISelLowering.cpp16966 bool PPCTargetLowering::isProfitableToHoist(Instruction *I) const { in isProfitableToHoist() function in PPCTargetLowering
/openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/
H A DBasicTTIImpl.h400 bool isProfitableToHoist(Instruction *I) { in isProfitableToHoist() function
401 return getTLI()->isProfitableToHoist(I); in isProfitableToHoist()
H A DTargetLowering.h2754 virtual bool isProfitableToHoist(Instruction *I) const { return true; } in isProfitableToHoist() function
/openbsd-src/gnu/llvm/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp1595 if (!TTI.isProfitableToHoist(I1) || !TTI.isProfitableToHoist(I2)) in HoistThenElseCodeToIf()