1. dbdf794 CFG: For 'if(...) {}' (empty body) construct an empty CFGBlock so that we can by Ted Kremenek · 15 years ago
  2. e31c0d2 Add partial CFG support for Objective-C exception-handling blocks. We basically by Ted Kremenek · 15 years ago
  3. e66a8cf some random cleanups by Chris Lattner · 15 years ago
  4. 7e24e82 rename some methods. by Chris Lattner · 15 years ago
  5. 54cc43f Fixup spacing. by Mike Stump · 15 years ago
  6. 9653db7 Remove DeclGroupOwningRef, since we intend for declarations to be owned by Douglas Gregor · 16 years ago
  7. 4afa39d Remove ScopedDecl, collapsing all of its functionality into Decl, so by Douglas Gregor · 16 years ago
  8. 2fda504 Add preliminary CFG support for @throw. We basically treat it like a return statement. by Ted Kremenek · 16 years ago
  9. 898574e Introduce basic support for dependent types, type-dependent by Douglas Gregor · 16 years ago
  10. d017243 Fix CFG bug where the 'increment' block for a 'for' statement would not be by Ted Kremenek · 16 years ago
  11. 4cb3a85 Fix CFG construction for ObjCForCollectionStmt: 'element' expression can be anything that evaluates to an lvalue by Ted Kremenek · 16 years ago
  12. ea81728 Hook up "BodyBlock", not "Block". by Ted Kremenek · 16 years ago
  13. fc33552 Correctly connect 'continue' and 'break' statements in Objective-C fast enumeration for blocks to the appropriate basic blocks. by Ted Kremenek · 16 years ago
  14. 006dd8a Fix bug where the body block of an ObjCForCollectionStmt would not properly get expanded as a series of basic blocks. by Ted Kremenek · 16 years ago
  15. 390e48b ObjCForCollectionStmts are block-level expressions. by Ted Kremenek · 16 years ago
  16. 0518999 Introduce a single AST node SizeOfAlignOfExpr for all sizeof and alignof expressions, both of values and types. by Sebastian Redl · 16 years ago
  17. 514de5a Add CFG support for Objective-C 2.0 fast enumeration 'for' statement: by Ted Kremenek · 16 years ago
  18. 8ffb159 Migrate DeclStmt over to using a DeclGroup instead of a pointer to a ScopedDecl*. by Ted Kremenek · 16 years ago
  19. 53061c8 Use DeclStmt::decl_iterator to walk a group of Decl*'s instead of using the ScopedDecl chain. by Ted Kremenek · 16 years ago
  20. 924d9a8 Reverse the RHSBlock of LogicalOp && and || by Zhongxing Xu · 16 years ago
  21. 610a09e Add CFG support for implicit-control flow for VLA size expressions within an SizeOfAlignOfTypeExpr. by Ted Kremenek · 16 years ago
  22. 00c0a30 Do not create CFGs for functions/methods using blocks (need to add control-flow). by Ted Kremenek · 16 years ago
  23. fcd06f7 Move VLA processing logic from LiveVariables to CFG construction. This way all dataflow analyses "see" the VLA size expressions. by Ted Kremenek · 16 years ago
  24. d452758 ProgramPoint now takes the space of two pointers instead of one. This change was by Ted Kremenek · 16 years ago
  25. a95d375 Patch by Csaba Hruska! by Ted Kremenek · 16 years ago
  26. e933450 Fix CFG construction bug: by Ted Kremenek · 16 years ago
  27. acc5f3e More #include cleaning by Daniel Dunbar · 16 years ago
  28. c7eb903 Cleanup some processing with DeclStmt, and gradually start using the internal BumpPtrAllocator to allocator more of CFG's data structures. by Ted Kremenek · 16 years ago
  29. ce1eb34 Always construct the BumpPtrAllocator used by CFG as an instance variable. by Ted Kremenek · 16 years ago
  30. a34ea07 Nico Weber: by Ted Kremenek · 16 years ago
  31. 54eec4c Fix one strict-aliasing warning. by Ted Kremenek · 16 years ago
  32. f494b57 - Move ObjC Expresssion AST's from Expr.h => ExprObjC.h by Steve Naroff · 16 years ago
  33. 9c2535a Added CFGBlock::hasBinaryBranchTerminator(). by Ted Kremenek · 16 years ago
  34. 274f433 Bug fix in CFG::getBlockEdgeImpl(): Use a BumpPtrAllocator to allocate by Ted Kremenek · 16 years ago
  35. 411cdee Added CFGBlock::getTerminatorCondition() to get the Expr* of the condition a block's terminator. by Ted Kremenek · 16 years ago
  36. a716d7a Bug fix in CFG construction: VisitCompoundStmt should return the last created block. by Ted Kremenek · 16 years ago
  37. bda0b62 Make a major restructuring of the clang tree: introduce a top-level by Chris Lattner · 16 years ago[Renamed from AST/CFG.cpp]
  38. 2677ea8 Small bug fix in CFG construction: the active block for LabelStmts comes by Ted Kremenek · 16 years ago
  39. 4102af9 Added bandaid support in CFG construction for ObjCForEachStmt and ObjCAtTryStmt: by Ted Kremenek · 16 years ago
  40. 87cf5ac Add some missing #includes for GCC mainline, patch by Shantonu Sen! by Chris Lattner · 16 years ago
  41. 243ee47 CallExprs are now no longer block-level expressions in the CFG by construction. by Ted Kremenek · 16 years ago
  42. ae2a98c Minor CFG optimization: don't create separate block-level expressions for DeclStmt initializers when the initializer is a literal. by Ted Kremenek · 16 years ago
  43. 0d99ecf Fixed edge-case in CFG construction where goto jumps would not always get by Ted Kremenek · 16 years ago
  44. 5482713 Bug fix in CFG construction: Properly register the loop head as the implicit by Ted Kremenek · 16 years ago
  45. a9d996d Fixed CFG construction bug that occurred when a condition for a loop spanned by Ted Kremenek · 16 years ago
  46. f4e15fc Do include ParenExpr in the CFG; only include their subexpression. by Ted Kremenek · 16 years ago
  47. d34066c Fixed bug in CFG construction when a CompoundStmt ended with a NullStmt. by Ted Kremenek · 16 years ago
  48. eef5a9a When creating the CFGBlocks for a switch statement, we now have the "default" by Ted Kremenek · 17 years ago
  49. 295222c Fixed bug in CFG construction when processing switch statements that contain no by Ted Kremenek · 17 years ago
  50. a292585 Added method "printTerminator" to CFGBlock so that external clients can by Ted Kremenek · 17 years ago
  51. 33d4aab Added back logic in patch r46361 (http://llvm.org/viewvc/llvm-project?rev=46361&view=rev) with the addition of by Ted Kremenek · 17 years ago
  52. e2dcd78 Reverting r46361 (http://llvm.org/viewvc/llvm-project?rev=46361&view=rev) until by Ted Kremenek · 17 years ago
  53. 7accba0 When adding assignment expressions to the set of block-level expressions, only by Ted Kremenek · 17 years ago
  54. 8694674 Modified the notion of "Block-level expressions" in CFGs to include Stmt*. This by Ted Kremenek · 17 years ago
  55. 83c01da Renamed ProgramEdge to ProgramPoint and changed subclasses of ProgramEdge by Ted Kremenek · 17 years ago
  56. 6fa9b88 Added VISIBILITY_HIDDEN to classes/structs in anonymous namespace. by Ted Kremenek · 17 years ago
  57. 0bc735f Don't attribute in file headers anymore. See llvmdev for the by Chris Lattner · 17 years ago
  58. afe5433 Fixed successor order for CFG basic blocks when handling: x && y. The bug by Ted Kremenek · 17 years ago
  59. 7e3a89d Removed CFG.cpp's dependence on #including iostream. by Ted Kremenek · 17 years ago
  60. a651e0e CFG bug fix: for sizeof(expressions), don't expand the control-flow by Ted Kremenek · 17 years ago
  61. 9a8385d Fixed bug in CFG::PopulateBlkExprMap where the ordering by Ted Kremenek · 17 years ago
  62. ecc04c9 Fixed bug in CFG construction where we did not properly handle the GCC by Ted Kremenek · 17 years ago
  63. d660322 Fixed bug in WalkaST_VisitDeclSubExprs where we failed to properly check if by Ted Kremenek · 17 years ago
  64. 8f54c1f Refactored CFG construction code that processes DeclStmts to use StmtIterator. by Ted Kremenek · 17 years ago
  65. 7a9d9d7 Modified CFG pretty-printing to directly use the (reverse) body by Ted Kremenek · 17 years ago
  66. c266acd remove dead #include by Chris Lattner · 17 years ago
  67. 11e7218 Migrated LiveVariables and UninitializedVariables to now use the by Ted Kremenek · 17 years ago
  68. 63f5887 CFG objects now internally store a (lazily created) map from block-level by Ted Kremenek · 17 years ago
  69. d48ade6 Removed "hasImplicitControlFlow" from class CFG, and moved it to class Stmt by Ted Kremenek · 17 years ago
  70. 271f1a6 Fix some use of uninit variables issues, reported by Anton. by Chris Lattner · 17 years ago
  71. 322f58d Fixed two bugs in CFG construction: by Ted Kremenek · 17 years ago
  72. 94b3316 When building CFGs we now (unconditionally) add an empty CFGBlock to the CFG by Ted Kremenek · 17 years ago
  73. 3860c11 Fixed unterminated string issue. by Hartmut Kaiser · 17 years ago
  74. 0012351 make var in anon namespace static. Use \n instead of std::endl. by Chris Lattner · 17 years ago
  75. f874c13 fix warning. by Chris Lattner · 17 years ago
  76. 6bfce24 Fixed a problem VC++ revealed in release mode. Please verify. by Hartmut Kaiser · 17 years ago
  77. bd250b4 Fixed two problems VC++ revealed in release mode. Please verify. by Hartmut Kaiser · 17 years ago
  78. 155383b Added static method "CFG::hasImplicitControlFlow". by Ted Kremenek · 17 years ago
  79. f50ec10 Fixed bug where ternary expressions and GCC-style conditional expressions by Ted Kremenek · 17 years ago
  80. 9438252 Moved tracking of CFG block IDs into the CFG class. by Ted Kremenek · 17 years ago
  81. 60266e8 Fixed missing '(' and ')' characters in (CFG) pretty-printing of by Ted Kremenek · 17 years ago
  82. aeddbf6 Added better pretty printing in CFGs for __builtin_choose_expr by Ted Kremenek · 17 years ago
  83. 1c29bba Further cleanups in CFG printing for comma expressions, statement expressions, and indirect gotos. by Ted Kremenek · 17 years ago
  84. 805e9a8 Cleanups for printing the terminators of CFGBlocks for "?", "||", and "&&" operators. by Ted Kremenek · 17 years ago
  85. 42a509f Added "PrinterHelper" interface (include/AST/PrinterHelper) that can by Ted Kremenek · 17 years ago
  86. 49a436d Added support for __builtin_choose_expr (ChooseExpr) in CFGs. by Ted Kremenek · 17 years ago
  87. 535bb20 Minor cleanups to pretty-printing for loops in CFGs. by Ted Kremenek · 17 years ago
  88. 29ccaa1 Fixed a bug in constructing CFG blocks for case statement fall-through by Ted Kremenek · 17 years ago
  89. af603f7 Fixed bug in CFG construction where we failed to handle loop bodies with by Ted Kremenek · 17 years ago
  90. 16e4dc8 Fixed bug in CFG construction involving use of labels and "empty" by Ted Kremenek · 17 years ago
  91. b6f7b72 Fixed bug where the CFG would fail to build when an 'if' statement had by Ted Kremenek · 17 years ago
  92. 9cffe73 Added an (optional) explicit "Label" statement to CFGBlock. If a by Ted Kremenek · 17 years ago
  93. 7dba860 Added GraphTraits to source-level CFGs (CFG and CFGBlock) to allow by Ted Kremenek · 17 years ago
  94. 19bb356 Added support for indirect-gotos (GCC extension) in source-level CFGs. by Ted Kremenek · 17 years ago
  95. 15c27a8 Added support for GCC-style statement expressions in source-level CFGs. by Ted Kremenek · 17 years ago
  96. b49e1aa Added support for comma expressions and DeclStmts which may have by Ted Kremenek · 17 years ago
  97. 7926f7c Removed special-casing in CFG construction for ParenExprs. by Ted Kremenek · 17 years ago
  98. 0b1d9b7 Added support for short-circuit '&&' and '||' operators in source-level CFGs. by Ted Kremenek · 17 years ago
  99. 9da2fb7 Implemented support for ternary "?" operators in source-level CFGs. by Ted Kremenek · 17 years ago
  100. 49af7cb Changes to CFGBuilder: by Ted Kremenek · 17 years ago