]> granicus.if.org Git - clang/blob - include/clang/Analysis/CFG.h
remove some now-redundant forward declarations.
[clang] / include / clang / Analysis / CFG.h
1 //===--- CFG.h - Classes for representing and building CFGs------*- 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 //  This file defines the CFG and CFGBuilder classes for representing and
11 //  building Control-Flow Graphs (CFGs) from ASTs.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #ifndef LLVM_CLANG_CFG_H
16 #define LLVM_CLANG_CFG_H
17
18 #include "llvm/ADT/PointerIntPair.h"
19 #include "llvm/ADT/GraphTraits.h"
20 #include "llvm/Support/Allocator.h"
21 #include "llvm/Support/Casting.h"
22 #include "llvm/ADT/OwningPtr.h"
23 #include "llvm/ADT/DenseMap.h"
24 #include "llvm/ADT/BitVector.h"
25 #include "clang/AST/Stmt.h"
26 #include "clang/Analysis/Support/BumpVector.h"
27 #include "clang/Basic/SourceLocation.h"
28 #include <cassert>
29 #include <iterator>
30
31 namespace clang {
32   class CXXDestructorDecl;
33   class Decl;
34   class Stmt;
35   class Expr;
36   class FieldDecl;
37   class VarDecl;
38   class CXXCtorInitializer;
39   class CXXBaseSpecifier;
40   class CXXBindTemporaryExpr;
41   class CFG;
42   class PrinterHelper;
43   class LangOptions;
44   class ASTContext;
45
46 /// CFGElement - Represents a top-level expression in a basic block.
47 class CFGElement {
48 public:
49   enum Kind {
50     // main kind
51     Invalid,
52     Statement,
53     Initializer,
54     // dtor kind
55     AutomaticObjectDtor,
56     BaseDtor,
57     MemberDtor,
58     TemporaryDtor,
59     DTOR_BEGIN = AutomaticObjectDtor,
60     DTOR_END = TemporaryDtor
61   };
62
63 protected:
64   // The int bits are used to mark the kind.
65   llvm::PointerIntPair<void *, 2> Data1;
66   llvm::PointerIntPair<void *, 2> Data2;
67
68   CFGElement(Kind kind, const void *Ptr1, const void *Ptr2 = 0)
69     : Data1(const_cast<void*>(Ptr1), ((unsigned) kind) & 0x3),
70       Data2(const_cast<void*>(Ptr2), (((unsigned) kind) >> 2) & 0x3) {}  
71
72 public:
73   CFGElement() {}
74
75   Kind getKind() const { 
76     unsigned x = Data2.getInt();
77     x <<= 2;
78     x |= Data1.getInt();
79     return (Kind) x;
80   }
81     
82   bool isValid() const { return getKind() != Invalid; }
83
84   operator bool() const { return isValid(); }
85   
86   template<class ElemTy> const ElemTy *getAs() const {
87     if (llvm::isa<ElemTy>(this))
88       return static_cast<const ElemTy*>(this);
89     return 0;
90   }
91
92   static bool classof(const CFGElement *E) { return true; }
93 };
94
95 class CFGStmt : public CFGElement {
96 public:
97   CFGStmt(Stmt *S) : CFGElement(Statement, S) {}
98
99   Stmt *getStmt() const { return static_cast<Stmt *>(Data1.getPointer()); }
100
101   static bool classof(const CFGElement *E) {
102     return E->getKind() == Statement;
103   }
104 };
105
106 /// CFGInitializer - Represents C++ base or member initializer from
107 /// constructor's initialization list.
108 class CFGInitializer : public CFGElement {
109 public:
110   CFGInitializer(CXXCtorInitializer *initializer)
111       : CFGElement(Initializer, initializer) {}
112
113   CXXCtorInitializer* getInitializer() const {
114     return static_cast<CXXCtorInitializer*>(Data1.getPointer());
115   }
116
117   static bool classof(const CFGElement *E) {
118     return E->getKind() == Initializer;
119   }
120 };
121
122 /// CFGImplicitDtor - Represents C++ object destructor implicitly generated
123 /// by compiler on various occasions.
124 class CFGImplicitDtor : public CFGElement {
125 protected:
126   CFGImplicitDtor(Kind kind, const void *data1, const void *data2 = 0) 
127     : CFGElement(kind, data1, data2) {
128     assert(kind >= DTOR_BEGIN && kind <= DTOR_END);    
129   }
130
131 public:
132   const CXXDestructorDecl *getDestructorDecl(ASTContext &astContext) const;
133   bool isNoReturn(ASTContext &astContext) const;
134
135   static bool classof(const CFGElement *E) {
136     Kind kind = E->getKind();
137     return kind >= DTOR_BEGIN && kind <= DTOR_END;
138   }
139 };
140
141 /// CFGAutomaticObjDtor - Represents C++ object destructor implicitly generated
142 /// for automatic object or temporary bound to const reference at the point
143 /// of leaving its local scope.
144 class CFGAutomaticObjDtor: public CFGImplicitDtor {
145 public:
146   CFGAutomaticObjDtor(const VarDecl *var, const Stmt *stmt)
147       : CFGImplicitDtor(AutomaticObjectDtor, var, stmt) {}
148
149   const VarDecl *getVarDecl() const {
150     return static_cast<VarDecl*>(Data1.getPointer());
151   }
152
153   // Get statement end of which triggered the destructor call.
154   const Stmt *getTriggerStmt() const {
155     return static_cast<Stmt*>(Data2.getPointer());
156   }
157
158   static bool classof(const CFGElement *elem) {
159     return elem->getKind() == AutomaticObjectDtor;
160   }
161 };
162
163 /// CFGBaseDtor - Represents C++ object destructor implicitly generated for
164 /// base object in destructor.
165 class CFGBaseDtor : public CFGImplicitDtor {
166 public:
167   CFGBaseDtor(const CXXBaseSpecifier *base)
168       : CFGImplicitDtor(BaseDtor, base) {}
169
170   const CXXBaseSpecifier *getBaseSpecifier() const {
171     return static_cast<const CXXBaseSpecifier*>(Data1.getPointer());
172   }
173
174   static bool classof(const CFGElement *E) {
175     return E->getKind() == BaseDtor;
176   }
177 };
178
179 /// CFGMemberDtor - Represents C++ object destructor implicitly generated for
180 /// member object in destructor.
181 class CFGMemberDtor : public CFGImplicitDtor {
182 public:
183   CFGMemberDtor(const FieldDecl *field)
184       : CFGImplicitDtor(MemberDtor, field, 0) {}
185
186   const FieldDecl *getFieldDecl() const {
187     return static_cast<const FieldDecl*>(Data1.getPointer());
188   }
189
190   static bool classof(const CFGElement *E) {
191     return E->getKind() == MemberDtor;
192   }
193 };
194
195 /// CFGTemporaryDtor - Represents C++ object destructor implicitly generated
196 /// at the end of full expression for temporary object.
197 class CFGTemporaryDtor : public CFGImplicitDtor {
198 public:
199   CFGTemporaryDtor(CXXBindTemporaryExpr *expr)
200       : CFGImplicitDtor(TemporaryDtor, expr, 0) {}
201
202   const CXXBindTemporaryExpr *getBindTemporaryExpr() const {
203     return static_cast<const CXXBindTemporaryExpr *>(Data1.getPointer());
204   }
205
206   static bool classof(const CFGElement *E) {
207     return E->getKind() == TemporaryDtor;
208   }
209 };
210
211 /// CFGTerminator - Represents CFGBlock terminator statement.
212 ///
213 /// TemporaryDtorsBranch bit is set to true if the terminator marks a branch
214 /// in control flow of destructors of temporaries. In this case terminator
215 /// statement is the same statement that branches control flow in evaluation
216 /// of matching full expression.
217 class CFGTerminator {
218   llvm::PointerIntPair<Stmt *, 1> Data;
219 public:
220   CFGTerminator() {}
221   CFGTerminator(Stmt *S, bool TemporaryDtorsBranch = false)
222       : Data(S, TemporaryDtorsBranch) {}
223
224   Stmt *getStmt() { return Data.getPointer(); }
225   const Stmt *getStmt() const { return Data.getPointer(); }
226
227   bool isTemporaryDtorsBranch() const { return Data.getInt(); }
228
229   operator Stmt *() { return getStmt(); }
230   operator const Stmt *() const { return getStmt(); }
231
232   Stmt *operator->() { return getStmt(); }
233   const Stmt *operator->() const { return getStmt(); }
234
235   Stmt &operator*() { return *getStmt(); }
236   const Stmt &operator*() const { return *getStmt(); }
237
238   operator bool() const { return getStmt(); }
239 };
240
241 /// CFGBlock - Represents a single basic block in a source-level CFG.
242 ///  It consists of:
243 ///
244 ///  (1) A set of statements/expressions (which may contain subexpressions).
245 ///  (2) A "terminator" statement (not in the set of statements).
246 ///  (3) A list of successors and predecessors.
247 ///
248 /// Terminator: The terminator represents the type of control-flow that occurs
249 /// at the end of the basic block.  The terminator is a Stmt* referring to an
250 /// AST node that has control-flow: if-statements, breaks, loops, etc.
251 /// If the control-flow is conditional, the condition expression will appear
252 /// within the set of statements in the block (usually the last statement).
253 ///
254 /// Predecessors: the order in the set of predecessors is arbitrary.
255 ///
256 /// Successors: the order in the set of successors is NOT arbitrary.  We
257 ///  currently have the following orderings based on the terminator:
258 ///
259 ///     Terminator       Successor Ordering
260 ///  -----------------------------------------------------
261 ///       if            Then Block;  Else Block
262 ///     ? operator      LHS expression;  RHS expression
263 ///     &&, ||          expression that uses result of && or ||, RHS
264 ///
265 /// But note that any of that may be NULL in case of optimized-out edges.
266 ///
267 class CFGBlock {
268   class ElementList {
269     typedef BumpVector<CFGElement> ImplTy;
270     ImplTy Impl;
271   public:
272     ElementList(BumpVectorContext &C) : Impl(C, 4) {}
273     
274     typedef std::reverse_iterator<ImplTy::iterator>       iterator;
275     typedef std::reverse_iterator<ImplTy::const_iterator> const_iterator;
276     typedef ImplTy::iterator                              reverse_iterator;
277     typedef ImplTy::const_iterator                        const_reverse_iterator;
278   
279     void push_back(CFGElement e, BumpVectorContext &C) { Impl.push_back(e, C); }
280     reverse_iterator insert(reverse_iterator I, size_t Cnt, CFGElement E,
281         BumpVectorContext& C) {
282       return Impl.insert(I, Cnt, E, C);
283     }
284
285     CFGElement front() const { return Impl.back(); }
286     CFGElement back() const { return Impl.front(); }
287     
288     iterator begin() { return Impl.rbegin(); }
289     iterator end() { return Impl.rend(); }
290     const_iterator begin() const { return Impl.rbegin(); }
291     const_iterator end() const { return Impl.rend(); }
292     reverse_iterator rbegin() { return Impl.begin(); }
293     reverse_iterator rend() { return Impl.end(); }
294     const_reverse_iterator rbegin() const { return Impl.begin(); }
295     const_reverse_iterator rend() const { return Impl.end(); }
296
297    CFGElement operator[](size_t i) const  {
298      assert(i < Impl.size());
299      return Impl[Impl.size() - 1 - i];
300    }
301     
302     size_t size() const { return Impl.size(); }
303     bool empty() const { return Impl.empty(); }
304   };
305
306   /// Stmts - The set of statements in the basic block.
307   ElementList Elements;
308
309   /// Label - An (optional) label that prefixes the executable
310   ///  statements in the block.  When this variable is non-NULL, it is
311   ///  either an instance of LabelStmt, SwitchCase or CXXCatchStmt.
312   Stmt *Label;
313
314   /// Terminator - The terminator for a basic block that
315   ///  indicates the type of control-flow that occurs between a block
316   ///  and its successors.
317   CFGTerminator Terminator;
318
319   /// LoopTarget - Some blocks are used to represent the "loop edge" to
320   ///  the start of a loop from within the loop body.  This Stmt* will be
321   ///  refer to the loop statement for such blocks (and be null otherwise).
322   const Stmt *LoopTarget;
323
324   /// BlockID - A numerical ID assigned to a CFGBlock during construction
325   ///   of the CFG.
326   unsigned BlockID;
327
328   /// Predecessors/Successors - Keep track of the predecessor / successor
329   /// CFG blocks.
330   typedef BumpVector<CFGBlock*> AdjacentBlocks;
331   AdjacentBlocks Preds;
332   AdjacentBlocks Succs;
333
334 public:
335   explicit CFGBlock(unsigned blockid, BumpVectorContext &C)
336     : Elements(C), Label(NULL), Terminator(NULL), LoopTarget(NULL),
337       BlockID(blockid), Preds(C, 1), Succs(C, 1) {}
338   ~CFGBlock() {}
339
340   // Statement iterators
341   typedef ElementList::iterator                      iterator;
342   typedef ElementList::const_iterator                const_iterator;
343   typedef ElementList::reverse_iterator              reverse_iterator;
344   typedef ElementList::const_reverse_iterator        const_reverse_iterator;
345
346   CFGElement                 front()       const { return Elements.front();   }
347   CFGElement                 back()        const { return Elements.back();    }
348
349   iterator                   begin()             { return Elements.begin();   }
350   iterator                   end()               { return Elements.end();     }
351   const_iterator             begin()       const { return Elements.begin();   }
352   const_iterator             end()         const { return Elements.end();     }
353
354   reverse_iterator           rbegin()            { return Elements.rbegin();  }
355   reverse_iterator           rend()              { return Elements.rend();    }
356   const_reverse_iterator     rbegin()      const { return Elements.rbegin();  }
357   const_reverse_iterator     rend()        const { return Elements.rend();    }
358
359   unsigned                   size()        const { return Elements.size();    }
360   bool                       empty()       const { return Elements.empty();   }
361
362   CFGElement operator[](size_t i) const  { return Elements[i]; }
363
364   // CFG iterators
365   typedef AdjacentBlocks::iterator                              pred_iterator;
366   typedef AdjacentBlocks::const_iterator                  const_pred_iterator;
367   typedef AdjacentBlocks::reverse_iterator              pred_reverse_iterator;
368   typedef AdjacentBlocks::const_reverse_iterator  const_pred_reverse_iterator;
369
370   typedef AdjacentBlocks::iterator                              succ_iterator;
371   typedef AdjacentBlocks::const_iterator                  const_succ_iterator;
372   typedef AdjacentBlocks::reverse_iterator              succ_reverse_iterator;
373   typedef AdjacentBlocks::const_reverse_iterator  const_succ_reverse_iterator;
374
375   pred_iterator                pred_begin()        { return Preds.begin();   }
376   pred_iterator                pred_end()          { return Preds.end();     }
377   const_pred_iterator          pred_begin()  const { return Preds.begin();   }
378   const_pred_iterator          pred_end()    const { return Preds.end();     }
379
380   pred_reverse_iterator        pred_rbegin()       { return Preds.rbegin();  }
381   pred_reverse_iterator        pred_rend()         { return Preds.rend();    }
382   const_pred_reverse_iterator  pred_rbegin() const { return Preds.rbegin();  }
383   const_pred_reverse_iterator  pred_rend()   const { return Preds.rend();    }
384
385   succ_iterator                succ_begin()        { return Succs.begin();   }
386   succ_iterator                succ_end()          { return Succs.end();     }
387   const_succ_iterator          succ_begin()  const { return Succs.begin();   }
388   const_succ_iterator          succ_end()    const { return Succs.end();     }
389
390   succ_reverse_iterator        succ_rbegin()       { return Succs.rbegin();  }
391   succ_reverse_iterator        succ_rend()         { return Succs.rend();    }
392   const_succ_reverse_iterator  succ_rbegin() const { return Succs.rbegin();  }
393   const_succ_reverse_iterator  succ_rend()   const { return Succs.rend();    }
394
395   unsigned                     succ_size()   const { return Succs.size();    }
396   bool                         succ_empty()  const { return Succs.empty();   }
397
398   unsigned                     pred_size()   const { return Preds.size();    }
399   bool                         pred_empty()  const { return Preds.empty();   }
400
401
402   class FilterOptions {
403   public:
404     FilterOptions() {
405       IgnoreDefaultsWithCoveredEnums = 0;
406     }
407
408     unsigned IgnoreDefaultsWithCoveredEnums : 1;
409   };
410
411   static bool FilterEdge(const FilterOptions &F, const CFGBlock *Src,
412        const CFGBlock *Dst);
413
414   template <typename IMPL, bool IsPred>
415   class FilteredCFGBlockIterator {
416   private:
417     IMPL I, E;
418     const FilterOptions F;
419     const CFGBlock *From;
420    public:
421     explicit FilteredCFGBlockIterator(const IMPL &i, const IMPL &e,
422               const CFGBlock *from,
423               const FilterOptions &f)
424       : I(i), E(e), F(f), From(from) {}
425
426     bool hasMore() const { return I != E; }
427
428     FilteredCFGBlockIterator &operator++() {
429       do { ++I; } while (hasMore() && Filter(*I));
430       return *this;
431     }
432
433     const CFGBlock *operator*() const { return *I; }
434   private:
435     bool Filter(const CFGBlock *To) {
436       return IsPred ? FilterEdge(F, To, From) : FilterEdge(F, From, To);
437     }
438   };
439
440   typedef FilteredCFGBlockIterator<const_pred_iterator, true>
441           filtered_pred_iterator;
442
443   typedef FilteredCFGBlockIterator<const_succ_iterator, false>
444           filtered_succ_iterator;
445
446   filtered_pred_iterator filtered_pred_start_end(const FilterOptions &f) const {
447     return filtered_pred_iterator(pred_begin(), pred_end(), this, f);
448   }
449
450   filtered_succ_iterator filtered_succ_start_end(const FilterOptions &f) const {
451     return filtered_succ_iterator(succ_begin(), succ_end(), this, f);
452   }
453
454   // Manipulation of block contents
455
456   void setTerminator(Stmt* Statement) { Terminator = Statement; }
457   void setLabel(Stmt* Statement) { Label = Statement; }
458   void setLoopTarget(const Stmt *loopTarget) { LoopTarget = loopTarget; }
459
460   CFGTerminator getTerminator() { return Terminator; }
461   const CFGTerminator getTerminator() const { return Terminator; }
462
463   Stmt* getTerminatorCondition();
464
465   const Stmt* getTerminatorCondition() const {
466     return const_cast<CFGBlock*>(this)->getTerminatorCondition();
467   }
468
469   const Stmt *getLoopTarget() const { return LoopTarget; }
470
471   Stmt* getLabel() { return Label; }
472   const Stmt* getLabel() const { return Label; }
473
474   unsigned getBlockID() const { return BlockID; }
475
476   void dump(const CFG *cfg, const LangOptions &LO) const;
477   void print(raw_ostream &OS, const CFG* cfg, const LangOptions &LO) const;
478   void printTerminator(raw_ostream &OS, const LangOptions &LO) const;
479   
480   void addSuccessor(CFGBlock* Block, BumpVectorContext &C) {
481     if (Block)
482       Block->Preds.push_back(this, C);
483     Succs.push_back(Block, C);
484   }
485   
486   void appendStmt(Stmt* statement, BumpVectorContext &C) {
487     Elements.push_back(CFGStmt(statement), C);
488   }
489
490   void appendInitializer(CXXCtorInitializer *initializer,
491                         BumpVectorContext& C) {
492     Elements.push_back(CFGInitializer(initializer), C);
493   }
494
495   void appendBaseDtor(const CXXBaseSpecifier *BS, BumpVectorContext &C) {
496     Elements.push_back(CFGBaseDtor(BS), C);
497   }
498
499   void appendMemberDtor(FieldDecl *FD, BumpVectorContext &C) {
500     Elements.push_back(CFGMemberDtor(FD), C);
501   }
502   
503   void appendTemporaryDtor(CXXBindTemporaryExpr *E, BumpVectorContext &C) {
504     Elements.push_back(CFGTemporaryDtor(E), C);
505   }
506
507   // Destructors must be inserted in reversed order. So insertion is in two
508   // steps. First we prepare space for some number of elements, then we insert
509   // the elements beginning at the last position in prepared space.
510   iterator beginAutomaticObjDtorsInsert(iterator I, size_t Cnt,
511       BumpVectorContext& C) {
512     return iterator(Elements.insert(I.base(), Cnt, CFGElement(), C));
513   }
514   iterator insertAutomaticObjDtor(iterator I, VarDecl* VD, Stmt* S) {
515     *I = CFGAutomaticObjDtor(VD, S);
516     return ++I;
517   }
518 };
519
520 /// CFG - Represents a source-level, intra-procedural CFG that represents the
521 ///  control-flow of a Stmt.  The Stmt can represent an entire function body,
522 ///  or a single expression.  A CFG will always contain one empty block that
523 ///  represents the Exit point of the CFG.  A CFG will also contain a designated
524 ///  Entry block.  The CFG solely represents control-flow; it consists of
525 ///  CFGBlocks which are simply containers of Stmt*'s in the AST the CFG
526 ///  was constructed from.
527 class CFG {
528 public:
529   //===--------------------------------------------------------------------===//
530   // CFG Construction & Manipulation.
531   //===--------------------------------------------------------------------===//
532
533   class BuildOptions {
534     llvm::BitVector alwaysAddMask;
535   public:
536     typedef llvm::DenseMap<const Stmt *, const CFGBlock*> ForcedBlkExprs;
537     ForcedBlkExprs **forcedBlkExprs;    
538
539     bool PruneTriviallyFalseEdges:1;
540     bool AddEHEdges:1;
541     bool AddInitializers:1;
542     bool AddImplicitDtors:1;
543     
544     bool alwaysAdd(const Stmt *stmt) const {
545       return alwaysAddMask[stmt->getStmtClass()];
546     }
547     
548     void setAlwaysAdd(Stmt::StmtClass stmtClass) {
549       alwaysAddMask[stmtClass] = true;
550     }
551
552     BuildOptions()
553     : alwaysAddMask(Stmt::lastStmtConstant, false)
554       ,forcedBlkExprs(0), PruneTriviallyFalseEdges(true)
555       ,AddEHEdges(false)
556       ,AddInitializers(false)
557       ,AddImplicitDtors(false) {}
558   };
559
560   /// buildCFG - Builds a CFG from an AST.  The responsibility to free the
561   ///   constructed CFG belongs to the caller.
562   static CFG* buildCFG(const Decl *D, Stmt* AST, ASTContext *C,
563                        const BuildOptions &BO);
564
565   /// createBlock - Create a new block in the CFG.  The CFG owns the block;
566   ///  the caller should not directly free it.
567   CFGBlock* createBlock();
568
569   /// setEntry - Set the entry block of the CFG.  This is typically used
570   ///  only during CFG construction.  Most CFG clients expect that the
571   ///  entry block has no predecessors and contains no statements.
572   void setEntry(CFGBlock *B) { Entry = B; }
573
574   /// setIndirectGotoBlock - Set the block used for indirect goto jumps.
575   ///  This is typically used only during CFG construction.
576   void setIndirectGotoBlock(CFGBlock* B) { IndirectGotoBlock = B; }
577
578   //===--------------------------------------------------------------------===//
579   // Block Iterators
580   //===--------------------------------------------------------------------===//
581
582   typedef BumpVector<CFGBlock*>                    CFGBlockListTy;    
583   typedef CFGBlockListTy::iterator                 iterator;
584   typedef CFGBlockListTy::const_iterator           const_iterator;
585   typedef std::reverse_iterator<iterator>          reverse_iterator;
586   typedef std::reverse_iterator<const_iterator>    const_reverse_iterator;
587
588   CFGBlock&                 front()                { return *Blocks.front(); }
589   CFGBlock&                 back()                 { return *Blocks.back(); }
590
591   iterator                  begin()                { return Blocks.begin(); }
592   iterator                  end()                  { return Blocks.end(); }
593   const_iterator            begin()       const    { return Blocks.begin(); }
594   const_iterator            end()         const    { return Blocks.end(); }
595
596   reverse_iterator          rbegin()               { return Blocks.rbegin(); }
597   reverse_iterator          rend()                 { return Blocks.rend(); }
598   const_reverse_iterator    rbegin()      const    { return Blocks.rbegin(); }
599   const_reverse_iterator    rend()        const    { return Blocks.rend(); }
600
601   CFGBlock&                 getEntry()             { return *Entry; }
602   const CFGBlock&           getEntry()    const    { return *Entry; }
603   CFGBlock&                 getExit()              { return *Exit; }
604   const CFGBlock&           getExit()     const    { return *Exit; }
605
606   CFGBlock*        getIndirectGotoBlock() { return IndirectGotoBlock; }
607   const CFGBlock*  getIndirectGotoBlock() const { return IndirectGotoBlock; }
608
609   //===--------------------------------------------------------------------===//
610   // Member templates useful for various batch operations over CFGs.
611   //===--------------------------------------------------------------------===//
612
613   template <typename CALLBACK>
614   void VisitBlockStmts(CALLBACK& O) const {
615     for (const_iterator I=begin(), E=end(); I != E; ++I)
616       for (CFGBlock::const_iterator BI=(*I)->begin(), BE=(*I)->end();
617            BI != BE; ++BI) {
618         if (const CFGStmt *stmt = BI->getAs<CFGStmt>())
619           O(stmt->getStmt());
620       }
621   }
622
623   //===--------------------------------------------------------------------===//
624   // CFG Introspection.
625   //===--------------------------------------------------------------------===//
626
627   struct   BlkExprNumTy {
628     const signed Idx;
629     explicit BlkExprNumTy(signed idx) : Idx(idx) {}
630     explicit BlkExprNumTy() : Idx(-1) {}
631     operator bool() const { return Idx >= 0; }
632     operator unsigned() const { assert(Idx >=0); return (unsigned) Idx; }
633   };
634
635   bool isBlkExpr(const Stmt* S) { return getBlkExprNum(S); }
636   bool isBlkExpr(const Stmt *S) const {
637     return const_cast<CFG*>(this)->isBlkExpr(S);
638   }
639   BlkExprNumTy  getBlkExprNum(const Stmt* S);
640   unsigned      getNumBlkExprs();
641
642   /// getNumBlockIDs - Returns the total number of BlockIDs allocated (which
643   /// start at 0).
644   unsigned getNumBlockIDs() const { return NumBlockIDs; }
645
646   //===--------------------------------------------------------------------===//
647   // CFG Debugging: Pretty-Printing and Visualization.
648   //===--------------------------------------------------------------------===//
649
650   void viewCFG(const LangOptions &LO) const;
651   void print(raw_ostream& OS, const LangOptions &LO) const;
652   void dump(const LangOptions &LO) const;
653
654   //===--------------------------------------------------------------------===//
655   // Internal: constructors and data.
656   //===--------------------------------------------------------------------===//
657
658   CFG() : Entry(NULL), Exit(NULL), IndirectGotoBlock(NULL), NumBlockIDs(0),
659           BlkExprMap(NULL), Blocks(BlkBVC, 10) {}
660
661   ~CFG();
662
663   llvm::BumpPtrAllocator& getAllocator() {
664     return BlkBVC.getAllocator();
665   }
666   
667   BumpVectorContext &getBumpVectorContext() {
668     return BlkBVC;
669   }
670
671 private:
672   CFGBlock* Entry;
673   CFGBlock* Exit;
674   CFGBlock* IndirectGotoBlock;  // Special block to contain collective dispatch
675                                 // for indirect gotos
676   unsigned  NumBlockIDs;
677
678   // BlkExprMap - An opaque pointer to prevent inclusion of DenseMap.h.
679   //  It represents a map from Expr* to integers to record the set of
680   //  block-level expressions and their "statement number" in the CFG.
681   void*     BlkExprMap;
682   
683   BumpVectorContext BlkBVC;
684   
685   CFGBlockListTy Blocks;
686
687 };
688 } // end namespace clang
689
690 //===----------------------------------------------------------------------===//
691 // GraphTraits specializations for CFG basic block graphs (source-level CFGs)
692 //===----------------------------------------------------------------------===//
693
694 namespace llvm {
695
696 /// Implement simplify_type for CFGTerminator, so that we can dyn_cast from
697 /// CFGTerminator to a specific Stmt class.
698 template <> struct simplify_type<const ::clang::CFGTerminator> {
699   typedef const ::clang::Stmt *SimpleType;
700   static SimpleType getSimplifiedValue(const ::clang::CFGTerminator &Val) {
701     return Val.getStmt();
702   }
703 };
704
705 template <> struct simplify_type< ::clang::CFGTerminator> {
706   typedef ::clang::Stmt *SimpleType;
707   static SimpleType getSimplifiedValue(const ::clang::CFGTerminator &Val) {
708     return const_cast<SimpleType>(Val.getStmt());
709   }
710 };
711
712 // Traits for: CFGBlock
713
714 template <> struct GraphTraits< ::clang::CFGBlock* > {
715   typedef ::clang::CFGBlock NodeType;
716   typedef ::clang::CFGBlock::succ_iterator ChildIteratorType;
717
718   static NodeType* getEntryNode(::clang::CFGBlock* BB)
719   { return BB; }
720
721   static inline ChildIteratorType child_begin(NodeType* N)
722   { return N->succ_begin(); }
723
724   static inline ChildIteratorType child_end(NodeType* N)
725   { return N->succ_end(); }
726 };
727
728 template <> struct GraphTraits< const ::clang::CFGBlock* > {
729   typedef const ::clang::CFGBlock NodeType;
730   typedef ::clang::CFGBlock::const_succ_iterator ChildIteratorType;
731
732   static NodeType* getEntryNode(const clang::CFGBlock* BB)
733   { return BB; }
734
735   static inline ChildIteratorType child_begin(NodeType* N)
736   { return N->succ_begin(); }
737
738   static inline ChildIteratorType child_end(NodeType* N)
739   { return N->succ_end(); }
740 };
741
742 template <> struct GraphTraits<Inverse<const ::clang::CFGBlock*> > {
743   typedef const ::clang::CFGBlock NodeType;
744   typedef ::clang::CFGBlock::const_pred_iterator ChildIteratorType;
745
746   static NodeType *getEntryNode(Inverse<const ::clang::CFGBlock*> G)
747   { return G.Graph; }
748
749   static inline ChildIteratorType child_begin(NodeType* N)
750   { return N->pred_begin(); }
751
752   static inline ChildIteratorType child_end(NodeType* N)
753   { return N->pred_end(); }
754 };
755
756 // Traits for: CFG
757
758 template <> struct GraphTraits< ::clang::CFG* >
759     : public GraphTraits< ::clang::CFGBlock* >  {
760
761   typedef ::clang::CFG::iterator nodes_iterator;
762
763   static NodeType *getEntryNode(::clang::CFG* F) { return &F->getEntry(); }
764   static nodes_iterator nodes_begin(::clang::CFG* F) { return F->begin(); }
765   static nodes_iterator nodes_end(::clang::CFG* F) { return F->end(); }
766 };
767
768 template <> struct GraphTraits<const ::clang::CFG* >
769     : public GraphTraits<const ::clang::CFGBlock* >  {
770
771   typedef ::clang::CFG::const_iterator nodes_iterator;
772
773   static NodeType *getEntryNode( const ::clang::CFG* F) {
774     return &F->getEntry();
775   }
776   static nodes_iterator nodes_begin( const ::clang::CFG* F) {
777     return F->begin();
778   }
779   static nodes_iterator nodes_end( const ::clang::CFG* F) {
780     return F->end();
781   }
782 };
783
784 template <> struct GraphTraits<Inverse<const ::clang::CFG*> >
785   : public GraphTraits<Inverse<const ::clang::CFGBlock*> > {
786
787   typedef ::clang::CFG::const_iterator nodes_iterator;
788
789   static NodeType *getEntryNode(const ::clang::CFG* F) { return &F->getExit(); }
790   static nodes_iterator nodes_begin(const ::clang::CFG* F) { return F->begin();}
791   static nodes_iterator nodes_end(const ::clang::CFG* F) { return F->end(); }
792 };
793 } // end llvm namespace
794 #endif