Home
last modified time | relevance | path

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

/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
HDTargetTransformInfo.h868 bool isProfitableToHoist(Instruction *I) const;
1932 virtual bool isProfitableToHoist(Instruction *I) = 0;
2462 bool isProfitableToHoist(Instruction *I) override { in isProfitableToHoist() function
2463 return Impl.isProfitableToHoist(I); in isProfitableToHoist()
HDTargetTransformInfoImpl.h356 bool isProfitableToHoist(Instruction *I) const { return true; } in isProfitableToHoist() function
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
HDTargetTransformInfo.cpp563 bool TargetTransformInfo::isProfitableToHoist(Instruction *I) const { in isProfitableToHoist() function in TargetTransformInfo
564 return TTIImpl->isProfitableToHoist(I); in isProfitableToHoist()
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
HDPPCISelLowering.h1097 bool isProfitableToHoist(Instruction *I) const override;
HDPPCISelLowering.cpp17527 bool PPCTargetLowering::isProfitableToHoist(Instruction *I) const { in isProfitableToHoist() function in PPCTargetLowering
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
HDAArch64ISelLowering.h683 bool isProfitableToHoist(Instruction *I) const override;
HDAArch64ISelLowering.cpp15761 bool AArch64TargetLowering::isProfitableToHoist(Instruction *I) const { in isProfitableToHoist() function in AArch64TargetLowering
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
HDBasicTTIImpl.h428 bool isProfitableToHoist(Instruction *I) { in isProfitableToHoist() function
429 return getTLI()->isProfitableToHoist(I); in isProfitableToHoist()
HDTargetLowering.h2979 virtual bool isProfitableToHoist(Instruction *I) const { return true; } in isProfitableToHoist() function
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
HDSimplifyCFG.cpp1514 if (!TTI.isProfitableToHoist(I1) || !TTI.isProfitableToHoist(I2)) in shouldHoistCommonInstructions()