aboutsummaryrefslogtreecommitdiff
path: root/Driver/ASTStreamers.cpp
AgeCommit message (Expand)Author
2007-10-07Rename ASTStreamers.* -> ASTConsumers.*Chris Lattner
2007-10-06add a missing ;Chris Lattner
2007-10-06stub out some printing of objc decls.Chris Lattner
2007-10-01Migrated LiveVariables and UninitializedVariables to now use theTed Kremenek
2007-09-25Further refactored DataflowSolver. Now most code for the solver is sharedTed Kremenek
2007-09-19Added support to clang driver to view ASTs using GraphViz. ThisTed Kremenek
2007-09-17UninitialuzedValues now only tracks BlockVarDecls; obviating false positives ...Ted Kremenek
2007-09-17Removed check for NULL CFG. Bad CFGs will fire an assertion failureTed Kremenek
2007-09-16switch the llvm emitter to ASTConsumer interface.Chris Lattner
2007-09-15switch the various CFG-based stuff over to using ASTConsumer interface,Chris Lattner
2007-09-15convert ast printer and dumper ocver to ASTConsumer interface,Chris Lattner
2007-09-15add a new ASTConsumer consumer to simplify stuff in the driver.Chris Lattner
2007-09-13Phase 2 of making the Decl class more lightweight...Steve Naroff
2007-09-13make the sourcemgr available through ASTContext.Chris Lattner
2007-09-10Some small tweaks to the recent Objc support...Steve Naroff
2007-09-10Fixed LiveVariables to no longer track the liveness of function pointersTed Kremenek
2007-09-07-check-dead-stores now no longer prints out the function declarationsTed Kremenek
2007-09-07Refactored driver options that perform analyses/work over CFGs to useTed Kremenek
2007-09-06Added "Dead Stores", a flow-sensitive checker that checks for storesTed Kremenek
2007-09-06LiveVariables:Ted Kremenek
2007-09-06Added an early implementation of Live-Variables analysis built onTed Kremenek
2007-08-30Allow a SourceManager to optionally be passed into Stmt::dumpChris Lattner
2007-08-29Added GraphTraits to source-level CFGs (CFG and CFGBlock) to allowTed Kremenek
2007-08-26Make parse-ast-print print the storage class and inline Chris Lattner
2007-08-23Renamed "CFG::BuildCFG" to "CFG::buildCFG" to have more consistent capitaliza...Ted Kremenek
2007-08-21Added CFG infrastructure (CFG.cpp and CFG.h) for clang ASTs.Ted Kremenek
2007-08-08add a new AST dumper interface (E->dump()). This dumps outChris Lattner
2007-07-11Stage two of getting CFE top correct.Reid Spencer