index
:
bcm5719-llvm
meklort-10.0.0
meklort-10.0.1
ortega-7.0.1
Project Ortega BCM5719 LLVM
Raptor Computing Systems
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
clang
/
lib
/
StaticAnalyzer
/
Core
/
ExprEngine.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
[Analyser] Remove unnecessary recursive visits for ExprWithCleanups and
Erik Verbruggen
2012-03-14
1
-24
/
+15
*
Remove BlockDeclRefExpr and introduce a bit on DeclRefExpr to
John McCall
2012-03-10
1
-8
/
+0
*
[analyzer] fix regression in analyzer of NOT actually aborting on Stmts it do...
Ted Kremenek
2012-03-10
1
-4
/
+16
*
[analyzer] Add support for NoRedundancy inlining mode.
Anna Zaks
2012-03-09
1
-2
/
+3
*
AST representation for user-defined literals, plus just enough of semantic
Richard Smith
2012-03-07
1
-1
/
+2
*
Add static analyzer support for new NSArray/NSDictionary/NSNumber literals.
Ted Kremenek
2012-03-06
1
-0
/
+36
*
Remove a recursive visitation in ExprEngine that is no longer needed because ...
Erik Verbruggen
2012-03-04
1
-53
/
+15
*
Teach the analyzer to just ignore CXXBindTemporaryExpr. There's nothing spec...
Ted Kremenek
2012-03-01
1
-1
/
+1
*
[analyzer] Stats: Add the stats about remove dead bindings, correct the
Anna Zaks
2012-02-28
1
-0
/
+11
*
[analyzer] Don't generate an explicit ExplodedNode for StringLiterals; have t...
Ted Kremenek
2012-02-27
1
-9
/
+2
*
[analyzer] Run remove dead bindings before each call.
Anna Zaks
2012-02-24
1
-1
/
+5
*
Implement a new type trait __is_trivially_constructible(T, Args...)
Douglas Gregor
2012-02-24
1
-0
/
+1
*
Adopt ExprEngine and checkers to ObjC property refactoring. Everything was w...
Ted Kremenek
2012-02-18
1
-8
/
+26
*
Add checker visitation hooks in ExprEngine::Visit() for common no-op expressi...
Ted Kremenek
2012-02-16
1
-2
/
+7
*
Revert "Move ExplodedNode reclaimation out of ExprEngine and into CoreEngine....
Ted Kremenek
2012-02-16
1
-1
/
+4
*
Move ExplodedNode reclaimation out of ExprEngine and into CoreEngine. Also h...
Ted Kremenek
2012-02-16
1
-4
/
+1
*
[analyzer] Make Malloc Checker optimistic in presence of inlining.
Anna Zaks
2012-02-14
1
-2
/
+3
*
Introduce basic ASTs for lambda expressions. This covers:
Douglas Gregor
2012-02-07
1
-0
/
+1
*
Reapply r149311 which I reverted by mistake.
Argyrios Kyrtzidis
2012-01-31
1
-6
/
+1
*
Revert r149311 which failed to compile.
Argyrios Kyrtzidis
2012-01-31
1
-1
/
+6
*
Convert ProgramStateRef to a smart pointer for managing the reference counts ...
Ted Kremenek
2012-01-31
1
-6
/
+1
*
Change references to 'const ProgramState *' to typedef 'ProgramStateRef'.
Ted Kremenek
2012-01-26
1
-42
/
+42
*
More dead code removal (using -Wunreachable-code)
David Blaikie
2012-01-20
1
-3
/
+0
*
Remove '#if 0' from ExprEngine::InlineCall(), and start fresh by wiring up in...
Ted Kremenek
2012-01-11
1
-77
/
+0
*
[analyzer] Remove CallEnterNodeBuilder and simplify ExprEngine::processCallEn...
Ted Kremenek
2012-01-07
1
-1
/
+2
*
[analyzer] Make the entries in 'Environment' context-sensitive by making entr...
Ted Kremenek
2012-01-06
1
-39
/
+65
*
[analyzer] Be less pessimistic about invalidation of global variables
Anna Zaks
2012-01-04
1
-22
/
+0
*
[analyzer] Unify SymbolVal and SymExprVal under a single SymbolVal
Anna Zaks
2011-12-05
1
-1
/
+2
*
When analyzing a C++ method (without a specific caller), assume 'this' is non...
Ted Kremenek
2011-12-01
1
-17
/
+34
*
[static analyzer] be more specific when running removeDeadBindings. Instead ...
Ted Kremenek
2011-11-11
1
-1
/
+1
*
[static analyzer]: only call RemoveDeadBindings() when analyzing non-Expr stm...
Ted Kremenek
2011-11-10
1
-1
/
+24
*
Change the AST representation of operations on Objective-C
John McCall
2011-11-06
1
-0
/
+15
*
[analyzer] Make sink attribute part of the node profile.
Anna Zaks
2011-11-01
1
-1
/
+1
*
[analyzer] Make sure the child builder use temporary destination sets
Anna Zaks
2011-11-01
1
-4
/
+6
*
[analyzer] Move enqueueEndOfFunction into CoreEngine.
Anna Zaks
2011-10-27
1
-30
/
+1
*
[analyzer] Make CoreEngine responsible for enqueueing Stmt Nodes.
Anna Zaks
2011-10-27
1
-61
/
+11
*
[analyzer] GenericNodeBuilder -> NodeBuilder.
Anna Zaks
2011-10-26
1
-11
/
+4
*
[analyzer] Remove unused headers.
Anna Zaks
2011-10-25
1
-1
/
+0
*
[analyzer] Make branch for condition callback use CheckerContext
Anna Zaks
2011-10-25
1
-8
/
+13
*
[analyze] Convert EndOfPath callback to use CheckerContext
Anna Zaks
2011-10-25
1
-3
/
+34
*
Implement support for dependent Microsoft __if_exists/__if_not_exists
Douglas Gregor
2011-10-25
1
-0
/
+1
*
[analyzer] Node builders cleanup + comments
Anna Zaks
2011-10-24
1
-13
/
+13
*
[analyzer] Completely remove the global Builder object.
Anna Zaks
2011-10-24
1
-81
/
+53
*
[analyzer] Remove more dependencies from global Builder
Anna Zaks
2011-10-24
1
-18
/
+9
*
[analyzer] Convert ExprEngine::visit() to use short lived builders.
Anna Zaks
2011-10-24
1
-93
/
+212
*
[analyzer] Convert VisitDeclStmt to use local node builder.
Anna Zaks
2011-10-24
1
-1
/
+1
*
[analyzer] Convert more functions (ex:evalBind()) to iterative builders
Anna Zaks
2011-10-24
1
-2
/
+8
*
[analyzer] Convert VisitUnaryOperator to use short lived Node builders
Anna Zaks
2011-10-24
1
-2
/
+6
*
[analyzer] Use a temporary builder in CheckerContext.
Anna Zaks
2011-10-24
1
-0
/
+3
*
[analyzer] Pass external Dst set to NodeBuilder
Anna Zaks
2011-10-24
1
-12
/
+7
[next]