]> granicus.if.org Git - clang/history - lib/Analysis/CFG.cpp
[CFG] Removed unused local variable.
[clang] / lib / Analysis / CFG.cpp
2012-01-31 Erik Verbruggen[CFG] Removed unused local variable.
2012-01-24 David BlaikieRevert various template unreachability code I committed...
2012-01-24 David BlaikieMore fixes/tests.
2012-01-24 David BlaikieSupport undefined dependent bases.
2012-01-20 David BlaikieMore dead code removal (using -Wunreachable-code)
2012-01-11 Zhongxing XuAdd elidable CXXConstructExpr as block-level expr....
2011-12-28 Zhongxing XuEnable the user to control whether CXXConstructExpr...
2011-12-22 Ted KremenekColorize and condense CFG pretty-printing.
2011-12-21 Ted KremenekImprove CFG pretty-printing for CXXConstructExprs.
2011-12-21 Ted KremenekImprove CFG pretty-printing of CastExprs.
2011-12-05 Anna Zaks[analyzer] Rely on LLVM Dominators in Clang dominator...
2011-11-15 Douglas GregorTeach the CFG builder how to properly destroy temporari...
2011-11-06 John McCallChange the AST representation of operations on Objective-C
2011-11-05 Ted KremenekPer discussion with John McCall, don't add OpaqueValueE...
2011-10-29 Richard SmithRename Expr::Evaluate to Expr::EvaluateAsRValue to...
2011-10-14 Richard SmithRefactor static analyzer to use simpler interface to...
2011-09-23 David BlaikieSwitch assert(0/false) llvm_unreachable.
2011-09-13 Chandler CarruthAdd a bit to the CFGBlock to track when it contains...
2011-09-13 Chandler CarruthConsolidate the logic for building a no-return CFG...
2011-09-13 Chandler CarruthEnhance the CFG construction to detect no-return destru...
2011-09-10 Chandler CarruthExtend the Stmt AST to make it easier to look through...
2011-08-23 Ted KremenekCFG: record set of C++ 'try' dispatch blocks, which...
2011-08-23 Ted KremenekConstify the result of CFGStmt::getStmt().
2011-08-23 Ted KremenekFix regression in -Wuninitialized involving VLAs. ...
2011-08-17 Chad RosierFix else style. No functionality change intended.
2011-08-17 Ted KremenekFix a handful of dead stores found by Clang's static...
2011-08-12 Ted KremenekCleanup various declarations of 'Stmt*' to be 'Stmt...
2011-08-12 Ted KremenekRevert "Fix crash in CFGBuilder involving implicit...
2011-08-12 Ted KremenekFix crash in CFGBuilder involving implicit destructor...
2011-08-06 Ted Kremenek[analyzer] Simplify logic for ExprEngine::VisitUnaryExp...
2011-07-23 Chris Lattnerremove unneeded llvm:: namespace qualifiers on some...
2011-07-19 Ted KremenekAdd hooks into the CFG builder to force that specific...
2011-06-21 Douglas GregorIntroduce a new AST node describing reference binding...
2011-06-10 Jordy Rose[analyzer] PR8962 again. Ban ParenExprs (and friends...
2011-05-24 Ted KremenekAdd explicit CFG support for ignoring static_asserts.
2011-05-13 Peter CollingbourneRefactoring of constant expression evaluator
2011-05-11 John McCallTeach CFG building how to deal with CXXMemberCallExprs...
2011-05-10 Ted KremenekElide __label__ declarations from the CFG. This resolv...
2011-04-27 Ted KremenekRemove unused method CFGBlock::hasBinaryBranchTerminator().
2011-04-18 Richard SmithFix PR9741. The implicit declarations created for range...
2011-04-15 Chris Lattnerfix a bunch of comment typos found by codespell. Patch by
2011-04-14 Richard SmithAdd support for C++0x's range-based for loops, as speci...
2011-04-14 Ted KremenekReturn the correct lastly populated block from CFGBuild...
2011-04-04 Ted KremenekFix PR 9626 (duplicated self-init warnings under -Wunin...
2011-04-04 Ted Kremenek-Wuninitialized: don't warn about uninitialized variabl...
2011-03-23 Ted KremenekFix CFG-construction bug when run from AnalysisBasedWar...
2011-03-16 Ted KremenekTeach CFGBuilder that the 'default' branch of a switch...
2011-03-13 Sebastian RedlInstead of storing an ASTContext* in FunctionProtoTypes...
2011-03-13 Ted KremenekFix CFG assertion failure reported in PR 9467. This...
2011-03-12 Sebastian RedlPropagate the new exception information to FunctionProt...
2011-03-11 Peter CollingbourneAdd support for the OpenCL vec_step operator, by genera...
2011-03-10 Ted KremenekWhen doing reachability analysis for warnings issued...
2011-03-10 Ted KremenekRequire AddStmtChoice::alwaysAdd() to take a CFGBuilder...
2011-03-10 Ted KremenekRemove unused 'AddStmtChoice' argument to CFGBuilder...
2011-03-10 Ted KremenekRework interaction between AnalysisContext and CFG...
2011-03-07 Ted KremenekFix null dereference in CFGBlock::FilterEdge that was...
2011-03-04 Ted KremenekCorrectly handle nested switch statements in CFGBuilder...
2011-03-03 Ted KremenekTeach CFGImplicitDtor::getDestructorDecl() about arrays...
2011-03-03 Ted KremenekTeach CFGImplicitDtor::getDestructorDecl() about refere...
2011-03-03 Matt Beaumont-GayLet's go with John and Ted's preferred fix.
2011-03-02 Matt Beaumont-GayKeep GCC from complaining about falling off the end...
2011-03-02 Ted KremenekIntroduce CFGImplicitDtor::isNoReturn() to query whethe...
2011-03-01 Ted KremenekTeach CFGBuilder to prune trivially unreachable case...
2011-03-01 Ted KremenekIn preparation for fixing PR 6884, rework CFGElement...
2011-02-28 Anders CarlssonGet rid of the areExceptionsEnabled() getter from LangO...
2011-02-24 Ted KremenekFix tiny error in CFG construction for BinaryConditiona...
2011-02-23 Ted KremenekTeach CFGBuilder about null pointer constants in condit...
2011-02-21 Ted KremenekFix a CFGBuilder bug exposed on convoluted control...
2011-02-20 Anders CarlssonAdd a LangOptions::areExceptionsEnabled and start using it.
2011-02-19 John McCallFix a -Wuninitialized warning; it's actually a false...
2011-02-17 John McCallChange the representation of GNU ?: expressions to...
2011-02-17 Chris LattnerStep #1/N of implementing support for __label__: split...
2011-02-15 Ted KremenekFix memory leak in CFGBuilder resulting from tracking...
2011-02-13 John McCallGive some convenient idiomatic accessors to Stmt::child...
2011-01-19 John McCallChange QualType::getTypePtr() to return a const pointer...
2011-01-08 Sean HuntRenamed CXXBaseOrMemberInitializer to CXXCtorInitialize...
2011-01-07 Ted KremenekFix crash in CFGBuilder on invalid code. We still...
2010-12-17 Ted KremenekRename several methods/functions in the analyzer
2010-12-16 Ted KremenekStart migration of static analyzer to using the
2010-12-06 John McCallRename CXXExprWithTemporaries -> ExprWithCleanups;...
2010-12-04 Francois PichetMore anonymous struct/union redesign. This one deals...
2010-12-04 John McCallAlthough we currently have explicit lvalue-to-rvalue...
2010-11-24 Zhongxing Xuprint asLValue attribute of CFGStmt.
2010-11-24 Zhanyong WanRefactor AddStmtChoice to make it easier to use; also...
2010-11-22 Zhanyong WanStylistic changes to CFG.cpp:
2010-11-22 Zhanyong WanFix PR8419. Reviewed by kremenek and xuzhongxing.
2010-11-15 Ted KremenekRemove invalid assertion from CFG builder. When buildi...
2010-11-14 Zhongxing XuRevert r118991.
2010-11-13 Zhongxing XuDo not add implicit dtors for CXXBindTemporaryExpr...
2010-11-03 Zhongxing XuDo not add elidable CXXConstructExpr as block-level...
2010-11-03 Marcin SwiderskiAdded generating destructors for temporary objects...
2010-11-01 Zhongxing XuExplicitly handle CXXBindTemporaryExpr, CXXFunctionalCa...
2010-11-01 Zhongxing XuMake all CXXConstructExpr's block-level expressions...
2010-10-29 Marcin SwiderskiAdded CFGTerminator class, that holds information about...
2010-10-27 Zhongxing XuIf visiting RHS causes us to finish 'Block', e.g. the...
2010-10-25 Marcin SwiderskiAdded generation of destructors for member constant...
2010-10-25 Marcin SwiderskiAdded generation of destructors for constant size arrays.
2010-10-24 Marcin Swiderski- Fixed subexpressions evaluation order for binary...
2010-10-05 Zhongxing Xu* Simplify code
2010-10-05 Marcin SwiderskiAdded support for base and member destructors in destru...
next