Make non-local memdep not be recursive, and fix a bug on 403.gcc that this exposed.
[oota-llvm.git] / include / llvm / Analysis / MemoryDependenceAnalysis.h
1 //===- llvm/Analysis/MemoryDependenceAnalysis.h - Memory Deps  --*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the Owen Anderson and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file defines an analysis that determines, for a given memory operation,
11 // what preceding memory operations it depends on.  It builds on alias analysis
12 // information, and tries to provide a lazy, caching interface to a common kind
13 // of alias information query.
14 //
15 //===----------------------------------------------------------------------===//
16
17 #ifndef LLVM_ANALYSIS_MEMORY_DEPENDENCE_H
18 #define LLVM_ANALYSIS_MEMORY_DEPENDENCE_H
19
20 #include "llvm/Pass.h"
21 #include "llvm/Support/CallSite.h"
22 #include "llvm/ADT/DenseMap.h"
23 #include "llvm/ADT/SmallPtrSet.h"
24 #include "llvm/Support/Compiler.h"
25 #include <map>
26
27 namespace llvm {
28
29 class Function;
30 class FunctionPass;
31 class Instruction;
32
33 class MemoryDependenceAnalysis : public FunctionPass {
34   private:
35
36     typedef DenseMap<Instruction*, std::pair<Instruction*, bool> > 
37     depMapType;
38
39     depMapType depGraphLocal;
40
41     typedef std::multimap<Instruction*, Instruction*> reverseDepMapType;
42     reverseDepMapType reverseDep;
43   
44     Instruction* getCallSiteDependency(CallSite C, Instruction* start,
45                                        bool local = true);
46     void nonLocalHelper(Instruction* query, BasicBlock* block,
47                         DenseMap<BasicBlock*, Value*>& resp);
48   public:
49     
50     static Instruction* NonLocal;
51     static Instruction* None;
52     
53     static char ID; // Class identification, replacement for typeinfo
54     MemoryDependenceAnalysis() : FunctionPass((intptr_t)&ID) {}
55
56     /// Pass Implementation stuff.  This doesn't do any analysis.
57     ///
58     bool runOnFunction(Function &) {return false; }
59     
60     /// Clean up memory in between runs
61     void releaseMemory() {
62       depGraphLocal.clear();
63       reverseDep.clear();
64     }
65
66     /// getAnalysisUsage - Does not modify anything.  It uses Value Numbering
67     /// and Alias Analysis.
68     ///
69     virtual void getAnalysisUsage(AnalysisUsage &AU) const;
70     
71     /// getDependency - Return the instruction on which a memory operation
72     /// depends, starting with start.
73     Instruction* getDependency(Instruction* query, Instruction* start = 0,
74                                BasicBlock* block = 0);
75     
76     void getNonLocalDependency(Instruction* query,
77                                DenseMap<BasicBlock*, Value*>& resp);
78     
79     /// removeInstruction - Remove an instruction from the dependence analysis,
80     /// updating the dependence of instructions that previously depended on it.
81     void removeInstruction(Instruction* rem);
82   };
83
84 } // End llvm namespace
85
86 #endif