1. 675ac6f Added fixme. by Ted Kremenek · 17 years ago
  2. fe82a54 Hook up HTMLDiagnostics to use Chris's new syntax highlighting. --html-diags by Ted Kremenek · 17 years ago
  3. 31aeb1e In ExplodedGraphImpl::Trim, prioritize for paths that don't span loops by using by Ted Kremenek · 17 years ago
  4. 16d31b6 Take a stab at highlighting #defines and #includes. This doesn't work yet. by Chris Lattner · 17 years ago
  5. 3c664f6 Syntax highlight keywords. I assume someone else will pick less appaling colors. by Chris Lattner · 17 years ago
  6. 9de65d0 split syntax highlighting of macros from keywords and comments, by Chris Lattner · 17 years ago
  7. 21f72d6 Add a mode of hackily syntax highlighting comments. This has a number of by Chris Lattner · 17 years ago
  8. 5fdcc30 Add -o support for -emit-html, make it not produce a file on an error. by Chris Lattner · 17 years ago
  9. 33245d3 Remove "--html-test" driver option and its corresponding code; all of this by Ted Kremenek · 17 years ago
  10. 4cec419 Switch AddLineNumbers to hack on a rewritebuffer instead of on a by Chris Lattner · 17 years ago
  11. abe984e In html::EscapeText, instead of going through the rewriter with by Chris Lattner · 17 years ago
  12. 2287cee Remove uses of "Selector&" and "const Selector&", since Selector is just an by Ted Kremenek · 17 years ago
  13. 88d0575 Update CF reference count checker test case to illustrate the use of by Ted Kremenek · 17 years ago
  14. 1feab29 Implemented toll-free bridging support for CF Reference count checker. by Ted Kremenek · 17 years ago
  15. 204a65e make a method public. by Chris Lattner · 17 years ago
  16. 245af68 switch AddLineNumber to use a SmallString instead of sstream. This by Chris Lattner · 17 years ago
  17. f8dea31 speed up -emit-html in a release build by 6.5% by avoiding std::string. by Chris Lattner · 17 years ago
  18. 947fdb8 Simplify some code. by Ted Kremenek · 17 years ago
  19. 4b4738b Added initial boilerplate to support toll-free bridging in the ref-count checker. by Ted Kremenek · 17 years ago
  20. ca5f620 Added some comments to GRExprEngine. Reorder some of the method definitions by Ted Kremenek · 17 years ago
  21. 670b6e4 Revert my previous patch. by Ted Kremenek · 17 years ago
  22. ed4dfb9 Remove dispatch to "VisitParmVarDecl". by Ted Kremenek · 17 years ago
  23. da67f2f Change "VisitBlockVarDecl" to "VisitVarDecl". UninitializedValues now works by Ted Kremenek · 17 years ago
  24. 72a6ebc Remove FileVarDecl and BlockVarDecl. They are replaced by VarDecl::isBlockVarDecl() and VarDecl::isFileVarDecl(). by Steve Naroff · 17 years ago
  25. 71e55fc For HTML diagnostics, output more information about a bug report. by Ted Kremenek · 17 years ago
  26. 4de0c56 Added "summary table" to generated index.html page that allows one to by Ted Kremenek · 17 years ago
  27. caabaeb Added test case illustrating the use of '&'. by Ted Kremenek · 17 years ago
  28. 9ea943f Fix bug in terminator processing for uninitialized-values: simply ignore the terminator, don't reprocess it. by Ted Kremenek · 17 years ago
  29. 3b60f17 Fix a compiler error on MSVC (variable name 'E' clash). by Argiris Kirtzidis · 17 years ago
  30. a1411f6 finish commenting RewriteRope by Chris Lattner · 17 years ago
  31. ba6eb42 Improve dead store diagnostic. by Ted Kremenek · 17 years ago
  32. ec14906 Bug fix in VisitChildren: Only visit the last statement in a StmtExpr and the RHS of a comma expression, as the other Stmts will be visited elsewhere in a CFGBlock. by Ted Kremenek · 17 years ago
  33. a0aa0b1 Added initial support into the flow-sensitive dataflow solver to visit the Block-level expression by Ted Kremenek · 17 years ago
  34. 1dbfdae Bug fix in dead stores: don't always check the liveness of the first decl by Ted Kremenek · 17 years ago
  35. 9671513 ++/-- makes a variable live since it is used; thus the liveness state is by Ted Kremenek · 17 years ago
  36. c6d26e0 Handle "__private_extern__" storage class when printing FunctionDecls. by Ted Kremenek · 17 years ago
  37. 1174f0f Bug fix in LiveVariables: Operators ++/-- may kill a value, but the variable by Ted Kremenek · 17 years ago
  38. b0e1b77 Fix a corner case that ted hit in -emit-html, rdar://5863212 by Chris Lattner · 17 years ago
  39. 0ceb4be New AST representation for each objc2's property declaration. by Fariborz Jahanian · 17 years ago
  40. 3c7b9a0 Remove bogus token... by Steve Naroff · 17 years ago
  41. d3e357a simplify the implementation of the insert/split operation to return by Chris Lattner · 17 years ago
  42. ae4e9cd Rename a file and update the Xcode project. by Steve Naroff · 17 years ago
  43. 44e8122 Rename RewriteTest->RewriteObjC. by Steve Naroff · 17 years ago
  44. d7307b4 Add a bunch of comments, move RewriteRope::MakeRopeString out of line. by Chris Lattner · 17 years ago
  45. fe53a12 Fix comment. by Steve Naroff · 17 years ago
  46. 2450c26 Use isFromMainFile instead of comparing FileIDs directly. by Ted Kremenek · 17 years ago
  47. 265a3a0 Fix regression in Diagnostic that caused it to not register the number by Ted Kremenek · 17 years ago
  48. 8a11ed2 Use SourceManager::isFromMainFile() by Ted Kremenek · 17 years ago
  49. dce3d3e Convert over to new SourceManager::isFromMainFile() instead of doing direct by Ted Kremenek · 17 years ago
  50. e4a9de1 HTMLDiagnostics now uses the new "getCanonicalID()", "isFromMainFileID()" methods from by Ted Kremenek · 17 years ago
  51. 81019d7 Added "getCanonicalID()", "isFromSameFile", and "isFromMainFile" to compare by Ted Kremenek · 17 years ago
  52. 1d8ad38 fix more uninit ivars, who wrote this junk? :) by Chris Lattner · 17 years ago
  53. 4667579 Fix an assertion ted was hitting, due to an uninitialized variable. by Chris Lattner · 17 years ago
  54. 051fe9d Only increment the number of diagnostics when the DiagnosticClient used by Ted Kremenek · 17 years ago
  55. 517cb51 Added driver option "-checker-opt-analyze-headers" to force the static by Ted Kremenek · 17 years ago
  56. 0389e1d Don't flag dead stores that occur in macros. by Ted Kremenek · 17 years ago
  57. 05d5da8 Have BugReporter::EmitWarning use the PathDiagnosticClient if it is available. by Ted Kremenek · 17 years ago
  58. 6b0461f move a ton of code out of line, from RewriteRope.h -> RewriteRope.cpp by Chris Lattner · 17 years ago
  59. 92770f2 Bug fix in dead-store checker when walking the Decls in a DeclStmt: don't by Ted Kremenek · 17 years ago
  60. 73ba047 Treat calls to unresolved functions in the CF-ref count checker as calls by Ted Kremenek · 17 years ago
  61. b11f44e Updated test cases so that they do not emit warnings for dead stores. by Ted Kremenek · 17 years ago
  62. e3ef1c7 Hooked up the dead-store checker to the BugReporter interface. Now dead-store by Ted Kremenek · 17 years ago
  63. 01eb23a Added version of "getClient()" for class Diagnostic that returns a non-const by Ted Kremenek · 17 years ago
  64. 1050ba0 remove ifdefs by Chris Lattner · 17 years ago
  65. dcf0a0c Added test case to dead stores checker. by Ted Kremenek · 17 years ago
  66. 61a2078 Handle -D and -U options in order, so that they can cancel each other out when by Sam Bishop · 17 years ago
  67. ab428cf Change the RewriteRope::Chunks data structure from an std::list into by Chris Lattner · 17 years ago
  68. bccadaf Enable clang to codegen emmintrin.h until we have our own emmintrin.h by Nate Begeman · 17 years ago
  69. 937cac7 Fix typo by Nate Begeman · 17 years ago
  70. d691d75 Argiris Kirtzidis's fix for handling empty IdDeclInfo's in IdentifierResolver::AddDecl by Douglas Gregor · 17 years ago
  71. 696be93 Make Parser::getAccessSpecifierIfPresent const, since it does not modify the state by Douglas Gregor · 17 years ago
  72. e6369b0 Move IdDeclInfoMap class in an anonymous namespace. Suggestion by Chris Lattner. by Argiris Kirtzidis · 17 years ago
  73. ec93f44 This patch adds very basic support for parsing and type-checking class by Douglas Gregor · 17 years ago
  74. 1d66155 Introduce support for finding class and enum names via ordinary name lookup in C++ by Douglas Gregor · 17 years ago
  75. 514bf2f Fix PR2220, making diagnostics for unexpected tokens in pp expressions by Chris Lattner · 17 years ago
  76. ca2ba5f this started failing because a GEP was constant folded, by Chris Lattner · 17 years ago
  77. 10e7fb1 Test commit: fix a typo by Douglas Gregor · 17 years ago
  78. 2e78db3 This patch is just the easy part of the class names patch, which by Chris Lattner · 17 years ago
  79. 34e1388 Change the btree algorithm to split nodes bottom-up instead of top-down. by Chris Lattner · 17 years ago
  80. 80bd4f0 split node splitting from interior node restructuring. by Chris Lattner · 17 years ago
  81. 676bf21 update to follow mainline llvm API change. by Chris Lattner · 17 years ago
  82. 2ea14c5 Use static_cast<> instead of cast<> in Decl::Destroy(). Suggestion by Argiris by Sam Bishop · 17 years ago
  83. b1856db Default argument cleanups and minor improvements, patch by Doug Gregor! by Chris Lattner · 17 years ago
  84. 3120ee1 final cleanup, the code is now in a reviewable state. by Chris Lattner · 17 years ago
  85. 237f8e1 move the DeltaTree implementation out of line, remove debugging printfs etc. by Chris Lattner · 17 years ago
  86. 29e5f44 remove ifdefs by Chris Lattner · 17 years ago
  87. 12a785c Do an initial hack at replacing one of the incredibly inefficient by Chris Lattner · 17 years ago
  88. c31c905 Use std::list's push_back instead of resize to add an element. by Argiris Kirtzidis · 17 years ago
  89. 5c337fa don't diagnose empty source files, thanks Neil! by Chris Lattner · 17 years ago
  90. 6bfafc0 Fixed comments. by Argiris Kirtzidis · 17 years ago
  91. 951f25b Added PushOnScopeChains method to Sema, that adds a decl to both the IdResolver and the Scope. by Argiris Kirtzidis · 17 years ago
  92. e707172 AST generation for objc2's property declarations. by Fariborz Jahanian · 17 years ago
  93. ffefc35 Add some boilerplate to report memory leaks at the end of an analyzed function. by Ted Kremenek · 17 years ago
  94. 18ee8ff Added "EvalEndPath" to GRTransferFuncs: the default implementation does not by Ted Kremenek · 17 years ago
  95. db4412d Added "GREndPathNodeBuilder", a new node builder that will be used for by Ted Kremenek · 17 years ago
  96. e492420 Added FIXME by Ted Kremenek · 17 years ago
  97. 455dd86 Fix regression introduced by my last commit. by Ted Kremenek · 17 years ago
  98. d4244d4 Changed behavior of how we handle "NULL" summaries: just call by Ted Kremenek · 17 years ago
  99. 7c37174 Add class and super class location info to ObjCInterfaceDecl... by Steve Naroff · 17 years ago
  100. 99b0ecb Use RangedBugReport to report better ranges for reference count errors. by Ted Kremenek · 17 years ago