reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Transforms/Utils/SimplifyCFG.cpp
 1771   while (LRI.isValid() &&
 1772          canSinkInstructions(*LRI, PHIOperands)) {
 1773     LLVM_DEBUG(dbgs() << "SINK: instruction can be sunk: " << *(*LRI)[0]
 1775     InstructionsToSink.insert((*LRI).begin(), (*LRI).end());
 1775     InstructionsToSink.insert((*LRI).begin(), (*LRI).end());
 1777     --LRI;
 1800     LRI.reset();
 1803     while (ProfitableToSinkInstruction(LRI) && Idx < ScanIdx) {
 1804       if (!isSafeToSpeculativelyExecute((*LRI)[0])) {
 1808       --LRI;
 1842     LRI.reset();
 1843     if (!ProfitableToSinkInstruction(LRI)) {