Remove broken doxygen comments
[oota-llvm.git] / include / llvm / BasicBlock.h
1 //===-- llvm/BasicBlock.h - Represent a basic block in the VM ---*- C++ -*-===//
2 // 
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 // 
8 //===----------------------------------------------------------------------===//
9 //
10 //
11 // This file contains the declaration of the BasicBlock class, which represents
12 // a single basic block in the VM.
13 //
14 // Note that basic blocks themselves are Value's, because they are referenced
15 // by instructions like branches and can go in switch tables and stuff...
16 //
17 ///===---------------------------------------------------------------------===//
18 //
19 // Note that well formed basic blocks are formed of a list of instructions 
20 // followed by a single TerminatorInst instruction.  TerminatorInst's may not
21 // occur in the middle of basic blocks, and must terminate the blocks.
22 //
23 // This code allows malformed basic blocks to occur, because it may be useful
24 // in the intermediate stage modification to a program.
25 //
26 //===----------------------------------------------------------------------===//
27
28 #ifndef LLVM_BASICBLOCK_H
29 #define LLVM_BASICBLOCK_H
30
31 #include "llvm/Instruction.h"
32 #include "llvm/SymbolTableListTraits.h"
33 #include "Support/ilist"
34
35 namespace llvm {
36
37 class TerminatorInst;
38 template <class _Term, class _BB> class SuccIterator;  // Successor Iterator
39 template <class _Ptr, class _USE_iterator> class PredIterator;
40
41 template<> struct ilist_traits<Instruction>
42   : public SymbolTableListTraits<Instruction, BasicBlock, Function> {
43   // createNode is used to create a node that marks the end of the list...
44   static Instruction *createNode();
45   static iplist<Instruction> &getList(BasicBlock *BB);
46 };
47
48 struct BasicBlock : public Value {       // Basic blocks are data objects also
49   typedef iplist<Instruction> InstListType;
50 private :
51   InstListType InstList;
52   BasicBlock *Prev, *Next; // Next and Prev links for our intrusive linked list
53
54   void setParent(Function *parent);
55   void setNext(BasicBlock *N) { Next = N; }
56   void setPrev(BasicBlock *N) { Prev = N; }
57   friend class SymbolTableListTraits<BasicBlock, Function, Function>;
58
59   BasicBlock(const BasicBlock &);     // Do not implement
60   void operator=(const BasicBlock &); // Do not implement
61
62 public:
63   /// Instruction iterators...
64   typedef InstListType::iterator iterator;
65   typedef InstListType::const_iterator const_iterator;
66   typedef std::reverse_iterator<const_iterator> const_reverse_iterator;
67   typedef std::reverse_iterator<iterator>             reverse_iterator;
68
69   /// BasicBlock ctor - If the function parameter is specified, the basic block
70   /// is automatically inserted at the end of the function.
71   ///
72   BasicBlock(const std::string &Name = "", Function *Parent = 0);
73
74   /// BasicBlock ctor - If the InsertBefore parameter is specified, the basic
75   /// block is automatically inserted right before the specified block.
76   BasicBlock(const std::string &Name, BasicBlock *InsertBefore);
77   ~BasicBlock();
78
79   // Specialize setName to take care of symbol table majik
80   virtual void setName(const std::string &name, SymbolTable *ST = 0);
81
82   /// getParent - Return the enclosing method, or null if none
83   ///
84   const Function *getParent() const { return InstList.getParent(); }
85         Function *getParent()       { return InstList.getParent(); }
86
87   // getNext/Prev - Return the next or previous basic block in the list.
88         BasicBlock *getNext()       { return Next; }
89   const BasicBlock *getNext() const { return Next; }
90         BasicBlock *getPrev()       { return Prev; }
91   const BasicBlock *getPrev() const { return Prev; }
92
93   /// getTerminator() - If this is a well formed basic block, then this returns
94   /// a pointer to the terminator instruction.  If it is not, then you get a
95   /// null pointer back.
96   ///
97   TerminatorInst *getTerminator();
98   const TerminatorInst *const getTerminator() const;
99   
100   //===--------------------------------------------------------------------===//
101   /// Instruction iterator methods
102   ///
103   inline iterator                begin()       { return InstList.begin(); }
104   inline const_iterator          begin() const { return InstList.begin(); }
105   inline iterator                end  ()       { return InstList.end();   }
106   inline const_iterator          end  () const { return InstList.end();   }
107
108   inline reverse_iterator       rbegin()       { return InstList.rbegin(); }
109   inline const_reverse_iterator rbegin() const { return InstList.rbegin(); }
110   inline reverse_iterator       rend  ()       { return InstList.rend();   }
111   inline const_reverse_iterator rend  () const { return InstList.rend();   }
112
113   inline unsigned                 size() const { return InstList.size(); }
114   inline bool                    empty() const { return InstList.empty(); }
115   inline const Instruction      &front() const { return InstList.front(); }
116   inline       Instruction      &front()       { return InstList.front(); }
117   inline const Instruction       &back()  const { return InstList.back(); }
118   inline       Instruction       &back()        { return InstList.back(); }
119
120   /// getInstList() - Return the underlying instruction list container.  You
121   /// need to access it directly if you want to modify it currently.
122   ///
123   const InstListType &getInstList() const { return InstList; }
124         InstListType &getInstList()       { return InstList; }
125
126   virtual void print(std::ostream &OS) const { print(OS, 0); }
127   void print(std::ostream &OS, AssemblyAnnotationWriter *AAW) const;
128
129   /// Methods for support type inquiry through isa, cast, and dyn_cast:
130   static inline bool classof(const BasicBlock *BB) { return true; }
131   static inline bool classof(const Value *V) {
132     return V->getValueType() == Value::BasicBlockVal;
133   }
134
135   /// hasConstantReferences() - This predicate is true if there is a 
136   /// reference to this basic block in the constant pool for this method.  For
137   /// example, if a block is reached through a switch table, that table resides
138   /// in the constant pool, and the basic block is reference from it.
139   ///
140   bool hasConstantReferences() const;
141
142   /// dropAllReferences() - This function causes all the subinstructions to "let
143   /// go" of all references that they are maintaining.  This allows one to
144   /// 'delete' a whole class at a time, even though there may be circular
145   /// references... first all references are dropped, and all use counts go to
146   /// zero.  Then everything is delete'd for real.  Note that no operations are
147   /// valid on an object that has "dropped all references", except operator 
148   /// delete.
149   ///
150   void dropAllReferences();
151
152   /// removePredecessor - This method is used to notify a BasicBlock that the
153   /// specified Predecessor of the block is no longer able to reach it.  This is
154   /// actually not used to update the Predecessor list, but is actually used to 
155   /// update the PHI nodes that reside in the block.  Note that this should be
156   /// called while the predecessor still refers to this block.
157   ///
158   void removePredecessor(BasicBlock *Pred);
159
160   /// splitBasicBlock - This splits a basic block into two at the specified
161   /// instruction.  Note that all instructions BEFORE the specified iterator
162   /// stay as part of the original basic block, an unconditional branch is added
163   /// to the new BB, and the rest of the instructions in the BB are moved to the
164   /// new BB, including the old terminator.  The newly formed BasicBlock is
165   /// returned.  This function invalidates the specified iterator.
166   ///
167   /// Note that this only works on well formed basic blocks (must have a 
168   /// terminator), and 'I' must not be the end of instruction list (which would
169   /// cause a degenerate basic block to be formed, having a terminator inside of
170   /// the basic block).
171   ///
172   BasicBlock *splitBasicBlock(iterator I, const std::string &BBName = "");
173 };
174
175 } // End llvm namespace
176
177 #endif