1. 0f23303 Actually expand the %t1 patterns (in RUN: lines) to a unique by Gabor Greif · 16 years ago
  2. 5ca1b5a Second round of review feedback. by Gabor Greif · 16 years ago
  3. b5feb35 eliminate the last signed element count. by Chris Lattner · 16 years ago
  4. a567425 clean up iteration over propertydecls. by Chris Lattner · 16 years ago
  5. f4af515 clean up property memory allocation to move it into the ast classes by Chris Lattner · 16 years ago
  6. 55d13b4 make property addition work list all other "add" methods. Do by Chris Lattner · 16 years ago
  7. f8d17a5 add the last two Create methods for decls, woo! by Chris Lattner · 16 years ago
  8. f3a7af9 Convert more counts to be zero based instead of -1 based, make them unsigned. by Chris Lattner · 16 years ago
  9. 75c9cae add two more Create methods. by Chris Lattner · 16 years ago
  10. 68c82cf simplify the way ObjCCategoryDecl's get their referenced protocols list by Chris Lattner · 16 years ago
  11. 61f9d41 Add create methods for ObjCCategoryDecl, ObjCForwardProtocolDecl, ObjCClassDecl. by Chris Lattner · 16 years ago
  12. 62db2f4 make some more 'counts' unsigned. by Chris Lattner · 16 years ago
  13. a906135 make NumClassMethods unsigned in categories by Chris Lattner · 16 years ago
  14. c858105 minor cleanups, make getNumInstanceMethods always return unsigned. by Chris Lattner · 16 years ago
  15. 439e71f fix a crasher where an invalid program that multiply defined by Chris Lattner · 16 years ago
  16. cca59d7 Give ObjCProtocolDecl a Create method. by Chris Lattner · 16 years ago
  17. f962808 hoist a bunch of casting. by Chris Lattner · 16 years ago
  18. 0e77ba0 Add create methods for ObjCIvarDecl and ObjCInterfaceDecl by Chris Lattner · 16 years ago
  19. 58cce3b Make the parameter count of ObjCMethodDecl unsigned, you by Chris Lattner · 16 years ago
  20. b06fa3b remove some dead arguments to ObjCMethodDecl. by Chris Lattner · 16 years ago
  21. 6c4ae5d Give ObjCMethodDecl a Create method. by Chris Lattner · 16 years ago
  22. 1e03a56 Split objc decl implementation out into DeclObjC.cpp by Chris Lattner · 16 years ago
  23. 8e25d86 switch the rest of the C decl classes to do their by Chris Lattner · 16 years ago
  24. bda0b62 Make a major restructuring of the clang tree: introduce a top-level by Chris Lattner · 16 years ago
  25. fbdeba1 Make a ctor protected by Chris Lattner · 16 years ago
  26. 4454006 Fixed 80 col. violations. by Ted Kremenek · 16 years ago
  27. 8b65de4 Disable creation of "ContentsOf" symbols. It was fundamentally broken on many by Ted Kremenek · 16 years ago
  28. c63e660 move the ASTContext argument to be first in the argument list of by Chris Lattner · 16 years ago
  29. a98e58d Switch over functiondecl. This makes it obvious that the ASTContext by Chris Lattner · 16 years ago
  30. 9e151e1 switch the VarDecl allocation model to go through ASTContext. by Chris Lattner · 16 years ago
  31. 8fb64e8 implement a bit of feedback: print dots by Gabor Greif · 16 years ago
  32. d9d1cbf Added initialization to ErrorDiag to silence gcc's warning of the variable by Ted Kremenek · 16 years ago
  33. 2677ea8 Small bug fix in CFG construction: the active block for LabelStmts comes by Ted Kremenek · 16 years ago
  34. 021e970 First draft of a parallelized test methodology. Improvements soon. by Gabor Greif · 16 years ago
  35. 6c2b6eb start switching decls over to using an allocator controlled by ASTContext. by Chris Lattner · 16 years ago
  36. d3b9065 various minor cleanups. by Chris Lattner · 16 years ago
  37. 3b4a8ef Handle StmtExprs whose last contained statement is not an expression. by Ted Kremenek · 16 years ago
  38. 897781a Compute alignment in bytes, not bits. by Ted Kremenek · 16 years ago
  39. 87e8034 Implement transfer function logic for alignof operator (types). by Ted Kremenek · 16 years ago
  40. 5139c78 Added transfer function support in GRExprEngine for __extension__. by Ted Kremenek · 16 years ago
  41. 3652c2d Link against the correct ObjC string class (__CFConstantStringClassReference) and fix length computation (removing a FIXME). by Steve Naroff · 16 years ago
  42. d82a9ab Remove ObjC rewriter dependency on GCC's __builtin___CFStringMakeConstantString. by Steve Naroff · 16 years ago
  43. 76fdbde "panic" has 5 letters, not 4. Bug pointed out by Nuno Lopes! by Ted Kremenek · 16 years ago
  44. 636e6ba Hack to hardwire in some panic functions that are not marked noreturn. by Ted Kremenek · 16 years ago
  45. 1b9df4c Emit warnings for undefined control-flow. by Ted Kremenek · 16 years ago
  46. c8e89a8 Correctly error on arrays with automatic storage full of objects with by Nate Begeman · 16 years ago
  47. 63bbe53 Path-sensitive analyses no longer take a FunctionDecl, but any Decl representing by Ted Kremenek · 16 years ago
  48. 6d39760 add initial support for generating an llvm.globalctors list. Patch by David Chisnall by Chris Lattner · 16 years ago
  49. 1121519 Only compute targetinfo once and don't leak it. Patch by Sam Bishop! by Chris Lattner · 16 years ago
  50. eb50ed8 Make the preprocessor own its PPCallbacks, fixing a memory leak. by Chris Lattner · 16 years ago
  51. 5af27e0 ISO/IEC TR 18037 by Nate Begeman · 16 years ago
  52. 2b59a2c Fix comment by Nate Begeman · 16 years ago
  53. 7cb1593 The LiveVariables analysis no longer requires a FunctionDecl&; this allows it by Ted Kremenek · 16 years ago
  54. 043a0b5 handle __extension__ properly at block scope. by Chris Lattner · 16 years ago
  55. 691a38b instead of passing in null end location info, pass in the same as start. by Chris Lattner · 16 years ago
  56. 81c018d improve DeclStmt to be able to store SourceRange info correctly. by Chris Lattner · 16 years ago
  57. 3de54ff Add note about asm constraints. by Anders Carlsson · 16 years ago
  58. 4102af9 Added bandaid support in CFG construction for ObjCForEachStmt and ObjCAtTryStmt: by Ted Kremenek · 16 years ago
  59. 5518e7c Two fixes to RewriteTest::RewriteObjCIvarRefExpr(): by Steve Naroff · 16 years ago
  60. 361fa8e Changed CallRetValSymbol to SymbolConjured to allow "conjured" symbols to be created for any expression, not just CallExprs. by Ted Kremenek · 16 years ago
  61. 819173c Minor aesthetic improvement (after I reviewed my last commit). by Steve Naroff · 16 years ago
  62. 39bbd9f Avoid using the "unnamed struct field" extension (enabled with -fms-extensions). This feature/extension silently does the wrong thing in g++. As far as I can tell, g++ simply throws the field away entirely (note that it works fine with gcc). Since I am now always casting the object (for other reasons), accessing protected/public fields simply requires the cast refer to the defining class. This solution is simpler all around (thanks to Chris for suggesting it). by Steve Naroff · 16 years ago
  63. 199e1a0 Added generation of symbolic values for the return values of functions that have by Ted Kremenek · 16 years ago
  64. f923a91 In GRSimpleVals, added the generation of symbolic values for the return values by Ted Kremenek · 16 years ago
  65. e0e0c94 Update to reflect changes in parameter attribute api. by Chris Lattner · 16 years ago
  66. dbb6543 Use the "used" attribute. Without it, g++ removes all the meta-data:-( This doesn't happen when compiling straight C code. by Steve Naroff · 16 years ago
  67. 7ec07fd Improved ExplodedGraph::Trim to only show nodes reachable from a reverse BFS by Ted Kremenek · 16 years ago
  68. 3c64d9e -Add missing visitor for ObjCIvarRefExpr. by Steve Naroff · 16 years ago
  69. b1f4080 Since the rewriter now outputs C++, it no longer makes sense to pipe the output to clang. by Steve Naroff · 16 years ago
  70. a8b5364 Fixed regression in SymbolManager introduced in r48272. by Ted Kremenek · 16 years ago
  71. 00a3a5f Prototype (pre-alpha) implementation of CFRef checker. by Ted Kremenek · 16 years ago
  72. 8eb4a5e Remove more dependencies on C "flexible array member" idiom (when generating meta-data). by Steve Naroff · 16 years ago
  73. 05b8c78 Make ivar rewrite C++ friendly (since C++ forces a unified namespace for typedefs/structures). The previous version of the rewriter generated both a type def and structure def for each class (which doesn't fly in C++). by Steve Naroff · 16 years ago
  74. f394804 Added pretty-printing support for checker-specific state for the CFRefCount checker. by Ted Kremenek · 16 years ago
  75. 75da3e8 Expanded graph-visualization to include optional pretty-printing of checker-specific state. by Ted Kremenek · 16 years ago
  76. 461f977 Expanded ValueState pretty-printing to use an optional "CheckerStatePrinter" by Ted Kremenek · 16 years ago
  77. 493d7a2 Expanded graph visualization interface to include specifying a range of by Ted Kremenek · 16 years ago
  78. 23f4127 Make "super" rewrite for class methods C++ friendly (follow-up from last commit). by Steve Naroff · 16 years ago
  79. 73c750b Added bookkeeping of error nodes. by Ted Kremenek · 16 years ago
  80. 1ac08d6 Added main logic for typestate tracking for the CFRetain checker. by Ted Kremenek · 16 years ago
  81. c0a123c Make "super" rewrite C++ friendly (since it doesn't support Compound Literals). by Steve Naroff · 16 years ago
  82. 6b3a0f7 Added main skeleton for CFRetain transfer function logic. by Ted Kremenek · 16 years ago
  83. 946a693 Generate meta-data in a C++ compatible way (remove 2 dependencies on C "flexible array member" idiom and perform some extra casts). by Steve Naroff · 16 years ago
  84. ba9ac4e Missed a couple "_IMPL" suffixes. by Steve Naroff · 16 years ago
  85. 61ed9ca Fix dangling pointer and give the implementation struct for a class a unique name. by Steve Naroff · 16 years ago
  86. 456e79d Add support for the 'N' constraint. by Anders Carlsson · 16 years ago
  87. 4f943c2 Pass LangOptions to RewriteTest(). by Steve Naroff · 16 years ago
  88. 15bd799 rewriter tests are darwin specific, don't run them on other platforms. by Chris Lattner · 16 years ago
  89. 8ce68d2 Fix "error: explicit template specialization cannot have a storage class" by Chris Lattner · 16 years ago
  90. 87cf5ac Add some missing #includes for GCC mainline, patch by Shantonu Sen! by Chris Lattner · 16 years ago
  91. 3f91650 Add transfer function support for pointer arithmetic where the by Ted Kremenek · 16 years ago
  92. 5f9e24c add comments about some simple optimizations that may become by Chris Lattner · 16 years ago
  93. 6b88450 implement simple support for arbitrary token lookahead. Change the by Chris Lattner · 16 years ago
  94. 3bbad55 More edge-case handling with using liveness information to prune dead state values. by Ted Kremenek · 16 years ago
  95. 0d093d3 More cleanups with using the liveness analysis to removed dead symbols and by Ted Kremenek · 16 years ago
  96. 512c913 When processing the transfer function for a statement, evaluate by Ted Kremenek · 16 years ago
  97. daa497e Refactored guards for "GRExprEngine::RemoveDeadBindings" directly into the by Ted Kremenek · 16 years ago
  98. 3ce9214 Bug fix in the transfer function for compound assignments: if the value by Ted Kremenek · 16 years ago
  99. efdfa77 Handle the 'n' constraint by Anders Carlsson · 16 years ago
  100. f3dabbd Fix a ted-o by Chris Lattner · 16 years ago