remove a noop function.
[oota-llvm.git] / include / llvm / CodeGen / MachineModuleInfo.h
1 //===-- llvm/CodeGen/MachineModuleInfo.h ------------------------*- 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 //
10 // Collect meta information for a module.  This information should be in a
11 // neutral form that can be used by different debugging and exception handling
12 // schemes.
13 //
14 // The organization of information is primarily clustered around the source
15 // compile units.  The main exception is source line correspondence where
16 // inlining may interleave code from various compile units.
17 //
18 // The following information can be retrieved from the MachineModuleInfo.
19 //
20 //  -- Source directories - Directories are uniqued based on their canonical
21 //     string and assigned a sequential numeric ID (base 1.)
22 //  -- Source files - Files are also uniqued based on their name and directory
23 //     ID.  A file ID is sequential number (base 1.)
24 //  -- Source line correspondence - A vector of file ID, line#, column# triples.
25 //     A DEBUG_LOCATION instruction is generated  by the DAG Legalizer
26 //     corresponding to each entry in the source line list.  This allows a debug
27 //     emitter to generate labels referenced by debug information tables.
28 //
29 //===----------------------------------------------------------------------===//
30
31 #ifndef LLVM_CODEGEN_MACHINEMODULEINFO_H
32 #define LLVM_CODEGEN_MACHINEMODULEINFO_H
33
34 #include "llvm/Support/Dwarf.h"
35 #include "llvm/System/DataTypes.h"
36 #include "llvm/ADT/SmallVector.h"
37 #include "llvm/ADT/DenseMap.h"
38 #include "llvm/ADT/UniqueVector.h"
39 #include "llvm/ADT/SmallPtrSet.h"
40 #include "llvm/ADT/SmallSet.h"
41 #include "llvm/ADT/StringMap.h"
42 #include "llvm/CodeGen/MachineLocation.h"
43 #include "llvm/GlobalValue.h"
44 #include "llvm/Pass.h"
45 #include "llvm/Metadata.h"
46 #include "llvm/Support/ValueHandle.h"
47
48 namespace llvm {
49
50 //===----------------------------------------------------------------------===//
51 // Forward declarations.
52 class Constant;
53 class MDNode;
54 class GlobalVariable;
55 class MachineBasicBlock;
56 class MachineFunction;
57 class Module;
58 class PointerType;
59 class StructType;
60   
61   
62 /// MachineModuleInfoImpl - This class can be derived from and used by targets
63 /// to hold private target-specific information for each Module.  Objects of
64 /// type are accessed/created with MMI::getInfo and destroyed when the
65 /// MachineModuleInfo is destroyed.
66 class MachineModuleInfoImpl {
67 public:
68   virtual ~MachineModuleInfoImpl();
69 };
70   
71   
72
73 //===----------------------------------------------------------------------===//
74 /// LandingPadInfo - This structure is used to retain landing pad info for
75 /// the current function.
76 ///
77 struct LandingPadInfo {
78   MachineBasicBlock *LandingPadBlock;   // Landing pad block.
79   SmallVector<unsigned, 1> BeginLabels; // Labels prior to invoke.
80   SmallVector<unsigned, 1> EndLabels;   // Labels after invoke.
81   unsigned LandingPadLabel;             // Label at beginning of landing pad.
82   Function *Personality;                // Personality function.
83   std::vector<int> TypeIds;             // List of type ids (filters negative)
84
85   explicit LandingPadInfo(MachineBasicBlock *MBB)
86   : LandingPadBlock(MBB)
87   , LandingPadLabel(0)
88   , Personality(NULL)  
89   {}
90 };
91
92 //===----------------------------------------------------------------------===//
93 /// MachineModuleInfo - This class contains meta information specific to a
94 /// module.  Queries can be made by different debugging and exception handling 
95 /// schemes and reformated for specific use.
96 ///
97 class MachineModuleInfo : public ImmutablePass {
98   /// ObjFileMMI - This is the object-file-format-specific implementation of
99   /// MachineModuleInfoImpl, which lets targets accumulate whatever info they
100   /// want.
101   MachineModuleInfoImpl *ObjFileMMI;
102
103   // LabelIDList - One entry per assigned label.  Normally the entry is equal to
104   // the list index(+1).  If the entry is zero then the label has been deleted.
105   // Any other value indicates the label has been deleted by is mapped to
106   // another label.
107   std::vector<unsigned> LabelIDList;
108   
109   // FrameMoves - List of moves done by a function's prolog.  Used to construct
110   // frame maps by debug and exception handling consumers.
111   std::vector<MachineMove> FrameMoves;
112   
113   // LandingPads - List of LandingPadInfo describing the landing pad information
114   // in the current function.
115   std::vector<LandingPadInfo> LandingPads;
116   
117   // TypeInfos - List of C++ TypeInfo used in the current function.
118   //
119   std::vector<GlobalVariable *> TypeInfos;
120
121   // FilterIds - List of typeids encoding filters used in the current function.
122   //
123   std::vector<unsigned> FilterIds;
124
125   // FilterEnds - List of the indices in FilterIds corresponding to filter
126   // terminators.
127   //
128   std::vector<unsigned> FilterEnds;
129
130   // Personalities - Vector of all personality functions ever seen. Used to emit
131   // common EH frames.
132   std::vector<Function *> Personalities;
133
134   /// UsedFunctions - The functions in the @llvm.used list in a more easily
135   /// searchable format.  This does not include the functions in
136   /// llvm.compiler.used.
137   SmallPtrSet<const Function *, 32> UsedFunctions;
138
139   bool CallsEHReturn;
140   bool CallsUnwindInit;
141  
142   /// DbgInfoAvailable - True if debugging information is available
143   /// in this module.
144   bool DbgInfoAvailable;
145
146 public:
147   static char ID; // Pass identification, replacement for typeid
148
149   typedef std::pair<unsigned, TrackingVH<MDNode> > UnsignedAndMDNodePair;
150   typedef SmallVector< std::pair<TrackingVH<MDNode>, UnsignedAndMDNodePair>, 4>
151     VariableDbgInfoMapTy;
152   VariableDbgInfoMapTy VariableDbgInfo;
153
154   MachineModuleInfo();
155   ~MachineModuleInfo();
156   
157   bool doInitialization();
158   bool doFinalization();
159
160   /// EndFunction - Discard function meta information.
161   ///
162   void EndFunction();
163
164   /// getInfo - Keep track of various per-function pieces of information for
165   /// backends that would like to do so.
166   ///
167   template<typename Ty>
168   Ty &getObjFileInfo() {
169     if (ObjFileMMI == 0)
170       ObjFileMMI = new Ty(*this);
171     return *static_cast<Ty*>(ObjFileMMI);
172   }
173   
174   template<typename Ty>
175   const Ty &getObjFileInfo() const {
176     return const_cast<MachineModuleInfo*>(this)->getObjFileInfo<Ty>();
177   }
178   
179   /// AnalyzeModule - Scan the module for global debug information.
180   ///
181   void AnalyzeModule(Module &M);
182   
183   /// hasDebugInfo - Returns true if valid debug info is present.
184   ///
185   bool hasDebugInfo() const { return DbgInfoAvailable; }
186   void setDebugInfoAvailability(bool avail) { DbgInfoAvailable = true; }
187
188   bool callsEHReturn() const { return CallsEHReturn; }
189   void setCallsEHReturn(bool b) { CallsEHReturn = b; }
190
191   bool callsUnwindInit() const { return CallsUnwindInit; }
192   void setCallsUnwindInit(bool b) { CallsUnwindInit = b; }
193   
194   /// NextLabelID - Return the next unique label id.
195   ///
196   unsigned NextLabelID() {
197     unsigned ID = (unsigned)LabelIDList.size() + 1;
198     LabelIDList.push_back(ID);
199     return ID;
200   }
201   
202   /// InvalidateLabel - Inhibit use of the specified label # from
203   /// MachineModuleInfo, for example because the code was deleted.
204   void InvalidateLabel(unsigned LabelID) {
205     // Remap to zero to indicate deletion.
206     RemapLabel(LabelID, 0);
207   }
208
209   /// RemapLabel - Indicate that a label has been merged into another.
210   ///
211   void RemapLabel(unsigned OldLabelID, unsigned NewLabelID) {
212     assert(0 < OldLabelID && OldLabelID <= LabelIDList.size() &&
213           "Old label ID out of range.");
214     assert(NewLabelID <= LabelIDList.size() &&
215           "New label ID out of range.");
216     LabelIDList[OldLabelID - 1] = NewLabelID;
217   }
218   
219   /// MappedLabel - Find out the label's final ID.  Zero indicates deletion.
220   /// ID != Mapped ID indicates that the label was folded into another label.
221   unsigned MappedLabel(unsigned LabelID) const {
222     assert(LabelID <= LabelIDList.size() && "Debug label ID out of range.");
223     return LabelID ? LabelIDList[LabelID - 1] : 0;
224   }
225
226   /// getFrameMoves - Returns a reference to a list of moves done in the current
227   /// function's prologue.  Used to construct frame maps for debug and exception
228   /// handling comsumers.
229   std::vector<MachineMove> &getFrameMoves() { return FrameMoves; }
230   
231   //===-EH-----------------------------------------------------------------===//
232
233   /// getOrCreateLandingPadInfo - Find or create an LandingPadInfo for the
234   /// specified MachineBasicBlock.
235   LandingPadInfo &getOrCreateLandingPadInfo(MachineBasicBlock *LandingPad);
236
237   /// addInvoke - Provide the begin and end labels of an invoke style call and
238   /// associate it with a try landing pad block.
239   void addInvoke(MachineBasicBlock *LandingPad, unsigned BeginLabel,
240                                                 unsigned EndLabel);
241   
242   /// addLandingPad - Add a new panding pad.  Returns the label ID for the 
243   /// landing pad entry.
244   unsigned addLandingPad(MachineBasicBlock *LandingPad);
245   
246   /// addPersonality - Provide the personality function for the exception
247   /// information.
248   void addPersonality(MachineBasicBlock *LandingPad, Function *Personality);
249
250   /// getPersonalityIndex - Get index of the current personality function inside
251   /// Personalitites array
252   unsigned getPersonalityIndex() const;
253
254   /// getPersonalities - Return array of personality functions ever seen.
255   const std::vector<Function *>& getPersonalities() const {
256     return Personalities;
257   }
258
259   /// isUsedFunction - Return true if the functions in the llvm.used list.  This
260   /// does not return true for things in llvm.compiler.used unless they are also
261   /// in llvm.used.
262   bool isUsedFunction(const Function *F) {
263     return UsedFunctions.count(F);
264   }
265
266   /// addCatchTypeInfo - Provide the catch typeinfo for a landing pad.
267   ///
268   void addCatchTypeInfo(MachineBasicBlock *LandingPad,
269                         std::vector<GlobalVariable *> &TyInfo);
270
271   /// addFilterTypeInfo - Provide the filter typeinfo for a landing pad.
272   ///
273   void addFilterTypeInfo(MachineBasicBlock *LandingPad,
274                          std::vector<GlobalVariable *> &TyInfo);
275
276   /// addCleanup - Add a cleanup action for a landing pad.
277   ///
278   void addCleanup(MachineBasicBlock *LandingPad);
279
280   /// getTypeIDFor - Return the type id for the specified typeinfo.  This is 
281   /// function wide.
282   unsigned getTypeIDFor(GlobalVariable *TI);
283
284   /// getFilterIDFor - Return the id of the filter encoded by TyIds.  This is
285   /// function wide.
286   int getFilterIDFor(std::vector<unsigned> &TyIds);
287
288   /// TidyLandingPads - Remap landing pad labels and remove any deleted landing
289   /// pads.
290   void TidyLandingPads();
291                         
292   /// getLandingPads - Return a reference to the landing pad info for the
293   /// current function.
294   const std::vector<LandingPadInfo> &getLandingPads() const {
295     return LandingPads;
296   }
297   
298   /// getTypeInfos - Return a reference to the C++ typeinfo for the current
299   /// function.
300   const std::vector<GlobalVariable *> &getTypeInfos() const {
301     return TypeInfos;
302   }
303
304   /// getFilterIds - Return a reference to the typeids encoding filters used in
305   /// the current function.
306   const std::vector<unsigned> &getFilterIds() const {
307     return FilterIds;
308   }
309
310   /// getPersonality - Return a personality function if available.  The presence
311   /// of one is required to emit exception handling info.
312   Function *getPersonality() const;
313
314   /// setVariableDbgInfo - Collect information used to emit debugging information
315   /// of a variable.
316   void setVariableDbgInfo(MDNode *N, unsigned Slot, MDNode *Scope) {
317     VariableDbgInfo.push_back(std::make_pair(N, std::make_pair(Slot, Scope)));
318   }
319
320   VariableDbgInfoMapTy &getVariableDbgInfo() {  return VariableDbgInfo;  }
321
322 }; // End class MachineModuleInfo
323
324 } // End llvm namespace
325
326 #endif