1. ce421c8 this test is passing, though it is generating bogus code at the moment. by Chris Lattner · 17 years ago
  2. 3429a81 start checking case values of switch stmts more closely. Emit overflow by Chris Lattner · 17 years ago
  3. 9b7cae4 Update to match the API from LLVM mainline. by Chris Lattner · 17 years ago
  4. 39c851c run .m files as tests by Chris Lattner · 17 years ago
  5. 21ac6ef Test that cocoa parses with -parse-noop. In the future by Chris Lattner · 17 years ago
  6. a8ee226 by Steve Naroff · 17 years ago
  7. 0baf7c0 Fixed bugs in source-level CFG construction for "for" and "while" loops by Ted Kremenek · 17 years ago
  8. 228ed36 by Steve Naroff · 17 years ago
  9. 72f17fb by Steve Naroff · 17 years ago
  10. f308d37 Added support for "break" statements in source-level ASTs. by Ted Kremenek · 17 years ago
  11. f511d67 Added support for "continue" statements in source-level CFGs by Ted Kremenek · 17 years ago
  12. bec06e8 Added preliminary support for while loops within source-level CFGs. by Ted Kremenek · 17 years ago
  13. 2e41cb3 Added explicit pointer within class CFG to the Entry block. by Ted Kremenek · 17 years ago
  14. 09a0c4c by Steve Naroff · 17 years ago
  15. d831320 Added CFG support for: for loops by Ted Kremenek · 17 years ago
  16. 0bbffd8 by Steve Naroff · 17 years ago
  17. f5392b7 Changed data structure recording the CFG blocks that need to be backpatched by Ted Kremenek · 17 years ago
  18. 8be1d40 Parse @encode expressions. by Anders Carlsson · 17 years ago
  19. aac973e update todo markers by Chris Lattner · 17 years ago
  20. 59ed6e2 optimize scope push/pop to avoid work in the common case. by Chris Lattner · 17 years ago
  21. f446f72 Fix the scoping issue Neil pointed out for the rest of by Chris Lattner · 17 years ago
  22. d190ac2 Fix a nasty C99 scope issue that Neil pointed out (for ifs) by Chris Lattner · 17 years ago
  23. c5de222 Added CFG support for gotos and labels. by Ted Kremenek · 17 years ago
  24. 385d4b7 add some fixme's, implement complex struct members. by Chris Lattner · 17 years ago
  25. 63213e2 implement codegen for --/++ by Chris Lattner · 17 years ago
  26. 95e854d Converted CFGBuilder to use StmtVisitor instead of doing a switch by Ted Kremenek · 17 years ago
  27. 2bc45a6 add cfg.h/cfg.cpp to the xcode project at Ted's request. by Chris Lattner · 17 years ago
  28. 97f7531 Added CFG infrastructure (CFG.cpp and CFG.h) for clang ASTs. by Ted Kremenek · 17 years ago
  29. c447499 Implement parsing for objc instance variables. by Steve Naroff · 17 years ago
  30. 2d0f4de implement __extension__ and unary~ for complex. by Chris Lattner · 17 years ago
  31. 2611656 Added reverse iterators for the body of CompountStmt. These are useful for by Ted Kremenek · 17 years ago
  32. d4aae9b implement codegen for complex unary +/- by Chris Lattner · 17 years ago
  33. 511c37e Don't remove the grammar construct, just the TODO. by Anders Carlsson · 17 years ago
  34. 7cff530 minor nicities. by Chris Lattner · 17 years ago
  35. f491b41 Tweak error recovery for missing semicolon after decl. For this: by Chris Lattner · 17 years ago
  36. 94ac052 add unary operator support to the stmtvisitor by Chris Lattner · 17 years ago
  37. 3ed8839 Remove objc-string-literal since it's been implemented now. by Anders Carlsson · 17 years ago
  38. 55029ed implement support for complex subscripts. by Chris Lattner · 17 years ago
  39. 689bfe4 allow support for volatile lvalues even though it's still not right. by Chris Lattner · 17 years ago
  40. a66cad4 Implement parsing and code generation of Objective-C string literals. by Anders Carlsson · 17 years ago
  41. 950b5d9 add a new builder ivar. by Chris Lattner · 17 years ago
  42. 1cd8f5c move EmitLoadOfComplex/EmitStoreOfComplex into ComplexExprEmitter. by Chris Lattner · 17 years ago
  43. c15b0db implement comma for complex. by Chris Lattner · 17 years ago
  44. 7c257f4 and/or/xor are invalid for complex, even integer complex apparently. by Chris Lattner · 17 years ago
  45. 14b0dad simplify code slightly by Chris Lattner · 17 years ago
  46. 5328f31 add sema support for complex integer types by Chris Lattner · 17 years ago
  47. 5280c5f reimplement support for complex comparisons, add support for integer complex compares. by Chris Lattner · 17 years ago
  48. 7a85fa1 add getAsComplexType() for consistency by Chris Lattner · 17 years ago
  49. fb3befa Add the comparisons and logical binops to the visitor. by Chris Lattner · 17 years ago
  50. 9a4e2c6 reimplement complex mul by Chris Lattner · 17 years ago
  51. 9a94e29 add a testcase I forgot to check in long ago by Chris Lattner · 17 years ago
  52. edb3bf0 update some comments. by Chris Lattner · 17 years ago
  53. 8d0cc2f Split complex arithmetic codegen out from aggregate codegen. by Chris Lattner · 17 years ago
  54. 55165ba simplify this a bit to remove indirection by Chris Lattner · 17 years ago
  55. a730010 reimplement addition of complex numbers. by Chris Lattner · 17 years ago
  56. 76cb189 Add the ability to visit binary operators without having to by Chris Lattner · 17 years ago
  57. b50e390 switch aggregate expr codegen to use a visitor to localize most of the nasty by Chris Lattner · 17 years ago
  58. 66ef2b9 Now that the visitor is defined in one place, it is nice and easy to allow clients by Chris Lattner · 17 years ago
  59. 7ba21fa Switch StmtVisitor from using dynamic to static dispatch. This makes it by Chris Lattner · 17 years ago
  60. 74e5f00 we now correctly emit: by Chris Lattner · 17 years ago
  61. 36a0487 Implement code generation for constant CFStrings. by Anders Carlsson · 17 years ago
  62. b2cb9cb Fix array->pointer decay. This unbreaks test/CodeGen/array.c by Chris Lattner · 17 years ago
  63. a9adf11 by Steve Naroff · 17 years ago
  64. fb36788 by Steve Naroff · 17 years ago
  65. 4986530 Add support for code generation of builtins. by Anders Carlsson · 17 years ago
  66. 1831a57 Added test cases for the return-stack-address checker to test support by Ted Kremenek · 17 years ago
  67. 1c1700f Modified ArraySubscriptExpr to have accessors getLHS and getRHS in addition by Ted Kremenek · 17 years ago
  68. 1fadcd8 Fixed bug in VarDecl::hasAutoStorage: function parameters implicitly have by Ted Kremenek · 17 years ago
  69. 2f88b88 Added extra test case to check proper handling of archaic array indexing: 4[A] by Ted Kremenek · 17 years ago
  70. acdb932 Add preliminary support for converting struct types. by Anders Carlsson · 17 years ago
  71. 45925ab Added extra semantic checking to do basic detection of by Ted Kremenek · 17 years ago
  72. 3e9b43b Return true in case of error, which is what other functions do. by Anders Carlsson · 17 years ago
  73. e7e7aa2 Add initial support for constant CFStrings. by Anders Carlsson · 17 years ago
  74. 4462cb0 by Steve Naroff · 17 years ago
  75. 43a3098 Added a comment to ArraySubscriptExpr to note that the expressions like by Ted Kremenek · 17 years ago
  76. 5c41c21 Added the following utility methods to VarDecl that provide by Ted Kremenek · 17 years ago
  77. 235e1ad Removed dead variable "hadError" in ParseReturnStmt. by Ted Kremenek · 17 years ago
  78. 081ed87 Added support for additional format string checking for the printf by Ted Kremenek · 17 years ago
  79. 5ac50b5 Added documentation to StringLiteral noting that the strings returned by by Ted Kremenek · 17 years ago
  80. f45abe7 xfail this for now. by Chris Lattner · 17 years ago
  81. bdb8ffb start splitting out aggregate value computation from EmitExpr into EmitAggExpr. by Chris Lattner · 17 years ago
  82. 7eaddd7 make sure to add a newline at the end of the dump by Chris Lattner · 17 years ago
  83. 3059654 Added "id_idx" parameter to CheckPrintfArguments. This will be used by Ted Kremenek · 17 years ago
  84. 2d7e953 Moved id_asprintf before id_vsnprintf in the enum used for indexing by Ted Kremenek · 17 years ago
  85. 06f4e75 add support for a top-level __extension__ marker, implementing a todo. by Chris Lattner · 17 years ago
  86. 2e64c07 initial support for checking format strings, patch by Ted Kremenek: by Chris Lattner · 17 years ago
  87. 78ed840 New file, just a placeholder for now. by Chris Lattner · 17 years ago
  88. 4b6f475 Build ASTs before relexing the file. This avoids having comment finding mutate the by Chris Lattner · 17 years ago
  89. ecc4fa1 by Steve Naroff · 17 years ago
  90. b189fa2 fix this test to pass. by Chris Lattner · 17 years ago
  91. 4b49296 fix a codegen bug handling ocuvector element exprs. by Chris Lattner · 17 years ago
  92. d238888 make this harder by Chris Lattner · 17 years ago
  93. 5980204 implement initial codegen for aggregate return functions. This implements by Chris Lattner · 17 years ago
  94. 2a42017 Fix a bug handling function -> pointer decay and avoid emitting a noop bitcast. by Chris Lattner · 17 years ago
  95. 412a419 implement dumper support for declstmt's. The dumper is now "done". by Chris Lattner · 17 years ago
  96. b4ee7b3 implement dumper support for the rest of expressions. by Chris Lattner · 17 years ago
  97. ac485c1 move a switch to common code. by Chris Lattner · 17 years ago
  98. 538590e minor fixes by Chris Lattner · 17 years ago
  99. 9fb4024 dump strings with escapes and other stuff in them nicely. by Chris Lattner · 17 years ago
  100. b707a7a minor cleanups by Chris Lattner · 17 years ago