xref: /llvm-project/llvm/lib/Analysis/AliasSetTracker.cpp (revision 910c6bef3e69fe1754947fb7860f5f34fd4acf09)
1 //===- AliasSetTracker.cpp - Alias Sets Tracker implementation-------------===//
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 file implements the AliasSetTracker and AliasSet classes.
10 //
11 //===----------------------------------------------------------------------===//
12 
13 #include "llvm/Analysis/AliasSetTracker.h"
14 #include "llvm/Analysis/AliasAnalysis.h"
15 #include "llvm/Analysis/GuardUtils.h"
16 #include "llvm/Analysis/MemoryLocation.h"
17 #include "llvm/Config/llvm-config.h"
18 #include "llvm/IR/Constants.h"
19 #include "llvm/IR/DataLayout.h"
20 #include "llvm/IR/Function.h"
21 #include "llvm/IR/InstIterator.h"
22 #include "llvm/IR/Instruction.h"
23 #include "llvm/IR/Instructions.h"
24 #include "llvm/IR/IntrinsicInst.h"
25 #include "llvm/IR/Module.h"
26 #include "llvm/IR/PatternMatch.h"
27 #include "llvm/IR/Value.h"
28 #include "llvm/Pass.h"
29 #include "llvm/Support/AtomicOrdering.h"
30 #include "llvm/Support/Casting.h"
31 #include "llvm/Support/CommandLine.h"
32 #include "llvm/Support/Compiler.h"
33 #include "llvm/Support/Debug.h"
34 #include "llvm/Support/ErrorHandling.h"
35 #include "llvm/Support/raw_ostream.h"
36 #include <cassert>
37 #include <cstdint>
38 #include <vector>
39 
40 using namespace llvm;
41 
42 static cl::opt<unsigned>
43     SaturationThreshold("alias-set-saturation-threshold", cl::Hidden,
44                         cl::init(250),
45                         cl::desc("The maximum number of pointers may-alias "
46                                  "sets may contain before degradation"));
47 
48 /// mergeSetIn - Merge the specified alias set into this alias set.
49 ///
50 void AliasSet::mergeSetIn(AliasSet &AS, AliasSetTracker &AST) {
51   assert(!AS.Forward && "Alias set is already forwarding!");
52   assert(!Forward && "This set is a forwarding set!!");
53 
54   bool WasMustAlias = (Alias == SetMustAlias);
55   // Update the alias and access types of this set...
56   Access |= AS.Access;
57   Alias  |= AS.Alias;
58 
59   if (Alias == SetMustAlias) {
60     // Check that these two merged sets really are must aliases.  Since both
61     // used to be must-alias sets, we can just check any pointer from each set
62     // for aliasing.
63     AliasAnalysis &AA = AST.getAliasAnalysis();
64     PointerRec *L = getSomePointer();
65     PointerRec *R = AS.getSomePointer();
66 
67     // If the pointers are not a must-alias pair, this set becomes a may alias.
68     if (AA.alias(MemoryLocation(L->getValue(), L->getSize(), L->getAAInfo()),
69                  MemoryLocation(R->getValue(), R->getSize(), R->getAAInfo())) !=
70         MustAlias)
71       Alias = SetMayAlias;
72   }
73 
74   if (Alias == SetMayAlias) {
75     if (WasMustAlias)
76       AST.TotalMayAliasSetSize += size();
77     if (AS.Alias == SetMustAlias)
78       AST.TotalMayAliasSetSize += AS.size();
79   }
80 
81   bool ASHadUnknownInsts = !AS.UnknownInsts.empty();
82   if (UnknownInsts.empty()) {            // Merge call sites...
83     if (ASHadUnknownInsts) {
84       std::swap(UnknownInsts, AS.UnknownInsts);
85       addRef();
86     }
87   } else if (ASHadUnknownInsts) {
88     UnknownInsts.insert(UnknownInsts.end(), AS.UnknownInsts.begin(), AS.UnknownInsts.end());
89     AS.UnknownInsts.clear();
90   }
91 
92   AS.Forward = this; // Forward across AS now...
93   addRef();          // AS is now pointing to us...
94 
95   // Merge the list of constituent pointers...
96   if (AS.PtrList) {
97     SetSize += AS.size();
98     AS.SetSize = 0;
99     *PtrListEnd = AS.PtrList;
100     AS.PtrList->setPrevInList(PtrListEnd);
101     PtrListEnd = AS.PtrListEnd;
102 
103     AS.PtrList = nullptr;
104     AS.PtrListEnd = &AS.PtrList;
105     assert(*AS.PtrListEnd == nullptr && "End of list is not null?");
106   }
107   if (ASHadUnknownInsts)
108     AS.dropRef(AST);
109 }
110 
111 void AliasSetTracker::removeAliasSet(AliasSet *AS) {
112   if (AliasSet *Fwd = AS->Forward) {
113     Fwd->dropRef(*this);
114     AS->Forward = nullptr;
115   } else // Update TotalMayAliasSetSize only if not forwarding.
116       if (AS->Alias == AliasSet::SetMayAlias)
117         TotalMayAliasSetSize -= AS->size();
118 
119   AliasSets.erase(AS);
120 }
121 
122 void AliasSet::removeFromTracker(AliasSetTracker &AST) {
123   assert(RefCount == 0 && "Cannot remove non-dead alias set from tracker!");
124   AST.removeAliasSet(this);
125 }
126 
127 void AliasSet::addPointer(AliasSetTracker &AST, PointerRec &Entry,
128                           LocationSize Size, const AAMDNodes &AAInfo,
129                           bool KnownMustAlias, bool SkipSizeUpdate) {
130   assert(!Entry.hasAliasSet() && "Entry already in set!");
131 
132   // Check to see if we have to downgrade to _may_ alias.
133   if (isMustAlias())
134     if (PointerRec *P = getSomePointer()) {
135       if (!KnownMustAlias) {
136         AliasAnalysis &AA = AST.getAliasAnalysis();
137         AliasResult Result = AA.alias(
138             MemoryLocation(P->getValue(), P->getSize(), P->getAAInfo()),
139             MemoryLocation(Entry.getValue(), Size, AAInfo));
140         if (Result != MustAlias) {
141           Alias = SetMayAlias;
142           AST.TotalMayAliasSetSize += size();
143         }
144         assert(Result != NoAlias && "Cannot be part of must set!");
145       } else if (!SkipSizeUpdate)
146         P->updateSizeAndAAInfo(Size, AAInfo);
147     }
148 
149   Entry.setAliasSet(this);
150   Entry.updateSizeAndAAInfo(Size, AAInfo);
151 
152   // Add it to the end of the list...
153   ++SetSize;
154   assert(*PtrListEnd == nullptr && "End of list is not null?");
155   *PtrListEnd = &Entry;
156   PtrListEnd = Entry.setPrevInList(PtrListEnd);
157   assert(*PtrListEnd == nullptr && "End of list is not null?");
158   // Entry points to alias set.
159   addRef();
160 
161   if (Alias == SetMayAlias)
162     AST.TotalMayAliasSetSize++;
163 }
164 
165 void AliasSet::addUnknownInst(Instruction *I, AliasAnalysis &AA) {
166   if (UnknownInsts.empty())
167     addRef();
168   UnknownInsts.emplace_back(I);
169 
170   // Guards are marked as modifying memory for control flow modelling purposes,
171   // but don't actually modify any specific memory location.
172   using namespace PatternMatch;
173   bool MayWriteMemory = I->mayWriteToMemory() && !isGuard(I) &&
174     !(I->use_empty() && match(I, m_Intrinsic<Intrinsic::invariant_start>()));
175   if (!MayWriteMemory) {
176     Alias = SetMayAlias;
177     Access |= RefAccess;
178     return;
179   }
180 
181   // FIXME: This should use mod/ref information to make this not suck so bad
182   Alias = SetMayAlias;
183   Access = ModRefAccess;
184 }
185 
186 /// aliasesPointer - If the specified pointer "may" (or must) alias one of the
187 /// members in the set return the appropriate AliasResult. Otherwise return
188 /// NoAlias.
189 ///
190 AliasResult AliasSet::aliasesPointer(const Value *Ptr, LocationSize Size,
191                                      const AAMDNodes &AAInfo,
192                                      AliasAnalysis &AA) const {
193   if (AliasAny)
194     return MayAlias;
195 
196   if (Alias == SetMustAlias) {
197     assert(UnknownInsts.empty() && "Illegal must alias set!");
198 
199     // If this is a set of MustAliases, only check to see if the pointer aliases
200     // SOME value in the set.
201     PointerRec *SomePtr = getSomePointer();
202     assert(SomePtr && "Empty must-alias set??");
203     return AA.alias(MemoryLocation(SomePtr->getValue(), SomePtr->getSize(),
204                                    SomePtr->getAAInfo()),
205                     MemoryLocation(Ptr, Size, AAInfo));
206   }
207 
208   // If this is a may-alias set, we have to check all of the pointers in the set
209   // to be sure it doesn't alias the set...
210   for (iterator I = begin(), E = end(); I != E; ++I)
211     if (AliasResult AR = AA.alias(
212             MemoryLocation(Ptr, Size, AAInfo),
213             MemoryLocation(I.getPointer(), I.getSize(), I.getAAInfo())))
214       return AR;
215 
216   // Check the unknown instructions...
217   if (!UnknownInsts.empty()) {
218     for (unsigned i = 0, e = UnknownInsts.size(); i != e; ++i)
219       if (auto *Inst = getUnknownInst(i))
220         if (isModOrRefSet(
221                 AA.getModRefInfo(Inst, MemoryLocation(Ptr, Size, AAInfo))))
222           return MayAlias;
223   }
224 
225   return NoAlias;
226 }
227 
228 bool AliasSet::aliasesUnknownInst(const Instruction *Inst,
229                                   AliasAnalysis &AA) const {
230 
231   if (AliasAny)
232     return true;
233 
234   assert(Inst->mayReadOrWriteMemory() &&
235          "Instruction must either read or write memory.");
236 
237   for (unsigned i = 0, e = UnknownInsts.size(); i != e; ++i) {
238     if (auto *UnknownInst = getUnknownInst(i)) {
239       const auto *C1 = dyn_cast<CallBase>(UnknownInst);
240       const auto *C2 = dyn_cast<CallBase>(Inst);
241       if (!C1 || !C2 || isModOrRefSet(AA.getModRefInfo(C1, C2)) ||
242           isModOrRefSet(AA.getModRefInfo(C2, C1)))
243         return true;
244     }
245   }
246 
247   for (iterator I = begin(), E = end(); I != E; ++I)
248     if (isModOrRefSet(AA.getModRefInfo(
249             Inst, MemoryLocation(I.getPointer(), I.getSize(), I.getAAInfo()))))
250       return true;
251 
252   return false;
253 }
254 
255 Instruction* AliasSet::getUniqueInstruction() {
256   if (AliasAny)
257     // May have collapses alias set
258     return nullptr;
259   if (begin() != end()) {
260     if (!UnknownInsts.empty())
261       // Another instruction found
262       return nullptr;
263     if (std::next(begin()) != end())
264       // Another instruction found
265       return nullptr;
266     Value *Addr = begin()->getValue();
267     assert(!Addr->user_empty() &&
268            "where's the instruction which added this pointer?");
269     if (std::next(Addr->user_begin()) != Addr->user_end())
270       // Another instruction found -- this is really restrictive
271       // TODO: generalize!
272       return nullptr;
273     return cast<Instruction>(*(Addr->user_begin()));
274   }
275   if (1 != UnknownInsts.size())
276     return nullptr;
277   return cast<Instruction>(UnknownInsts[0]);
278 }
279 
280 void AliasSetTracker::clear() {
281   // Delete all the PointerRec entries.
282   for (PointerMapType::iterator I = PointerMap.begin(), E = PointerMap.end();
283        I != E; ++I)
284     I->second->eraseFromList();
285 
286   PointerMap.clear();
287 
288   // The alias sets should all be clear now.
289   AliasSets.clear();
290 }
291 
292 /// mergeAliasSetsForPointer - Given a pointer, merge all alias sets that may
293 /// alias the pointer. Return the unified set, or nullptr if no set that aliases
294 /// the pointer was found. MustAliasAll is updated to true/false if the pointer
295 /// is found to MustAlias all the sets it merged.
296 AliasSet *AliasSetTracker::mergeAliasSetsForPointer(const Value *Ptr,
297                                                     LocationSize Size,
298                                                     const AAMDNodes &AAInfo,
299                                                     bool &MustAliasAll) {
300   AliasSet *FoundSet = nullptr;
301   AliasResult AllAR = MustAlias;
302   for (iterator I = begin(), E = end(); I != E;) {
303     iterator Cur = I++;
304     if (Cur->Forward)
305       continue;
306 
307     AliasResult AR = Cur->aliasesPointer(Ptr, Size, AAInfo, AA);
308     if (AR == NoAlias)
309       continue;
310 
311     AllAR =
312         AliasResult(AllAR & AR); // Possible downgrade to May/Partial, even No
313 
314     if (!FoundSet) {
315       // If this is the first alias set ptr can go into, remember it.
316       FoundSet = &*Cur;
317     } else {
318       // Otherwise, we must merge the sets.
319       FoundSet->mergeSetIn(*Cur, *this);
320     }
321   }
322 
323   MustAliasAll = (AllAR == MustAlias);
324   return FoundSet;
325 }
326 
327 AliasSet *AliasSetTracker::findAliasSetForUnknownInst(Instruction *Inst) {
328   AliasSet *FoundSet = nullptr;
329   for (iterator I = begin(), E = end(); I != E;) {
330     iterator Cur = I++;
331     if (Cur->Forward || !Cur->aliasesUnknownInst(Inst, AA))
332       continue;
333     if (!FoundSet) {
334       // If this is the first alias set ptr can go into, remember it.
335       FoundSet = &*Cur;
336     } else {
337       // Otherwise, we must merge the sets.
338       FoundSet->mergeSetIn(*Cur, *this);
339     }
340   }
341   return FoundSet;
342 }
343 
344 AliasSet &AliasSetTracker::getAliasSetFor(const MemoryLocation &MemLoc) {
345 
346   Value * const Pointer = const_cast<Value*>(MemLoc.Ptr);
347   const LocationSize Size = MemLoc.Size;
348   const AAMDNodes &AAInfo = MemLoc.AATags;
349 
350   AliasSet::PointerRec &Entry = getEntryFor(Pointer);
351 
352   if (AliasAnyAS) {
353     // At this point, the AST is saturated, so we only have one active alias
354     // set. That means we already know which alias set we want to return, and
355     // just need to add the pointer to that set to keep the data structure
356     // consistent.
357     // This, of course, means that we will never need a merge here.
358     if (Entry.hasAliasSet()) {
359       Entry.updateSizeAndAAInfo(Size, AAInfo);
360       assert(Entry.getAliasSet(*this) == AliasAnyAS &&
361              "Entry in saturated AST must belong to only alias set");
362     } else {
363       AliasAnyAS->addPointer(*this, Entry, Size, AAInfo);
364     }
365     return *AliasAnyAS;
366   }
367 
368   bool MustAliasAll = false;
369   // Check to see if the pointer is already known.
370   if (Entry.hasAliasSet()) {
371     // If the size changed, we may need to merge several alias sets.
372     // Note that we can *not* return the result of mergeAliasSetsForPointer
373     // due to a quirk of alias analysis behavior. Since alias(undef, undef)
374     // is NoAlias, mergeAliasSetsForPointer(undef, ...) will not find the
375     // the right set for undef, even if it exists.
376     if (Entry.updateSizeAndAAInfo(Size, AAInfo))
377       mergeAliasSetsForPointer(Pointer, Size, AAInfo, MustAliasAll);
378     // Return the set!
379     return *Entry.getAliasSet(*this)->getForwardedTarget(*this);
380   }
381 
382   if (AliasSet *AS =
383           mergeAliasSetsForPointer(Pointer, Size, AAInfo, MustAliasAll)) {
384     // Add it to the alias set it aliases.
385     AS->addPointer(*this, Entry, Size, AAInfo, MustAliasAll);
386     return *AS;
387   }
388 
389   // Otherwise create a new alias set to hold the loaded pointer.
390   AliasSets.push_back(new AliasSet());
391   AliasSets.back().addPointer(*this, Entry, Size, AAInfo, true);
392   return AliasSets.back();
393 }
394 
395 void AliasSetTracker::add(Value *Ptr, LocationSize Size,
396                           const AAMDNodes &AAInfo) {
397   addPointer(MemoryLocation(Ptr, Size, AAInfo), AliasSet::NoAccess);
398 }
399 
400 void AliasSetTracker::add(LoadInst *LI) {
401   if (isStrongerThanMonotonic(LI->getOrdering()))
402     return addUnknown(LI);
403   addPointer(MemoryLocation::get(LI), AliasSet::RefAccess);
404 }
405 
406 void AliasSetTracker::add(StoreInst *SI) {
407   if (isStrongerThanMonotonic(SI->getOrdering()))
408     return addUnknown(SI);
409   addPointer(MemoryLocation::get(SI), AliasSet::ModAccess);
410 }
411 
412 void AliasSetTracker::add(VAArgInst *VAAI) {
413   addPointer(MemoryLocation::get(VAAI), AliasSet::ModRefAccess);
414 }
415 
416 void AliasSetTracker::add(AnyMemSetInst *MSI) {
417   addPointer(MemoryLocation::getForDest(MSI), AliasSet::ModAccess);
418 }
419 
420 void AliasSetTracker::add(AnyMemTransferInst *MTI) {
421   addPointer(MemoryLocation::getForDest(MTI), AliasSet::ModAccess);
422   addPointer(MemoryLocation::getForSource(MTI), AliasSet::RefAccess);
423 }
424 
425 void AliasSetTracker::addUnknown(Instruction *Inst) {
426   if (isa<DbgInfoIntrinsic>(Inst))
427     return; // Ignore DbgInfo Intrinsics.
428 
429   if (auto *II = dyn_cast<IntrinsicInst>(Inst)) {
430     // These intrinsics will show up as affecting memory, but they are just
431     // markers.
432     switch (II->getIntrinsicID()) {
433     default:
434       break;
435       // FIXME: Add lifetime/invariant intrinsics (See: PR30807).
436     case Intrinsic::assume:
437     case Intrinsic::sideeffect:
438       return;
439     }
440   }
441   if (!Inst->mayReadOrWriteMemory())
442     return; // doesn't alias anything
443 
444   if (AliasSet *AS = findAliasSetForUnknownInst(Inst)) {
445     AS->addUnknownInst(Inst, AA);
446     return;
447   }
448   AliasSets.push_back(new AliasSet());
449   AliasSets.back().addUnknownInst(Inst, AA);
450 }
451 
452 void AliasSetTracker::add(Instruction *I) {
453   // Dispatch to one of the other add methods.
454   if (LoadInst *LI = dyn_cast<LoadInst>(I))
455     return add(LI);
456   if (StoreInst *SI = dyn_cast<StoreInst>(I))
457     return add(SI);
458   if (VAArgInst *VAAI = dyn_cast<VAArgInst>(I))
459     return add(VAAI);
460   if (AnyMemSetInst *MSI = dyn_cast<AnyMemSetInst>(I))
461     return add(MSI);
462   if (AnyMemTransferInst *MTI = dyn_cast<AnyMemTransferInst>(I))
463     return add(MTI);
464 
465   // Handle all calls with known mod/ref sets genericall
466   if (auto *Call = dyn_cast<CallBase>(I))
467     if (Call->onlyAccessesArgMemory()) {
468       auto getAccessFromModRef = [](ModRefInfo MRI) {
469         if (isRefSet(MRI) && isModSet(MRI))
470           return AliasSet::ModRefAccess;
471         else if (isModSet(MRI))
472           return AliasSet::ModAccess;
473         else if (isRefSet(MRI))
474           return AliasSet::RefAccess;
475         else
476           return AliasSet::NoAccess;
477       };
478 
479       ModRefInfo CallMask = createModRefInfo(AA.getModRefBehavior(Call));
480 
481       // Some intrinsics are marked as modifying memory for control flow
482       // modelling purposes, but don't actually modify any specific memory
483       // location.
484       using namespace PatternMatch;
485       if (Call->use_empty() &&
486           match(Call, m_Intrinsic<Intrinsic::invariant_start>()))
487         CallMask = clearMod(CallMask);
488 
489       for (auto IdxArgPair : enumerate(Call->args())) {
490         int ArgIdx = IdxArgPair.index();
491         const Value *Arg = IdxArgPair.value();
492         if (!Arg->getType()->isPointerTy())
493           continue;
494         MemoryLocation ArgLoc =
495             MemoryLocation::getForArgument(Call, ArgIdx, nullptr);
496         ModRefInfo ArgMask = AA.getArgModRefInfo(Call, ArgIdx);
497         ArgMask = intersectModRef(CallMask, ArgMask);
498         if (!isNoModRef(ArgMask))
499           addPointer(ArgLoc, getAccessFromModRef(ArgMask));
500       }
501       return;
502     }
503 
504   return addUnknown(I);
505 }
506 
507 void AliasSetTracker::add(BasicBlock &BB) {
508   for (auto &I : BB)
509     add(&I);
510 }
511 
512 void AliasSetTracker::add(const AliasSetTracker &AST) {
513   assert(&AA == &AST.AA &&
514          "Merging AliasSetTracker objects with different Alias Analyses!");
515 
516   // Loop over all of the alias sets in AST, adding the pointers contained
517   // therein into the current alias sets.  This can cause alias sets to be
518   // merged together in the current AST.
519   for (const AliasSet &AS : AST) {
520     if (AS.Forward)
521       continue; // Ignore forwarding alias sets
522 
523     // If there are any call sites in the alias set, add them to this AST.
524     for (unsigned i = 0, e = AS.UnknownInsts.size(); i != e; ++i)
525       if (auto *Inst = AS.getUnknownInst(i))
526         add(Inst);
527 
528     // Loop over all of the pointers in this alias set.
529     for (AliasSet::iterator ASI = AS.begin(), E = AS.end(); ASI != E; ++ASI)
530       addPointer(
531           MemoryLocation(ASI.getPointer(), ASI.getSize(), ASI.getAAInfo()),
532           (AliasSet::AccessLattice)AS.Access);
533   }
534 }
535 
536 // deleteValue method - This method is used to remove a pointer value from the
537 // AliasSetTracker entirely.  It should be used when an instruction is deleted
538 // from the program to update the AST.  If you don't use this, you would have
539 // dangling pointers to deleted instructions.
540 //
541 void AliasSetTracker::deleteValue(Value *PtrVal) {
542   // First, look up the PointerRec for this pointer.
543   PointerMapType::iterator I = PointerMap.find_as(PtrVal);
544   if (I == PointerMap.end()) return;  // Noop
545 
546   // If we found one, remove the pointer from the alias set it is in.
547   AliasSet::PointerRec *PtrValEnt = I->second;
548   AliasSet *AS = PtrValEnt->getAliasSet(*this);
549 
550   // Unlink and delete from the list of values.
551   PtrValEnt->eraseFromList();
552 
553   if (AS->Alias == AliasSet::SetMayAlias) {
554     AS->SetSize--;
555     TotalMayAliasSetSize--;
556   }
557 
558   // Stop using the alias set.
559   AS->dropRef(*this);
560 
561   PointerMap.erase(I);
562 }
563 
564 // copyValue - This method should be used whenever a preexisting value in the
565 // program is copied or cloned, introducing a new value.  Note that it is ok for
566 // clients that use this method to introduce the same value multiple times: if
567 // the tracker already knows about a value, it will ignore the request.
568 //
569 void AliasSetTracker::copyValue(Value *From, Value *To) {
570   // First, look up the PointerRec for this pointer.
571   PointerMapType::iterator I = PointerMap.find_as(From);
572   if (I == PointerMap.end())
573     return;  // Noop
574   assert(I->second->hasAliasSet() && "Dead entry?");
575 
576   AliasSet::PointerRec &Entry = getEntryFor(To);
577   if (Entry.hasAliasSet()) return;    // Already in the tracker!
578 
579   // getEntryFor above may invalidate iterator \c I, so reinitialize it.
580   I = PointerMap.find_as(From);
581   // Add it to the alias set it aliases...
582   AliasSet *AS = I->second->getAliasSet(*this);
583   AS->addPointer(*this, Entry, I->second->getSize(), I->second->getAAInfo(),
584                  true, true);
585 }
586 
587 AliasSet &AliasSetTracker::mergeAllAliasSets() {
588   assert(!AliasAnyAS && (TotalMayAliasSetSize > SaturationThreshold) &&
589          "Full merge should happen once, when the saturation threshold is "
590          "reached");
591 
592   // Collect all alias sets, so that we can drop references with impunity
593   // without worrying about iterator invalidation.
594   std::vector<AliasSet *> ASVector;
595   ASVector.reserve(SaturationThreshold);
596   for (iterator I = begin(), E = end(); I != E; I++)
597     ASVector.push_back(&*I);
598 
599   // Copy all instructions and pointers into a new set, and forward all other
600   // sets to it.
601   AliasSets.push_back(new AliasSet());
602   AliasAnyAS = &AliasSets.back();
603   AliasAnyAS->Alias = AliasSet::SetMayAlias;
604   AliasAnyAS->Access = AliasSet::ModRefAccess;
605   AliasAnyAS->AliasAny = true;
606 
607   for (auto Cur : ASVector) {
608     // If Cur was already forwarding, just forward to the new AS instead.
609     AliasSet *FwdTo = Cur->Forward;
610     if (FwdTo) {
611       Cur->Forward = AliasAnyAS;
612       AliasAnyAS->addRef();
613       FwdTo->dropRef(*this);
614       continue;
615     }
616 
617     // Otherwise, perform the actual merge.
618     AliasAnyAS->mergeSetIn(*Cur, *this);
619   }
620 
621   return *AliasAnyAS;
622 }
623 
624 AliasSet &AliasSetTracker::addPointer(MemoryLocation Loc,
625                                       AliasSet::AccessLattice E) {
626   AliasSet &AS = getAliasSetFor(Loc);
627   AS.Access |= E;
628 
629   if (!AliasAnyAS && (TotalMayAliasSetSize > SaturationThreshold)) {
630     // The AST is now saturated. From here on, we conservatively consider all
631     // pointers to alias each-other.
632     return mergeAllAliasSets();
633   }
634 
635   return AS;
636 }
637 
638 //===----------------------------------------------------------------------===//
639 //               AliasSet/AliasSetTracker Printing Support
640 //===----------------------------------------------------------------------===//
641 
642 void AliasSet::print(raw_ostream &OS) const {
643   OS << "  AliasSet[" << (const void*)this << ", " << RefCount << "] ";
644   OS << (Alias == SetMustAlias ? "must" : "may") << " alias, ";
645   switch (Access) {
646   case NoAccess:     OS << "No access "; break;
647   case RefAccess:    OS << "Ref       "; break;
648   case ModAccess:    OS << "Mod       "; break;
649   case ModRefAccess: OS << "Mod/Ref   "; break;
650   default: llvm_unreachable("Bad value for Access!");
651   }
652   if (Forward)
653     OS << " forwarding to " << (void*)Forward;
654 
655   if (!empty()) {
656     OS << "Pointers: ";
657     for (iterator I = begin(), E = end(); I != E; ++I) {
658       if (I != begin()) OS << ", ";
659       I.getPointer()->printAsOperand(OS << "(");
660       if (I.getSize() == LocationSize::unknown())
661         OS << ", unknown)";
662       else
663         OS << ", " << I.getSize() << ")";
664     }
665   }
666   if (!UnknownInsts.empty()) {
667     OS << "\n    " << UnknownInsts.size() << " Unknown instructions: ";
668     for (unsigned i = 0, e = UnknownInsts.size(); i != e; ++i) {
669       if (i) OS << ", ";
670       if (auto *I = getUnknownInst(i)) {
671         if (I->hasName())
672           I->printAsOperand(OS);
673         else
674           I->print(OS);
675       }
676     }
677   }
678   OS << "\n";
679 }
680 
681 void AliasSetTracker::print(raw_ostream &OS) const {
682   OS << "Alias Set Tracker: " << AliasSets.size() << " alias sets for "
683      << PointerMap.size() << " pointer values.\n";
684   for (const AliasSet &AS : *this)
685     AS.print(OS);
686   OS << "\n";
687 }
688 
689 #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
690 LLVM_DUMP_METHOD void AliasSet::dump() const { print(dbgs()); }
691 LLVM_DUMP_METHOD void AliasSetTracker::dump() const { print(dbgs()); }
692 #endif
693 
694 //===----------------------------------------------------------------------===//
695 //                     ASTCallbackVH Class Implementation
696 //===----------------------------------------------------------------------===//
697 
698 void AliasSetTracker::ASTCallbackVH::deleted() {
699   assert(AST && "ASTCallbackVH called with a null AliasSetTracker!");
700   AST->deleteValue(getValPtr());
701   // this now dangles!
702 }
703 
704 void AliasSetTracker::ASTCallbackVH::allUsesReplacedWith(Value *V) {
705   AST->copyValue(getValPtr(), V);
706 }
707 
708 AliasSetTracker::ASTCallbackVH::ASTCallbackVH(Value *V, AliasSetTracker *ast)
709   : CallbackVH(V), AST(ast) {}
710 
711 AliasSetTracker::ASTCallbackVH &
712 AliasSetTracker::ASTCallbackVH::operator=(Value *V) {
713   return *this = ASTCallbackVH(V, AST);
714 }
715 
716 //===----------------------------------------------------------------------===//
717 //                            AliasSetPrinter Pass
718 //===----------------------------------------------------------------------===//
719 
720 namespace {
721 
722   class AliasSetPrinter : public FunctionPass {
723     AliasSetTracker *Tracker;
724 
725   public:
726     static char ID; // Pass identification, replacement for typeid
727 
728     AliasSetPrinter() : FunctionPass(ID) {
729       initializeAliasSetPrinterPass(*PassRegistry::getPassRegistry());
730     }
731 
732     void getAnalysisUsage(AnalysisUsage &AU) const override {
733       AU.setPreservesAll();
734       AU.addRequired<AAResultsWrapperPass>();
735     }
736 
737     bool runOnFunction(Function &F) override {
738       auto &AAWP = getAnalysis<AAResultsWrapperPass>();
739       Tracker = new AliasSetTracker(AAWP.getAAResults());
740       errs() << "Alias sets for function '" << F.getName() << "':\n";
741       for (inst_iterator I = inst_begin(F), E = inst_end(F); I != E; ++I)
742         Tracker->add(&*I);
743       Tracker->print(errs());
744       delete Tracker;
745       return false;
746     }
747   };
748 
749 } // end anonymous namespace
750 
751 char AliasSetPrinter::ID = 0;
752 
753 INITIALIZE_PASS_BEGIN(AliasSetPrinter, "print-alias-sets",
754                 "Alias Set Printer", false, true)
755 INITIALIZE_PASS_DEPENDENCY(AAResultsWrapperPass)
756 INITIALIZE_PASS_END(AliasSetPrinter, "print-alias-sets",
757                 "Alias Set Printer", false, true)
758