LLVM 22.0.0git
TypeBasedAliasAnalysis.h
Go to the documentation of this file.
1//===- TypeBasedAliasAnalysis.h - Type-Based Alias Analysis -----*- 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/// \file
10/// This is the interface for a metadata-based TBAA. See the source file for
11/// details on the algorithm.
12//
13//===----------------------------------------------------------------------===//
14
15#ifndef LLVM_ANALYSIS_TYPEBASEDALIASANALYSIS_H
16#define LLVM_ANALYSIS_TYPEBASEDALIASANALYSIS_H
17
19#include "llvm/IR/PassManager.h"
20#include "llvm/Pass.h"
22#include <memory>
23
24namespace llvm {
25
26class CallBase;
27class Function;
28class MDNode;
29class MemoryLocation;
30
31/// A simple AA result that uses TBAA metadata to answer queries.
33 /// True if type sanitizer is enabled. When TypeSanitizer is used, don't use
34 /// TBAA information for alias analysis as this might cause us to remove
35 /// memory accesses that we need to verify at runtime.
36 bool UsingTypeSanitizer;
37
38public:
39 TypeBasedAAResult(bool UsingTypeSanitizer)
40 : UsingTypeSanitizer(UsingTypeSanitizer) {}
41
42 /// Handle invalidation events from the new pass manager.
43 ///
44 /// By definition, this result is stateless and so remains valid.
46 FunctionAnalysisManager::Invalidator &) {
47 return false;
48 }
49
51 const MemoryLocation &LocB, AAQueryInfo &AAQI,
52 const Instruction *CtxI);
54 AAQueryInfo &AAQI, bool IgnoreLocals);
55
57 AAQueryInfo &AAQI);
60 const MemoryLocation &Loc,
61 AAQueryInfo &AAQI);
63 const CallBase *Call2, AAQueryInfo &AAQI);
64
65private:
66 bool Aliases(const MDNode *A, const MDNode *B) const;
67
68 /// Returns true if TBAA metadata should be used, that is if TBAA is enabled
69 /// and type sanitizer is not used.
70 bool shouldUseTBAA() const;
71};
72
73/// Analysis pass providing a never-invalidated alias analysis result.
74class TypeBasedAA : public AnalysisInfoMixin<TypeBasedAA> {
76
77 LLVM_ABI static AnalysisKey Key;
78
79public:
81
83};
84
85/// Legacy wrapper pass to provide the TypeBasedAAResult object.
87 std::unique_ptr<TypeBasedAAResult> Result;
88
89public:
90 static char ID;
91
93
94 TypeBasedAAResult &getResult() { return *Result; }
95 const TypeBasedAAResult &getResult() const { return *Result; }
96
97 bool doInitialization(Module &M) override;
98 bool doFinalization(Module &M) override;
99 void getAnalysisUsage(AnalysisUsage &AU) const override;
100};
101
102//===--------------------------------------------------------------------===//
103//
104// createTypeBasedAAWrapperPass - This pass implements metadata-based
105// type-based alias analysis.
106//
108
109} // end namespace llvm
110
111#endif // LLVM_ANALYSIS_TYPEBASEDALIASANALYSIS_H
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
#define LLVM_ABI
Definition Compiler.h:213
This header defines various interfaces for pass management in LLVM.
#define F(x, y, z)
Definition MD5.cpp:55
This class stores info we want to provide to or retain within an alias query.
AAResultBase()=default
The possible results of an alias query.
Represent the analysis usage information of a pass.
Base class for all callable instructions (InvokeInst and CallInst) Holds everything related to callin...
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
Metadata node.
Definition Metadata.h:1077
Representation for a specific memory location.
A Module instance is used to store all the information related to an LLVM module.
Definition Module.h:67
A set of analyses that are preserved following a run of a transformation pass.
Definition Analysis.h:112
A simple AA result that uses TBAA metadata to answer queries.
bool invalidate(Function &, const PreservedAnalyses &, FunctionAnalysisManager::Invalidator &)
Handle invalidation events from the new pass manager.
TypeBasedAAResult(bool UsingTypeSanitizer)
LLVM_ABI AliasResult alias(const MemoryLocation &LocA, const MemoryLocation &LocB, AAQueryInfo &AAQI, const Instruction *CtxI)
LLVM_ABI ModRefInfo getModRefInfoMask(const MemoryLocation &Loc, AAQueryInfo &AAQI, bool IgnoreLocals)
LLVM_ABI ModRefInfo getModRefInfo(const CallBase *Call, const MemoryLocation &Loc, AAQueryInfo &AAQI)
LLVM_ABI MemoryEffects getMemoryEffects(const CallBase *Call, AAQueryInfo &AAQI)
const TypeBasedAAResult & getResult() const
Analysis pass providing a never-invalidated alias analysis result.
LLVM_ABI TypeBasedAAResult run(Function &F, FunctionAnalysisManager &AM)
TypeBasedAAResult Result
CallInst * Call
This is an optimization pass for GlobalISel generic memory operations.
MemoryEffectsBase< IRMemLocation > MemoryEffects
Summary of how a function affects memory in the program.
Definition ModRef.h:296
ModRefInfo
Flags indicating whether a memory access modifies or references memory.
Definition ModRef.h:28
LLVM_ABI ImmutablePass * createTypeBasedAAWrapperPass()
AnalysisManager< Function > FunctionAnalysisManager
Convenience typedef for the Function analysis manager.
A CRTP mix-in that provides informational APIs needed for analysis passes.
Definition PassManager.h:93
A special type used by analysis passes to provide an address that identifies that particular analysis...
Definition Analysis.h:29