Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DTargetTransformInfo.h838 bool isProfitableToHoist(Instruction *I) const;
1864 virtual bool isProfitableToHoist(Instruction *I) = 0;
2371 bool isProfitableToHoist(Instruction *I) override { in isProfitableToHoist() function
2372 return Impl.isProfitableToHoist(I); in isProfitableToHoist()
H A DTargetTransformInfoImpl.h332 bool isProfitableToHoist(Instruction *I) const { return true; } in isProfitableToHoist() function
/freebsd-14.2/contrib/llvm-project/llvm/lib/Analysis/
H A DTargetTransformInfo.cpp537 bool TargetTransformInfo::isProfitableToHoist(Instruction *I) const { in isProfitableToHoist() function in TargetTransformInfo
538 return TTIImpl->isProfitableToHoist(I); in isProfitableToHoist()
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.h1086 bool isProfitableToHoist(Instruction *I) const override;
H A DPPCISelLowering.cpp17315 bool PPCTargetLowering::isProfitableToHoist(Instruction *I) const { in isProfitableToHoist() function in PPCTargetLowering
/freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.h661 bool isProfitableToHoist(Instruction *I) const override;
H A DAArch64ISelLowering.cpp14730 bool AArch64TargetLowering::isProfitableToHoist(Instruction *I) const { in isProfitableToHoist() function in AArch64TargetLowering
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DBasicTTIImpl.h415 bool isProfitableToHoist(Instruction *I) { in isProfitableToHoist() function
416 return getTLI()->isProfitableToHoist(I); in isProfitableToHoist()
H A DTargetLowering.h2864 virtual bool isProfitableToHoist(Instruction *I) const { return true; } in isProfitableToHoist() function
/freebsd-14.2/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp1514 if (!TTI.isProfitableToHoist(I1) || !TTI.isProfitableToHoist(I2)) in shouldHoistCommonInstructions()