| Commit message (Expand) | Author | Age | Files | Lines |
... | |
* | Migrated driver logic for running the CF retain/release checker over to the n... | Ted Kremenek | 2008-07-02 | 1 | -52/+0 |
* | Added AnalysisConsumer, a meta-level ASTConsumer class to drive various | Ted Kremenek | 2008-07-02 | 1 | -52/+0 |
* | Implement printing for ObjCClassDecl's, patch by Jean-Daniel Dupas! | Chris Lattner | 2008-06-21 | 1 | -2/+9 |
* | Updated call to dead stores to use proper arguments. | Ted Kremenek | 2008-06-20 | 1 | -1/+3 |
* | Get -serialize working again, plus a bit of minor cleanup. | Eli Friedman | 2008-06-09 | 1 | -21/+10 |
* | Moved LangOptions from TranslationUnit to ASTContext. This induced a variety... | Ted Kremenek | 2008-06-04 | 1 | -13/+8 |
* | Added "InitializeTU" to ASTConsumer. This is used by Sema::ParseAST to pass a | Ted Kremenek | 2008-05-31 | 1 | -3/+2 |
* | Fix crash with -serialize (reported to cfe-dev). The issue was | Eli Friedman | 2008-05-30 | 1 | -0/+1 |
* | Make sure method definitions get output with -ast-dump. | Steve Naroff | 2008-05-23 | 1 | -0/+5 |
* | This patch introduces declaration of getter methods for ObjC2's | Fariborz Jahanian | 2008-05-07 | 1 | -4/+4 |
* | Print ObjC methods of ObjC classes. | Fariborz Jahanian | 2008-05-06 | 1 | -0/+8 |
* | Patch to refactor setter/getter names of property attributes into Selector | Fariborz Jahanian | 2008-05-06 | 1 | -2/+2 |
* | percolate @optional/@required protocols down to ASTs for | Fariborz Jahanian | 2008-05-05 | 1 | -1/+5 |
* | When running the reference count checker twice (GC and non-GC mode), only emit | Ted Kremenek | 2008-05-02 | 1 | -4/+4 |
* | added preliminary diagnostics in scan-build results to denote whether | Ted Kremenek | 2008-04-30 | 1 | -4/+4 |
* | Provide the option to run the CF-retain checker in GC enabled mode. | Ted Kremenek | 2008-04-29 | 1 | -23/+48 |
* | TranslationUnit now owns IdentifierTable, TargetInfo, and Selectors objects | Ted Kremenek | 2008-04-23 | 1 | -7/+15 |
* | Patch to build AST for property implementation declarations and | Fariborz Jahanian | 2008-04-23 | 1 | -2/+24 |
* | class Preprocessor: Now owns the "predefines" char*; it deletes [] it in its ... | Ted Kremenek | 2008-04-17 | 1 | -7/+14 |
* | Added property decl support for protocols. | Fariborz Jahanian | 2008-04-17 | 1 | -119/+71 |
* | This patch adds support for declaraing properties in categories, | Fariborz Jahanian | 2008-04-16 | 1 | -0/+63 |
* | Hook up HTMLDiagnostics to use Chris's new syntax highlighting. --html-diags | Ted Kremenek | 2008-04-16 | 1 | -15/+20 |
* | Handle "__private_extern__" storage class when printing FunctionDecls. | Ted Kremenek | 2008-04-15 | 1 | -0/+1 |
* | New AST representation for each objc2's property declaration. | Fariborz Jahanian | 2008-04-14 | 1 | -9/+2 |
* | Use SourceManager::isFromMainFile() | Ted Kremenek | 2008-04-14 | 1 | -1/+1 |
* | Added driver option "-checker-opt-analyze-headers" to force the static | Ted Kremenek | 2008-04-14 | 1 | -12/+17 |
* | AST generation for objc2's property declarations. | Fariborz Jahanian | 2008-04-11 | 1 | -1/+1 |
* | Fix some bonehead bugs in summary generation in CFRefCount. | Ted Kremenek | 2008-04-10 | 1 | -1/+2 |
* | Refactored all logic to run the GRSimpleVals and CFRef checker into a common | Ted Kremenek | 2008-04-10 | 1 | -83/+105 |
* | silence some warnings when assertions are disabled. | Chris Lattner | 2008-04-08 | 1 | -2/+4 |
* | Better handling for tabs with message bubbles. | Ted Kremenek | 2008-03-31 | 1 | -5/+7 |
* | Inlined clang/Analysis/Analyses/GRSimpleVals.h into LocalCheckers.h and removed | Ted Kremenek | 2008-03-31 | 1 | -13/+28 |
* | Disable timing diagnostics for GRSimpleVals. | Ted Kremenek | 2008-03-31 | 1 | -0/+4 |
* | Don't emit any timings for GRSimple if the CFG is not going to be built. | Ted Kremenek | 2008-03-27 | 1 | -0/+3 |
* | clean up iteration over propertydecls. | Chris Lattner | 2008-03-17 | 1 | -6/+7 |
* | clean up property memory allocation to move it into the ast classes | Chris Lattner | 2008-03-17 | 1 | -2/+2 |
* | Convert more counts to be zero based instead of -1 based, make them unsigned. | Chris Lattner | 2008-03-16 | 1 | -1/+1 |
* | Make the parameter count of ObjCMethodDecl unsigned, you | Chris Lattner | 2008-03-16 | 1 | -1/+1 |
* | Emit warnings for undefined control-flow. | Ted Kremenek | 2008-03-14 | 1 | -4/+7 |
* | Path-sensitive analyses no longer take a FunctionDecl, but any Decl representing | Ted Kremenek | 2008-03-14 | 1 | -30/+68 |
* | The LiveVariables analysis no longer requires a FunctionDecl&; this allows it | Ted Kremenek | 2008-03-13 | 1 | -2/+2 |
* | Added bandaid support in CFG construction for ObjCForEachStmt and ObjCAtTryStmt: | Ted Kremenek | 2008-03-13 | 1 | -2/+7 |
* | Added --trim-path-graph to the driver to trim paths from the ExplodedGraph | Ted Kremenek | 2008-03-07 | 1 | -6/+7 |
* | Added boilerplate to execute the CF reference count checker (which isn't yet ... | Ted Kremenek | 2008-03-06 | 1 | -0/+37 |
* | convert tabs to spaces, patch by Mike Stump! | Chris Lattner | 2008-02-25 | 1 | -5/+5 |
* | Modified clang driver option -dump-live-variables to (optionally) use the | Ted Kremenek | 2008-02-22 | 1 | -2/+4 |
* | clang driver options --dump-cfg and --view-cfg now (optionally) use the | Ted Kremenek | 2008-02-22 | 1 | -8/+15 |
* | When running the GRSimpleVals analysis, skip functions that do not | Ted Kremenek | 2008-02-22 | 1 | -2/+4 |
* | For now, --grsimple skips analyzing functions in header files. | Ted Kremenek | 2008-02-19 | 1 | -0/+4 |
* | --grsimple now reports the number of nodes in the ExplodedGraph for | Ted Kremenek | 2008-02-19 | 1 | -2/+2 |