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