LLVM 23.0.0git
AliasAnalysis.h
Go to the documentation of this file.
1//===- llvm/Analysis/AliasAnalysis.h - Alias Analysis Interface -*- C++ -*-===//
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 defines the generic AliasAnalysis interface, which is used as the
10// common interface used by all clients of alias analysis information, and
11// implemented by all alias analysis implementations. Mod/Ref information is
12// also captured by this interface.
13//
14// Implementations of this interface must implement the various virtual methods,
15// which automatically provides functionality for the entire suite of client
16// APIs.
17//
18// This API identifies memory regions with the MemoryLocation class. The pointer
19// component specifies the base memory address of the region. The Size specifies
20// the maximum size (in address units) of the memory region, or
21// MemoryLocation::UnknownSize if the size is not known. The TBAA tag
22// identifies the "type" of the memory reference; see the
23// TypeBasedAliasAnalysis class for details.
24//
25// Some non-obvious details include:
26// - Pointers that point to two completely different objects in memory never
27// alias, regardless of the value of the Size component.
28// - NoAlias doesn't imply inequal pointers. The most obvious example of this
29// is two pointers to constant memory. Even if they are equal, constant
30// memory is never stored to, so there will never be any dependencies.
31// In this and other situations, the pointers may be both NoAlias and
32// MustAlias at the same time. The current API can only return one result,
33// though this is rarely a problem in practice.
34//
35//===----------------------------------------------------------------------===//
36
37#ifndef LLVM_ANALYSIS_ALIASANALYSIS_H
38#define LLVM_ANALYSIS_ALIASANALYSIS_H
39
40#include "llvm/ADT/DenseMap.h"
44#include "llvm/IR/Function.h"
45#include "llvm/IR/PassManager.h"
46#include "llvm/Pass.h"
48#include "llvm/Support/ModRef.h"
49#include <cstdint>
50#include <functional>
51#include <memory>
52#include <optional>
53#include <vector>
54
55namespace llvm {
56
58class BasicBlock;
59class CatchPadInst;
60class CatchReturnInst;
61class CycleInfo;
62class DominatorTree;
63class FenceInst;
64class LoopInfo;
66
67/// The possible results of an alias query.
68///
69/// These results are always computed between two MemoryLocation objects as
70/// a query to some alias analysis.
71///
72/// Note that these are unscoped enumerations because we would like to support
73/// implicitly testing a result for the existence of any possible aliasing with
74/// a conversion to bool, but an "enum class" doesn't support this. The
75/// canonical names from the literature are suffixed and unique anyways, and so
76/// they serve as global constants in LLVM for these results.
77///
78/// See docs/AliasAnalysis.html for more information on the specific meanings
79/// of these values.
81private:
82 static const int OffsetBits = 23;
83 static const int AliasBits = 8;
84 static_assert(AliasBits + 1 + OffsetBits <= 32,
85 "AliasResult size is intended to be 4 bytes!");
86
87 unsigned int Alias : AliasBits;
88 unsigned int HasOffset : 1;
89 signed int Offset : OffsetBits;
90
91public:
92 enum Kind : uint8_t {
93 /// The two locations do not alias at all.
94 ///
95 /// This value is arranged to convert to false, while all other values
96 /// convert to true. This allows a boolean context to convert the result to
97 /// a binary flag indicating whether there is the possibility of aliasing.
99 /// The two locations may or may not alias. This is the least precise
100 /// result.
102 /// The two locations alias, but only due to a partial overlap.
104 /// The two locations precisely alias each other.
106 };
107 static_assert(MustAlias < (1 << AliasBits),
108 "Not enough bit field size for the enum!");
109
110 explicit AliasResult() = delete;
111 constexpr AliasResult(const Kind &Alias)
112 : Alias(Alias), HasOffset(false), Offset(0) {}
113
114 operator Kind() const { return static_cast<Kind>(Alias); }
115
116 bool operator==(const AliasResult &Other) const {
117 return Alias == Other.Alias && HasOffset == Other.HasOffset &&
118 Offset == Other.Offset;
119 }
120 bool operator!=(const AliasResult &Other) const { return !(*this == Other); }
121
122 bool operator==(Kind K) const { return Alias == K; }
123 bool operator!=(Kind K) const { return !(*this == K); }
124
125 constexpr bool hasOffset() const { return HasOffset; }
126 constexpr int32_t getOffset() const {
127 assert(HasOffset && "No offset!");
128 return Offset;
129 }
130 void setOffset(int32_t NewOffset) {
131 if (isInt<OffsetBits>(NewOffset)) {
132 HasOffset = true;
133 Offset = NewOffset;
134 }
135 }
136
137 /// Helper for processing AliasResult for swapped memory location pairs.
138 void swap(bool DoSwap = true) {
139 if (DoSwap && hasOffset())
141 }
142};
143
144static_assert(sizeof(AliasResult) == 4,
145 "AliasResult size is intended to be 4 bytes!");
146
147/// << operator for AliasResult.
148LLVM_ABI raw_ostream &operator<<(raw_ostream &OS, AliasResult AR);
149
150/// Virtual base class for providers of capture analysis.
152 virtual ~CaptureAnalysis() = 0;
153
154 /// Return how Object may be captured before instruction I, considering only
155 /// provenance captures. If OrAt is true, captures by instruction I itself
156 /// are also considered.
157 ///
158 /// If I is nullptr, then captures at any point will be considered.
160 const Instruction *I, bool OrAt,
161 bool ReturnCaptures) = 0;
162};
163
164/// Context-free CaptureAnalysis provider, which computes and caches whether an
165/// object is captured in the function at all, but does not distinguish whether
166/// it was captured before or after the context instruction.
169
170public:
172 bool OrAt, bool ReturnCaptures) override;
173};
174
175/// Context-sensitive CaptureAnalysis provider, which computes and caches the
176/// earliest common dominator closure of all captures. It provides a good
177/// approximation to a precise "captures before" analysis.
179 DominatorTree &DT;
180 const LoopInfo *LI;
181 const CycleInfo *CI;
182
183 /// Map from identified local object to an instruction before which it does
184 /// not escape (or nullptr if it never escapes) and the possible components
185 /// that may be captured (by any instruction, not necessarily the earliest
186 /// one). The "earliest" instruction may be a conservative approximation,
187 /// e.g. the first instruction in the function is always a legal choice.
189 EarliestEscapes;
190
191 /// Reverse map from instruction to the objects it is the earliest escape for.
192 /// This is used for cache invalidation purposes.
194
195public:
197 const CycleInfo *CI = nullptr)
198 : DT(DT), LI(LI), CI(CI) {}
199
200 CaptureComponents getCapturesBefore(const Value *Object, const Instruction *I,
201 bool OrAt, bool ReturnCaptures) override;
202
203 void removeInstruction(Instruction *I);
204};
205
206/// Cache key for BasicAA results. It only includes the pointer and size from
207/// MemoryLocation, as BasicAA is AATags independent. Additionally, it includes
208/// the value of MayBeCrossIteration, which may affect BasicAA results.
213
215 AACacheLoc(const Value *Ptr, LocationSize Size, bool MayBeCrossIteration)
216 : Ptr(Ptr, MayBeCrossIteration), Size(Size) {}
217};
218
219template <> struct DenseMapInfo<AACacheLoc> {
224 static bool isEqual(const AACacheLoc &LHS, const AACacheLoc &RHS) {
225 return LHS.Ptr == RHS.Ptr && LHS.Size == RHS.Size;
226 }
227};
228
229class AAResults;
230
231/// This class stores info we want to provide to or retain within an alias
232/// query. By default, the root query is stateless and starts with a freshly
233/// constructed info object. Specific alias analyses can use this query info to
234/// store per-query state that is important for recursive or nested queries to
235/// avoid recomputing. To enable preserving this state across multiple queries
236/// where safe (due to the IR not changing), use a `BatchAAResults` wrapper.
237/// The information stored in an `AAQueryInfo` is currently limitted to the
238/// caches used by BasicAA, but can further be extended to fit other AA needs.
240public:
241 using LocPair = std::pair<AACacheLoc, AACacheLoc>;
242 struct CacheEntry {
243 /// Cache entry is neither an assumption nor does it use a (non-definitive)
244 /// assumption.
245 static constexpr int Definitive = -2;
246 /// Cache entry is not an assumption itself, but may be using an assumption
247 /// from higher up the stack.
248 static constexpr int AssumptionBased = -1;
249
251 /// Number of times a NoAlias assumption has been used, 0 for assumptions
252 /// that have not been used. Can also take one of the Definitive or
253 /// AssumptionBased values documented above.
255
256 /// Whether this is a definitive (non-assumption) result.
257 bool isDefinitive() const { return NumAssumptionUses == Definitive; }
258 /// Whether this is an assumption that has not been proven yet.
259 bool isAssumption() const { return NumAssumptionUses >= 0; }
260 };
261
262 // Alias analysis result aggregration using which this query is performed.
263 // Can be used to perform recursive queries.
265
268
270
271 /// Query depth used to distinguish recursive queries.
272 unsigned Depth = 0;
273
274 /// How many active NoAlias assumption uses there are.
276
277 /// Location pairs for which an assumption based result is currently stored.
278 /// Used to remove all potentially incorrect results from the cache if an
279 /// assumption is disproven.
281
282 /// Tracks whether the accesses may be on different cycle iterations.
283 ///
284 /// When interpret "Value" pointer equality as value equality we need to make
285 /// sure that the "Value" is not part of a cycle. Otherwise, two uses could
286 /// come from different "iterations" of a cycle and see different values for
287 /// the same "Value" pointer.
288 ///
289 /// The following example shows the problem:
290 /// %p = phi(%alloca1, %addr2)
291 /// %l = load %ptr
292 /// %addr1 = gep, %alloca2, 0, %l
293 /// %addr2 = gep %alloca2, 0, (%l + 1)
294 /// alias(%p, %addr1) -> MayAlias !
295 /// store %l, ...
297
298 /// Whether alias analysis is allowed to use the dominator tree, for use by
299 /// passes that lazily update the DT while performing AA queries.
300 bool UseDominatorTree = true;
301
303};
304
305/// AAQueryInfo that uses SimpleCaptureAnalysis.
308
309public:
311};
312
313class BatchAAResults;
314
316public:
317 // Make these results default constructable and movable. We have to spell
318 // these out because MSVC won't synthesize them.
322
323 /// Register a specific AA result.
324 template <typename AAResultT> void addAAResult(AAResultT &AAResult) {
325 // FIXME: We should use a much lighter weight system than the usual
326 // polymorphic pattern because we don't own AAResult. It should
327 // ideally involve two pointers and no separate allocation.
328 AAs.emplace_back(new Model<AAResultT>(AAResult, *this));
329 }
330
331 /// Register a function analysis ID that the results aggregation depends on.
332 ///
333 /// This is used in the new pass manager to implement the invalidation logic
334 /// where we must invalidate the results aggregation if any of our component
335 /// analyses become invalid.
336 void addAADependencyID(AnalysisKey *ID) { AADeps.push_back(ID); }
337
338 /// Handle invalidation events in the new pass manager.
339 ///
340 /// The aggregation is invalidated if any of the underlying analyses is
341 /// invalidated.
343 FunctionAnalysisManager::Invalidator &Inv);
344
345 //===--------------------------------------------------------------------===//
346 /// \name Alias Queries
347 /// @{
348
349 /// The main low level interface to the alias analysis implementation.
350 /// Returns an AliasResult indicating whether the two pointers are aliased to
351 /// each other. This is the interface that must be implemented by specific
352 /// alias analysis implementations.
354 const MemoryLocation &LocB);
355
356 /// A convenience wrapper around the primary \c alias interface.
357 AliasResult alias(const Value *V1, LocationSize V1Size, const Value *V2,
358 LocationSize V2Size) {
359 return alias(MemoryLocation(V1, V1Size), MemoryLocation(V2, V2Size));
360 }
361
362 /// A convenience wrapper around the primary \c alias interface.
367
368 /// A trivial helper function to check to see if the specified pointers are
369 /// no-alias.
370 bool isNoAlias(const MemoryLocation &LocA, const MemoryLocation &LocB) {
371 return alias(LocA, LocB) == AliasResult::NoAlias;
372 }
373
374 /// A convenience wrapper around the \c isNoAlias helper interface.
375 bool isNoAlias(const Value *V1, LocationSize V1Size, const Value *V2,
376 LocationSize V2Size) {
377 return isNoAlias(MemoryLocation(V1, V1Size), MemoryLocation(V2, V2Size));
378 }
379
380 /// A convenience wrapper around the \c isNoAlias helper interface.
385
386 /// A trivial helper function to check to see if the specified pointers are
387 /// must-alias.
388 bool isMustAlias(const MemoryLocation &LocA, const MemoryLocation &LocB) {
389 return alias(LocA, LocB) == AliasResult::MustAlias;
390 }
391
392 /// A convenience wrapper around the \c isMustAlias helper interface.
393 bool isMustAlias(const Value *V1, const Value *V2) {
396 }
397
398 /// Checks whether the given location points to constant memory, or if
399 /// \p OrLocal is true whether it points to a local alloca.
400 bool pointsToConstantMemory(const MemoryLocation &Loc, bool OrLocal = false) {
401 return isNoModRef(getModRefInfoMask(Loc, OrLocal));
402 }
403
404 /// A convenience wrapper around the primary \c pointsToConstantMemory
405 /// interface.
406 bool pointsToConstantMemory(const Value *P, bool OrLocal = false) {
408 }
409
410 /// @}
411 //===--------------------------------------------------------------------===//
412 /// \name Simple mod/ref information
413 /// @{
414
415 /// Returns a bitmask that should be unconditionally applied to the ModRef
416 /// info of a memory location. This allows us to eliminate Mod and/or Ref
417 /// from the ModRef info based on the knowledge that the memory location
418 /// points to constant and/or locally-invariant memory.
419 ///
420 /// If IgnoreLocals is true, then this method returns NoModRef for memory
421 /// that points to a local alloca.
423 bool IgnoreLocals = false);
424
425 /// A convenience wrapper around the primary \c getModRefInfoMask
426 /// interface.
427 ModRefInfo getModRefInfoMask(const Value *P, bool IgnoreLocals = false) {
429 }
430
431 /// Get the ModRef info associated with a pointer argument of a call. The
432 /// result's bits are set to indicate the allowed aliasing ModRef kinds. Note
433 /// that these bits do not necessarily account for the overall behavior of
434 /// the function, but rather only provide additional per-argument
435 /// information.
436 LLVM_ABI ModRefInfo getArgModRefInfo(const CallBase *Call, unsigned ArgIdx);
437
438 /// Return the behavior of the given call site.
440
441 /// Return the behavior when calling the given function.
443
444 /// Checks if the specified call is known to never read or write memory.
445 ///
446 /// Note that if the call only reads from known-constant memory, it is also
447 /// legal to return true. Also, calls that unwind the stack are legal for
448 /// this predicate.
449 ///
450 /// Many optimizations (such as CSE and LICM) can be performed on such calls
451 /// without worrying about aliasing properties, and many calls have this
452 /// property (e.g. calls to 'sin' and 'cos').
453 ///
454 /// This property corresponds to the GCC 'const' attribute.
458
459 /// Checks if the specified function is known to never read or write memory.
460 ///
461 /// Note that if the function only reads from known-constant memory, it is
462 /// also legal to return true. Also, function that unwind the stack are legal
463 /// for this predicate.
464 ///
465 /// Many optimizations (such as CSE and LICM) can be performed on such calls
466 /// to such functions without worrying about aliasing properties, and many
467 /// functions have this property (e.g. 'sin' and 'cos').
468 ///
469 /// This property corresponds to the GCC 'const' attribute.
473
474 /// Checks if the specified call is known to only read from non-volatile
475 /// memory (or not access memory at all).
476 ///
477 /// Calls that unwind the stack are legal for this predicate.
478 ///
479 /// This property allows many common optimizations to be performed in the
480 /// absence of interfering store instructions, such as CSE of strlen calls.
481 ///
482 /// This property corresponds to the GCC 'pure' attribute.
486
487 /// Checks if the specified function is known to only read from non-volatile
488 /// memory (or not access memory at all).
489 ///
490 /// Functions that unwind the stack are legal for this predicate.
491 ///
492 /// This property allows many common optimizations to be performed in the
493 /// absence of interfering store instructions, such as CSE of strlen calls.
494 ///
495 /// This property corresponds to the GCC 'pure' attribute.
498 }
499
500 /// Check whether or not an instruction may read or write the optionally
501 /// specified memory location.
502 ///
503 ///
504 /// An instruction that doesn't read or write memory may be trivially LICM'd
505 /// for example.
506 ///
507 /// For function calls, this delegates to the alias-analysis specific
508 /// call-site mod-ref behavior queries. Otherwise it delegates to the specific
509 /// helpers above.
511 const std::optional<MemoryLocation> &OptLoc) {
512 SimpleAAQueryInfo AAQIP(*this);
513 return getModRefInfo(I, OptLoc, AAQIP);
514 }
515
516 /// A convenience wrapper for constructing the memory location.
521
522 /// Return information about whether a call and an instruction may refer to
523 /// the same memory locations.
525
526 /// Return information about whether two instructions may refer to the same
527 /// memory locations.
529 const Instruction *I2);
530
531 /// Return information about whether a particular call site modifies
532 /// or reads the specified memory location \p MemLoc before instruction \p I
533 /// in a BasicBlock.
535 const MemoryLocation &MemLoc,
536 DominatorTree *DT) {
537 SimpleAAQueryInfo AAQIP(*this);
538 return callCapturesBefore(I, MemLoc, DT, AAQIP);
539 }
540
541 /// A convenience wrapper to synthesize a memory location.
546
547 /// @}
548 //===--------------------------------------------------------------------===//
549 /// \name Higher level methods for querying mod/ref information.
550 /// @{
551
552 /// Check if it is possible for execution of the specified basic block to
553 /// modify the location Loc.
555 const MemoryLocation &Loc);
556
557 /// A convenience wrapper synthesizing a memory location.
558 bool canBasicBlockModify(const BasicBlock &BB, const Value *P,
561 }
562
563 /// Check if it is possible for the execution of the specified instructions
564 /// to mod\ref (according to the mode) the location Loc.
565 ///
566 /// The instructions to consider are all of the instructions in the range of
567 /// [I1,I2] INCLUSIVE. I1 and I2 must be in the same basic block.
569 const Instruction &I2,
570 const MemoryLocation &Loc,
571 const ModRefInfo Mode);
572
573 /// A convenience wrapper synthesizing a memory location.
575 const Value *Ptr, LocationSize Size,
576 const ModRefInfo Mode) {
577 return canInstructionRangeModRef(I1, I2, MemoryLocation(Ptr, Size), Mode);
578 }
579
580 // CtxI can be nullptr, in which case the query is whether or not the aliasing
581 // relationship holds through the entire function.
583 const MemoryLocation &LocB, AAQueryInfo &AAQI,
584 const Instruction *CtxI = nullptr);
586
588 AAQueryInfo &AAQI,
589 bool IgnoreLocals = false);
591 AAQueryInfo &AAQIP);
593 const MemoryLocation &Loc,
594 AAQueryInfo &AAQI);
596 const CallBase *Call2, AAQueryInfo &AAQI);
598 const MemoryLocation &Loc,
599 AAQueryInfo &AAQI);
601 const MemoryLocation &Loc,
602 AAQueryInfo &AAQI);
604 const MemoryLocation &Loc,
605 AAQueryInfo &AAQI);
607 const MemoryLocation &Loc,
608 AAQueryInfo &AAQI);
610 const MemoryLocation &Loc,
611 AAQueryInfo &AAQI);
613 const MemoryLocation &Loc,
614 AAQueryInfo &AAQI);
616 const MemoryLocation &Loc,
617 AAQueryInfo &AAQI);
619 const MemoryLocation &Loc,
620 AAQueryInfo &AAQI);
622 const std::optional<MemoryLocation> &OptLoc,
623 AAQueryInfo &AAQIP);
625 const Instruction *I2, AAQueryInfo &AAQI);
627 const MemoryLocation &MemLoc,
628 DominatorTree *DT, AAQueryInfo &AAQIP);
630 AAQueryInfo &AAQI);
631
632private:
633 class Concept;
634
635 template <typename T> class Model;
636
637 friend class AAResultBase;
638
639 const TargetLibraryInfo &TLI;
640
641 std::vector<std::unique_ptr<Concept>> AAs;
642
643 std::vector<AnalysisKey *> AADeps;
644
645 friend class BatchAAResults;
646};
647
648/// This class is a wrapper over an AAResults, and it is intended to be used
649/// only when there are no IR changes inbetween queries. BatchAAResults is
650/// reusing the same `AAQueryInfo` to preserve the state across queries,
651/// esentially making AA work in "batch mode". The internal state cannot be
652/// cleared, so to go "out-of-batch-mode", the user must either use AAResults,
653/// or create a new BatchAAResults.
655 AAResults &AA;
656 AAQueryInfo AAQI;
657 SimpleCaptureAnalysis SimpleCA;
658
660
661public:
662 BatchAAResults(AAResults &AAR) : AA(AAR), AAQI(AAR, &SimpleCA) {}
664 : AA(AAR), AAQI(AAR, CA) {}
665
666 AliasResult alias(const MemoryLocation &LocA, const MemoryLocation &LocB) {
667 return AA.alias(LocA, LocB, AAQI);
668 }
669 bool pointsToConstantMemory(const MemoryLocation &Loc, bool OrLocal = false) {
670 return isNoModRef(AA.getModRefInfoMask(Loc, AAQI, OrLocal));
671 }
672 bool pointsToConstantMemory(const Value *P, bool OrLocal = false) {
674 }
676 bool IgnoreLocals = false) {
677 return AA.getModRefInfoMask(Loc, AAQI, IgnoreLocals);
678 }
680 const std::optional<MemoryLocation> &OptLoc) {
681 return AA.getModRefInfo(I, OptLoc, AAQI);
682 }
684 return AA.getModRefInfo(I, Call2, AAQI);
685 }
687 return AA.getModRefInfo(I, I2, AAQI);
688 }
689 ModRefInfo getArgModRefInfo(const CallBase *Call, unsigned ArgIdx) {
690 return AA.getArgModRefInfo(Call, ArgIdx);
691 }
693 return AA.getMemoryEffects(Call, AAQI);
694 }
695 bool isMustAlias(const MemoryLocation &LocA, const MemoryLocation &LocB) {
696 return alias(LocA, LocB) == AliasResult::MustAlias;
697 }
703 bool isNoAlias(const MemoryLocation &LocA, const MemoryLocation &LocB) {
704 return alias(LocA, LocB) == AliasResult::NoAlias;
705 }
707 const MemoryLocation &MemLoc,
708 DominatorTree *DT) {
709 return AA.callCapturesBefore(I, MemLoc, DT, AAQI);
710 }
711
712 /// Assume that values may come from different cycle iterations.
714 AAQI.MayBeCrossIteration = true;
715 }
716
717 /// Disable the use of the dominator tree during alias analysis queries.
718 void disableDominatorTree() { AAQI.UseDominatorTree = false; }
719};
720
721/// Temporarily set the cross iteration mode on a BatchAA instance.
723 BatchAAResults &BAA;
724 bool OrigCrossIteration;
725
726public:
728 : BAA(BAA), OrigCrossIteration(BAA.AAQI.MayBeCrossIteration) {
729 BAA.AAQI.MayBeCrossIteration = CrossIteration;
730 }
732 BAA.AAQI.MayBeCrossIteration = OrigCrossIteration;
733 }
734};
735
736/// Temporary typedef for legacy code that uses a generic \c AliasAnalysis
737/// pointer or reference.
739
740/// A private abstract base class describing the concept of an individual alias
741/// analysis implementation.
742///
743/// This interface is implemented by any \c Model instantiation. It is also the
744/// interface which a type used to instantiate the model must provide.
745///
746/// All of these methods model methods by the same name in the \c
747/// AAResults class. Only differences and specifics to how the
748/// implementations are called are documented here.
750public:
751 virtual ~Concept() = 0;
752
753 //===--------------------------------------------------------------------===//
754 /// \name Alias Queries
755 /// @{
756
757 /// The main low level interface to the alias analysis implementation.
758 /// Returns an AliasResult indicating whether the two pointers are aliased to
759 /// each other. This is the interface that must be implemented by specific
760 /// alias analysis implementations.
761 virtual AliasResult alias(const MemoryLocation &LocA,
762 const MemoryLocation &LocB, AAQueryInfo &AAQI,
763 const Instruction *CtxI) = 0;
764
765 /// Returns an AliasResult indicating whether a specific memory location
766 /// aliases errno.
768 const Module *M) = 0;
769
770 /// @}
771 //===--------------------------------------------------------------------===//
772 /// \name Simple mod/ref information
773 /// @{
774
775 /// Returns a bitmask that should be unconditionally applied to the ModRef
776 /// info of a memory location. This allows us to eliminate Mod and/or Ref from
777 /// the ModRef info based on the knowledge that the memory location points to
778 /// constant and/or locally-invariant memory.
780 AAQueryInfo &AAQI,
781 bool IgnoreLocals) = 0;
782
783 /// Get the ModRef info associated with a pointer argument of a callsite. The
784 /// result's bits are set to indicate the allowed aliasing ModRef kinds. Note
785 /// that these bits do not necessarily account for the overall behavior of
786 /// the function, but rather only provide additional per-argument
787 /// information.
789 unsigned ArgIdx) = 0;
790
791 /// Return the behavior of the given call site.
793 AAQueryInfo &AAQI) = 0;
794
795 /// Return the behavior when calling the given function.
797
798 /// getModRefInfo (for call sites) - Return information about whether
799 /// a particular call site modifies or reads the specified memory location.
801 const MemoryLocation &Loc,
802 AAQueryInfo &AAQI) = 0;
803
804 /// Return information about whether two call sites may refer to the same set
805 /// of memory locations. See the AA documentation for details:
806 /// http://llvm.org/docs/AliasAnalysis.html#ModRefInfo
807 virtual ModRefInfo getModRefInfo(const CallBase *Call1, const CallBase *Call2,
808 AAQueryInfo &AAQI) = 0;
809
810 /// getModRefInfo (for fences) - Return information about whether
811 /// a particular fence modifies or reads the specified memory location.
813 const MemoryLocation &Loc,
814 AAQueryInfo &AAQI) = 0;
815
816 /// @}
817};
818
819/// A private class template which derives from \c Concept and wraps some other
820/// type.
821///
822/// This models the concept by directly forwarding each interface point to the
823/// wrapped type which must implement a compatible interface. This provides
824/// a type erased binding.
825template <typename AAResultT> class AAResults::Model final : public Concept {
826 AAResultT &Result;
827
828public:
829 explicit Model(AAResultT &Result, AAResults &AAR) : Result(Result) {}
830 ~Model() override = default;
831
832 AliasResult alias(const MemoryLocation &LocA, const MemoryLocation &LocB,
833 AAQueryInfo &AAQI, const Instruction *CtxI) override {
834 return Result.alias(LocA, LocB, AAQI, CtxI);
835 }
836
837 AliasResult aliasErrno(const MemoryLocation &Loc, const Module *M) override {
838 return Result.aliasErrno(Loc, M);
839 }
840
841 ModRefInfo getModRefInfoMask(const MemoryLocation &Loc, AAQueryInfo &AAQI,
842 bool IgnoreLocals) override {
843 return Result.getModRefInfoMask(Loc, AAQI, IgnoreLocals);
844 }
845
846 ModRefInfo getArgModRefInfo(const CallBase *Call, unsigned ArgIdx) override {
847 return Result.getArgModRefInfo(Call, ArgIdx);
848 }
849
850 MemoryEffects getMemoryEffects(const CallBase *Call,
851 AAQueryInfo &AAQI) override {
852 return Result.getMemoryEffects(Call, AAQI);
853 }
854
855 MemoryEffects getMemoryEffects(const Function *F) override {
856 return Result.getMemoryEffects(F);
857 }
858
859 ModRefInfo getModRefInfo(const CallBase *Call, const MemoryLocation &Loc,
860 AAQueryInfo &AAQI) override {
861 return Result.getModRefInfo(Call, Loc, AAQI);
862 }
863
864 ModRefInfo getModRefInfo(const CallBase *Call1, const CallBase *Call2,
865 AAQueryInfo &AAQI) override {
866 return Result.getModRefInfo(Call1, Call2, AAQI);
867 }
868
869 ModRefInfo getModRefInfo(const FenceInst *F, const MemoryLocation &Loc,
870 AAQueryInfo &AAQI) override {
871 return Result.getModRefInfo(F, Loc, AAQI);
872 }
873};
874
875/// A base class to help implement the function alias analysis results concept.
876///
877/// Because of the nature of many alias analysis implementations, they often
878/// only implement a subset of the interface. This base class will attempt to
879/// implement the remaining portions of the interface in terms of simpler forms
880/// of the interface where possible, and otherwise provide conservatively
881/// correct fallback implementations.
882///
883/// Implementors of an alias analysis should derive from this class, and then
884/// override specific methods that they wish to customize. There is no need to
885/// use virtual anywhere.
887protected:
888 explicit AAResultBase() = default;
889
890 // Provide all the copy and move constructors so that derived types aren't
891 // constrained.
892 AAResultBase(const AAResultBase &Arg) = default;
894
895public:
897 AAQueryInfo &AAQI, const Instruction *I) {
899 }
900
904
906 bool IgnoreLocals) {
907 return ModRefInfo::ModRef;
908 }
909
910 ModRefInfo getArgModRefInfo(const CallBase *Call, unsigned ArgIdx) {
911 return ModRefInfo::ModRef;
912 }
913
917
921
926
927 ModRefInfo getModRefInfo(const CallBase *Call1, const CallBase *Call2,
928 AAQueryInfo &AAQI) {
929 return ModRefInfo::ModRef;
930 }
931
933 AAQueryInfo &AAQI) {
934 return ModRefInfo::ModRef;
935 }
936};
937
938/// Return true if this pointer is returned by a noalias function.
939LLVM_ABI bool isNoAliasCall(const Value *V);
940
941/// Return true if this pointer refers to a distinct and identifiable object.
942/// This returns true for:
943/// Global Variables and Functions (but not Global Aliases)
944/// Allocas
945/// ByVal and NoAlias Arguments
946/// NoAlias returns (e.g. calls to malloc)
947///
948LLVM_ABI bool isIdentifiedObject(const Value *V);
949
950/// Return true if V is umabigously identified at the function-level.
951/// Different IdentifiedFunctionLocals can't alias.
952/// Further, an IdentifiedFunctionLocal can not alias with any function
953/// arguments other than itself, which is not necessarily true for
954/// IdentifiedObjects.
955LLVM_ABI bool isIdentifiedFunctionLocal(const Value *V);
956
957/// Return true if we know V to the base address of the corresponding memory
958/// object. This implies that any address less than V must be out of bounds
959/// for the underlying object. Note that just being isIdentifiedObject() is
960/// not enough - For example, a negative offset from a noalias argument or call
961/// can be inbounds w.r.t the actual underlying object.
962LLVM_ABI bool isBaseOfObject(const Value *V);
963
964/// Returns true if the pointer is one which would have been considered an
965/// escape by isNotCapturedBefore.
966LLVM_ABI bool isEscapeSource(const Value *V);
967
968/// Return true if Object memory is not visible after an unwind, in the sense
969/// that program semantics cannot depend on Object containing any particular
970/// value on unwind. If the RequiresNoCaptureBeforeUnwind out parameter is set
971/// to true, then the memory is only not visible if the object has not been
972/// captured prior to the unwind. Otherwise it is not visible even if captured.
973LLVM_ABI bool isNotVisibleOnUnwind(const Value *Object,
974 bool &RequiresNoCaptureBeforeUnwind);
975
976/// Return true if the Object is writable, in the sense that any location based
977/// on this pointer that can be loaded can also be stored to without trapping.
978/// Additionally, at the point Object is declared, stores can be introduced
979/// without data races. At later points, this is only the case if the pointer
980/// can not escape to a different thread.
981///
982/// If ExplicitlyDereferenceableOnly is set to true, this property only holds
983/// for the part of Object that is explicitly marked as dereferenceable, e.g.
984/// using the dereferenceable(N) attribute. It does not necessarily hold for
985/// parts that are only known to be dereferenceable due to the presence of
986/// loads.
987LLVM_ABI bool isWritableObject(const Value *Object,
988 bool &ExplicitlyDereferenceableOnly);
989
990/// Get ModRefInfo for a synchronizing operation, such as a fence or stronger
991/// than monotonic atomic load/store.
992LLVM_ABI ModRefInfo getSyncEffects(AAResults *AA, const MemoryLocation &Loc,
993 AAQueryInfo &AAQI);
994
995/// A manager for alias analyses.
996///
997/// This class can have analyses registered with it and when run, it will run
998/// all of them and aggregate their results into single AA results interface
999/// that dispatches across all of the alias analysis results available.
1000///
1001/// Note that the order in which analyses are registered is very significant.
1002/// That is the order in which the results will be aggregated and queried.
1003///
1004/// This manager effectively wraps the AnalysisManager for registering alias
1005/// analyses. When you register your alias analysis with this manager, it will
1006/// ensure the analysis itself is registered with its AnalysisManager.
1007///
1008/// The result of this analysis is only invalidated if one of the particular
1009/// aggregated AA results end up being invalidated. This removes the need to
1010/// explicitly preserve the results of `AAManager`. Note that analyses should no
1011/// longer be registered once the `AAManager` is run.
1012class AAManager : public AnalysisInfoMixin<AAManager> {
1013public:
1015
1016 /// Register a specific AA result.
1017 template <typename AnalysisT> void registerFunctionAnalysis() {
1018 ResultGetters.push_back(&getFunctionAAResultImpl<AnalysisT>);
1019 }
1020
1021 /// Register a specific AA result.
1022 template <typename AnalysisT> void registerModuleAnalysis() {
1023 ResultGetters.push_back(&getModuleAAResultImpl<AnalysisT>);
1024 }
1025
1027
1028private:
1030
1031 LLVM_ABI static AnalysisKey Key;
1032
1035 4> ResultGetters;
1036
1037 template <typename AnalysisT>
1038 static void getFunctionAAResultImpl(Function &F,
1041 AAResults.addAAResult(AM.template getResult<AnalysisT>(F));
1042 AAResults.addAADependencyID(AnalysisT::ID());
1043 }
1044
1045 template <typename AnalysisT>
1046 static void getModuleAAResultImpl(Function &F, FunctionAnalysisManager &AM,
1047 AAResults &AAResults) {
1048 auto &MAMProxy = AM.getResult<ModuleAnalysisManagerFunctionProxy>(F);
1049 if (auto *R =
1050 MAMProxy.template getCachedResult<AnalysisT>(*F.getParent())) {
1051 AAResults.addAAResult(*R);
1052 MAMProxy
1053 .template registerOuterAnalysisInvalidation<AnalysisT, AAManager>();
1054 }
1055 }
1056};
1057
1058/// A wrapper pass to provide the legacy pass manager access to a suitably
1059/// prepared AAResults object.
1061 std::unique_ptr<AAResults> AAR;
1062
1063public:
1064 static char ID;
1065
1067
1068 AAResults &getAAResults() { return *AAR; }
1069 const AAResults &getAAResults() const { return *AAR; }
1070
1071 bool runOnFunction(Function &F) override;
1072
1073 void getAnalysisUsage(AnalysisUsage &AU) const override;
1074};
1075
1076/// A wrapper pass for external alias analyses. This just squirrels away the
1077/// callback used to run any analyses and register their results.
1079 using CallbackT = std::function<void(Pass &, Function &, AAResults &)>;
1080
1082
1083 LLVM_ABI static char ID;
1084
1086
1087 LLVM_ABI explicit ExternalAAWrapperPass(CallbackT CB, bool RunEarly = false);
1088
1089 /// Flag indicating whether this external AA should run before Basic AA.
1090 ///
1091 /// This flag is for LegacyPassManager only. To run an external AA early
1092 /// with the NewPassManager, override the registerEarlyDefaultAliasAnalyses
1093 /// method on the target machine.
1094 ///
1095 /// By default, external AA passes are run after Basic AA. If this flag is
1096 /// set to true, the external AA will be run before Basic AA during alias
1097 /// analysis.
1098 ///
1099 /// For some targets, we prefer to run the external AA early to improve
1100 /// compile time as it has more target-specific information. This is
1101 /// particularly useful when the external AA can provide more precise results
1102 /// than Basic AA so that Basic AA does not need to spend time recomputing
1103 /// them.
1104 bool RunEarly = false;
1105
1106 void getAnalysisUsage(AnalysisUsage &AU) const override {
1107 AU.setPreservesAll();
1108 }
1109};
1110
1111/// A wrapper pass around a callback which can be used to populate the
1112/// AAResults in the AAResultsWrapperPass from an external AA.
1113///
1114/// The callback provided here will be used each time we prepare an AAResults
1115/// object, and will receive a reference to the function wrapper pass, the
1116/// function, and the AAResults object to populate. This should be used when
1117/// setting up a custom pass pipeline to inject a hook into the AA results.
1119 std::function<void(Pass &, Function &, AAResults &)> Callback);
1120
1121} // end namespace llvm
1122
1123#endif // LLVM_ANALYSIS_ALIASANALYSIS_H
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
#define LLVM_ABI
Definition Compiler.h:213
This file defines the DenseMap class.
static bool runOnFunction(Function &F, bool PostInlining)
This header defines various interfaces for pass management in LLVM.
#define F(x, y, z)
Definition MD5.cpp:54
#define I(x, y, z)
Definition MD5.cpp:57
Machine Check Debug Module
This file provides utility analysis objects describing memory locations.
#define P(N)
static cl::opt< RegAllocEvictionAdvisorAnalysisLegacy::AdvisorMode > Mode("regalloc-enable-advisor", cl::Hidden, cl::init(RegAllocEvictionAdvisorAnalysisLegacy::AdvisorMode::Default), cl::desc("Enable regalloc advisor mode"), cl::values(clEnumValN(RegAllocEvictionAdvisorAnalysisLegacy::AdvisorMode::Default, "default", "Default"), clEnumValN(RegAllocEvictionAdvisorAnalysisLegacy::AdvisorMode::Release, "release", "precompiled"), clEnumValN(RegAllocEvictionAdvisorAnalysisLegacy::AdvisorMode::Development, "development", "for training")))
This file defines the SmallVector class.
Value * RHS
Value * LHS
A manager for alias analyses.
void registerFunctionAnalysis()
Register a specific AA result.
LLVM_ABI Result run(Function &F, FunctionAnalysisManager &AM)
void registerModuleAnalysis()
Register a specific AA result.
This class stores info we want to provide to or retain within an alias query.
AAQueryInfo(AAResults &AAR, CaptureAnalysis *CA)
SmallVector< AAQueryInfo::LocPair, 4 > AssumptionBasedResults
Location pairs for which an assumption based result is currently stored.
unsigned Depth
Query depth used to distinguish recursive queries.
bool UseDominatorTree
Whether alias analysis is allowed to use the dominator tree, for use by passes that lazily update the...
int NumAssumptionUses
How many active NoAlias assumption uses there are.
std::pair< AACacheLoc, AACacheLoc > LocPair
AliasCacheT AliasCache
SmallDenseMap< LocPair, CacheEntry, 8 > AliasCacheT
bool MayBeCrossIteration
Tracks whether the accesses may be on different cycle iterations.
CaptureAnalysis * CA
ModRefInfo getModRefInfo(const CallBase *Call1, const CallBase *Call2, AAQueryInfo &AAQI)
ModRefInfo getModRefInfo(const FenceInst *F, const MemoryLocation &Loc, AAQueryInfo &AAQI)
AAResultBase(const AAResultBase &Arg)=default
MemoryEffects getMemoryEffects(const CallBase *Call, AAQueryInfo &AAQI)
ModRefInfo getModRefInfoMask(const MemoryLocation &Loc, AAQueryInfo &AAQI, bool IgnoreLocals)
MemoryEffects getMemoryEffects(const Function *F)
AliasResult aliasErrno(const MemoryLocation &Loc, const Module *M)
AAResultBase(AAResultBase &&Arg)
ModRefInfo getModRefInfo(const CallBase *Call, const MemoryLocation &Loc, AAQueryInfo &AAQI)
AAResultBase()=default
ModRefInfo getArgModRefInfo(const CallBase *Call, unsigned ArgIdx)
AliasResult alias(const MemoryLocation &LocA, const MemoryLocation &LocB, AAQueryInfo &AAQI, const Instruction *I)
const AAResults & getAAResults() const
A private abstract base class describing the concept of an individual alias analysis implementation.
virtual AliasResult aliasErrno(const MemoryLocation &Loc, const Module *M)=0
Returns an AliasResult indicating whether a specific memory location aliases errno.
virtual ModRefInfo getModRefInfo(const FenceInst *F, const MemoryLocation &Loc, AAQueryInfo &AAQI)=0
getModRefInfo (for fences) - Return information about whether a particular fence modifies or reads th...
virtual AliasResult alias(const MemoryLocation &LocA, const MemoryLocation &LocB, AAQueryInfo &AAQI, const Instruction *CtxI)=0
The main low level interface to the alias analysis implementation.
virtual MemoryEffects getMemoryEffects(const CallBase *Call, AAQueryInfo &AAQI)=0
Return the behavior of the given call site.
virtual ModRefInfo getModRefInfo(const CallBase *Call1, const CallBase *Call2, AAQueryInfo &AAQI)=0
Return information about whether two call sites may refer to the same set of memory locations.
virtual ModRefInfo getModRefInfoMask(const MemoryLocation &Loc, AAQueryInfo &AAQI, bool IgnoreLocals)=0
Returns a bitmask that should be unconditionally applied to the ModRef info of a memory location.
virtual ModRefInfo getModRefInfo(const CallBase *Call, const MemoryLocation &Loc, AAQueryInfo &AAQI)=0
getModRefInfo (for call sites) - Return information about whether a particular call site modifies or ...
virtual ModRefInfo getArgModRefInfo(const CallBase *Call, unsigned ArgIdx)=0
Get the ModRef info associated with a pointer argument of a callsite.
virtual MemoryEffects getMemoryEffects(const Function *F)=0
Return the behavior when calling the given function.
bool canInstructionRangeModRef(const Instruction &I1, const Instruction &I2, const Value *Ptr, LocationSize Size, const ModRefInfo Mode)
A convenience wrapper synthesizing a memory location.
bool pointsToConstantMemory(const Value *P, bool OrLocal=false)
A convenience wrapper around the primary pointsToConstantMemory interface.
friend class AAResultBase
bool pointsToConstantMemory(const MemoryLocation &Loc, bool OrLocal=false)
Checks whether the given location points to constant memory, or if OrLocal is true whether it points ...
ModRefInfo getModRefInfo(const Instruction *I, const std::optional< MemoryLocation > &OptLoc)
Check whether or not an instruction may read or write the optionally specified memory location.
bool doesNotAccessMemory(const Function *F)
Checks if the specified function is known to never read or write memory.
AliasResult alias(const Value *V1, const Value *V2)
A convenience wrapper around the primary alias interface.
AliasResult alias(const Value *V1, LocationSize V1Size, const Value *V2, LocationSize V2Size)
A convenience wrapper around the primary alias interface.
bool isMustAlias(const MemoryLocation &LocA, const MemoryLocation &LocB)
A trivial helper function to check to see if the specified pointers are must-alias.
bool doesNotAccessMemory(const CallBase *Call)
Checks if the specified call is known to never read or write memory.
bool isNoAlias(const Value *V1, LocationSize V1Size, const Value *V2, LocationSize V2Size)
A convenience wrapper around the isNoAlias helper interface.
LLVM_ABI AliasResult alias(const MemoryLocation &LocA, const MemoryLocation &LocB)
The main low level interface to the alias analysis implementation.
friend class BatchAAResults
ModRefInfo getModRefInfo(const Instruction *I, const Value *P, LocationSize Size)
A convenience wrapper for constructing the memory location.
bool canBasicBlockModify(const BasicBlock &BB, const Value *P, LocationSize Size)
A convenience wrapper synthesizing a memory location.
LLVM_ABI ModRefInfo getModRefInfoMask(const MemoryLocation &Loc, bool IgnoreLocals=false)
Returns a bitmask that should be unconditionally applied to the ModRef info of a memory location.
bool isNoAlias(const Value *V1, const Value *V2)
A convenience wrapper around the isNoAlias helper interface.
bool onlyReadsMemory(const Function *F)
Checks if the specified function is known to only read from non-volatile memory (or not access memory...
ModRefInfo callCapturesBefore(const Instruction *I, const MemoryLocation &MemLoc, DominatorTree *DT)
Return information about whether a particular call site modifies or reads the specified memory locati...
LLVM_ABI AAResults(const TargetLibraryInfo &TLI)
LLVM_ABI MemoryEffects getMemoryEffects(const CallBase *Call)
Return the behavior of the given call site.
bool isNoAlias(const MemoryLocation &LocA, const MemoryLocation &LocB)
A trivial helper function to check to see if the specified pointers are no-alias.
ModRefInfo getModRefInfoMask(const Value *P, bool IgnoreLocals=false)
A convenience wrapper around the primary getModRefInfoMask interface.
LLVM_ABI bool invalidate(Function &F, const PreservedAnalyses &PA, FunctionAnalysisManager::Invalidator &Inv)
Handle invalidation events in the new pass manager.
LLVM_ABI ModRefInfo getArgModRefInfo(const CallBase *Call, unsigned ArgIdx)
Get the ModRef info associated with a pointer argument of a call.
bool onlyReadsMemory(const CallBase *Call)
Checks if the specified call is known to only read from non-volatile memory (or not access memory at ...
LLVM_ABI bool canInstructionRangeModRef(const Instruction &I1, const Instruction &I2, const MemoryLocation &Loc, const ModRefInfo Mode)
Check if it is possible for the execution of the specified instructions to mod(according to the mode)...
bool isMustAlias(const Value *V1, const Value *V2)
A convenience wrapper around the isMustAlias helper interface.
LLVM_ABI AliasResult aliasErrno(const MemoryLocation &Loc, const Module *M)
void addAAResult(AAResultT &AAResult)
Register a specific AA result.
void addAADependencyID(AnalysisKey *ID)
Register a function analysis ID that the results aggregation depends on.
LLVM_ABI ~AAResults()
ModRefInfo callCapturesBefore(const Instruction *I, const Value *P, LocationSize Size, DominatorTree *DT)
A convenience wrapper to synthesize a memory location.
LLVM_ABI bool canBasicBlockModify(const BasicBlock &BB, const MemoryLocation &Loc)
Check if it is possible for execution of the specified basic block to modify the location Loc.
The possible results of an alias query.
constexpr AliasResult(const Kind &Alias)
bool operator==(const AliasResult &Other) const
bool operator!=(Kind K) const
AliasResult()=delete
void swap(bool DoSwap=true)
Helper for processing AliasResult for swapped memory location pairs.
bool operator==(Kind K) const
@ MayAlias
The two locations may or may not alias.
@ NoAlias
The two locations do not alias at all.
@ PartialAlias
The two locations alias, but only due to a partial overlap.
@ MustAlias
The two locations precisely alias each other.
void setOffset(int32_t NewOffset)
bool operator!=(const AliasResult &Other) const
constexpr int32_t getOffset() const
constexpr bool hasOffset() const
Represent the analysis usage information of a pass.
void setPreservesAll()
Set by analyses that do not transform their input at all.
An instruction that atomically checks whether a specified value is in a memory location,...
an instruction that atomically reads a memory location, combines it with another value,...
LLVM Basic Block Representation.
Definition BasicBlock.h:62
BatchAACrossIterationScope(BatchAAResults &BAA, bool CrossIteration)
This class is a wrapper over an AAResults, and it is intended to be used only when there are no IR ch...
AliasResult alias(const MemoryLocation &LocA, const MemoryLocation &LocB)
BatchAAResults(AAResults &AAR)
friend class BatchAACrossIterationScope
ModRefInfo getArgModRefInfo(const CallBase *Call, unsigned ArgIdx)
void disableDominatorTree()
Disable the use of the dominator tree during alias analysis queries.
BatchAAResults(AAResults &AAR, CaptureAnalysis *CA)
void enableCrossIterationMode()
Assume that values may come from different cycle iterations.
bool isMustAlias(const MemoryLocation &LocA, const MemoryLocation &LocB)
ModRefInfo getModRefInfo(const Instruction *I, const CallBase *Call2)
bool pointsToConstantMemory(const MemoryLocation &Loc, bool OrLocal=false)
bool isNoAlias(const MemoryLocation &LocA, const MemoryLocation &LocB)
MemoryEffects getMemoryEffects(const CallBase *Call)
bool isMustAlias(const Value *V1, const Value *V2)
ModRefInfo getModRefInfo(const Instruction *I, const std::optional< MemoryLocation > &OptLoc)
bool pointsToConstantMemory(const Value *P, bool OrLocal=false)
ModRefInfo getModRefInfoMask(const MemoryLocation &Loc, bool IgnoreLocals=false)
ModRefInfo callCapturesBefore(const Instruction *I, const MemoryLocation &MemLoc, DominatorTree *DT)
ModRefInfo getModRefInfo(const Instruction *I, const Instruction *I2)
Base class for all callable instructions (InvokeInst and CallInst) Holds everything related to callin...
Concrete subclass of DominatorTreeBase that is used to compute a normal dominator tree.
Definition Dominators.h:151
EarliestEscapeAnalysis(DominatorTree &DT, const LoopInfo *LI=nullptr, const CycleInfo *CI=nullptr)
An instruction for ordering other memory operations.
FunctionPass(char &pid)
Definition Pass.h:316
ImmutablePass class - This class is used to provide information that does not need to be run.
Definition Pass.h:285
ImmutablePass(char &pid)
Definition Pass.h:287
An instruction for reading from memory.
static LocationSize precise(uint64_t Value)
bool doesNotAccessMemory() const
Whether this function accesses no memory.
Definition ModRef.h:246
bool onlyReadsMemory() const
Whether this function only (at most) reads memory.
Definition ModRef.h:249
static MemoryEffectsBase unknown()
Definition ModRef.h:123
Representation for a specific memory location.
static MemoryLocation getBeforeOrAfter(const Value *Ptr, const AAMDNodes &AATags=AAMDNodes())
Return a location that may access any location before or after Ptr, while remaining within the underl...
A Module instance is used to store all the information related to an LLVM module.
Definition Module.h:67
Pass interface - Implemented by all 'passes'.
Definition Pass.h:99
PointerIntPair - This class implements a pair of a pointer and small integer.
A set of analyses that are preserved following a run of a transformation pass.
Definition Analysis.h:112
AAQueryInfo that uses SimpleCaptureAnalysis.
SimpleAAQueryInfo(AAResults &AAR)
Context-free CaptureAnalysis provider, which computes and caches whether an object is captured in the...
CaptureComponents getCapturesBefore(const Value *Object, const Instruction *I, bool OrAt, bool ReturnCaptures) override
Return how Object may be captured before instruction I, considering only provenance captures.
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
An instruction for storing to memory.
Provides information about what library functions are available for the current target.
This class represents the va_arg llvm instruction, which returns an argument of the specified type gi...
LLVM Value Representation.
Definition Value.h:75
CallInst * Call
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
Definition CallingConv.h:24
This is an optimization pass for GlobalISel generic memory operations.
constexpr bool isInt(int64_t x)
Checks if an integer fits into the given bit width.
Definition MathExtras.h:165
OuterAnalysisManagerProxy< ModuleAnalysisManager, Function > ModuleAnalysisManagerFunctionProxy
Provide the ModuleAnalysisManager to Function proxy.
LLVM_ABI bool isBaseOfObject(const Value *V)
Return true if we know V to the base address of the corresponding memory object.
LLVM_ABI bool isNoAliasCall(const Value *V)
Return true if this pointer is returned by a noalias function.
MemoryEffectsBase< IRMemLocation > MemoryEffects
Summary of how a function affects memory in the program.
Definition ModRef.h:356
LLVM_ABI ModRefInfo getSyncEffects(AAResults *AA, const MemoryLocation &Loc, AAQueryInfo &AAQI)
Get ModRefInfo for a synchronizing operation, such as a fence or stronger than monotonic atomic load/...
LLVM_ABI bool isNotVisibleOnUnwind(const Value *Object, bool &RequiresNoCaptureBeforeUnwind)
Return true if Object memory is not visible after an unwind, in the sense that program semantics cann...
CaptureComponents
Components of the pointer that may be captured.
Definition ModRef.h:365
LLVM_ATTRIBUTE_VISIBILITY_DEFAULT AnalysisKey InnerAnalysisManagerProxy< AnalysisManagerT, IRUnitT, ExtraArgTs... >::Key
ModRefInfo
Flags indicating whether a memory access modifies or references memory.
Definition ModRef.h:28
@ ModRef
The access may reference and may modify the value stored in memory.
Definition ModRef.h:36
@ Other
Any other memory.
Definition ModRef.h:68
raw_ostream & operator<<(raw_ostream &OS, const APFixedPoint &FX)
LLVM_ABI bool isIdentifiedFunctionLocal(const Value *V)
Return true if V is umabigously identified at the function-level.
LLVM_ABI bool isEscapeSource(const Value *V)
Returns true if the pointer is one which would have been considered an escape by isNotCapturedBefore.
AnalysisManager< Function > FunctionAnalysisManager
Convenience typedef for the Function analysis manager.
AAResults AliasAnalysis
Temporary typedef for legacy code that uses a generic AliasAnalysis pointer or reference.
bool isNoModRef(const ModRefInfo MRI)
Definition ModRef.h:40
LLVM_ABI bool isIdentifiedObject(const Value *V)
Return true if this pointer refers to a distinct and identifiable object.
LLVM_ABI bool isWritableObject(const Value *Object, bool &ExplicitlyDereferenceableOnly)
Return true if the Object is writable, in the sense that any location based on this pointer that can ...
LLVM_ABI ImmutablePass * createExternalAAWrapperPass(std::function< void(Pass &, Function &, AAResults &)> Callback)
A wrapper pass around a callback which can be used to populate the AAResults in the AAResultsWrapperP...
Cache key for BasicAA results.
PointerIntPair< const Value *, 1, bool > PtrTy
AACacheLoc(const Value *Ptr, LocationSize Size, bool MayBeCrossIteration)
LocationSize Size
AACacheLoc(PtrTy Ptr, LocationSize Size)
bool isAssumption() const
Whether this is an assumption that has not been proven yet.
bool isDefinitive() const
Whether this is a definitive (non-assumption) result.
static constexpr int Definitive
Cache entry is neither an assumption nor does it use a (non-definitive) assumption.
static constexpr int AssumptionBased
Cache entry is not an assumption itself, but may be using an assumption from higher up the stack.
int NumAssumptionUses
Number of times a NoAlias assumption has been used, 0 for assumptions that have not been used.
A CRTP mix-in that provides informational APIs needed for analysis passes.
A special type used by analysis passes to provide an address that identifies that particular analysis...
Definition Analysis.h:29
Virtual base class for providers of capture analysis.
virtual CaptureComponents getCapturesBefore(const Value *Object, const Instruction *I, bool OrAt, bool ReturnCaptures)=0
Return how Object may be captured before instruction I, considering only provenance captures.
virtual ~CaptureAnalysis()=0
static bool isEqual(const AACacheLoc &LHS, const AACacheLoc &RHS)
static unsigned getHashValue(const AACacheLoc &Val)
An information struct used to provide DenseMap with the various necessary components for a given valu...
void getAnalysisUsage(AnalysisUsage &AU) const override
getAnalysisUsage - This function should be overriden by passes that need analysis information to do t...
std::function< void(Pass &, Function &, AAResults &)> CallbackT
static LLVM_ABI char ID
bool RunEarly
Flag indicating whether this external AA should run before Basic AA.