1. 7cabb92 Test. by Steve Naroff · 16 years ago
  2. 6104507 Added method "getSourceMgr" to class Rewriter. by Ted Kremenek · 16 years ago
  3. 12ff770 add 'clean' targets, make sure that 'make test' works after 'make clean' by Gabor Greif · 16 years ago
  4. 09a972c let the %t magic happen, thanks Chris! by Gabor Greif · 16 years ago
  5. e8a193c Switch over to the parallelized makefile, but keep old serial by Gabor Greif · 16 years ago
  6. 54fd181 move #include to the file that needs it. by Chris Lattner · 16 years ago
  7. e439fe0 Fix a typo by Nate Begeman · 16 years ago
  8. 3b8b4e3 Fix <rdar://problem/5716940> rewriter generates invalid C code when no selector found. by Steve Naroff · 16 years ago
  9. e0766ed Wrap up __NSConstantStringImpl (the replacement for __builtin___CFStringMakeConstantString). by Steve Naroff · 16 years ago
  10. 539269c Fix assertion. by Ted Kremenek · 16 years ago
  11. f1d623e Fix integer overflow bug when processing switch statements. by Ted Kremenek · 16 years ago
  12. 52b8d0e Properly hook up inline asm transfer function logic to the main GRExprEngine logic. by Ted Kremenek · 16 years ago
  13. e588cc6 Updated VS project files to reference all libraries in the "lib" subdirectory. by Ted Kremenek · 16 years ago
  14. 31803c3 Added initial transfer function support for inline asm. by Ted Kremenek · 16 years ago
  15. 8f9b504 Added "inputs" and "outputs" iterator (expression) for AsmStmt. by Ted Kremenek · 16 years ago
  16. f247a14 finishing touches: teminate the dots with a newline by Gabor Greif · 16 years ago
  17. 78a2a31 Check in a couple fixes for vector extensions. by Nate Begeman · 16 years ago
  18. 92e3ff9 Bug fix in CFG construction: VisitCompoundStmt should return the last created block. by Ted Kremenek · 16 years ago
  19. fb52466 Implemented verbose mode. by Gabor Greif · 16 years ago
  20. 5b77042 Simplify further by creating *.testresults files by Gabor Greif · 16 years ago
  21. c48e3eb Get rid of the creation of secondary makefile "Makefile.tests". by Gabor Greif · 16 years ago
  22. f445102 More review feedback implemented: by Gabor Greif · 16 years ago
  23. 4ca525f Actually expand the %t1 patterns (in RUN: lines) to a unique by Gabor Greif · 16 years ago
  24. c6668c0 Second round of review feedback. by Gabor Greif · 16 years ago
  25. 29ed685 eliminate the last signed element count. by Chris Lattner · 16 years ago
  26. 526bf91 clean up iteration over propertydecls. by Chris Lattner · 16 years ago
  27. 4485961 clean up property memory allocation to move it into the ast classes by Chris Lattner · 16 years ago
  28. cffe366 make property addition work list all other "add" methods. Do by Chris Lattner · 16 years ago
  29. 2d1c431 add the last two Create methods for decls, woo! by Chris Lattner · 16 years ago
  30. ec4979b Convert more counts to be zero based instead of -1 based, make them unsigned. by Chris Lattner · 16 years ago
  31. 1b6de33 add two more Create methods. by Chris Lattner · 16 years ago
  32. 321b5d1 simplify the way ObjCCategoryDecl's get their referenced protocols list by Chris Lattner · 16 years ago
  33. e29dc83 Add create methods for ObjCCategoryDecl, ObjCForwardProtocolDecl, ObjCClassDecl. by Chris Lattner · 16 years ago
  34. e2e6ab4 make some more 'counts' unsigned. by Chris Lattner · 16 years ago
  35. 243ddef make NumClassMethods unsigned in categories by Chris Lattner · 16 years ago
  36. 7afba9c minor cleanups, make getNumInstanceMethods always return unsigned. by Chris Lattner · 16 years ago
  37. c188185 fix a crasher where an invalid program that multiply defined by Chris Lattner · 16 years ago
  38. 180f7e2 Give ObjCProtocolDecl a Create method. by Chris Lattner · 16 years ago
  39. e3b4113 hoist a bunch of casting. by Chris Lattner · 16 years ago
  40. 0db541b Add create methods for ObjCIvarDecl and ObjCInterfaceDecl by Chris Lattner · 16 years ago
  41. 685d792 Make the parameter count of ObjCMethodDecl unsigned, you by Chris Lattner · 16 years ago
  42. f735583 remove some dead arguments to ObjCMethodDecl. by Chris Lattner · 16 years ago
  43. 114add6 Give ObjCMethodDecl a Create method. by Chris Lattner · 16 years ago
  44. 10318b8 Split objc decl implementation out into DeclObjC.cpp by Chris Lattner · 16 years ago
  45. 81db64a switch the rest of the C decl classes to do their by Chris Lattner · 16 years ago
  46. be1a7a0 Make a major restructuring of the clang tree: introduce a top-level by Chris Lattner · 16 years ago
  47. 9ea647e Make a ctor protected by Chris Lattner · 16 years ago
  48. 3538bfe Fixed 80 col. violations. by Ted Kremenek · 16 years ago
  49. 05724ad Disable creation of "ContentsOf" symbols. It was fundamentally broken on many by Ted Kremenek · 16 years ago
  50. 58114f0 move the ASTContext argument to be first in the argument list of by Chris Lattner · 16 years ago
  51. 4c7802b Switch over functiondecl. This makes it obvious that the ASTContext by Chris Lattner · 16 years ago
  52. 48d225c switch the VarDecl allocation model to go through ASTContext. by Chris Lattner · 16 years ago
  53. f3405c4 implement a bit of feedback: print dots by Gabor Greif · 16 years ago
  54. 38ad020 Added initialization to ErrorDiag to silence gcc's warning of the variable by Ted Kremenek · 16 years ago
  55. 82e8a19 Small bug fix in CFG construction: the active block for LabelStmts comes by Ted Kremenek · 16 years ago
  56. 5b70d06 First draft of a parallelized test methodology. Improvements soon. by Gabor Greif · 16 years ago
  57. e465048 start switching decls over to using an allocator controlled by ASTContext. by Chris Lattner · 16 years ago
  58. a8344c3 various minor cleanups. by Chris Lattner · 16 years ago
  59. a0a7c41 Handle StmtExprs whose last contained statement is not an expression. by Ted Kremenek · 16 years ago
  60. 8eac9c0 Compute alignment in bytes, not bits. by Ted Kremenek · 16 years ago
  61. c3b1283 Implement transfer function logic for alignof operator (types). by Ted Kremenek · 16 years ago
  62. 3c53607 Added transfer function support in GRExprEngine for __extension__. by Ted Kremenek · 16 years ago
  63. 64bce35 Link against the correct ObjC string class (__CFConstantStringClassReference) and fix length computation (removing a FIXME). by Steve Naroff · 16 years ago
  64. 47e7fa2 Remove ObjC rewriter dependency on GCC's __builtin___CFStringMakeConstantString. by Steve Naroff · 16 years ago
  65. 550025b "panic" has 5 letters, not 4. Bug pointed out by Nuno Lopes! by Ted Kremenek · 16 years ago
  66. 02b1ff7 Hack to hardwire in some panic functions that are not marked noreturn. by Ted Kremenek · 16 years ago
  67. 2f0c0e1 Emit warnings for undefined control-flow. by Ted Kremenek · 16 years ago
  68. ea58326 Correctly error on arrays with automatic storage full of objects with by Nate Begeman · 16 years ago
  69. 5d257d4 Path-sensitive analyses no longer take a FunctionDecl, but any Decl representing by Ted Kremenek · 16 years ago
  70. 753d259 add initial support for generating an llvm.globalctors list. Patch by David Chisnall by Chris Lattner · 16 years ago
  71. 2c77d85 Only compute targetinfo once and don't leak it. Patch by Sam Bishop! by Chris Lattner · 16 years ago
  72. 6582981 Make the preprocessor own its PPCallbacks, fixing a memory leak. by Chris Lattner · 16 years ago
  73. 0606819 ISO/IEC TR 18037 by Nate Begeman · 16 years ago
  74. a353fc2 Fix comment by Nate Begeman · 16 years ago
  75. f41ac5f The LiveVariables analysis no longer requires a FunctionDecl&; this allows it by Ted Kremenek · 16 years ago
  76. 1ede330 handle __extension__ properly at block scope. by Chris Lattner · 16 years ago
  77. daf1c31 instead of passing in null end location info, pass in the same as start. by Chris Lattner · 16 years ago
  78. a4ff427 improve DeclStmt to be able to store SourceRange info correctly. by Chris Lattner · 16 years ago
  79. 7113305 Add note about asm constraints. by Anders Carlsson · 16 years ago
  80. 4c69b3a Added bandaid support in CFG construction for ObjCForEachStmt and ObjCAtTryStmt: by Ted Kremenek · 16 years ago
  81. 5d93311 Two fixes to RewriteTest::RewriteObjCIvarRefExpr(): by Steve Naroff · 16 years ago
  82. d467651 Changed CallRetValSymbol to SymbolConjured to allow "conjured" symbols to be created for any expression, not just CallExprs. by Ted Kremenek · 16 years ago
  83. 4850dfe Minor aesthetic improvement (after I reviewed my last commit). by Steve Naroff · 16 years ago
  84. cbf88fe 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
  85. ce0767f Added generation of symbolic values for the return values of functions that have by Ted Kremenek · 16 years ago
  86. 1a53194 In GRSimpleVals, added the generation of symbolic values for the return values by Ted Kremenek · 16 years ago
  87. 8c83f08 Update to reflect changes in parameter attribute api. by Chris Lattner · 16 years ago
  88. 5ce4a24 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
  89. 83f04aa Improved ExplodedGraph::Trim to only show nodes reachable from a reverse BFS by Ted Kremenek · 16 years ago
  90. 6453aab -Add missing visitor for ObjCIvarRefExpr. by Steve Naroff · 16 years ago
  91. dd79d6f Since the rewriter now outputs C++, it no longer makes sense to pipe the output to clang. by Steve Naroff · 16 years ago
  92. 173b3cb Fixed regression in SymbolManager introduced in r48272. by Ted Kremenek · 16 years ago
  93. ce3ed1e Prototype (pre-alpha) implementation of CFRef checker. by Ted Kremenek · 16 years ago
  94. 2742943 Remove more dependencies on C "flexible array member" idiom (when generating meta-data). by Steve Naroff · 16 years ago
  95. 60dfb6b 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
  96. 3b11f7a Added pretty-printing support for checker-specific state for the CFRefCount checker. by Ted Kremenek · 16 years ago
  97. 9f59792 Expanded graph-visualization to include optional pretty-printing of checker-specific state. by Ted Kremenek · 16 years ago
  98. d365649 Expanded ValueState pretty-printing to use an optional "CheckerStatePrinter" by Ted Kremenek · 16 years ago
  99. e44a830 Expanded graph visualization interface to include specifying a range of by Ted Kremenek · 16 years ago
  100. dee066b Make "super" rewrite for class methods C++ friendly (follow-up from last commit). by Steve Naroff · 16 years ago