Searched refs:isProfitableToHoist (Results 1 – 8 of 8) sorted by relevance
541 bool isProfitableToHoist(Instruction *I) const;1081 virtual bool isProfitableToHoist(Instruction *I) = 0;1338 bool isProfitableToHoist(Instruction *I) override { in isProfitableToHoist() function1339 return Impl.isProfitableToHoist(I); in isProfitableToHoist()
284 bool isProfitableToHoist(Instruction *I) { return true; } in isProfitableToHoist() function
214 bool TargetTransformInfo::isProfitableToHoist(Instruction *I) const { in isProfitableToHoist() function in TargetTransformInfo215 return TTIImpl->isProfitableToHoist(I); in isProfitableToHoist()
267 bool isProfitableToHoist(Instruction *I) { in isProfitableToHoist() function268 return getTLI()->isProfitableToHoist(I); in isProfitableToHoist()
2190 virtual bool isProfitableToHoist(Instruction *I) const { return true; } in isProfitableToHoist() function
325 bool isProfitableToHoist(Instruction *I) const override;
8176 bool AArch64TargetLowering::isProfitableToHoist(Instruction *I) const { in isProfitableToHoist() function in AArch64TargetLowering
1293 if (!TTI.isProfitableToHoist(I1) || !TTI.isProfitableToHoist(I2)) in HoistThenElseCodeToIf()