Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DTargetTransformInfo.cpp580 bool TargetTransformInfo::isProfitableToHoist(Instruction *I) const { in isProfitableToHoist() function in TargetTransformInfo
581 return TTIImpl->isProfitableToHoist(I); in isProfitableToHoist()
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DTargetTransformInfo.h912 LLVM_ABI bool isProfitableToHoist(Instruction *I) const;
H A DTargetTransformInfoImpl.h416 virtual bool isProfitableToHoist(Instruction *I) const { return true; } in isProfitableToHoist() function
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.h201 bool isProfitableToHoist(Instruction *I) const override;
H A DAArch64ISelLowering.cpp16561 bool AArch64TargetLowering::isProfitableToHoist(Instruction *I) const { in isProfitableToHoist() function in AArch64TargetLowering
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.h1114 bool isProfitableToHoist(Instruction *I) const override;
H A DPPCISelLowering.cpp18435 bool PPCTargetLowering::isProfitableToHoist(Instruction *I) const { in isProfitableToHoist() function in PPCTargetLowering
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DBasicTTIImpl.h526 bool isProfitableToHoist(Instruction *I) const override { in isProfitableToHoist() function
527 return getTLI()->isProfitableToHoist(I); in isProfitableToHoist()
H A DTargetLowering.h3064 virtual bool isProfitableToHoist(Instruction *I) const { return true; } in isProfitableToHoist() function
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp1550 if (!TTI.isProfitableToHoist(I1) || !TTI.isProfitableToHoist(I2)) in shouldHoistCommonInstructions()