Reapply r107655 with fixes; insert the pseudo instruction into
[oota-llvm.git] / include / llvm / CodeGen / MachineBasicBlock.h
1 //===-- llvm/CodeGen/MachineBasicBlock.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 the sequence of machine instructions for a basic block.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef LLVM_CODEGEN_MACHINEBASICBLOCK_H
15 #define LLVM_CODEGEN_MACHINEBASICBLOCK_H
16
17 #include "llvm/CodeGen/MachineInstr.h"
18 #include "llvm/ADT/GraphTraits.h"
19
20 namespace llvm {
21
22 class Pass;
23 class BasicBlock;
24 class MachineFunction;
25 class MCSymbol;
26 class StringRef;
27 class raw_ostream;
28
29 template <>
30 struct ilist_traits<MachineInstr> : public ilist_default_traits<MachineInstr> {
31 private:
32   mutable ilist_half_node<MachineInstr> Sentinel;
33
34   // this is only set by the MachineBasicBlock owning the LiveList
35   friend class MachineBasicBlock;
36   MachineBasicBlock* Parent;
37
38 public:
39   MachineInstr *createSentinel() const {
40     return static_cast<MachineInstr*>(&Sentinel);
41   }
42   void destroySentinel(MachineInstr *) const {}
43
44   MachineInstr *provideInitialHead() const { return createSentinel(); }
45   MachineInstr *ensureHead(MachineInstr*) const { return createSentinel(); }
46   static void noteHead(MachineInstr*, MachineInstr*) {}
47
48   void addNodeToList(MachineInstr* N);
49   void removeNodeFromList(MachineInstr* N);
50   void transferNodesFromList(ilist_traits &SrcTraits,
51                              ilist_iterator<MachineInstr> first,
52                              ilist_iterator<MachineInstr> last);
53   void deleteNode(MachineInstr *N);
54 private:
55   void createNode(const MachineInstr &);
56 };
57
58 class MachineBasicBlock : public ilist_node<MachineBasicBlock> {
59   typedef ilist<MachineInstr> Instructions;
60   Instructions Insts;
61   const BasicBlock *BB;
62   int Number;
63   MachineFunction *xParent;
64   
65   /// Predecessors/Successors - Keep track of the predecessor / successor
66   /// basicblocks.
67   std::vector<MachineBasicBlock *> Predecessors;
68   std::vector<MachineBasicBlock *> Successors;
69
70   /// LiveIns - Keep track of the physical registers that are livein of
71   /// the basicblock.
72   std::vector<unsigned> LiveIns;
73
74   /// Alignment - Alignment of the basic block. Zero if the basic block does
75   /// not need to be aligned.
76   unsigned Alignment;
77   
78   /// IsLandingPad - Indicate that this basic block is entered via an
79   /// exception handler.
80   bool IsLandingPad;
81
82   /// AddressTaken - Indicate that this basic block is potentially the
83   /// target of an indirect branch.
84   bool AddressTaken;
85
86   // Intrusive list support
87   MachineBasicBlock() {}
88
89   explicit MachineBasicBlock(MachineFunction &mf, const BasicBlock *bb);
90
91   ~MachineBasicBlock();
92
93   // MachineBasicBlocks are allocated and owned by MachineFunction.
94   friend class MachineFunction;
95
96 public:
97   /// getBasicBlock - Return the LLVM basic block that this instance
98   /// corresponded to originally. Note that this may be NULL if this instance
99   /// does not correspond directly to an LLVM basic block.
100   ///
101   const BasicBlock *getBasicBlock() const { return BB; }
102
103   /// getName - Return the name of the corresponding LLVM basic block, or
104   /// "(null)".
105   StringRef getName() const;
106
107   /// hasAddressTaken - Test whether this block is potentially the target
108   /// of an indirect branch.
109   bool hasAddressTaken() const { return AddressTaken; }
110
111   /// setHasAddressTaken - Set this block to reflect that it potentially
112   /// is the target of an indirect branch.
113   void setHasAddressTaken() { AddressTaken = true; }
114
115   /// getParent - Return the MachineFunction containing this basic block.
116   ///
117   const MachineFunction *getParent() const { return xParent; }
118   MachineFunction *getParent() { return xParent; }
119
120   typedef Instructions::iterator                              iterator;
121   typedef Instructions::const_iterator                  const_iterator;
122   typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
123   typedef std::reverse_iterator<iterator>             reverse_iterator;
124
125   unsigned size() const { return (unsigned)Insts.size(); }
126   bool empty() const { return Insts.empty(); }
127
128   MachineInstr& front() { return Insts.front(); }
129   MachineInstr& back()  { return Insts.back(); }
130   const MachineInstr& front() const { return Insts.front(); }
131   const MachineInstr& back()  const { return Insts.back(); }
132
133   iterator                begin()       { return Insts.begin();  }
134   const_iterator          begin() const { return Insts.begin();  }
135   iterator                  end()       { return Insts.end();    }
136   const_iterator            end() const { return Insts.end();    }
137   reverse_iterator       rbegin()       { return Insts.rbegin(); }
138   const_reverse_iterator rbegin() const { return Insts.rbegin(); }
139   reverse_iterator       rend  ()       { return Insts.rend();   }
140   const_reverse_iterator rend  () const { return Insts.rend();   }
141
142   // Machine-CFG iterators
143   typedef std::vector<MachineBasicBlock *>::iterator       pred_iterator;
144   typedef std::vector<MachineBasicBlock *>::const_iterator const_pred_iterator;
145   typedef std::vector<MachineBasicBlock *>::iterator       succ_iterator;
146   typedef std::vector<MachineBasicBlock *>::const_iterator const_succ_iterator;
147   typedef std::vector<MachineBasicBlock *>::reverse_iterator
148                                                          pred_reverse_iterator;
149   typedef std::vector<MachineBasicBlock *>::const_reverse_iterator
150                                                    const_pred_reverse_iterator;
151   typedef std::vector<MachineBasicBlock *>::reverse_iterator
152                                                          succ_reverse_iterator;
153   typedef std::vector<MachineBasicBlock *>::const_reverse_iterator
154                                                    const_succ_reverse_iterator;
155
156   pred_iterator        pred_begin()       { return Predecessors.begin(); }
157   const_pred_iterator  pred_begin() const { return Predecessors.begin(); }
158   pred_iterator        pred_end()         { return Predecessors.end();   }
159   const_pred_iterator  pred_end()   const { return Predecessors.end();   }
160   pred_reverse_iterator        pred_rbegin()
161                                           { return Predecessors.rbegin();}
162   const_pred_reverse_iterator  pred_rbegin() const
163                                           { return Predecessors.rbegin();}
164   pred_reverse_iterator        pred_rend()
165                                           { return Predecessors.rend();  }
166   const_pred_reverse_iterator  pred_rend()   const
167                                           { return Predecessors.rend();  }
168   unsigned             pred_size()  const {
169     return (unsigned)Predecessors.size();
170   }
171   bool                 pred_empty() const { return Predecessors.empty(); }
172   succ_iterator        succ_begin()       { return Successors.begin();   }
173   const_succ_iterator  succ_begin() const { return Successors.begin();   }
174   succ_iterator        succ_end()         { return Successors.end();     }
175   const_succ_iterator  succ_end()   const { return Successors.end();     }
176   succ_reverse_iterator        succ_rbegin()
177                                           { return Successors.rbegin();  }
178   const_succ_reverse_iterator  succ_rbegin() const
179                                           { return Successors.rbegin();  }
180   succ_reverse_iterator        succ_rend()
181                                           { return Successors.rend();    }
182   const_succ_reverse_iterator  succ_rend()   const
183                                           { return Successors.rend();    }
184   unsigned             succ_size()  const {
185     return (unsigned)Successors.size();
186   }
187   bool                 succ_empty() const { return Successors.empty();   }
188
189   // LiveIn management methods.
190
191   /// addLiveIn - Add the specified register as a live in.  Note that it
192   /// is an error to add the same register to the same set more than once.
193   void addLiveIn(unsigned Reg)  { LiveIns.push_back(Reg); }
194
195   /// removeLiveIn - Remove the specified register from the live in set.
196   ///
197   void removeLiveIn(unsigned Reg);
198
199   /// isLiveIn - Return true if the specified register is in the live in set.
200   ///
201   bool isLiveIn(unsigned Reg) const;
202
203   // Iteration support for live in sets.  These sets are kept in sorted
204   // order by their register number.
205   typedef std::vector<unsigned>::const_iterator livein_iterator;
206   livein_iterator livein_begin() const { return LiveIns.begin(); }
207   livein_iterator livein_end()   const { return LiveIns.end(); }
208   bool            livein_empty() const { return LiveIns.empty(); }
209
210   /// getAlignment - Return alignment of the basic block.
211   ///
212   unsigned getAlignment() const { return Alignment; }
213
214   /// setAlignment - Set alignment of the basic block.
215   ///
216   void setAlignment(unsigned Align) { Alignment = Align; }
217
218   /// isLandingPad - Returns true if the block is a landing pad. That is
219   /// this basic block is entered via an exception handler.
220   bool isLandingPad() const { return IsLandingPad; }
221
222   /// setIsLandingPad - Indicates the block is a landing pad.  That is
223   /// this basic block is entered via an exception handler.
224   void setIsLandingPad() { IsLandingPad = true; }
225
226   // Code Layout methods.
227   
228   /// moveBefore/moveAfter - move 'this' block before or after the specified
229   /// block.  This only moves the block, it does not modify the CFG or adjust
230   /// potential fall-throughs at the end of the block.
231   void moveBefore(MachineBasicBlock *NewAfter);
232   void moveAfter(MachineBasicBlock *NewBefore);
233
234   /// updateTerminator - Update the terminator instructions in block to account
235   /// for changes to the layout. If the block previously used a fallthrough,
236   /// it may now need a branch, and if it previously used branching it may now
237   /// be able to use a fallthrough.
238   void updateTerminator();
239
240   // Machine-CFG mutators
241   
242   /// addSuccessor - Add succ as a successor of this MachineBasicBlock.
243   /// The Predecessors list of succ is automatically updated.
244   ///
245   void addSuccessor(MachineBasicBlock *succ);
246
247   /// removeSuccessor - Remove successor from the successors list of this
248   /// MachineBasicBlock. The Predecessors list of succ is automatically updated.
249   ///
250   void removeSuccessor(MachineBasicBlock *succ);
251
252   /// removeSuccessor - Remove specified successor from the successors list of
253   /// this MachineBasicBlock. The Predecessors list of succ is automatically
254   /// updated.  Return the iterator to the element after the one removed.
255   ///
256   succ_iterator removeSuccessor(succ_iterator I);
257   
258   /// transferSuccessors - Transfers all the successors from MBB to this
259   /// machine basic block (i.e., copies all the successors fromMBB and
260   /// remove all the successors from fromMBB).
261   void transferSuccessors(MachineBasicBlock *fromMBB);
262
263   /// transferSuccessorsAndUpdatePHIs - Transfers all the successors, as
264   /// in transferSuccessors, and update PHI operands in the successor blocks
265   /// which refer to fromMBB to refer to this.
266   void transferSuccessorsAndUpdatePHIs(MachineBasicBlock *fromMBB);
267   
268   /// isSuccessor - Return true if the specified MBB is a successor of this
269   /// block.
270   bool isSuccessor(const MachineBasicBlock *MBB) const;
271
272   /// isLayoutSuccessor - Return true if the specified MBB will be emitted
273   /// immediately after this block, such that if this block exits by
274   /// falling through, control will transfer to the specified MBB. Note
275   /// that MBB need not be a successor at all, for example if this block
276   /// ends with an unconditional branch to some other block.
277   bool isLayoutSuccessor(const MachineBasicBlock *MBB) const;
278
279   /// canFallThrough - Return true if the block can implicitly transfer
280   /// control to the block after it by falling off the end of it.  This should
281   /// return false if it can reach the block after it, but it uses an explicit
282   /// branch to do so (e.g., a table jump).  True is a conservative answer.
283   bool canFallThrough();
284
285   /// getFirstTerminator - returns an iterator to the first terminator
286   /// instruction of this basic block. If a terminator does not exist,
287   /// it returns end()
288   iterator getFirstTerminator();
289
290   /// SplitCriticalEdge - Split the critical edge from this block to the
291   /// given successor block, and return the newly created block, or null
292   /// if splitting is not possible.
293   ///
294   /// This function updates LiveVariables, MachineDominatorTree, and
295   /// MachineLoopInfo, as applicable.
296   MachineBasicBlock *SplitCriticalEdge(MachineBasicBlock *Succ, Pass *P);
297
298   void pop_front() { Insts.pop_front(); }
299   void pop_back() { Insts.pop_back(); }
300   void push_back(MachineInstr *MI) { Insts.push_back(MI); }
301   template<typename IT>
302   void insert(iterator I, IT S, IT E) { Insts.insert(I, S, E); }
303   iterator insert(iterator I, MachineInstr *M) { return Insts.insert(I, M); }
304
305   // erase - Remove the specified element or range from the instruction list.
306   // These functions delete any instructions removed.
307   //
308   iterator erase(iterator I)             { return Insts.erase(I); }
309   iterator erase(iterator I, iterator E) { return Insts.erase(I, E); }
310   MachineInstr *remove(MachineInstr *I)  { return Insts.remove(I); }
311   void clear()                           { Insts.clear(); }
312
313   /// splice - Take an instruction from MBB 'Other' at the position From,
314   /// and insert it into this MBB right before 'where'.
315   void splice(iterator where, MachineBasicBlock *Other, iterator From) {
316     Insts.splice(where, Other->Insts, From);
317   }
318
319   /// splice - Take a block of instructions from MBB 'Other' in the range [From,
320   /// To), and insert them into this MBB right before 'where'.
321   void splice(iterator where, MachineBasicBlock *Other, iterator From,
322               iterator To) {
323     Insts.splice(where, Other->Insts, From, To);
324   }
325
326   /// removeFromParent - This method unlinks 'this' from the containing
327   /// function, and returns it, but does not delete it.
328   MachineBasicBlock *removeFromParent();
329   
330   /// eraseFromParent - This method unlinks 'this' from the containing
331   /// function and deletes it.
332   void eraseFromParent();
333
334   /// ReplaceUsesOfBlockWith - Given a machine basic block that branched to
335   /// 'Old', change the code and CFG so that it branches to 'New' instead.
336   void ReplaceUsesOfBlockWith(MachineBasicBlock *Old, MachineBasicBlock *New);
337
338   /// CorrectExtraCFGEdges - Various pieces of code can cause excess edges in
339   /// the CFG to be inserted.  If we have proven that MBB can only branch to
340   /// DestA and DestB, remove any other MBB successors from the CFG. DestA and
341   /// DestB can be null. Besides DestA and DestB, retain other edges leading
342   /// to LandingPads (currently there can be only one; we don't check or require
343   /// that here). Note it is possible that DestA and/or DestB are LandingPads.
344   bool CorrectExtraCFGEdges(MachineBasicBlock *DestA,
345                             MachineBasicBlock *DestB,
346                             bool isCond);
347
348   /// findDebugLoc - find the next valid DebugLoc starting at MBBI, skipping
349   /// any DBG_VALUE instructions.  Return UnknownLoc if there is none.
350   DebugLoc findDebugLoc(MachineBasicBlock::iterator &MBBI);
351
352   // Debugging methods.
353   void dump() const;
354   void print(raw_ostream &OS) const;
355
356   /// getNumber - MachineBasicBlocks are uniquely numbered at the function
357   /// level, unless they're not in a MachineFunction yet, in which case this
358   /// will return -1.
359   ///
360   int getNumber() const { return Number; }
361   void setNumber(int N) { Number = N; }
362
363   /// getSymbol - Return the MCSymbol for this basic block.
364   ///
365   MCSymbol *getSymbol() const;
366   
367 private:   // Methods used to maintain doubly linked list of blocks...
368   friend struct ilist_traits<MachineBasicBlock>;
369
370   // Machine-CFG mutators
371
372   /// addPredecessor - Remove pred as a predecessor of this MachineBasicBlock.
373   /// Don't do this unless you know what you're doing, because it doesn't
374   /// update pred's successors list. Use pred->addSuccessor instead.
375   ///
376   void addPredecessor(MachineBasicBlock *pred);
377
378   /// removePredecessor - Remove pred as a predecessor of this
379   /// MachineBasicBlock. Don't do this unless you know what you're
380   /// doing, because it doesn't update pred's successors list. Use
381   /// pred->removeSuccessor instead.
382   ///
383   void removePredecessor(MachineBasicBlock *pred);
384 };
385
386 raw_ostream& operator<<(raw_ostream &OS, const MachineBasicBlock &MBB);
387
388 void WriteAsOperand(raw_ostream &, const MachineBasicBlock*, bool t);
389
390 //===--------------------------------------------------------------------===//
391 // GraphTraits specializations for machine basic block graphs (machine-CFGs)
392 //===--------------------------------------------------------------------===//
393
394 // Provide specializations of GraphTraits to be able to treat a
395 // MachineFunction as a graph of MachineBasicBlocks...
396 //
397
398 template <> struct GraphTraits<MachineBasicBlock *> {
399   typedef MachineBasicBlock NodeType;
400   typedef MachineBasicBlock::succ_iterator ChildIteratorType;
401
402   static NodeType *getEntryNode(MachineBasicBlock *BB) { return BB; }
403   static inline ChildIteratorType child_begin(NodeType *N) {
404     return N->succ_begin();
405   }
406   static inline ChildIteratorType child_end(NodeType *N) {
407     return N->succ_end();
408   }
409 };
410
411 template <> struct GraphTraits<const MachineBasicBlock *> {
412   typedef const MachineBasicBlock NodeType;
413   typedef MachineBasicBlock::const_succ_iterator ChildIteratorType;
414
415   static NodeType *getEntryNode(const MachineBasicBlock *BB) { return BB; }
416   static inline ChildIteratorType child_begin(NodeType *N) {
417     return N->succ_begin();
418   }
419   static inline ChildIteratorType child_end(NodeType *N) {
420     return N->succ_end();
421   }
422 };
423
424 // Provide specializations of GraphTraits to be able to treat a
425 // MachineFunction as a graph of MachineBasicBlocks... and to walk it
426 // in inverse order.  Inverse order for a function is considered
427 // to be when traversing the predecessor edges of a MBB
428 // instead of the successor edges.
429 //
430 template <> struct GraphTraits<Inverse<MachineBasicBlock*> > {
431   typedef MachineBasicBlock NodeType;
432   typedef MachineBasicBlock::pred_iterator ChildIteratorType;
433   static NodeType *getEntryNode(Inverse<MachineBasicBlock *> G) {
434     return G.Graph;
435   }
436   static inline ChildIteratorType child_begin(NodeType *N) {
437     return N->pred_begin();
438   }
439   static inline ChildIteratorType child_end(NodeType *N) {
440     return N->pred_end();
441   }
442 };
443
444 template <> struct GraphTraits<Inverse<const MachineBasicBlock*> > {
445   typedef const MachineBasicBlock NodeType;
446   typedef MachineBasicBlock::const_pred_iterator ChildIteratorType;
447   static NodeType *getEntryNode(Inverse<const MachineBasicBlock*> G) {
448     return G.Graph;
449   }
450   static inline ChildIteratorType child_begin(NodeType *N) {
451     return N->pred_begin();
452   }
453   static inline ChildIteratorType child_end(NodeType *N) {
454     return N->pred_end();
455   }
456 };
457
458 } // End llvm namespace
459
460 #endif