Searched refs:ToBePromoted (Results 1 – 1 of 1) sorted by relevance
4807 void promoteImpl(Instruction *ToBePromoted);4928 bool canPromote(const Instruction *ToBePromoted) const { in canPromote()4930 return isa<BinaryOperator>(ToBePromoted); in canPromote()4935 bool shouldPromote(const Instruction *ToBePromoted) const { in shouldPromote()4938 for (const Use &U : ToBePromoted->operands()) { in shouldPromote()4944 if (canCauseUndefinedBehavior(ToBePromoted, U.getOperandNo())) in shouldPromote()4953 int ISDOpcode = TLI.InstructionOpcodeToISD(ToBePromoted->getOpcode()); in shouldPromote()4967 void enqueueForPromotion(Instruction *ToBePromoted) { in enqueueForPromotion() argument4968 InstsToBePromoted.push_back(ToBePromoted); in enqueueForPromotion()4992 for (auto &ToBePromoted : InstsToBePromoted) in promote() local[all …]