Searched refs:isProfitableToHoist (Results 1 – 8 of 8) sorted by relevance
331 bool isProfitableToHoist(Instruction *I) const;549 virtual bool isProfitableToHoist(Instruction *I) = 0;668 bool isProfitableToHoist(Instruction *I) override { in isProfitableToHoist() function669 return Impl.isProfitableToHoist(I); in isProfitableToHoist()
230 bool isProfitableToHoist(Instruction *I) { return true; } in isProfitableToHoist() function
130 bool TargetTransformInfo::isProfitableToHoist(Instruction *I) const { in isProfitableToHoist() function in TargetTransformInfo131 return TTIImpl->isProfitableToHoist(I); in isProfitableToHoist()
151 bool isProfitableToHoist(Instruction *I) { in isProfitableToHoist() function152 return getTLI()->isProfitableToHoist(I); in isProfitableToHoist()
298 bool isProfitableToHoist(Instruction *I) const override;
6567 bool AArch64TargetLowering::isProfitableToHoist(Instruction *I) const { in isProfitableToHoist() function in AArch64TargetLowering
1500 virtual bool isProfitableToHoist(Instruction *I) const { return true; } in isProfitableToHoist() function
1091 if (!TTI.isProfitableToHoist(I1) || !TTI.isProfitableToHoist(I2)) in HoistThenElseCodeToIf()