xref: /freebsd-src/contrib/llvm-project/llvm/lib/Transforms/Utils/Local.cpp (revision 5e801ac66d24704442eba426ed13c3effb8a34e7)
1 //===- Local.cpp - Functions to perform local transformations -------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 //
9 // This family of functions perform various local transformations to the
10 // program.
11 //
12 //===----------------------------------------------------------------------===//
13 
14 #include "llvm/Transforms/Utils/Local.h"
15 #include "llvm/ADT/APInt.h"
16 #include "llvm/ADT/DenseMap.h"
17 #include "llvm/ADT/DenseMapInfo.h"
18 #include "llvm/ADT/DenseSet.h"
19 #include "llvm/ADT/Hashing.h"
20 #include "llvm/ADT/None.h"
21 #include "llvm/ADT/Optional.h"
22 #include "llvm/ADT/STLExtras.h"
23 #include "llvm/ADT/SetVector.h"
24 #include "llvm/ADT/SmallPtrSet.h"
25 #include "llvm/ADT/SmallVector.h"
26 #include "llvm/ADT/Statistic.h"
27 #include "llvm/Analysis/AssumeBundleQueries.h"
28 #include "llvm/Analysis/ConstantFolding.h"
29 #include "llvm/Analysis/DomTreeUpdater.h"
30 #include "llvm/Analysis/EHPersonalities.h"
31 #include "llvm/Analysis/InstructionSimplify.h"
32 #include "llvm/Analysis/LazyValueInfo.h"
33 #include "llvm/Analysis/MemoryBuiltins.h"
34 #include "llvm/Analysis/MemorySSAUpdater.h"
35 #include "llvm/Analysis/TargetLibraryInfo.h"
36 #include "llvm/Analysis/ValueTracking.h"
37 #include "llvm/Analysis/VectorUtils.h"
38 #include "llvm/BinaryFormat/Dwarf.h"
39 #include "llvm/IR/Argument.h"
40 #include "llvm/IR/Attributes.h"
41 #include "llvm/IR/BasicBlock.h"
42 #include "llvm/IR/CFG.h"
43 #include "llvm/IR/Constant.h"
44 #include "llvm/IR/ConstantRange.h"
45 #include "llvm/IR/Constants.h"
46 #include "llvm/IR/DIBuilder.h"
47 #include "llvm/IR/DataLayout.h"
48 #include "llvm/IR/DebugInfoMetadata.h"
49 #include "llvm/IR/DebugLoc.h"
50 #include "llvm/IR/DerivedTypes.h"
51 #include "llvm/IR/Dominators.h"
52 #include "llvm/IR/Function.h"
53 #include "llvm/IR/GetElementPtrTypeIterator.h"
54 #include "llvm/IR/GlobalObject.h"
55 #include "llvm/IR/IRBuilder.h"
56 #include "llvm/IR/InstrTypes.h"
57 #include "llvm/IR/Instruction.h"
58 #include "llvm/IR/Instructions.h"
59 #include "llvm/IR/IntrinsicInst.h"
60 #include "llvm/IR/Intrinsics.h"
61 #include "llvm/IR/LLVMContext.h"
62 #include "llvm/IR/MDBuilder.h"
63 #include "llvm/IR/Metadata.h"
64 #include "llvm/IR/Module.h"
65 #include "llvm/IR/Operator.h"
66 #include "llvm/IR/PatternMatch.h"
67 #include "llvm/IR/PseudoProbe.h"
68 #include "llvm/IR/Type.h"
69 #include "llvm/IR/Use.h"
70 #include "llvm/IR/User.h"
71 #include "llvm/IR/Value.h"
72 #include "llvm/IR/ValueHandle.h"
73 #include "llvm/Support/Casting.h"
74 #include "llvm/Support/Debug.h"
75 #include "llvm/Support/ErrorHandling.h"
76 #include "llvm/Support/KnownBits.h"
77 #include "llvm/Support/raw_ostream.h"
78 #include "llvm/Transforms/Utils/BasicBlockUtils.h"
79 #include "llvm/Transforms/Utils/ValueMapper.h"
80 #include <algorithm>
81 #include <cassert>
82 #include <climits>
83 #include <cstdint>
84 #include <iterator>
85 #include <map>
86 #include <utility>
87 
88 using namespace llvm;
89 using namespace llvm::PatternMatch;
90 
91 #define DEBUG_TYPE "local"
92 
93 STATISTIC(NumRemoved, "Number of unreachable basic blocks removed");
94 STATISTIC(NumPHICSEs, "Number of PHI's that got CSE'd");
95 
96 static cl::opt<bool> PHICSEDebugHash(
97     "phicse-debug-hash",
98 #ifdef EXPENSIVE_CHECKS
99     cl::init(true),
100 #else
101     cl::init(false),
102 #endif
103     cl::Hidden,
104     cl::desc("Perform extra assertion checking to verify that PHINodes's hash "
105              "function is well-behaved w.r.t. its isEqual predicate"));
106 
107 static cl::opt<unsigned> PHICSENumPHISmallSize(
108     "phicse-num-phi-smallsize", cl::init(32), cl::Hidden,
109     cl::desc(
110         "When the basic block contains not more than this number of PHI nodes, "
111         "perform a (faster!) exhaustive search instead of set-driven one."));
112 
113 // Max recursion depth for collectBitParts used when detecting bswap and
114 // bitreverse idioms.
115 static const unsigned BitPartRecursionMaxDepth = 48;
116 
117 //===----------------------------------------------------------------------===//
118 //  Local constant propagation.
119 //
120 
121 /// ConstantFoldTerminator - If a terminator instruction is predicated on a
122 /// constant value, convert it into an unconditional branch to the constant
123 /// destination.  This is a nontrivial operation because the successors of this
124 /// basic block must have their PHI nodes updated.
125 /// Also calls RecursivelyDeleteTriviallyDeadInstructions() on any branch/switch
126 /// conditions and indirectbr addresses this might make dead if
127 /// DeleteDeadConditions is true.
128 bool llvm::ConstantFoldTerminator(BasicBlock *BB, bool DeleteDeadConditions,
129                                   const TargetLibraryInfo *TLI,
130                                   DomTreeUpdater *DTU) {
131   Instruction *T = BB->getTerminator();
132   IRBuilder<> Builder(T);
133 
134   // Branch - See if we are conditional jumping on constant
135   if (auto *BI = dyn_cast<BranchInst>(T)) {
136     if (BI->isUnconditional()) return false;  // Can't optimize uncond branch
137 
138     BasicBlock *Dest1 = BI->getSuccessor(0);
139     BasicBlock *Dest2 = BI->getSuccessor(1);
140 
141     if (Dest2 == Dest1) {       // Conditional branch to same location?
142       // This branch matches something like this:
143       //     br bool %cond, label %Dest, label %Dest
144       // and changes it into:  br label %Dest
145 
146       // Let the basic block know that we are letting go of one copy of it.
147       assert(BI->getParent() && "Terminator not inserted in block!");
148       Dest1->removePredecessor(BI->getParent());
149 
150       // Replace the conditional branch with an unconditional one.
151       BranchInst *NewBI = Builder.CreateBr(Dest1);
152 
153       // Transfer the metadata to the new branch instruction.
154       NewBI->copyMetadata(*BI, {LLVMContext::MD_loop, LLVMContext::MD_dbg,
155                                 LLVMContext::MD_annotation});
156 
157       Value *Cond = BI->getCondition();
158       BI->eraseFromParent();
159       if (DeleteDeadConditions)
160         RecursivelyDeleteTriviallyDeadInstructions(Cond, TLI);
161       return true;
162     }
163 
164     if (auto *Cond = dyn_cast<ConstantInt>(BI->getCondition())) {
165       // Are we branching on constant?
166       // YES.  Change to unconditional branch...
167       BasicBlock *Destination = Cond->getZExtValue() ? Dest1 : Dest2;
168       BasicBlock *OldDest = Cond->getZExtValue() ? Dest2 : Dest1;
169 
170       // Let the basic block know that we are letting go of it.  Based on this,
171       // it will adjust it's PHI nodes.
172       OldDest->removePredecessor(BB);
173 
174       // Replace the conditional branch with an unconditional one.
175       BranchInst *NewBI = Builder.CreateBr(Destination);
176 
177       // Transfer the metadata to the new branch instruction.
178       NewBI->copyMetadata(*BI, {LLVMContext::MD_loop, LLVMContext::MD_dbg,
179                                 LLVMContext::MD_annotation});
180 
181       BI->eraseFromParent();
182       if (DTU)
183         DTU->applyUpdates({{DominatorTree::Delete, BB, OldDest}});
184       return true;
185     }
186 
187     return false;
188   }
189 
190   if (auto *SI = dyn_cast<SwitchInst>(T)) {
191     // If we are switching on a constant, we can convert the switch to an
192     // unconditional branch.
193     auto *CI = dyn_cast<ConstantInt>(SI->getCondition());
194     BasicBlock *DefaultDest = SI->getDefaultDest();
195     BasicBlock *TheOnlyDest = DefaultDest;
196 
197     // If the default is unreachable, ignore it when searching for TheOnlyDest.
198     if (isa<UnreachableInst>(DefaultDest->getFirstNonPHIOrDbg()) &&
199         SI->getNumCases() > 0) {
200       TheOnlyDest = SI->case_begin()->getCaseSuccessor();
201     }
202 
203     bool Changed = false;
204 
205     // Figure out which case it goes to.
206     for (auto i = SI->case_begin(), e = SI->case_end(); i != e;) {
207       // Found case matching a constant operand?
208       if (i->getCaseValue() == CI) {
209         TheOnlyDest = i->getCaseSuccessor();
210         break;
211       }
212 
213       // Check to see if this branch is going to the same place as the default
214       // dest.  If so, eliminate it as an explicit compare.
215       if (i->getCaseSuccessor() == DefaultDest) {
216         MDNode *MD = SI->getMetadata(LLVMContext::MD_prof);
217         unsigned NCases = SI->getNumCases();
218         // Fold the case metadata into the default if there will be any branches
219         // left, unless the metadata doesn't match the switch.
220         if (NCases > 1 && MD && MD->getNumOperands() == 2 + NCases) {
221           // Collect branch weights into a vector.
222           SmallVector<uint32_t, 8> Weights;
223           for (unsigned MD_i = 1, MD_e = MD->getNumOperands(); MD_i < MD_e;
224                ++MD_i) {
225             auto *CI = mdconst::extract<ConstantInt>(MD->getOperand(MD_i));
226             Weights.push_back(CI->getValue().getZExtValue());
227           }
228           // Merge weight of this case to the default weight.
229           unsigned idx = i->getCaseIndex();
230           Weights[0] += Weights[idx+1];
231           // Remove weight for this case.
232           std::swap(Weights[idx+1], Weights.back());
233           Weights.pop_back();
234           SI->setMetadata(LLVMContext::MD_prof,
235                           MDBuilder(BB->getContext()).
236                           createBranchWeights(Weights));
237         }
238         // Remove this entry.
239         BasicBlock *ParentBB = SI->getParent();
240         DefaultDest->removePredecessor(ParentBB);
241         i = SI->removeCase(i);
242         e = SI->case_end();
243         Changed = true;
244         continue;
245       }
246 
247       // Otherwise, check to see if the switch only branches to one destination.
248       // We do this by reseting "TheOnlyDest" to null when we find two non-equal
249       // destinations.
250       if (i->getCaseSuccessor() != TheOnlyDest)
251         TheOnlyDest = nullptr;
252 
253       // Increment this iterator as we haven't removed the case.
254       ++i;
255     }
256 
257     if (CI && !TheOnlyDest) {
258       // Branching on a constant, but not any of the cases, go to the default
259       // successor.
260       TheOnlyDest = SI->getDefaultDest();
261     }
262 
263     // If we found a single destination that we can fold the switch into, do so
264     // now.
265     if (TheOnlyDest) {
266       // Insert the new branch.
267       Builder.CreateBr(TheOnlyDest);
268       BasicBlock *BB = SI->getParent();
269 
270       SmallSet<BasicBlock *, 8> RemovedSuccessors;
271 
272       // Remove entries from PHI nodes which we no longer branch to...
273       BasicBlock *SuccToKeep = TheOnlyDest;
274       for (BasicBlock *Succ : successors(SI)) {
275         if (DTU && Succ != TheOnlyDest)
276           RemovedSuccessors.insert(Succ);
277         // Found case matching a constant operand?
278         if (Succ == SuccToKeep) {
279           SuccToKeep = nullptr; // Don't modify the first branch to TheOnlyDest
280         } else {
281           Succ->removePredecessor(BB);
282         }
283       }
284 
285       // Delete the old switch.
286       Value *Cond = SI->getCondition();
287       SI->eraseFromParent();
288       if (DeleteDeadConditions)
289         RecursivelyDeleteTriviallyDeadInstructions(Cond, TLI);
290       if (DTU) {
291         std::vector<DominatorTree::UpdateType> Updates;
292         Updates.reserve(RemovedSuccessors.size());
293         for (auto *RemovedSuccessor : RemovedSuccessors)
294           Updates.push_back({DominatorTree::Delete, BB, RemovedSuccessor});
295         DTU->applyUpdates(Updates);
296       }
297       return true;
298     }
299 
300     if (SI->getNumCases() == 1) {
301       // Otherwise, we can fold this switch into a conditional branch
302       // instruction if it has only one non-default destination.
303       auto FirstCase = *SI->case_begin();
304       Value *Cond = Builder.CreateICmpEQ(SI->getCondition(),
305           FirstCase.getCaseValue(), "cond");
306 
307       // Insert the new branch.
308       BranchInst *NewBr = Builder.CreateCondBr(Cond,
309                                                FirstCase.getCaseSuccessor(),
310                                                SI->getDefaultDest());
311       MDNode *MD = SI->getMetadata(LLVMContext::MD_prof);
312       if (MD && MD->getNumOperands() == 3) {
313         ConstantInt *SICase =
314             mdconst::dyn_extract<ConstantInt>(MD->getOperand(2));
315         ConstantInt *SIDef =
316             mdconst::dyn_extract<ConstantInt>(MD->getOperand(1));
317         assert(SICase && SIDef);
318         // The TrueWeight should be the weight for the single case of SI.
319         NewBr->setMetadata(LLVMContext::MD_prof,
320                         MDBuilder(BB->getContext()).
321                         createBranchWeights(SICase->getValue().getZExtValue(),
322                                             SIDef->getValue().getZExtValue()));
323       }
324 
325       // Update make.implicit metadata to the newly-created conditional branch.
326       MDNode *MakeImplicitMD = SI->getMetadata(LLVMContext::MD_make_implicit);
327       if (MakeImplicitMD)
328         NewBr->setMetadata(LLVMContext::MD_make_implicit, MakeImplicitMD);
329 
330       // Delete the old switch.
331       SI->eraseFromParent();
332       return true;
333     }
334     return Changed;
335   }
336 
337   if (auto *IBI = dyn_cast<IndirectBrInst>(T)) {
338     // indirectbr blockaddress(@F, @BB) -> br label @BB
339     if (auto *BA =
340           dyn_cast<BlockAddress>(IBI->getAddress()->stripPointerCasts())) {
341       BasicBlock *TheOnlyDest = BA->getBasicBlock();
342       SmallSet<BasicBlock *, 8> RemovedSuccessors;
343 
344       // Insert the new branch.
345       Builder.CreateBr(TheOnlyDest);
346 
347       BasicBlock *SuccToKeep = TheOnlyDest;
348       for (unsigned i = 0, e = IBI->getNumDestinations(); i != e; ++i) {
349         BasicBlock *DestBB = IBI->getDestination(i);
350         if (DTU && DestBB != TheOnlyDest)
351           RemovedSuccessors.insert(DestBB);
352         if (IBI->getDestination(i) == SuccToKeep) {
353           SuccToKeep = nullptr;
354         } else {
355           DestBB->removePredecessor(BB);
356         }
357       }
358       Value *Address = IBI->getAddress();
359       IBI->eraseFromParent();
360       if (DeleteDeadConditions)
361         // Delete pointer cast instructions.
362         RecursivelyDeleteTriviallyDeadInstructions(Address, TLI);
363 
364       // Also zap the blockaddress constant if there are no users remaining,
365       // otherwise the destination is still marked as having its address taken.
366       if (BA->use_empty())
367         BA->destroyConstant();
368 
369       // If we didn't find our destination in the IBI successor list, then we
370       // have undefined behavior.  Replace the unconditional branch with an
371       // 'unreachable' instruction.
372       if (SuccToKeep) {
373         BB->getTerminator()->eraseFromParent();
374         new UnreachableInst(BB->getContext(), BB);
375       }
376 
377       if (DTU) {
378         std::vector<DominatorTree::UpdateType> Updates;
379         Updates.reserve(RemovedSuccessors.size());
380         for (auto *RemovedSuccessor : RemovedSuccessors)
381           Updates.push_back({DominatorTree::Delete, BB, RemovedSuccessor});
382         DTU->applyUpdates(Updates);
383       }
384       return true;
385     }
386   }
387 
388   return false;
389 }
390 
391 //===----------------------------------------------------------------------===//
392 //  Local dead code elimination.
393 //
394 
395 /// isInstructionTriviallyDead - Return true if the result produced by the
396 /// instruction is not used, and the instruction has no side effects.
397 ///
398 bool llvm::isInstructionTriviallyDead(Instruction *I,
399                                       const TargetLibraryInfo *TLI) {
400   if (!I->use_empty())
401     return false;
402   return wouldInstructionBeTriviallyDead(I, TLI);
403 }
404 
405 bool llvm::wouldInstructionBeTriviallyDead(Instruction *I,
406                                            const TargetLibraryInfo *TLI) {
407   if (I->isTerminator())
408     return false;
409 
410   // We don't want the landingpad-like instructions removed by anything this
411   // general.
412   if (I->isEHPad())
413     return false;
414 
415   // We don't want debug info removed by anything this general, unless
416   // debug info is empty.
417   if (DbgDeclareInst *DDI = dyn_cast<DbgDeclareInst>(I)) {
418     if (DDI->getAddress())
419       return false;
420     return true;
421   }
422   if (DbgValueInst *DVI = dyn_cast<DbgValueInst>(I)) {
423     if (DVI->hasArgList() || DVI->getValue(0))
424       return false;
425     return true;
426   }
427   if (DbgLabelInst *DLI = dyn_cast<DbgLabelInst>(I)) {
428     if (DLI->getLabel())
429       return false;
430     return true;
431   }
432 
433   if (!I->willReturn())
434     return false;
435 
436   if (!I->mayHaveSideEffects())
437     return true;
438 
439   // Special case intrinsics that "may have side effects" but can be deleted
440   // when dead.
441   if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(I)) {
442     // Safe to delete llvm.stacksave and launder.invariant.group if dead.
443     if (II->getIntrinsicID() == Intrinsic::stacksave ||
444         II->getIntrinsicID() == Intrinsic::launder_invariant_group)
445       return true;
446 
447     if (II->isLifetimeStartOrEnd()) {
448       auto *Arg = II->getArgOperand(1);
449       // Lifetime intrinsics are dead when their right-hand is undef.
450       if (isa<UndefValue>(Arg))
451         return true;
452       // If the right-hand is an alloc, global, or argument and the only uses
453       // are lifetime intrinsics then the intrinsics are dead.
454       if (isa<AllocaInst>(Arg) || isa<GlobalValue>(Arg) || isa<Argument>(Arg))
455         return llvm::all_of(Arg->uses(), [](Use &Use) {
456           if (IntrinsicInst *IntrinsicUse =
457                   dyn_cast<IntrinsicInst>(Use.getUser()))
458             return IntrinsicUse->isLifetimeStartOrEnd();
459           return false;
460         });
461       return false;
462     }
463 
464     // Assumptions are dead if their condition is trivially true.  Guards on
465     // true are operationally no-ops.  In the future we can consider more
466     // sophisticated tradeoffs for guards considering potential for check
467     // widening, but for now we keep things simple.
468     if ((II->getIntrinsicID() == Intrinsic::assume &&
469          isAssumeWithEmptyBundle(cast<AssumeInst>(*II))) ||
470         II->getIntrinsicID() == Intrinsic::experimental_guard) {
471       if (ConstantInt *Cond = dyn_cast<ConstantInt>(II->getArgOperand(0)))
472         return !Cond->isZero();
473 
474       return false;
475     }
476 
477     if (auto *FPI = dyn_cast<ConstrainedFPIntrinsic>(I)) {
478       Optional<fp::ExceptionBehavior> ExBehavior = FPI->getExceptionBehavior();
479       return ExBehavior.getValue() != fp::ebStrict;
480     }
481   }
482 
483   if (isAllocLikeFn(I, TLI))
484     return true;
485 
486   if (CallInst *CI = isFreeCall(I, TLI))
487     if (Constant *C = dyn_cast<Constant>(CI->getArgOperand(0)))
488       return C->isNullValue() || isa<UndefValue>(C);
489 
490   if (auto *Call = dyn_cast<CallBase>(I))
491     if (isMathLibCallNoop(Call, TLI))
492       return true;
493 
494   // To express possible interaction with floating point environment constrained
495   // intrinsics are described as if they access memory. So they look like having
496   // side effect but actually do not have it unless they raise floating point
497   // exception. If FP exceptions are ignored, the intrinsic may be deleted.
498   if (auto *CI = dyn_cast<ConstrainedFPIntrinsic>(I)) {
499     Optional<fp::ExceptionBehavior> EB = CI->getExceptionBehavior();
500     if (!EB || *EB == fp::ExceptionBehavior::ebIgnore)
501       return true;
502   }
503 
504   return false;
505 }
506 
507 /// RecursivelyDeleteTriviallyDeadInstructions - If the specified value is a
508 /// trivially dead instruction, delete it.  If that makes any of its operands
509 /// trivially dead, delete them too, recursively.  Return true if any
510 /// instructions were deleted.
511 bool llvm::RecursivelyDeleteTriviallyDeadInstructions(
512     Value *V, const TargetLibraryInfo *TLI, MemorySSAUpdater *MSSAU,
513     std::function<void(Value *)> AboutToDeleteCallback) {
514   Instruction *I = dyn_cast<Instruction>(V);
515   if (!I || !isInstructionTriviallyDead(I, TLI))
516     return false;
517 
518   SmallVector<WeakTrackingVH, 16> DeadInsts;
519   DeadInsts.push_back(I);
520   RecursivelyDeleteTriviallyDeadInstructions(DeadInsts, TLI, MSSAU,
521                                              AboutToDeleteCallback);
522 
523   return true;
524 }
525 
526 bool llvm::RecursivelyDeleteTriviallyDeadInstructionsPermissive(
527     SmallVectorImpl<WeakTrackingVH> &DeadInsts, const TargetLibraryInfo *TLI,
528     MemorySSAUpdater *MSSAU,
529     std::function<void(Value *)> AboutToDeleteCallback) {
530   unsigned S = 0, E = DeadInsts.size(), Alive = 0;
531   for (; S != E; ++S) {
532     auto *I = cast<Instruction>(DeadInsts[S]);
533     if (!isInstructionTriviallyDead(I)) {
534       DeadInsts[S] = nullptr;
535       ++Alive;
536     }
537   }
538   if (Alive == E)
539     return false;
540   RecursivelyDeleteTriviallyDeadInstructions(DeadInsts, TLI, MSSAU,
541                                              AboutToDeleteCallback);
542   return true;
543 }
544 
545 void llvm::RecursivelyDeleteTriviallyDeadInstructions(
546     SmallVectorImpl<WeakTrackingVH> &DeadInsts, const TargetLibraryInfo *TLI,
547     MemorySSAUpdater *MSSAU,
548     std::function<void(Value *)> AboutToDeleteCallback) {
549   // Process the dead instruction list until empty.
550   while (!DeadInsts.empty()) {
551     Value *V = DeadInsts.pop_back_val();
552     Instruction *I = cast_or_null<Instruction>(V);
553     if (!I)
554       continue;
555     assert(isInstructionTriviallyDead(I, TLI) &&
556            "Live instruction found in dead worklist!");
557     assert(I->use_empty() && "Instructions with uses are not dead.");
558 
559     // Don't lose the debug info while deleting the instructions.
560     salvageDebugInfo(*I);
561 
562     if (AboutToDeleteCallback)
563       AboutToDeleteCallback(I);
564 
565     // Null out all of the instruction's operands to see if any operand becomes
566     // dead as we go.
567     for (Use &OpU : I->operands()) {
568       Value *OpV = OpU.get();
569       OpU.set(nullptr);
570 
571       if (!OpV->use_empty())
572         continue;
573 
574       // If the operand is an instruction that became dead as we nulled out the
575       // operand, and if it is 'trivially' dead, delete it in a future loop
576       // iteration.
577       if (Instruction *OpI = dyn_cast<Instruction>(OpV))
578         if (isInstructionTriviallyDead(OpI, TLI))
579           DeadInsts.push_back(OpI);
580     }
581     if (MSSAU)
582       MSSAU->removeMemoryAccess(I);
583 
584     I->eraseFromParent();
585   }
586 }
587 
588 bool llvm::replaceDbgUsesWithUndef(Instruction *I) {
589   SmallVector<DbgVariableIntrinsic *, 1> DbgUsers;
590   findDbgUsers(DbgUsers, I);
591   for (auto *DII : DbgUsers) {
592     Value *Undef = UndefValue::get(I->getType());
593     DII->replaceVariableLocationOp(I, Undef);
594   }
595   return !DbgUsers.empty();
596 }
597 
598 /// areAllUsesEqual - Check whether the uses of a value are all the same.
599 /// This is similar to Instruction::hasOneUse() except this will also return
600 /// true when there are no uses or multiple uses that all refer to the same
601 /// value.
602 static bool areAllUsesEqual(Instruction *I) {
603   Value::user_iterator UI = I->user_begin();
604   Value::user_iterator UE = I->user_end();
605   if (UI == UE)
606     return true;
607 
608   User *TheUse = *UI;
609   for (++UI; UI != UE; ++UI) {
610     if (*UI != TheUse)
611       return false;
612   }
613   return true;
614 }
615 
616 /// RecursivelyDeleteDeadPHINode - If the specified value is an effectively
617 /// dead PHI node, due to being a def-use chain of single-use nodes that
618 /// either forms a cycle or is terminated by a trivially dead instruction,
619 /// delete it.  If that makes any of its operands trivially dead, delete them
620 /// too, recursively.  Return true if a change was made.
621 bool llvm::RecursivelyDeleteDeadPHINode(PHINode *PN,
622                                         const TargetLibraryInfo *TLI,
623                                         llvm::MemorySSAUpdater *MSSAU) {
624   SmallPtrSet<Instruction*, 4> Visited;
625   for (Instruction *I = PN; areAllUsesEqual(I) && !I->mayHaveSideEffects();
626        I = cast<Instruction>(*I->user_begin())) {
627     if (I->use_empty())
628       return RecursivelyDeleteTriviallyDeadInstructions(I, TLI, MSSAU);
629 
630     // If we find an instruction more than once, we're on a cycle that
631     // won't prove fruitful.
632     if (!Visited.insert(I).second) {
633       // Break the cycle and delete the instruction and its operands.
634       I->replaceAllUsesWith(UndefValue::get(I->getType()));
635       (void)RecursivelyDeleteTriviallyDeadInstructions(I, TLI, MSSAU);
636       return true;
637     }
638   }
639   return false;
640 }
641 
642 static bool
643 simplifyAndDCEInstruction(Instruction *I,
644                           SmallSetVector<Instruction *, 16> &WorkList,
645                           const DataLayout &DL,
646                           const TargetLibraryInfo *TLI) {
647   if (isInstructionTriviallyDead(I, TLI)) {
648     salvageDebugInfo(*I);
649 
650     // Null out all of the instruction's operands to see if any operand becomes
651     // dead as we go.
652     for (unsigned i = 0, e = I->getNumOperands(); i != e; ++i) {
653       Value *OpV = I->getOperand(i);
654       I->setOperand(i, nullptr);
655 
656       if (!OpV->use_empty() || I == OpV)
657         continue;
658 
659       // If the operand is an instruction that became dead as we nulled out the
660       // operand, and if it is 'trivially' dead, delete it in a future loop
661       // iteration.
662       if (Instruction *OpI = dyn_cast<Instruction>(OpV))
663         if (isInstructionTriviallyDead(OpI, TLI))
664           WorkList.insert(OpI);
665     }
666 
667     I->eraseFromParent();
668 
669     return true;
670   }
671 
672   if (Value *SimpleV = SimplifyInstruction(I, DL)) {
673     // Add the users to the worklist. CAREFUL: an instruction can use itself,
674     // in the case of a phi node.
675     for (User *U : I->users()) {
676       if (U != I) {
677         WorkList.insert(cast<Instruction>(U));
678       }
679     }
680 
681     // Replace the instruction with its simplified value.
682     bool Changed = false;
683     if (!I->use_empty()) {
684       I->replaceAllUsesWith(SimpleV);
685       Changed = true;
686     }
687     if (isInstructionTriviallyDead(I, TLI)) {
688       I->eraseFromParent();
689       Changed = true;
690     }
691     return Changed;
692   }
693   return false;
694 }
695 
696 /// SimplifyInstructionsInBlock - Scan the specified basic block and try to
697 /// simplify any instructions in it and recursively delete dead instructions.
698 ///
699 /// This returns true if it changed the code, note that it can delete
700 /// instructions in other blocks as well in this block.
701 bool llvm::SimplifyInstructionsInBlock(BasicBlock *BB,
702                                        const TargetLibraryInfo *TLI) {
703   bool MadeChange = false;
704   const DataLayout &DL = BB->getModule()->getDataLayout();
705 
706 #ifndef NDEBUG
707   // In debug builds, ensure that the terminator of the block is never replaced
708   // or deleted by these simplifications. The idea of simplification is that it
709   // cannot introduce new instructions, and there is no way to replace the
710   // terminator of a block without introducing a new instruction.
711   AssertingVH<Instruction> TerminatorVH(&BB->back());
712 #endif
713 
714   SmallSetVector<Instruction *, 16> WorkList;
715   // Iterate over the original function, only adding insts to the worklist
716   // if they actually need to be revisited. This avoids having to pre-init
717   // the worklist with the entire function's worth of instructions.
718   for (BasicBlock::iterator BI = BB->begin(), E = std::prev(BB->end());
719        BI != E;) {
720     assert(!BI->isTerminator());
721     Instruction *I = &*BI;
722     ++BI;
723 
724     // We're visiting this instruction now, so make sure it's not in the
725     // worklist from an earlier visit.
726     if (!WorkList.count(I))
727       MadeChange |= simplifyAndDCEInstruction(I, WorkList, DL, TLI);
728   }
729 
730   while (!WorkList.empty()) {
731     Instruction *I = WorkList.pop_back_val();
732     MadeChange |= simplifyAndDCEInstruction(I, WorkList, DL, TLI);
733   }
734   return MadeChange;
735 }
736 
737 //===----------------------------------------------------------------------===//
738 //  Control Flow Graph Restructuring.
739 //
740 
741 void llvm::MergeBasicBlockIntoOnlyPred(BasicBlock *DestBB,
742                                        DomTreeUpdater *DTU) {
743 
744   // If BB has single-entry PHI nodes, fold them.
745   while (PHINode *PN = dyn_cast<PHINode>(DestBB->begin())) {
746     Value *NewVal = PN->getIncomingValue(0);
747     // Replace self referencing PHI with undef, it must be dead.
748     if (NewVal == PN) NewVal = UndefValue::get(PN->getType());
749     PN->replaceAllUsesWith(NewVal);
750     PN->eraseFromParent();
751   }
752 
753   BasicBlock *PredBB = DestBB->getSinglePredecessor();
754   assert(PredBB && "Block doesn't have a single predecessor!");
755 
756   bool ReplaceEntryBB = PredBB->isEntryBlock();
757 
758   // DTU updates: Collect all the edges that enter
759   // PredBB. These dominator edges will be redirected to DestBB.
760   SmallVector<DominatorTree::UpdateType, 32> Updates;
761 
762   if (DTU) {
763     SmallPtrSet<BasicBlock *, 2> PredsOfPredBB(pred_begin(PredBB),
764                                                pred_end(PredBB));
765     Updates.reserve(Updates.size() + 2 * PredsOfPredBB.size() + 1);
766     for (BasicBlock *PredOfPredBB : PredsOfPredBB)
767       // This predecessor of PredBB may already have DestBB as a successor.
768       if (PredOfPredBB != PredBB)
769         Updates.push_back({DominatorTree::Insert, PredOfPredBB, DestBB});
770     for (BasicBlock *PredOfPredBB : PredsOfPredBB)
771       Updates.push_back({DominatorTree::Delete, PredOfPredBB, PredBB});
772     Updates.push_back({DominatorTree::Delete, PredBB, DestBB});
773   }
774 
775   // Zap anything that took the address of DestBB.  Not doing this will give the
776   // address an invalid value.
777   if (DestBB->hasAddressTaken()) {
778     BlockAddress *BA = BlockAddress::get(DestBB);
779     Constant *Replacement =
780       ConstantInt::get(Type::getInt32Ty(BA->getContext()), 1);
781     BA->replaceAllUsesWith(ConstantExpr::getIntToPtr(Replacement,
782                                                      BA->getType()));
783     BA->destroyConstant();
784   }
785 
786   // Anything that branched to PredBB now branches to DestBB.
787   PredBB->replaceAllUsesWith(DestBB);
788 
789   // Splice all the instructions from PredBB to DestBB.
790   PredBB->getTerminator()->eraseFromParent();
791   DestBB->getInstList().splice(DestBB->begin(), PredBB->getInstList());
792   new UnreachableInst(PredBB->getContext(), PredBB);
793 
794   // If the PredBB is the entry block of the function, move DestBB up to
795   // become the entry block after we erase PredBB.
796   if (ReplaceEntryBB)
797     DestBB->moveAfter(PredBB);
798 
799   if (DTU) {
800     assert(PredBB->getInstList().size() == 1 &&
801            isa<UnreachableInst>(PredBB->getTerminator()) &&
802            "The successor list of PredBB isn't empty before "
803            "applying corresponding DTU updates.");
804     DTU->applyUpdatesPermissive(Updates);
805     DTU->deleteBB(PredBB);
806     // Recalculation of DomTree is needed when updating a forward DomTree and
807     // the Entry BB is replaced.
808     if (ReplaceEntryBB && DTU->hasDomTree()) {
809       // The entry block was removed and there is no external interface for
810       // the dominator tree to be notified of this change. In this corner-case
811       // we recalculate the entire tree.
812       DTU->recalculate(*(DestBB->getParent()));
813     }
814   }
815 
816   else {
817     PredBB->eraseFromParent(); // Nuke BB if DTU is nullptr.
818   }
819 }
820 
821 /// Return true if we can choose one of these values to use in place of the
822 /// other. Note that we will always choose the non-undef value to keep.
823 static bool CanMergeValues(Value *First, Value *Second) {
824   return First == Second || isa<UndefValue>(First) || isa<UndefValue>(Second);
825 }
826 
827 /// Return true if we can fold BB, an almost-empty BB ending in an unconditional
828 /// branch to Succ, into Succ.
829 ///
830 /// Assumption: Succ is the single successor for BB.
831 static bool CanPropagatePredecessorsForPHIs(BasicBlock *BB, BasicBlock *Succ) {
832   assert(*succ_begin(BB) == Succ && "Succ is not successor of BB!");
833 
834   LLVM_DEBUG(dbgs() << "Looking to fold " << BB->getName() << " into "
835                     << Succ->getName() << "\n");
836   // Shortcut, if there is only a single predecessor it must be BB and merging
837   // is always safe
838   if (Succ->getSinglePredecessor()) return true;
839 
840   // Make a list of the predecessors of BB
841   SmallPtrSet<BasicBlock*, 16> BBPreds(pred_begin(BB), pred_end(BB));
842 
843   // Look at all the phi nodes in Succ, to see if they present a conflict when
844   // merging these blocks
845   for (BasicBlock::iterator I = Succ->begin(); isa<PHINode>(I); ++I) {
846     PHINode *PN = cast<PHINode>(I);
847 
848     // If the incoming value from BB is again a PHINode in
849     // BB which has the same incoming value for *PI as PN does, we can
850     // merge the phi nodes and then the blocks can still be merged
851     PHINode *BBPN = dyn_cast<PHINode>(PN->getIncomingValueForBlock(BB));
852     if (BBPN && BBPN->getParent() == BB) {
853       for (unsigned PI = 0, PE = PN->getNumIncomingValues(); PI != PE; ++PI) {
854         BasicBlock *IBB = PN->getIncomingBlock(PI);
855         if (BBPreds.count(IBB) &&
856             !CanMergeValues(BBPN->getIncomingValueForBlock(IBB),
857                             PN->getIncomingValue(PI))) {
858           LLVM_DEBUG(dbgs()
859                      << "Can't fold, phi node " << PN->getName() << " in "
860                      << Succ->getName() << " is conflicting with "
861                      << BBPN->getName() << " with regard to common predecessor "
862                      << IBB->getName() << "\n");
863           return false;
864         }
865       }
866     } else {
867       Value* Val = PN->getIncomingValueForBlock(BB);
868       for (unsigned PI = 0, PE = PN->getNumIncomingValues(); PI != PE; ++PI) {
869         // See if the incoming value for the common predecessor is equal to the
870         // one for BB, in which case this phi node will not prevent the merging
871         // of the block.
872         BasicBlock *IBB = PN->getIncomingBlock(PI);
873         if (BBPreds.count(IBB) &&
874             !CanMergeValues(Val, PN->getIncomingValue(PI))) {
875           LLVM_DEBUG(dbgs() << "Can't fold, phi node " << PN->getName()
876                             << " in " << Succ->getName()
877                             << " is conflicting with regard to common "
878                             << "predecessor " << IBB->getName() << "\n");
879           return false;
880         }
881       }
882     }
883   }
884 
885   return true;
886 }
887 
888 using PredBlockVector = SmallVector<BasicBlock *, 16>;
889 using IncomingValueMap = DenseMap<BasicBlock *, Value *>;
890 
891 /// Determines the value to use as the phi node input for a block.
892 ///
893 /// Select between \p OldVal any value that we know flows from \p BB
894 /// to a particular phi on the basis of which one (if either) is not
895 /// undef. Update IncomingValues based on the selected value.
896 ///
897 /// \param OldVal The value we are considering selecting.
898 /// \param BB The block that the value flows in from.
899 /// \param IncomingValues A map from block-to-value for other phi inputs
900 /// that we have examined.
901 ///
902 /// \returns the selected value.
903 static Value *selectIncomingValueForBlock(Value *OldVal, BasicBlock *BB,
904                                           IncomingValueMap &IncomingValues) {
905   if (!isa<UndefValue>(OldVal)) {
906     assert((!IncomingValues.count(BB) ||
907             IncomingValues.find(BB)->second == OldVal) &&
908            "Expected OldVal to match incoming value from BB!");
909 
910     IncomingValues.insert(std::make_pair(BB, OldVal));
911     return OldVal;
912   }
913 
914   IncomingValueMap::const_iterator It = IncomingValues.find(BB);
915   if (It != IncomingValues.end()) return It->second;
916 
917   return OldVal;
918 }
919 
920 /// Create a map from block to value for the operands of a
921 /// given phi.
922 ///
923 /// Create a map from block to value for each non-undef value flowing
924 /// into \p PN.
925 ///
926 /// \param PN The phi we are collecting the map for.
927 /// \param IncomingValues [out] The map from block to value for this phi.
928 static void gatherIncomingValuesToPhi(PHINode *PN,
929                                       IncomingValueMap &IncomingValues) {
930   for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
931     BasicBlock *BB = PN->getIncomingBlock(i);
932     Value *V = PN->getIncomingValue(i);
933 
934     if (!isa<UndefValue>(V))
935       IncomingValues.insert(std::make_pair(BB, V));
936   }
937 }
938 
939 /// Replace the incoming undef values to a phi with the values
940 /// from a block-to-value map.
941 ///
942 /// \param PN The phi we are replacing the undefs in.
943 /// \param IncomingValues A map from block to value.
944 static void replaceUndefValuesInPhi(PHINode *PN,
945                                     const IncomingValueMap &IncomingValues) {
946   SmallVector<unsigned> TrueUndefOps;
947   for (unsigned i = 0, e = PN->getNumIncomingValues(); i != e; ++i) {
948     Value *V = PN->getIncomingValue(i);
949 
950     if (!isa<UndefValue>(V)) continue;
951 
952     BasicBlock *BB = PN->getIncomingBlock(i);
953     IncomingValueMap::const_iterator It = IncomingValues.find(BB);
954 
955     // Keep track of undef/poison incoming values. Those must match, so we fix
956     // them up below if needed.
957     // Note: this is conservatively correct, but we could try harder and group
958     // the undef values per incoming basic block.
959     if (It == IncomingValues.end()) {
960       TrueUndefOps.push_back(i);
961       continue;
962     }
963 
964     // There is a defined value for this incoming block, so map this undef
965     // incoming value to the defined value.
966     PN->setIncomingValue(i, It->second);
967   }
968 
969   // If there are both undef and poison values incoming, then convert those
970   // values to undef. It is invalid to have different values for the same
971   // incoming block.
972   unsigned PoisonCount = count_if(TrueUndefOps, [&](unsigned i) {
973     return isa<PoisonValue>(PN->getIncomingValue(i));
974   });
975   if (PoisonCount != 0 && PoisonCount != TrueUndefOps.size()) {
976     for (unsigned i : TrueUndefOps)
977       PN->setIncomingValue(i, UndefValue::get(PN->getType()));
978   }
979 }
980 
981 /// Replace a value flowing from a block to a phi with
982 /// potentially multiple instances of that value flowing from the
983 /// block's predecessors to the phi.
984 ///
985 /// \param BB The block with the value flowing into the phi.
986 /// \param BBPreds The predecessors of BB.
987 /// \param PN The phi that we are updating.
988 static void redirectValuesFromPredecessorsToPhi(BasicBlock *BB,
989                                                 const PredBlockVector &BBPreds,
990                                                 PHINode *PN) {
991   Value *OldVal = PN->removeIncomingValue(BB, false);
992   assert(OldVal && "No entry in PHI for Pred BB!");
993 
994   IncomingValueMap IncomingValues;
995 
996   // We are merging two blocks - BB, and the block containing PN - and
997   // as a result we need to redirect edges from the predecessors of BB
998   // to go to the block containing PN, and update PN
999   // accordingly. Since we allow merging blocks in the case where the
1000   // predecessor and successor blocks both share some predecessors,
1001   // and where some of those common predecessors might have undef
1002   // values flowing into PN, we want to rewrite those values to be
1003   // consistent with the non-undef values.
1004 
1005   gatherIncomingValuesToPhi(PN, IncomingValues);
1006 
1007   // If this incoming value is one of the PHI nodes in BB, the new entries
1008   // in the PHI node are the entries from the old PHI.
1009   if (isa<PHINode>(OldVal) && cast<PHINode>(OldVal)->getParent() == BB) {
1010     PHINode *OldValPN = cast<PHINode>(OldVal);
1011     for (unsigned i = 0, e = OldValPN->getNumIncomingValues(); i != e; ++i) {
1012       // Note that, since we are merging phi nodes and BB and Succ might
1013       // have common predecessors, we could end up with a phi node with
1014       // identical incoming branches. This will be cleaned up later (and
1015       // will trigger asserts if we try to clean it up now, without also
1016       // simplifying the corresponding conditional branch).
1017       BasicBlock *PredBB = OldValPN->getIncomingBlock(i);
1018       Value *PredVal = OldValPN->getIncomingValue(i);
1019       Value *Selected = selectIncomingValueForBlock(PredVal, PredBB,
1020                                                     IncomingValues);
1021 
1022       // And add a new incoming value for this predecessor for the
1023       // newly retargeted branch.
1024       PN->addIncoming(Selected, PredBB);
1025     }
1026   } else {
1027     for (unsigned i = 0, e = BBPreds.size(); i != e; ++i) {
1028       // Update existing incoming values in PN for this
1029       // predecessor of BB.
1030       BasicBlock *PredBB = BBPreds[i];
1031       Value *Selected = selectIncomingValueForBlock(OldVal, PredBB,
1032                                                     IncomingValues);
1033 
1034       // And add a new incoming value for this predecessor for the
1035       // newly retargeted branch.
1036       PN->addIncoming(Selected, PredBB);
1037     }
1038   }
1039 
1040   replaceUndefValuesInPhi(PN, IncomingValues);
1041 }
1042 
1043 bool llvm::TryToSimplifyUncondBranchFromEmptyBlock(BasicBlock *BB,
1044                                                    DomTreeUpdater *DTU) {
1045   assert(BB != &BB->getParent()->getEntryBlock() &&
1046          "TryToSimplifyUncondBranchFromEmptyBlock called on entry block!");
1047 
1048   // We can't eliminate infinite loops.
1049   BasicBlock *Succ = cast<BranchInst>(BB->getTerminator())->getSuccessor(0);
1050   if (BB == Succ) return false;
1051 
1052   // Check to see if merging these blocks would cause conflicts for any of the
1053   // phi nodes in BB or Succ. If not, we can safely merge.
1054   if (!CanPropagatePredecessorsForPHIs(BB, Succ)) return false;
1055 
1056   // Check for cases where Succ has multiple predecessors and a PHI node in BB
1057   // has uses which will not disappear when the PHI nodes are merged.  It is
1058   // possible to handle such cases, but difficult: it requires checking whether
1059   // BB dominates Succ, which is non-trivial to calculate in the case where
1060   // Succ has multiple predecessors.  Also, it requires checking whether
1061   // constructing the necessary self-referential PHI node doesn't introduce any
1062   // conflicts; this isn't too difficult, but the previous code for doing this
1063   // was incorrect.
1064   //
1065   // Note that if this check finds a live use, BB dominates Succ, so BB is
1066   // something like a loop pre-header (or rarely, a part of an irreducible CFG);
1067   // folding the branch isn't profitable in that case anyway.
1068   if (!Succ->getSinglePredecessor()) {
1069     BasicBlock::iterator BBI = BB->begin();
1070     while (isa<PHINode>(*BBI)) {
1071       for (Use &U : BBI->uses()) {
1072         if (PHINode* PN = dyn_cast<PHINode>(U.getUser())) {
1073           if (PN->getIncomingBlock(U) != BB)
1074             return false;
1075         } else {
1076           return false;
1077         }
1078       }
1079       ++BBI;
1080     }
1081   }
1082 
1083   // We cannot fold the block if it's a branch to an already present callbr
1084   // successor because that creates duplicate successors.
1085   for (BasicBlock *PredBB : predecessors(BB)) {
1086     if (auto *CBI = dyn_cast<CallBrInst>(PredBB->getTerminator())) {
1087       if (Succ == CBI->getDefaultDest())
1088         return false;
1089       for (unsigned i = 0, e = CBI->getNumIndirectDests(); i != e; ++i)
1090         if (Succ == CBI->getIndirectDest(i))
1091           return false;
1092     }
1093   }
1094 
1095   LLVM_DEBUG(dbgs() << "Killing Trivial BB: \n" << *BB);
1096 
1097   SmallVector<DominatorTree::UpdateType, 32> Updates;
1098   if (DTU) {
1099     // All predecessors of BB will be moved to Succ.
1100     SmallPtrSet<BasicBlock *, 8> PredsOfBB(pred_begin(BB), pred_end(BB));
1101     SmallPtrSet<BasicBlock *, 8> PredsOfSucc(pred_begin(Succ), pred_end(Succ));
1102     Updates.reserve(Updates.size() + 2 * PredsOfBB.size() + 1);
1103     for (auto *PredOfBB : PredsOfBB)
1104       // This predecessor of BB may already have Succ as a successor.
1105       if (!PredsOfSucc.contains(PredOfBB))
1106         Updates.push_back({DominatorTree::Insert, PredOfBB, Succ});
1107     for (auto *PredOfBB : PredsOfBB)
1108       Updates.push_back({DominatorTree::Delete, PredOfBB, BB});
1109     Updates.push_back({DominatorTree::Delete, BB, Succ});
1110   }
1111 
1112   if (isa<PHINode>(Succ->begin())) {
1113     // If there is more than one pred of succ, and there are PHI nodes in
1114     // the successor, then we need to add incoming edges for the PHI nodes
1115     //
1116     const PredBlockVector BBPreds(pred_begin(BB), pred_end(BB));
1117 
1118     // Loop over all of the PHI nodes in the successor of BB.
1119     for (BasicBlock::iterator I = Succ->begin(); isa<PHINode>(I); ++I) {
1120       PHINode *PN = cast<PHINode>(I);
1121 
1122       redirectValuesFromPredecessorsToPhi(BB, BBPreds, PN);
1123     }
1124   }
1125 
1126   if (Succ->getSinglePredecessor()) {
1127     // BB is the only predecessor of Succ, so Succ will end up with exactly
1128     // the same predecessors BB had.
1129 
1130     // Copy over any phi, debug or lifetime instruction.
1131     BB->getTerminator()->eraseFromParent();
1132     Succ->getInstList().splice(Succ->getFirstNonPHI()->getIterator(),
1133                                BB->getInstList());
1134   } else {
1135     while (PHINode *PN = dyn_cast<PHINode>(&BB->front())) {
1136       // We explicitly check for such uses in CanPropagatePredecessorsForPHIs.
1137       assert(PN->use_empty() && "There shouldn't be any uses here!");
1138       PN->eraseFromParent();
1139     }
1140   }
1141 
1142   // If the unconditional branch we replaced contains llvm.loop metadata, we
1143   // add the metadata to the branch instructions in the predecessors.
1144   unsigned LoopMDKind = BB->getContext().getMDKindID("llvm.loop");
1145   Instruction *TI = BB->getTerminator();
1146   if (TI)
1147     if (MDNode *LoopMD = TI->getMetadata(LoopMDKind))
1148       for (BasicBlock *Pred : predecessors(BB))
1149         Pred->getTerminator()->setMetadata(LoopMDKind, LoopMD);
1150 
1151   // Everything that jumped to BB now goes to Succ.
1152   BB->replaceAllUsesWith(Succ);
1153   if (!Succ->hasName()) Succ->takeName(BB);
1154 
1155   // Clear the successor list of BB to match updates applying to DTU later.
1156   if (BB->getTerminator())
1157     BB->getInstList().pop_back();
1158   new UnreachableInst(BB->getContext(), BB);
1159   assert(succ_empty(BB) && "The successor list of BB isn't empty before "
1160                            "applying corresponding DTU updates.");
1161 
1162   if (DTU)
1163     DTU->applyUpdates(Updates);
1164 
1165   DeleteDeadBlock(BB, DTU);
1166 
1167   return true;
1168 }
1169 
1170 static bool EliminateDuplicatePHINodesNaiveImpl(BasicBlock *BB) {
1171   // This implementation doesn't currently consider undef operands
1172   // specially. Theoretically, two phis which are identical except for
1173   // one having an undef where the other doesn't could be collapsed.
1174 
1175   bool Changed = false;
1176 
1177   // Examine each PHI.
1178   // Note that increment of I must *NOT* be in the iteration_expression, since
1179   // we don't want to immediately advance when we restart from the beginning.
1180   for (auto I = BB->begin(); PHINode *PN = dyn_cast<PHINode>(I);) {
1181     ++I;
1182     // Is there an identical PHI node in this basic block?
1183     // Note that we only look in the upper square's triangle,
1184     // we already checked that the lower triangle PHI's aren't identical.
1185     for (auto J = I; PHINode *DuplicatePN = dyn_cast<PHINode>(J); ++J) {
1186       if (!DuplicatePN->isIdenticalToWhenDefined(PN))
1187         continue;
1188       // A duplicate. Replace this PHI with the base PHI.
1189       ++NumPHICSEs;
1190       DuplicatePN->replaceAllUsesWith(PN);
1191       DuplicatePN->eraseFromParent();
1192       Changed = true;
1193 
1194       // The RAUW can change PHIs that we already visited.
1195       I = BB->begin();
1196       break; // Start over from the beginning.
1197     }
1198   }
1199   return Changed;
1200 }
1201 
1202 static bool EliminateDuplicatePHINodesSetBasedImpl(BasicBlock *BB) {
1203   // This implementation doesn't currently consider undef operands
1204   // specially. Theoretically, two phis which are identical except for
1205   // one having an undef where the other doesn't could be collapsed.
1206 
1207   struct PHIDenseMapInfo {
1208     static PHINode *getEmptyKey() {
1209       return DenseMapInfo<PHINode *>::getEmptyKey();
1210     }
1211 
1212     static PHINode *getTombstoneKey() {
1213       return DenseMapInfo<PHINode *>::getTombstoneKey();
1214     }
1215 
1216     static bool isSentinel(PHINode *PN) {
1217       return PN == getEmptyKey() || PN == getTombstoneKey();
1218     }
1219 
1220     // WARNING: this logic must be kept in sync with
1221     //          Instruction::isIdenticalToWhenDefined()!
1222     static unsigned getHashValueImpl(PHINode *PN) {
1223       // Compute a hash value on the operands. Instcombine will likely have
1224       // sorted them, which helps expose duplicates, but we have to check all
1225       // the operands to be safe in case instcombine hasn't run.
1226       return static_cast<unsigned>(hash_combine(
1227           hash_combine_range(PN->value_op_begin(), PN->value_op_end()),
1228           hash_combine_range(PN->block_begin(), PN->block_end())));
1229     }
1230 
1231     static unsigned getHashValue(PHINode *PN) {
1232 #ifndef NDEBUG
1233       // If -phicse-debug-hash was specified, return a constant -- this
1234       // will force all hashing to collide, so we'll exhaustively search
1235       // the table for a match, and the assertion in isEqual will fire if
1236       // there's a bug causing equal keys to hash differently.
1237       if (PHICSEDebugHash)
1238         return 0;
1239 #endif
1240       return getHashValueImpl(PN);
1241     }
1242 
1243     static bool isEqualImpl(PHINode *LHS, PHINode *RHS) {
1244       if (isSentinel(LHS) || isSentinel(RHS))
1245         return LHS == RHS;
1246       return LHS->isIdenticalTo(RHS);
1247     }
1248 
1249     static bool isEqual(PHINode *LHS, PHINode *RHS) {
1250       // These comparisons are nontrivial, so assert that equality implies
1251       // hash equality (DenseMap demands this as an invariant).
1252       bool Result = isEqualImpl(LHS, RHS);
1253       assert(!Result || (isSentinel(LHS) && LHS == RHS) ||
1254              getHashValueImpl(LHS) == getHashValueImpl(RHS));
1255       return Result;
1256     }
1257   };
1258 
1259   // Set of unique PHINodes.
1260   DenseSet<PHINode *, PHIDenseMapInfo> PHISet;
1261   PHISet.reserve(4 * PHICSENumPHISmallSize);
1262 
1263   // Examine each PHI.
1264   bool Changed = false;
1265   for (auto I = BB->begin(); PHINode *PN = dyn_cast<PHINode>(I++);) {
1266     auto Inserted = PHISet.insert(PN);
1267     if (!Inserted.second) {
1268       // A duplicate. Replace this PHI with its duplicate.
1269       ++NumPHICSEs;
1270       PN->replaceAllUsesWith(*Inserted.first);
1271       PN->eraseFromParent();
1272       Changed = true;
1273 
1274       // The RAUW can change PHIs that we already visited. Start over from the
1275       // beginning.
1276       PHISet.clear();
1277       I = BB->begin();
1278     }
1279   }
1280 
1281   return Changed;
1282 }
1283 
1284 bool llvm::EliminateDuplicatePHINodes(BasicBlock *BB) {
1285   if (
1286 #ifndef NDEBUG
1287       !PHICSEDebugHash &&
1288 #endif
1289       hasNItemsOrLess(BB->phis(), PHICSENumPHISmallSize))
1290     return EliminateDuplicatePHINodesNaiveImpl(BB);
1291   return EliminateDuplicatePHINodesSetBasedImpl(BB);
1292 }
1293 
1294 /// If the specified pointer points to an object that we control, try to modify
1295 /// the object's alignment to PrefAlign. Returns a minimum known alignment of
1296 /// the value after the operation, which may be lower than PrefAlign.
1297 ///
1298 /// Increating value alignment isn't often possible though. If alignment is
1299 /// important, a more reliable approach is to simply align all global variables
1300 /// and allocation instructions to their preferred alignment from the beginning.
1301 static Align tryEnforceAlignment(Value *V, Align PrefAlign,
1302                                  const DataLayout &DL) {
1303   V = V->stripPointerCasts();
1304 
1305   if (AllocaInst *AI = dyn_cast<AllocaInst>(V)) {
1306     // TODO: Ideally, this function would not be called if PrefAlign is smaller
1307     // than the current alignment, as the known bits calculation should have
1308     // already taken it into account. However, this is not always the case,
1309     // as computeKnownBits() has a depth limit, while stripPointerCasts()
1310     // doesn't.
1311     Align CurrentAlign = AI->getAlign();
1312     if (PrefAlign <= CurrentAlign)
1313       return CurrentAlign;
1314 
1315     // If the preferred alignment is greater than the natural stack alignment
1316     // then don't round up. This avoids dynamic stack realignment.
1317     if (DL.exceedsNaturalStackAlignment(PrefAlign))
1318       return CurrentAlign;
1319     AI->setAlignment(PrefAlign);
1320     return PrefAlign;
1321   }
1322 
1323   if (auto *GO = dyn_cast<GlobalObject>(V)) {
1324     // TODO: as above, this shouldn't be necessary.
1325     Align CurrentAlign = GO->getPointerAlignment(DL);
1326     if (PrefAlign <= CurrentAlign)
1327       return CurrentAlign;
1328 
1329     // If there is a large requested alignment and we can, bump up the alignment
1330     // of the global.  If the memory we set aside for the global may not be the
1331     // memory used by the final program then it is impossible for us to reliably
1332     // enforce the preferred alignment.
1333     if (!GO->canIncreaseAlignment())
1334       return CurrentAlign;
1335 
1336     GO->setAlignment(PrefAlign);
1337     return PrefAlign;
1338   }
1339 
1340   return Align(1);
1341 }
1342 
1343 Align llvm::getOrEnforceKnownAlignment(Value *V, MaybeAlign PrefAlign,
1344                                        const DataLayout &DL,
1345                                        const Instruction *CxtI,
1346                                        AssumptionCache *AC,
1347                                        const DominatorTree *DT) {
1348   assert(V->getType()->isPointerTy() &&
1349          "getOrEnforceKnownAlignment expects a pointer!");
1350 
1351   KnownBits Known = computeKnownBits(V, DL, 0, AC, CxtI, DT);
1352   unsigned TrailZ = Known.countMinTrailingZeros();
1353 
1354   // Avoid trouble with ridiculously large TrailZ values, such as
1355   // those computed from a null pointer.
1356   // LLVM doesn't support alignments larger than (1 << MaxAlignmentExponent).
1357   TrailZ = std::min(TrailZ, +Value::MaxAlignmentExponent);
1358 
1359   Align Alignment = Align(1ull << std::min(Known.getBitWidth() - 1, TrailZ));
1360 
1361   if (PrefAlign && *PrefAlign > Alignment)
1362     Alignment = std::max(Alignment, tryEnforceAlignment(V, *PrefAlign, DL));
1363 
1364   // We don't need to make any adjustment.
1365   return Alignment;
1366 }
1367 
1368 ///===---------------------------------------------------------------------===//
1369 ///  Dbg Intrinsic utilities
1370 ///
1371 
1372 /// See if there is a dbg.value intrinsic for DIVar for the PHI node.
1373 static bool PhiHasDebugValue(DILocalVariable *DIVar,
1374                              DIExpression *DIExpr,
1375                              PHINode *APN) {
1376   // Since we can't guarantee that the original dbg.declare instrinsic
1377   // is removed by LowerDbgDeclare(), we need to make sure that we are
1378   // not inserting the same dbg.value intrinsic over and over.
1379   SmallVector<DbgValueInst *, 1> DbgValues;
1380   findDbgValues(DbgValues, APN);
1381   for (auto *DVI : DbgValues) {
1382     assert(is_contained(DVI->getValues(), APN));
1383     if ((DVI->getVariable() == DIVar) && (DVI->getExpression() == DIExpr))
1384       return true;
1385   }
1386   return false;
1387 }
1388 
1389 /// Check if the alloc size of \p ValTy is large enough to cover the variable
1390 /// (or fragment of the variable) described by \p DII.
1391 ///
1392 /// This is primarily intended as a helper for the different
1393 /// ConvertDebugDeclareToDebugValue functions. The dbg.declare/dbg.addr that is
1394 /// converted describes an alloca'd variable, so we need to use the
1395 /// alloc size of the value when doing the comparison. E.g. an i1 value will be
1396 /// identified as covering an n-bit fragment, if the store size of i1 is at
1397 /// least n bits.
1398 static bool valueCoversEntireFragment(Type *ValTy, DbgVariableIntrinsic *DII) {
1399   const DataLayout &DL = DII->getModule()->getDataLayout();
1400   TypeSize ValueSize = DL.getTypeAllocSizeInBits(ValTy);
1401   if (Optional<uint64_t> FragmentSize = DII->getFragmentSizeInBits()) {
1402     assert(!ValueSize.isScalable() &&
1403            "Fragments don't work on scalable types.");
1404     return ValueSize.getFixedSize() >= *FragmentSize;
1405   }
1406   // We can't always calculate the size of the DI variable (e.g. if it is a
1407   // VLA). Try to use the size of the alloca that the dbg intrinsic describes
1408   // intead.
1409   if (DII->isAddressOfVariable()) {
1410     // DII should have exactly 1 location when it is an address.
1411     assert(DII->getNumVariableLocationOps() == 1 &&
1412            "address of variable must have exactly 1 location operand.");
1413     if (auto *AI =
1414             dyn_cast_or_null<AllocaInst>(DII->getVariableLocationOp(0))) {
1415       if (Optional<TypeSize> FragmentSize = AI->getAllocationSizeInBits(DL)) {
1416         return TypeSize::isKnownGE(ValueSize, *FragmentSize);
1417       }
1418     }
1419   }
1420   // Could not determine size of variable. Conservatively return false.
1421   return false;
1422 }
1423 
1424 /// Produce a DebugLoc to use for each dbg.declare/inst pair that are promoted
1425 /// to a dbg.value. Because no machine insts can come from debug intrinsics,
1426 /// only the scope and inlinedAt is significant. Zero line numbers are used in
1427 /// case this DebugLoc leaks into any adjacent instructions.
1428 static DebugLoc getDebugValueLoc(DbgVariableIntrinsic *DII, Instruction *Src) {
1429   // Original dbg.declare must have a location.
1430   const DebugLoc &DeclareLoc = DII->getDebugLoc();
1431   MDNode *Scope = DeclareLoc.getScope();
1432   DILocation *InlinedAt = DeclareLoc.getInlinedAt();
1433   // Produce an unknown location with the correct scope / inlinedAt fields.
1434   return DILocation::get(DII->getContext(), 0, 0, Scope, InlinedAt);
1435 }
1436 
1437 /// Inserts a llvm.dbg.value intrinsic before a store to an alloca'd value
1438 /// that has an associated llvm.dbg.declare or llvm.dbg.addr intrinsic.
1439 void llvm::ConvertDebugDeclareToDebugValue(DbgVariableIntrinsic *DII,
1440                                            StoreInst *SI, DIBuilder &Builder) {
1441   assert(DII->isAddressOfVariable());
1442   auto *DIVar = DII->getVariable();
1443   assert(DIVar && "Missing variable");
1444   auto *DIExpr = DII->getExpression();
1445   Value *DV = SI->getValueOperand();
1446 
1447   DebugLoc NewLoc = getDebugValueLoc(DII, SI);
1448 
1449   if (!valueCoversEntireFragment(DV->getType(), DII)) {
1450     // FIXME: If storing to a part of the variable described by the dbg.declare,
1451     // then we want to insert a dbg.value for the corresponding fragment.
1452     LLVM_DEBUG(dbgs() << "Failed to convert dbg.declare to dbg.value: "
1453                       << *DII << '\n');
1454     // For now, when there is a store to parts of the variable (but we do not
1455     // know which part) we insert an dbg.value instrinsic to indicate that we
1456     // know nothing about the variable's content.
1457     DV = UndefValue::get(DV->getType());
1458     Builder.insertDbgValueIntrinsic(DV, DIVar, DIExpr, NewLoc, SI);
1459     return;
1460   }
1461 
1462   Builder.insertDbgValueIntrinsic(DV, DIVar, DIExpr, NewLoc, SI);
1463 }
1464 
1465 /// Inserts a llvm.dbg.value intrinsic before a load of an alloca'd value
1466 /// that has an associated llvm.dbg.declare or llvm.dbg.addr intrinsic.
1467 void llvm::ConvertDebugDeclareToDebugValue(DbgVariableIntrinsic *DII,
1468                                            LoadInst *LI, DIBuilder &Builder) {
1469   auto *DIVar = DII->getVariable();
1470   auto *DIExpr = DII->getExpression();
1471   assert(DIVar && "Missing variable");
1472 
1473   if (!valueCoversEntireFragment(LI->getType(), DII)) {
1474     // FIXME: If only referring to a part of the variable described by the
1475     // dbg.declare, then we want to insert a dbg.value for the corresponding
1476     // fragment.
1477     LLVM_DEBUG(dbgs() << "Failed to convert dbg.declare to dbg.value: "
1478                       << *DII << '\n');
1479     return;
1480   }
1481 
1482   DebugLoc NewLoc = getDebugValueLoc(DII, nullptr);
1483 
1484   // We are now tracking the loaded value instead of the address. In the
1485   // future if multi-location support is added to the IR, it might be
1486   // preferable to keep tracking both the loaded value and the original
1487   // address in case the alloca can not be elided.
1488   Instruction *DbgValue = Builder.insertDbgValueIntrinsic(
1489       LI, DIVar, DIExpr, NewLoc, (Instruction *)nullptr);
1490   DbgValue->insertAfter(LI);
1491 }
1492 
1493 /// Inserts a llvm.dbg.value intrinsic after a phi that has an associated
1494 /// llvm.dbg.declare or llvm.dbg.addr intrinsic.
1495 void llvm::ConvertDebugDeclareToDebugValue(DbgVariableIntrinsic *DII,
1496                                            PHINode *APN, DIBuilder &Builder) {
1497   auto *DIVar = DII->getVariable();
1498   auto *DIExpr = DII->getExpression();
1499   assert(DIVar && "Missing variable");
1500 
1501   if (PhiHasDebugValue(DIVar, DIExpr, APN))
1502     return;
1503 
1504   if (!valueCoversEntireFragment(APN->getType(), DII)) {
1505     // FIXME: If only referring to a part of the variable described by the
1506     // dbg.declare, then we want to insert a dbg.value for the corresponding
1507     // fragment.
1508     LLVM_DEBUG(dbgs() << "Failed to convert dbg.declare to dbg.value: "
1509                       << *DII << '\n');
1510     return;
1511   }
1512 
1513   BasicBlock *BB = APN->getParent();
1514   auto InsertionPt = BB->getFirstInsertionPt();
1515 
1516   DebugLoc NewLoc = getDebugValueLoc(DII, nullptr);
1517 
1518   // The block may be a catchswitch block, which does not have a valid
1519   // insertion point.
1520   // FIXME: Insert dbg.value markers in the successors when appropriate.
1521   if (InsertionPt != BB->end())
1522     Builder.insertDbgValueIntrinsic(APN, DIVar, DIExpr, NewLoc, &*InsertionPt);
1523 }
1524 
1525 /// Determine whether this alloca is either a VLA or an array.
1526 static bool isArray(AllocaInst *AI) {
1527   return AI->isArrayAllocation() ||
1528          (AI->getAllocatedType() && AI->getAllocatedType()->isArrayTy());
1529 }
1530 
1531 /// Determine whether this alloca is a structure.
1532 static bool isStructure(AllocaInst *AI) {
1533   return AI->getAllocatedType() && AI->getAllocatedType()->isStructTy();
1534 }
1535 
1536 /// LowerDbgDeclare - Lowers llvm.dbg.declare intrinsics into appropriate set
1537 /// of llvm.dbg.value intrinsics.
1538 bool llvm::LowerDbgDeclare(Function &F) {
1539   bool Changed = false;
1540   DIBuilder DIB(*F.getParent(), /*AllowUnresolved*/ false);
1541   SmallVector<DbgDeclareInst *, 4> Dbgs;
1542   for (auto &FI : F)
1543     for (Instruction &BI : FI)
1544       if (auto DDI = dyn_cast<DbgDeclareInst>(&BI))
1545         Dbgs.push_back(DDI);
1546 
1547   if (Dbgs.empty())
1548     return Changed;
1549 
1550   for (auto &I : Dbgs) {
1551     DbgDeclareInst *DDI = I;
1552     AllocaInst *AI = dyn_cast_or_null<AllocaInst>(DDI->getAddress());
1553     // If this is an alloca for a scalar variable, insert a dbg.value
1554     // at each load and store to the alloca and erase the dbg.declare.
1555     // The dbg.values allow tracking a variable even if it is not
1556     // stored on the stack, while the dbg.declare can only describe
1557     // the stack slot (and at a lexical-scope granularity). Later
1558     // passes will attempt to elide the stack slot.
1559     if (!AI || isArray(AI) || isStructure(AI))
1560       continue;
1561 
1562     // A volatile load/store means that the alloca can't be elided anyway.
1563     if (llvm::any_of(AI->users(), [](User *U) -> bool {
1564           if (LoadInst *LI = dyn_cast<LoadInst>(U))
1565             return LI->isVolatile();
1566           if (StoreInst *SI = dyn_cast<StoreInst>(U))
1567             return SI->isVolatile();
1568           return false;
1569         }))
1570       continue;
1571 
1572     SmallVector<const Value *, 8> WorkList;
1573     WorkList.push_back(AI);
1574     while (!WorkList.empty()) {
1575       const Value *V = WorkList.pop_back_val();
1576       for (auto &AIUse : V->uses()) {
1577         User *U = AIUse.getUser();
1578         if (StoreInst *SI = dyn_cast<StoreInst>(U)) {
1579           if (AIUse.getOperandNo() == 1)
1580             ConvertDebugDeclareToDebugValue(DDI, SI, DIB);
1581         } else if (LoadInst *LI = dyn_cast<LoadInst>(U)) {
1582           ConvertDebugDeclareToDebugValue(DDI, LI, DIB);
1583         } else if (CallInst *CI = dyn_cast<CallInst>(U)) {
1584           // This is a call by-value or some other instruction that takes a
1585           // pointer to the variable. Insert a *value* intrinsic that describes
1586           // the variable by dereferencing the alloca.
1587           if (!CI->isLifetimeStartOrEnd()) {
1588             DebugLoc NewLoc = getDebugValueLoc(DDI, nullptr);
1589             auto *DerefExpr =
1590                 DIExpression::append(DDI->getExpression(), dwarf::DW_OP_deref);
1591             DIB.insertDbgValueIntrinsic(AI, DDI->getVariable(), DerefExpr,
1592                                         NewLoc, CI);
1593           }
1594         } else if (BitCastInst *BI = dyn_cast<BitCastInst>(U)) {
1595           if (BI->getType()->isPointerTy())
1596             WorkList.push_back(BI);
1597         }
1598       }
1599     }
1600     DDI->eraseFromParent();
1601     Changed = true;
1602   }
1603 
1604   if (Changed)
1605   for (BasicBlock &BB : F)
1606     RemoveRedundantDbgInstrs(&BB);
1607 
1608   return Changed;
1609 }
1610 
1611 /// Propagate dbg.value intrinsics through the newly inserted PHIs.
1612 void llvm::insertDebugValuesForPHIs(BasicBlock *BB,
1613                                     SmallVectorImpl<PHINode *> &InsertedPHIs) {
1614   assert(BB && "No BasicBlock to clone dbg.value(s) from.");
1615   if (InsertedPHIs.size() == 0)
1616     return;
1617 
1618   // Map existing PHI nodes to their dbg.values.
1619   ValueToValueMapTy DbgValueMap;
1620   for (auto &I : *BB) {
1621     if (auto DbgII = dyn_cast<DbgVariableIntrinsic>(&I)) {
1622       for (Value *V : DbgII->location_ops())
1623         if (auto *Loc = dyn_cast_or_null<PHINode>(V))
1624           DbgValueMap.insert({Loc, DbgII});
1625     }
1626   }
1627   if (DbgValueMap.size() == 0)
1628     return;
1629 
1630   // Map a pair of the destination BB and old dbg.value to the new dbg.value,
1631   // so that if a dbg.value is being rewritten to use more than one of the
1632   // inserted PHIs in the same destination BB, we can update the same dbg.value
1633   // with all the new PHIs instead of creating one copy for each.
1634   MapVector<std::pair<BasicBlock *, DbgVariableIntrinsic *>,
1635             DbgVariableIntrinsic *>
1636       NewDbgValueMap;
1637   // Then iterate through the new PHIs and look to see if they use one of the
1638   // previously mapped PHIs. If so, create a new dbg.value intrinsic that will
1639   // propagate the info through the new PHI. If we use more than one new PHI in
1640   // a single destination BB with the same old dbg.value, merge the updates so
1641   // that we get a single new dbg.value with all the new PHIs.
1642   for (auto PHI : InsertedPHIs) {
1643     BasicBlock *Parent = PHI->getParent();
1644     // Avoid inserting an intrinsic into an EH block.
1645     if (Parent->getFirstNonPHI()->isEHPad())
1646       continue;
1647     for (auto VI : PHI->operand_values()) {
1648       auto V = DbgValueMap.find(VI);
1649       if (V != DbgValueMap.end()) {
1650         auto *DbgII = cast<DbgVariableIntrinsic>(V->second);
1651         auto NewDI = NewDbgValueMap.find({Parent, DbgII});
1652         if (NewDI == NewDbgValueMap.end()) {
1653           auto *NewDbgII = cast<DbgVariableIntrinsic>(DbgII->clone());
1654           NewDI = NewDbgValueMap.insert({{Parent, DbgII}, NewDbgII}).first;
1655         }
1656         DbgVariableIntrinsic *NewDbgII = NewDI->second;
1657         // If PHI contains VI as an operand more than once, we may
1658         // replaced it in NewDbgII; confirm that it is present.
1659         if (is_contained(NewDbgII->location_ops(), VI))
1660           NewDbgII->replaceVariableLocationOp(VI, PHI);
1661       }
1662     }
1663   }
1664   // Insert thew new dbg.values into their destination blocks.
1665   for (auto DI : NewDbgValueMap) {
1666     BasicBlock *Parent = DI.first.first;
1667     auto *NewDbgII = DI.second;
1668     auto InsertionPt = Parent->getFirstInsertionPt();
1669     assert(InsertionPt != Parent->end() && "Ill-formed basic block");
1670     NewDbgII->insertBefore(&*InsertionPt);
1671   }
1672 }
1673 
1674 bool llvm::replaceDbgDeclare(Value *Address, Value *NewAddress,
1675                              DIBuilder &Builder, uint8_t DIExprFlags,
1676                              int Offset) {
1677   auto DbgAddrs = FindDbgAddrUses(Address);
1678   for (DbgVariableIntrinsic *DII : DbgAddrs) {
1679     const DebugLoc &Loc = DII->getDebugLoc();
1680     auto *DIVar = DII->getVariable();
1681     auto *DIExpr = DII->getExpression();
1682     assert(DIVar && "Missing variable");
1683     DIExpr = DIExpression::prepend(DIExpr, DIExprFlags, Offset);
1684     // Insert llvm.dbg.declare immediately before DII, and remove old
1685     // llvm.dbg.declare.
1686     Builder.insertDeclare(NewAddress, DIVar, DIExpr, Loc, DII);
1687     DII->eraseFromParent();
1688   }
1689   return !DbgAddrs.empty();
1690 }
1691 
1692 static void replaceOneDbgValueForAlloca(DbgValueInst *DVI, Value *NewAddress,
1693                                         DIBuilder &Builder, int Offset) {
1694   const DebugLoc &Loc = DVI->getDebugLoc();
1695   auto *DIVar = DVI->getVariable();
1696   auto *DIExpr = DVI->getExpression();
1697   assert(DIVar && "Missing variable");
1698 
1699   // This is an alloca-based llvm.dbg.value. The first thing it should do with
1700   // the alloca pointer is dereference it. Otherwise we don't know how to handle
1701   // it and give up.
1702   if (!DIExpr || DIExpr->getNumElements() < 1 ||
1703       DIExpr->getElement(0) != dwarf::DW_OP_deref)
1704     return;
1705 
1706   // Insert the offset before the first deref.
1707   // We could just change the offset argument of dbg.value, but it's unsigned...
1708   if (Offset)
1709     DIExpr = DIExpression::prepend(DIExpr, 0, Offset);
1710 
1711   Builder.insertDbgValueIntrinsic(NewAddress, DIVar, DIExpr, Loc, DVI);
1712   DVI->eraseFromParent();
1713 }
1714 
1715 void llvm::replaceDbgValueForAlloca(AllocaInst *AI, Value *NewAllocaAddress,
1716                                     DIBuilder &Builder, int Offset) {
1717   if (auto *L = LocalAsMetadata::getIfExists(AI))
1718     if (auto *MDV = MetadataAsValue::getIfExists(AI->getContext(), L))
1719       for (Use &U : llvm::make_early_inc_range(MDV->uses()))
1720         if (auto *DVI = dyn_cast<DbgValueInst>(U.getUser()))
1721           replaceOneDbgValueForAlloca(DVI, NewAllocaAddress, Builder, Offset);
1722 }
1723 
1724 /// Where possible to salvage debug information for \p I do so
1725 /// and return True. If not possible mark undef and return False.
1726 void llvm::salvageDebugInfo(Instruction &I) {
1727   SmallVector<DbgVariableIntrinsic *, 1> DbgUsers;
1728   findDbgUsers(DbgUsers, &I);
1729   salvageDebugInfoForDbgValues(I, DbgUsers);
1730 }
1731 
1732 void llvm::salvageDebugInfoForDbgValues(
1733     Instruction &I, ArrayRef<DbgVariableIntrinsic *> DbgUsers) {
1734   // These are arbitrary chosen limits on the maximum number of values and the
1735   // maximum size of a debug expression we can salvage up to, used for
1736   // performance reasons.
1737   const unsigned MaxDebugArgs = 16;
1738   const unsigned MaxExpressionSize = 128;
1739   bool Salvaged = false;
1740 
1741   for (auto *DII : DbgUsers) {
1742     // Do not add DW_OP_stack_value for DbgDeclare and DbgAddr, because they
1743     // are implicitly pointing out the value as a DWARF memory location
1744     // description.
1745     bool StackValue = isa<DbgValueInst>(DII);
1746     auto DIILocation = DII->location_ops();
1747     assert(
1748         is_contained(DIILocation, &I) &&
1749         "DbgVariableIntrinsic must use salvaged instruction as its location");
1750     SmallVector<Value *, 4> AdditionalValues;
1751     // `I` may appear more than once in DII's location ops, and each use of `I`
1752     // must be updated in the DIExpression and potentially have additional
1753     // values added; thus we call salvageDebugInfoImpl for each `I` instance in
1754     // DIILocation.
1755     Value *Op0 = nullptr;
1756     DIExpression *SalvagedExpr = DII->getExpression();
1757     auto LocItr = find(DIILocation, &I);
1758     while (SalvagedExpr && LocItr != DIILocation.end()) {
1759       SmallVector<uint64_t, 16> Ops;
1760       unsigned LocNo = std::distance(DIILocation.begin(), LocItr);
1761       uint64_t CurrentLocOps = SalvagedExpr->getNumLocationOperands();
1762       Op0 = salvageDebugInfoImpl(I, CurrentLocOps, Ops, AdditionalValues);
1763       if (!Op0)
1764         break;
1765       SalvagedExpr =
1766           DIExpression::appendOpsToArg(SalvagedExpr, Ops, LocNo, StackValue);
1767       LocItr = std::find(++LocItr, DIILocation.end(), &I);
1768     }
1769     // salvageDebugInfoImpl should fail on examining the first element of
1770     // DbgUsers, or none of them.
1771     if (!Op0)
1772       break;
1773 
1774     DII->replaceVariableLocationOp(&I, Op0);
1775     bool IsValidSalvageExpr = SalvagedExpr->getNumElements() <= MaxExpressionSize;
1776     if (AdditionalValues.empty() && IsValidSalvageExpr) {
1777       DII->setExpression(SalvagedExpr);
1778     } else if (isa<DbgValueInst>(DII) && IsValidSalvageExpr &&
1779                DII->getNumVariableLocationOps() + AdditionalValues.size() <=
1780                    MaxDebugArgs) {
1781       DII->addVariableLocationOps(AdditionalValues, SalvagedExpr);
1782     } else {
1783       // Do not salvage using DIArgList for dbg.addr/dbg.declare, as it is
1784       // currently only valid for stack value expressions.
1785       // Also do not salvage if the resulting DIArgList would contain an
1786       // unreasonably large number of values.
1787       Value *Undef = UndefValue::get(I.getOperand(0)->getType());
1788       DII->replaceVariableLocationOp(I.getOperand(0), Undef);
1789     }
1790     LLVM_DEBUG(dbgs() << "SALVAGE: " << *DII << '\n');
1791     Salvaged = true;
1792   }
1793 
1794   if (Salvaged)
1795     return;
1796 
1797   for (auto *DII : DbgUsers) {
1798     Value *Undef = UndefValue::get(I.getType());
1799     DII->replaceVariableLocationOp(&I, Undef);
1800   }
1801 }
1802 
1803 Value *getSalvageOpsForGEP(GetElementPtrInst *GEP, const DataLayout &DL,
1804                            uint64_t CurrentLocOps,
1805                            SmallVectorImpl<uint64_t> &Opcodes,
1806                            SmallVectorImpl<Value *> &AdditionalValues) {
1807   unsigned BitWidth = DL.getIndexSizeInBits(GEP->getPointerAddressSpace());
1808   // Rewrite a GEP into a DIExpression.
1809   MapVector<Value *, APInt> VariableOffsets;
1810   APInt ConstantOffset(BitWidth, 0);
1811   if (!GEP->collectOffset(DL, BitWidth, VariableOffsets, ConstantOffset))
1812     return nullptr;
1813   if (!VariableOffsets.empty() && !CurrentLocOps) {
1814     Opcodes.insert(Opcodes.begin(), {dwarf::DW_OP_LLVM_arg, 0});
1815     CurrentLocOps = 1;
1816   }
1817   for (auto Offset : VariableOffsets) {
1818     AdditionalValues.push_back(Offset.first);
1819     assert(Offset.second.isStrictlyPositive() &&
1820            "Expected strictly positive multiplier for offset.");
1821     Opcodes.append({dwarf::DW_OP_LLVM_arg, CurrentLocOps++, dwarf::DW_OP_constu,
1822                     Offset.second.getZExtValue(), dwarf::DW_OP_mul,
1823                     dwarf::DW_OP_plus});
1824   }
1825   DIExpression::appendOffset(Opcodes, ConstantOffset.getSExtValue());
1826   return GEP->getOperand(0);
1827 }
1828 
1829 uint64_t getDwarfOpForBinOp(Instruction::BinaryOps Opcode) {
1830   switch (Opcode) {
1831   case Instruction::Add:
1832     return dwarf::DW_OP_plus;
1833   case Instruction::Sub:
1834     return dwarf::DW_OP_minus;
1835   case Instruction::Mul:
1836     return dwarf::DW_OP_mul;
1837   case Instruction::SDiv:
1838     return dwarf::DW_OP_div;
1839   case Instruction::SRem:
1840     return dwarf::DW_OP_mod;
1841   case Instruction::Or:
1842     return dwarf::DW_OP_or;
1843   case Instruction::And:
1844     return dwarf::DW_OP_and;
1845   case Instruction::Xor:
1846     return dwarf::DW_OP_xor;
1847   case Instruction::Shl:
1848     return dwarf::DW_OP_shl;
1849   case Instruction::LShr:
1850     return dwarf::DW_OP_shr;
1851   case Instruction::AShr:
1852     return dwarf::DW_OP_shra;
1853   default:
1854     // TODO: Salvage from each kind of binop we know about.
1855     return 0;
1856   }
1857 }
1858 
1859 Value *getSalvageOpsForBinOp(BinaryOperator *BI, uint64_t CurrentLocOps,
1860                              SmallVectorImpl<uint64_t> &Opcodes,
1861                              SmallVectorImpl<Value *> &AdditionalValues) {
1862   // Handle binary operations with constant integer operands as a special case.
1863   auto *ConstInt = dyn_cast<ConstantInt>(BI->getOperand(1));
1864   // Values wider than 64 bits cannot be represented within a DIExpression.
1865   if (ConstInt && ConstInt->getBitWidth() > 64)
1866     return nullptr;
1867 
1868   Instruction::BinaryOps BinOpcode = BI->getOpcode();
1869   // Push any Constant Int operand onto the expression stack.
1870   if (ConstInt) {
1871     uint64_t Val = ConstInt->getSExtValue();
1872     // Add or Sub Instructions with a constant operand can potentially be
1873     // simplified.
1874     if (BinOpcode == Instruction::Add || BinOpcode == Instruction::Sub) {
1875       uint64_t Offset = BinOpcode == Instruction::Add ? Val : -int64_t(Val);
1876       DIExpression::appendOffset(Opcodes, Offset);
1877       return BI->getOperand(0);
1878     }
1879     Opcodes.append({dwarf::DW_OP_constu, Val});
1880   } else {
1881     if (!CurrentLocOps) {
1882       Opcodes.append({dwarf::DW_OP_LLVM_arg, 0});
1883       CurrentLocOps = 1;
1884     }
1885     Opcodes.append({dwarf::DW_OP_LLVM_arg, CurrentLocOps});
1886     AdditionalValues.push_back(BI->getOperand(1));
1887   }
1888 
1889   // Add salvaged binary operator to expression stack, if it has a valid
1890   // representation in a DIExpression.
1891   uint64_t DwarfBinOp = getDwarfOpForBinOp(BinOpcode);
1892   if (!DwarfBinOp)
1893     return nullptr;
1894   Opcodes.push_back(DwarfBinOp);
1895   return BI->getOperand(0);
1896 }
1897 
1898 Value *llvm::salvageDebugInfoImpl(Instruction &I, uint64_t CurrentLocOps,
1899                                   SmallVectorImpl<uint64_t> &Ops,
1900                                   SmallVectorImpl<Value *> &AdditionalValues) {
1901   auto &M = *I.getModule();
1902   auto &DL = M.getDataLayout();
1903 
1904   if (auto *CI = dyn_cast<CastInst>(&I)) {
1905     Value *FromValue = CI->getOperand(0);
1906     // No-op casts are irrelevant for debug info.
1907     if (CI->isNoopCast(DL)) {
1908       return FromValue;
1909     }
1910 
1911     Type *Type = CI->getType();
1912     if (Type->isPointerTy())
1913       Type = DL.getIntPtrType(Type);
1914     // Casts other than Trunc, SExt, or ZExt to scalar types cannot be salvaged.
1915     if (Type->isVectorTy() ||
1916         !(isa<TruncInst>(&I) || isa<SExtInst>(&I) || isa<ZExtInst>(&I) ||
1917           isa<IntToPtrInst>(&I) || isa<PtrToIntInst>(&I)))
1918       return nullptr;
1919 
1920     llvm::Type *FromType = FromValue->getType();
1921     if (FromType->isPointerTy())
1922       FromType = DL.getIntPtrType(FromType);
1923 
1924     unsigned FromTypeBitSize = FromType->getScalarSizeInBits();
1925     unsigned ToTypeBitSize = Type->getScalarSizeInBits();
1926 
1927     auto ExtOps = DIExpression::getExtOps(FromTypeBitSize, ToTypeBitSize,
1928                                           isa<SExtInst>(&I));
1929     Ops.append(ExtOps.begin(), ExtOps.end());
1930     return FromValue;
1931   }
1932 
1933   if (auto *GEP = dyn_cast<GetElementPtrInst>(&I))
1934     return getSalvageOpsForGEP(GEP, DL, CurrentLocOps, Ops, AdditionalValues);
1935   if (auto *BI = dyn_cast<BinaryOperator>(&I))
1936     return getSalvageOpsForBinOp(BI, CurrentLocOps, Ops, AdditionalValues);
1937 
1938   // *Not* to do: we should not attempt to salvage load instructions,
1939   // because the validity and lifetime of a dbg.value containing
1940   // DW_OP_deref becomes difficult to analyze. See PR40628 for examples.
1941   return nullptr;
1942 }
1943 
1944 /// A replacement for a dbg.value expression.
1945 using DbgValReplacement = Optional<DIExpression *>;
1946 
1947 /// Point debug users of \p From to \p To using exprs given by \p RewriteExpr,
1948 /// possibly moving/undefing users to prevent use-before-def. Returns true if
1949 /// changes are made.
1950 static bool rewriteDebugUsers(
1951     Instruction &From, Value &To, Instruction &DomPoint, DominatorTree &DT,
1952     function_ref<DbgValReplacement(DbgVariableIntrinsic &DII)> RewriteExpr) {
1953   // Find debug users of From.
1954   SmallVector<DbgVariableIntrinsic *, 1> Users;
1955   findDbgUsers(Users, &From);
1956   if (Users.empty())
1957     return false;
1958 
1959   // Prevent use-before-def of To.
1960   bool Changed = false;
1961   SmallPtrSet<DbgVariableIntrinsic *, 1> UndefOrSalvage;
1962   if (isa<Instruction>(&To)) {
1963     bool DomPointAfterFrom = From.getNextNonDebugInstruction() == &DomPoint;
1964 
1965     for (auto *DII : Users) {
1966       // It's common to see a debug user between From and DomPoint. Move it
1967       // after DomPoint to preserve the variable update without any reordering.
1968       if (DomPointAfterFrom && DII->getNextNonDebugInstruction() == &DomPoint) {
1969         LLVM_DEBUG(dbgs() << "MOVE:  " << *DII << '\n');
1970         DII->moveAfter(&DomPoint);
1971         Changed = true;
1972 
1973       // Users which otherwise aren't dominated by the replacement value must
1974       // be salvaged or deleted.
1975       } else if (!DT.dominates(&DomPoint, DII)) {
1976         UndefOrSalvage.insert(DII);
1977       }
1978     }
1979   }
1980 
1981   // Update debug users without use-before-def risk.
1982   for (auto *DII : Users) {
1983     if (UndefOrSalvage.count(DII))
1984       continue;
1985 
1986     DbgValReplacement DVR = RewriteExpr(*DII);
1987     if (!DVR)
1988       continue;
1989 
1990     DII->replaceVariableLocationOp(&From, &To);
1991     DII->setExpression(*DVR);
1992     LLVM_DEBUG(dbgs() << "REWRITE:  " << *DII << '\n');
1993     Changed = true;
1994   }
1995 
1996   if (!UndefOrSalvage.empty()) {
1997     // Try to salvage the remaining debug users.
1998     salvageDebugInfo(From);
1999     Changed = true;
2000   }
2001 
2002   return Changed;
2003 }
2004 
2005 /// Check if a bitcast between a value of type \p FromTy to type \p ToTy would
2006 /// losslessly preserve the bits and semantics of the value. This predicate is
2007 /// symmetric, i.e swapping \p FromTy and \p ToTy should give the same result.
2008 ///
2009 /// Note that Type::canLosslesslyBitCastTo is not suitable here because it
2010 /// allows semantically unequivalent bitcasts, such as <2 x i64> -> <4 x i32>,
2011 /// and also does not allow lossless pointer <-> integer conversions.
2012 static bool isBitCastSemanticsPreserving(const DataLayout &DL, Type *FromTy,
2013                                          Type *ToTy) {
2014   // Trivially compatible types.
2015   if (FromTy == ToTy)
2016     return true;
2017 
2018   // Handle compatible pointer <-> integer conversions.
2019   if (FromTy->isIntOrPtrTy() && ToTy->isIntOrPtrTy()) {
2020     bool SameSize = DL.getTypeSizeInBits(FromTy) == DL.getTypeSizeInBits(ToTy);
2021     bool LosslessConversion = !DL.isNonIntegralPointerType(FromTy) &&
2022                               !DL.isNonIntegralPointerType(ToTy);
2023     return SameSize && LosslessConversion;
2024   }
2025 
2026   // TODO: This is not exhaustive.
2027   return false;
2028 }
2029 
2030 bool llvm::replaceAllDbgUsesWith(Instruction &From, Value &To,
2031                                  Instruction &DomPoint, DominatorTree &DT) {
2032   // Exit early if From has no debug users.
2033   if (!From.isUsedByMetadata())
2034     return false;
2035 
2036   assert(&From != &To && "Can't replace something with itself");
2037 
2038   Type *FromTy = From.getType();
2039   Type *ToTy = To.getType();
2040 
2041   auto Identity = [&](DbgVariableIntrinsic &DII) -> DbgValReplacement {
2042     return DII.getExpression();
2043   };
2044 
2045   // Handle no-op conversions.
2046   Module &M = *From.getModule();
2047   const DataLayout &DL = M.getDataLayout();
2048   if (isBitCastSemanticsPreserving(DL, FromTy, ToTy))
2049     return rewriteDebugUsers(From, To, DomPoint, DT, Identity);
2050 
2051   // Handle integer-to-integer widening and narrowing.
2052   // FIXME: Use DW_OP_convert when it's available everywhere.
2053   if (FromTy->isIntegerTy() && ToTy->isIntegerTy()) {
2054     uint64_t FromBits = FromTy->getPrimitiveSizeInBits();
2055     uint64_t ToBits = ToTy->getPrimitiveSizeInBits();
2056     assert(FromBits != ToBits && "Unexpected no-op conversion");
2057 
2058     // When the width of the result grows, assume that a debugger will only
2059     // access the low `FromBits` bits when inspecting the source variable.
2060     if (FromBits < ToBits)
2061       return rewriteDebugUsers(From, To, DomPoint, DT, Identity);
2062 
2063     // The width of the result has shrunk. Use sign/zero extension to describe
2064     // the source variable's high bits.
2065     auto SignOrZeroExt = [&](DbgVariableIntrinsic &DII) -> DbgValReplacement {
2066       DILocalVariable *Var = DII.getVariable();
2067 
2068       // Without knowing signedness, sign/zero extension isn't possible.
2069       auto Signedness = Var->getSignedness();
2070       if (!Signedness)
2071         return None;
2072 
2073       bool Signed = *Signedness == DIBasicType::Signedness::Signed;
2074       return DIExpression::appendExt(DII.getExpression(), ToBits, FromBits,
2075                                      Signed);
2076     };
2077     return rewriteDebugUsers(From, To, DomPoint, DT, SignOrZeroExt);
2078   }
2079 
2080   // TODO: Floating-point conversions, vectors.
2081   return false;
2082 }
2083 
2084 std::pair<unsigned, unsigned>
2085 llvm::removeAllNonTerminatorAndEHPadInstructions(BasicBlock *BB) {
2086   unsigned NumDeadInst = 0;
2087   unsigned NumDeadDbgInst = 0;
2088   // Delete the instructions backwards, as it has a reduced likelihood of
2089   // having to update as many def-use and use-def chains.
2090   Instruction *EndInst = BB->getTerminator(); // Last not to be deleted.
2091   while (EndInst != &BB->front()) {
2092     // Delete the next to last instruction.
2093     Instruction *Inst = &*--EndInst->getIterator();
2094     if (!Inst->use_empty() && !Inst->getType()->isTokenTy())
2095       Inst->replaceAllUsesWith(UndefValue::get(Inst->getType()));
2096     if (Inst->isEHPad() || Inst->getType()->isTokenTy()) {
2097       EndInst = Inst;
2098       continue;
2099     }
2100     if (isa<DbgInfoIntrinsic>(Inst))
2101       ++NumDeadDbgInst;
2102     else
2103       ++NumDeadInst;
2104     Inst->eraseFromParent();
2105   }
2106   return {NumDeadInst, NumDeadDbgInst};
2107 }
2108 
2109 unsigned llvm::changeToUnreachable(Instruction *I, bool PreserveLCSSA,
2110                                    DomTreeUpdater *DTU,
2111                                    MemorySSAUpdater *MSSAU) {
2112   BasicBlock *BB = I->getParent();
2113 
2114   if (MSSAU)
2115     MSSAU->changeToUnreachable(I);
2116 
2117   SmallSet<BasicBlock *, 8> UniqueSuccessors;
2118 
2119   // Loop over all of the successors, removing BB's entry from any PHI
2120   // nodes.
2121   for (BasicBlock *Successor : successors(BB)) {
2122     Successor->removePredecessor(BB, PreserveLCSSA);
2123     if (DTU)
2124       UniqueSuccessors.insert(Successor);
2125   }
2126   auto *UI = new UnreachableInst(I->getContext(), I);
2127   UI->setDebugLoc(I->getDebugLoc());
2128 
2129   // All instructions after this are dead.
2130   unsigned NumInstrsRemoved = 0;
2131   BasicBlock::iterator BBI = I->getIterator(), BBE = BB->end();
2132   while (BBI != BBE) {
2133     if (!BBI->use_empty())
2134       BBI->replaceAllUsesWith(UndefValue::get(BBI->getType()));
2135     BB->getInstList().erase(BBI++);
2136     ++NumInstrsRemoved;
2137   }
2138   if (DTU) {
2139     SmallVector<DominatorTree::UpdateType, 8> Updates;
2140     Updates.reserve(UniqueSuccessors.size());
2141     for (BasicBlock *UniqueSuccessor : UniqueSuccessors)
2142       Updates.push_back({DominatorTree::Delete, BB, UniqueSuccessor});
2143     DTU->applyUpdates(Updates);
2144   }
2145   return NumInstrsRemoved;
2146 }
2147 
2148 CallInst *llvm::createCallMatchingInvoke(InvokeInst *II) {
2149   SmallVector<Value *, 8> Args(II->args());
2150   SmallVector<OperandBundleDef, 1> OpBundles;
2151   II->getOperandBundlesAsDefs(OpBundles);
2152   CallInst *NewCall = CallInst::Create(II->getFunctionType(),
2153                                        II->getCalledOperand(), Args, OpBundles);
2154   NewCall->setCallingConv(II->getCallingConv());
2155   NewCall->setAttributes(II->getAttributes());
2156   NewCall->setDebugLoc(II->getDebugLoc());
2157   NewCall->copyMetadata(*II);
2158 
2159   // If the invoke had profile metadata, try converting them for CallInst.
2160   uint64_t TotalWeight;
2161   if (NewCall->extractProfTotalWeight(TotalWeight)) {
2162     // Set the total weight if it fits into i32, otherwise reset.
2163     MDBuilder MDB(NewCall->getContext());
2164     auto NewWeights = uint32_t(TotalWeight) != TotalWeight
2165                           ? nullptr
2166                           : MDB.createBranchWeights({uint32_t(TotalWeight)});
2167     NewCall->setMetadata(LLVMContext::MD_prof, NewWeights);
2168   }
2169 
2170   return NewCall;
2171 }
2172 
2173 /// changeToCall - Convert the specified invoke into a normal call.
2174 void llvm::changeToCall(InvokeInst *II, DomTreeUpdater *DTU) {
2175   CallInst *NewCall = createCallMatchingInvoke(II);
2176   NewCall->takeName(II);
2177   NewCall->insertBefore(II);
2178   II->replaceAllUsesWith(NewCall);
2179 
2180   // Follow the call by a branch to the normal destination.
2181   BasicBlock *NormalDestBB = II->getNormalDest();
2182   BranchInst::Create(NormalDestBB, II);
2183 
2184   // Update PHI nodes in the unwind destination
2185   BasicBlock *BB = II->getParent();
2186   BasicBlock *UnwindDestBB = II->getUnwindDest();
2187   UnwindDestBB->removePredecessor(BB);
2188   II->eraseFromParent();
2189   if (DTU)
2190     DTU->applyUpdates({{DominatorTree::Delete, BB, UnwindDestBB}});
2191 }
2192 
2193 void llvm::createUnreachableSwitchDefault(SwitchInst *Switch,
2194                                           DomTreeUpdater *DTU) {
2195   LLVM_DEBUG(dbgs() << "SimplifyCFG: switch default is dead.\n");
2196   auto *BB = Switch->getParent();
2197   auto *OrigDefaultBlock = Switch->getDefaultDest();
2198   OrigDefaultBlock->removePredecessor(BB);
2199   BasicBlock *NewDefaultBlock = BasicBlock::Create(
2200       BB->getContext(), BB->getName() + ".unreachabledefault", BB->getParent(),
2201       OrigDefaultBlock);
2202   new UnreachableInst(Switch->getContext(), NewDefaultBlock);
2203   Switch->setDefaultDest(&*NewDefaultBlock);
2204   if (DTU) {
2205     SmallVector<DominatorTree::UpdateType, 2> Updates;
2206     Updates.push_back({DominatorTree::Insert, BB, &*NewDefaultBlock});
2207     if (!is_contained(successors(BB), OrigDefaultBlock))
2208       Updates.push_back({DominatorTree::Delete, BB, &*OrigDefaultBlock});
2209     DTU->applyUpdates(Updates);
2210   }
2211 }
2212 
2213 BasicBlock *llvm::changeToInvokeAndSplitBasicBlock(CallInst *CI,
2214                                                    BasicBlock *UnwindEdge,
2215                                                    DomTreeUpdater *DTU) {
2216   BasicBlock *BB = CI->getParent();
2217 
2218   // Convert this function call into an invoke instruction.  First, split the
2219   // basic block.
2220   BasicBlock *Split = SplitBlock(BB, CI, DTU, /*LI=*/nullptr, /*MSSAU*/ nullptr,
2221                                  CI->getName() + ".noexc");
2222 
2223   // Delete the unconditional branch inserted by SplitBlock
2224   BB->getInstList().pop_back();
2225 
2226   // Create the new invoke instruction.
2227   SmallVector<Value *, 8> InvokeArgs(CI->args());
2228   SmallVector<OperandBundleDef, 1> OpBundles;
2229 
2230   CI->getOperandBundlesAsDefs(OpBundles);
2231 
2232   // Note: we're round tripping operand bundles through memory here, and that
2233   // can potentially be avoided with a cleverer API design that we do not have
2234   // as of this time.
2235 
2236   InvokeInst *II =
2237       InvokeInst::Create(CI->getFunctionType(), CI->getCalledOperand(), Split,
2238                          UnwindEdge, InvokeArgs, OpBundles, CI->getName(), BB);
2239   II->setDebugLoc(CI->getDebugLoc());
2240   II->setCallingConv(CI->getCallingConv());
2241   II->setAttributes(CI->getAttributes());
2242 
2243   if (DTU)
2244     DTU->applyUpdates({{DominatorTree::Insert, BB, UnwindEdge}});
2245 
2246   // Make sure that anything using the call now uses the invoke!  This also
2247   // updates the CallGraph if present, because it uses a WeakTrackingVH.
2248   CI->replaceAllUsesWith(II);
2249 
2250   // Delete the original call
2251   Split->getInstList().pop_front();
2252   return Split;
2253 }
2254 
2255 static bool markAliveBlocks(Function &F,
2256                             SmallPtrSetImpl<BasicBlock *> &Reachable,
2257                             DomTreeUpdater *DTU = nullptr) {
2258   SmallVector<BasicBlock*, 128> Worklist;
2259   BasicBlock *BB = &F.front();
2260   Worklist.push_back(BB);
2261   Reachable.insert(BB);
2262   bool Changed = false;
2263   do {
2264     BB = Worklist.pop_back_val();
2265 
2266     // Do a quick scan of the basic block, turning any obviously unreachable
2267     // instructions into LLVM unreachable insts.  The instruction combining pass
2268     // canonicalizes unreachable insts into stores to null or undef.
2269     for (Instruction &I : *BB) {
2270       if (auto *CI = dyn_cast<CallInst>(&I)) {
2271         Value *Callee = CI->getCalledOperand();
2272         // Handle intrinsic calls.
2273         if (Function *F = dyn_cast<Function>(Callee)) {
2274           auto IntrinsicID = F->getIntrinsicID();
2275           // Assumptions that are known to be false are equivalent to
2276           // unreachable. Also, if the condition is undefined, then we make the
2277           // choice most beneficial to the optimizer, and choose that to also be
2278           // unreachable.
2279           if (IntrinsicID == Intrinsic::assume) {
2280             if (match(CI->getArgOperand(0), m_CombineOr(m_Zero(), m_Undef()))) {
2281               // Don't insert a call to llvm.trap right before the unreachable.
2282               changeToUnreachable(CI, false, DTU);
2283               Changed = true;
2284               break;
2285             }
2286           } else if (IntrinsicID == Intrinsic::experimental_guard) {
2287             // A call to the guard intrinsic bails out of the current
2288             // compilation unit if the predicate passed to it is false. If the
2289             // predicate is a constant false, then we know the guard will bail
2290             // out of the current compile unconditionally, so all code following
2291             // it is dead.
2292             //
2293             // Note: unlike in llvm.assume, it is not "obviously profitable" for
2294             // guards to treat `undef` as `false` since a guard on `undef` can
2295             // still be useful for widening.
2296             if (match(CI->getArgOperand(0), m_Zero()))
2297               if (!isa<UnreachableInst>(CI->getNextNode())) {
2298                 changeToUnreachable(CI->getNextNode(), false, DTU);
2299                 Changed = true;
2300                 break;
2301               }
2302           }
2303         } else if ((isa<ConstantPointerNull>(Callee) &&
2304                     !NullPointerIsDefined(CI->getFunction())) ||
2305                    isa<UndefValue>(Callee)) {
2306           changeToUnreachable(CI, false, DTU);
2307           Changed = true;
2308           break;
2309         }
2310         if (CI->doesNotReturn() && !CI->isMustTailCall()) {
2311           // If we found a call to a no-return function, insert an unreachable
2312           // instruction after it.  Make sure there isn't *already* one there
2313           // though.
2314           if (!isa<UnreachableInst>(CI->getNextNode())) {
2315             // Don't insert a call to llvm.trap right before the unreachable.
2316             changeToUnreachable(CI->getNextNode(), false, DTU);
2317             Changed = true;
2318           }
2319           break;
2320         }
2321       } else if (auto *SI = dyn_cast<StoreInst>(&I)) {
2322         // Store to undef and store to null are undefined and used to signal
2323         // that they should be changed to unreachable by passes that can't
2324         // modify the CFG.
2325 
2326         // Don't touch volatile stores.
2327         if (SI->isVolatile()) continue;
2328 
2329         Value *Ptr = SI->getOperand(1);
2330 
2331         if (isa<UndefValue>(Ptr) ||
2332             (isa<ConstantPointerNull>(Ptr) &&
2333              !NullPointerIsDefined(SI->getFunction(),
2334                                    SI->getPointerAddressSpace()))) {
2335           changeToUnreachable(SI, false, DTU);
2336           Changed = true;
2337           break;
2338         }
2339       }
2340     }
2341 
2342     Instruction *Terminator = BB->getTerminator();
2343     if (auto *II = dyn_cast<InvokeInst>(Terminator)) {
2344       // Turn invokes that call 'nounwind' functions into ordinary calls.
2345       Value *Callee = II->getCalledOperand();
2346       if ((isa<ConstantPointerNull>(Callee) &&
2347            !NullPointerIsDefined(BB->getParent())) ||
2348           isa<UndefValue>(Callee)) {
2349         changeToUnreachable(II, false, DTU);
2350         Changed = true;
2351       } else if (II->doesNotThrow() && canSimplifyInvokeNoUnwind(&F)) {
2352         if (II->use_empty() && II->onlyReadsMemory()) {
2353           // jump to the normal destination branch.
2354           BasicBlock *NormalDestBB = II->getNormalDest();
2355           BasicBlock *UnwindDestBB = II->getUnwindDest();
2356           BranchInst::Create(NormalDestBB, II);
2357           UnwindDestBB->removePredecessor(II->getParent());
2358           II->eraseFromParent();
2359           if (DTU)
2360             DTU->applyUpdates({{DominatorTree::Delete, BB, UnwindDestBB}});
2361         } else
2362           changeToCall(II, DTU);
2363         Changed = true;
2364       }
2365     } else if (auto *CatchSwitch = dyn_cast<CatchSwitchInst>(Terminator)) {
2366       // Remove catchpads which cannot be reached.
2367       struct CatchPadDenseMapInfo {
2368         static CatchPadInst *getEmptyKey() {
2369           return DenseMapInfo<CatchPadInst *>::getEmptyKey();
2370         }
2371 
2372         static CatchPadInst *getTombstoneKey() {
2373           return DenseMapInfo<CatchPadInst *>::getTombstoneKey();
2374         }
2375 
2376         static unsigned getHashValue(CatchPadInst *CatchPad) {
2377           return static_cast<unsigned>(hash_combine_range(
2378               CatchPad->value_op_begin(), CatchPad->value_op_end()));
2379         }
2380 
2381         static bool isEqual(CatchPadInst *LHS, CatchPadInst *RHS) {
2382           if (LHS == getEmptyKey() || LHS == getTombstoneKey() ||
2383               RHS == getEmptyKey() || RHS == getTombstoneKey())
2384             return LHS == RHS;
2385           return LHS->isIdenticalTo(RHS);
2386         }
2387       };
2388 
2389       SmallDenseMap<BasicBlock *, int, 8> NumPerSuccessorCases;
2390       // Set of unique CatchPads.
2391       SmallDenseMap<CatchPadInst *, detail::DenseSetEmpty, 4,
2392                     CatchPadDenseMapInfo, detail::DenseSetPair<CatchPadInst *>>
2393           HandlerSet;
2394       detail::DenseSetEmpty Empty;
2395       for (CatchSwitchInst::handler_iterator I = CatchSwitch->handler_begin(),
2396                                              E = CatchSwitch->handler_end();
2397            I != E; ++I) {
2398         BasicBlock *HandlerBB = *I;
2399         if (DTU)
2400           ++NumPerSuccessorCases[HandlerBB];
2401         auto *CatchPad = cast<CatchPadInst>(HandlerBB->getFirstNonPHI());
2402         if (!HandlerSet.insert({CatchPad, Empty}).second) {
2403           if (DTU)
2404             --NumPerSuccessorCases[HandlerBB];
2405           CatchSwitch->removeHandler(I);
2406           --I;
2407           --E;
2408           Changed = true;
2409         }
2410       }
2411       if (DTU) {
2412         std::vector<DominatorTree::UpdateType> Updates;
2413         for (const std::pair<BasicBlock *, int> &I : NumPerSuccessorCases)
2414           if (I.second == 0)
2415             Updates.push_back({DominatorTree::Delete, BB, I.first});
2416         DTU->applyUpdates(Updates);
2417       }
2418     }
2419 
2420     Changed |= ConstantFoldTerminator(BB, true, nullptr, DTU);
2421     for (BasicBlock *Successor : successors(BB))
2422       if (Reachable.insert(Successor).second)
2423         Worklist.push_back(Successor);
2424   } while (!Worklist.empty());
2425   return Changed;
2426 }
2427 
2428 void llvm::removeUnwindEdge(BasicBlock *BB, DomTreeUpdater *DTU) {
2429   Instruction *TI = BB->getTerminator();
2430 
2431   if (auto *II = dyn_cast<InvokeInst>(TI)) {
2432     changeToCall(II, DTU);
2433     return;
2434   }
2435 
2436   Instruction *NewTI;
2437   BasicBlock *UnwindDest;
2438 
2439   if (auto *CRI = dyn_cast<CleanupReturnInst>(TI)) {
2440     NewTI = CleanupReturnInst::Create(CRI->getCleanupPad(), nullptr, CRI);
2441     UnwindDest = CRI->getUnwindDest();
2442   } else if (auto *CatchSwitch = dyn_cast<CatchSwitchInst>(TI)) {
2443     auto *NewCatchSwitch = CatchSwitchInst::Create(
2444         CatchSwitch->getParentPad(), nullptr, CatchSwitch->getNumHandlers(),
2445         CatchSwitch->getName(), CatchSwitch);
2446     for (BasicBlock *PadBB : CatchSwitch->handlers())
2447       NewCatchSwitch->addHandler(PadBB);
2448 
2449     NewTI = NewCatchSwitch;
2450     UnwindDest = CatchSwitch->getUnwindDest();
2451   } else {
2452     llvm_unreachable("Could not find unwind successor");
2453   }
2454 
2455   NewTI->takeName(TI);
2456   NewTI->setDebugLoc(TI->getDebugLoc());
2457   UnwindDest->removePredecessor(BB);
2458   TI->replaceAllUsesWith(NewTI);
2459   TI->eraseFromParent();
2460   if (DTU)
2461     DTU->applyUpdates({{DominatorTree::Delete, BB, UnwindDest}});
2462 }
2463 
2464 /// removeUnreachableBlocks - Remove blocks that are not reachable, even
2465 /// if they are in a dead cycle.  Return true if a change was made, false
2466 /// otherwise.
2467 bool llvm::removeUnreachableBlocks(Function &F, DomTreeUpdater *DTU,
2468                                    MemorySSAUpdater *MSSAU) {
2469   SmallPtrSet<BasicBlock *, 16> Reachable;
2470   bool Changed = markAliveBlocks(F, Reachable, DTU);
2471 
2472   // If there are unreachable blocks in the CFG...
2473   if (Reachable.size() == F.size())
2474     return Changed;
2475 
2476   assert(Reachable.size() < F.size());
2477 
2478   // Are there any blocks left to actually delete?
2479   SmallSetVector<BasicBlock *, 8> BlocksToRemove;
2480   for (BasicBlock &BB : F) {
2481     // Skip reachable basic blocks
2482     if (Reachable.count(&BB))
2483       continue;
2484     // Skip already-deleted blocks
2485     if (DTU && DTU->isBBPendingDeletion(&BB))
2486       continue;
2487     BlocksToRemove.insert(&BB);
2488   }
2489 
2490   if (BlocksToRemove.empty())
2491     return Changed;
2492 
2493   Changed = true;
2494   NumRemoved += BlocksToRemove.size();
2495 
2496   if (MSSAU)
2497     MSSAU->removeBlocks(BlocksToRemove);
2498 
2499   DeleteDeadBlocks(BlocksToRemove.takeVector(), DTU);
2500 
2501   return Changed;
2502 }
2503 
2504 void llvm::combineMetadata(Instruction *K, const Instruction *J,
2505                            ArrayRef<unsigned> KnownIDs, bool DoesKMove) {
2506   SmallVector<std::pair<unsigned, MDNode *>, 4> Metadata;
2507   K->dropUnknownNonDebugMetadata(KnownIDs);
2508   K->getAllMetadataOtherThanDebugLoc(Metadata);
2509   for (const auto &MD : Metadata) {
2510     unsigned Kind = MD.first;
2511     MDNode *JMD = J->getMetadata(Kind);
2512     MDNode *KMD = MD.second;
2513 
2514     switch (Kind) {
2515       default:
2516         K->setMetadata(Kind, nullptr); // Remove unknown metadata
2517         break;
2518       case LLVMContext::MD_dbg:
2519         llvm_unreachable("getAllMetadataOtherThanDebugLoc returned a MD_dbg");
2520       case LLVMContext::MD_tbaa:
2521         K->setMetadata(Kind, MDNode::getMostGenericTBAA(JMD, KMD));
2522         break;
2523       case LLVMContext::MD_alias_scope:
2524         K->setMetadata(Kind, MDNode::getMostGenericAliasScope(JMD, KMD));
2525         break;
2526       case LLVMContext::MD_noalias:
2527       case LLVMContext::MD_mem_parallel_loop_access:
2528         K->setMetadata(Kind, MDNode::intersect(JMD, KMD));
2529         break;
2530       case LLVMContext::MD_access_group:
2531         K->setMetadata(LLVMContext::MD_access_group,
2532                        intersectAccessGroups(K, J));
2533         break;
2534       case LLVMContext::MD_range:
2535 
2536         // If K does move, use most generic range. Otherwise keep the range of
2537         // K.
2538         if (DoesKMove)
2539           // FIXME: If K does move, we should drop the range info and nonnull.
2540           //        Currently this function is used with DoesKMove in passes
2541           //        doing hoisting/sinking and the current behavior of using the
2542           //        most generic range is correct in those cases.
2543           K->setMetadata(Kind, MDNode::getMostGenericRange(JMD, KMD));
2544         break;
2545       case LLVMContext::MD_fpmath:
2546         K->setMetadata(Kind, MDNode::getMostGenericFPMath(JMD, KMD));
2547         break;
2548       case LLVMContext::MD_invariant_load:
2549         // Only set the !invariant.load if it is present in both instructions.
2550         K->setMetadata(Kind, JMD);
2551         break;
2552       case LLVMContext::MD_nonnull:
2553         // If K does move, keep nonull if it is present in both instructions.
2554         if (DoesKMove)
2555           K->setMetadata(Kind, JMD);
2556         break;
2557       case LLVMContext::MD_invariant_group:
2558         // Preserve !invariant.group in K.
2559         break;
2560       case LLVMContext::MD_align:
2561         K->setMetadata(Kind,
2562           MDNode::getMostGenericAlignmentOrDereferenceable(JMD, KMD));
2563         break;
2564       case LLVMContext::MD_dereferenceable:
2565       case LLVMContext::MD_dereferenceable_or_null:
2566         K->setMetadata(Kind,
2567           MDNode::getMostGenericAlignmentOrDereferenceable(JMD, KMD));
2568         break;
2569       case LLVMContext::MD_preserve_access_index:
2570         // Preserve !preserve.access.index in K.
2571         break;
2572     }
2573   }
2574   // Set !invariant.group from J if J has it. If both instructions have it
2575   // then we will just pick it from J - even when they are different.
2576   // Also make sure that K is load or store - f.e. combining bitcast with load
2577   // could produce bitcast with invariant.group metadata, which is invalid.
2578   // FIXME: we should try to preserve both invariant.group md if they are
2579   // different, but right now instruction can only have one invariant.group.
2580   if (auto *JMD = J->getMetadata(LLVMContext::MD_invariant_group))
2581     if (isa<LoadInst>(K) || isa<StoreInst>(K))
2582       K->setMetadata(LLVMContext::MD_invariant_group, JMD);
2583 }
2584 
2585 void llvm::combineMetadataForCSE(Instruction *K, const Instruction *J,
2586                                  bool KDominatesJ) {
2587   unsigned KnownIDs[] = {
2588       LLVMContext::MD_tbaa,            LLVMContext::MD_alias_scope,
2589       LLVMContext::MD_noalias,         LLVMContext::MD_range,
2590       LLVMContext::MD_invariant_load,  LLVMContext::MD_nonnull,
2591       LLVMContext::MD_invariant_group, LLVMContext::MD_align,
2592       LLVMContext::MD_dereferenceable,
2593       LLVMContext::MD_dereferenceable_or_null,
2594       LLVMContext::MD_access_group,    LLVMContext::MD_preserve_access_index};
2595   combineMetadata(K, J, KnownIDs, KDominatesJ);
2596 }
2597 
2598 void llvm::copyMetadataForLoad(LoadInst &Dest, const LoadInst &Source) {
2599   SmallVector<std::pair<unsigned, MDNode *>, 8> MD;
2600   Source.getAllMetadata(MD);
2601   MDBuilder MDB(Dest.getContext());
2602   Type *NewType = Dest.getType();
2603   const DataLayout &DL = Source.getModule()->getDataLayout();
2604   for (const auto &MDPair : MD) {
2605     unsigned ID = MDPair.first;
2606     MDNode *N = MDPair.second;
2607     // Note, essentially every kind of metadata should be preserved here! This
2608     // routine is supposed to clone a load instruction changing *only its type*.
2609     // The only metadata it makes sense to drop is metadata which is invalidated
2610     // when the pointer type changes. This should essentially never be the case
2611     // in LLVM, but we explicitly switch over only known metadata to be
2612     // conservatively correct. If you are adding metadata to LLVM which pertains
2613     // to loads, you almost certainly want to add it here.
2614     switch (ID) {
2615     case LLVMContext::MD_dbg:
2616     case LLVMContext::MD_tbaa:
2617     case LLVMContext::MD_prof:
2618     case LLVMContext::MD_fpmath:
2619     case LLVMContext::MD_tbaa_struct:
2620     case LLVMContext::MD_invariant_load:
2621     case LLVMContext::MD_alias_scope:
2622     case LLVMContext::MD_noalias:
2623     case LLVMContext::MD_nontemporal:
2624     case LLVMContext::MD_mem_parallel_loop_access:
2625     case LLVMContext::MD_access_group:
2626       // All of these directly apply.
2627       Dest.setMetadata(ID, N);
2628       break;
2629 
2630     case LLVMContext::MD_nonnull:
2631       copyNonnullMetadata(Source, N, Dest);
2632       break;
2633 
2634     case LLVMContext::MD_align:
2635     case LLVMContext::MD_dereferenceable:
2636     case LLVMContext::MD_dereferenceable_or_null:
2637       // These only directly apply if the new type is also a pointer.
2638       if (NewType->isPointerTy())
2639         Dest.setMetadata(ID, N);
2640       break;
2641 
2642     case LLVMContext::MD_range:
2643       copyRangeMetadata(DL, Source, N, Dest);
2644       break;
2645     }
2646   }
2647 }
2648 
2649 void llvm::patchReplacementInstruction(Instruction *I, Value *Repl) {
2650   auto *ReplInst = dyn_cast<Instruction>(Repl);
2651   if (!ReplInst)
2652     return;
2653 
2654   // Patch the replacement so that it is not more restrictive than the value
2655   // being replaced.
2656   // Note that if 'I' is a load being replaced by some operation,
2657   // for example, by an arithmetic operation, then andIRFlags()
2658   // would just erase all math flags from the original arithmetic
2659   // operation, which is clearly not wanted and not needed.
2660   if (!isa<LoadInst>(I))
2661     ReplInst->andIRFlags(I);
2662 
2663   // FIXME: If both the original and replacement value are part of the
2664   // same control-flow region (meaning that the execution of one
2665   // guarantees the execution of the other), then we can combine the
2666   // noalias scopes here and do better than the general conservative
2667   // answer used in combineMetadata().
2668 
2669   // In general, GVN unifies expressions over different control-flow
2670   // regions, and so we need a conservative combination of the noalias
2671   // scopes.
2672   static const unsigned KnownIDs[] = {
2673       LLVMContext::MD_tbaa,            LLVMContext::MD_alias_scope,
2674       LLVMContext::MD_noalias,         LLVMContext::MD_range,
2675       LLVMContext::MD_fpmath,          LLVMContext::MD_invariant_load,
2676       LLVMContext::MD_invariant_group, LLVMContext::MD_nonnull,
2677       LLVMContext::MD_access_group,    LLVMContext::MD_preserve_access_index};
2678   combineMetadata(ReplInst, I, KnownIDs, false);
2679 }
2680 
2681 template <typename RootType, typename DominatesFn>
2682 static unsigned replaceDominatedUsesWith(Value *From, Value *To,
2683                                          const RootType &Root,
2684                                          const DominatesFn &Dominates) {
2685   assert(From->getType() == To->getType());
2686 
2687   unsigned Count = 0;
2688   for (Use &U : llvm::make_early_inc_range(From->uses())) {
2689     if (!Dominates(Root, U))
2690       continue;
2691     U.set(To);
2692     LLVM_DEBUG(dbgs() << "Replace dominated use of '" << From->getName()
2693                       << "' as " << *To << " in " << *U << "\n");
2694     ++Count;
2695   }
2696   return Count;
2697 }
2698 
2699 unsigned llvm::replaceNonLocalUsesWith(Instruction *From, Value *To) {
2700    assert(From->getType() == To->getType());
2701    auto *BB = From->getParent();
2702    unsigned Count = 0;
2703 
2704    for (Use &U : llvm::make_early_inc_range(From->uses())) {
2705     auto *I = cast<Instruction>(U.getUser());
2706     if (I->getParent() == BB)
2707       continue;
2708     U.set(To);
2709     ++Count;
2710   }
2711   return Count;
2712 }
2713 
2714 unsigned llvm::replaceDominatedUsesWith(Value *From, Value *To,
2715                                         DominatorTree &DT,
2716                                         const BasicBlockEdge &Root) {
2717   auto Dominates = [&DT](const BasicBlockEdge &Root, const Use &U) {
2718     return DT.dominates(Root, U);
2719   };
2720   return ::replaceDominatedUsesWith(From, To, Root, Dominates);
2721 }
2722 
2723 unsigned llvm::replaceDominatedUsesWith(Value *From, Value *To,
2724                                         DominatorTree &DT,
2725                                         const BasicBlock *BB) {
2726   auto Dominates = [&DT](const BasicBlock *BB, const Use &U) {
2727     return DT.dominates(BB, U);
2728   };
2729   return ::replaceDominatedUsesWith(From, To, BB, Dominates);
2730 }
2731 
2732 bool llvm::callsGCLeafFunction(const CallBase *Call,
2733                                const TargetLibraryInfo &TLI) {
2734   // Check if the function is specifically marked as a gc leaf function.
2735   if (Call->hasFnAttr("gc-leaf-function"))
2736     return true;
2737   if (const Function *F = Call->getCalledFunction()) {
2738     if (F->hasFnAttribute("gc-leaf-function"))
2739       return true;
2740 
2741     if (auto IID = F->getIntrinsicID()) {
2742       // Most LLVM intrinsics do not take safepoints.
2743       return IID != Intrinsic::experimental_gc_statepoint &&
2744              IID != Intrinsic::experimental_deoptimize &&
2745              IID != Intrinsic::memcpy_element_unordered_atomic &&
2746              IID != Intrinsic::memmove_element_unordered_atomic;
2747     }
2748   }
2749 
2750   // Lib calls can be materialized by some passes, and won't be
2751   // marked as 'gc-leaf-function.' All available Libcalls are
2752   // GC-leaf.
2753   LibFunc LF;
2754   if (TLI.getLibFunc(*Call, LF)) {
2755     return TLI.has(LF);
2756   }
2757 
2758   return false;
2759 }
2760 
2761 void llvm::copyNonnullMetadata(const LoadInst &OldLI, MDNode *N,
2762                                LoadInst &NewLI) {
2763   auto *NewTy = NewLI.getType();
2764 
2765   // This only directly applies if the new type is also a pointer.
2766   if (NewTy->isPointerTy()) {
2767     NewLI.setMetadata(LLVMContext::MD_nonnull, N);
2768     return;
2769   }
2770 
2771   // The only other translation we can do is to integral loads with !range
2772   // metadata.
2773   if (!NewTy->isIntegerTy())
2774     return;
2775 
2776   MDBuilder MDB(NewLI.getContext());
2777   const Value *Ptr = OldLI.getPointerOperand();
2778   auto *ITy = cast<IntegerType>(NewTy);
2779   auto *NullInt = ConstantExpr::getPtrToInt(
2780       ConstantPointerNull::get(cast<PointerType>(Ptr->getType())), ITy);
2781   auto *NonNullInt = ConstantExpr::getAdd(NullInt, ConstantInt::get(ITy, 1));
2782   NewLI.setMetadata(LLVMContext::MD_range,
2783                     MDB.createRange(NonNullInt, NullInt));
2784 }
2785 
2786 void llvm::copyRangeMetadata(const DataLayout &DL, const LoadInst &OldLI,
2787                              MDNode *N, LoadInst &NewLI) {
2788   auto *NewTy = NewLI.getType();
2789 
2790   // Give up unless it is converted to a pointer where there is a single very
2791   // valuable mapping we can do reliably.
2792   // FIXME: It would be nice to propagate this in more ways, but the type
2793   // conversions make it hard.
2794   if (!NewTy->isPointerTy())
2795     return;
2796 
2797   unsigned BitWidth = DL.getPointerTypeSizeInBits(NewTy);
2798   if (!getConstantRangeFromMetadata(*N).contains(APInt(BitWidth, 0))) {
2799     MDNode *NN = MDNode::get(OldLI.getContext(), None);
2800     NewLI.setMetadata(LLVMContext::MD_nonnull, NN);
2801   }
2802 }
2803 
2804 void llvm::dropDebugUsers(Instruction &I) {
2805   SmallVector<DbgVariableIntrinsic *, 1> DbgUsers;
2806   findDbgUsers(DbgUsers, &I);
2807   for (auto *DII : DbgUsers)
2808     DII->eraseFromParent();
2809 }
2810 
2811 void llvm::hoistAllInstructionsInto(BasicBlock *DomBlock, Instruction *InsertPt,
2812                                     BasicBlock *BB) {
2813   // Since we are moving the instructions out of its basic block, we do not
2814   // retain their original debug locations (DILocations) and debug intrinsic
2815   // instructions.
2816   //
2817   // Doing so would degrade the debugging experience and adversely affect the
2818   // accuracy of profiling information.
2819   //
2820   // Currently, when hoisting the instructions, we take the following actions:
2821   // - Remove their debug intrinsic instructions.
2822   // - Set their debug locations to the values from the insertion point.
2823   //
2824   // As per PR39141 (comment #8), the more fundamental reason why the dbg.values
2825   // need to be deleted, is because there will not be any instructions with a
2826   // DILocation in either branch left after performing the transformation. We
2827   // can only insert a dbg.value after the two branches are joined again.
2828   //
2829   // See PR38762, PR39243 for more details.
2830   //
2831   // TODO: Extend llvm.dbg.value to take more than one SSA Value (PR39141) to
2832   // encode predicated DIExpressions that yield different results on different
2833   // code paths.
2834 
2835   for (BasicBlock::iterator II = BB->begin(), IE = BB->end(); II != IE;) {
2836     Instruction *I = &*II;
2837     I->dropUndefImplyingAttrsAndUnknownMetadata();
2838     if (I->isUsedByMetadata())
2839       dropDebugUsers(*I);
2840     if (I->isDebugOrPseudoInst()) {
2841       // Remove DbgInfo and pseudo probe Intrinsics.
2842       II = I->eraseFromParent();
2843       continue;
2844     }
2845     I->setDebugLoc(InsertPt->getDebugLoc());
2846     ++II;
2847   }
2848   DomBlock->getInstList().splice(InsertPt->getIterator(), BB->getInstList(),
2849                                  BB->begin(),
2850                                  BB->getTerminator()->getIterator());
2851 }
2852 
2853 namespace {
2854 
2855 /// A potential constituent of a bitreverse or bswap expression. See
2856 /// collectBitParts for a fuller explanation.
2857 struct BitPart {
2858   BitPart(Value *P, unsigned BW) : Provider(P) {
2859     Provenance.resize(BW);
2860   }
2861 
2862   /// The Value that this is a bitreverse/bswap of.
2863   Value *Provider;
2864 
2865   /// The "provenance" of each bit. Provenance[A] = B means that bit A
2866   /// in Provider becomes bit B in the result of this expression.
2867   SmallVector<int8_t, 32> Provenance; // int8_t means max size is i128.
2868 
2869   enum { Unset = -1 };
2870 };
2871 
2872 } // end anonymous namespace
2873 
2874 /// Analyze the specified subexpression and see if it is capable of providing
2875 /// pieces of a bswap or bitreverse. The subexpression provides a potential
2876 /// piece of a bswap or bitreverse if it can be proved that each non-zero bit in
2877 /// the output of the expression came from a corresponding bit in some other
2878 /// value. This function is recursive, and the end result is a mapping of
2879 /// bitnumber to bitnumber. It is the caller's responsibility to validate that
2880 /// the bitnumber to bitnumber mapping is correct for a bswap or bitreverse.
2881 ///
2882 /// For example, if the current subexpression if "(shl i32 %X, 24)" then we know
2883 /// that the expression deposits the low byte of %X into the high byte of the
2884 /// result and that all other bits are zero. This expression is accepted and a
2885 /// BitPart is returned with Provider set to %X and Provenance[24-31] set to
2886 /// [0-7].
2887 ///
2888 /// For vector types, all analysis is performed at the per-element level. No
2889 /// cross-element analysis is supported (shuffle/insertion/reduction), and all
2890 /// constant masks must be splatted across all elements.
2891 ///
2892 /// To avoid revisiting values, the BitPart results are memoized into the
2893 /// provided map. To avoid unnecessary copying of BitParts, BitParts are
2894 /// constructed in-place in the \c BPS map. Because of this \c BPS needs to
2895 /// store BitParts objects, not pointers. As we need the concept of a nullptr
2896 /// BitParts (Value has been analyzed and the analysis failed), we an Optional
2897 /// type instead to provide the same functionality.
2898 ///
2899 /// Because we pass around references into \c BPS, we must use a container that
2900 /// does not invalidate internal references (std::map instead of DenseMap).
2901 static const Optional<BitPart> &
2902 collectBitParts(Value *V, bool MatchBSwaps, bool MatchBitReversals,
2903                 std::map<Value *, Optional<BitPart>> &BPS, int Depth,
2904                 bool &FoundRoot) {
2905   auto I = BPS.find(V);
2906   if (I != BPS.end())
2907     return I->second;
2908 
2909   auto &Result = BPS[V] = None;
2910   auto BitWidth = V->getType()->getScalarSizeInBits();
2911 
2912   // Can't do integer/elements > 128 bits.
2913   if (BitWidth > 128)
2914     return Result;
2915 
2916   // Prevent stack overflow by limiting the recursion depth
2917   if (Depth == BitPartRecursionMaxDepth) {
2918     LLVM_DEBUG(dbgs() << "collectBitParts max recursion depth reached.\n");
2919     return Result;
2920   }
2921 
2922   if (auto *I = dyn_cast<Instruction>(V)) {
2923     Value *X, *Y;
2924     const APInt *C;
2925 
2926     // If this is an or instruction, it may be an inner node of the bswap.
2927     if (match(V, m_Or(m_Value(X), m_Value(Y)))) {
2928       // Check we have both sources and they are from the same provider.
2929       const auto &A = collectBitParts(X, MatchBSwaps, MatchBitReversals, BPS,
2930                                       Depth + 1, FoundRoot);
2931       if (!A || !A->Provider)
2932         return Result;
2933 
2934       const auto &B = collectBitParts(Y, MatchBSwaps, MatchBitReversals, BPS,
2935                                       Depth + 1, FoundRoot);
2936       if (!B || A->Provider != B->Provider)
2937         return Result;
2938 
2939       // Try and merge the two together.
2940       Result = BitPart(A->Provider, BitWidth);
2941       for (unsigned BitIdx = 0; BitIdx < BitWidth; ++BitIdx) {
2942         if (A->Provenance[BitIdx] != BitPart::Unset &&
2943             B->Provenance[BitIdx] != BitPart::Unset &&
2944             A->Provenance[BitIdx] != B->Provenance[BitIdx])
2945           return Result = None;
2946 
2947         if (A->Provenance[BitIdx] == BitPart::Unset)
2948           Result->Provenance[BitIdx] = B->Provenance[BitIdx];
2949         else
2950           Result->Provenance[BitIdx] = A->Provenance[BitIdx];
2951       }
2952 
2953       return Result;
2954     }
2955 
2956     // If this is a logical shift by a constant, recurse then shift the result.
2957     if (match(V, m_LogicalShift(m_Value(X), m_APInt(C)))) {
2958       const APInt &BitShift = *C;
2959 
2960       // Ensure the shift amount is defined.
2961       if (BitShift.uge(BitWidth))
2962         return Result;
2963 
2964       // For bswap-only, limit shift amounts to whole bytes, for an early exit.
2965       if (!MatchBitReversals && (BitShift.getZExtValue() % 8) != 0)
2966         return Result;
2967 
2968       const auto &Res = collectBitParts(X, MatchBSwaps, MatchBitReversals, BPS,
2969                                         Depth + 1, FoundRoot);
2970       if (!Res)
2971         return Result;
2972       Result = Res;
2973 
2974       // Perform the "shift" on BitProvenance.
2975       auto &P = Result->Provenance;
2976       if (I->getOpcode() == Instruction::Shl) {
2977         P.erase(std::prev(P.end(), BitShift.getZExtValue()), P.end());
2978         P.insert(P.begin(), BitShift.getZExtValue(), BitPart::Unset);
2979       } else {
2980         P.erase(P.begin(), std::next(P.begin(), BitShift.getZExtValue()));
2981         P.insert(P.end(), BitShift.getZExtValue(), BitPart::Unset);
2982       }
2983 
2984       return Result;
2985     }
2986 
2987     // If this is a logical 'and' with a mask that clears bits, recurse then
2988     // unset the appropriate bits.
2989     if (match(V, m_And(m_Value(X), m_APInt(C)))) {
2990       const APInt &AndMask = *C;
2991 
2992       // Check that the mask allows a multiple of 8 bits for a bswap, for an
2993       // early exit.
2994       unsigned NumMaskedBits = AndMask.countPopulation();
2995       if (!MatchBitReversals && (NumMaskedBits % 8) != 0)
2996         return Result;
2997 
2998       const auto &Res = collectBitParts(X, MatchBSwaps, MatchBitReversals, BPS,
2999                                         Depth + 1, FoundRoot);
3000       if (!Res)
3001         return Result;
3002       Result = Res;
3003 
3004       for (unsigned BitIdx = 0; BitIdx < BitWidth; ++BitIdx)
3005         // If the AndMask is zero for this bit, clear the bit.
3006         if (AndMask[BitIdx] == 0)
3007           Result->Provenance[BitIdx] = BitPart::Unset;
3008       return Result;
3009     }
3010 
3011     // If this is a zext instruction zero extend the result.
3012     if (match(V, m_ZExt(m_Value(X)))) {
3013       const auto &Res = collectBitParts(X, MatchBSwaps, MatchBitReversals, BPS,
3014                                         Depth + 1, FoundRoot);
3015       if (!Res)
3016         return Result;
3017 
3018       Result = BitPart(Res->Provider, BitWidth);
3019       auto NarrowBitWidth = X->getType()->getScalarSizeInBits();
3020       for (unsigned BitIdx = 0; BitIdx < NarrowBitWidth; ++BitIdx)
3021         Result->Provenance[BitIdx] = Res->Provenance[BitIdx];
3022       for (unsigned BitIdx = NarrowBitWidth; BitIdx < BitWidth; ++BitIdx)
3023         Result->Provenance[BitIdx] = BitPart::Unset;
3024       return Result;
3025     }
3026 
3027     // If this is a truncate instruction, extract the lower bits.
3028     if (match(V, m_Trunc(m_Value(X)))) {
3029       const auto &Res = collectBitParts(X, MatchBSwaps, MatchBitReversals, BPS,
3030                                         Depth + 1, FoundRoot);
3031       if (!Res)
3032         return Result;
3033 
3034       Result = BitPart(Res->Provider, BitWidth);
3035       for (unsigned BitIdx = 0; BitIdx < BitWidth; ++BitIdx)
3036         Result->Provenance[BitIdx] = Res->Provenance[BitIdx];
3037       return Result;
3038     }
3039 
3040     // BITREVERSE - most likely due to us previous matching a partial
3041     // bitreverse.
3042     if (match(V, m_BitReverse(m_Value(X)))) {
3043       const auto &Res = collectBitParts(X, MatchBSwaps, MatchBitReversals, BPS,
3044                                         Depth + 1, FoundRoot);
3045       if (!Res)
3046         return Result;
3047 
3048       Result = BitPart(Res->Provider, BitWidth);
3049       for (unsigned BitIdx = 0; BitIdx < BitWidth; ++BitIdx)
3050         Result->Provenance[(BitWidth - 1) - BitIdx] = Res->Provenance[BitIdx];
3051       return Result;
3052     }
3053 
3054     // BSWAP - most likely due to us previous matching a partial bswap.
3055     if (match(V, m_BSwap(m_Value(X)))) {
3056       const auto &Res = collectBitParts(X, MatchBSwaps, MatchBitReversals, BPS,
3057                                         Depth + 1, FoundRoot);
3058       if (!Res)
3059         return Result;
3060 
3061       unsigned ByteWidth = BitWidth / 8;
3062       Result = BitPart(Res->Provider, BitWidth);
3063       for (unsigned ByteIdx = 0; ByteIdx < ByteWidth; ++ByteIdx) {
3064         unsigned ByteBitOfs = ByteIdx * 8;
3065         for (unsigned BitIdx = 0; BitIdx < 8; ++BitIdx)
3066           Result->Provenance[(BitWidth - 8 - ByteBitOfs) + BitIdx] =
3067               Res->Provenance[ByteBitOfs + BitIdx];
3068       }
3069       return Result;
3070     }
3071 
3072     // Funnel 'double' shifts take 3 operands, 2 inputs and the shift
3073     // amount (modulo).
3074     // fshl(X,Y,Z): (X << (Z % BW)) | (Y >> (BW - (Z % BW)))
3075     // fshr(X,Y,Z): (X << (BW - (Z % BW))) | (Y >> (Z % BW))
3076     if (match(V, m_FShl(m_Value(X), m_Value(Y), m_APInt(C))) ||
3077         match(V, m_FShr(m_Value(X), m_Value(Y), m_APInt(C)))) {
3078       // We can treat fshr as a fshl by flipping the modulo amount.
3079       unsigned ModAmt = C->urem(BitWidth);
3080       if (cast<IntrinsicInst>(I)->getIntrinsicID() == Intrinsic::fshr)
3081         ModAmt = BitWidth - ModAmt;
3082 
3083       // For bswap-only, limit shift amounts to whole bytes, for an early exit.
3084       if (!MatchBitReversals && (ModAmt % 8) != 0)
3085         return Result;
3086 
3087       // Check we have both sources and they are from the same provider.
3088       const auto &LHS = collectBitParts(X, MatchBSwaps, MatchBitReversals, BPS,
3089                                         Depth + 1, FoundRoot);
3090       if (!LHS || !LHS->Provider)
3091         return Result;
3092 
3093       const auto &RHS = collectBitParts(Y, MatchBSwaps, MatchBitReversals, BPS,
3094                                         Depth + 1, FoundRoot);
3095       if (!RHS || LHS->Provider != RHS->Provider)
3096         return Result;
3097 
3098       unsigned StartBitRHS = BitWidth - ModAmt;
3099       Result = BitPart(LHS->Provider, BitWidth);
3100       for (unsigned BitIdx = 0; BitIdx < StartBitRHS; ++BitIdx)
3101         Result->Provenance[BitIdx + ModAmt] = LHS->Provenance[BitIdx];
3102       for (unsigned BitIdx = 0; BitIdx < ModAmt; ++BitIdx)
3103         Result->Provenance[BitIdx] = RHS->Provenance[BitIdx + StartBitRHS];
3104       return Result;
3105     }
3106   }
3107 
3108   // If we've already found a root input value then we're never going to merge
3109   // these back together.
3110   if (FoundRoot)
3111     return Result;
3112 
3113   // Okay, we got to something that isn't a shift, 'or', 'and', etc. This must
3114   // be the root input value to the bswap/bitreverse.
3115   FoundRoot = true;
3116   Result = BitPart(V, BitWidth);
3117   for (unsigned BitIdx = 0; BitIdx < BitWidth; ++BitIdx)
3118     Result->Provenance[BitIdx] = BitIdx;
3119   return Result;
3120 }
3121 
3122 static bool bitTransformIsCorrectForBSwap(unsigned From, unsigned To,
3123                                           unsigned BitWidth) {
3124   if (From % 8 != To % 8)
3125     return false;
3126   // Convert from bit indices to byte indices and check for a byte reversal.
3127   From >>= 3;
3128   To >>= 3;
3129   BitWidth >>= 3;
3130   return From == BitWidth - To - 1;
3131 }
3132 
3133 static bool bitTransformIsCorrectForBitReverse(unsigned From, unsigned To,
3134                                                unsigned BitWidth) {
3135   return From == BitWidth - To - 1;
3136 }
3137 
3138 bool llvm::recognizeBSwapOrBitReverseIdiom(
3139     Instruction *I, bool MatchBSwaps, bool MatchBitReversals,
3140     SmallVectorImpl<Instruction *> &InsertedInsts) {
3141   if (!match(I, m_Or(m_Value(), m_Value())) &&
3142       !match(I, m_FShl(m_Value(), m_Value(), m_Value())) &&
3143       !match(I, m_FShr(m_Value(), m_Value(), m_Value())))
3144     return false;
3145   if (!MatchBSwaps && !MatchBitReversals)
3146     return false;
3147   Type *ITy = I->getType();
3148   if (!ITy->isIntOrIntVectorTy() || ITy->getScalarSizeInBits() > 128)
3149     return false;  // Can't do integer/elements > 128 bits.
3150 
3151   Type *DemandedTy = ITy;
3152   if (I->hasOneUse())
3153     if (auto *Trunc = dyn_cast<TruncInst>(I->user_back()))
3154       DemandedTy = Trunc->getType();
3155 
3156   // Try to find all the pieces corresponding to the bswap.
3157   bool FoundRoot = false;
3158   std::map<Value *, Optional<BitPart>> BPS;
3159   const auto &Res =
3160       collectBitParts(I, MatchBSwaps, MatchBitReversals, BPS, 0, FoundRoot);
3161   if (!Res)
3162     return false;
3163   ArrayRef<int8_t> BitProvenance = Res->Provenance;
3164   assert(all_of(BitProvenance,
3165                 [](int8_t I) { return I == BitPart::Unset || 0 <= I; }) &&
3166          "Illegal bit provenance index");
3167 
3168   // If the upper bits are zero, then attempt to perform as a truncated op.
3169   if (BitProvenance.back() == BitPart::Unset) {
3170     while (!BitProvenance.empty() && BitProvenance.back() == BitPart::Unset)
3171       BitProvenance = BitProvenance.drop_back();
3172     if (BitProvenance.empty())
3173       return false; // TODO - handle null value?
3174     DemandedTy = Type::getIntNTy(I->getContext(), BitProvenance.size());
3175     if (auto *IVecTy = dyn_cast<VectorType>(ITy))
3176       DemandedTy = VectorType::get(DemandedTy, IVecTy);
3177   }
3178 
3179   // Check BitProvenance hasn't found a source larger than the result type.
3180   unsigned DemandedBW = DemandedTy->getScalarSizeInBits();
3181   if (DemandedBW > ITy->getScalarSizeInBits())
3182     return false;
3183 
3184   // Now, is the bit permutation correct for a bswap or a bitreverse? We can
3185   // only byteswap values with an even number of bytes.
3186   APInt DemandedMask = APInt::getAllOnes(DemandedBW);
3187   bool OKForBSwap = MatchBSwaps && (DemandedBW % 16) == 0;
3188   bool OKForBitReverse = MatchBitReversals;
3189   for (unsigned BitIdx = 0;
3190        (BitIdx < DemandedBW) && (OKForBSwap || OKForBitReverse); ++BitIdx) {
3191     if (BitProvenance[BitIdx] == BitPart::Unset) {
3192       DemandedMask.clearBit(BitIdx);
3193       continue;
3194     }
3195     OKForBSwap &= bitTransformIsCorrectForBSwap(BitProvenance[BitIdx], BitIdx,
3196                                                 DemandedBW);
3197     OKForBitReverse &= bitTransformIsCorrectForBitReverse(BitProvenance[BitIdx],
3198                                                           BitIdx, DemandedBW);
3199   }
3200 
3201   Intrinsic::ID Intrin;
3202   if (OKForBSwap)
3203     Intrin = Intrinsic::bswap;
3204   else if (OKForBitReverse)
3205     Intrin = Intrinsic::bitreverse;
3206   else
3207     return false;
3208 
3209   Function *F = Intrinsic::getDeclaration(I->getModule(), Intrin, DemandedTy);
3210   Value *Provider = Res->Provider;
3211 
3212   // We may need to truncate the provider.
3213   if (DemandedTy != Provider->getType()) {
3214     auto *Trunc =
3215         CastInst::CreateIntegerCast(Provider, DemandedTy, false, "trunc", I);
3216     InsertedInsts.push_back(Trunc);
3217     Provider = Trunc;
3218   }
3219 
3220   Instruction *Result = CallInst::Create(F, Provider, "rev", I);
3221   InsertedInsts.push_back(Result);
3222 
3223   if (!DemandedMask.isAllOnes()) {
3224     auto *Mask = ConstantInt::get(DemandedTy, DemandedMask);
3225     Result = BinaryOperator::Create(Instruction::And, Result, Mask, "mask", I);
3226     InsertedInsts.push_back(Result);
3227   }
3228 
3229   // We may need to zeroextend back to the result type.
3230   if (ITy != Result->getType()) {
3231     auto *ExtInst = CastInst::CreateIntegerCast(Result, ITy, false, "zext", I);
3232     InsertedInsts.push_back(ExtInst);
3233   }
3234 
3235   return true;
3236 }
3237 
3238 // CodeGen has special handling for some string functions that may replace
3239 // them with target-specific intrinsics.  Since that'd skip our interceptors
3240 // in ASan/MSan/TSan/DFSan, and thus make us miss some memory accesses,
3241 // we mark affected calls as NoBuiltin, which will disable optimization
3242 // in CodeGen.
3243 void llvm::maybeMarkSanitizerLibraryCallNoBuiltin(
3244     CallInst *CI, const TargetLibraryInfo *TLI) {
3245   Function *F = CI->getCalledFunction();
3246   LibFunc Func;
3247   if (F && !F->hasLocalLinkage() && F->hasName() &&
3248       TLI->getLibFunc(F->getName(), Func) && TLI->hasOptimizedCodeGen(Func) &&
3249       !F->doesNotAccessMemory())
3250     CI->addFnAttr(Attribute::NoBuiltin);
3251 }
3252 
3253 bool llvm::canReplaceOperandWithVariable(const Instruction *I, unsigned OpIdx) {
3254   // We can't have a PHI with a metadata type.
3255   if (I->getOperand(OpIdx)->getType()->isMetadataTy())
3256     return false;
3257 
3258   // Early exit.
3259   if (!isa<Constant>(I->getOperand(OpIdx)))
3260     return true;
3261 
3262   switch (I->getOpcode()) {
3263   default:
3264     return true;
3265   case Instruction::Call:
3266   case Instruction::Invoke: {
3267     const auto &CB = cast<CallBase>(*I);
3268 
3269     // Can't handle inline asm. Skip it.
3270     if (CB.isInlineAsm())
3271       return false;
3272 
3273     // Constant bundle operands may need to retain their constant-ness for
3274     // correctness.
3275     if (CB.isBundleOperand(OpIdx))
3276       return false;
3277 
3278     if (OpIdx < CB.arg_size()) {
3279       // Some variadic intrinsics require constants in the variadic arguments,
3280       // which currently aren't markable as immarg.
3281       if (isa<IntrinsicInst>(CB) &&
3282           OpIdx >= CB.getFunctionType()->getNumParams()) {
3283         // This is known to be OK for stackmap.
3284         return CB.getIntrinsicID() == Intrinsic::experimental_stackmap;
3285       }
3286 
3287       // gcroot is a special case, since it requires a constant argument which
3288       // isn't also required to be a simple ConstantInt.
3289       if (CB.getIntrinsicID() == Intrinsic::gcroot)
3290         return false;
3291 
3292       // Some intrinsic operands are required to be immediates.
3293       return !CB.paramHasAttr(OpIdx, Attribute::ImmArg);
3294     }
3295 
3296     // It is never allowed to replace the call argument to an intrinsic, but it
3297     // may be possible for a call.
3298     return !isa<IntrinsicInst>(CB);
3299   }
3300   case Instruction::ShuffleVector:
3301     // Shufflevector masks are constant.
3302     return OpIdx != 2;
3303   case Instruction::Switch:
3304   case Instruction::ExtractValue:
3305     // All operands apart from the first are constant.
3306     return OpIdx == 0;
3307   case Instruction::InsertValue:
3308     // All operands apart from the first and the second are constant.
3309     return OpIdx < 2;
3310   case Instruction::Alloca:
3311     // Static allocas (constant size in the entry block) are handled by
3312     // prologue/epilogue insertion so they're free anyway. We definitely don't
3313     // want to make them non-constant.
3314     return !cast<AllocaInst>(I)->isStaticAlloca();
3315   case Instruction::GetElementPtr:
3316     if (OpIdx == 0)
3317       return true;
3318     gep_type_iterator It = gep_type_begin(I);
3319     for (auto E = std::next(It, OpIdx); It != E; ++It)
3320       if (It.isStruct())
3321         return false;
3322     return true;
3323   }
3324 }
3325 
3326 Value *llvm::invertCondition(Value *Condition) {
3327   // First: Check if it's a constant
3328   if (Constant *C = dyn_cast<Constant>(Condition))
3329     return ConstantExpr::getNot(C);
3330 
3331   // Second: If the condition is already inverted, return the original value
3332   Value *NotCondition;
3333   if (match(Condition, m_Not(m_Value(NotCondition))))
3334     return NotCondition;
3335 
3336   BasicBlock *Parent = nullptr;
3337   Instruction *Inst = dyn_cast<Instruction>(Condition);
3338   if (Inst)
3339     Parent = Inst->getParent();
3340   else if (Argument *Arg = dyn_cast<Argument>(Condition))
3341     Parent = &Arg->getParent()->getEntryBlock();
3342   assert(Parent && "Unsupported condition to invert");
3343 
3344   // Third: Check all the users for an invert
3345   for (User *U : Condition->users())
3346     if (Instruction *I = dyn_cast<Instruction>(U))
3347       if (I->getParent() == Parent && match(I, m_Not(m_Specific(Condition))))
3348         return I;
3349 
3350   // Last option: Create a new instruction
3351   auto *Inverted =
3352       BinaryOperator::CreateNot(Condition, Condition->getName() + ".inv");
3353   if (Inst && !isa<PHINode>(Inst))
3354     Inverted->insertAfter(Inst);
3355   else
3356     Inverted->insertBefore(&*Parent->getFirstInsertionPt());
3357   return Inverted;
3358 }
3359 
3360 bool llvm::inferAttributesFromOthers(Function &F) {
3361   // Note: We explicitly check for attributes rather than using cover functions
3362   // because some of the cover functions include the logic being implemented.
3363 
3364   bool Changed = false;
3365   // readnone + not convergent implies nosync
3366   if (!F.hasFnAttribute(Attribute::NoSync) &&
3367       F.doesNotAccessMemory() && !F.isConvergent()) {
3368     F.setNoSync();
3369     Changed = true;
3370   }
3371 
3372   // readonly implies nofree
3373   if (!F.hasFnAttribute(Attribute::NoFree) && F.onlyReadsMemory()) {
3374     F.setDoesNotFreeMemory();
3375     Changed = true;
3376   }
3377 
3378   // willreturn implies mustprogress
3379   if (!F.hasFnAttribute(Attribute::MustProgress) && F.willReturn()) {
3380     F.setMustProgress();
3381     Changed = true;
3382   }
3383 
3384   // TODO: There are a bunch of cases of restrictive memory effects we
3385   // can infer by inspecting arguments of argmemonly-ish functions.
3386 
3387   return Changed;
3388 }
3389