blob: b1536a8f75257e8cda7e1a4ee54cd72aa3d50ce9 [file] [log] [blame]
Chris Lattner9c6342d2002-10-28 01:27:51 +00001//===-- llvm/CodeGen/MachineFunction.h --------------------------*- C++ -*-===//
Misha Brukmanea61c352005-04-21 20:39:54 +00002//
John Criswell6fbcc262003-10-20 20:19:47 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner7ed47a12007-12-29 19:59:42 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukmanea61c352005-04-21 20:39:54 +00007//
John Criswell6fbcc262003-10-20 20:19:47 +00008//===----------------------------------------------------------------------===//
Misha Brukmanea61c352005-04-21 20:39:54 +00009//
Chris Lattnercd0d1d12002-12-28 20:04:31 +000010// 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.
Misha Brukmanea61c352005-04-21 20:39:54 +000015//
Chris Lattnerf2868ce2002-02-03 07:54:50 +000016//===----------------------------------------------------------------------===//
17
Misha Brukmanfce11432002-10-28 00:28:31 +000018#ifndef LLVM_CODEGEN_MACHINEFUNCTION_H
19#define LLVM_CODEGEN_MACHINEFUNCTION_H
Chris Lattnerf2868ce2002-02-03 07:54:50 +000020
Dan Gohmanfed90b62008-07-28 21:51:04 +000021#include "llvm/ADT/ilist.h"
Evan Chengd0adbb52009-01-26 07:41:49 +000022#include "llvm/CodeGen/DebugLoc.h"
Chris Lattner0551f542002-10-28 02:01:06 +000023#include "llvm/CodeGen/MachineBasicBlock.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000024#include "llvm/Support/Annotation.h"
Dan Gohman8e5f2c62008-07-07 23:14:23 +000025#include "llvm/Support/Allocator.h"
26#include "llvm/Support/Recycler.h"
Chris Lattner8e7ae982002-10-28 02:08:43 +000027
Brian Gaeked0fde302003-11-11 22:41:34 +000028namespace llvm {
29
Chris Lattner8bdf87d2004-08-18 18:13:16 +000030class Function;
Chris Lattner84bc5422007-12-31 04:13:23 +000031class MachineRegisterInfo;
Chris Lattner8bdf87d2004-08-18 18:13:16 +000032class MachineFrameInfo;
33class MachineConstantPool;
Nate Begeman37efe672006-04-22 18:53:45 +000034class MachineJumpTableInfo;
Evan Chengd0adbb52009-01-26 07:41:49 +000035class TargetMachine;
Chris Lattner8bdf87d2004-08-18 18:13:16 +000036
Tanya Lattner792699c2004-05-24 06:11:51 +000037template <>
Cedric Venet8e4018e2008-09-20 18:02:18 +000038struct ilist_traits<MachineBasicBlock>
Dan Gohmanfed90b62008-07-28 21:51:04 +000039 : public ilist_default_traits<MachineBasicBlock> {
40 mutable MachineBasicBlock Sentinel;
Tanya Lattner792699c2004-05-24 06:11:51 +000041public:
Dan Gohmanfed90b62008-07-28 21:51:04 +000042 MachineBasicBlock *createSentinel() const { return &Sentinel; }
43 void destroySentinel(MachineBasicBlock *) const {}
44
Dan Gohman8e5f2c62008-07-07 23:14:23 +000045 void addNodeToList(MachineBasicBlock* MBB);
46 void removeNodeFromList(MachineBasicBlock* MBB);
Dan Gohman8e5f2c62008-07-07 23:14:23 +000047 void deleteNode(MachineBasicBlock *MBB);
Dan Gohmanfed90b62008-07-28 21:51:04 +000048private:
49 void createNode(const MachineBasicBlock &);
Tanya Lattner792699c2004-05-24 06:11:51 +000050};
Tanya Lattner792699c2004-05-24 06:11:51 +000051
Chris Lattner8bdf87d2004-08-18 18:13:16 +000052/// MachineFunctionInfo - This class can be derived from and used by targets to
53/// hold private target-specific information for each MachineFunction. Objects
54/// of type are accessed/created with MF::getInfo and destroyed when the
55/// MachineFunction is destroyed.
56struct MachineFunctionInfo {
Dan Gohman81975f62007-08-27 14:50:10 +000057 virtual ~MachineFunctionInfo() {}
Chris Lattner8bdf87d2004-08-18 18:13:16 +000058};
Chris Lattnerf2868ce2002-02-03 07:54:50 +000059
Misha Brukmanfce11432002-10-28 00:28:31 +000060class MachineFunction : private Annotation {
Chris Lattner335d5c32002-10-28 05:58:46 +000061 const Function *Fn;
62 const TargetMachine &Target;
Chris Lattner8e7ae982002-10-28 02:08:43 +000063
Chris Lattner84bc5422007-12-31 04:13:23 +000064 // RegInfo - Information about each register in use in the function.
65 MachineRegisterInfo *RegInfo;
Chris Lattner03ab7af2002-12-25 05:00:16 +000066
Chris Lattner8bdf87d2004-08-18 18:13:16 +000067 // Used to keep track of target-specific per-machine function information for
68 // the target implementation.
69 MachineFunctionInfo *MFInfo;
Chris Lattnercd0d1d12002-12-28 20:04:31 +000070
71 // Keep track of objects allocated on the stack.
Chris Lattneraa09b752002-12-28 21:08:28 +000072 MachineFrameInfo *FrameInfo;
Misha Brukman1617e6c2002-11-20 00:53:10 +000073
Chris Lattner40a75572003-01-13 00:16:10 +000074 // Keep track of constants which are spilled to memory
75 MachineConstantPool *ConstantPool;
Nate Begeman37efe672006-04-22 18:53:45 +000076
77 // Keep track of jump tables for switch instructions
78 MachineJumpTableInfo *JumpTableInfo;
Chris Lattner40a75572003-01-13 00:16:10 +000079
Chris Lattner25d80392004-07-01 06:01:36 +000080 // Function-level unique numbering for MachineBasicBlocks. When a
81 // MachineBasicBlock is inserted into a MachineFunction is it automatically
82 // numbered and this vector keeps track of the mapping from ID's to MBB's.
83 std::vector<MachineBasicBlock*> MBBNumbering;
Brian Gaekef460f162004-05-12 21:35:21 +000084
Dan Gohman8e5f2c62008-07-07 23:14:23 +000085 // Pool-allocate MachineFunction-lifetime and IR objects.
86 BumpPtrAllocator Allocator;
87
88 // Allocation management for instructions in function.
89 Recycler<MachineInstr> InstructionRecycler;
90
91 // Allocation management for basic blocks in function.
92 Recycler<MachineBasicBlock> BasicBlockRecycler;
93
Dan Gohman8e5f2c62008-07-07 23:14:23 +000094 // List of machine basic blocks in function
Dan Gohmanfed90b62008-07-28 21:51:04 +000095 typedef ilist<MachineBasicBlock> BasicBlockListType;
Dan Gohman8e5f2c62008-07-07 23:14:23 +000096 BasicBlockListType BasicBlocks;
97
Evan Chengd0adbb52009-01-26 07:41:49 +000098 // Tracks debug locations.
99 DebugLocTracker DebugLocInfo;
100
Chris Lattnerf2868ce2002-02-03 07:54:50 +0000101public:
Chris Lattner40a75572003-01-13 00:16:10 +0000102 MachineFunction(const Function *Fn, const TargetMachine &TM);
Chris Lattner03ab7af2002-12-25 05:00:16 +0000103 ~MachineFunction();
Chris Lattner335d5c32002-10-28 05:58:46 +0000104
105 /// getFunction - Return the LLVM function that this machine code represents
106 ///
107 const Function *getFunction() const { return Fn; }
108
109 /// getTarget - Return the target machine this machine code is compiled with
110 ///
111 const TargetMachine &getTarget() const { return Target; }
Chris Lattnerdea73832002-10-30 00:46:31 +0000112
Chris Lattner84bc5422007-12-31 04:13:23 +0000113 /// getRegInfo - Return information about the registers currently in use.
Chris Lattnercd0d1d12002-12-28 20:04:31 +0000114 ///
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000115 MachineRegisterInfo &getRegInfo() { return *RegInfo; }
116 const MachineRegisterInfo &getRegInfo() const { return *RegInfo; }
Chris Lattnercd0d1d12002-12-28 20:04:31 +0000117
118 /// getFrameInfo - Return the frame info object for the current function.
119 /// This object contains information about objects allocated on the stack
120 /// frame of the current function in an abstract way.
121 ///
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000122 MachineFrameInfo *getFrameInfo() { return FrameInfo; }
123 const MachineFrameInfo *getFrameInfo() const { return FrameInfo; }
Chris Lattnercd0d1d12002-12-28 20:04:31 +0000124
Nate Begeman37efe672006-04-22 18:53:45 +0000125 /// getJumpTableInfo - Return the jump table info object for the current
126 /// function. This object contains information about jump tables for switch
127 /// instructions in the current function.
128 ///
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000129 MachineJumpTableInfo *getJumpTableInfo() { return JumpTableInfo; }
130 const MachineJumpTableInfo *getJumpTableInfo() const { return JumpTableInfo; }
Nate Begeman37efe672006-04-22 18:53:45 +0000131
Chris Lattner40a75572003-01-13 00:16:10 +0000132 /// getConstantPool - Return the constant pool object for the current
133 /// function.
Misha Brukman274ba032004-08-17 17:52:36 +0000134 ///
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000135 MachineConstantPool *getConstantPool() { return ConstantPool; }
136 const MachineConstantPool *getConstantPool() const { return ConstantPool; }
Chris Lattner40a75572003-01-13 00:16:10 +0000137
Chris Lattnercd0d1d12002-12-28 20:04:31 +0000138 /// MachineFunctionInfo - Keep track of various per-function pieces of
Chris Lattner67d25622005-08-31 22:49:51 +0000139 /// information for backends that would like to do so.
Chris Lattnercd0d1d12002-12-28 20:04:31 +0000140 ///
Chris Lattner8bdf87d2004-08-18 18:13:16 +0000141 template<typename Ty>
142 Ty *getInfo() {
Dan Gohman219c7902008-07-25 00:36:05 +0000143 if (!MFInfo) {
144 // This should be just `new (Allocator.Allocate<Ty>()) Ty(*this)', but
145 // that apparently breaks GCC 3.3.
146 Ty *Loc = static_cast<Ty*>(Allocator.Allocate(sizeof(Ty),
147 AlignOf<Ty>::Alignment));
148 MFInfo = new (Loc) Ty(*this);
149 }
Chris Lattner8bdf87d2004-08-18 18:13:16 +0000150
151 assert((void*)dynamic_cast<Ty*>(MFInfo) == (void*)MFInfo &&
152 "Invalid concrete type or multiple inheritence for getInfo");
153 return static_cast<Ty*>(MFInfo);
154 }
Chris Lattnercd0d1d12002-12-28 20:04:31 +0000155
Chris Lattner5ea64fd2006-08-17 22:00:08 +0000156 template<typename Ty>
157 const Ty *getInfo() const {
158 return const_cast<MachineFunction*>(this)->getInfo<Ty>();
159 }
160
Chris Lattner25d80392004-07-01 06:01:36 +0000161 /// getBlockNumbered - MachineBasicBlocks are automatically numbered when they
162 /// are inserted into the machine function. The block number for a machine
163 /// basic block can be found by using the MBB::getBlockNumber method, this
164 /// method provides the inverse mapping.
Misha Brukman274ba032004-08-17 17:52:36 +0000165 ///
Chris Lattner25d80392004-07-01 06:01:36 +0000166 MachineBasicBlock *getBlockNumbered(unsigned N) {
167 assert(N < MBBNumbering.size() && "Illegal block number");
168 assert(MBBNumbering[N] && "Block was removed from the machine function!");
169 return MBBNumbering[N];
170 }
Chris Lattnercd0d1d12002-12-28 20:04:31 +0000171
Chris Lattner25408132006-09-14 06:40:48 +0000172 /// getNumBlockIDs - Return the number of MBB ID's allocated.
Chris Lattnere70cab02006-10-03 19:18:57 +0000173 ///
Evan Cheng34cd4a42008-05-05 18:30:58 +0000174 unsigned getNumBlockIDs() const { return (unsigned)MBBNumbering.size(); }
Jim Laskeyf5395ce2005-12-16 22:45:29 +0000175
Chris Lattnere70cab02006-10-03 19:18:57 +0000176 /// RenumberBlocks - This discards all of the MachineBasicBlock numbers and
177 /// recomputes them. This guarantees that the MBB numbers are sequential,
178 /// dense, and match the ordering of the blocks within the function. If a
179 /// specific MachineBasicBlock is specified, only that block and those after
180 /// it are renumbered.
181 void RenumberBlocks(MachineBasicBlock *MBBFrom = 0);
182
Chris Lattnerdea73832002-10-30 00:46:31 +0000183 /// print - Print out the MachineFunction in a format suitable for debugging
184 /// to the specified stream.
185 ///
186 void print(std::ostream &OS) const;
Bill Wendling5c7e3262006-12-17 05:15:13 +0000187 void print(std::ostream *OS) const { if (OS) print(*OS); }
Chris Lattnerdea73832002-10-30 00:46:31 +0000188
Alkis Evlogimenos71bf4042004-07-08 00:47:58 +0000189 /// viewCFG - This function is meant for use from the debugger. You can just
190 /// say 'call F->viewCFG()' and a ghostview window should pop up from the
191 /// program, displaying the CFG of the current function with the code for each
192 /// basic block inside. This depends on there being a 'dot' and 'gv' program
193 /// in your path.
194 ///
195 void viewCFG() const;
Misha Brukmanea61c352005-04-21 20:39:54 +0000196
Alkis Evlogimenos71bf4042004-07-08 00:47:58 +0000197 /// viewCFGOnly - This function is meant for use from the debugger. It works
198 /// just like viewCFG, but it does not include the contents of basic blocks
199 /// into the nodes, just the label. If you are only interested in the CFG
200 /// this can make the graph smaller.
201 ///
202 void viewCFGOnly() const;
203
Chris Lattnerdea73832002-10-30 00:46:31 +0000204 /// dump - Print the current MachineFunction to cerr, useful for debugger use.
205 ///
206 void dump() const;
207
Misha Brukmana7afa372004-06-04 14:51:25 +0000208 /// construct - Allocate and initialize a MachineFunction for a given Function
209 /// and Target
210 ///
Chris Lattner40a75572003-01-13 00:16:10 +0000211 static MachineFunction& construct(const Function *F, const TargetMachine &TM);
Misha Brukmana7afa372004-06-04 14:51:25 +0000212
213 /// destruct - Destroy the MachineFunction corresponding to a given Function
214 ///
Chris Lattnere7506a32002-03-23 22:51:58 +0000215 static void destruct(const Function *F);
Misha Brukmana7afa372004-06-04 14:51:25 +0000216
217 /// get - Return a handle to a MachineFunction corresponding to the given
218 /// Function. This should not be called before "construct()" for a given
219 /// Function.
220 ///
Chris Lattnerd0aa0cd2002-10-28 05:30:46 +0000221 static MachineFunction& get(const Function *F);
Chris Lattner9c6342d2002-10-28 01:27:51 +0000222
Chris Lattnerd0aa0cd2002-10-28 05:30:46 +0000223 // Provide accessors for the MachineBasicBlock list...
Chris Lattnerd0aa0cd2002-10-28 05:30:46 +0000224 typedef BasicBlockListType::iterator iterator;
225 typedef BasicBlockListType::const_iterator const_iterator;
226 typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
227 typedef std::reverse_iterator<iterator> reverse_iterator;
228
Chris Lattnerd0aa0cd2002-10-28 05:30:46 +0000229 //===--------------------------------------------------------------------===//
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000230 // BasicBlock accessor functions.
Chris Lattnerd0aa0cd2002-10-28 05:30:46 +0000231 //
232 iterator begin() { return BasicBlocks.begin(); }
233 const_iterator begin() const { return BasicBlocks.begin(); }
234 iterator end () { return BasicBlocks.end(); }
235 const_iterator end () const { return BasicBlocks.end(); }
236
237 reverse_iterator rbegin() { return BasicBlocks.rbegin(); }
238 const_reverse_iterator rbegin() const { return BasicBlocks.rbegin(); }
239 reverse_iterator rend () { return BasicBlocks.rend(); }
240 const_reverse_iterator rend () const { return BasicBlocks.rend(); }
241
Evan Cheng34cd4a42008-05-05 18:30:58 +0000242 unsigned size() const { return (unsigned)BasicBlocks.size();}
Chris Lattnerd0aa0cd2002-10-28 05:30:46 +0000243 bool empty() const { return BasicBlocks.empty(); }
244 const MachineBasicBlock &front() const { return BasicBlocks.front(); }
245 MachineBasicBlock &front() { return BasicBlocks.front(); }
Misha Brukmand5806ff2002-10-28 19:58:38 +0000246 const MachineBasicBlock & back() const { return BasicBlocks.back(); }
247 MachineBasicBlock & back() { return BasicBlocks.back(); }
Chris Lattner25d80392004-07-01 06:01:36 +0000248
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000249 void push_back (MachineBasicBlock *MBB) { BasicBlocks.push_back (MBB); }
250 void push_front(MachineBasicBlock *MBB) { BasicBlocks.push_front(MBB); }
251 void insert(iterator MBBI, MachineBasicBlock *MBB) {
252 BasicBlocks.insert(MBBI, MBB);
253 }
254 void splice(iterator InsertPt, iterator MBBI) {
255 BasicBlocks.splice(InsertPt, BasicBlocks, MBBI);
256 }
257
258 void remove(iterator MBBI) {
259 BasicBlocks.remove(MBBI);
260 }
261 void erase(iterator MBBI) {
262 BasicBlocks.erase(MBBI);
263 }
264
Chris Lattner25d80392004-07-01 06:01:36 +0000265 //===--------------------------------------------------------------------===//
266 // Internal functions used to automatically number MachineBasicBlocks
267 //
268
269 /// getNextMBBNumber - Returns the next unique number to be assigned
270 /// to a MachineBasicBlock in this MachineFunction.
271 ///
272 unsigned addToMBBNumbering(MachineBasicBlock *MBB) {
273 MBBNumbering.push_back(MBB);
Evan Cheng34cd4a42008-05-05 18:30:58 +0000274 return (unsigned)MBBNumbering.size()-1;
Chris Lattner25d80392004-07-01 06:01:36 +0000275 }
276
277 /// removeFromMBBNumbering - Remove the specific machine basic block from our
278 /// tracker, this is only really to be used by the MachineBasicBlock
279 /// implementation.
280 void removeFromMBBNumbering(unsigned N) {
281 assert(N < MBBNumbering.size() && "Illegal basic block #");
282 MBBNumbering[N] = 0;
283 }
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000284
285 /// CreateMachineInstr - Allocate a new MachineInstr. Use this instead
286 /// of `new MachineInstr'.
287 ///
288 MachineInstr *CreateMachineInstr(const TargetInstrDesc &TID,
Bill Wendling9bc96a52009-02-03 00:55:04 +0000289 DebugLoc DL,
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000290 bool NoImp = false);
291
292 /// CloneMachineInstr - Create a new MachineInstr which is a copy of the
293 /// 'Orig' instruction, identical in all ways except the the instruction
294 /// has no parent, prev, or next.
295 ///
296 MachineInstr *CloneMachineInstr(const MachineInstr *Orig);
297
298 /// DeleteMachineInstr - Delete the given MachineInstr.
299 ///
300 void DeleteMachineInstr(MachineInstr *MI);
301
302 /// CreateMachineBasicBlock - Allocate a new MachineBasicBlock. Use this
303 /// instead of `new MachineBasicBlock'.
304 ///
305 MachineBasicBlock *CreateMachineBasicBlock(const BasicBlock *bb = 0);
306
307 /// DeleteMachineBasicBlock - Delete the given MachineBasicBlock.
308 ///
309 void DeleteMachineBasicBlock(MachineBasicBlock *MBB);
Evan Chengd0adbb52009-01-26 07:41:49 +0000310
311 //===--------------------------------------------------------------------===//
312 // Debug location.
313 //
314
Evan Chengaaeea9e2009-01-27 21:15:07 +0000315 /// getOrCreateDebugLocID - Look up the DebugLocTuple index with the given
Bill Wendling85e3af92009-02-03 22:49:58 +0000316 /// source file, line, and column. If none currently exists, create a new
317 /// DebugLocTuple, and insert it into the DebugIdMap.
Evan Chengaaeea9e2009-01-27 21:15:07 +0000318 unsigned getOrCreateDebugLocID(unsigned Src, unsigned Line, unsigned Col);
Bill Wendling85e3af92009-02-03 22:49:58 +0000319
320 /// getDebugLocTuple - Get the DebugLocTuple for a given DebugLoc object.
321 const DebugLocTuple &getDebugLocTuple(DebugLoc DL);
Chris Lattnerf2868ce2002-02-03 07:54:50 +0000322};
323
Alkis Evlogimenos71bf4042004-07-08 00:47:58 +0000324//===--------------------------------------------------------------------===//
325// GraphTraits specializations for function basic block graphs (CFGs)
326//===--------------------------------------------------------------------===//
327
328// Provide specializations of GraphTraits to be able to treat a
329// machine function as a graph of machine basic blocks... these are
330// the same as the machine basic block iterators, except that the root
331// node is implicitly the first node of the function.
332//
333template <> struct GraphTraits<MachineFunction*> :
334 public GraphTraits<MachineBasicBlock*> {
335 static NodeType *getEntryNode(MachineFunction *F) {
336 return &F->front();
337 }
338
339 // nodes_iterator/begin/end - Allow iteration over all nodes in the graph
340 typedef MachineFunction::iterator nodes_iterator;
341 static nodes_iterator nodes_begin(MachineFunction *F) { return F->begin(); }
342 static nodes_iterator nodes_end (MachineFunction *F) { return F->end(); }
343};
344template <> struct GraphTraits<const MachineFunction*> :
345 public GraphTraits<const MachineBasicBlock*> {
346 static NodeType *getEntryNode(const MachineFunction *F) {
347 return &F->front();
348 }
349
350 // nodes_iterator/begin/end - Allow iteration over all nodes in the graph
351 typedef MachineFunction::const_iterator nodes_iterator;
352 static nodes_iterator nodes_begin(const MachineFunction *F) { return F->begin(); }
353 static nodes_iterator nodes_end (const MachineFunction *F) { return F->end(); }
354};
355
356
Misha Brukmanea61c352005-04-21 20:39:54 +0000357// Provide specializations of GraphTraits to be able to treat a function as a
Alkis Evlogimenos71bf4042004-07-08 00:47:58 +0000358// graph of basic blocks... and to walk it in inverse order. Inverse order for
359// a function is considered to be when traversing the predecessor edges of a BB
360// instead of the successor edges.
361//
362template <> struct GraphTraits<Inverse<MachineFunction*> > :
363 public GraphTraits<Inverse<MachineBasicBlock*> > {
364 static NodeType *getEntryNode(Inverse<MachineFunction*> G) {
365 return &G.Graph->front();
366 }
367};
368template <> struct GraphTraits<Inverse<const MachineFunction*> > :
369 public GraphTraits<Inverse<const MachineBasicBlock*> > {
370 static NodeType *getEntryNode(Inverse<const MachineFunction *> G) {
371 return &G.Graph->front();
372 }
373};
374
Brian Gaeked0fde302003-11-11 22:41:34 +0000375} // End llvm namespace
376
Chris Lattnerf2868ce2002-02-03 07:54:50 +0000377#endif