1 //===- SCCP.cpp - Sparse Conditional Constant Propagation -----------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file implements sparse conditional constant propagation and merging:
11 //
12 // Specifically, this:
13 //   * Assumes values are constant unless proven otherwise
14 //   * Assumes BasicBlocks are dead unless proven otherwise
15 //   * Proves values to be constant, and replaces them with constants
16 //   * Proves conditional branches to be unconditional
17 //
18 //===----------------------------------------------------------------------===//
19 
20 #include "llvm/Transforms/IPO/SCCP.h"
21 #include "llvm/ADT/DenseMap.h"
22 #include "llvm/ADT/DenseSet.h"
23 #include "llvm/ADT/PointerIntPair.h"
24 #include "llvm/ADT/SmallPtrSet.h"
25 #include "llvm/ADT/SmallVector.h"
26 #include "llvm/ADT/Statistic.h"
27 #include "llvm/Analysis/ConstantFolding.h"
28 #include "llvm/Analysis/GlobalsModRef.h"
29 #include "llvm/Analysis/TargetLibraryInfo.h"
30 #include "llvm/IR/CallSite.h"
31 #include "llvm/IR/Constants.h"
32 #include "llvm/IR/DataLayout.h"
33 #include "llvm/IR/DerivedTypes.h"
34 #include "llvm/IR/InstVisitor.h"
35 #include "llvm/IR/Instructions.h"
36 #include "llvm/Pass.h"
37 #include "llvm/Support/Debug.h"
38 #include "llvm/Support/ErrorHandling.h"
39 #include "llvm/Support/raw_ostream.h"
40 #include "llvm/Transforms/IPO.h"
41 #include "llvm/Transforms/Scalar.h"
42 #include "llvm/Transforms/Scalar/SCCP.h"
43 #include "llvm/Transforms/Utils/Local.h"
44 #include <algorithm>
45 using namespace llvm;
46 
47 #define DEBUG_TYPE "sccp"
48 
49 STATISTIC(NumInstRemoved, "Number of instructions removed");
50 STATISTIC(NumDeadBlocks , "Number of basic blocks unreachable");
51 
52 STATISTIC(IPNumInstRemoved, "Number of instructions removed by IPSCCP");
53 STATISTIC(IPNumArgsElimed ,"Number of arguments constant propagated by IPSCCP");
54 STATISTIC(IPNumGlobalConst, "Number of globals found to be constant by IPSCCP");
55 
56 namespace {
57 /// LatticeVal class - This class represents the different lattice values that
58 /// an LLVM value may occupy.  It is a simple class with value semantics.
59 ///
60 class LatticeVal {
61   enum LatticeValueTy {
62     /// unknown - This LLVM Value has no known value yet.
63     unknown,
64 
65     /// constant - This LLVM Value has a specific constant value.
66     constant,
67 
68     /// forcedconstant - This LLVM Value was thought to be undef until
69     /// ResolvedUndefsIn.  This is treated just like 'constant', but if merged
70     /// with another (different) constant, it goes to overdefined, instead of
71     /// asserting.
72     forcedconstant,
73 
74     /// overdefined - This instruction is not known to be constant, and we know
75     /// it has a value.
76     overdefined
77   };
78 
79   /// Val: This stores the current lattice value along with the Constant* for
80   /// the constant if this is a 'constant' or 'forcedconstant' value.
81   PointerIntPair<Constant *, 2, LatticeValueTy> Val;
82 
83   LatticeValueTy getLatticeValue() const {
84     return Val.getInt();
85   }
86 
87 public:
88   LatticeVal() : Val(nullptr, unknown) {}
89 
90   bool isUnknown() const { return getLatticeValue() == unknown; }
91   bool isConstant() const {
92     return getLatticeValue() == constant || getLatticeValue() == forcedconstant;
93   }
94   bool isOverdefined() const { return getLatticeValue() == overdefined; }
95 
96   Constant *getConstant() const {
97     assert(isConstant() && "Cannot get the constant of a non-constant!");
98     return Val.getPointer();
99   }
100 
101   /// markOverdefined - Return true if this is a change in status.
102   bool markOverdefined() {
103     if (isOverdefined())
104       return false;
105 
106     Val.setInt(overdefined);
107     return true;
108   }
109 
110   /// markConstant - Return true if this is a change in status.
111   bool markConstant(Constant *V) {
112     if (getLatticeValue() == constant) { // Constant but not forcedconstant.
113       assert(getConstant() == V && "Marking constant with different value");
114       return false;
115     }
116 
117     if (isUnknown()) {
118       Val.setInt(constant);
119       assert(V && "Marking constant with NULL");
120       Val.setPointer(V);
121     } else {
122       assert(getLatticeValue() == forcedconstant &&
123              "Cannot move from overdefined to constant!");
124       // Stay at forcedconstant if the constant is the same.
125       if (V == getConstant()) return false;
126 
127       // Otherwise, we go to overdefined.  Assumptions made based on the
128       // forced value are possibly wrong.  Assuming this is another constant
129       // could expose a contradiction.
130       Val.setInt(overdefined);
131     }
132     return true;
133   }
134 
135   /// getConstantInt - If this is a constant with a ConstantInt value, return it
136   /// otherwise return null.
137   ConstantInt *getConstantInt() const {
138     if (isConstant())
139       return dyn_cast<ConstantInt>(getConstant());
140     return nullptr;
141   }
142 
143   void markForcedConstant(Constant *V) {
144     assert(isUnknown() && "Can't force a defined value!");
145     Val.setInt(forcedconstant);
146     Val.setPointer(V);
147   }
148 };
149 } // end anonymous namespace.
150 
151 
152 namespace {
153 
154 //===----------------------------------------------------------------------===//
155 //
156 /// SCCPSolver - This class is a general purpose solver for Sparse Conditional
157 /// Constant Propagation.
158 ///
159 class SCCPSolver : public InstVisitor<SCCPSolver> {
160   const DataLayout &DL;
161   const TargetLibraryInfo *TLI;
162   SmallPtrSet<BasicBlock*, 8> BBExecutable; // The BBs that are executable.
163   DenseMap<Value*, LatticeVal> ValueState;  // The state each value is in.
164 
165   /// StructValueState - This maintains ValueState for values that have
166   /// StructType, for example for formal arguments, calls, insertelement, etc.
167   ///
168   DenseMap<std::pair<Value*, unsigned>, LatticeVal> StructValueState;
169 
170   /// GlobalValue - If we are tracking any values for the contents of a global
171   /// variable, we keep a mapping from the constant accessor to the element of
172   /// the global, to the currently known value.  If the value becomes
173   /// overdefined, it's entry is simply removed from this map.
174   DenseMap<GlobalVariable*, LatticeVal> TrackedGlobals;
175 
176   /// TrackedRetVals - If we are tracking arguments into and the return
177   /// value out of a function, it will have an entry in this map, indicating
178   /// what the known return value for the function is.
179   DenseMap<Function*, LatticeVal> TrackedRetVals;
180 
181   /// TrackedMultipleRetVals - Same as TrackedRetVals, but used for functions
182   /// that return multiple values.
183   DenseMap<std::pair<Function*, unsigned>, LatticeVal> TrackedMultipleRetVals;
184 
185   /// MRVFunctionsTracked - Each function in TrackedMultipleRetVals is
186   /// represented here for efficient lookup.
187   SmallPtrSet<Function*, 16> MRVFunctionsTracked;
188 
189   /// TrackingIncomingArguments - This is the set of functions for whose
190   /// arguments we make optimistic assumptions about and try to prove as
191   /// constants.
192   SmallPtrSet<Function*, 16> TrackingIncomingArguments;
193 
194   /// The reason for two worklists is that overdefined is the lowest state
195   /// on the lattice, and moving things to overdefined as fast as possible
196   /// makes SCCP converge much faster.
197   ///
198   /// By having a separate worklist, we accomplish this because everything
199   /// possibly overdefined will become overdefined at the soonest possible
200   /// point.
201   SmallVector<Value*, 64> OverdefinedInstWorkList;
202   SmallVector<Value*, 64> InstWorkList;
203 
204 
205   SmallVector<BasicBlock*, 64>  BBWorkList;  // The BasicBlock work list
206 
207   /// KnownFeasibleEdges - Entries in this set are edges which have already had
208   /// PHI nodes retriggered.
209   typedef std::pair<BasicBlock*, BasicBlock*> Edge;
210   DenseSet<Edge> KnownFeasibleEdges;
211 public:
212   SCCPSolver(const DataLayout &DL, const TargetLibraryInfo *tli)
213       : DL(DL), TLI(tli) {}
214 
215   /// MarkBlockExecutable - This method can be used by clients to mark all of
216   /// the blocks that are known to be intrinsically live in the processed unit.
217   ///
218   /// This returns true if the block was not considered live before.
219   bool MarkBlockExecutable(BasicBlock *BB) {
220     if (!BBExecutable.insert(BB).second)
221       return false;
222     DEBUG(dbgs() << "Marking Block Executable: " << BB->getName() << '\n');
223     BBWorkList.push_back(BB);  // Add the block to the work list!
224     return true;
225   }
226 
227   /// TrackValueOfGlobalVariable - Clients can use this method to
228   /// inform the SCCPSolver that it should track loads and stores to the
229   /// specified global variable if it can.  This is only legal to call if
230   /// performing Interprocedural SCCP.
231   void TrackValueOfGlobalVariable(GlobalVariable *GV) {
232     // We only track the contents of scalar globals.
233     if (GV->getValueType()->isSingleValueType()) {
234       LatticeVal &IV = TrackedGlobals[GV];
235       if (!isa<UndefValue>(GV->getInitializer()))
236         IV.markConstant(GV->getInitializer());
237     }
238   }
239 
240   /// AddTrackedFunction - If the SCCP solver is supposed to track calls into
241   /// and out of the specified function (which cannot have its address taken),
242   /// this method must be called.
243   void AddTrackedFunction(Function *F) {
244     // Add an entry, F -> undef.
245     if (auto *STy = dyn_cast<StructType>(F->getReturnType())) {
246       MRVFunctionsTracked.insert(F);
247       for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i)
248         TrackedMultipleRetVals.insert(std::make_pair(std::make_pair(F, i),
249                                                      LatticeVal()));
250     } else
251       TrackedRetVals.insert(std::make_pair(F, LatticeVal()));
252   }
253 
254   void AddArgumentTrackedFunction(Function *F) {
255     TrackingIncomingArguments.insert(F);
256   }
257 
258   /// Solve - Solve for constants and executable blocks.
259   ///
260   void Solve();
261 
262   /// ResolvedUndefsIn - While solving the dataflow for a function, we assume
263   /// that branches on undef values cannot reach any of their successors.
264   /// However, this is not a safe assumption.  After we solve dataflow, this
265   /// method should be use to handle this.  If this returns true, the solver
266   /// should be rerun.
267   bool ResolvedUndefsIn(Function &F);
268 
269   bool isBlockExecutable(BasicBlock *BB) const {
270     return BBExecutable.count(BB);
271   }
272 
273   std::vector<LatticeVal> getStructLatticeValueFor(Value *V) const {
274     std::vector<LatticeVal> StructValues;
275     auto *STy = dyn_cast<StructType>(V->getType());
276     assert(STy && "getStructLatticeValueFor() can be called only on structs");
277     for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
278       auto I = StructValueState.find(std::make_pair(V, i));
279       assert(I != StructValueState.end() && "Value not in valuemap!");
280       StructValues.push_back(I->second);
281     }
282     return StructValues;
283   }
284 
285   LatticeVal getLatticeValueFor(Value *V) const {
286     DenseMap<Value*, LatticeVal>::const_iterator I = ValueState.find(V);
287     assert(I != ValueState.end() && "V is not in valuemap!");
288     return I->second;
289   }
290 
291   /// getTrackedRetVals - Get the inferred return value map.
292   ///
293   const DenseMap<Function*, LatticeVal> &getTrackedRetVals() {
294     return TrackedRetVals;
295   }
296 
297   /// getTrackedGlobals - Get and return the set of inferred initializers for
298   /// global variables.
299   const DenseMap<GlobalVariable*, LatticeVal> &getTrackedGlobals() {
300     return TrackedGlobals;
301   }
302 
303   /// getMRVFunctionsTracked - Get the set of functions which return multiple
304   /// values tracked by the pass.
305   const SmallPtrSet<Function *, 16> getMRVFunctionsTracked() {
306     return MRVFunctionsTracked;
307   }
308 
309   void markOverdefined(Value *V) {
310     assert(!V->getType()->isStructTy() &&
311            "structs should use markAnythingOverdefined");
312     markOverdefined(ValueState[V], V);
313   }
314 
315   /// markAnythingOverdefined - Mark the specified value overdefined.  This
316   /// works with both scalars and structs.
317   void markAnythingOverdefined(Value *V) {
318     if (auto *STy = dyn_cast<StructType>(V->getType()))
319       for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i)
320         markOverdefined(getStructValueState(V, i), V);
321     else
322       markOverdefined(V);
323   }
324 
325   // isStructLatticeConstant - Return true if all the lattice values
326   // corresponding to elements of the structure are not overdefined,
327   // false otherwise.
328   bool isStructLatticeConstant(Function *F, StructType *STy) {
329     for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
330       const auto &It = TrackedMultipleRetVals.find(std::make_pair(F, i));
331       assert(It != TrackedMultipleRetVals.end());
332       LatticeVal LV = It->second;
333       if (LV.isOverdefined())
334         return false;
335     }
336     return true;
337   }
338 
339 private:
340   // pushToWorkList - Helper for markConstant/markForcedConstant
341   void pushToWorkList(LatticeVal &IV, Value *V) {
342     if (IV.isOverdefined())
343       return OverdefinedInstWorkList.push_back(V);
344     InstWorkList.push_back(V);
345   }
346 
347   // markConstant - Make a value be marked as "constant".  If the value
348   // is not already a constant, add it to the instruction work list so that
349   // the users of the instruction are updated later.
350   //
351   void markConstant(LatticeVal &IV, Value *V, Constant *C) {
352     if (!IV.markConstant(C)) return;
353     DEBUG(dbgs() << "markConstant: " << *C << ": " << *V << '\n');
354     pushToWorkList(IV, V);
355   }
356 
357   void markConstant(Value *V, Constant *C) {
358     assert(!V->getType()->isStructTy() && "structs should use mergeInValue");
359     markConstant(ValueState[V], V, C);
360   }
361 
362   void markForcedConstant(Value *V, Constant *C) {
363     assert(!V->getType()->isStructTy() && "structs should use mergeInValue");
364     LatticeVal &IV = ValueState[V];
365     IV.markForcedConstant(C);
366     DEBUG(dbgs() << "markForcedConstant: " << *C << ": " << *V << '\n');
367     pushToWorkList(IV, V);
368   }
369 
370 
371   // markOverdefined - Make a value be marked as "overdefined". If the
372   // value is not already overdefined, add it to the overdefined instruction
373   // work list so that the users of the instruction are updated later.
374   void markOverdefined(LatticeVal &IV, Value *V) {
375     if (!IV.markOverdefined()) return;
376 
377     DEBUG(dbgs() << "markOverdefined: ";
378           if (auto *F = dyn_cast<Function>(V))
379             dbgs() << "Function '" << F->getName() << "'\n";
380           else
381             dbgs() << *V << '\n');
382     // Only instructions go on the work list
383     OverdefinedInstWorkList.push_back(V);
384   }
385 
386   void mergeInValue(LatticeVal &IV, Value *V, LatticeVal MergeWithV) {
387     if (IV.isOverdefined() || MergeWithV.isUnknown())
388       return;  // Noop.
389     if (MergeWithV.isOverdefined())
390       return markOverdefined(IV, V);
391     if (IV.isUnknown())
392       return markConstant(IV, V, MergeWithV.getConstant());
393     if (IV.getConstant() != MergeWithV.getConstant())
394       return markOverdefined(IV, V);
395   }
396 
397   void mergeInValue(Value *V, LatticeVal MergeWithV) {
398     assert(!V->getType()->isStructTy() &&
399            "non-structs should use markConstant");
400     mergeInValue(ValueState[V], V, MergeWithV);
401   }
402 
403 
404   /// getValueState - Return the LatticeVal object that corresponds to the
405   /// value.  This function handles the case when the value hasn't been seen yet
406   /// by properly seeding constants etc.
407   LatticeVal &getValueState(Value *V) {
408     assert(!V->getType()->isStructTy() && "Should use getStructValueState");
409 
410     std::pair<DenseMap<Value*, LatticeVal>::iterator, bool> I =
411       ValueState.insert(std::make_pair(V, LatticeVal()));
412     LatticeVal &LV = I.first->second;
413 
414     if (!I.second)
415       return LV;  // Common case, already in the map.
416 
417     if (auto *C = dyn_cast<Constant>(V)) {
418       // Undef values remain unknown.
419       if (!isa<UndefValue>(V))
420         LV.markConstant(C);          // Constants are constant
421     }
422 
423     // All others are underdefined by default.
424     return LV;
425   }
426 
427   /// getStructValueState - Return the LatticeVal object that corresponds to the
428   /// value/field pair.  This function handles the case when the value hasn't
429   /// been seen yet by properly seeding constants etc.
430   LatticeVal &getStructValueState(Value *V, unsigned i) {
431     assert(V->getType()->isStructTy() && "Should use getValueState");
432     assert(i < cast<StructType>(V->getType())->getNumElements() &&
433            "Invalid element #");
434 
435     std::pair<DenseMap<std::pair<Value*, unsigned>, LatticeVal>::iterator,
436               bool> I = StructValueState.insert(
437                         std::make_pair(std::make_pair(V, i), LatticeVal()));
438     LatticeVal &LV = I.first->second;
439 
440     if (!I.second)
441       return LV;  // Common case, already in the map.
442 
443     if (auto *C = dyn_cast<Constant>(V)) {
444       Constant *Elt = C->getAggregateElement(i);
445 
446       if (!Elt)
447         LV.markOverdefined();      // Unknown sort of constant.
448       else if (isa<UndefValue>(Elt))
449         ; // Undef values remain unknown.
450       else
451         LV.markConstant(Elt);      // Constants are constant.
452     }
453 
454     // All others are underdefined by default.
455     return LV;
456   }
457 
458 
459   /// markEdgeExecutable - Mark a basic block as executable, adding it to the BB
460   /// work list if it is not already executable.
461   void markEdgeExecutable(BasicBlock *Source, BasicBlock *Dest) {
462     if (!KnownFeasibleEdges.insert(Edge(Source, Dest)).second)
463       return;  // This edge is already known to be executable!
464 
465     if (!MarkBlockExecutable(Dest)) {
466       // If the destination is already executable, we just made an *edge*
467       // feasible that wasn't before.  Revisit the PHI nodes in the block
468       // because they have potentially new operands.
469       DEBUG(dbgs() << "Marking Edge Executable: " << Source->getName()
470             << " -> " << Dest->getName() << '\n');
471 
472       PHINode *PN;
473       for (BasicBlock::iterator I = Dest->begin();
474            (PN = dyn_cast<PHINode>(I)); ++I)
475         visitPHINode(*PN);
476     }
477   }
478 
479   // getFeasibleSuccessors - Return a vector of booleans to indicate which
480   // successors are reachable from a given terminator instruction.
481   //
482   void getFeasibleSuccessors(TerminatorInst &TI, SmallVectorImpl<bool> &Succs);
483 
484   // isEdgeFeasible - Return true if the control flow edge from the 'From' basic
485   // block to the 'To' basic block is currently feasible.
486   //
487   bool isEdgeFeasible(BasicBlock *From, BasicBlock *To);
488 
489   // OperandChangedState - This method is invoked on all of the users of an
490   // instruction that was just changed state somehow.  Based on this
491   // information, we need to update the specified user of this instruction.
492   //
493   void OperandChangedState(Instruction *I) {
494     if (BBExecutable.count(I->getParent()))   // Inst is executable?
495       visit(*I);
496   }
497 
498 private:
499   friend class InstVisitor<SCCPSolver>;
500 
501   // visit implementations - Something changed in this instruction.  Either an
502   // operand made a transition, or the instruction is newly executable.  Change
503   // the value type of I to reflect these changes if appropriate.
504   void visitPHINode(PHINode &I);
505 
506   // Terminators
507   void visitReturnInst(ReturnInst &I);
508   void visitTerminatorInst(TerminatorInst &TI);
509 
510   void visitCastInst(CastInst &I);
511   void visitSelectInst(SelectInst &I);
512   void visitBinaryOperator(Instruction &I);
513   void visitCmpInst(CmpInst &I);
514   void visitExtractElementInst(ExtractElementInst &I);
515   void visitInsertElementInst(InsertElementInst &I);
516   void visitShuffleVectorInst(ShuffleVectorInst &I);
517   void visitExtractValueInst(ExtractValueInst &EVI);
518   void visitInsertValueInst(InsertValueInst &IVI);
519   void visitLandingPadInst(LandingPadInst &I) { markAnythingOverdefined(&I); }
520   void visitFuncletPadInst(FuncletPadInst &FPI) {
521     markAnythingOverdefined(&FPI);
522   }
523   void visitCatchSwitchInst(CatchSwitchInst &CPI) {
524     markAnythingOverdefined(&CPI);
525     visitTerminatorInst(CPI);
526   }
527 
528   // Instructions that cannot be folded away.
529   void visitStoreInst     (StoreInst &I);
530   void visitLoadInst      (LoadInst &I);
531   void visitGetElementPtrInst(GetElementPtrInst &I);
532   void visitCallInst      (CallInst &I) {
533     visitCallSite(&I);
534   }
535   void visitInvokeInst    (InvokeInst &II) {
536     visitCallSite(&II);
537     visitTerminatorInst(II);
538   }
539   void visitCallSite      (CallSite CS);
540   void visitResumeInst    (TerminatorInst &I) { /*returns void*/ }
541   void visitUnreachableInst(TerminatorInst &I) { /*returns void*/ }
542   void visitFenceInst     (FenceInst &I) { /*returns void*/ }
543   void visitAtomicCmpXchgInst(AtomicCmpXchgInst &I) {
544     markAnythingOverdefined(&I);
545   }
546   void visitAtomicRMWInst (AtomicRMWInst &I) { markOverdefined(&I); }
547   void visitAllocaInst    (Instruction &I) { markOverdefined(&I); }
548   void visitVAArgInst     (Instruction &I) { markAnythingOverdefined(&I); }
549 
550   void visitInstruction(Instruction &I) {
551     // If a new instruction is added to LLVM that we don't handle.
552     dbgs() << "SCCP: Don't know how to handle: " << I << '\n';
553     markAnythingOverdefined(&I);   // Just in case
554   }
555 };
556 
557 } // end anonymous namespace
558 
559 
560 // getFeasibleSuccessors - Return a vector of booleans to indicate which
561 // successors are reachable from a given terminator instruction.
562 //
563 void SCCPSolver::getFeasibleSuccessors(TerminatorInst &TI,
564                                        SmallVectorImpl<bool> &Succs) {
565   Succs.resize(TI.getNumSuccessors());
566   if (auto *BI = dyn_cast<BranchInst>(&TI)) {
567     if (BI->isUnconditional()) {
568       Succs[0] = true;
569       return;
570     }
571 
572     LatticeVal BCValue = getValueState(BI->getCondition());
573     ConstantInt *CI = BCValue.getConstantInt();
574     if (!CI) {
575       // Overdefined condition variables, and branches on unfoldable constant
576       // conditions, mean the branch could go either way.
577       if (!BCValue.isUnknown())
578         Succs[0] = Succs[1] = true;
579       return;
580     }
581 
582     // Constant condition variables mean the branch can only go a single way.
583     Succs[CI->isZero()] = true;
584     return;
585   }
586 
587   // Unwinding instructions successors are always executable.
588   if (TI.isExceptional()) {
589     Succs.assign(TI.getNumSuccessors(), true);
590     return;
591   }
592 
593   if (auto *SI = dyn_cast<SwitchInst>(&TI)) {
594     if (!SI->getNumCases()) {
595       Succs[0] = true;
596       return;
597     }
598     LatticeVal SCValue = getValueState(SI->getCondition());
599     ConstantInt *CI = SCValue.getConstantInt();
600 
601     if (!CI) {   // Overdefined or unknown condition?
602       // All destinations are executable!
603       if (!SCValue.isUnknown())
604         Succs.assign(TI.getNumSuccessors(), true);
605       return;
606     }
607 
608     Succs[SI->findCaseValue(CI).getSuccessorIndex()] = true;
609     return;
610   }
611 
612   // TODO: This could be improved if the operand is a [cast of a] BlockAddress.
613   if (isa<IndirectBrInst>(&TI)) {
614     // Just mark all destinations executable!
615     Succs.assign(TI.getNumSuccessors(), true);
616     return;
617   }
618 
619   DEBUG(dbgs() << "Unknown terminator instruction: " << TI << '\n');
620   llvm_unreachable("SCCP: Don't know how to handle this terminator!");
621 }
622 
623 
624 // isEdgeFeasible - Return true if the control flow edge from the 'From' basic
625 // block to the 'To' basic block is currently feasible.
626 //
627 bool SCCPSolver::isEdgeFeasible(BasicBlock *From, BasicBlock *To) {
628   assert(BBExecutable.count(To) && "Dest should always be alive!");
629 
630   // Make sure the source basic block is executable!!
631   if (!BBExecutable.count(From)) return false;
632 
633   // Check to make sure this edge itself is actually feasible now.
634   TerminatorInst *TI = From->getTerminator();
635   if (auto *BI = dyn_cast<BranchInst>(TI)) {
636     if (BI->isUnconditional())
637       return true;
638 
639     LatticeVal BCValue = getValueState(BI->getCondition());
640 
641     // Overdefined condition variables mean the branch could go either way,
642     // undef conditions mean that neither edge is feasible yet.
643     ConstantInt *CI = BCValue.getConstantInt();
644     if (!CI)
645       return !BCValue.isUnknown();
646 
647     // Constant condition variables mean the branch can only go a single way.
648     return BI->getSuccessor(CI->isZero()) == To;
649   }
650 
651   // Unwinding instructions successors are always executable.
652   if (TI->isExceptional())
653     return true;
654 
655   if (auto *SI = dyn_cast<SwitchInst>(TI)) {
656     if (SI->getNumCases() < 1)
657       return true;
658 
659     LatticeVal SCValue = getValueState(SI->getCondition());
660     ConstantInt *CI = SCValue.getConstantInt();
661 
662     if (!CI)
663       return !SCValue.isUnknown();
664 
665     return SI->findCaseValue(CI).getCaseSuccessor() == To;
666   }
667 
668   // Just mark all destinations executable!
669   // TODO: This could be improved if the operand is a [cast of a] BlockAddress.
670   if (isa<IndirectBrInst>(TI))
671     return true;
672 
673   DEBUG(dbgs() << "Unknown terminator instruction: " << *TI << '\n');
674   llvm_unreachable("SCCP: Don't know how to handle this terminator!");
675 }
676 
677 // visit Implementations - Something changed in this instruction, either an
678 // operand made a transition, or the instruction is newly executable.  Change
679 // the value type of I to reflect these changes if appropriate.  This method
680 // makes sure to do the following actions:
681 //
682 // 1. If a phi node merges two constants in, and has conflicting value coming
683 //    from different branches, or if the PHI node merges in an overdefined
684 //    value, then the PHI node becomes overdefined.
685 // 2. If a phi node merges only constants in, and they all agree on value, the
686 //    PHI node becomes a constant value equal to that.
687 // 3. If V <- x (op) y && isConstant(x) && isConstant(y) V = Constant
688 // 4. If V <- x (op) y && (isOverdefined(x) || isOverdefined(y)) V = Overdefined
689 // 5. If V <- MEM or V <- CALL or V <- (unknown) then V = Overdefined
690 // 6. If a conditional branch has a value that is constant, make the selected
691 //    destination executable
692 // 7. If a conditional branch has a value that is overdefined, make all
693 //    successors executable.
694 //
695 void SCCPSolver::visitPHINode(PHINode &PN) {
696   // If this PN returns a struct, just mark the result overdefined.
697   // TODO: We could do a lot better than this if code actually uses this.
698   if (PN.getType()->isStructTy())
699     return markAnythingOverdefined(&PN);
700 
701   if (getValueState(&PN).isOverdefined())
702     return;  // Quick exit
703 
704   // Super-extra-high-degree PHI nodes are unlikely to ever be marked constant,
705   // and slow us down a lot.  Just mark them overdefined.
706   if (PN.getNumIncomingValues() > 64)
707     return markOverdefined(&PN);
708 
709   // Look at all of the executable operands of the PHI node.  If any of them
710   // are overdefined, the PHI becomes overdefined as well.  If they are all
711   // constant, and they agree with each other, the PHI becomes the identical
712   // constant.  If they are constant and don't agree, the PHI is overdefined.
713   // If there are no executable operands, the PHI remains unknown.
714   //
715   Constant *OperandVal = nullptr;
716   for (unsigned i = 0, e = PN.getNumIncomingValues(); i != e; ++i) {
717     LatticeVal IV = getValueState(PN.getIncomingValue(i));
718     if (IV.isUnknown()) continue;  // Doesn't influence PHI node.
719 
720     if (!isEdgeFeasible(PN.getIncomingBlock(i), PN.getParent()))
721       continue;
722 
723     if (IV.isOverdefined())    // PHI node becomes overdefined!
724       return markOverdefined(&PN);
725 
726     if (!OperandVal) {   // Grab the first value.
727       OperandVal = IV.getConstant();
728       continue;
729     }
730 
731     // There is already a reachable operand.  If we conflict with it,
732     // then the PHI node becomes overdefined.  If we agree with it, we
733     // can continue on.
734 
735     // Check to see if there are two different constants merging, if so, the PHI
736     // node is overdefined.
737     if (IV.getConstant() != OperandVal)
738       return markOverdefined(&PN);
739   }
740 
741   // If we exited the loop, this means that the PHI node only has constant
742   // arguments that agree with each other(and OperandVal is the constant) or
743   // OperandVal is null because there are no defined incoming arguments.  If
744   // this is the case, the PHI remains unknown.
745   //
746   if (OperandVal)
747     markConstant(&PN, OperandVal);      // Acquire operand value
748 }
749 
750 void SCCPSolver::visitReturnInst(ReturnInst &I) {
751   if (I.getNumOperands() == 0) return;  // ret void
752 
753   Function *F = I.getParent()->getParent();
754   Value *ResultOp = I.getOperand(0);
755 
756   // If we are tracking the return value of this function, merge it in.
757   if (!TrackedRetVals.empty() && !ResultOp->getType()->isStructTy()) {
758     DenseMap<Function*, LatticeVal>::iterator TFRVI =
759       TrackedRetVals.find(F);
760     if (TFRVI != TrackedRetVals.end()) {
761       mergeInValue(TFRVI->second, F, getValueState(ResultOp));
762       return;
763     }
764   }
765 
766   // Handle functions that return multiple values.
767   if (!TrackedMultipleRetVals.empty()) {
768     if (auto *STy = dyn_cast<StructType>(ResultOp->getType()))
769       if (MRVFunctionsTracked.count(F))
770         for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i)
771           mergeInValue(TrackedMultipleRetVals[std::make_pair(F, i)], F,
772                        getStructValueState(ResultOp, i));
773 
774   }
775 }
776 
777 void SCCPSolver::visitTerminatorInst(TerminatorInst &TI) {
778   SmallVector<bool, 16> SuccFeasible;
779   getFeasibleSuccessors(TI, SuccFeasible);
780 
781   BasicBlock *BB = TI.getParent();
782 
783   // Mark all feasible successors executable.
784   for (unsigned i = 0, e = SuccFeasible.size(); i != e; ++i)
785     if (SuccFeasible[i])
786       markEdgeExecutable(BB, TI.getSuccessor(i));
787 }
788 
789 void SCCPSolver::visitCastInst(CastInst &I) {
790   LatticeVal OpSt = getValueState(I.getOperand(0));
791   if (OpSt.isOverdefined())          // Inherit overdefinedness of operand
792     markOverdefined(&I);
793   else if (OpSt.isConstant()) {
794     // Fold the constant as we build.
795     Constant *C = ConstantFoldCastOperand(I.getOpcode(), OpSt.getConstant(),
796                                           I.getType(), DL);
797     if (isa<UndefValue>(C))
798       return;
799     // Propagate constant value
800     markConstant(&I, C);
801   }
802 }
803 
804 
805 void SCCPSolver::visitExtractValueInst(ExtractValueInst &EVI) {
806   // If this returns a struct, mark all elements over defined, we don't track
807   // structs in structs.
808   if (EVI.getType()->isStructTy())
809     return markAnythingOverdefined(&EVI);
810 
811   // If this is extracting from more than one level of struct, we don't know.
812   if (EVI.getNumIndices() != 1)
813     return markOverdefined(&EVI);
814 
815   Value *AggVal = EVI.getAggregateOperand();
816   if (AggVal->getType()->isStructTy()) {
817     unsigned i = *EVI.idx_begin();
818     LatticeVal EltVal = getStructValueState(AggVal, i);
819     mergeInValue(getValueState(&EVI), &EVI, EltVal);
820   } else {
821     // Otherwise, must be extracting from an array.
822     return markOverdefined(&EVI);
823   }
824 }
825 
826 void SCCPSolver::visitInsertValueInst(InsertValueInst &IVI) {
827   auto *STy = dyn_cast<StructType>(IVI.getType());
828   if (!STy)
829     return markOverdefined(&IVI);
830 
831   // If this has more than one index, we can't handle it, drive all results to
832   // undef.
833   if (IVI.getNumIndices() != 1)
834     return markAnythingOverdefined(&IVI);
835 
836   Value *Aggr = IVI.getAggregateOperand();
837   unsigned Idx = *IVI.idx_begin();
838 
839   // Compute the result based on what we're inserting.
840   for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
841     // This passes through all values that aren't the inserted element.
842     if (i != Idx) {
843       LatticeVal EltVal = getStructValueState(Aggr, i);
844       mergeInValue(getStructValueState(&IVI, i), &IVI, EltVal);
845       continue;
846     }
847 
848     Value *Val = IVI.getInsertedValueOperand();
849     if (Val->getType()->isStructTy())
850       // We don't track structs in structs.
851       markOverdefined(getStructValueState(&IVI, i), &IVI);
852     else {
853       LatticeVal InVal = getValueState(Val);
854       mergeInValue(getStructValueState(&IVI, i), &IVI, InVal);
855     }
856   }
857 }
858 
859 void SCCPSolver::visitSelectInst(SelectInst &I) {
860   // If this select returns a struct, just mark the result overdefined.
861   // TODO: We could do a lot better than this if code actually uses this.
862   if (I.getType()->isStructTy())
863     return markAnythingOverdefined(&I);
864 
865   LatticeVal CondValue = getValueState(I.getCondition());
866   if (CondValue.isUnknown())
867     return;
868 
869   if (ConstantInt *CondCB = CondValue.getConstantInt()) {
870     Value *OpVal = CondCB->isZero() ? I.getFalseValue() : I.getTrueValue();
871     mergeInValue(&I, getValueState(OpVal));
872     return;
873   }
874 
875   // Otherwise, the condition is overdefined or a constant we can't evaluate.
876   // See if we can produce something better than overdefined based on the T/F
877   // value.
878   LatticeVal TVal = getValueState(I.getTrueValue());
879   LatticeVal FVal = getValueState(I.getFalseValue());
880 
881   // select ?, C, C -> C.
882   if (TVal.isConstant() && FVal.isConstant() &&
883       TVal.getConstant() == FVal.getConstant())
884     return markConstant(&I, FVal.getConstant());
885 
886   if (TVal.isUnknown())   // select ?, undef, X -> X.
887     return mergeInValue(&I, FVal);
888   if (FVal.isUnknown())   // select ?, X, undef -> X.
889     return mergeInValue(&I, TVal);
890   markOverdefined(&I);
891 }
892 
893 // Handle Binary Operators.
894 void SCCPSolver::visitBinaryOperator(Instruction &I) {
895   LatticeVal V1State = getValueState(I.getOperand(0));
896   LatticeVal V2State = getValueState(I.getOperand(1));
897 
898   LatticeVal &IV = ValueState[&I];
899   if (IV.isOverdefined()) return;
900 
901   if (V1State.isConstant() && V2State.isConstant()) {
902     Constant *C = ConstantExpr::get(I.getOpcode(), V1State.getConstant(),
903                                     V2State.getConstant());
904     // X op Y -> undef.
905     if (isa<UndefValue>(C))
906       return;
907     return markConstant(IV, &I, C);
908   }
909 
910   // If something is undef, wait for it to resolve.
911   if (!V1State.isOverdefined() && !V2State.isOverdefined())
912     return;
913 
914   // Otherwise, one of our operands is overdefined.  Try to produce something
915   // better than overdefined with some tricks.
916 
917   // If this is an AND or OR with 0 or -1, it doesn't matter that the other
918   // operand is overdefined.
919   if (I.getOpcode() == Instruction::And || I.getOpcode() == Instruction::Or) {
920     LatticeVal *NonOverdefVal = nullptr;
921     if (!V1State.isOverdefined())
922       NonOverdefVal = &V1State;
923     else if (!V2State.isOverdefined())
924       NonOverdefVal = &V2State;
925 
926     if (NonOverdefVal) {
927       if (NonOverdefVal->isUnknown())
928         return;
929 
930       if (I.getOpcode() == Instruction::And) {
931         // X and 0 = 0
932         if (NonOverdefVal->getConstant()->isNullValue())
933           return markConstant(IV, &I, NonOverdefVal->getConstant());
934       } else {
935         // X or -1 = -1
936         if (ConstantInt *CI = NonOverdefVal->getConstantInt())
937           if (CI->isAllOnesValue())
938             return markConstant(IV, &I, NonOverdefVal->getConstant());
939       }
940     }
941   }
942 
943 
944   markOverdefined(&I);
945 }
946 
947 // Handle ICmpInst instruction.
948 void SCCPSolver::visitCmpInst(CmpInst &I) {
949   LatticeVal V1State = getValueState(I.getOperand(0));
950   LatticeVal V2State = getValueState(I.getOperand(1));
951 
952   LatticeVal &IV = ValueState[&I];
953   if (IV.isOverdefined()) return;
954 
955   if (V1State.isConstant() && V2State.isConstant()) {
956     Constant *C = ConstantExpr::getCompare(
957         I.getPredicate(), V1State.getConstant(), V2State.getConstant());
958     if (isa<UndefValue>(C))
959       return;
960     return markConstant(IV, &I, C);
961   }
962 
963   // If operands are still unknown, wait for it to resolve.
964   if (!V1State.isOverdefined() && !V2State.isOverdefined())
965     return;
966 
967   markOverdefined(&I);
968 }
969 
970 void SCCPSolver::visitExtractElementInst(ExtractElementInst &I) {
971   // TODO : SCCP does not handle vectors properly.
972   return markOverdefined(&I);
973 }
974 
975 void SCCPSolver::visitInsertElementInst(InsertElementInst &I) {
976   // TODO : SCCP does not handle vectors properly.
977   return markOverdefined(&I);
978 }
979 
980 void SCCPSolver::visitShuffleVectorInst(ShuffleVectorInst &I) {
981   // TODO : SCCP does not handle vectors properly.
982   return markOverdefined(&I);
983 }
984 
985 // Handle getelementptr instructions.  If all operands are constants then we
986 // can turn this into a getelementptr ConstantExpr.
987 //
988 void SCCPSolver::visitGetElementPtrInst(GetElementPtrInst &I) {
989   if (ValueState[&I].isOverdefined()) return;
990 
991   SmallVector<Constant*, 8> Operands;
992   Operands.reserve(I.getNumOperands());
993 
994   for (unsigned i = 0, e = I.getNumOperands(); i != e; ++i) {
995     LatticeVal State = getValueState(I.getOperand(i));
996     if (State.isUnknown())
997       return;  // Operands are not resolved yet.
998 
999     if (State.isOverdefined())
1000       return markOverdefined(&I);
1001 
1002     assert(State.isConstant() && "Unknown state!");
1003     Operands.push_back(State.getConstant());
1004   }
1005 
1006   Constant *Ptr = Operands[0];
1007   auto Indices = makeArrayRef(Operands.begin() + 1, Operands.end());
1008   Constant *C =
1009       ConstantExpr::getGetElementPtr(I.getSourceElementType(), Ptr, Indices);
1010   if (isa<UndefValue>(C))
1011       return;
1012   markConstant(&I, C);
1013 }
1014 
1015 void SCCPSolver::visitStoreInst(StoreInst &SI) {
1016   // If this store is of a struct, ignore it.
1017   if (SI.getOperand(0)->getType()->isStructTy())
1018     return;
1019 
1020   if (TrackedGlobals.empty() || !isa<GlobalVariable>(SI.getOperand(1)))
1021     return;
1022 
1023   GlobalVariable *GV = cast<GlobalVariable>(SI.getOperand(1));
1024   DenseMap<GlobalVariable*, LatticeVal>::iterator I = TrackedGlobals.find(GV);
1025   if (I == TrackedGlobals.end() || I->second.isOverdefined()) return;
1026 
1027   // Get the value we are storing into the global, then merge it.
1028   mergeInValue(I->second, GV, getValueState(SI.getOperand(0)));
1029   if (I->second.isOverdefined())
1030     TrackedGlobals.erase(I);      // No need to keep tracking this!
1031 }
1032 
1033 
1034 // Handle load instructions.  If the operand is a constant pointer to a constant
1035 // global, we can replace the load with the loaded constant value!
1036 void SCCPSolver::visitLoadInst(LoadInst &I) {
1037   // If this load is of a struct, just mark the result overdefined.
1038   if (I.getType()->isStructTy())
1039     return markAnythingOverdefined(&I);
1040 
1041   LatticeVal PtrVal = getValueState(I.getOperand(0));
1042   if (PtrVal.isUnknown()) return;   // The pointer is not resolved yet!
1043 
1044   LatticeVal &IV = ValueState[&I];
1045   if (IV.isOverdefined()) return;
1046 
1047   if (!PtrVal.isConstant() || I.isVolatile())
1048     return markOverdefined(IV, &I);
1049 
1050   Constant *Ptr = PtrVal.getConstant();
1051 
1052   // load null is undefined.
1053   if (isa<ConstantPointerNull>(Ptr) && I.getPointerAddressSpace() == 0)
1054     return;
1055 
1056   // Transform load (constant global) into the value loaded.
1057   if (auto *GV = dyn_cast<GlobalVariable>(Ptr)) {
1058     if (!TrackedGlobals.empty()) {
1059       // If we are tracking this global, merge in the known value for it.
1060       DenseMap<GlobalVariable*, LatticeVal>::iterator It =
1061         TrackedGlobals.find(GV);
1062       if (It != TrackedGlobals.end()) {
1063         mergeInValue(IV, &I, It->second);
1064         return;
1065       }
1066     }
1067   }
1068 
1069   // Transform load from a constant into a constant if possible.
1070   if (Constant *C = ConstantFoldLoadFromConstPtr(Ptr, I.getType(), DL)) {
1071     if (isa<UndefValue>(C))
1072       return;
1073     return markConstant(IV, &I, C);
1074   }
1075 
1076   // Otherwise we cannot say for certain what value this load will produce.
1077   // Bail out.
1078   markOverdefined(IV, &I);
1079 }
1080 
1081 void SCCPSolver::visitCallSite(CallSite CS) {
1082   Function *F = CS.getCalledFunction();
1083   Instruction *I = CS.getInstruction();
1084 
1085   // The common case is that we aren't tracking the callee, either because we
1086   // are not doing interprocedural analysis or the callee is indirect, or is
1087   // external.  Handle these cases first.
1088   if (!F || F->isDeclaration()) {
1089 CallOverdefined:
1090     // Void return and not tracking callee, just bail.
1091     if (I->getType()->isVoidTy()) return;
1092 
1093     // Otherwise, if we have a single return value case, and if the function is
1094     // a declaration, maybe we can constant fold it.
1095     if (F && F->isDeclaration() && !I->getType()->isStructTy() &&
1096         canConstantFoldCallTo(F)) {
1097 
1098       SmallVector<Constant*, 8> Operands;
1099       for (CallSite::arg_iterator AI = CS.arg_begin(), E = CS.arg_end();
1100            AI != E; ++AI) {
1101         LatticeVal State = getValueState(*AI);
1102 
1103         if (State.isUnknown())
1104           return;  // Operands are not resolved yet.
1105         if (State.isOverdefined())
1106           return markOverdefined(I);
1107         assert(State.isConstant() && "Unknown state!");
1108         Operands.push_back(State.getConstant());
1109       }
1110 
1111       if (getValueState(I).isOverdefined())
1112         return;
1113 
1114       // If we can constant fold this, mark the result of the call as a
1115       // constant.
1116       if (Constant *C = ConstantFoldCall(F, Operands, TLI)) {
1117         // call -> undef.
1118         if (isa<UndefValue>(C))
1119           return;
1120         return markConstant(I, C);
1121       }
1122     }
1123 
1124     // Otherwise, we don't know anything about this call, mark it overdefined.
1125     return markAnythingOverdefined(I);
1126   }
1127 
1128   // If this is a local function that doesn't have its address taken, mark its
1129   // entry block executable and merge in the actual arguments to the call into
1130   // the formal arguments of the function.
1131   if (!TrackingIncomingArguments.empty() && TrackingIncomingArguments.count(F)){
1132     MarkBlockExecutable(&F->front());
1133 
1134     // Propagate information from this call site into the callee.
1135     CallSite::arg_iterator CAI = CS.arg_begin();
1136     for (Function::arg_iterator AI = F->arg_begin(), E = F->arg_end();
1137          AI != E; ++AI, ++CAI) {
1138       // If this argument is byval, and if the function is not readonly, there
1139       // will be an implicit copy formed of the input aggregate.
1140       if (AI->hasByValAttr() && !F->onlyReadsMemory()) {
1141         markOverdefined(&*AI);
1142         continue;
1143       }
1144 
1145       if (auto *STy = dyn_cast<StructType>(AI->getType())) {
1146         for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
1147           LatticeVal CallArg = getStructValueState(*CAI, i);
1148           mergeInValue(getStructValueState(&*AI, i), &*AI, CallArg);
1149         }
1150       } else {
1151         mergeInValue(&*AI, getValueState(*CAI));
1152       }
1153     }
1154   }
1155 
1156   // If this is a single/zero retval case, see if we're tracking the function.
1157   if (auto *STy = dyn_cast<StructType>(F->getReturnType())) {
1158     if (!MRVFunctionsTracked.count(F))
1159       goto CallOverdefined;  // Not tracking this callee.
1160 
1161     // If we are tracking this callee, propagate the result of the function
1162     // into this call site.
1163     for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i)
1164       mergeInValue(getStructValueState(I, i), I,
1165                    TrackedMultipleRetVals[std::make_pair(F, i)]);
1166   } else {
1167     DenseMap<Function*, LatticeVal>::iterator TFRVI = TrackedRetVals.find(F);
1168     if (TFRVI == TrackedRetVals.end())
1169       goto CallOverdefined;  // Not tracking this callee.
1170 
1171     // If so, propagate the return value of the callee into this call result.
1172     mergeInValue(I, TFRVI->second);
1173   }
1174 }
1175 
1176 void SCCPSolver::Solve() {
1177   // Process the work lists until they are empty!
1178   while (!BBWorkList.empty() || !InstWorkList.empty() ||
1179          !OverdefinedInstWorkList.empty()) {
1180     // Process the overdefined instruction's work list first, which drives other
1181     // things to overdefined more quickly.
1182     while (!OverdefinedInstWorkList.empty()) {
1183       Value *I = OverdefinedInstWorkList.pop_back_val();
1184 
1185       DEBUG(dbgs() << "\nPopped off OI-WL: " << *I << '\n');
1186 
1187       // "I" got into the work list because it either made the transition from
1188       // bottom to constant, or to overdefined.
1189       //
1190       // Anything on this worklist that is overdefined need not be visited
1191       // since all of its users will have already been marked as overdefined
1192       // Update all of the users of this instruction's value.
1193       //
1194       for (User *U : I->users())
1195         if (auto *UI = dyn_cast<Instruction>(U))
1196           OperandChangedState(UI);
1197     }
1198 
1199     // Process the instruction work list.
1200     while (!InstWorkList.empty()) {
1201       Value *I = InstWorkList.pop_back_val();
1202 
1203       DEBUG(dbgs() << "\nPopped off I-WL: " << *I << '\n');
1204 
1205       // "I" got into the work list because it made the transition from undef to
1206       // constant.
1207       //
1208       // Anything on this worklist that is overdefined need not be visited
1209       // since all of its users will have already been marked as overdefined.
1210       // Update all of the users of this instruction's value.
1211       //
1212       if (I->getType()->isStructTy() || !getValueState(I).isOverdefined())
1213         for (User *U : I->users())
1214           if (auto *UI = dyn_cast<Instruction>(U))
1215             OperandChangedState(UI);
1216     }
1217 
1218     // Process the basic block work list.
1219     while (!BBWorkList.empty()) {
1220       BasicBlock *BB = BBWorkList.back();
1221       BBWorkList.pop_back();
1222 
1223       DEBUG(dbgs() << "\nPopped off BBWL: " << *BB << '\n');
1224 
1225       // Notify all instructions in this basic block that they are newly
1226       // executable.
1227       visit(BB);
1228     }
1229   }
1230 }
1231 
1232 /// ResolvedUndefsIn - While solving the dataflow for a function, we assume
1233 /// that branches on undef values cannot reach any of their successors.
1234 /// However, this is not a safe assumption.  After we solve dataflow, this
1235 /// method should be use to handle this.  If this returns true, the solver
1236 /// should be rerun.
1237 ///
1238 /// This method handles this by finding an unresolved branch and marking it one
1239 /// of the edges from the block as being feasible, even though the condition
1240 /// doesn't say it would otherwise be.  This allows SCCP to find the rest of the
1241 /// CFG and only slightly pessimizes the analysis results (by marking one,
1242 /// potentially infeasible, edge feasible).  This cannot usefully modify the
1243 /// constraints on the condition of the branch, as that would impact other users
1244 /// of the value.
1245 ///
1246 /// This scan also checks for values that use undefs, whose results are actually
1247 /// defined.  For example, 'zext i8 undef to i32' should produce all zeros
1248 /// conservatively, as "(zext i8 X -> i32) & 0xFF00" must always return zero,
1249 /// even if X isn't defined.
1250 bool SCCPSolver::ResolvedUndefsIn(Function &F) {
1251   for (BasicBlock &BB : F) {
1252     if (!BBExecutable.count(&BB))
1253       continue;
1254 
1255     for (Instruction &I : BB) {
1256       // Look for instructions which produce undef values.
1257       if (I.getType()->isVoidTy()) continue;
1258 
1259       if (auto *STy = dyn_cast<StructType>(I.getType())) {
1260         // Only a few things that can be structs matter for undef.
1261 
1262         // Tracked calls must never be marked overdefined in ResolvedUndefsIn.
1263         if (CallSite CS = CallSite(&I))
1264           if (Function *F = CS.getCalledFunction())
1265             if (MRVFunctionsTracked.count(F))
1266               continue;
1267 
1268         // extractvalue and insertvalue don't need to be marked; they are
1269         // tracked as precisely as their operands.
1270         if (isa<ExtractValueInst>(I) || isa<InsertValueInst>(I))
1271           continue;
1272 
1273         // Send the results of everything else to overdefined.  We could be
1274         // more precise than this but it isn't worth bothering.
1275         for (unsigned i = 0, e = STy->getNumElements(); i != e; ++i) {
1276           LatticeVal &LV = getStructValueState(&I, i);
1277           if (LV.isUnknown())
1278             markOverdefined(LV, &I);
1279         }
1280         continue;
1281       }
1282 
1283       LatticeVal &LV = getValueState(&I);
1284       if (!LV.isUnknown()) continue;
1285 
1286       // extractvalue is safe; check here because the argument is a struct.
1287       if (isa<ExtractValueInst>(I))
1288         continue;
1289 
1290       // Compute the operand LatticeVals, for convenience below.
1291       // Anything taking a struct is conservatively assumed to require
1292       // overdefined markings.
1293       if (I.getOperand(0)->getType()->isStructTy()) {
1294         markOverdefined(&I);
1295         return true;
1296       }
1297       LatticeVal Op0LV = getValueState(I.getOperand(0));
1298       LatticeVal Op1LV;
1299       if (I.getNumOperands() == 2) {
1300         if (I.getOperand(1)->getType()->isStructTy()) {
1301           markOverdefined(&I);
1302           return true;
1303         }
1304 
1305         Op1LV = getValueState(I.getOperand(1));
1306       }
1307       // If this is an instructions whose result is defined even if the input is
1308       // not fully defined, propagate the information.
1309       Type *ITy = I.getType();
1310       switch (I.getOpcode()) {
1311       case Instruction::Add:
1312       case Instruction::Sub:
1313       case Instruction::Trunc:
1314       case Instruction::FPTrunc:
1315       case Instruction::BitCast:
1316         break; // Any undef -> undef
1317       case Instruction::FSub:
1318       case Instruction::FAdd:
1319       case Instruction::FMul:
1320       case Instruction::FDiv:
1321       case Instruction::FRem:
1322         // Floating-point binary operation: be conservative.
1323         if (Op0LV.isUnknown() && Op1LV.isUnknown())
1324           markForcedConstant(&I, Constant::getNullValue(ITy));
1325         else
1326           markOverdefined(&I);
1327         return true;
1328       case Instruction::ZExt:
1329       case Instruction::SExt:
1330       case Instruction::FPToUI:
1331       case Instruction::FPToSI:
1332       case Instruction::FPExt:
1333       case Instruction::PtrToInt:
1334       case Instruction::IntToPtr:
1335       case Instruction::SIToFP:
1336       case Instruction::UIToFP:
1337         // undef -> 0; some outputs are impossible
1338         markForcedConstant(&I, Constant::getNullValue(ITy));
1339         return true;
1340       case Instruction::Mul:
1341       case Instruction::And:
1342         // Both operands undef -> undef
1343         if (Op0LV.isUnknown() && Op1LV.isUnknown())
1344           break;
1345         // undef * X -> 0.   X could be zero.
1346         // undef & X -> 0.   X could be zero.
1347         markForcedConstant(&I, Constant::getNullValue(ITy));
1348         return true;
1349 
1350       case Instruction::Or:
1351         // Both operands undef -> undef
1352         if (Op0LV.isUnknown() && Op1LV.isUnknown())
1353           break;
1354         // undef | X -> -1.   X could be -1.
1355         markForcedConstant(&I, Constant::getAllOnesValue(ITy));
1356         return true;
1357 
1358       case Instruction::Xor:
1359         // undef ^ undef -> 0; strictly speaking, this is not strictly
1360         // necessary, but we try to be nice to people who expect this
1361         // behavior in simple cases
1362         if (Op0LV.isUnknown() && Op1LV.isUnknown()) {
1363           markForcedConstant(&I, Constant::getNullValue(ITy));
1364           return true;
1365         }
1366         // undef ^ X -> undef
1367         break;
1368 
1369       case Instruction::SDiv:
1370       case Instruction::UDiv:
1371       case Instruction::SRem:
1372       case Instruction::URem:
1373         // X / undef -> undef.  No change.
1374         // X % undef -> undef.  No change.
1375         if (Op1LV.isUnknown()) break;
1376 
1377         // X / 0 -> undef.  No change.
1378         // X % 0 -> undef.  No change.
1379         if (Op1LV.isConstant() && Op1LV.getConstant()->isZeroValue())
1380           break;
1381 
1382         // undef / X -> 0.   X could be maxint.
1383         // undef % X -> 0.   X could be 1.
1384         markForcedConstant(&I, Constant::getNullValue(ITy));
1385         return true;
1386 
1387       case Instruction::AShr:
1388         // X >>a undef -> undef.
1389         if (Op1LV.isUnknown()) break;
1390 
1391         // Shifting by the bitwidth or more is undefined.
1392         if (Op1LV.isConstant()) {
1393           if (auto *ShiftAmt = Op1LV.getConstantInt())
1394             if (ShiftAmt->getLimitedValue() >=
1395                 ShiftAmt->getType()->getScalarSizeInBits())
1396               break;
1397         }
1398 
1399         // undef >>a X -> all ones
1400         markForcedConstant(&I, Constant::getAllOnesValue(ITy));
1401         return true;
1402       case Instruction::LShr:
1403       case Instruction::Shl:
1404         // X << undef -> undef.
1405         // X >> undef -> undef.
1406         if (Op1LV.isUnknown()) break;
1407 
1408         // Shifting by the bitwidth or more is undefined.
1409         if (Op1LV.isConstant()) {
1410           if (auto *ShiftAmt = Op1LV.getConstantInt())
1411             if (ShiftAmt->getLimitedValue() >=
1412                 ShiftAmt->getType()->getScalarSizeInBits())
1413               break;
1414         }
1415 
1416         // undef << X -> 0
1417         // undef >> X -> 0
1418         markForcedConstant(&I, Constant::getNullValue(ITy));
1419         return true;
1420       case Instruction::Select:
1421         Op1LV = getValueState(I.getOperand(1));
1422         // undef ? X : Y  -> X or Y.  There could be commonality between X/Y.
1423         if (Op0LV.isUnknown()) {
1424           if (!Op1LV.isConstant())  // Pick the constant one if there is any.
1425             Op1LV = getValueState(I.getOperand(2));
1426         } else if (Op1LV.isUnknown()) {
1427           // c ? undef : undef -> undef.  No change.
1428           Op1LV = getValueState(I.getOperand(2));
1429           if (Op1LV.isUnknown())
1430             break;
1431           // Otherwise, c ? undef : x -> x.
1432         } else {
1433           // Leave Op1LV as Operand(1)'s LatticeValue.
1434         }
1435 
1436         if (Op1LV.isConstant())
1437           markForcedConstant(&I, Op1LV.getConstant());
1438         else
1439           markOverdefined(&I);
1440         return true;
1441       case Instruction::Load:
1442         // A load here means one of two things: a load of undef from a global,
1443         // a load from an unknown pointer.  Either way, having it return undef
1444         // is okay.
1445         break;
1446       case Instruction::ICmp:
1447         // X == undef -> undef.  Other comparisons get more complicated.
1448         if (cast<ICmpInst>(&I)->isEquality())
1449           break;
1450         markOverdefined(&I);
1451         return true;
1452       case Instruction::Call:
1453       case Instruction::Invoke: {
1454         // There are two reasons a call can have an undef result
1455         // 1. It could be tracked.
1456         // 2. It could be constant-foldable.
1457         // Because of the way we solve return values, tracked calls must
1458         // never be marked overdefined in ResolvedUndefsIn.
1459         if (Function *F = CallSite(&I).getCalledFunction())
1460           if (TrackedRetVals.count(F))
1461             break;
1462 
1463         // If the call is constant-foldable, we mark it overdefined because
1464         // we do not know what return values are valid.
1465         markOverdefined(&I);
1466         return true;
1467       }
1468       default:
1469         // If we don't know what should happen here, conservatively mark it
1470         // overdefined.
1471         markOverdefined(&I);
1472         return true;
1473       }
1474     }
1475 
1476     // Check to see if we have a branch or switch on an undefined value.  If so
1477     // we force the branch to go one way or the other to make the successor
1478     // values live.  It doesn't really matter which way we force it.
1479     TerminatorInst *TI = BB.getTerminator();
1480     if (auto *BI = dyn_cast<BranchInst>(TI)) {
1481       if (!BI->isConditional()) continue;
1482       if (!getValueState(BI->getCondition()).isUnknown())
1483         continue;
1484 
1485       // If the input to SCCP is actually branch on undef, fix the undef to
1486       // false.
1487       if (isa<UndefValue>(BI->getCondition())) {
1488         BI->setCondition(ConstantInt::getFalse(BI->getContext()));
1489         markEdgeExecutable(&BB, TI->getSuccessor(1));
1490         return true;
1491       }
1492 
1493       // Otherwise, it is a branch on a symbolic value which is currently
1494       // considered to be undef.  Handle this by forcing the input value to the
1495       // branch to false.
1496       markForcedConstant(BI->getCondition(),
1497                          ConstantInt::getFalse(TI->getContext()));
1498       return true;
1499     }
1500 
1501     if (auto *SI = dyn_cast<SwitchInst>(TI)) {
1502       if (!SI->getNumCases() || !getValueState(SI->getCondition()).isUnknown())
1503         continue;
1504 
1505       // If the input to SCCP is actually switch on undef, fix the undef to
1506       // the first constant.
1507       if (isa<UndefValue>(SI->getCondition())) {
1508         SI->setCondition(SI->case_begin().getCaseValue());
1509         markEdgeExecutable(&BB, SI->case_begin().getCaseSuccessor());
1510         return true;
1511       }
1512 
1513       markForcedConstant(SI->getCondition(), SI->case_begin().getCaseValue());
1514       return true;
1515     }
1516   }
1517 
1518   return false;
1519 }
1520 
1521 static bool tryToReplaceWithConstant(SCCPSolver &Solver, Value *V) {
1522   Constant *Const = nullptr;
1523   if (V->getType()->isStructTy()) {
1524     std::vector<LatticeVal> IVs = Solver.getStructLatticeValueFor(V);
1525     if (any_of(IVs, [](const LatticeVal &LV) { return LV.isOverdefined(); }))
1526       return false;
1527     std::vector<Constant *> ConstVals;
1528     auto *ST = dyn_cast<StructType>(V->getType());
1529     for (unsigned i = 0, e = ST->getNumElements(); i != e; ++i) {
1530       LatticeVal V = IVs[i];
1531       ConstVals.push_back(V.isConstant()
1532                               ? V.getConstant()
1533                               : UndefValue::get(ST->getElementType(i)));
1534     }
1535     Const = ConstantStruct::get(ST, ConstVals);
1536   } else {
1537     LatticeVal IV = Solver.getLatticeValueFor(V);
1538     if (IV.isOverdefined())
1539       return false;
1540     Const = IV.isConstant() ? IV.getConstant() : UndefValue::get(V->getType());
1541   }
1542   assert(Const && "Constant is nullptr here!");
1543   DEBUG(dbgs() << "  Constant: " << *Const << " = " << *V << '\n');
1544 
1545   // Replaces all of the uses of a variable with uses of the constant.
1546   V->replaceAllUsesWith(Const);
1547   return true;
1548 }
1549 
1550 // runSCCP() - Run the Sparse Conditional Constant Propagation algorithm,
1551 // and return true if the function was modified.
1552 //
1553 static bool runSCCP(Function &F, const DataLayout &DL,
1554                     const TargetLibraryInfo *TLI) {
1555   DEBUG(dbgs() << "SCCP on function '" << F.getName() << "'\n");
1556   SCCPSolver Solver(DL, TLI);
1557 
1558   // Mark the first block of the function as being executable.
1559   Solver.MarkBlockExecutable(&F.front());
1560 
1561   // Mark all arguments to the function as being overdefined.
1562   for (Argument &AI : F.args())
1563     Solver.markAnythingOverdefined(&AI);
1564 
1565   // Solve for constants.
1566   bool ResolvedUndefs = true;
1567   while (ResolvedUndefs) {
1568     Solver.Solve();
1569     DEBUG(dbgs() << "RESOLVING UNDEFs\n");
1570     ResolvedUndefs = Solver.ResolvedUndefsIn(F);
1571   }
1572 
1573   bool MadeChanges = false;
1574 
1575   // If we decided that there are basic blocks that are dead in this function,
1576   // delete their contents now.  Note that we cannot actually delete the blocks,
1577   // as we cannot modify the CFG of the function.
1578 
1579   for (BasicBlock &BB : F) {
1580     if (!Solver.isBlockExecutable(&BB)) {
1581       DEBUG(dbgs() << "  BasicBlock Dead:" << BB);
1582 
1583       ++NumDeadBlocks;
1584       NumInstRemoved += removeAllNonTerminatorAndEHPadInstructions(&BB);
1585 
1586       MadeChanges = true;
1587       continue;
1588     }
1589 
1590     // Iterate over all of the instructions in a function, replacing them with
1591     // constants if we have found them to be of constant values.
1592     //
1593     for (BasicBlock::iterator BI = BB.begin(), E = BB.end(); BI != E;) {
1594       Instruction *Inst = &*BI++;
1595       if (Inst->getType()->isVoidTy() || isa<TerminatorInst>(Inst))
1596         continue;
1597 
1598       if (tryToReplaceWithConstant(Solver, Inst)) {
1599         if (isInstructionTriviallyDead(Inst))
1600           Inst->eraseFromParent();
1601         // Hey, we just changed something!
1602         MadeChanges = true;
1603         ++NumInstRemoved;
1604       }
1605     }
1606   }
1607 
1608   return MadeChanges;
1609 }
1610 
1611 PreservedAnalyses SCCPPass::run(Function &F, FunctionAnalysisManager &AM) {
1612   const DataLayout &DL = F.getParent()->getDataLayout();
1613   auto &TLI = AM.getResult<TargetLibraryAnalysis>(F);
1614   if (!runSCCP(F, DL, &TLI))
1615     return PreservedAnalyses::all();
1616 
1617   auto PA = PreservedAnalyses();
1618   PA.preserve<GlobalsAA>();
1619   return PA;
1620 }
1621 
1622 namespace {
1623 //===--------------------------------------------------------------------===//
1624 //
1625 /// SCCP Class - This class uses the SCCPSolver to implement a per-function
1626 /// Sparse Conditional Constant Propagator.
1627 ///
1628 class SCCPLegacyPass : public FunctionPass {
1629 public:
1630   void getAnalysisUsage(AnalysisUsage &AU) const override {
1631     AU.addRequired<TargetLibraryInfoWrapperPass>();
1632     AU.addPreserved<GlobalsAAWrapperPass>();
1633   }
1634   static char ID; // Pass identification, replacement for typeid
1635   SCCPLegacyPass() : FunctionPass(ID) {
1636     initializeSCCPLegacyPassPass(*PassRegistry::getPassRegistry());
1637   }
1638 
1639   // runOnFunction - Run the Sparse Conditional Constant Propagation
1640   // algorithm, and return true if the function was modified.
1641   //
1642   bool runOnFunction(Function &F) override {
1643     if (skipFunction(F))
1644       return false;
1645     const DataLayout &DL = F.getParent()->getDataLayout();
1646     const TargetLibraryInfo *TLI =
1647         &getAnalysis<TargetLibraryInfoWrapperPass>().getTLI();
1648     return runSCCP(F, DL, TLI);
1649   }
1650 };
1651 } // end anonymous namespace
1652 
1653 char SCCPLegacyPass::ID = 0;
1654 INITIALIZE_PASS_BEGIN(SCCPLegacyPass, "sccp",
1655                       "Sparse Conditional Constant Propagation", false, false)
1656 INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfoWrapperPass)
1657 INITIALIZE_PASS_END(SCCPLegacyPass, "sccp",
1658                     "Sparse Conditional Constant Propagation", false, false)
1659 
1660 // createSCCPPass - This is the public interface to this file.
1661 FunctionPass *llvm::createSCCPPass() { return new SCCPLegacyPass(); }
1662 
1663 static bool AddressIsTaken(const GlobalValue *GV) {
1664   // Delete any dead constantexpr klingons.
1665   GV->removeDeadConstantUsers();
1666 
1667   for (const Use &U : GV->uses()) {
1668     const User *UR = U.getUser();
1669     if (const auto *SI = dyn_cast<StoreInst>(UR)) {
1670       if (SI->getOperand(0) == GV || SI->isVolatile())
1671         return true;  // Storing addr of GV.
1672     } else if (isa<InvokeInst>(UR) || isa<CallInst>(UR)) {
1673       // Make sure we are calling the function, not passing the address.
1674       ImmutableCallSite CS(cast<Instruction>(UR));
1675       if (!CS.isCallee(&U))
1676         return true;
1677     } else if (const auto *LI = dyn_cast<LoadInst>(UR)) {
1678       if (LI->isVolatile())
1679         return true;
1680     } else if (isa<BlockAddress>(UR)) {
1681       // blockaddress doesn't take the address of the function, it takes addr
1682       // of label.
1683     } else {
1684       return true;
1685     }
1686   }
1687   return false;
1688 }
1689 
1690 static void findReturnsToZap(Function &F,
1691                              SmallPtrSet<Function *, 32> &AddressTakenFunctions,
1692                              SmallVector<ReturnInst *, 8> &ReturnsToZap) {
1693   // We can only do this if we know that nothing else can call the function.
1694   if (!F.hasLocalLinkage() || AddressTakenFunctions.count(&F))
1695     return;
1696 
1697   for (BasicBlock &BB : F)
1698     if (auto *RI = dyn_cast<ReturnInst>(BB.getTerminator()))
1699       if (!isa<UndefValue>(RI->getOperand(0)))
1700         ReturnsToZap.push_back(RI);
1701 }
1702 
1703 static bool runIPSCCP(Module &M, const DataLayout &DL,
1704                       const TargetLibraryInfo *TLI) {
1705   SCCPSolver Solver(DL, TLI);
1706 
1707   // AddressTakenFunctions - This set keeps track of the address-taken functions
1708   // that are in the input.  As IPSCCP runs through and simplifies code,
1709   // functions that were address taken can end up losing their
1710   // address-taken-ness.  Because of this, we keep track of their addresses from
1711   // the first pass so we can use them for the later simplification pass.
1712   SmallPtrSet<Function*, 32> AddressTakenFunctions;
1713 
1714   // Loop over all functions, marking arguments to those with their addresses
1715   // taken or that are external as overdefined.
1716   //
1717   for (Function &F : M) {
1718     if (F.isDeclaration())
1719       continue;
1720 
1721     // If this is an exact definition of this function, then we can propagate
1722     // information about its result into callsites of it.
1723     if (F.hasExactDefinition())
1724       Solver.AddTrackedFunction(&F);
1725 
1726     // If this function only has direct calls that we can see, we can track its
1727     // arguments and return value aggressively, and can assume it is not called
1728     // unless we see evidence to the contrary.
1729     if (F.hasLocalLinkage()) {
1730       if (AddressIsTaken(&F))
1731         AddressTakenFunctions.insert(&F);
1732       else {
1733         Solver.AddArgumentTrackedFunction(&F);
1734         continue;
1735       }
1736     }
1737 
1738     // Assume the function is called.
1739     Solver.MarkBlockExecutable(&F.front());
1740 
1741     // Assume nothing about the incoming arguments.
1742     for (Argument &AI : F.args())
1743       Solver.markAnythingOverdefined(&AI);
1744   }
1745 
1746   // Loop over global variables.  We inform the solver about any internal global
1747   // variables that do not have their 'addresses taken'.  If they don't have
1748   // their addresses taken, we can propagate constants through them.
1749   for (GlobalVariable &G : M.globals())
1750     if (!G.isConstant() && G.hasLocalLinkage() && !AddressIsTaken(&G))
1751       Solver.TrackValueOfGlobalVariable(&G);
1752 
1753   // Solve for constants.
1754   bool ResolvedUndefs = true;
1755   while (ResolvedUndefs) {
1756     Solver.Solve();
1757 
1758     DEBUG(dbgs() << "RESOLVING UNDEFS\n");
1759     ResolvedUndefs = false;
1760     for (Function &F : M)
1761       ResolvedUndefs |= Solver.ResolvedUndefsIn(F);
1762   }
1763 
1764   bool MadeChanges = false;
1765 
1766   // Iterate over all of the instructions in the module, replacing them with
1767   // constants if we have found them to be of constant values.
1768   //
1769   SmallVector<BasicBlock*, 512> BlocksToErase;
1770 
1771   for (Function &F : M) {
1772     if (F.isDeclaration())
1773       continue;
1774 
1775     if (Solver.isBlockExecutable(&F.front())) {
1776       for (Function::arg_iterator AI = F.arg_begin(), E = F.arg_end(); AI != E;
1777            ++AI) {
1778         if (AI->use_empty())
1779           continue;
1780         if (tryToReplaceWithConstant(Solver, &*AI))
1781           ++IPNumArgsElimed;
1782       }
1783     }
1784 
1785     for (Function::iterator BB = F.begin(), E = F.end(); BB != E; ++BB) {
1786       if (!Solver.isBlockExecutable(&*BB)) {
1787         DEBUG(dbgs() << "  BasicBlock Dead:" << *BB);
1788 
1789         ++NumDeadBlocks;
1790         NumInstRemoved +=
1791             changeToUnreachable(BB->getFirstNonPHI(), /*UseLLVMTrap=*/false);
1792 
1793         MadeChanges = true;
1794 
1795         if (&*BB != &F.front())
1796           BlocksToErase.push_back(&*BB);
1797         continue;
1798       }
1799 
1800       for (BasicBlock::iterator BI = BB->begin(), E = BB->end(); BI != E; ) {
1801         Instruction *Inst = &*BI++;
1802         if (Inst->getType()->isVoidTy())
1803           continue;
1804         if (tryToReplaceWithConstant(Solver, Inst)) {
1805           if (!isa<CallInst>(Inst) && !isa<TerminatorInst>(Inst))
1806             Inst->eraseFromParent();
1807           // Hey, we just changed something!
1808           MadeChanges = true;
1809           ++IPNumInstRemoved;
1810         }
1811       }
1812     }
1813 
1814     // Now that all instructions in the function are constant folded, erase dead
1815     // blocks, because we can now use ConstantFoldTerminator to get rid of
1816     // in-edges.
1817     for (unsigned i = 0, e = BlocksToErase.size(); i != e; ++i) {
1818       // If there are any PHI nodes in this successor, drop entries for BB now.
1819       BasicBlock *DeadBB = BlocksToErase[i];
1820       for (Value::user_iterator UI = DeadBB->user_begin(),
1821                                 UE = DeadBB->user_end();
1822            UI != UE;) {
1823         // Grab the user and then increment the iterator early, as the user
1824         // will be deleted. Step past all adjacent uses from the same user.
1825         auto *I = dyn_cast<Instruction>(*UI);
1826         do { ++UI; } while (UI != UE && *UI == I);
1827 
1828         // Ignore blockaddress users; BasicBlock's dtor will handle them.
1829         if (!I) continue;
1830 
1831         bool Folded = ConstantFoldTerminator(I->getParent());
1832         if (!Folded) {
1833           // The constant folder may not have been able to fold the terminator
1834           // if this is a branch or switch on undef.  Fold it manually as a
1835           // branch to the first successor.
1836 #ifndef NDEBUG
1837           if (auto *BI = dyn_cast<BranchInst>(I)) {
1838             assert(BI->isConditional() && isa<UndefValue>(BI->getCondition()) &&
1839                    "Branch should be foldable!");
1840           } else if (auto *SI = dyn_cast<SwitchInst>(I)) {
1841             assert(isa<UndefValue>(SI->getCondition()) && "Switch should fold");
1842           } else {
1843             llvm_unreachable("Didn't fold away reference to block!");
1844           }
1845 #endif
1846 
1847           // Make this an uncond branch to the first successor.
1848           TerminatorInst *TI = I->getParent()->getTerminator();
1849           BranchInst::Create(TI->getSuccessor(0), TI);
1850 
1851           // Remove entries in successor phi nodes to remove edges.
1852           for (unsigned i = 1, e = TI->getNumSuccessors(); i != e; ++i)
1853             TI->getSuccessor(i)->removePredecessor(TI->getParent());
1854 
1855           // Remove the old terminator.
1856           TI->eraseFromParent();
1857         }
1858       }
1859 
1860       // Finally, delete the basic block.
1861       F.getBasicBlockList().erase(DeadBB);
1862     }
1863     BlocksToErase.clear();
1864   }
1865 
1866   // If we inferred constant or undef return values for a function, we replaced
1867   // all call uses with the inferred value.  This means we don't need to bother
1868   // actually returning anything from the function.  Replace all return
1869   // instructions with return undef.
1870   //
1871   // Do this in two stages: first identify the functions we should process, then
1872   // actually zap their returns.  This is important because we can only do this
1873   // if the address of the function isn't taken.  In cases where a return is the
1874   // last use of a function, the order of processing functions would affect
1875   // whether other functions are optimizable.
1876   SmallVector<ReturnInst*, 8> ReturnsToZap;
1877 
1878   const DenseMap<Function*, LatticeVal> &RV = Solver.getTrackedRetVals();
1879   for (const auto &I : RV) {
1880     Function *F = I.first;
1881     if (I.second.isOverdefined() || F->getReturnType()->isVoidTy())
1882       continue;
1883     findReturnsToZap(*F, AddressTakenFunctions, ReturnsToZap);
1884   }
1885 
1886   for (const auto &F : Solver.getMRVFunctionsTracked()) {
1887     assert(F->getReturnType()->isStructTy() &&
1888            "The return type should be a struct");
1889     StructType *STy = cast<StructType>(F->getReturnType());
1890     if (Solver.isStructLatticeConstant(F, STy))
1891       findReturnsToZap(*F, AddressTakenFunctions, ReturnsToZap);
1892   }
1893 
1894   // Zap all returns which we've identified as zap to change.
1895   for (unsigned i = 0, e = ReturnsToZap.size(); i != e; ++i) {
1896     Function *F = ReturnsToZap[i]->getParent()->getParent();
1897     ReturnsToZap[i]->setOperand(0, UndefValue::get(F->getReturnType()));
1898   }
1899 
1900   // If we inferred constant or undef values for globals variables, we can
1901   // delete the global and any stores that remain to it.
1902   const DenseMap<GlobalVariable*, LatticeVal> &TG = Solver.getTrackedGlobals();
1903   for (DenseMap<GlobalVariable*, LatticeVal>::const_iterator I = TG.begin(),
1904          E = TG.end(); I != E; ++I) {
1905     GlobalVariable *GV = I->first;
1906     assert(!I->second.isOverdefined() &&
1907            "Overdefined values should have been taken out of the map!");
1908     DEBUG(dbgs() << "Found that GV '" << GV->getName() << "' is constant!\n");
1909     while (!GV->use_empty()) {
1910       StoreInst *SI = cast<StoreInst>(GV->user_back());
1911       SI->eraseFromParent();
1912     }
1913     M.getGlobalList().erase(GV);
1914     ++IPNumGlobalConst;
1915   }
1916 
1917   return MadeChanges;
1918 }
1919 
1920 PreservedAnalyses IPSCCPPass::run(Module &M, ModuleAnalysisManager &AM) {
1921   const DataLayout &DL = M.getDataLayout();
1922   auto &TLI = AM.getResult<TargetLibraryAnalysis>(M);
1923   if (!runIPSCCP(M, DL, &TLI))
1924     return PreservedAnalyses::all();
1925   return PreservedAnalyses::none();
1926 }
1927 
1928 namespace {
1929 //===--------------------------------------------------------------------===//
1930 //
1931 /// IPSCCP Class - This class implements interprocedural Sparse Conditional
1932 /// Constant Propagation.
1933 ///
1934 class IPSCCPLegacyPass : public ModulePass {
1935 public:
1936   static char ID;
1937 
1938   IPSCCPLegacyPass() : ModulePass(ID) {
1939     initializeIPSCCPLegacyPassPass(*PassRegistry::getPassRegistry());
1940   }
1941 
1942   bool runOnModule(Module &M) override {
1943     if (skipModule(M))
1944       return false;
1945     const DataLayout &DL = M.getDataLayout();
1946     const TargetLibraryInfo *TLI =
1947         &getAnalysis<TargetLibraryInfoWrapperPass>().getTLI();
1948     return runIPSCCP(M, DL, TLI);
1949   }
1950 
1951   void getAnalysisUsage(AnalysisUsage &AU) const override {
1952     AU.addRequired<TargetLibraryInfoWrapperPass>();
1953   }
1954 };
1955 } // end anonymous namespace
1956 
1957 char IPSCCPLegacyPass::ID = 0;
1958 INITIALIZE_PASS_BEGIN(IPSCCPLegacyPass, "ipsccp",
1959                       "Interprocedural Sparse Conditional Constant Propagation",
1960                       false, false)
1961 INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfoWrapperPass)
1962 INITIALIZE_PASS_END(IPSCCPLegacyPass, "ipsccp",
1963                     "Interprocedural Sparse Conditional Constant Propagation",
1964                     false, false)
1965 
1966 // createIPSCCPPass - This is the public interface to this file.
1967 ModulePass *llvm::createIPSCCPPass() { return new IPSCCPLegacyPass(); }
1968