]> granicus.if.org Git - clang/blob - include/clang/Analysis/CFG.h
Simplify passing of CFGBuildOptions around for AnalysisContext. No functionality...
[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;
540     bool AddEHEdges;
541     bool AddInitializers;
542     bool AddImplicitDtors;
543     
544     bool alwaysAdd(const Stmt *stmt) const {
545       return alwaysAddMask[stmt->getStmtClass()];
546     }
547     
548     BuildOptions &setAlwaysAdd(Stmt::StmtClass stmtClass) {
549       alwaysAddMask[stmtClass] = true;
550       return *this;
551     }
552
553     BuildOptions()
554     : alwaysAddMask(Stmt::lastStmtConstant, false)
555       ,forcedBlkExprs(0), PruneTriviallyFalseEdges(true)
556       ,AddEHEdges(false)
557       ,AddInitializers(false)
558       ,AddImplicitDtors(false) {}
559   };
560
561   /// buildCFG - Builds a CFG from an AST.  The responsibility to free the
562   ///   constructed CFG belongs to the caller.
563   static CFG* buildCFG(const Decl *D, Stmt* AST, ASTContext *C,
564                        const BuildOptions &BO);
565
566   /// createBlock - Create a new block in the CFG.  The CFG owns the block;
567   ///  the caller should not directly free it.
568   CFGBlock* createBlock();
569
570   /// setEntry - Set the entry block of the CFG.  This is typically used
571   ///  only during CFG construction.  Most CFG clients expect that the
572   ///  entry block has no predecessors and contains no statements.
573   void setEntry(CFGBlock *B) { Entry = B; }
574
575   /// setIndirectGotoBlock - Set the block used for indirect goto jumps.
576   ///  This is typically used only during CFG construction.
577   void setIndirectGotoBlock(CFGBlock* B) { IndirectGotoBlock = B; }
578
579   //===--------------------------------------------------------------------===//
580   // Block Iterators
581   //===--------------------------------------------------------------------===//
582
583   typedef BumpVector<CFGBlock*>                    CFGBlockListTy;    
584   typedef CFGBlockListTy::iterator                 iterator;
585   typedef CFGBlockListTy::const_iterator           const_iterator;
586   typedef std::reverse_iterator<iterator>          reverse_iterator;
587   typedef std::reverse_iterator<const_iterator>    const_reverse_iterator;
588
589   CFGBlock&                 front()                { return *Blocks.front(); }
590   CFGBlock&                 back()                 { return *Blocks.back(); }
591
592   iterator                  begin()                { return Blocks.begin(); }
593   iterator                  end()                  { return Blocks.end(); }
594   const_iterator            begin()       const    { return Blocks.begin(); }
595   const_iterator            end()         const    { return Blocks.end(); }
596
597   reverse_iterator          rbegin()               { return Blocks.rbegin(); }
598   reverse_iterator          rend()                 { return Blocks.rend(); }
599   const_reverse_iterator    rbegin()      const    { return Blocks.rbegin(); }
600   const_reverse_iterator    rend()        const    { return Blocks.rend(); }
601
602   CFGBlock&                 getEntry()             { return *Entry; }
603   const CFGBlock&           getEntry()    const    { return *Entry; }
604   CFGBlock&                 getExit()              { return *Exit; }
605   const CFGBlock&           getExit()     const    { return *Exit; }
606
607   CFGBlock*        getIndirectGotoBlock() { return IndirectGotoBlock; }
608   const CFGBlock*  getIndirectGotoBlock() const { return IndirectGotoBlock; }
609
610   //===--------------------------------------------------------------------===//
611   // Member templates useful for various batch operations over CFGs.
612   //===--------------------------------------------------------------------===//
613
614   template <typename CALLBACK>
615   void VisitBlockStmts(CALLBACK& O) const {
616     for (const_iterator I=begin(), E=end(); I != E; ++I)
617       for (CFGBlock::const_iterator BI=(*I)->begin(), BE=(*I)->end();
618            BI != BE; ++BI) {
619         if (const CFGStmt *stmt = BI->getAs<CFGStmt>())
620           O(stmt->getStmt());
621       }
622   }
623
624   //===--------------------------------------------------------------------===//
625   // CFG Introspection.
626   //===--------------------------------------------------------------------===//
627
628   struct   BlkExprNumTy {
629     const signed Idx;
630     explicit BlkExprNumTy(signed idx) : Idx(idx) {}
631     explicit BlkExprNumTy() : Idx(-1) {}
632     operator bool() const { return Idx >= 0; }
633     operator unsigned() const { assert(Idx >=0); return (unsigned) Idx; }
634   };
635
636   bool isBlkExpr(const Stmt* S) { return getBlkExprNum(S); }
637   bool isBlkExpr(const Stmt *S) const {
638     return const_cast<CFG*>(this)->isBlkExpr(S);
639   }
640   BlkExprNumTy  getBlkExprNum(const Stmt* S);
641   unsigned      getNumBlkExprs();
642
643   /// getNumBlockIDs - Returns the total number of BlockIDs allocated (which
644   /// start at 0).
645   unsigned getNumBlockIDs() const { return NumBlockIDs; }
646
647   //===--------------------------------------------------------------------===//
648   // CFG Debugging: Pretty-Printing and Visualization.
649   //===--------------------------------------------------------------------===//
650
651   void viewCFG(const LangOptions &LO) const;
652   void print(raw_ostream& OS, const LangOptions &LO) const;
653   void dump(const LangOptions &LO) const;
654
655   //===--------------------------------------------------------------------===//
656   // Internal: constructors and data.
657   //===--------------------------------------------------------------------===//
658
659   CFG() : Entry(NULL), Exit(NULL), IndirectGotoBlock(NULL), NumBlockIDs(0),
660           BlkExprMap(NULL), Blocks(BlkBVC, 10) {}
661
662   ~CFG();
663
664   llvm::BumpPtrAllocator& getAllocator() {
665     return BlkBVC.getAllocator();
666   }
667   
668   BumpVectorContext &getBumpVectorContext() {
669     return BlkBVC;
670   }
671
672 private:
673   CFGBlock* Entry;
674   CFGBlock* Exit;
675   CFGBlock* IndirectGotoBlock;  // Special block to contain collective dispatch
676                                 // for indirect gotos
677   unsigned  NumBlockIDs;
678
679   // BlkExprMap - An opaque pointer to prevent inclusion of DenseMap.h.
680   //  It represents a map from Expr* to integers to record the set of
681   //  block-level expressions and their "statement number" in the CFG.
682   void*     BlkExprMap;
683   
684   BumpVectorContext BlkBVC;
685   
686   CFGBlockListTy Blocks;
687
688 };
689 } // end namespace clang
690
691 //===----------------------------------------------------------------------===//
692 // GraphTraits specializations for CFG basic block graphs (source-level CFGs)
693 //===----------------------------------------------------------------------===//
694
695 namespace llvm {
696
697 /// Implement simplify_type for CFGTerminator, so that we can dyn_cast from
698 /// CFGTerminator to a specific Stmt class.
699 template <> struct simplify_type<const ::clang::CFGTerminator> {
700   typedef const ::clang::Stmt *SimpleType;
701   static SimpleType getSimplifiedValue(const ::clang::CFGTerminator &Val) {
702     return Val.getStmt();
703   }
704 };
705
706 template <> struct simplify_type< ::clang::CFGTerminator> {
707   typedef ::clang::Stmt *SimpleType;
708   static SimpleType getSimplifiedValue(const ::clang::CFGTerminator &Val) {
709     return const_cast<SimpleType>(Val.getStmt());
710   }
711 };
712
713 // Traits for: CFGBlock
714
715 template <> struct GraphTraits< ::clang::CFGBlock* > {
716   typedef ::clang::CFGBlock NodeType;
717   typedef ::clang::CFGBlock::succ_iterator ChildIteratorType;
718
719   static NodeType* getEntryNode(::clang::CFGBlock* BB)
720   { return BB; }
721
722   static inline ChildIteratorType child_begin(NodeType* N)
723   { return N->succ_begin(); }
724
725   static inline ChildIteratorType child_end(NodeType* N)
726   { return N->succ_end(); }
727 };
728
729 template <> struct GraphTraits< const ::clang::CFGBlock* > {
730   typedef const ::clang::CFGBlock NodeType;
731   typedef ::clang::CFGBlock::const_succ_iterator ChildIteratorType;
732
733   static NodeType* getEntryNode(const clang::CFGBlock* BB)
734   { return BB; }
735
736   static inline ChildIteratorType child_begin(NodeType* N)
737   { return N->succ_begin(); }
738
739   static inline ChildIteratorType child_end(NodeType* N)
740   { return N->succ_end(); }
741 };
742
743 template <> struct GraphTraits<Inverse<const ::clang::CFGBlock*> > {
744   typedef const ::clang::CFGBlock NodeType;
745   typedef ::clang::CFGBlock::const_pred_iterator ChildIteratorType;
746
747   static NodeType *getEntryNode(Inverse<const ::clang::CFGBlock*> G)
748   { return G.Graph; }
749
750   static inline ChildIteratorType child_begin(NodeType* N)
751   { return N->pred_begin(); }
752
753   static inline ChildIteratorType child_end(NodeType* N)
754   { return N->pred_end(); }
755 };
756
757 // Traits for: CFG
758
759 template <> struct GraphTraits< ::clang::CFG* >
760     : public GraphTraits< ::clang::CFGBlock* >  {
761
762   typedef ::clang::CFG::iterator nodes_iterator;
763
764   static NodeType *getEntryNode(::clang::CFG* F) { return &F->getEntry(); }
765   static nodes_iterator nodes_begin(::clang::CFG* F) { return F->begin(); }
766   static nodes_iterator nodes_end(::clang::CFG* F) { return F->end(); }
767 };
768
769 template <> struct GraphTraits<const ::clang::CFG* >
770     : public GraphTraits<const ::clang::CFGBlock* >  {
771
772   typedef ::clang::CFG::const_iterator nodes_iterator;
773
774   static NodeType *getEntryNode( const ::clang::CFG* F) {
775     return &F->getEntry();
776   }
777   static nodes_iterator nodes_begin( const ::clang::CFG* F) {
778     return F->begin();
779   }
780   static nodes_iterator nodes_end( const ::clang::CFG* F) {
781     return F->end();
782   }
783 };
784
785 template <> struct GraphTraits<Inverse<const ::clang::CFG*> >
786   : public GraphTraits<Inverse<const ::clang::CFGBlock*> > {
787
788   typedef ::clang::CFG::const_iterator nodes_iterator;
789
790   static NodeType *getEntryNode(const ::clang::CFG* F) { return &F->getExit(); }
791   static nodes_iterator nodes_begin(const ::clang::CFG* F) { return F->begin();}
792   static nodes_iterator nodes_end(const ::clang::CFG* F) { return F->end(); }
793 };
794 } // end llvm namespace
795 #endif