This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository clang.
from b55c8505d6 [analyzer] TrackConstraintBRVisitor: Do not track unknown values new eefe06446c [analyzer] CastValueChecker: Store the dynamic types and casts
The 1 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: include/clang/AST/Type.h | 3 + .../Core/PathSensitive/CheckerContext.h | 15 +- .../Core/PathSensitive/DynamicCastInfo.h | 55 ++++ .../Core/PathSensitive/DynamicType.h | 73 ++++++ .../Core/PathSensitive/DynamicTypeInfo.h | 46 ++-- .../Core/PathSensitive/DynamicTypeMap.h | 63 ----- lib/StaticAnalyzer/Checkers/CastValueChecker.cpp | 276 +++++++++++++-------- .../Checkers/DynamicTypePropagation.cpp | 15 +- lib/StaticAnalyzer/Core/CMakeLists.txt | 2 +- lib/StaticAnalyzer/Core/DynamicType.cpp | 223 +++++++++++++++++ lib/StaticAnalyzer/Core/DynamicTypeMap.cpp | 97 -------- lib/StaticAnalyzer/Core/ProgramState.cpp | 2 +- test/Analysis/Inputs/llvm.h | 19 ++ test/Analysis/cast-value-logic.cpp | 128 ++++++++++ test/Analysis/cast-value-notes.cpp | 144 +++++++++++ test/Analysis/cast-value-state-dump.cpp | 47 ++++ test/Analysis/cast-value.cpp | 239 ------------------ test/Analysis/dump_egraph.cpp | 3 +- test/Analysis/expr-inspection.c | 1 + 19 files changed, 914 insertions(+), 537 deletions(-) create mode 100644 include/clang/StaticAnalyzer/Core/PathSensitive/DynamicCastInfo.h create mode 100644 include/clang/StaticAnalyzer/Core/PathSensitive/DynamicType.h delete mode 100644 include/clang/StaticAnalyzer/Core/PathSensitive/DynamicTypeMap.h create mode 100644 lib/StaticAnalyzer/Core/DynamicType.cpp delete mode 100644 lib/StaticAnalyzer/Core/DynamicTypeMap.cpp create mode 100644 test/Analysis/Inputs/llvm.h create mode 100644 test/Analysis/cast-value-logic.cpp create mode 100644 test/Analysis/cast-value-notes.cpp create mode 100644 test/Analysis/cast-value-state-dump.cpp delete mode 100644 test/Analysis/cast-value.cpp