1. 92d56b7 debian ia32 testing by Andrew Lenharth · 17 years ago
  2. c68ab77 Teach the rewriter how to respect the -o option. by Chris Lattner · 17 years ago
  3. 0f1b67b Added HTML highlighting for ranges. by Ted Kremenek · 17 years ago
  4. e8e019e Misc. cleanups to HTML printing: make code rendered using tables; add by Ted Kremenek · 17 years ago
  5. 13e479b Initial experimentation with adding boxed "annotations" to HTMLized source. by Ted Kremenek · 17 years ago
  6. ad0a203 Moved generation of html header/footer with builtin CSS to the rewriter library. by Ted Kremenek · 17 years ago
  7. d6c1360 More cleanups to the HTML rewriter (with line formatting), with better by Ted Kremenek · 17 years ago
  8. f830997 More cleanups to HTML rewriter API: remove the InsertTag method; was too complicated by Ted Kremenek · 17 years ago
  9. 1b3188c More HTML rewriter cleanups. Preliminary CSS support in code pretty-printing. by Ted Kremenek · 17 years ago
  10. b485cd1 Some cleanups to the HTMLRewrite API. Added support for printing out line by Ted Kremenek · 17 years ago
  11. 5e0020e Added HTML pretty-printer. by Ted Kremenek · 17 years ago
  12. 6a34083 Added the beginning of a set of rewriter functions for pretty-printing source by Ted Kremenek · 17 years ago
  13. 2679e48 Fix <rdar://problem/5716940> rewriter generates invalid C code when no selector found. by Steve Naroff · 17 years ago
  14. 2a22816 Wrap up __NSConstantStringImpl (the replacement for __builtin___CFStringMakeConstantString). by Steve Naroff · 17 years ago
  15. a567425 clean up iteration over propertydecls. by Chris Lattner · 17 years ago
  16. f4af515 clean up property memory allocation to move it into the ast classes by Chris Lattner · 17 years ago
  17. 55d13b4 make property addition work list all other "add" methods. Do by Chris Lattner · 17 years ago
  18. f3a7af9 Convert more counts to be zero based instead of -1 based, make them unsigned. by Chris Lattner · 17 years ago
  19. c858105 minor cleanups, make getNumInstanceMethods always return unsigned. by Chris Lattner · 17 years ago
  20. 58cce3b Make the parameter count of ObjCMethodDecl unsigned, you by Chris Lattner · 17 years ago
  21. 8e25d86 switch the rest of the C decl classes to do their by Chris Lattner · 17 years ago
  22. c63e660 move the ASTContext argument to be first in the argument list of by Chris Lattner · 17 years ago
  23. a98e58d Switch over functiondecl. This makes it obvious that the ASTContext by Chris Lattner · 17 years ago
  24. 9e151e1 switch the VarDecl allocation model to go through ASTContext. by Chris Lattner · 17 years ago
  25. 6c2b6eb start switching decls over to using an allocator controlled by ASTContext. by Chris Lattner · 17 years ago
  26. 3652c2d Link against the correct ObjC string class (__CFConstantStringClassReference) and fix length computation (removing a FIXME). by Steve Naroff · 17 years ago
  27. d82a9ab Remove ObjC rewriter dependency on GCC's __builtin___CFStringMakeConstantString. by Steve Naroff · 17 years ago
  28. 1b9df4c Emit warnings for undefined control-flow. by Ted Kremenek · 17 years ago
  29. 63bbe53 Path-sensitive analyses no longer take a FunctionDecl, but any Decl representing by Ted Kremenek · 17 years ago
  30. 1121519 Only compute targetinfo once and don't leak it. Patch by Sam Bishop! by Chris Lattner · 17 years ago
  31. 7cb1593 The LiveVariables analysis no longer requires a FunctionDecl&; this allows it by Ted Kremenek · 17 years ago
  32. 4102af9 Added bandaid support in CFG construction for ObjCForEachStmt and ObjCAtTryStmt: by Ted Kremenek · 17 years ago
  33. 5518e7c Two fixes to RewriteTest::RewriteObjCIvarRefExpr(): by Steve Naroff · 17 years ago
  34. 819173c Minor aesthetic improvement (after I reviewed my last commit). by Steve Naroff · 17 years ago
  35. 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 · 17 years ago
  36. 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 · 17 years ago
  37. 3c64d9e -Add missing visitor for ObjCIvarRefExpr. by Steve Naroff · 17 years ago
  38. 8eb4a5e Remove more dependencies on C "flexible array member" idiom (when generating meta-data). by Steve Naroff · 17 years ago
  39. 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 · 17 years ago
  40. 23f4127 Make "super" rewrite for class methods C++ friendly (follow-up from last commit). by Steve Naroff · 17 years ago
  41. c0a123c Make "super" rewrite C++ friendly (since it doesn't support Compound Literals). by Steve Naroff · 17 years ago
  42. 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 · 17 years ago
  43. ba9ac4e Missed a couple "_IMPL" suffixes. by Steve Naroff · 17 years ago
  44. 61ed9ca Fix dangling pointer and give the implementation struct for a class a unique name. by Steve Naroff · 17 years ago
  45. 4f943c2 Pass LangOptions to RewriteTest(). by Steve Naroff · 17 years ago
  46. 87cf5ac Add some missing #includes for GCC mainline, patch by Shantonu Sen! by Chris Lattner · 17 years ago
  47. f3dabbd Fix a ted-o by Chris Lattner · 17 years ago
  48. 6fd9fa1 simplify triple processing code now that there can be only one arch specified. by Chris Lattner · 17 years ago
  49. ffe0f43 Added --trim-path-graph to the driver to trim paths from the ExplodedGraph by Ted Kremenek · 17 years ago
  50. 2fff37e Added boilerplate to execute the CF reference count checker (which isn't yet implemented). by Ted Kremenek · 17 years ago
  51. 98be494 remove the source location arguments to various target query methods. by Chris Lattner · 17 years ago
  52. 42e6737 Remove the first layer of support for "portability" warnings. This is by Chris Lattner · 17 years ago
  53. 985e182 avoid a warning. by Chris Lattner · 17 years ago
  54. dcaa096 Find clang headers in the clang headers dir, search it before by Chris Lattner · 17 years ago
  55. 5f9eae5 Add support for the CPATH, C_INCLUDE_PATH, CPLUS_INCLUDE_PATH, by Chris Lattner · 17 years ago
  56. 4df85f5 fix an interaction between -isystem . and isysroot. by Chris Lattner · 17 years ago
  57. c81c814 convert tabs to spaces, patch by Mike Stump! by Chris Lattner · 17 years ago
  58. 3426b9b enable digraphs for C94, thanks to Neil for pointing this out. by Chris Lattner · 17 years ago
  59. bfc10c9 Modified clang driver option -dump-live-variables to (optionally) use the by Ted Kremenek · 17 years ago
  60. 5f39c2d clang driver options --dump-cfg and --view-cfg now (optionally) use the by Ted Kremenek · 17 years ago
  61. 71ac9c4 When running the GRSimpleVals analysis, skip functions that do not by Ted Kremenek · 17 years ago
  62. b9c31f0 For now, --grsimple skips analyzing functions in header files. by Ted Kremenek · 17 years ago
  63. 9dca062 --grsimple now reports the number of nodes in the ExplodedGraph for by Ted Kremenek · 17 years ago
  64. cb33093 Running -grsimple now emits diagnostics about the time spent analyzing each function. Will by Ted Kremenek · 17 years ago
  65. 7df3d71 A couple of msvc compile fixes from the ml; I haven't tested with msvc, by Eli Friedman · 17 years ago
  66. a674349 Set Ubuntu 7.10 c++ include path. by Lauro Ramos Venancio · 17 years ago
  67. d55fe52 Added --grsimple-view option to clang driver; this is the same as by Ted Kremenek · 17 years ago
  68. e01c987 Renamed GRConstants => GRSimpleVals. by Ted Kremenek · 17 years ago
  69. e7a3730 by Steve Naroff · 17 years ago
  70. 58de026 by Steve Naroff · 17 years ago
  71. efe7f36 by Steve Naroff · 17 years ago
  72. dfab6cb Put back the top-level asm code; all tests pass now. by Anders Carlsson · 17 years ago
  73. 3f9424f Back out 46855 for now, it causes test failures on Darwin. by Anders Carlsson · 17 years ago
  74. 61900f0 Handle top-level asm declarations. by Anders Carlsson · 17 years ago
  75. 19227e3 Added proof-of-concept NULL pointer diagnostics to GRConstants. by Ted Kremenek · 17 years ago
  76. d62701b by Steve Naroff · 17 years ago
  77. 5101907 Make sure to propagate qualifiers through the member operator. by Eli Friedman · 17 years ago
  78. 8ee3c03 move the codegen ASTConsumer out of the driver into libcodegen, by Chris Lattner · 17 years ago
  79. e66b65c pull .ll and .bc writing out of the ASTConsumer destructors into some top by Chris Lattner · 17 years ago
  80. e91c134 rename ASTSTreamer.{h|cpp} -> ParseAST.{h|cpp} by Chris Lattner · 17 years ago
  81. d86e6bc rewrite some of the type refinement code to eliminate dangling pointers by Chris Lattner · 17 years ago
  82. 7097d91 Fix PR1966 by ignoring non-error diagnostics from system headers even if they are by Chris Lattner · 17 years ago
  83. be4b333 by Steve Naroff · 17 years ago
  84. 5fd69c3 by Steve Naroff · 17 years ago
  85. e12e692 by Steve Naroff · 17 years ago
  86. aadaf78 add some helper methods for removing and replacing text, this makes the by Chris Lattner · 17 years ago
  87. f3dd57e Add a new InsertText method that does the check to see if the insertion was valid. This by Chris Lattner · 17 years ago
  88. 9e13c2e move a large method out of line by Chris Lattner · 17 years ago
  89. dcbc5b0 Make rewriter::inserttext return a bool to indicate if it failed. by Chris Lattner · 17 years ago
  90. 338d1e2 Fix a rewriter crash when the whole body of a foreach is itself by Chris Lattner · 17 years ago
  91. f69cc5d by Steve Naroff · 17 years ago
  92. a0f5579 Rewriting of @synchronized. This has one FIXME in it. But this should allow @sychronized to be rewritten. by Fariborz Jahanian · 17 years ago
  93. bffaa83 Modified LiveVariables to perform all of its base initialization in the ctor, by Ted Kremenek · 17 years ago
  94. cb48b9c Driver now passes the top-level FunctionDecl* to GRConstants. by Ted Kremenek · 17 years ago
  95. 0113c9d by Steve Naroff · 17 years ago
  96. e988bc2 Make -o work with -E, patch contributed by Shantonu Sen! by Chris Lattner · 17 years ago
  97. 0cbc215 Fix a bug recovering from broken code with a goto that Eli reported. by Chris Lattner · 17 years ago
  98. 874d63f Added passing "ASTContext" to both GREngine and GRConstants. by Ted Kremenek · 17 years ago
  99. 7da8d94 Fixed a nasty bug which took a while to come up with a test case, by Fariborz Jahanian · 17 years ago
  100. 116a4b1 add support for -Wundef. by Chris Lattner · 17 years ago