Re-apply LiveInterval index dumping patch, with fixes suggested by Bill
[oota-llvm.git] / include / llvm / CodeGen / MachineFunction.h
1 //===-- llvm/CodeGen/MachineFunction.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 native machine code for a function.  This class contains a list of
11 // MachineBasicBlock instances that make up the current compiled function.
12 //
13 // This class also contains pointers to various classes which hold
14 // target-specific information about the generated code.
15 //
16 //===----------------------------------------------------------------------===//
17
18 #ifndef LLVM_CODEGEN_MACHINEFUNCTION_H
19 #define LLVM_CODEGEN_MACHINEFUNCTION_H
20
21 #include "llvm/ADT/ilist.h"
22 #include "llvm/Support/DebugLoc.h"
23 #include "llvm/CodeGen/Dump.h"
24 #include "llvm/CodeGen/MachineBasicBlock.h"
25 #include "llvm/Support/Allocator.h"
26 #include "llvm/Support/Recycler.h"
27
28 namespace llvm {
29
30 class Function;
31 class MachineRegisterInfo;
32 class MachineFrameInfo;
33 class MachineConstantPool;
34 class MachineJumpTableInfo;
35 class TargetMachine;
36 class TargetRegisterClass;
37
38 template <>
39 struct ilist_traits<MachineBasicBlock>
40     : public ilist_default_traits<MachineBasicBlock> {
41   mutable ilist_node<MachineBasicBlock> Sentinel;
42 public:
43   MachineBasicBlock *createSentinel() const {
44     return static_cast<MachineBasicBlock*>(&Sentinel);
45   }
46   void destroySentinel(MachineBasicBlock *) const {}
47
48   MachineBasicBlock *provideInitialHead() const { return createSentinel(); }
49   MachineBasicBlock *ensureHead(MachineBasicBlock*) const {
50     return createSentinel();
51   }
52   static void noteHead(MachineBasicBlock*, MachineBasicBlock*) {}
53
54   void addNodeToList(MachineBasicBlock* MBB);
55   void removeNodeFromList(MachineBasicBlock* MBB);
56   void deleteNode(MachineBasicBlock *MBB);
57 private:
58   void createNode(const MachineBasicBlock &);
59 };
60
61 /// MachineFunctionInfo - This class can be derived from and used by targets to
62 /// hold private target-specific information for each MachineFunction.  Objects
63 /// of type are accessed/created with MF::getInfo and destroyed when the
64 /// MachineFunction is destroyed.
65 struct MachineFunctionInfo {
66   virtual ~MachineFunctionInfo() {}
67 };
68
69 class MachineFunction {
70   Function *Fn;
71   const TargetMachine &Target;
72
73   // RegInfo - Information about each register in use in the function.
74   MachineRegisterInfo *RegInfo;
75
76   // Used to keep track of target-specific per-machine function information for
77   // the target implementation.
78   MachineFunctionInfo *MFInfo;
79
80   // Keep track of objects allocated on the stack.
81   MachineFrameInfo *FrameInfo;
82
83   // Keep track of constants which are spilled to memory
84   MachineConstantPool *ConstantPool;
85   
86   // Keep track of jump tables for switch instructions
87   MachineJumpTableInfo *JumpTableInfo;
88
89   // Function-level unique numbering for MachineBasicBlocks.  When a
90   // MachineBasicBlock is inserted into a MachineFunction is it automatically
91   // numbered and this vector keeps track of the mapping from ID's to MBB's.
92   std::vector<MachineBasicBlock*> MBBNumbering;
93
94   // Pool-allocate MachineFunction-lifetime and IR objects.
95   BumpPtrAllocator Allocator;
96
97   // Allocation management for instructions in function.
98   Recycler<MachineInstr> InstructionRecycler;
99
100   // Allocation management for basic blocks in function.
101   Recycler<MachineBasicBlock> BasicBlockRecycler;
102
103   // List of machine basic blocks in function
104   typedef ilist<MachineBasicBlock> BasicBlockListType;
105   BasicBlockListType BasicBlocks;
106
107   // Default debug location. Used to print out the debug label at the beginning
108   // of a function.
109   DebugLoc DefaultDebugLoc;
110
111   // Tracks debug locations.
112   DebugLocTracker DebugLocInfo;
113
114   // The alignment of the function.
115   unsigned Alignment;
116
117 public:
118   MachineFunction(Function *Fn, const TargetMachine &TM);
119   ~MachineFunction();
120
121   /// getFunction - Return the LLVM function that this machine code represents
122   ///
123   Function *getFunction() const { return Fn; }
124
125   /// getTarget - Return the target machine this machine code is compiled with
126   ///
127   const TargetMachine &getTarget() const { return Target; }
128
129   /// getRegInfo - Return information about the registers currently in use.
130   ///
131   MachineRegisterInfo &getRegInfo() { return *RegInfo; }
132   const MachineRegisterInfo &getRegInfo() const { return *RegInfo; }
133
134   /// getFrameInfo - Return the frame info object for the current function.
135   /// This object contains information about objects allocated on the stack
136   /// frame of the current function in an abstract way.
137   ///
138   MachineFrameInfo *getFrameInfo() { return FrameInfo; }
139   const MachineFrameInfo *getFrameInfo() const { return FrameInfo; }
140
141   /// getJumpTableInfo - Return the jump table info object for the current 
142   /// function.  This object contains information about jump tables for switch
143   /// instructions in the current function.
144   ///
145   MachineJumpTableInfo *getJumpTableInfo() { return JumpTableInfo; }
146   const MachineJumpTableInfo *getJumpTableInfo() const { return JumpTableInfo; }
147   
148   /// getConstantPool - Return the constant pool object for the current
149   /// function.
150   ///
151   MachineConstantPool *getConstantPool() { return ConstantPool; }
152   const MachineConstantPool *getConstantPool() const { return ConstantPool; }
153
154   /// getAlignment - Return the alignment (log2, not bytes) of the function.
155   ///
156   unsigned getAlignment() const { return Alignment; }
157
158   /// setAlignment - Set the alignment (log2, not bytes) of the function.
159   ///
160   void setAlignment(unsigned A) { Alignment = A; }
161
162   /// MachineFunctionInfo - Keep track of various per-function pieces of
163   /// information for backends that would like to do so.
164   ///
165   template<typename Ty>
166   Ty *getInfo() {
167     if (!MFInfo) {
168         // This should be just `new (Allocator.Allocate<Ty>()) Ty(*this)', but
169         // that apparently breaks GCC 3.3.
170         Ty *Loc = static_cast<Ty*>(Allocator.Allocate(sizeof(Ty),
171                                                       AlignOf<Ty>::Alignment));
172         MFInfo = new (Loc) Ty(*this);
173     }
174
175     assert((void*)dynamic_cast<Ty*>(MFInfo) == (void*)MFInfo &&
176            "Invalid concrete type or multiple inheritence for getInfo");
177     return static_cast<Ty*>(MFInfo);
178   }
179
180   template<typename Ty>
181   const Ty *getInfo() const {
182      return const_cast<MachineFunction*>(this)->getInfo<Ty>();
183   }
184
185   /// getBlockNumbered - MachineBasicBlocks are automatically numbered when they
186   /// are inserted into the machine function.  The block number for a machine
187   /// basic block can be found by using the MBB::getBlockNumber method, this
188   /// method provides the inverse mapping.
189   ///
190   MachineBasicBlock *getBlockNumbered(unsigned N) const {
191     assert(N < MBBNumbering.size() && "Illegal block number");
192     assert(MBBNumbering[N] && "Block was removed from the machine function!");
193     return MBBNumbering[N];
194   }
195
196   /// getNumBlockIDs - Return the number of MBB ID's allocated.
197   ///
198   unsigned getNumBlockIDs() const { return (unsigned)MBBNumbering.size(); }
199   
200   /// RenumberBlocks - This discards all of the MachineBasicBlock numbers and
201   /// recomputes them.  This guarantees that the MBB numbers are sequential,
202   /// dense, and match the ordering of the blocks within the function.  If a
203   /// specific MachineBasicBlock is specified, only that block and those after
204   /// it are renumbered.
205   void RenumberBlocks(MachineBasicBlock *MBBFrom = 0);
206   
207   /// print - Print out the MachineFunction in a format suitable for debugging
208   /// to the specified stream.
209   ///
210   void print(std::ostream &OS, 
211              const PrefixPrinter &prefix = PrefixPrinter()) const;
212   void print(std::ostream *OS,
213              const PrefixPrinter &prefix = PrefixPrinter()) const {
214     if (OS) print(*OS, prefix); 
215   }
216
217   /// viewCFG - This function is meant for use from the debugger.  You can just
218   /// say 'call F->viewCFG()' and a ghostview window should pop up from the
219   /// program, displaying the CFG of the current function with the code for each
220   /// basic block inside.  This depends on there being a 'dot' and 'gv' program
221   /// in your path.
222   ///
223   void viewCFG() const;
224
225   /// viewCFGOnly - This function is meant for use from the debugger.  It works
226   /// just like viewCFG, but it does not include the contents of basic blocks
227   /// into the nodes, just the label.  If you are only interested in the CFG
228   /// this can make the graph smaller.
229   ///
230   void viewCFGOnly() const;
231
232   /// dump - Print the current MachineFunction to cerr, useful for debugger use.
233   ///
234   void dump() const;
235
236   // Provide accessors for the MachineBasicBlock list...
237   typedef BasicBlockListType::iterator iterator;
238   typedef BasicBlockListType::const_iterator const_iterator;
239   typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
240   typedef std::reverse_iterator<iterator>             reverse_iterator;
241
242   /// addLiveIn - Add the specified physical register as a live-in value and
243   /// create a corresponding virtual register for it.
244   unsigned addLiveIn(unsigned PReg, const TargetRegisterClass *RC);
245
246   //===--------------------------------------------------------------------===//
247   // BasicBlock accessor functions.
248   //
249   iterator                 begin()       { return BasicBlocks.begin(); }
250   const_iterator           begin() const { return BasicBlocks.begin(); }
251   iterator                 end  ()       { return BasicBlocks.end();   }
252   const_iterator           end  () const { return BasicBlocks.end();   }
253
254   reverse_iterator        rbegin()       { return BasicBlocks.rbegin(); }
255   const_reverse_iterator  rbegin() const { return BasicBlocks.rbegin(); }
256   reverse_iterator        rend  ()       { return BasicBlocks.rend();   }
257   const_reverse_iterator  rend  () const { return BasicBlocks.rend();   }
258
259   unsigned                  size() const { return (unsigned)BasicBlocks.size();}
260   bool                     empty() const { return BasicBlocks.empty(); }
261   const MachineBasicBlock &front() const { return BasicBlocks.front(); }
262         MachineBasicBlock &front()       { return BasicBlocks.front(); }
263   const MachineBasicBlock & back() const { return BasicBlocks.back(); }
264         MachineBasicBlock & back()       { return BasicBlocks.back(); }
265
266   void push_back (MachineBasicBlock *MBB) { BasicBlocks.push_back (MBB); }
267   void push_front(MachineBasicBlock *MBB) { BasicBlocks.push_front(MBB); }
268   void insert(iterator MBBI, MachineBasicBlock *MBB) {
269     BasicBlocks.insert(MBBI, MBB);
270   }
271   void splice(iterator InsertPt, iterator MBBI) {
272     BasicBlocks.splice(InsertPt, BasicBlocks, MBBI);
273   }
274
275   void remove(iterator MBBI) {
276     BasicBlocks.remove(MBBI);
277   }
278   void erase(iterator MBBI) {
279     BasicBlocks.erase(MBBI);
280   }
281
282   //===--------------------------------------------------------------------===//
283   // Internal functions used to automatically number MachineBasicBlocks
284   //
285
286   /// getNextMBBNumber - Returns the next unique number to be assigned
287   /// to a MachineBasicBlock in this MachineFunction.
288   ///
289   unsigned addToMBBNumbering(MachineBasicBlock *MBB) {
290     MBBNumbering.push_back(MBB);
291     return (unsigned)MBBNumbering.size()-1;
292   }
293
294   /// removeFromMBBNumbering - Remove the specific machine basic block from our
295   /// tracker, this is only really to be used by the MachineBasicBlock
296   /// implementation.
297   void removeFromMBBNumbering(unsigned N) {
298     assert(N < MBBNumbering.size() && "Illegal basic block #");
299     MBBNumbering[N] = 0;
300   }
301
302   /// CreateMachineInstr - Allocate a new MachineInstr. Use this instead
303   /// of `new MachineInstr'.
304   ///
305   MachineInstr *CreateMachineInstr(const TargetInstrDesc &TID,
306                                    DebugLoc DL,
307                                    bool NoImp = false);
308
309   /// CloneMachineInstr - Create a new MachineInstr which is a copy of the
310   /// 'Orig' instruction, identical in all ways except the the instruction
311   /// has no parent, prev, or next.
312   ///
313   MachineInstr *CloneMachineInstr(const MachineInstr *Orig);
314
315   /// DeleteMachineInstr - Delete the given MachineInstr.
316   ///
317   void DeleteMachineInstr(MachineInstr *MI);
318
319   /// CreateMachineBasicBlock - Allocate a new MachineBasicBlock. Use this
320   /// instead of `new MachineBasicBlock'.
321   ///
322   MachineBasicBlock *CreateMachineBasicBlock(const BasicBlock *bb = 0);
323
324   /// DeleteMachineBasicBlock - Delete the given MachineBasicBlock.
325   ///
326   void DeleteMachineBasicBlock(MachineBasicBlock *MBB);
327
328   //===--------------------------------------------------------------------===//
329   // Debug location.
330   //
331
332   /// getOrCreateDebugLocID - Look up the DebugLocTuple index with the given
333   /// source file, line, and column. If none currently exists, create a new
334   /// DebugLocTuple, and insert it into the DebugIdMap.
335   unsigned getOrCreateDebugLocID(GlobalVariable *CompileUnit,
336                                  unsigned Line, unsigned Col);
337
338   /// getDebugLocTuple - Get the DebugLocTuple for a given DebugLoc object.
339   DebugLocTuple getDebugLocTuple(DebugLoc DL) const;
340
341   /// getDefaultDebugLoc - Get the default debug location for the machine
342   /// function.
343   DebugLoc getDefaultDebugLoc() const { return DefaultDebugLoc; }
344
345   /// setDefaultDebugLoc - Get the default debug location for the machine
346   /// function.
347   void setDefaultDebugLoc(DebugLoc DL) { DefaultDebugLoc = DL; }
348
349   /// getDebugLocInfo - Get the debug info location tracker.
350   DebugLocTracker &getDebugLocInfo() { return DebugLocInfo; }
351 };
352
353 //===--------------------------------------------------------------------===//
354 // GraphTraits specializations for function basic block graphs (CFGs)
355 //===--------------------------------------------------------------------===//
356
357 // Provide specializations of GraphTraits to be able to treat a
358 // machine function as a graph of machine basic blocks... these are
359 // the same as the machine basic block iterators, except that the root
360 // node is implicitly the first node of the function.
361 //
362 template <> struct GraphTraits<MachineFunction*> :
363   public GraphTraits<MachineBasicBlock*> {
364   static NodeType *getEntryNode(MachineFunction *F) {
365     return &F->front();
366   }
367
368   // nodes_iterator/begin/end - Allow iteration over all nodes in the graph
369   typedef MachineFunction::iterator nodes_iterator;
370   static nodes_iterator nodes_begin(MachineFunction *F) { return F->begin(); }
371   static nodes_iterator nodes_end  (MachineFunction *F) { return F->end(); }
372 };
373 template <> struct GraphTraits<const MachineFunction*> :
374   public GraphTraits<const MachineBasicBlock*> {
375   static NodeType *getEntryNode(const MachineFunction *F) {
376     return &F->front();
377   }
378
379   // nodes_iterator/begin/end - Allow iteration over all nodes in the graph
380   typedef MachineFunction::const_iterator nodes_iterator;
381   static nodes_iterator nodes_begin(const MachineFunction *F) {
382     return F->begin();
383   }
384   static nodes_iterator nodes_end  (const MachineFunction *F) {
385     return F->end();
386   }
387 };
388
389
390 // Provide specializations of GraphTraits to be able to treat a function as a
391 // graph of basic blocks... and to walk it in inverse order.  Inverse order for
392 // a function is considered to be when traversing the predecessor edges of a BB
393 // instead of the successor edges.
394 //
395 template <> struct GraphTraits<Inverse<MachineFunction*> > :
396   public GraphTraits<Inverse<MachineBasicBlock*> > {
397   static NodeType *getEntryNode(Inverse<MachineFunction*> G) {
398     return &G.Graph->front();
399   }
400 };
401 template <> struct GraphTraits<Inverse<const MachineFunction*> > :
402   public GraphTraits<Inverse<const MachineBasicBlock*> > {
403   static NodeType *getEntryNode(Inverse<const MachineFunction *> G) {
404     return &G.Graph->front();
405   }
406 };
407
408 } // End llvm namespace
409
410 #endif