CFG.cpp revision 8a69366a1cd8fe1e9fd312048c0d5ce58eabeeb2
1//===--- CFG.cpp - 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#include "clang/Analysis/Support/SaveAndRestore.h"
16#include "clang/Analysis/CFG.h"
17#include "clang/AST/StmtVisitor.h"
18#include "clang/AST/PrettyPrinter.h"
19#include "llvm/Support/GraphWriter.h"
20#include "llvm/Support/Allocator.h"
21#include "llvm/Support/Format.h"
22#include "llvm/ADT/DenseMap.h"
23#include "llvm/ADT/SmallPtrSet.h"
24#include "llvm/ADT/OwningPtr.h"
25
26using namespace clang;
27
28namespace {
29
30static SourceLocation GetEndLoc(Decl* D) {
31  if (VarDecl* VD = dyn_cast<VarDecl>(D))
32    if (Expr* Ex = VD->getInit())
33      return Ex->getSourceRange().getEnd();
34
35  return D->getLocation();
36}
37
38class AddStmtChoice {
39public:
40  enum Kind { NotAlwaysAdd = 0, AlwaysAdd, AlwaysAddAsLValue };
41public:
42  AddStmtChoice(Kind kind) : k(kind) {}
43  bool alwaysAdd() const { return k != NotAlwaysAdd; }
44  bool asLValue() const { return k == AlwaysAddAsLValue; }
45private:
46  Kind k;
47};
48
49/// CFGBuilder - This class implements CFG construction from an AST.
50///   The builder is stateful: an instance of the builder should be used to only
51///   construct a single CFG.
52///
53///   Example usage:
54///
55///     CFGBuilder builder;
56///     CFG* cfg = builder.BuildAST(stmt1);
57///
58///  CFG construction is done via a recursive walk of an AST.  We actually parse
59///  the AST in reverse order so that the successor of a basic block is
60///  constructed prior to its predecessor.  This allows us to nicely capture
61///  implicit fall-throughs without extra basic blocks.
62///
63class CFGBuilder {
64  ASTContext *Context;
65  llvm::OwningPtr<CFG> cfg;
66
67  CFGBlock* Block;
68  CFGBlock* Succ;
69  CFGBlock* ContinueTargetBlock;
70  CFGBlock* BreakTargetBlock;
71  CFGBlock* SwitchTerminatedBlock;
72  CFGBlock* DefaultCaseBlock;
73
74  // LabelMap records the mapping from Label expressions to their blocks.
75  typedef llvm::DenseMap<LabelStmt*,CFGBlock*> LabelMapTy;
76  LabelMapTy LabelMap;
77
78  // A list of blocks that end with a "goto" that must be backpatched to their
79  // resolved targets upon completion of CFG construction.
80  typedef std::vector<CFGBlock*> BackpatchBlocksTy;
81  BackpatchBlocksTy BackpatchBlocks;
82
83  // A list of labels whose address has been taken (for indirect gotos).
84  typedef llvm::SmallPtrSet<LabelStmt*,5> LabelSetTy;
85  LabelSetTy AddressTakenLabels;
86
87public:
88  explicit CFGBuilder() : cfg(new CFG()), // crew a new CFG
89                          Block(NULL), Succ(NULL),
90                          ContinueTargetBlock(NULL), BreakTargetBlock(NULL),
91                          SwitchTerminatedBlock(NULL), DefaultCaseBlock(NULL) {}
92
93  // buildCFG - Used by external clients to construct the CFG.
94  CFG* buildCFG(Stmt *Statement, ASTContext *C);
95
96private:
97  // Visitors to walk an AST and construct the CFG.
98  CFGBlock *VisitAddrLabelExpr(AddrLabelExpr *A, AddStmtChoice asc);
99  CFGBlock *VisitBinaryOperator(BinaryOperator *B, AddStmtChoice asc);
100  CFGBlock *VisitBlockExpr(BlockExpr* E, AddStmtChoice asc);
101  CFGBlock *VisitBreakStmt(BreakStmt *B);
102  CFGBlock *VisitCallExpr(CallExpr *C, AddStmtChoice asc);
103  CFGBlock *VisitCaseStmt(CaseStmt *C);
104  CFGBlock *VisitChooseExpr(ChooseExpr *C, AddStmtChoice asc);
105  CFGBlock *VisitCompoundStmt(CompoundStmt *C);
106  CFGBlock *VisitConditionalOperator(ConditionalOperator *C,
107                                     AddStmtChoice asc);
108  CFGBlock *VisitContinueStmt(ContinueStmt *C);
109  CFGBlock *VisitCXXCatchStmt(CXXCatchStmt *S) { return NYS(); }
110  CFGBlock *VisitCXXThrowExpr(CXXThrowExpr *T);
111  CFGBlock *VisitCXXTryStmt(CXXTryStmt *S) { return NYS(); }
112  CFGBlock *VisitDeclStmt(DeclStmt *DS);
113  CFGBlock *VisitDeclSubExpr(Decl* D);
114  CFGBlock *VisitDefaultStmt(DefaultStmt *D);
115  CFGBlock *VisitDoStmt(DoStmt *D);
116  CFGBlock *VisitForStmt(ForStmt *F);
117  CFGBlock *VisitGotoStmt(GotoStmt* G);
118  CFGBlock *VisitIfStmt(IfStmt *I);
119  CFGBlock *VisitIndirectGotoStmt(IndirectGotoStmt *I);
120  CFGBlock *VisitLabelStmt(LabelStmt *L);
121  CFGBlock *VisitObjCAtCatchStmt(ObjCAtCatchStmt *S);
122  CFGBlock *VisitObjCAtSynchronizedStmt(ObjCAtSynchronizedStmt *S);
123  CFGBlock *VisitObjCAtThrowStmt(ObjCAtThrowStmt *S);
124  CFGBlock *VisitObjCAtTryStmt(ObjCAtTryStmt *S);
125  CFGBlock *VisitObjCForCollectionStmt(ObjCForCollectionStmt *S);
126  CFGBlock *VisitReturnStmt(ReturnStmt* R);
127  CFGBlock *VisitSizeOfAlignOfExpr(SizeOfAlignOfExpr *E, AddStmtChoice asc);
128  CFGBlock *VisitStmtExpr(StmtExpr *S, AddStmtChoice asc);
129  CFGBlock *VisitSwitchStmt(SwitchStmt *S);
130  CFGBlock *VisitWhileStmt(WhileStmt *W);
131
132  CFGBlock *Visit(Stmt *S, AddStmtChoice asc = AddStmtChoice::NotAlwaysAdd);
133  CFGBlock *VisitStmt(Stmt *S, AddStmtChoice asc);
134  CFGBlock *VisitChildren(Stmt* S);
135
136  // NYS == Not Yet Supported
137  CFGBlock* NYS() {
138    badCFG = true;
139    return Block;
140  }
141
142  void autoCreateBlock() { if (!Block) Block = createBlock(); }
143  CFGBlock *createBlock(bool add_successor = true);
144  bool FinishBlock(CFGBlock* B);
145  CFGBlock *addStmt(Stmt *S, AddStmtChoice asc = AddStmtChoice::AlwaysAdd) {
146    return Visit(S, asc);
147  }
148
149  void AppendStmt(CFGBlock *B, Stmt *S,
150                  AddStmtChoice asc = AddStmtChoice::AlwaysAdd) {
151    B->appendStmt(S, cfg->getBumpVectorContext(), asc.asLValue());
152  }
153
154  void AddSuccessor(CFGBlock *B, CFGBlock *S) {
155    B->addSuccessor(S, cfg->getBumpVectorContext());
156  }
157
158  /// TryResult - a class representing a variant over the values
159  ///  'true', 'false', or 'unknown'.  This is returned by TryEvaluateBool,
160  ///  and is used by the CFGBuilder to decide if a branch condition
161  ///  can be decided up front during CFG construction.
162  class TryResult {
163    int X;
164  public:
165    TryResult(bool b) : X(b ? 1 : 0) {}
166    TryResult() : X(-1) {}
167
168    bool isTrue() const { return X == 1; }
169    bool isFalse() const { return X == 0; }
170    bool isKnown() const { return X >= 0; }
171    void negate() {
172      assert(isKnown());
173      X ^= 0x1;
174    }
175  };
176
177  /// TryEvaluateBool - Try and evaluate the Stmt and return 0 or 1
178  /// if we can evaluate to a known value, otherwise return -1.
179  TryResult TryEvaluateBool(Expr *S) {
180    Expr::EvalResult Result;
181    if (!S->isTypeDependent() && !S->isValueDependent() &&
182        S->Evaluate(Result, *Context) && Result.Val.isInt())
183      return Result.Val.getInt().getBoolValue();
184
185    return TryResult();
186  }
187
188  bool badCFG;
189};
190
191// FIXME: Add support for dependent-sized array types in C++?
192// Does it even make sense to build a CFG for an uninstantiated template?
193static VariableArrayType* FindVA(Type* t) {
194  while (ArrayType* vt = dyn_cast<ArrayType>(t)) {
195    if (VariableArrayType* vat = dyn_cast<VariableArrayType>(vt))
196      if (vat->getSizeExpr())
197        return vat;
198
199    t = vt->getElementType().getTypePtr();
200  }
201
202  return 0;
203}
204
205/// BuildCFG - Constructs a CFG from an AST (a Stmt*).  The AST can represent an
206///  arbitrary statement.  Examples include a single expression or a function
207///  body (compound statement).  The ownership of the returned CFG is
208///  transferred to the caller.  If CFG construction fails, this method returns
209///  NULL.
210CFG* CFGBuilder::buildCFG(Stmt* Statement, ASTContext* C) {
211  Context = C;
212  assert(cfg.get());
213  if (!Statement)
214    return NULL;
215
216  badCFG = false;
217
218  // Create an empty block that will serve as the exit block for the CFG.  Since
219  // this is the first block added to the CFG, it will be implicitly registered
220  // as the exit block.
221  Succ = createBlock();
222  assert(Succ == &cfg->getExit());
223  Block = NULL;  // the EXIT block is empty.  Create all other blocks lazily.
224
225  // Visit the statements and create the CFG.
226  CFGBlock* B = addStmt(Statement);
227  if (!B)
228    B = Succ;
229
230  if (B) {
231    // Finalize the last constructed block.  This usually involves reversing the
232    // order of the statements in the block.
233    if (Block) FinishBlock(B);
234
235    // Backpatch the gotos whose label -> block mappings we didn't know when we
236    // encountered them.
237    for (BackpatchBlocksTy::iterator I = BackpatchBlocks.begin(),
238         E = BackpatchBlocks.end(); I != E; ++I ) {
239
240      CFGBlock* B = *I;
241      GotoStmt* G = cast<GotoStmt>(B->getTerminator());
242      LabelMapTy::iterator LI = LabelMap.find(G->getLabel());
243
244      // If there is no target for the goto, then we are looking at an
245      // incomplete AST.  Handle this by not registering a successor.
246      if (LI == LabelMap.end()) continue;
247
248      AddSuccessor(B, LI->second);
249    }
250
251    // Add successors to the Indirect Goto Dispatch block (if we have one).
252    if (CFGBlock* B = cfg->getIndirectGotoBlock())
253      for (LabelSetTy::iterator I = AddressTakenLabels.begin(),
254           E = AddressTakenLabels.end(); I != E; ++I ) {
255
256        // Lookup the target block.
257        LabelMapTy::iterator LI = LabelMap.find(*I);
258
259        // If there is no target block that contains label, then we are looking
260        // at an incomplete AST.  Handle this by not registering a successor.
261        if (LI == LabelMap.end()) continue;
262
263        AddSuccessor(B, LI->second);
264      }
265
266    Succ = B;
267  }
268
269  // Create an empty entry block that has no predecessors.
270  cfg->setEntry(createBlock());
271
272  return badCFG ? NULL : cfg.take();
273}
274
275/// createBlock - Used to lazily create blocks that are connected
276///  to the current (global) succcessor.
277CFGBlock* CFGBuilder::createBlock(bool add_successor) {
278  CFGBlock* B = cfg->createBlock();
279  if (add_successor && Succ)
280    AddSuccessor(B, Succ);
281  return B;
282}
283
284/// FinishBlock - "Finalize" the block by checking if we have a bad CFG.
285bool CFGBuilder::FinishBlock(CFGBlock* B) {
286  if (badCFG)
287    return false;
288
289  assert(B);
290  return true;
291}
292
293/// Visit - Walk the subtree of a statement and add extra
294///   blocks for ternary operators, &&, and ||.  We also process "," and
295///   DeclStmts (which may contain nested control-flow).
296CFGBlock* CFGBuilder::Visit(Stmt * S, AddStmtChoice asc) {
297tryAgain:
298  switch (S->getStmtClass()) {
299    default:
300      return VisitStmt(S, asc);
301
302    case Stmt::AddrLabelExprClass:
303      return VisitAddrLabelExpr(cast<AddrLabelExpr>(S), asc);
304
305    case Stmt::BinaryOperatorClass:
306      return VisitBinaryOperator(cast<BinaryOperator>(S), asc);
307
308    case Stmt::BlockExprClass:
309      return VisitBlockExpr(cast<BlockExpr>(S), asc);
310
311    case Stmt::BreakStmtClass:
312      return VisitBreakStmt(cast<BreakStmt>(S));
313
314    case Stmt::CallExprClass:
315      return VisitCallExpr(cast<CallExpr>(S), asc);
316
317    case Stmt::CaseStmtClass:
318      return VisitCaseStmt(cast<CaseStmt>(S));
319
320    case Stmt::ChooseExprClass:
321      return VisitChooseExpr(cast<ChooseExpr>(S), asc);
322
323    case Stmt::CompoundStmtClass:
324      return VisitCompoundStmt(cast<CompoundStmt>(S));
325
326    case Stmt::ConditionalOperatorClass:
327      return VisitConditionalOperator(cast<ConditionalOperator>(S), asc);
328
329    case Stmt::ContinueStmtClass:
330      return VisitContinueStmt(cast<ContinueStmt>(S));
331
332    case Stmt::DeclStmtClass:
333      return VisitDeclStmt(cast<DeclStmt>(S));
334
335    case Stmt::DefaultStmtClass:
336      return VisitDefaultStmt(cast<DefaultStmt>(S));
337
338    case Stmt::DoStmtClass:
339      return VisitDoStmt(cast<DoStmt>(S));
340
341    case Stmt::ForStmtClass:
342      return VisitForStmt(cast<ForStmt>(S));
343
344    case Stmt::GotoStmtClass:
345      return VisitGotoStmt(cast<GotoStmt>(S));
346
347    case Stmt::IfStmtClass:
348      return VisitIfStmt(cast<IfStmt>(S));
349
350    case Stmt::IndirectGotoStmtClass:
351      return VisitIndirectGotoStmt(cast<IndirectGotoStmt>(S));
352
353    case Stmt::LabelStmtClass:
354      return VisitLabelStmt(cast<LabelStmt>(S));
355
356    case Stmt::ObjCAtCatchStmtClass:
357      return VisitObjCAtCatchStmt(cast<ObjCAtCatchStmt>(S));
358
359  case Stmt::CXXThrowExprClass:
360    return VisitCXXThrowExpr(cast<CXXThrowExpr>(S));
361
362    case Stmt::ObjCAtSynchronizedStmtClass:
363      return VisitObjCAtSynchronizedStmt(cast<ObjCAtSynchronizedStmt>(S));
364
365    case Stmt::ObjCAtThrowStmtClass:
366      return VisitObjCAtThrowStmt(cast<ObjCAtThrowStmt>(S));
367
368    case Stmt::ObjCAtTryStmtClass:
369      return VisitObjCAtTryStmt(cast<ObjCAtTryStmt>(S));
370
371    case Stmt::ObjCForCollectionStmtClass:
372      return VisitObjCForCollectionStmt(cast<ObjCForCollectionStmt>(S));
373
374    case Stmt::ParenExprClass:
375      S = cast<ParenExpr>(S)->getSubExpr();
376      goto tryAgain;
377
378    case Stmt::NullStmtClass:
379      return Block;
380
381    case Stmt::ReturnStmtClass:
382      return VisitReturnStmt(cast<ReturnStmt>(S));
383
384    case Stmt::SizeOfAlignOfExprClass:
385      return VisitSizeOfAlignOfExpr(cast<SizeOfAlignOfExpr>(S), asc);
386
387    case Stmt::StmtExprClass:
388      return VisitStmtExpr(cast<StmtExpr>(S), asc);
389
390    case Stmt::SwitchStmtClass:
391      return VisitSwitchStmt(cast<SwitchStmt>(S));
392
393    case Stmt::WhileStmtClass:
394      return VisitWhileStmt(cast<WhileStmt>(S));
395  }
396}
397
398CFGBlock *CFGBuilder::VisitStmt(Stmt *S, AddStmtChoice asc) {
399  if (asc.alwaysAdd()) {
400    autoCreateBlock();
401    AppendStmt(Block, S, asc);
402  }
403
404  return VisitChildren(S);
405}
406
407/// VisitChildren - Visit the children of a Stmt.
408CFGBlock *CFGBuilder::VisitChildren(Stmt* Terminator) {
409  CFGBlock *B = Block;
410  for (Stmt::child_iterator I = Terminator->child_begin(),
411         E = Terminator->child_end(); I != E; ++I) {
412    if (*I) B = Visit(*I);
413  }
414  return B;
415}
416
417CFGBlock *CFGBuilder::VisitAddrLabelExpr(AddrLabelExpr *A,
418                                         AddStmtChoice asc) {
419  AddressTakenLabels.insert(A->getLabel());
420
421  if (asc.alwaysAdd()) {
422    autoCreateBlock();
423    AppendStmt(Block, A, asc);
424  }
425
426  return Block;
427}
428
429CFGBlock *CFGBuilder::VisitBinaryOperator(BinaryOperator *B,
430                                          AddStmtChoice asc) {
431  if (B->isLogicalOp()) { // && or ||
432    CFGBlock* ConfluenceBlock = Block ? Block : createBlock();
433    AppendStmt(ConfluenceBlock, B, asc);
434
435    if (!FinishBlock(ConfluenceBlock))
436      return 0;
437
438    // create the block evaluating the LHS
439    CFGBlock* LHSBlock = createBlock(false);
440    LHSBlock->setTerminator(B);
441
442    // create the block evaluating the RHS
443    Succ = ConfluenceBlock;
444    Block = NULL;
445    CFGBlock* RHSBlock = addStmt(B->getRHS());
446    if (!FinishBlock(RHSBlock))
447      return 0;
448
449    // See if this is a known constant.
450    TryResult KnownVal = TryEvaluateBool(B->getLHS());
451    if (KnownVal.isKnown() && (B->getOpcode() == BinaryOperator::LOr))
452      KnownVal.negate();
453
454    // Now link the LHSBlock with RHSBlock.
455    if (B->getOpcode() == BinaryOperator::LOr) {
456      AddSuccessor(LHSBlock, KnownVal.isTrue() ? NULL : ConfluenceBlock);
457      AddSuccessor(LHSBlock, KnownVal.isFalse() ? NULL : RHSBlock);
458    } else {
459      assert (B->getOpcode() == BinaryOperator::LAnd);
460      AddSuccessor(LHSBlock, KnownVal.isFalse() ? NULL : RHSBlock);
461      AddSuccessor(LHSBlock, KnownVal.isTrue() ? NULL : ConfluenceBlock);
462    }
463
464    // Generate the blocks for evaluating the LHS.
465    Block = LHSBlock;
466    return addStmt(B->getLHS());
467  }
468  else if (B->getOpcode() == BinaryOperator::Comma) { // ,
469    autoCreateBlock();
470    AppendStmt(Block, B, asc);
471    addStmt(B->getRHS());
472    return addStmt(B->getLHS());
473  }
474
475  return VisitStmt(B, asc);
476}
477
478CFGBlock *CFGBuilder::VisitBlockExpr(BlockExpr *E, AddStmtChoice asc) {
479  if (asc.alwaysAdd()) {
480    autoCreateBlock();
481    AppendStmt(Block, E, asc);
482  }
483  return Block;
484}
485
486CFGBlock *CFGBuilder::VisitBreakStmt(BreakStmt *B) {
487  // "break" is a control-flow statement.  Thus we stop processing the current
488  // block.
489  if (Block && !FinishBlock(Block))
490      return 0;
491
492  // Now create a new block that ends with the break statement.
493  Block = createBlock(false);
494  Block->setTerminator(B);
495
496  // If there is no target for the break, then we are looking at an incomplete
497  // AST.  This means that the CFG cannot be constructed.
498  if (BreakTargetBlock)
499    AddSuccessor(Block, BreakTargetBlock);
500  else
501    badCFG = true;
502
503
504  return Block;
505}
506
507CFGBlock *CFGBuilder::VisitCallExpr(CallExpr *C, AddStmtChoice asc) {
508  // If this is a call to a no-return function, this stops the block here.
509  bool NoReturn = false;
510  if (C->getCallee()->getType().getNoReturnAttr()) {
511    NoReturn = true;
512  }
513
514  if (FunctionDecl *FD = C->getDirectCallee())
515    if (FD->hasAttr<NoReturnAttr>())
516      NoReturn = true;
517
518  if (!NoReturn)
519    return VisitStmt(C, asc);
520
521  if (Block && !FinishBlock(Block))
522    return 0;
523
524  // Create new block with no successor for the remaining pieces.
525  Block = createBlock(false);
526  AppendStmt(Block, C, asc);
527
528  // Wire this to the exit block directly.
529  AddSuccessor(Block, &cfg->getExit());
530
531  return VisitChildren(C);
532}
533
534CFGBlock *CFGBuilder::VisitChooseExpr(ChooseExpr *C,
535                                      AddStmtChoice asc) {
536  CFGBlock* ConfluenceBlock = Block ? Block : createBlock();
537  AppendStmt(ConfluenceBlock, C, asc);
538  if (!FinishBlock(ConfluenceBlock))
539    return 0;
540
541  Succ = ConfluenceBlock;
542  Block = NULL;
543  CFGBlock* LHSBlock = addStmt(C->getLHS());
544  if (!FinishBlock(LHSBlock))
545    return 0;
546
547  Succ = ConfluenceBlock;
548  Block = NULL;
549  CFGBlock* RHSBlock = addStmt(C->getRHS());
550  if (!FinishBlock(RHSBlock))
551    return 0;
552
553  Block = createBlock(false);
554  // See if this is a known constant.
555  const TryResult& KnownVal = TryEvaluateBool(C->getCond());
556  AddSuccessor(Block, KnownVal.isFalse() ? NULL : LHSBlock);
557  AddSuccessor(Block, KnownVal.isTrue() ? NULL : RHSBlock);
558  Block->setTerminator(C);
559  return addStmt(C->getCond());
560}
561
562
563CFGBlock* CFGBuilder::VisitCompoundStmt(CompoundStmt* C) {
564  CFGBlock* LastBlock = Block;
565
566  for (CompoundStmt::reverse_body_iterator I=C->body_rbegin(), E=C->body_rend();
567       I != E; ++I ) {
568    LastBlock = addStmt(*I);
569
570    if (badCFG)
571      return NULL;
572  }
573  return LastBlock;
574}
575
576CFGBlock *CFGBuilder::VisitConditionalOperator(ConditionalOperator *C,
577                                               AddStmtChoice asc) {
578  // Create the confluence block that will "merge" the results of the ternary
579  // expression.
580  CFGBlock* ConfluenceBlock = Block ? Block : createBlock();
581  AppendStmt(ConfluenceBlock, C, asc);
582  if (!FinishBlock(ConfluenceBlock))
583    return 0;
584
585  // Create a block for the LHS expression if there is an LHS expression.  A
586  // GCC extension allows LHS to be NULL, causing the condition to be the
587  // value that is returned instead.
588  //  e.g: x ?: y is shorthand for: x ? x : y;
589  Succ = ConfluenceBlock;
590  Block = NULL;
591  CFGBlock* LHSBlock = NULL;
592  if (C->getLHS()) {
593    LHSBlock = addStmt(C->getLHS());
594    if (!FinishBlock(LHSBlock))
595      return 0;
596    Block = NULL;
597  }
598
599  // Create the block for the RHS expression.
600  Succ = ConfluenceBlock;
601  CFGBlock* RHSBlock = addStmt(C->getRHS());
602  if (!FinishBlock(RHSBlock))
603    return 0;
604
605  // Create the block that will contain the condition.
606  Block = createBlock(false);
607
608  // See if this is a known constant.
609  const TryResult& KnownVal = TryEvaluateBool(C->getCond());
610  if (LHSBlock) {
611    AddSuccessor(Block, KnownVal.isFalse() ? NULL : LHSBlock);
612  } else {
613    if (KnownVal.isFalse()) {
614      // If we know the condition is false, add NULL as the successor for
615      // the block containing the condition.  In this case, the confluence
616      // block will have just one predecessor.
617      AddSuccessor(Block, 0);
618      assert(ConfluenceBlock->pred_size() == 1);
619    } else {
620      // If we have no LHS expression, add the ConfluenceBlock as a direct
621      // successor for the block containing the condition.  Moreover, we need to
622      // reverse the order of the predecessors in the ConfluenceBlock because
623      // the RHSBlock will have been added to the succcessors already, and we
624      // want the first predecessor to the the block containing the expression
625      // for the case when the ternary expression evaluates to true.
626      AddSuccessor(Block, ConfluenceBlock);
627      assert(ConfluenceBlock->pred_size() == 2);
628      std::reverse(ConfluenceBlock->pred_begin(),
629                   ConfluenceBlock->pred_end());
630    }
631  }
632
633  AddSuccessor(Block, KnownVal.isTrue() ? NULL : RHSBlock);
634  Block->setTerminator(C);
635  return addStmt(C->getCond());
636}
637
638CFGBlock *CFGBuilder::VisitDeclStmt(DeclStmt *DS) {
639  autoCreateBlock();
640
641  if (DS->isSingleDecl()) {
642    AppendStmt(Block, DS);
643    return VisitDeclSubExpr(DS->getSingleDecl());
644  }
645
646  CFGBlock *B = 0;
647
648  // FIXME: Add a reverse iterator for DeclStmt to avoid this extra copy.
649  typedef llvm::SmallVector<Decl*,10> BufTy;
650  BufTy Buf(DS->decl_begin(), DS->decl_end());
651
652  for (BufTy::reverse_iterator I = Buf.rbegin(), E = Buf.rend(); I != E; ++I) {
653    // Get the alignment of the new DeclStmt, padding out to >=8 bytes.
654    unsigned A = llvm::AlignOf<DeclStmt>::Alignment < 8
655               ? 8 : llvm::AlignOf<DeclStmt>::Alignment;
656
657    // Allocate the DeclStmt using the BumpPtrAllocator.  It will get
658    // automatically freed with the CFG.
659    DeclGroupRef DG(*I);
660    Decl *D = *I;
661    void *Mem = cfg->getAllocator().Allocate(sizeof(DeclStmt), A);
662    DeclStmt *DSNew = new (Mem) DeclStmt(DG, D->getLocation(), GetEndLoc(D));
663
664    // Append the fake DeclStmt to block.
665    AppendStmt(Block, DSNew);
666    B = VisitDeclSubExpr(D);
667  }
668
669  return B;
670}
671
672/// VisitDeclSubExpr - Utility method to add block-level expressions for
673///  initializers in Decls.
674CFGBlock *CFGBuilder::VisitDeclSubExpr(Decl* D) {
675  assert(Block);
676
677  VarDecl *VD = dyn_cast<VarDecl>(D);
678
679  if (!VD)
680    return Block;
681
682  Expr *Init = VD->getInit();
683
684  if (Init) {
685    // Optimization: Don't create separate block-level statements for literals.
686    switch (Init->getStmtClass()) {
687      case Stmt::IntegerLiteralClass:
688      case Stmt::CharacterLiteralClass:
689      case Stmt::StringLiteralClass:
690        break;
691      default:
692        Block = addStmt(Init,
693                        VD->getType()->isReferenceType()
694                        ? AddStmtChoice::AlwaysAddAsLValue
695                        : AddStmtChoice::AlwaysAdd);
696    }
697  }
698
699  // If the type of VD is a VLA, then we must process its size expressions.
700  for (VariableArrayType* VA = FindVA(VD->getType().getTypePtr()); VA != 0;
701       VA = FindVA(VA->getElementType().getTypePtr()))
702    Block = addStmt(VA->getSizeExpr());
703
704  return Block;
705}
706
707CFGBlock* CFGBuilder::VisitIfStmt(IfStmt* I) {
708  // We may see an if statement in the middle of a basic block, or it may be the
709  // first statement we are processing.  In either case, we create a new basic
710  // block.  First, we create the blocks for the then...else statements, and
711  // then we create the block containing the if statement.  If we were in the
712  // middle of a block, we stop processing that block.  That block is then the
713  // implicit successor for the "then" and "else" clauses.
714
715  // The block we were proccessing is now finished.  Make it the successor
716  // block.
717  if (Block) {
718    Succ = Block;
719    if (!FinishBlock(Block))
720      return 0;
721  }
722
723  // Process the false branch.
724  CFGBlock* ElseBlock = Succ;
725
726  if (Stmt* Else = I->getElse()) {
727    SaveAndRestore<CFGBlock*> sv(Succ);
728
729    // NULL out Block so that the recursive call to Visit will
730    // create a new basic block.
731    Block = NULL;
732    ElseBlock = addStmt(Else);
733
734    if (!ElseBlock) // Can occur when the Else body has all NullStmts.
735      ElseBlock = sv.get();
736    else if (Block) {
737      if (!FinishBlock(ElseBlock))
738        return 0;
739    }
740  }
741
742  // Process the true branch.
743  CFGBlock* ThenBlock;
744  {
745    Stmt* Then = I->getThen();
746    assert (Then);
747    SaveAndRestore<CFGBlock*> sv(Succ);
748    Block = NULL;
749    ThenBlock = addStmt(Then);
750
751    if (!ThenBlock) {
752      // We can reach here if the "then" body has all NullStmts.
753      // Create an empty block so we can distinguish between true and false
754      // branches in path-sensitive analyses.
755      ThenBlock = createBlock(false);
756      AddSuccessor(ThenBlock, sv.get());
757    } else if (Block) {
758      if (!FinishBlock(ThenBlock))
759        return 0;
760    }
761  }
762
763  // Now create a new block containing the if statement.
764  Block = createBlock(false);
765
766  // Set the terminator of the new block to the If statement.
767  Block->setTerminator(I);
768
769  // See if this is a known constant.
770  const TryResult &KnownVal = TryEvaluateBool(I->getCond());
771
772  // Now add the successors.
773  AddSuccessor(Block, KnownVal.isFalse() ? NULL : ThenBlock);
774  AddSuccessor(Block, KnownVal.isTrue()? NULL : ElseBlock);
775
776  // Add the condition as the last statement in the new block.  This may create
777  // new blocks as the condition may contain control-flow.  Any newly created
778  // blocks will be pointed to be "Block".
779  Block = addStmt(I->getCond());
780
781  // Finally, if the IfStmt contains a condition variable, add both the IfStmt
782  // and the condition variable initialization to the CFG.
783  if (VarDecl *VD = I->getConditionVariable()) {
784    if (Expr *Init = VD->getInit()) {
785      autoCreateBlock();
786      AppendStmt(Block, I, AddStmtChoice::AlwaysAdd);
787      addStmt(Init);
788    }
789  }
790
791  return Block;
792}
793
794
795CFGBlock* CFGBuilder::VisitReturnStmt(ReturnStmt* R) {
796  // If we were in the middle of a block we stop processing that block.
797  //
798  // NOTE: If a "return" appears in the middle of a block, this means that the
799  //       code afterwards is DEAD (unreachable).  We still keep a basic block
800  //       for that code; a simple "mark-and-sweep" from the entry block will be
801  //       able to report such dead blocks.
802  if (Block)
803    FinishBlock(Block);
804
805  // Create the new block.
806  Block = createBlock(false);
807
808  // The Exit block is the only successor.
809  AddSuccessor(Block, &cfg->getExit());
810
811  // Add the return statement to the block.  This may create new blocks if R
812  // contains control-flow (short-circuit operations).
813  return VisitStmt(R, AddStmtChoice::AlwaysAdd);
814}
815
816CFGBlock* CFGBuilder::VisitLabelStmt(LabelStmt* L) {
817  // Get the block of the labeled statement.  Add it to our map.
818  addStmt(L->getSubStmt());
819  CFGBlock* LabelBlock = Block;
820
821  if (!LabelBlock)              // This can happen when the body is empty, i.e.
822    LabelBlock = createBlock(); // scopes that only contains NullStmts.
823
824  assert(LabelMap.find(L) == LabelMap.end() && "label already in map");
825  LabelMap[ L ] = LabelBlock;
826
827  // Labels partition blocks, so this is the end of the basic block we were
828  // processing (L is the block's label).  Because this is label (and we have
829  // already processed the substatement) there is no extra control-flow to worry
830  // about.
831  LabelBlock->setLabel(L);
832  if (!FinishBlock(LabelBlock))
833    return 0;
834
835  // We set Block to NULL to allow lazy creation of a new block (if necessary);
836  Block = NULL;
837
838  // This block is now the implicit successor of other blocks.
839  Succ = LabelBlock;
840
841  return LabelBlock;
842}
843
844CFGBlock* CFGBuilder::VisitGotoStmt(GotoStmt* G) {
845  // Goto is a control-flow statement.  Thus we stop processing the current
846  // block and create a new one.
847  if (Block)
848    FinishBlock(Block);
849
850  Block = createBlock(false);
851  Block->setTerminator(G);
852
853  // If we already know the mapping to the label block add the successor now.
854  LabelMapTy::iterator I = LabelMap.find(G->getLabel());
855
856  if (I == LabelMap.end())
857    // We will need to backpatch this block later.
858    BackpatchBlocks.push_back(Block);
859  else
860    AddSuccessor(Block, I->second);
861
862  return Block;
863}
864
865CFGBlock* CFGBuilder::VisitForStmt(ForStmt* F) {
866  CFGBlock* LoopSuccessor = NULL;
867
868  // "for" is a control-flow statement.  Thus we stop processing the current
869  // block.
870  if (Block) {
871    if (!FinishBlock(Block))
872      return 0;
873    LoopSuccessor = Block;
874  } else
875    LoopSuccessor = Succ;
876
877  // Because of short-circuit evaluation, the condition of the loop can span
878  // multiple basic blocks.  Thus we need the "Entry" and "Exit" blocks that
879  // evaluate the condition.
880  CFGBlock* ExitConditionBlock = createBlock(false);
881  CFGBlock* EntryConditionBlock = ExitConditionBlock;
882
883  // Set the terminator for the "exit" condition block.
884  ExitConditionBlock->setTerminator(F);
885
886  // Now add the actual condition to the condition block.  Because the condition
887  // itself may contain control-flow, new blocks may be created.
888  if (Stmt* C = F->getCond()) {
889    Block = ExitConditionBlock;
890    EntryConditionBlock = addStmt(C);
891    if (Block) {
892      if (!FinishBlock(EntryConditionBlock))
893        return 0;
894    }
895  }
896
897  // The condition block is the implicit successor for the loop body as well as
898  // any code above the loop.
899  Succ = EntryConditionBlock;
900
901  // See if this is a known constant.
902  TryResult KnownVal(true);
903
904  if (F->getCond())
905    KnownVal = TryEvaluateBool(F->getCond());
906
907  // Now create the loop body.
908  {
909    assert (F->getBody());
910
911    // Save the current values for Block, Succ, and continue and break targets
912    SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ),
913    save_continue(ContinueTargetBlock),
914    save_break(BreakTargetBlock);
915
916    // Create a new block to contain the (bottom) of the loop body.
917    Block = NULL;
918
919    if (Stmt* I = F->getInc()) {
920      // Generate increment code in its own basic block.  This is the target of
921      // continue statements.
922      Succ = addStmt(I);
923    } else {
924      // No increment code.  Create a special, empty, block that is used as the
925      // target block for "looping back" to the start of the loop.
926      assert(Succ == EntryConditionBlock);
927      Succ = createBlock();
928    }
929
930    // Finish up the increment (or empty) block if it hasn't been already.
931    if (Block) {
932      assert(Block == Succ);
933      if (!FinishBlock(Block))
934        return 0;
935      Block = 0;
936    }
937
938    ContinueTargetBlock = Succ;
939
940    // The starting block for the loop increment is the block that should
941    // represent the 'loop target' for looping back to the start of the loop.
942    ContinueTargetBlock->setLoopTarget(F);
943
944    // All breaks should go to the code following the loop.
945    BreakTargetBlock = LoopSuccessor;
946
947    // Now populate the body block, and in the process create new blocks as we
948    // walk the body of the loop.
949    CFGBlock* BodyBlock = addStmt(F->getBody());
950
951    if (!BodyBlock)
952      BodyBlock = ContinueTargetBlock; // can happen for "for (...;...;...) ;"
953    else if (Block && !FinishBlock(BodyBlock))
954      return 0;
955
956    // This new body block is a successor to our "exit" condition block.
957    AddSuccessor(ExitConditionBlock, KnownVal.isFalse() ? NULL : BodyBlock);
958  }
959
960  // Link up the condition block with the code that follows the loop.  (the
961  // false branch).
962  AddSuccessor(ExitConditionBlock, KnownVal.isTrue() ? NULL : LoopSuccessor);
963
964  // If the loop contains initialization, create a new block for those
965  // statements.  This block can also contain statements that precede the loop.
966  if (Stmt* I = F->getInit()) {
967    Block = createBlock();
968    return addStmt(I);
969  } else {
970    // There is no loop initialization.  We are thus basically a while loop.
971    // NULL out Block to force lazy block construction.
972    Block = NULL;
973    Succ = EntryConditionBlock;
974    return EntryConditionBlock;
975  }
976}
977
978CFGBlock* CFGBuilder::VisitObjCForCollectionStmt(ObjCForCollectionStmt* S) {
979  // Objective-C fast enumeration 'for' statements:
980  //  http://developer.apple.com/documentation/Cocoa/Conceptual/ObjectiveC
981  //
982  //  for ( Type newVariable in collection_expression ) { statements }
983  //
984  //  becomes:
985  //
986  //   prologue:
987  //     1. collection_expression
988  //     T. jump to loop_entry
989  //   loop_entry:
990  //     1. side-effects of element expression
991  //     1. ObjCForCollectionStmt [performs binding to newVariable]
992  //     T. ObjCForCollectionStmt  TB, FB  [jumps to TB if newVariable != nil]
993  //   TB:
994  //     statements
995  //     T. jump to loop_entry
996  //   FB:
997  //     what comes after
998  //
999  //  and
1000  //
1001  //  Type existingItem;
1002  //  for ( existingItem in expression ) { statements }
1003  //
1004  //  becomes:
1005  //
1006  //   the same with newVariable replaced with existingItem; the binding works
1007  //   the same except that for one ObjCForCollectionStmt::getElement() returns
1008  //   a DeclStmt and the other returns a DeclRefExpr.
1009  //
1010
1011  CFGBlock* LoopSuccessor = 0;
1012
1013  if (Block) {
1014    if (!FinishBlock(Block))
1015      return 0;
1016    LoopSuccessor = Block;
1017    Block = 0;
1018  } else
1019    LoopSuccessor = Succ;
1020
1021  // Build the condition blocks.
1022  CFGBlock* ExitConditionBlock = createBlock(false);
1023  CFGBlock* EntryConditionBlock = ExitConditionBlock;
1024
1025  // Set the terminator for the "exit" condition block.
1026  ExitConditionBlock->setTerminator(S);
1027
1028  // The last statement in the block should be the ObjCForCollectionStmt, which
1029  // performs the actual binding to 'element' and determines if there are any
1030  // more items in the collection.
1031  AppendStmt(ExitConditionBlock, S);
1032  Block = ExitConditionBlock;
1033
1034  // Walk the 'element' expression to see if there are any side-effects.  We
1035  // generate new blocks as necesary.  We DON'T add the statement by default to
1036  // the CFG unless it contains control-flow.
1037  EntryConditionBlock = Visit(S->getElement(), AddStmtChoice::NotAlwaysAdd);
1038  if (Block) {
1039    if (!FinishBlock(EntryConditionBlock))
1040      return 0;
1041    Block = 0;
1042  }
1043
1044  // The condition block is the implicit successor for the loop body as well as
1045  // any code above the loop.
1046  Succ = EntryConditionBlock;
1047
1048  // Now create the true branch.
1049  {
1050    // Save the current values for Succ, continue and break targets.
1051    SaveAndRestore<CFGBlock*> save_Succ(Succ),
1052      save_continue(ContinueTargetBlock), save_break(BreakTargetBlock);
1053
1054    BreakTargetBlock = LoopSuccessor;
1055    ContinueTargetBlock = EntryConditionBlock;
1056
1057    CFGBlock* BodyBlock = addStmt(S->getBody());
1058
1059    if (!BodyBlock)
1060      BodyBlock = EntryConditionBlock; // can happen for "for (X in Y) ;"
1061    else if (Block) {
1062      if (!FinishBlock(BodyBlock))
1063        return 0;
1064    }
1065
1066    // This new body block is a successor to our "exit" condition block.
1067    AddSuccessor(ExitConditionBlock, BodyBlock);
1068  }
1069
1070  // Link up the condition block with the code that follows the loop.
1071  // (the false branch).
1072  AddSuccessor(ExitConditionBlock, LoopSuccessor);
1073
1074  // Now create a prologue block to contain the collection expression.
1075  Block = createBlock();
1076  return addStmt(S->getCollection());
1077}
1078
1079CFGBlock* CFGBuilder::VisitObjCAtSynchronizedStmt(ObjCAtSynchronizedStmt* S) {
1080  // FIXME: Add locking 'primitives' to CFG for @synchronized.
1081
1082  // Inline the body.
1083  CFGBlock *SyncBlock = addStmt(S->getSynchBody());
1084
1085  // The sync body starts its own basic block.  This makes it a little easier
1086  // for diagnostic clients.
1087  if (SyncBlock) {
1088    if (!FinishBlock(SyncBlock))
1089      return 0;
1090
1091    Block = 0;
1092  }
1093
1094  Succ = SyncBlock;
1095
1096  // Inline the sync expression.
1097  return addStmt(S->getSynchExpr());
1098}
1099
1100CFGBlock* CFGBuilder::VisitObjCAtTryStmt(ObjCAtTryStmt* S) {
1101  // FIXME
1102  return NYS();
1103}
1104
1105CFGBlock* CFGBuilder::VisitWhileStmt(WhileStmt* W) {
1106  CFGBlock* LoopSuccessor = NULL;
1107
1108  // "while" is a control-flow statement.  Thus we stop processing the current
1109  // block.
1110  if (Block) {
1111    if (!FinishBlock(Block))
1112      return 0;
1113    LoopSuccessor = Block;
1114  } else
1115    LoopSuccessor = Succ;
1116
1117  // Because of short-circuit evaluation, the condition of the loop can span
1118  // multiple basic blocks.  Thus we need the "Entry" and "Exit" blocks that
1119  // evaluate the condition.
1120  CFGBlock* ExitConditionBlock = createBlock(false);
1121  CFGBlock* EntryConditionBlock = ExitConditionBlock;
1122
1123  // Set the terminator for the "exit" condition block.
1124  ExitConditionBlock->setTerminator(W);
1125
1126  // Now add the actual condition to the condition block.  Because the condition
1127  // itself may contain control-flow, new blocks may be created.  Thus we update
1128  // "Succ" after adding the condition.
1129  if (Stmt* C = W->getCond()) {
1130    Block = ExitConditionBlock;
1131    EntryConditionBlock = addStmt(C);
1132    assert(Block == EntryConditionBlock);
1133    if (Block) {
1134      if (!FinishBlock(EntryConditionBlock))
1135        return 0;
1136    }
1137  }
1138
1139  // The condition block is the implicit successor for the loop body as well as
1140  // any code above the loop.
1141  Succ = EntryConditionBlock;
1142
1143  // See if this is a known constant.
1144  const TryResult& KnownVal = TryEvaluateBool(W->getCond());
1145
1146  // Process the loop body.
1147  {
1148    assert(W->getBody());
1149
1150    // Save the current values for Block, Succ, and continue and break targets
1151    SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ),
1152                              save_continue(ContinueTargetBlock),
1153                              save_break(BreakTargetBlock);
1154
1155    // Create an empty block to represent the transition block for looping back
1156    // to the head of the loop.
1157    Block = 0;
1158    assert(Succ == EntryConditionBlock);
1159    Succ = createBlock();
1160    Succ->setLoopTarget(W);
1161    ContinueTargetBlock = Succ;
1162
1163    // All breaks should go to the code following the loop.
1164    BreakTargetBlock = LoopSuccessor;
1165
1166    // NULL out Block to force lazy instantiation of blocks for the body.
1167    Block = NULL;
1168
1169    // Create the body.  The returned block is the entry to the loop body.
1170    CFGBlock* BodyBlock = addStmt(W->getBody());
1171
1172    if (!BodyBlock)
1173      BodyBlock = ContinueTargetBlock; // can happen for "while(...) ;"
1174    else if (Block) {
1175      if (!FinishBlock(BodyBlock))
1176        return 0;
1177    }
1178
1179    // Add the loop body entry as a successor to the condition.
1180    AddSuccessor(ExitConditionBlock, KnownVal.isFalse() ? NULL : BodyBlock);
1181  }
1182
1183  // Link up the condition block with the code that follows the loop.  (the
1184  // false branch).
1185  AddSuccessor(ExitConditionBlock, KnownVal.isTrue() ? NULL : LoopSuccessor);
1186
1187  // There can be no more statements in the condition block since we loop back
1188  // to this block.  NULL out Block to force lazy creation of another block.
1189  Block = NULL;
1190
1191  // Return the condition block, which is the dominating block for the loop.
1192  Succ = EntryConditionBlock;
1193  return EntryConditionBlock;
1194}
1195
1196
1197CFGBlock *CFGBuilder::VisitObjCAtCatchStmt(ObjCAtCatchStmt* S) {
1198  // FIXME: For now we pretend that @catch and the code it contains does not
1199  //  exit.
1200  return Block;
1201}
1202
1203CFGBlock* CFGBuilder::VisitObjCAtThrowStmt(ObjCAtThrowStmt* S) {
1204  // FIXME: This isn't complete.  We basically treat @throw like a return
1205  //  statement.
1206
1207  // If we were in the middle of a block we stop processing that block.
1208  if (Block && !FinishBlock(Block))
1209    return 0;
1210
1211  // Create the new block.
1212  Block = createBlock(false);
1213
1214  // The Exit block is the only successor.
1215  AddSuccessor(Block, &cfg->getExit());
1216
1217  // Add the statement to the block.  This may create new blocks if S contains
1218  // control-flow (short-circuit operations).
1219  return VisitStmt(S, AddStmtChoice::AlwaysAdd);
1220}
1221
1222CFGBlock* CFGBuilder::VisitCXXThrowExpr(CXXThrowExpr* T) {
1223  // If we were in the middle of a block we stop processing that block.
1224  if (Block && !FinishBlock(Block))
1225    return 0;
1226
1227  // Create the new block.
1228  Block = createBlock(false);
1229
1230  // The Exit block is the only successor.
1231  AddSuccessor(Block, &cfg->getExit());
1232
1233  // Add the statement to the block.  This may create new blocks if S contains
1234  // control-flow (short-circuit operations).
1235  return VisitStmt(T, AddStmtChoice::AlwaysAdd);
1236}
1237
1238CFGBlock *CFGBuilder::VisitDoStmt(DoStmt* D) {
1239  CFGBlock* LoopSuccessor = NULL;
1240
1241  // "do...while" is a control-flow statement.  Thus we stop processing the
1242  // current block.
1243  if (Block) {
1244    if (!FinishBlock(Block))
1245      return 0;
1246    LoopSuccessor = Block;
1247  } else
1248    LoopSuccessor = Succ;
1249
1250  // Because of short-circuit evaluation, the condition of the loop can span
1251  // multiple basic blocks.  Thus we need the "Entry" and "Exit" blocks that
1252  // evaluate the condition.
1253  CFGBlock* ExitConditionBlock = createBlock(false);
1254  CFGBlock* EntryConditionBlock = ExitConditionBlock;
1255
1256  // Set the terminator for the "exit" condition block.
1257  ExitConditionBlock->setTerminator(D);
1258
1259  // Now add the actual condition to the condition block.  Because the condition
1260  // itself may contain control-flow, new blocks may be created.
1261  if (Stmt* C = D->getCond()) {
1262    Block = ExitConditionBlock;
1263    EntryConditionBlock = addStmt(C);
1264    if (Block) {
1265      if (!FinishBlock(EntryConditionBlock))
1266        return 0;
1267    }
1268  }
1269
1270  // The condition block is the implicit successor for the loop body.
1271  Succ = EntryConditionBlock;
1272
1273  // See if this is a known constant.
1274  const TryResult &KnownVal = TryEvaluateBool(D->getCond());
1275
1276  // Process the loop body.
1277  CFGBlock* BodyBlock = NULL;
1278  {
1279    assert (D->getBody());
1280
1281    // Save the current values for Block, Succ, and continue and break targets
1282    SaveAndRestore<CFGBlock*> save_Block(Block), save_Succ(Succ),
1283    save_continue(ContinueTargetBlock),
1284    save_break(BreakTargetBlock);
1285
1286    // All continues within this loop should go to the condition block
1287    ContinueTargetBlock = EntryConditionBlock;
1288
1289    // All breaks should go to the code following the loop.
1290    BreakTargetBlock = LoopSuccessor;
1291
1292    // NULL out Block to force lazy instantiation of blocks for the body.
1293    Block = NULL;
1294
1295    // Create the body.  The returned block is the entry to the loop body.
1296    BodyBlock = addStmt(D->getBody());
1297
1298    if (!BodyBlock)
1299      BodyBlock = EntryConditionBlock; // can happen for "do ; while(...)"
1300    else if (Block) {
1301      if (!FinishBlock(BodyBlock))
1302        return 0;
1303    }
1304
1305    // Add an intermediate block between the BodyBlock and the
1306    // ExitConditionBlock to represent the "loop back" transition.  Create an
1307    // empty block to represent the transition block for looping back to the
1308    // head of the loop.
1309    // FIXME: Can we do this more efficiently without adding another block?
1310    Block = NULL;
1311    Succ = BodyBlock;
1312    CFGBlock *LoopBackBlock = createBlock();
1313    LoopBackBlock->setLoopTarget(D);
1314
1315    // Add the loop body entry as a successor to the condition.
1316    AddSuccessor(ExitConditionBlock, KnownVal.isFalse() ? NULL : LoopBackBlock);
1317  }
1318
1319  // Link up the condition block with the code that follows the loop.
1320  // (the false branch).
1321  AddSuccessor(ExitConditionBlock, KnownVal.isTrue() ? NULL : LoopSuccessor);
1322
1323  // There can be no more statements in the body block(s) since we loop back to
1324  // the body.  NULL out Block to force lazy creation of another block.
1325  Block = NULL;
1326
1327  // Return the loop body, which is the dominating block for the loop.
1328  Succ = BodyBlock;
1329  return BodyBlock;
1330}
1331
1332CFGBlock* CFGBuilder::VisitContinueStmt(ContinueStmt* C) {
1333  // "continue" is a control-flow statement.  Thus we stop processing the
1334  // current block.
1335  if (Block && !FinishBlock(Block))
1336      return 0;
1337
1338  // Now create a new block that ends with the continue statement.
1339  Block = createBlock(false);
1340  Block->setTerminator(C);
1341
1342  // If there is no target for the continue, then we are looking at an
1343  // incomplete AST.  This means the CFG cannot be constructed.
1344  if (ContinueTargetBlock)
1345    AddSuccessor(Block, ContinueTargetBlock);
1346  else
1347    badCFG = true;
1348
1349  return Block;
1350}
1351
1352CFGBlock *CFGBuilder::VisitSizeOfAlignOfExpr(SizeOfAlignOfExpr *E,
1353                                             AddStmtChoice asc) {
1354
1355  if (asc.alwaysAdd()) {
1356    autoCreateBlock();
1357    AppendStmt(Block, E);
1358  }
1359
1360  // VLA types have expressions that must be evaluated.
1361  if (E->isArgumentType()) {
1362    for (VariableArrayType* VA = FindVA(E->getArgumentType().getTypePtr());
1363         VA != 0; VA = FindVA(VA->getElementType().getTypePtr()))
1364      addStmt(VA->getSizeExpr());
1365  }
1366
1367  return Block;
1368}
1369
1370/// VisitStmtExpr - Utility method to handle (nested) statement
1371///  expressions (a GCC extension).
1372CFGBlock* CFGBuilder::VisitStmtExpr(StmtExpr *SE, AddStmtChoice asc) {
1373  if (asc.alwaysAdd()) {
1374    autoCreateBlock();
1375    AppendStmt(Block, SE);
1376  }
1377  return VisitCompoundStmt(SE->getSubStmt());
1378}
1379
1380CFGBlock* CFGBuilder::VisitSwitchStmt(SwitchStmt* Terminator) {
1381  // "switch" is a control-flow statement.  Thus we stop processing the current
1382  // block.
1383  CFGBlock* SwitchSuccessor = NULL;
1384
1385  if (Block) {
1386    if (!FinishBlock(Block))
1387      return 0;
1388    SwitchSuccessor = Block;
1389  } else SwitchSuccessor = Succ;
1390
1391  // Save the current "switch" context.
1392  SaveAndRestore<CFGBlock*> save_switch(SwitchTerminatedBlock),
1393                            save_break(BreakTargetBlock),
1394                            save_default(DefaultCaseBlock);
1395
1396  // Set the "default" case to be the block after the switch statement.  If the
1397  // switch statement contains a "default:", this value will be overwritten with
1398  // the block for that code.
1399  DefaultCaseBlock = SwitchSuccessor;
1400
1401  // Create a new block that will contain the switch statement.
1402  SwitchTerminatedBlock = createBlock(false);
1403
1404  // Now process the switch body.  The code after the switch is the implicit
1405  // successor.
1406  Succ = SwitchSuccessor;
1407  BreakTargetBlock = SwitchSuccessor;
1408
1409  // When visiting the body, the case statements should automatically get linked
1410  // up to the switch.  We also don't keep a pointer to the body, since all
1411  // control-flow from the switch goes to case/default statements.
1412  assert (Terminator->getBody() && "switch must contain a non-NULL body");
1413  Block = NULL;
1414  CFGBlock *BodyBlock = addStmt(Terminator->getBody());
1415  if (Block) {
1416    if (!FinishBlock(BodyBlock))
1417      return 0;
1418  }
1419
1420  // If we have no "default:" case, the default transition is to the code
1421  // following the switch body.
1422  AddSuccessor(SwitchTerminatedBlock, DefaultCaseBlock);
1423
1424  // Add the terminator and condition in the switch block.
1425  SwitchTerminatedBlock->setTerminator(Terminator);
1426  assert (Terminator->getCond() && "switch condition must be non-NULL");
1427  Block = SwitchTerminatedBlock;
1428
1429  return addStmt(Terminator->getCond());
1430}
1431
1432CFGBlock* CFGBuilder::VisitCaseStmt(CaseStmt* CS) {
1433  // CaseStmts are essentially labels, so they are the first statement in a
1434  // block.
1435
1436  if (CS->getSubStmt())
1437    addStmt(CS->getSubStmt());
1438
1439  CFGBlock* CaseBlock = Block;
1440  if (!CaseBlock)
1441    CaseBlock = createBlock();
1442
1443  // Cases statements partition blocks, so this is the top of the basic block we
1444  // were processing (the "case XXX:" is the label).
1445  CaseBlock->setLabel(CS);
1446
1447  if (!FinishBlock(CaseBlock))
1448    return 0;
1449
1450  // Add this block to the list of successors for the block with the switch
1451  // statement.
1452  assert(SwitchTerminatedBlock);
1453  AddSuccessor(SwitchTerminatedBlock, CaseBlock);
1454
1455  // We set Block to NULL to allow lazy creation of a new block (if necessary)
1456  Block = NULL;
1457
1458  // This block is now the implicit successor of other blocks.
1459  Succ = CaseBlock;
1460
1461  return CaseBlock;
1462}
1463
1464CFGBlock* CFGBuilder::VisitDefaultStmt(DefaultStmt* Terminator) {
1465  if (Terminator->getSubStmt())
1466    addStmt(Terminator->getSubStmt());
1467
1468  DefaultCaseBlock = Block;
1469
1470  if (!DefaultCaseBlock)
1471    DefaultCaseBlock = createBlock();
1472
1473  // Default statements partition blocks, so this is the top of the basic block
1474  // we were processing (the "default:" is the label).
1475  DefaultCaseBlock->setLabel(Terminator);
1476
1477  if (!FinishBlock(DefaultCaseBlock))
1478    return 0;
1479
1480  // Unlike case statements, we don't add the default block to the successors
1481  // for the switch statement immediately.  This is done when we finish
1482  // processing the switch statement.  This allows for the default case
1483  // (including a fall-through to the code after the switch statement) to always
1484  // be the last successor of a switch-terminated block.
1485
1486  // We set Block to NULL to allow lazy creation of a new block (if necessary)
1487  Block = NULL;
1488
1489  // This block is now the implicit successor of other blocks.
1490  Succ = DefaultCaseBlock;
1491
1492  return DefaultCaseBlock;
1493}
1494
1495CFGBlock* CFGBuilder::VisitIndirectGotoStmt(IndirectGotoStmt* I) {
1496  // Lazily create the indirect-goto dispatch block if there isn't one already.
1497  CFGBlock* IBlock = cfg->getIndirectGotoBlock();
1498
1499  if (!IBlock) {
1500    IBlock = createBlock(false);
1501    cfg->setIndirectGotoBlock(IBlock);
1502  }
1503
1504  // IndirectGoto is a control-flow statement.  Thus we stop processing the
1505  // current block and create a new one.
1506  if (Block && !FinishBlock(Block))
1507    return 0;
1508
1509  Block = createBlock(false);
1510  Block->setTerminator(I);
1511  AddSuccessor(Block, IBlock);
1512  return addStmt(I->getTarget());
1513}
1514
1515} // end anonymous namespace
1516
1517/// createBlock - Constructs and adds a new CFGBlock to the CFG.  The block has
1518///  no successors or predecessors.  If this is the first block created in the
1519///  CFG, it is automatically set to be the Entry and Exit of the CFG.
1520CFGBlock* CFG::createBlock() {
1521  bool first_block = begin() == end();
1522
1523  // Create the block.
1524  CFGBlock *Mem = getAllocator().Allocate<CFGBlock>();
1525  new (Mem) CFGBlock(NumBlockIDs++, BlkBVC);
1526  Blocks.push_back(Mem, BlkBVC);
1527
1528  // If this is the first block, set it as the Entry and Exit.
1529  if (first_block)
1530    Entry = Exit = &back();
1531
1532  // Return the block.
1533  return &back();
1534}
1535
1536/// buildCFG - Constructs a CFG from an AST.  Ownership of the returned
1537///  CFG is returned to the caller.
1538CFG* CFG::buildCFG(Stmt* Statement, ASTContext *C) {
1539  CFGBuilder Builder;
1540  return Builder.buildCFG(Statement, C);
1541}
1542
1543//===----------------------------------------------------------------------===//
1544// CFG: Queries for BlkExprs.
1545//===----------------------------------------------------------------------===//
1546
1547namespace {
1548  typedef llvm::DenseMap<const Stmt*,unsigned> BlkExprMapTy;
1549}
1550
1551static void FindSubExprAssignments(Stmt *S,
1552                                   llvm::SmallPtrSet<Expr*,50>& Set) {
1553  if (!S)
1554    return;
1555
1556  for (Stmt::child_iterator I=S->child_begin(), E=S->child_end(); I!=E; ++I) {
1557    Stmt *child = *I;
1558    if (!child)
1559      continue;
1560
1561    if (BinaryOperator* B = dyn_cast<BinaryOperator>(child))
1562      if (B->isAssignmentOp()) Set.insert(B);
1563
1564    FindSubExprAssignments(child, Set);
1565  }
1566}
1567
1568static BlkExprMapTy* PopulateBlkExprMap(CFG& cfg) {
1569  BlkExprMapTy* M = new BlkExprMapTy();
1570
1571  // Look for assignments that are used as subexpressions.  These are the only
1572  // assignments that we want to *possibly* register as a block-level
1573  // expression.  Basically, if an assignment occurs both in a subexpression and
1574  // at the block-level, it is a block-level expression.
1575  llvm::SmallPtrSet<Expr*,50> SubExprAssignments;
1576
1577  for (CFG::iterator I=cfg.begin(), E=cfg.end(); I != E; ++I)
1578    for (CFGBlock::iterator BI=(*I)->begin(), EI=(*I)->end(); BI != EI; ++BI)
1579      FindSubExprAssignments(*BI, SubExprAssignments);
1580
1581  for (CFG::iterator I=cfg.begin(), E=cfg.end(); I != E; ++I) {
1582
1583    // Iterate over the statements again on identify the Expr* and Stmt* at the
1584    // block-level that are block-level expressions.
1585
1586    for (CFGBlock::iterator BI=(*I)->begin(), EI=(*I)->end(); BI != EI; ++BI)
1587      if (Expr* Exp = dyn_cast<Expr>(*BI)) {
1588
1589        if (BinaryOperator* B = dyn_cast<BinaryOperator>(Exp)) {
1590          // Assignment expressions that are not nested within another
1591          // expression are really "statements" whose value is never used by
1592          // another expression.
1593          if (B->isAssignmentOp() && !SubExprAssignments.count(Exp))
1594            continue;
1595        } else if (const StmtExpr* Terminator = dyn_cast<StmtExpr>(Exp)) {
1596          // Special handling for statement expressions.  The last statement in
1597          // the statement expression is also a block-level expr.
1598          const CompoundStmt* C = Terminator->getSubStmt();
1599          if (!C->body_empty()) {
1600            unsigned x = M->size();
1601            (*M)[C->body_back()] = x;
1602          }
1603        }
1604
1605        unsigned x = M->size();
1606        (*M)[Exp] = x;
1607      }
1608
1609    // Look at terminators.  The condition is a block-level expression.
1610
1611    Stmt* S = (*I)->getTerminatorCondition();
1612
1613    if (S && M->find(S) == M->end()) {
1614        unsigned x = M->size();
1615        (*M)[S] = x;
1616    }
1617  }
1618
1619  return M;
1620}
1621
1622CFG::BlkExprNumTy CFG::getBlkExprNum(const Stmt* S) {
1623  assert(S != NULL);
1624  if (!BlkExprMap) { BlkExprMap = (void*) PopulateBlkExprMap(*this); }
1625
1626  BlkExprMapTy* M = reinterpret_cast<BlkExprMapTy*>(BlkExprMap);
1627  BlkExprMapTy::iterator I = M->find(S);
1628
1629  if (I == M->end()) return CFG::BlkExprNumTy();
1630  else return CFG::BlkExprNumTy(I->second);
1631}
1632
1633unsigned CFG::getNumBlkExprs() {
1634  if (const BlkExprMapTy* M = reinterpret_cast<const BlkExprMapTy*>(BlkExprMap))
1635    return M->size();
1636  else {
1637    // We assume callers interested in the number of BlkExprs will want
1638    // the map constructed if it doesn't already exist.
1639    BlkExprMap = (void*) PopulateBlkExprMap(*this);
1640    return reinterpret_cast<BlkExprMapTy*>(BlkExprMap)->size();
1641  }
1642}
1643
1644//===----------------------------------------------------------------------===//
1645// Cleanup: CFG dstor.
1646//===----------------------------------------------------------------------===//
1647
1648CFG::~CFG() {
1649  delete reinterpret_cast<const BlkExprMapTy*>(BlkExprMap);
1650}
1651
1652//===----------------------------------------------------------------------===//
1653// CFG pretty printing
1654//===----------------------------------------------------------------------===//
1655
1656namespace {
1657
1658class StmtPrinterHelper : public PrinterHelper  {
1659
1660  typedef llvm::DenseMap<Stmt*,std::pair<unsigned,unsigned> > StmtMapTy;
1661  StmtMapTy StmtMap;
1662  signed CurrentBlock;
1663  unsigned CurrentStmt;
1664  const LangOptions &LangOpts;
1665public:
1666
1667  StmtPrinterHelper(const CFG* cfg, const LangOptions &LO)
1668    : CurrentBlock(0), CurrentStmt(0), LangOpts(LO) {
1669    for (CFG::const_iterator I = cfg->begin(), E = cfg->end(); I != E; ++I ) {
1670      unsigned j = 1;
1671      for (CFGBlock::const_iterator BI = (*I)->begin(), BEnd = (*I)->end() ;
1672           BI != BEnd; ++BI, ++j )
1673        StmtMap[*BI] = std::make_pair((*I)->getBlockID(),j);
1674      }
1675  }
1676
1677  virtual ~StmtPrinterHelper() {}
1678
1679  const LangOptions &getLangOpts() const { return LangOpts; }
1680  void setBlockID(signed i) { CurrentBlock = i; }
1681  void setStmtID(unsigned i) { CurrentStmt = i; }
1682
1683  virtual bool handledStmt(Stmt* Terminator, llvm::raw_ostream& OS) {
1684
1685    StmtMapTy::iterator I = StmtMap.find(Terminator);
1686
1687    if (I == StmtMap.end())
1688      return false;
1689
1690    if (CurrentBlock >= 0 && I->second.first == (unsigned) CurrentBlock
1691                          && I->second.second == CurrentStmt)
1692      return false;
1693
1694      OS << "[B" << I->second.first << "." << I->second.second << "]";
1695    return true;
1696  }
1697};
1698} // end anonymous namespace
1699
1700
1701namespace {
1702class CFGBlockTerminatorPrint
1703  : public StmtVisitor<CFGBlockTerminatorPrint,void> {
1704
1705  llvm::raw_ostream& OS;
1706  StmtPrinterHelper* Helper;
1707  PrintingPolicy Policy;
1708
1709public:
1710  CFGBlockTerminatorPrint(llvm::raw_ostream& os, StmtPrinterHelper* helper,
1711                          const PrintingPolicy &Policy)
1712    : OS(os), Helper(helper), Policy(Policy) {}
1713
1714  void VisitIfStmt(IfStmt* I) {
1715    OS << "if ";
1716    I->getCond()->printPretty(OS,Helper,Policy);
1717  }
1718
1719  // Default case.
1720  void VisitStmt(Stmt* Terminator) {
1721    Terminator->printPretty(OS, Helper, Policy);
1722  }
1723
1724  void VisitForStmt(ForStmt* F) {
1725    OS << "for (" ;
1726    if (F->getInit()) OS << "...";
1727    OS << "; ";
1728    if (Stmt* C = F->getCond()) C->printPretty(OS, Helper, Policy);
1729    OS << "; ";
1730    if (F->getInc()) OS << "...";
1731    OS << ")";
1732  }
1733
1734  void VisitWhileStmt(WhileStmt* W) {
1735    OS << "while " ;
1736    if (Stmt* C = W->getCond()) C->printPretty(OS, Helper, Policy);
1737  }
1738
1739  void VisitDoStmt(DoStmt* D) {
1740    OS << "do ... while ";
1741    if (Stmt* C = D->getCond()) C->printPretty(OS, Helper, Policy);
1742  }
1743
1744  void VisitSwitchStmt(SwitchStmt* Terminator) {
1745    OS << "switch ";
1746    Terminator->getCond()->printPretty(OS, Helper, Policy);
1747  }
1748
1749  void VisitConditionalOperator(ConditionalOperator* C) {
1750    C->getCond()->printPretty(OS, Helper, Policy);
1751    OS << " ? ... : ...";
1752  }
1753
1754  void VisitChooseExpr(ChooseExpr* C) {
1755    OS << "__builtin_choose_expr( ";
1756    C->getCond()->printPretty(OS, Helper, Policy);
1757    OS << " )";
1758  }
1759
1760  void VisitIndirectGotoStmt(IndirectGotoStmt* I) {
1761    OS << "goto *";
1762    I->getTarget()->printPretty(OS, Helper, Policy);
1763  }
1764
1765  void VisitBinaryOperator(BinaryOperator* B) {
1766    if (!B->isLogicalOp()) {
1767      VisitExpr(B);
1768      return;
1769    }
1770
1771    B->getLHS()->printPretty(OS, Helper, Policy);
1772
1773    switch (B->getOpcode()) {
1774      case BinaryOperator::LOr:
1775        OS << " || ...";
1776        return;
1777      case BinaryOperator::LAnd:
1778        OS << " && ...";
1779        return;
1780      default:
1781        assert(false && "Invalid logical operator.");
1782    }
1783  }
1784
1785  void VisitExpr(Expr* E) {
1786    E->printPretty(OS, Helper, Policy);
1787  }
1788};
1789} // end anonymous namespace
1790
1791
1792static void print_stmt(llvm::raw_ostream &OS, StmtPrinterHelper* Helper,
1793                       Stmt* Terminator) {
1794  if (Helper) {
1795    // special printing for statement-expressions.
1796    if (StmtExpr* SE = dyn_cast<StmtExpr>(Terminator)) {
1797      CompoundStmt* Sub = SE->getSubStmt();
1798
1799      if (Sub->child_begin() != Sub->child_end()) {
1800        OS << "({ ... ; ";
1801        Helper->handledStmt(*SE->getSubStmt()->body_rbegin(),OS);
1802        OS << " })\n";
1803        return;
1804      }
1805    }
1806
1807    // special printing for comma expressions.
1808    if (BinaryOperator* B = dyn_cast<BinaryOperator>(Terminator)) {
1809      if (B->getOpcode() == BinaryOperator::Comma) {
1810        OS << "... , ";
1811        Helper->handledStmt(B->getRHS(),OS);
1812        OS << '\n';
1813        return;
1814      }
1815    }
1816  }
1817
1818  Terminator->printPretty(OS, Helper, PrintingPolicy(Helper->getLangOpts()));
1819
1820  // Expressions need a newline.
1821  if (isa<Expr>(Terminator)) OS << '\n';
1822}
1823
1824static void print_block(llvm::raw_ostream& OS, const CFG* cfg,
1825                        const CFGBlock& B,
1826                        StmtPrinterHelper* Helper, bool print_edges) {
1827
1828  if (Helper) Helper->setBlockID(B.getBlockID());
1829
1830  // Print the header.
1831  OS << "\n [ B" << B.getBlockID();
1832
1833  if (&B == &cfg->getEntry())
1834    OS << " (ENTRY) ]\n";
1835  else if (&B == &cfg->getExit())
1836    OS << " (EXIT) ]\n";
1837  else if (&B == cfg->getIndirectGotoBlock())
1838    OS << " (INDIRECT GOTO DISPATCH) ]\n";
1839  else
1840    OS << " ]\n";
1841
1842  // Print the label of this block.
1843  if (Stmt* Terminator = const_cast<Stmt*>(B.getLabel())) {
1844
1845    if (print_edges)
1846      OS << "    ";
1847
1848    if (LabelStmt* L = dyn_cast<LabelStmt>(Terminator))
1849      OS << L->getName();
1850    else if (CaseStmt* C = dyn_cast<CaseStmt>(Terminator)) {
1851      OS << "case ";
1852      C->getLHS()->printPretty(OS, Helper,
1853                               PrintingPolicy(Helper->getLangOpts()));
1854      if (C->getRHS()) {
1855        OS << " ... ";
1856        C->getRHS()->printPretty(OS, Helper,
1857                                 PrintingPolicy(Helper->getLangOpts()));
1858      }
1859    } else if (isa<DefaultStmt>(Terminator))
1860      OS << "default";
1861    else
1862      assert(false && "Invalid label statement in CFGBlock.");
1863
1864    OS << ":\n";
1865  }
1866
1867  // Iterate through the statements in the block and print them.
1868  unsigned j = 1;
1869
1870  for (CFGBlock::const_iterator I = B.begin(), E = B.end() ;
1871       I != E ; ++I, ++j ) {
1872
1873    // Print the statement # in the basic block and the statement itself.
1874    if (print_edges)
1875      OS << "    ";
1876
1877    OS << llvm::format("%3d", j) << ": ";
1878
1879    if (Helper)
1880      Helper->setStmtID(j);
1881
1882    print_stmt(OS,Helper,*I);
1883  }
1884
1885  // Print the terminator of this block.
1886  if (B.getTerminator()) {
1887    if (print_edges)
1888      OS << "    ";
1889
1890    OS << "  T: ";
1891
1892    if (Helper) Helper->setBlockID(-1);
1893
1894    CFGBlockTerminatorPrint TPrinter(OS, Helper,
1895                                     PrintingPolicy(Helper->getLangOpts()));
1896    TPrinter.Visit(const_cast<Stmt*>(B.getTerminator()));
1897    OS << '\n';
1898  }
1899
1900  if (print_edges) {
1901    // Print the predecessors of this block.
1902    OS << "    Predecessors (" << B.pred_size() << "):";
1903    unsigned i = 0;
1904
1905    for (CFGBlock::const_pred_iterator I = B.pred_begin(), E = B.pred_end();
1906         I != E; ++I, ++i) {
1907
1908      if (i == 8 || (i-8) == 0)
1909        OS << "\n     ";
1910
1911      OS << " B" << (*I)->getBlockID();
1912    }
1913
1914    OS << '\n';
1915
1916    // Print the successors of this block.
1917    OS << "    Successors (" << B.succ_size() << "):";
1918    i = 0;
1919
1920    for (CFGBlock::const_succ_iterator I = B.succ_begin(), E = B.succ_end();
1921         I != E; ++I, ++i) {
1922
1923      if (i == 8 || (i-8) % 10 == 0)
1924        OS << "\n    ";
1925
1926      if (*I)
1927        OS << " B" << (*I)->getBlockID();
1928      else
1929        OS  << " NULL";
1930    }
1931
1932    OS << '\n';
1933  }
1934}
1935
1936
1937/// dump - A simple pretty printer of a CFG that outputs to stderr.
1938void CFG::dump(const LangOptions &LO) const { print(llvm::errs(), LO); }
1939
1940/// print - A simple pretty printer of a CFG that outputs to an ostream.
1941void CFG::print(llvm::raw_ostream &OS, const LangOptions &LO) const {
1942  StmtPrinterHelper Helper(this, LO);
1943
1944  // Print the entry block.
1945  print_block(OS, this, getEntry(), &Helper, true);
1946
1947  // Iterate through the CFGBlocks and print them one by one.
1948  for (const_iterator I = Blocks.begin(), E = Blocks.end() ; I != E ; ++I) {
1949    // Skip the entry block, because we already printed it.
1950    if (&(**I) == &getEntry() || &(**I) == &getExit())
1951      continue;
1952
1953    print_block(OS, this, **I, &Helper, true);
1954  }
1955
1956  // Print the exit block.
1957  print_block(OS, this, getExit(), &Helper, true);
1958  OS.flush();
1959}
1960
1961/// dump - A simply pretty printer of a CFGBlock that outputs to stderr.
1962void CFGBlock::dump(const CFG* cfg, const LangOptions &LO) const {
1963  print(llvm::errs(), cfg, LO);
1964}
1965
1966/// print - A simple pretty printer of a CFGBlock that outputs to an ostream.
1967///   Generally this will only be called from CFG::print.
1968void CFGBlock::print(llvm::raw_ostream& OS, const CFG* cfg,
1969                     const LangOptions &LO) const {
1970  StmtPrinterHelper Helper(cfg, LO);
1971  print_block(OS, cfg, *this, &Helper, true);
1972}
1973
1974/// printTerminator - A simple pretty printer of the terminator of a CFGBlock.
1975void CFGBlock::printTerminator(llvm::raw_ostream &OS,
1976                               const LangOptions &LO) const {
1977  CFGBlockTerminatorPrint TPrinter(OS, NULL, PrintingPolicy(LO));
1978  TPrinter.Visit(const_cast<Stmt*>(getTerminator()));
1979}
1980
1981Stmt* CFGBlock::getTerminatorCondition() {
1982
1983  if (!Terminator)
1984    return NULL;
1985
1986  Expr* E = NULL;
1987
1988  switch (Terminator->getStmtClass()) {
1989    default:
1990      break;
1991
1992    case Stmt::ForStmtClass:
1993      E = cast<ForStmt>(Terminator)->getCond();
1994      break;
1995
1996    case Stmt::WhileStmtClass:
1997      E = cast<WhileStmt>(Terminator)->getCond();
1998      break;
1999
2000    case Stmt::DoStmtClass:
2001      E = cast<DoStmt>(Terminator)->getCond();
2002      break;
2003
2004    case Stmt::IfStmtClass:
2005      E = cast<IfStmt>(Terminator)->getCond();
2006      break;
2007
2008    case Stmt::ChooseExprClass:
2009      E = cast<ChooseExpr>(Terminator)->getCond();
2010      break;
2011
2012    case Stmt::IndirectGotoStmtClass:
2013      E = cast<IndirectGotoStmt>(Terminator)->getTarget();
2014      break;
2015
2016    case Stmt::SwitchStmtClass:
2017      E = cast<SwitchStmt>(Terminator)->getCond();
2018      break;
2019
2020    case Stmt::ConditionalOperatorClass:
2021      E = cast<ConditionalOperator>(Terminator)->getCond();
2022      break;
2023
2024    case Stmt::BinaryOperatorClass: // '&&' and '||'
2025      E = cast<BinaryOperator>(Terminator)->getLHS();
2026      break;
2027
2028    case Stmt::ObjCForCollectionStmtClass:
2029      return Terminator;
2030  }
2031
2032  return E ? E->IgnoreParens() : NULL;
2033}
2034
2035bool CFGBlock::hasBinaryBranchTerminator() const {
2036
2037  if (!Terminator)
2038    return false;
2039
2040  Expr* E = NULL;
2041
2042  switch (Terminator->getStmtClass()) {
2043    default:
2044      return false;
2045
2046    case Stmt::ForStmtClass:
2047    case Stmt::WhileStmtClass:
2048    case Stmt::DoStmtClass:
2049    case Stmt::IfStmtClass:
2050    case Stmt::ChooseExprClass:
2051    case Stmt::ConditionalOperatorClass:
2052    case Stmt::BinaryOperatorClass:
2053      return true;
2054  }
2055
2056  return E ? E->IgnoreParens() : NULL;
2057}
2058
2059
2060//===----------------------------------------------------------------------===//
2061// CFG Graphviz Visualization
2062//===----------------------------------------------------------------------===//
2063
2064
2065#ifndef NDEBUG
2066static StmtPrinterHelper* GraphHelper;
2067#endif
2068
2069void CFG::viewCFG(const LangOptions &LO) const {
2070#ifndef NDEBUG
2071  StmtPrinterHelper H(this, LO);
2072  GraphHelper = &H;
2073  llvm::ViewGraph(this,"CFG");
2074  GraphHelper = NULL;
2075#endif
2076}
2077
2078namespace llvm {
2079template<>
2080struct DOTGraphTraits<const CFG*> : public DefaultDOTGraphTraits {
2081
2082  DOTGraphTraits (bool isSimple=false) : DefaultDOTGraphTraits(isSimple) {}
2083
2084  static std::string getNodeLabel(const CFGBlock* Node, const CFG* Graph) {
2085
2086#ifndef NDEBUG
2087    std::string OutSStr;
2088    llvm::raw_string_ostream Out(OutSStr);
2089    print_block(Out,Graph, *Node, GraphHelper, false);
2090    std::string& OutStr = Out.str();
2091
2092    if (OutStr[0] == '\n') OutStr.erase(OutStr.begin());
2093
2094    // Process string output to make it nicer...
2095    for (unsigned i = 0; i != OutStr.length(); ++i)
2096      if (OutStr[i] == '\n') {                            // Left justify
2097        OutStr[i] = '\\';
2098        OutStr.insert(OutStr.begin()+i+1, 'l');
2099      }
2100
2101    return OutStr;
2102#else
2103    return "";
2104#endif
2105  }
2106};
2107} // end namespace llvm
2108