1. 4c13b7a Only generate code for static functions and global variables that are actually used. by Nate Begeman · 17 years ago
  2. 7414dc0 html::EscapeText (using the Rewriter) now replaces tabs by default. by Ted Kremenek · 17 years ago
  3. aa39197 simplify ownership of the predefines buffer. by Chris Lattner · 17 years ago
  4. 213541a OCUVector -> ExtVector, shorthand for extended vector, per feedback from Chris. by Nate Begeman · 17 years ago
  5. 95cc1ba Generalize caching mechanism for bugs reports. Now individual BugTypes by Ted Kremenek · 17 years ago
  6. b053396 Fixed more caching bugs related to the one fixed in r49914. Silence by Ted Kremenek · 17 years ago
  7. eaa9eda Fixed elusive caching bug that led to false positives. by Ted Kremenek · 17 years ago
  8. cb61292 Added "GetErrorNodes()" to BugType so that -trim-egraph can recognize errors by Ted Kremenek · 17 years ago
  9. 550a0f9 Added "EvalAssume" virtual method to GRTransferFuncs; this is for evaluating by Ted Kremenek · 17 years ago
  10. c8b1227 Allow targets to override double size, alignment, and semantics, and tie this by Nate Begeman · 17 years ago
  11. fb58609 Provide a version of html::HighlightMacros that takes a Preprocessor&. by Ted Kremenek · 17 years ago
  12. 866b5c0 Several Expr subclasses did not mark "getSourceRange()" virtual. Fixed. by Ted Kremenek · 17 years ago
  13. 8dd5646 BugReport::VisitNode now takes BugReporter& instead of ASTContext&. by Ted Kremenek · 17 years ago
  14. 75840e1 Simplified internal logic of BugReporter, consolidating EmitWarning and by Ted Kremenek · 17 years ago
  15. f624f81 Initial work for property implementation declarations. by Fariborz Jahanian · 17 years ago
  16. bd7efa8 Modified BugReport::getEndPath() to handle the case where end path is at by Ted Kremenek · 17 years ago
  17. 339b9c2 class Preprocessor: Now owns the "predefines" char*; it deletes [] it in its dstor. by Ted Kremenek · 17 years ago
  18. ec6c574 Added "PreprocessorFactory", an interface for lazily creating Preprocessor objects on-demand. by Ted Kremenek · 17 years ago
  19. 3dd4ba4 Added property decl support for protocols. by Fariborz Jahanian · 17 years ago
  20. ef17782 Addition of TranslationUnitDecl to the AST: by Argyrios Kyrtzidis · 17 years ago
  21. 9402b57 Make HighlightRange correctly handle multi-line ranges. This causes us to by Chris Lattner · 17 years ago
  22. 6b31e8e Handle ReturnStmts by dispatching to "EvalReturn" in the transfer function object. by Ted Kremenek · 17 years ago
  23. 5ef3e2c add a new HighlightRange API, it doesn't handle multiline ranges by Chris Lattner · 17 years ago
  24. 61d4615 New AST class for property implementation declarations. by Fariborz Jahanian · 17 years ago
  25. 411cdee Added CFGBlock::getTerminatorCondition() to get the Expr* of the condition a block's terminator. by Ted Kremenek · 17 years ago
  26. 7e7e387 This patch adds support for declaraing properties in categories, by Fariborz Jahanian · 17 years ago
  27. 678c635 reenable highlighting of (the first line of) comments by Chris Lattner · 17 years ago
  28. 1392261 Small tweaks to EvalStore: pass an "RVal" instead of "LVal" for the TargetLV to by Ted Kremenek · 17 years ago
  29. ec96a2d Hook up "EvalStore" from GRTransferFuncs to GRExprEngine. by Ted Kremenek · 17 years ago
  30. e38718e Take first step to migrating handling of "stores" to values from GRExprEngine by Ted Kremenek · 17 years ago
  31. c54d50a split syntax highlighting of macros from keywords and comments, by Chris Lattner · 17 years ago
  32. 3245a0a Add a mode of hackily syntax highlighting comments. This has a number of by Chris Lattner · 17 years ago
  33. 7352714 In html::EscapeText, instead of going through the rewriter with by Chris Lattner · 17 years ago
  34. 97b7f26 Remove uses of "Selector&" and "const Selector&", since Selector is just an by Ted Kremenek · 17 years ago
  35. 6837e38 make a method public. by Chris Lattner · 17 years ago
  36. b9bc3ec speed up -emit-html in a release build by 6.5% by avoiding std::string. by Chris Lattner · 17 years ago
  37. e695e1c Added some comments to GRExprEngine. Reorder some of the method definitions by Ted Kremenek · 17 years ago
  38. d4bad1e Revert my previous patch. by Ted Kremenek · 17 years ago
  39. 12ce650 Remove dispatch to "VisitParmVarDecl". by Ted Kremenek · 17 years ago
  40. 248a753 Remove FileVarDecl and BlockVarDecl. They are replaced by VarDecl::isBlockVarDecl() and VarDecl::isFileVarDecl(). by Steve Naroff · 17 years ago
  41. 7deed0c Fix bug in terminator processing for uninitialized-values: simply ignore the terminator, don't reprocess it. by Ted Kremenek · 17 years ago
  42. 42e7fe5 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
  43. 3762208 Added initial support into the flow-sensitive dataflow solver to visit the Block-level expression by Ted Kremenek · 17 years ago
  44. 1de1e74 New AST representation for each objc2's property declaration. by Fariborz Jahanian · 17 years ago
  45. 5618d88 Add a bunch of comments, move RewriteRope::MakeRopeString out of line. by Chris Lattner · 17 years ago
  46. 9fd87b1 Added "getCanonicalID()", "isFromSameFile", and "isFromMainFile" to compare by Ted Kremenek · 17 years ago
  47. 5fd3e26 move a ton of code out of line, from RewriteRope.h -> RewriteRope.cpp by Chris Lattner · 17 years ago
  48. d2f642b Hooked up the dead-store checker to the BugReporter interface. Now dead-store by Ted Kremenek · 17 years ago
  49. 2bf78fb Added version of "getClient()" for class Diagnostic that returns a non-const by Ted Kremenek · 17 years ago
  50. e5cd857 remove ifdefs by Chris Lattner · 17 years ago
  51. febe719 Change the RewriteRope::Chunks data structure from an std::list into by Chris Lattner · 17 years ago
  52. 1b7f898 Make Parser::getAccessSpecifierIfPresent const, since it does not modify the state by Douglas Gregor · 17 years ago
  53. e37ac4f This patch adds very basic support for parsing and type-checking class by Douglas Gregor · 17 years ago
  54. 2ce52f3 Introduce support for finding class and enum names via ordinary name lookup in C++ by Douglas Gregor · 17 years ago
  55. d98d975 Fix PR2220, making diagnostics for unexpected tokens in pp expressions by Chris Lattner · 17 years ago
  56. be432b3 Test commit: fix a typo by Douglas Gregor · 17 years ago
  57. 99dc914 This patch is just the easy part of the class names patch, which by Chris Lattner · 17 years ago
  58. 9e97955 Default argument cleanups and minor improvements, patch by Doug Gregor! by Chris Lattner · 17 years ago
  59. 8100d74 move the DeltaTree implementation out of line, remove debugging printfs etc. by Chris Lattner · 17 years ago
  60. 7725788 remove ifdefs by Chris Lattner · 17 years ago
  61. 5c9dc5a Do an initial hack at replacing one of the incredibly inefficient by Chris Lattner · 17 years ago
  62. dae1a1a AST generation for objc2's property declarations. by Fariborz Jahanian · 17 years ago
  63. 52f3795 Added "EvalEndPath" to GRTransferFuncs: the default implementation does not by Ted Kremenek · 17 years ago
  64. 11062b1 Added "GREndPathNodeBuilder", a new node builder that will be used for by Ted Kremenek · 17 years ago
  65. d6a07aa Add class and super class location info to ObjCInterfaceDecl... by Steve Naroff · 17 years ago
  66. 5e55cda Added "RangedBugReport". by Ted Kremenek · 17 years ago
  67. 1bb1963 Invoke destructors in Decl::Destroy(). by Sam Bishop · 17 years ago
  68. 45bc03f Minor changes per Chris L's review. by Fariborz Jahanian · 17 years ago
  69. bb45c51 Stub out and start using a Decl::Destroy() method. by Sam Bishop · 17 years ago
  70. 1d78cc4 Patch for: by Fariborz Jahanian · 17 years ago
  71. 3ea0b6a Fix some bonehead bugs in summary generation in CFRefCount. by Ted Kremenek · 17 years ago
  72. d71ed26 Refactored all logic to run the GRSimpleVals and CFRef checker into a common by Ted Kremenek · 17 years ago
  73. ebe457c reduce the amount of 'C++ magic' this code depends on :) by Chris Lattner · 17 years ago
  74. 4d35dac Fixed regressions in error reporting due to copy-paste errors (using the "begin" by Ted Kremenek · 17 years ago
  75. e135942 refactor Parser::ParseStructDeclaration to return a vector of uninterpreted by Chris Lattner · 17 years ago
  76. 97d0205 Fix typo. by Eric Christopher · 17 years ago
  77. def026a typedef void T; void f(T); by Chris Lattner · 17 years ago
  78. 8123a95 Several improvements from Doug Gregor related to default by Chris Lattner · 17 years ago
  79. 50a6d0c Major refactoring/cleanup of GRExprEngine, ExplodedGraph, and BugReporter. by Ted Kremenek · 17 years ago
  80. 6837faa Added new "BugReporterHelper" class which is used by BugReporter to emit by Ted Kremenek · 17 years ago
  81. fa5be36 Don't expand tabs in EscapeText, but rather expand them when writing out by Ted Kremenek · 17 years ago
  82. 25ba026 Make SourceManager::getFullFilePos() public. by Ted Kremenek · 17 years ago
  83. 670aa9d Changed the Decl::Kind enum of the ObjCPropertyDecl class, so that it follows by Sam Bishop · 17 years ago
  84. 0442108 Add support for C++ default arguments, and rework Parse-Sema by Chris Lattner · 17 years ago
  85. e2563ca Pass the ASTContext object around when deserializing Decl and Stmt objects, so by Sam Bishop · 17 years ago
  86. acc9972 simplify array compatibility testing. by Chris Lattner · 17 years ago
  87. 78eca28 simplify compatibility testing for tag types. by Chris Lattner · 17 years ago
  88. 1ee0700 Fix a really bad bug where type uniquing would merge a<x> with b<x> as the same by Chris Lattner · 17 years ago
  89. 3cc4c0c Remove a dead check for compatible builtin types by Chris Lattner · 17 years ago
  90. 6e26f5d futher simplify compatibility testing of objc interface types. by Chris Lattner · 17 years ago
  91. f62f9cd simplify vector type compatibility testing. by Chris Lattner · 17 years ago
  92. eca7be6 move ObjCQualifiedIdTypesAreCompatible out of ASTContext into Sema. by Chris Lattner · 17 years ago
  93. 372bed0 improve comments. by Chris Lattner · 17 years ago
  94. 28c0b7d add an example. by Chris Lattner · 17 years ago
  95. 065f0d7 eliminate getReferencedProtocols from by Chris Lattner · 17 years ago
  96. 3b27546 make QualifiedInterfaceTypesAreCompatible a static function by Chris Lattner · 17 years ago
  97. 53efc25 This predicate is just a generic "issuperclass" predicate, move it to the by Chris Lattner · 17 years ago
  98. c4e4059 Simplify some objc compatibility testing, make interfaceTypesAreCompatible by Chris Lattner · 17 years ago
  99. 368eefa clean up some logic in objc type handling. Specifically, make it so that by Chris Lattner · 17 years ago
  100. 7cfeb08 simplify max type computation by making it return an integer (like by Chris Lattner · 17 years ago