Searched refs:isProfitableToHoist (Results 1 – 10 of 10) sorted by relevance
868 bool isProfitableToHoist(Instruction *I) const;1932 virtual bool isProfitableToHoist(Instruction *I) = 0;2462 bool isProfitableToHoist(Instruction *I) override { in isProfitableToHoist() function2463 return Impl.isProfitableToHoist(I); in isProfitableToHoist()
356 bool isProfitableToHoist(Instruction *I) const { return true; } in isProfitableToHoist() function
563 bool TargetTransformInfo::isProfitableToHoist(Instruction *I) const { in isProfitableToHoist() function in TargetTransformInfo564 return TTIImpl->isProfitableToHoist(I); in isProfitableToHoist()
1097 bool isProfitableToHoist(Instruction *I) const override;
17527 bool PPCTargetLowering::isProfitableToHoist(Instruction *I) const { in isProfitableToHoist() function in PPCTargetLowering
683 bool isProfitableToHoist(Instruction *I) const override;
15761 bool AArch64TargetLowering::isProfitableToHoist(Instruction *I) const { in isProfitableToHoist() function in AArch64TargetLowering
428 bool isProfitableToHoist(Instruction *I) { in isProfitableToHoist() function429 return getTLI()->isProfitableToHoist(I); in isProfitableToHoist()
2979 virtual bool isProfitableToHoist(Instruction *I) const { return true; } in isProfitableToHoist() function
1514 if (!TTI.isProfitableToHoist(I1) || !TTI.isProfitableToHoist(I2)) in shouldHoistCommonInstructions()