Searched refs:ToBePromoted (Results 1 – 1 of 1) sorted by relevance
4009 void promoteImpl(Instruction *ToBePromoted);4128 bool canPromote(const Instruction *ToBePromoted) const { in canPromote()4130 return isa<BinaryOperator>(ToBePromoted); in canPromote()4135 bool shouldPromote(const Instruction *ToBePromoted) const { in shouldPromote()4138 for (const Use &U : ToBePromoted->operands()) { in shouldPromote()4144 if (canCauseUndefinedBehavior(ToBePromoted, U.getOperandNo())) in shouldPromote()4153 int ISDOpcode = TLI.InstructionOpcodeToISD(ToBePromoted->getOpcode()); in shouldPromote()4167 void enqueueForPromotion(Instruction *ToBePromoted) { in enqueueForPromotion() argument4168 InstsToBePromoted.push_back(ToBePromoted); in enqueueForPromotion()4192 for (auto &ToBePromoted : InstsToBePromoted) in promote() local[all …]