Searched refs:ToBePromoted (Results 1 – 1 of 1) sorted by relevance
7361 void promoteImpl(Instruction *ToBePromoted);7488 bool canPromote(const Instruction *ToBePromoted) const { in canPromote()7490 return isa<BinaryOperator>(ToBePromoted); in canPromote()7495 bool shouldPromote(const Instruction *ToBePromoted) const { in shouldPromote()7498 for (const Use &U : ToBePromoted->operands()) { in shouldPromote()7504 if (canCauseUndefinedBehavior(ToBePromoted, U.getOperandNo())) in shouldPromote()7513 int ISDOpcode = TLI.InstructionOpcodeToISD(ToBePromoted->getOpcode()); in shouldPromote()7527 void enqueueForPromotion(Instruction *ToBePromoted) { in enqueueForPromotion() argument7528 InstsToBePromoted.push_back(ToBePromoted); in enqueueForPromotion()7552 for (auto &ToBePromoted : InstsToBePromoted) in promote() local[all …]