1. d7444aa by Steve Naroff · 17 years ago
  2. 49a436d Added support for __builtin_choose_expr (ChooseExpr) in CFGs. by Ted Kremenek · 17 years ago
  3. 66b5a8a Add InitListExpr class. by Anders Carlsson · 17 years ago
  4. 535bb20 Minor cleanups to pretty-printing for loops in CFGs. by Ted Kremenek · 17 years ago
  5. 29ccaa1 Fixed a bug in constructing CFG blocks for case statement fall-through by Ted Kremenek · 17 years ago
  6. 6b91cd9 Diff is self small & self explanatory... by Steve Naroff · 17 years ago
  7. af603f7 Fixed bug in CFG construction where we failed to handle loop bodies with by Ted Kremenek · 17 years ago
  8. 16e4dc8 Fixed bug in CFG construction involving use of labels and "empty" by Ted Kremenek · 17 years ago
  9. bdbf7b0 Fix a comment. by Steve Naroff · 17 years ago
  10. b6f7b72 Fixed bug where the CFG would fail to build when an 'if' statement had by Ted Kremenek · 17 years ago
  11. c940612 Polish yesterday's Array/ConstantArray/VariableArray rewrite, removing a couple FIXME's. by Steve Naroff · 17 years ago
  12. 704fe35 implement pretty printing of offsetof by Chris Lattner · 17 years ago
  13. 73d0d4f implement initial sema support for __builtin_offsetof by Chris Lattner · 17 years ago
  14. d97bb6c Fixed bug for CaseStmt where the child_begin/child_end methods were not by Ted Kremenek · 17 years ago
  15. 729a213 fix a bug that is causing CodeGen/complex.c to be grumpy. by Chris Lattner · 17 years ago
  16. e300c87 Teach the stmtdumper to dump location/range info when a SourceMgr is available. by Chris Lattner · 17 years ago
  17. fb22d96 by Steve Naroff · 17 years ago
  18. 17a1a72 Previous commit should have been: by Chris Lattner · 17 years ago
  19. b393879 elimiante some virtual calls. by Chris Lattner · 17 years ago
  20. 0c727a3 Allow a SourceManager to optionally be passed into Stmt::dump by Chris Lattner · 17 years ago
  21. 9cffe73 Added an (optional) explicit "Label" statement to CFGBlock. If a by Ted Kremenek · 17 years ago
  22. 7dba860 Added GraphTraits to source-level CFGs (CFG and CFGBlock) to allow by Ted Kremenek · 17 years ago
  23. d5bbce4 Teach Type::is[un]SignedIntegerType about enum decls. This allows the code generator by Chris Lattner · 17 years ago
  24. 19a6ebd Re-teach Expr::isNullPointerConstant() about ImplicitCastExpr:-) by Steve Naroff · 17 years ago
  25. 7269f2d Teach Expr::isNullPointerConstant() about ImplicitCastExpr's. by Steve Naroff · 17 years ago
  26. 19bb356 Added support for indirect-gotos (GCC extension) in source-level CFGs. by Ted Kremenek · 17 years ago
  27. 15c27a8 Added support for GCC-style statement expressions in source-level CFGs. by Ted Kremenek · 17 years ago
  28. e00b18c Change EnumDecl to store its corresponding integer type by Chris Lattner · 17 years ago
  29. b49e1aa Added support for comma expressions and DeclStmts which may have by Ted Kremenek · 17 years ago
  30. 7926f7c Removed special-casing in CFG construction for ParenExprs. by Ted Kremenek · 17 years ago
  31. 0b1d9b7 Added support for short-circuit '&&' and '||' operators in source-level CFGs. by Ted Kremenek · 17 years ago
  32. 9da2fb7 Implemented support for ternary "?" operators in source-level CFGs. by Ted Kremenek · 17 years ago
  33. 42a2977 Fixed bug in child_begin/child_end for CallExpr where we incorrectly calculated a Stmt** pointer by Ted Kremenek · 17 years ago
  34. 2298f91 Fixed bug in child_begin/child_end for ReturnStmt where the iterator by Ted Kremenek · 17 years ago
  35. 49af7cb Changes to CFGBuilder: by Ted Kremenek · 17 years ago
  36. fb07153 constify some stuff by Chris Lattner · 17 years ago
  37. 6cd862c implement sizeof(enum x), patch inspired by Keith Bauer. by Chris Lattner · 17 years ago
  38. fb0d496 Replaced ASTContext::maxFloatingType() with ASTContext::compareFloatingType(). by Steve Naroff · 17 years ago
  39. 77878cc by Steve Naroff · 17 years ago
  40. 716c730 by Steve Naroff · 17 years ago
  41. f1448a0 by Steve Naroff · 17 years ago
  42. 4a70adb null pointers don't get an extra newline. by Chris Lattner · 17 years ago
  43. 5d66145 add a new ImaginaryLiteral AST node that is used to by Chris Lattner · 17 years ago
  44. 8702a0f by Steve Naroff · 17 years ago
  45. ad7ef48 Change Expr::isLvalue() to properly deal with ImplicitCastExpr's. by Steve Naroff · 17 years ago
  46. eb14fe8 Split the ASTNode out for compound assignments out from binary operators. Now by Chris Lattner · 17 years ago
  47. 1f683e9 fix off-by-one error by Chris Lattner · 17 years ago
  48. 6338135 rename sNames -> StmtClassInfo. Make lookups constant time. by Chris Lattner · 17 years ago
  49. 8297777 Added child_begin/child_end to all subclasses of Stmt in Stmt.h. All by Ted Kremenek · 17 years ago
  50. a758d09 Implementation of child_begin/child_end for C++ expressions. by Ted Kremenek · 17 years ago
  51. 1237c67 Finished adding child_begin/child_end to all subclasses of Stmt in Expr.h. by Ted Kremenek · 17 years ago
  52. 77ed8e4 Began implementing "child iterator" interface for Stmts and Exprs. Each by Ted Kremenek · 17 years ago
  53. dfce2a5 print the computation type for compound assignment operators in dumps. by Chris Lattner · 17 years ago
  54. 296bf19 Pretty print as: "case sizeof x:" instead of: "case sizeofx:" by Chris Lattner · 17 years ago
  55. 602dafd sizeof(x) doesn't require x to be an i-c-e for sizeof to be an i-c-e. Thanks to Neil for pointing this out. by Chris Lattner · 17 years ago
  56. d4fdee3 No functionality change. Moved visitor methods for CFGBuilder out-of-line by Ted Kremenek · 17 years ago
  57. befef2f moved CFGBuilder into an anonymous namespace by Ted Kremenek · 17 years ago
  58. b5c13b0 Added support for switch, default, and case statements in source-level CFGs. by Ted Kremenek · 17 years ago
  59. 989d52d For gotos, breaks, and continues where we cannot find a target successor by Ted Kremenek · 17 years ago
  60. f752fcf Added support for do..while loops in CFG construction. by Ted Kremenek · 17 years ago
  61. 026473c Renamed "CFG::BuildCFG" to "CFG::buildCFG" to have more consistent capitalization. by Ted Kremenek · 17 years ago
  62. 31dcd3c Fixed bugs in source-level CFG construction for "for" and "while" loops by Ted Kremenek · 17 years ago
  63. 8a29471 Added support for "break" statements in source-level ASTs. by Ted Kremenek · 17 years ago
  64. bf15b27 Added support for "continue" statements in source-level CFGs by Ted Kremenek · 17 years ago
  65. 2bac4ea Added preliminary support for while loops within source-level CFGs. by Ted Kremenek · 17 years ago
  66. e8ee26b Added CFG support for: for loops by Ted Kremenek · 17 years ago
  67. 4a2b8a1 Changed data structure recording the CFG blocks that need to be backpatched by Ted Kremenek · 17 years ago
  68. f9bcf01 Parse @encode expressions. by Anders Carlsson · 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
  72. 5508518 Implement parsing and code generation of Objective-C string literals. by Anders Carlsson · 17 years ago
  73. c6fb90a add getAsComplexType() for consistency by Chris Lattner · 17 years ago
  74. c5598cb Switch StmtVisitor from using dynamic to static dispatch. This makes it by Chris Lattner · 17 years ago
  75. 2324512 Modified ArraySubscriptExpr to have accessors getLHS and getRHS in addition by Ted Kremenek · 17 years ago
  76. 71993dd Add initial support for constant CFStrings. by Anders Carlsson · 17 years ago
  77. ee41ce5 make sure to add a newline at the end of the dump by Chris Lattner · 17 years ago
  78. f9e0581 implement dumper support for declstmt's. The dumper is now "done". by Chris Lattner · 17 years ago
  79. 13cb21f implement dumper support for the rest of expressions. by Chris Lattner · 17 years ago
  80. 36460ee move a switch to common code. by Chris Lattner · 17 years ago
  81. 5fc6107 dump strings with escapes and other stuff in them nicely. by Chris Lattner · 17 years ago
  82. a0df31a add dumping support for some new nodes by Chris Lattner · 17 years ago
  83. fd8f7da Dump out types for expressions, and handle typedefs nicely. by Chris Lattner · 17 years ago
  84. 6000dac add a new AST dumper interface (E->dump()). This dumps out by Chris Lattner · 17 years ago
  85. 13b7c5f Finish implementing __builtin_classify_type()... by Steve Naroff · 17 years ago
  86. e877042 Add support for __builtin_classify_type(). This builtin function isn't "public", however by Steve Naroff · 17 years ago
  87. 1bfd5cc by Steve Naroff · 17 years ago
  88. 94f05e3 Implement codegen for __builtin_choose_expr. For example: by Chris Lattner · 17 years ago
  89. d04fdd5 by Steve Naroff · 17 years ago
  90. 6481a57 Rename AddrLabel and OCUVectorComponent -> AddrLabelExpr and OCUVectorElementExpr respectively. This is for consistency with other expr nodes end with *Expr. by Chris Lattner · 17 years ago
  91. 4d0ac88 add OCUVectorComponent::getNumComponents() by Chris Lattner · 17 years ago
  92. b8f849d Add support for encoding a OCUVectorComponent into a single integer. by Chris Lattner · 17 years ago
  93. 88dca04 rename some helpers, have them return the idx of the field being accessed. by Chris Lattner · 17 years ago
  94. b4878f4 Use static methods, which don't require an instance of OCUVectorType by Chris Lattner · 17 years ago
  95. cb92a11 Minor comment improvements. by Chris Lattner · 17 years ago
  96. 7b658aa by Steve Naroff · 17 years ago
  97. 389cecc by Steve Naroff · 17 years ago
  98. 363bcff by Steve Naroff · 17 years ago
  99. d34e915 by Steve Naroff · 17 years ago
  100. 9752f25 by Steve Naroff · 17 years ago