1. a9d996d Fixed CFG construction bug that occurred when a condition for a loop spanned by Ted Kremenek · 17 years ago
  2. f4e15fc Do include ParenExpr in the CFG; only include their subexpression. by Ted Kremenek · 17 years ago
  3. d34066c Fixed bug in CFG construction when a CompoundStmt ended with a NullStmt. by Ted Kremenek · 17 years ago
  4. eef5a9a When creating the CFGBlocks for a switch statement, we now have the "default" by Ted Kremenek · 17 years ago
  5. 295222c Fixed bug in CFG construction when processing switch statements that contain no by Ted Kremenek · 17 years ago
  6. a292585 Added method "printTerminator" to CFGBlock so that external clients can by Ted Kremenek · 17 years ago
  7. 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
  8. e2dcd78 Reverting r46361 (http://llvm.org/viewvc/llvm-project?rev=46361&view=rev) until by Ted Kremenek · 17 years ago
  9. 7accba0 When adding assignment expressions to the set of block-level expressions, only by Ted Kremenek · 17 years ago
  10. 8694674 Modified the notion of "Block-level expressions" in CFGs to include Stmt*. This by Ted Kremenek · 17 years ago
  11. 83c01da Renamed ProgramEdge to ProgramPoint and changed subclasses of ProgramEdge by Ted Kremenek · 17 years ago
  12. 6fa9b88 Added VISIBILITY_HIDDEN to classes/structs in anonymous namespace. by Ted Kremenek · 17 years ago
  13. 0bc735f Don't attribute in file headers anymore. See llvmdev for the by Chris Lattner · 17 years ago
  14. afe5433 Fixed successor order for CFG basic blocks when handling: x && y. The bug by Ted Kremenek · 17 years ago
  15. 7e3a89d Removed CFG.cpp's dependence on #including iostream. by Ted Kremenek · 17 years ago
  16. a651e0e CFG bug fix: for sizeof(expressions), don't expand the control-flow by Ted Kremenek · 17 years ago
  17. 9a8385d Fixed bug in CFG::PopulateBlkExprMap where the ordering by Ted Kremenek · 17 years ago
  18. ecc04c9 Fixed bug in CFG construction where we did not properly handle the GCC by Ted Kremenek · 17 years ago
  19. d660322 Fixed bug in WalkaST_VisitDeclSubExprs where we failed to properly check if by Ted Kremenek · 17 years ago
  20. 8f54c1f Refactored CFG construction code that processes DeclStmts to use StmtIterator. by Ted Kremenek · 17 years ago
  21. 7a9d9d7 Modified CFG pretty-printing to directly use the (reverse) body by Ted Kremenek · 17 years ago
  22. c266acd remove dead #include by Chris Lattner · 17 years ago
  23. 11e7218 Migrated LiveVariables and UninitializedVariables to now use the by Ted Kremenek · 17 years ago
  24. 63f5887 CFG objects now internally store a (lazily created) map from block-level by Ted Kremenek · 17 years ago
  25. d48ade6 Removed "hasImplicitControlFlow" from class CFG, and moved it to class Stmt by Ted Kremenek · 17 years ago
  26. 271f1a6 Fix some use of uninit variables issues, reported by Anton. by Chris Lattner · 17 years ago
  27. 322f58d Fixed two bugs in CFG construction: by Ted Kremenek · 17 years ago
  28. 94b3316 When building CFGs we now (unconditionally) add an empty CFGBlock to the CFG by Ted Kremenek · 17 years ago
  29. 3860c11 Fixed unterminated string issue. by Hartmut Kaiser · 17 years ago
  30. 0012351 make var in anon namespace static. Use \n instead of std::endl. by Chris Lattner · 17 years ago
  31. f874c13 fix warning. by Chris Lattner · 17 years ago
  32. 6bfce24 Fixed a problem VC++ revealed in release mode. Please verify. by Hartmut Kaiser · 17 years ago
  33. bd250b4 Fixed two problems VC++ revealed in release mode. Please verify. by Hartmut Kaiser · 17 years ago
  34. 155383b Added static method "CFG::hasImplicitControlFlow". by Ted Kremenek · 17 years ago
  35. f50ec10 Fixed bug where ternary expressions and GCC-style conditional expressions by Ted Kremenek · 17 years ago
  36. 9438252 Moved tracking of CFG block IDs into the CFG class. by Ted Kremenek · 17 years ago
  37. 60266e8 Fixed missing '(' and ')' characters in (CFG) pretty-printing of by Ted Kremenek · 17 years ago
  38. aeddbf6 Added better pretty printing in CFGs for __builtin_choose_expr by Ted Kremenek · 17 years ago
  39. 1c29bba Further cleanups in CFG printing for comma expressions, statement expressions, and indirect gotos. by Ted Kremenek · 17 years ago
  40. 805e9a8 Cleanups for printing the terminators of CFGBlocks for "?", "||", and "&&" operators. by Ted Kremenek · 17 years ago
  41. 42a509f Added "PrinterHelper" interface (include/AST/PrinterHelper) that can by Ted Kremenek · 17 years ago
  42. 49a436d Added support for __builtin_choose_expr (ChooseExpr) in CFGs. by Ted Kremenek · 17 years ago
  43. 535bb20 Minor cleanups to pretty-printing for loops in CFGs. by Ted Kremenek · 17 years ago
  44. 29ccaa1 Fixed a bug in constructing CFG blocks for case statement fall-through by Ted Kremenek · 17 years ago
  45. af603f7 Fixed bug in CFG construction where we failed to handle loop bodies with by Ted Kremenek · 17 years ago
  46. 16e4dc8 Fixed bug in CFG construction involving use of labels and "empty" by Ted Kremenek · 17 years ago
  47. b6f7b72 Fixed bug where the CFG would fail to build when an 'if' statement had by Ted Kremenek · 17 years ago
  48. 9cffe73 Added an (optional) explicit "Label" statement to CFGBlock. If a by Ted Kremenek · 17 years ago
  49. 7dba860 Added GraphTraits to source-level CFGs (CFG and CFGBlock) to allow by Ted Kremenek · 17 years ago
  50. 19bb356 Added support for indirect-gotos (GCC extension) in source-level CFGs. by Ted Kremenek · 17 years ago
  51. 15c27a8 Added support for GCC-style statement expressions in source-level CFGs. by Ted Kremenek · 17 years ago
  52. b49e1aa Added support for comma expressions and DeclStmts which may have by Ted Kremenek · 17 years ago
  53. 7926f7c Removed special-casing in CFG construction for ParenExprs. by Ted Kremenek · 17 years ago
  54. 0b1d9b7 Added support for short-circuit '&&' and '||' operators in source-level CFGs. by Ted Kremenek · 17 years ago
  55. 9da2fb7 Implemented support for ternary "?" operators in source-level CFGs. by Ted Kremenek · 17 years ago
  56. 49af7cb Changes to CFGBuilder: by Ted Kremenek · 17 years ago
  57. d4fdee3 No functionality change. Moved visitor methods for CFGBuilder out-of-line by Ted Kremenek · 17 years ago
  58. befef2f moved CFGBuilder into an anonymous namespace by Ted Kremenek · 17 years ago
  59. b5c13b0 Added support for switch, default, and case statements in source-level CFGs. by Ted Kremenek · 17 years ago
  60. 989d52d For gotos, breaks, and continues where we cannot find a target successor by Ted Kremenek · 17 years ago
  61. f752fcf Added support for do..while loops in CFG construction. by Ted Kremenek · 17 years ago
  62. 026473c Renamed "CFG::BuildCFG" to "CFG::buildCFG" to have more consistent capitalization. by Ted Kremenek · 17 years ago
  63. 31dcd3c Fixed bugs in source-level CFG construction for "for" and "while" loops by Ted Kremenek · 17 years ago
  64. 8a29471 Added support for "break" statements in source-level ASTs. by Ted Kremenek · 17 years ago
  65. bf15b27 Added support for "continue" statements in source-level CFGs by Ted Kremenek · 17 years ago
  66. 2bac4ea Added preliminary support for while loops within source-level CFGs. by Ted Kremenek · 17 years ago
  67. e8ee26b Added CFG support for: for loops by Ted Kremenek · 17 years ago
  68. 4a2b8a1 Changed data structure recording the CFG blocks that need to be backpatched by Ted Kremenek · 17 years ago
  69. 0cebe3e Added CFG support for gotos and labels. by Ted Kremenek · 17 years ago
  70. c310e93 Converted CFGBuilder to use StmtVisitor instead of doing a switch by Ted Kremenek · 17 years ago
  71. fddd518 Added CFG infrastructure (CFG.cpp and CFG.h) for clang ASTs. by Ted Kremenek · 17 years ago