blob: 73f55463e820c8cec9c57e6879d9b680e3abf8bb [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"
Devang Patel1e86a662009-06-19 22:08:58 +000022#include "llvm/Support/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;
Bob Wilson998e1252009-04-20 18:36:57 +000036class TargetRegisterClass;
Chris Lattner8bdf87d2004-08-18 18:13:16 +000037
Tanya Lattner792699c2004-05-24 06:11:51 +000038template <>
Cedric Venet8e4018e2008-09-20 18:02:18 +000039struct ilist_traits<MachineBasicBlock>
Dan Gohmanfed90b62008-07-28 21:51:04 +000040 : public ilist_default_traits<MachineBasicBlock> {
Dan Gohman9c01f2d2009-03-27 18:37:13 +000041 mutable ilist_node<MachineBasicBlock> Sentinel;
Tanya Lattner792699c2004-05-24 06:11:51 +000042public:
Gabor Greifc7f6b8c2009-03-04 06:57:48 +000043 MachineBasicBlock *createSentinel() const {
44 return static_cast<MachineBasicBlock*>(&Sentinel);
45 }
Dan Gohmanfed90b62008-07-28 21:51:04 +000046 void destroySentinel(MachineBasicBlock *) const {}
47
Gabor Greifc23b8712009-03-04 20:36:44 +000048 MachineBasicBlock *provideInitialHead() const { return createSentinel(); }
49 MachineBasicBlock *ensureHead(MachineBasicBlock*) const {
50 return createSentinel();
51 }
Gabor Greiff3841fc2009-03-04 21:54:31 +000052 static void noteHead(MachineBasicBlock*, MachineBasicBlock*) {}
Gabor Greifc23b8712009-03-04 20:36:44 +000053
Dan Gohman8e5f2c62008-07-07 23:14:23 +000054 void addNodeToList(MachineBasicBlock* MBB);
55 void removeNodeFromList(MachineBasicBlock* MBB);
Dan Gohman8e5f2c62008-07-07 23:14:23 +000056 void deleteNode(MachineBasicBlock *MBB);
Dan Gohmanfed90b62008-07-28 21:51:04 +000057private:
58 void createNode(const MachineBasicBlock &);
Tanya Lattner792699c2004-05-24 06:11:51 +000059};
Tanya Lattner792699c2004-05-24 06:11:51 +000060
Chris Lattner8bdf87d2004-08-18 18:13:16 +000061/// 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.
65struct MachineFunctionInfo {
Dan Gohman81975f62007-08-27 14:50:10 +000066 virtual ~MachineFunctionInfo() {}
Chris Lattner8bdf87d2004-08-18 18:13:16 +000067};
Chris Lattnerf2868ce2002-02-03 07:54:50 +000068
Misha Brukmanfce11432002-10-28 00:28:31 +000069class MachineFunction : private Annotation {
Chris Lattner335d5c32002-10-28 05:58:46 +000070 const Function *Fn;
71 const TargetMachine &Target;
Chris Lattner8e7ae982002-10-28 02:08:43 +000072
Chris Lattner84bc5422007-12-31 04:13:23 +000073 // RegInfo - Information about each register in use in the function.
74 MachineRegisterInfo *RegInfo;
Chris Lattner03ab7af2002-12-25 05:00:16 +000075
Chris Lattner8bdf87d2004-08-18 18:13:16 +000076 // Used to keep track of target-specific per-machine function information for
77 // the target implementation.
78 MachineFunctionInfo *MFInfo;
Chris Lattnercd0d1d12002-12-28 20:04:31 +000079
80 // Keep track of objects allocated on the stack.
Chris Lattneraa09b752002-12-28 21:08:28 +000081 MachineFrameInfo *FrameInfo;
Misha Brukman1617e6c2002-11-20 00:53:10 +000082
Chris Lattner40a75572003-01-13 00:16:10 +000083 // Keep track of constants which are spilled to memory
84 MachineConstantPool *ConstantPool;
Nate Begeman37efe672006-04-22 18:53:45 +000085
86 // Keep track of jump tables for switch instructions
87 MachineJumpTableInfo *JumpTableInfo;
Chris Lattner40a75572003-01-13 00:16:10 +000088
Chris Lattner25d80392004-07-01 06:01:36 +000089 // 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;
Brian Gaekef460f162004-05-12 21:35:21 +000093
Dan Gohman8e5f2c62008-07-07 23:14:23 +000094 // 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
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000103 // List of machine basic blocks in function
Dan Gohmanfed90b62008-07-28 21:51:04 +0000104 typedef ilist<MachineBasicBlock> BasicBlockListType;
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000105 BasicBlockListType BasicBlocks;
106
Bill Wendling5d0f6812009-02-20 00:42:52 +0000107 // Default debug location. Used to print out the debug label at the beginning
108 // of a function.
109 DebugLoc DefaultDebugLoc;
110
Evan Chengd0adbb52009-01-26 07:41:49 +0000111 // Tracks debug locations.
112 DebugLocTracker DebugLocInfo;
113
Bill Wendling20c568f2009-06-30 22:38:32 +0000114 // The alignment of the function.
115 unsigned Alignment;
116
Chris Lattnerf2868ce2002-02-03 07:54:50 +0000117public:
Chris Lattner40a75572003-01-13 00:16:10 +0000118 MachineFunction(const Function *Fn, const TargetMachine &TM);
Chris Lattner03ab7af2002-12-25 05:00:16 +0000119 ~MachineFunction();
Chris Lattner335d5c32002-10-28 05:58:46 +0000120
121 /// getFunction - Return the LLVM function that this machine code represents
122 ///
123 const 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; }
Chris Lattnerdea73832002-10-30 00:46:31 +0000128
Chris Lattner84bc5422007-12-31 04:13:23 +0000129 /// getRegInfo - Return information about the registers currently in use.
Chris Lattnercd0d1d12002-12-28 20:04:31 +0000130 ///
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000131 MachineRegisterInfo &getRegInfo() { return *RegInfo; }
132 const MachineRegisterInfo &getRegInfo() const { return *RegInfo; }
Chris Lattnercd0d1d12002-12-28 20:04:31 +0000133
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 ///
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000138 MachineFrameInfo *getFrameInfo() { return FrameInfo; }
139 const MachineFrameInfo *getFrameInfo() const { return FrameInfo; }
Chris Lattnercd0d1d12002-12-28 20:04:31 +0000140
Nate Begeman37efe672006-04-22 18:53:45 +0000141 /// 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 ///
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000145 MachineJumpTableInfo *getJumpTableInfo() { return JumpTableInfo; }
146 const MachineJumpTableInfo *getJumpTableInfo() const { return JumpTableInfo; }
Nate Begeman37efe672006-04-22 18:53:45 +0000147
Chris Lattner40a75572003-01-13 00:16:10 +0000148 /// getConstantPool - Return the constant pool object for the current
149 /// function.
Misha Brukman274ba032004-08-17 17:52:36 +0000150 ///
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000151 MachineConstantPool *getConstantPool() { return ConstantPool; }
152 const MachineConstantPool *getConstantPool() const { return ConstantPool; }
Chris Lattner40a75572003-01-13 00:16:10 +0000153
Bill Wendlingb4202b82009-07-01 18:50:55 +0000154 /// getAlignment - Return the alignment (log2, not bytes) of the function.
Bill Wendling20c568f2009-06-30 22:38:32 +0000155 ///
156 unsigned getAlignment() const { return Alignment; }
157
Bill Wendlingb4202b82009-07-01 18:50:55 +0000158 /// setAlignment - Set the alignment (log2, not bytes) of the function.
Bill Wendling20c568f2009-06-30 22:38:32 +0000159 ///
160 void setAlignment(unsigned A) { Alignment = A; }
161
Chris Lattnercd0d1d12002-12-28 20:04:31 +0000162 /// MachineFunctionInfo - Keep track of various per-function pieces of
Chris Lattner67d25622005-08-31 22:49:51 +0000163 /// information for backends that would like to do so.
Chris Lattnercd0d1d12002-12-28 20:04:31 +0000164 ///
Chris Lattner8bdf87d2004-08-18 18:13:16 +0000165 template<typename Ty>
166 Ty *getInfo() {
Dan Gohman219c7902008-07-25 00:36:05 +0000167 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 }
Chris Lattner8bdf87d2004-08-18 18:13:16 +0000174
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 }
Chris Lattnercd0d1d12002-12-28 20:04:31 +0000179
Chris Lattner5ea64fd2006-08-17 22:00:08 +0000180 template<typename Ty>
181 const Ty *getInfo() const {
182 return const_cast<MachineFunction*>(this)->getInfo<Ty>();
183 }
184
Chris Lattner25d80392004-07-01 06:01:36 +0000185 /// 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.
Misha Brukman274ba032004-08-17 17:52:36 +0000189 ///
Jakob Stoklund Olesen20683f92009-05-07 04:41:26 +0000190 MachineBasicBlock *getBlockNumbered(unsigned N) const {
Chris Lattner25d80392004-07-01 06:01:36 +0000191 assert(N < MBBNumbering.size() && "Illegal block number");
192 assert(MBBNumbering[N] && "Block was removed from the machine function!");
193 return MBBNumbering[N];
194 }
Chris Lattnercd0d1d12002-12-28 20:04:31 +0000195
Chris Lattner25408132006-09-14 06:40:48 +0000196 /// getNumBlockIDs - Return the number of MBB ID's allocated.
Chris Lattnere70cab02006-10-03 19:18:57 +0000197 ///
Evan Cheng34cd4a42008-05-05 18:30:58 +0000198 unsigned getNumBlockIDs() const { return (unsigned)MBBNumbering.size(); }
Jim Laskeyf5395ce2005-12-16 22:45:29 +0000199
Chris Lattnere70cab02006-10-03 19:18:57 +0000200 /// 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
Chris Lattnerdea73832002-10-30 00:46:31 +0000207 /// print - Print out the MachineFunction in a format suitable for debugging
208 /// to the specified stream.
209 ///
210 void print(std::ostream &OS) const;
Bill Wendling5c7e3262006-12-17 05:15:13 +0000211 void print(std::ostream *OS) const { if (OS) print(*OS); }
Chris Lattnerdea73832002-10-30 00:46:31 +0000212
Alkis Evlogimenos71bf4042004-07-08 00:47:58 +0000213 /// viewCFG - This function is meant for use from the debugger. You can just
214 /// say 'call F->viewCFG()' and a ghostview window should pop up from the
215 /// program, displaying the CFG of the current function with the code for each
216 /// basic block inside. This depends on there being a 'dot' and 'gv' program
217 /// in your path.
218 ///
219 void viewCFG() const;
Misha Brukmanea61c352005-04-21 20:39:54 +0000220
Alkis Evlogimenos71bf4042004-07-08 00:47:58 +0000221 /// viewCFGOnly - This function is meant for use from the debugger. It works
222 /// just like viewCFG, but it does not include the contents of basic blocks
223 /// into the nodes, just the label. If you are only interested in the CFG
224 /// this can make the graph smaller.
225 ///
226 void viewCFGOnly() const;
227
Chris Lattnerdea73832002-10-30 00:46:31 +0000228 /// dump - Print the current MachineFunction to cerr, useful for debugger use.
229 ///
230 void dump() const;
231
Misha Brukmana7afa372004-06-04 14:51:25 +0000232 /// construct - Allocate and initialize a MachineFunction for a given Function
233 /// and Target
234 ///
Chris Lattner40a75572003-01-13 00:16:10 +0000235 static MachineFunction& construct(const Function *F, const TargetMachine &TM);
Misha Brukmana7afa372004-06-04 14:51:25 +0000236
237 /// destruct - Destroy the MachineFunction corresponding to a given Function
238 ///
Chris Lattnere7506a32002-03-23 22:51:58 +0000239 static void destruct(const Function *F);
Misha Brukmana7afa372004-06-04 14:51:25 +0000240
241 /// get - Return a handle to a MachineFunction corresponding to the given
242 /// Function. This should not be called before "construct()" for a given
243 /// Function.
244 ///
Chris Lattnerd0aa0cd2002-10-28 05:30:46 +0000245 static MachineFunction& get(const Function *F);
Chris Lattner9c6342d2002-10-28 01:27:51 +0000246
Chris Lattnerd0aa0cd2002-10-28 05:30:46 +0000247 // Provide accessors for the MachineBasicBlock list...
Chris Lattnerd0aa0cd2002-10-28 05:30:46 +0000248 typedef BasicBlockListType::iterator iterator;
249 typedef BasicBlockListType::const_iterator const_iterator;
250 typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
251 typedef std::reverse_iterator<iterator> reverse_iterator;
252
Bob Wilson998e1252009-04-20 18:36:57 +0000253 /// addLiveIn - Add the specified physical register as a live-in value and
254 /// create a corresponding virtual register for it.
255 unsigned addLiveIn(unsigned PReg, const TargetRegisterClass *RC);
256
Chris Lattnerd0aa0cd2002-10-28 05:30:46 +0000257 //===--------------------------------------------------------------------===//
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000258 // BasicBlock accessor functions.
Chris Lattnerd0aa0cd2002-10-28 05:30:46 +0000259 //
260 iterator begin() { return BasicBlocks.begin(); }
261 const_iterator begin() const { return BasicBlocks.begin(); }
262 iterator end () { return BasicBlocks.end(); }
263 const_iterator end () const { return BasicBlocks.end(); }
264
265 reverse_iterator rbegin() { return BasicBlocks.rbegin(); }
266 const_reverse_iterator rbegin() const { return BasicBlocks.rbegin(); }
267 reverse_iterator rend () { return BasicBlocks.rend(); }
268 const_reverse_iterator rend () const { return BasicBlocks.rend(); }
269
Evan Cheng34cd4a42008-05-05 18:30:58 +0000270 unsigned size() const { return (unsigned)BasicBlocks.size();}
Chris Lattnerd0aa0cd2002-10-28 05:30:46 +0000271 bool empty() const { return BasicBlocks.empty(); }
272 const MachineBasicBlock &front() const { return BasicBlocks.front(); }
273 MachineBasicBlock &front() { return BasicBlocks.front(); }
Misha Brukmand5806ff2002-10-28 19:58:38 +0000274 const MachineBasicBlock & back() const { return BasicBlocks.back(); }
275 MachineBasicBlock & back() { return BasicBlocks.back(); }
Chris Lattner25d80392004-07-01 06:01:36 +0000276
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000277 void push_back (MachineBasicBlock *MBB) { BasicBlocks.push_back (MBB); }
278 void push_front(MachineBasicBlock *MBB) { BasicBlocks.push_front(MBB); }
279 void insert(iterator MBBI, MachineBasicBlock *MBB) {
280 BasicBlocks.insert(MBBI, MBB);
281 }
282 void splice(iterator InsertPt, iterator MBBI) {
283 BasicBlocks.splice(InsertPt, BasicBlocks, MBBI);
284 }
285
286 void remove(iterator MBBI) {
287 BasicBlocks.remove(MBBI);
288 }
289 void erase(iterator MBBI) {
290 BasicBlocks.erase(MBBI);
291 }
292
Chris Lattner25d80392004-07-01 06:01:36 +0000293 //===--------------------------------------------------------------------===//
294 // Internal functions used to automatically number MachineBasicBlocks
295 //
296
297 /// getNextMBBNumber - Returns the next unique number to be assigned
298 /// to a MachineBasicBlock in this MachineFunction.
299 ///
300 unsigned addToMBBNumbering(MachineBasicBlock *MBB) {
301 MBBNumbering.push_back(MBB);
Evan Cheng34cd4a42008-05-05 18:30:58 +0000302 return (unsigned)MBBNumbering.size()-1;
Chris Lattner25d80392004-07-01 06:01:36 +0000303 }
304
305 /// removeFromMBBNumbering - Remove the specific machine basic block from our
306 /// tracker, this is only really to be used by the MachineBasicBlock
307 /// implementation.
308 void removeFromMBBNumbering(unsigned N) {
309 assert(N < MBBNumbering.size() && "Illegal basic block #");
310 MBBNumbering[N] = 0;
311 }
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000312
313 /// CreateMachineInstr - Allocate a new MachineInstr. Use this instead
314 /// of `new MachineInstr'.
315 ///
316 MachineInstr *CreateMachineInstr(const TargetInstrDesc &TID,
Bill Wendling9bc96a52009-02-03 00:55:04 +0000317 DebugLoc DL,
Dan Gohman8e5f2c62008-07-07 23:14:23 +0000318 bool NoImp = false);
319
320 /// CloneMachineInstr - Create a new MachineInstr which is a copy of the
321 /// 'Orig' instruction, identical in all ways except the the instruction
322 /// has no parent, prev, or next.
323 ///
324 MachineInstr *CloneMachineInstr(const MachineInstr *Orig);
325
326 /// DeleteMachineInstr - Delete the given MachineInstr.
327 ///
328 void DeleteMachineInstr(MachineInstr *MI);
329
330 /// CreateMachineBasicBlock - Allocate a new MachineBasicBlock. Use this
331 /// instead of `new MachineBasicBlock'.
332 ///
333 MachineBasicBlock *CreateMachineBasicBlock(const BasicBlock *bb = 0);
334
335 /// DeleteMachineBasicBlock - Delete the given MachineBasicBlock.
336 ///
337 void DeleteMachineBasicBlock(MachineBasicBlock *MBB);
Evan Chengd0adbb52009-01-26 07:41:49 +0000338
339 //===--------------------------------------------------------------------===//
340 // Debug location.
341 //
342
Evan Chengaaeea9e2009-01-27 21:15:07 +0000343 /// getOrCreateDebugLocID - Look up the DebugLocTuple index with the given
Bill Wendling85e3af92009-02-03 22:49:58 +0000344 /// source file, line, and column. If none currently exists, create a new
345 /// DebugLocTuple, and insert it into the DebugIdMap.
Bill Wendlingdf7d5d32009-05-21 00:04:55 +0000346 unsigned getOrCreateDebugLocID(GlobalVariable *CompileUnit,
Argyrios Kyrtzidisa26eae62009-04-30 23:22:31 +0000347 unsigned Line, unsigned Col);
Bill Wendling85e3af92009-02-03 22:49:58 +0000348
349 /// getDebugLocTuple - Get the DebugLocTuple for a given DebugLoc object.
Bill Wendlinga929c682009-02-04 00:05:34 +0000350 DebugLocTuple getDebugLocTuple(DebugLoc DL) const;
Bill Wendling5d0f6812009-02-20 00:42:52 +0000351
352 /// getDefaultDebugLoc - Get the default debug location for the machine
353 /// function.
354 DebugLoc getDefaultDebugLoc() const { return DefaultDebugLoc; }
355
356 /// setDefaultDebugLoc - Get the default debug location for the machine
357 /// function.
358 void setDefaultDebugLoc(DebugLoc DL) { DefaultDebugLoc = DL; }
Chris Lattnerf2868ce2002-02-03 07:54:50 +0000359};
360
Alkis Evlogimenos71bf4042004-07-08 00:47:58 +0000361//===--------------------------------------------------------------------===//
362// GraphTraits specializations for function basic block graphs (CFGs)
363//===--------------------------------------------------------------------===//
364
365// Provide specializations of GraphTraits to be able to treat a
366// machine function as a graph of machine basic blocks... these are
367// the same as the machine basic block iterators, except that the root
368// node is implicitly the first node of the function.
369//
370template <> struct GraphTraits<MachineFunction*> :
371 public GraphTraits<MachineBasicBlock*> {
372 static NodeType *getEntryNode(MachineFunction *F) {
373 return &F->front();
374 }
375
376 // nodes_iterator/begin/end - Allow iteration over all nodes in the graph
377 typedef MachineFunction::iterator nodes_iterator;
378 static nodes_iterator nodes_begin(MachineFunction *F) { return F->begin(); }
379 static nodes_iterator nodes_end (MachineFunction *F) { return F->end(); }
380};
381template <> struct GraphTraits<const MachineFunction*> :
382 public GraphTraits<const MachineBasicBlock*> {
383 static NodeType *getEntryNode(const MachineFunction *F) {
384 return &F->front();
385 }
386
387 // nodes_iterator/begin/end - Allow iteration over all nodes in the graph
388 typedef MachineFunction::const_iterator nodes_iterator;
Gabor Greifc23b8712009-03-04 20:36:44 +0000389 static nodes_iterator nodes_begin(const MachineFunction *F) {
390 return F->begin();
391 }
392 static nodes_iterator nodes_end (const MachineFunction *F) {
393 return F->end();
394 }
Alkis Evlogimenos71bf4042004-07-08 00:47:58 +0000395};
396
397
Misha Brukmanea61c352005-04-21 20:39:54 +0000398// Provide specializations of GraphTraits to be able to treat a function as a
Alkis Evlogimenos71bf4042004-07-08 00:47:58 +0000399// graph of basic blocks... and to walk it in inverse order. Inverse order for
400// a function is considered to be when traversing the predecessor edges of a BB
401// instead of the successor edges.
402//
403template <> struct GraphTraits<Inverse<MachineFunction*> > :
404 public GraphTraits<Inverse<MachineBasicBlock*> > {
405 static NodeType *getEntryNode(Inverse<MachineFunction*> G) {
406 return &G.Graph->front();
407 }
408};
409template <> struct GraphTraits<Inverse<const MachineFunction*> > :
410 public GraphTraits<Inverse<const MachineBasicBlock*> > {
411 static NodeType *getEntryNode(Inverse<const MachineFunction *> G) {
412 return &G.Graph->front();
413 }
414};
415
Brian Gaeked0fde302003-11-11 22:41:34 +0000416} // End llvm namespace
417
Chris Lattnerf2868ce2002-02-03 07:54:50 +0000418#endif