Searched refs:ToBePromoted (Results 1 – 1 of 1) sorted by relevance
8029 void promoteImpl(Instruction *ToBePromoted);8156 bool canPromote(const Instruction *ToBePromoted) const { in canPromote()8158 return isa<BinaryOperator>(ToBePromoted); in canPromote()8163 bool shouldPromote(const Instruction *ToBePromoted) const { in shouldPromote()8166 for (const Use &U : ToBePromoted->operands()) { in shouldPromote()8172 if (canCauseUndefinedBehavior(ToBePromoted, U.getOperandNo())) in shouldPromote()8181 int ISDOpcode = TLI.InstructionOpcodeToISD(ToBePromoted->getOpcode()); in shouldPromote()8195 void enqueueForPromotion(Instruction *ToBePromoted) { in enqueueForPromotion() argument8196 InstsToBePromoted.push_back(ToBePromoted); in enqueueForPromotion()8220 for (auto &ToBePromoted : InstsToBePromoted) in promote() local[all …]