Reformat partially.
[oota-llvm.git] / include / llvm / Analysis / GlobalsModRef.h
1 //===- GlobalsModRef.h - Simple Mod/Ref AA for Globals ----------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 /// \file
10 /// This is the interface for a simple mod/ref and alias analysis over globlas.
11 ///
12 //===----------------------------------------------------------------------===//
13
14 #ifndef LLVM_ANALYSIS_GLOBALSMODREF_H
15 #define LLVM_ANALYSIS_GLOBALSMODREF_H
16
17 #include "llvm/Analysis/AliasAnalysis.h"
18 #include "llvm/Analysis/CallGraph.h"
19 #include "llvm/IR/Constants.h"
20 #include "llvm/IR/Function.h"
21 #include "llvm/IR/Module.h"
22 #include "llvm/IR/ValueHandle.h"
23 #include "llvm/Pass.h"
24 #include <list>
25
26 namespace llvm {
27
28 /// An alias analysis result set for globals.
29 ///
30 /// This focuses on handling aliasing properties of globals and interprocedural
31 /// function call mod/ref information.
32 class GlobalsAAResult : public AAResultBase<GlobalsAAResult> {
33   friend AAResultBase<GlobalsAAResult>;
34
35   class FunctionInfo;
36
37   const DataLayout &DL;
38
39   /// The globals that do not have their addresses taken.
40   SmallPtrSet<const GlobalValue *, 8> NonAddressTakenGlobals;
41
42   /// IndirectGlobals - The memory pointed to by this global is known to be
43   /// 'owned' by the global.
44   SmallPtrSet<const GlobalValue *, 8> IndirectGlobals;
45
46   /// AllocsForIndirectGlobals - If an instruction allocates memory for an
47   /// indirect global, this map indicates which one.
48   DenseMap<const Value *, const GlobalValue *> AllocsForIndirectGlobals;
49
50   /// For each function, keep track of what globals are modified or read.
51   DenseMap<const Function *, FunctionInfo> FunctionInfos;
52
53   /// Handle to clear this analysis on deletion of values.
54   struct DeletionCallbackHandle final : CallbackVH {
55     GlobalsAAResult *GAR;
56     std::list<DeletionCallbackHandle>::iterator I;
57
58     DeletionCallbackHandle(GlobalsAAResult &GAR, Value *V)
59         : CallbackVH(V), GAR(&GAR) {}
60
61     void deleted() override;
62   };
63
64   /// List of callbacks for globals being tracked by this analysis. Note that
65   /// these objects are quite large, but we only anticipate having one per
66   /// global tracked by this analysis. There are numerous optimizations we
67   /// could perform to the memory utilization here if this becomes a problem.
68   std::list<DeletionCallbackHandle> Handles;
69
70   explicit GlobalsAAResult(const DataLayout &DL, const TargetLibraryInfo &TLI);
71
72 public:
73   GlobalsAAResult(GlobalsAAResult &&Arg);
74
75   static GlobalsAAResult analyzeModule(Module &M, const TargetLibraryInfo &TLI,
76                                        CallGraph &CG);
77
78   //------------------------------------------------
79   // Implement the AliasAnalysis API
80   //
81   AliasResult alias(const MemoryLocation &LocA, const MemoryLocation &LocB);
82
83   using AAResultBase::getModRefInfo;
84   ModRefInfo getModRefInfo(ImmutableCallSite CS, const MemoryLocation &Loc);
85
86   /// getModRefBehavior - Return the behavior of the specified function if
87   /// called from the specified call site.  The call site may be null in which
88   /// case the most generic behavior of this function should be returned.
89   FunctionModRefBehavior getModRefBehavior(const Function *F);
90
91   /// getModRefBehavior - Return the behavior of the specified function if
92   /// called from the specified call site.  The call site may be null in which
93   /// case the most generic behavior of this function should be returned.
94   FunctionModRefBehavior getModRefBehavior(ImmutableCallSite CS);
95
96 private:
97   FunctionInfo *getFunctionInfo(const Function *F);
98
99   void AnalyzeGlobals(Module &M);
100   void AnalyzeCallGraph(CallGraph &CG, Module &M);
101   bool AnalyzeUsesOfPointer(Value *V,
102                             SmallPtrSetImpl<Function *> *Readers = nullptr,
103                             SmallPtrSetImpl<Function *> *Writers = nullptr,
104                             GlobalValue *OkayStoreDest = nullptr);
105   bool AnalyzeIndirectGlobalMemory(GlobalValue *GV);
106
107   bool isNonEscapingGlobalNoAlias(const GlobalValue *GV, const Value *V);
108 };
109
110 /// Analysis pass providing a never-invalidated alias analysis result.
111 class GlobalsAA {
112 public:
113   typedef GlobalsAAResult Result;
114
115   /// \brief Opaque, unique identifier for this analysis pass.
116   static void *ID() { return (void *)&PassID; }
117
118   GlobalsAAResult run(Module &M, AnalysisManager<Module> *AM);
119
120   /// \brief Provide access to a name for this pass for debugging purposes.
121   static StringRef name() { return "GlobalsAA"; }
122
123 private:
124   static char PassID;
125 };
126
127 /// Legacy wrapper pass to provide the GlobalsAAResult object.
128 class GlobalsAAWrapperPass : public ModulePass {
129   std::unique_ptr<GlobalsAAResult> Result;
130
131 public:
132   static char ID;
133
134   GlobalsAAWrapperPass();
135
136   GlobalsAAResult &getResult() { return *Result; }
137   const GlobalsAAResult &getResult() const { return *Result; }
138
139   bool runOnModule(Module &M) override;
140   bool doFinalization(Module &M) override;
141   void getAnalysisUsage(AnalysisUsage &AU) const override;
142 };
143
144 //===--------------------------------------------------------------------===//
145 //
146 // createGlobalsAAWrapperPass - This pass provides alias and mod/ref info for
147 // global values that do not have their addresses taken.
148 //
149 ModulePass *createGlobalsAAWrapperPass();
150 }
151
152 #endif