[all-commits] [llvm/llvm-project] 7c9abb: Reapply [analyzer] Simplify SVal for simple NonLoc...
Ding Fei via All-commits
all-commits at lists.llvm.org
Fri Sep 15 06:08:38 PDT 2023
Branch: refs/heads/main
Home: https://github.com/llvm/llvm-project
Commit: 7c9abbd8a41e85a7e82a454c62138ea72f981597
https://github.com/llvm/llvm-project/commit/7c9abbd8a41e85a7e82a454c62138ea72f981597
Author: dingfei <fding at feysh.com>
Date: 2023-09-15 (Fri, 15 Sep 2023)
Changed paths:
M clang/lib/StaticAnalyzer/Core/ExprEngineC.cpp
M clang/test/Analysis/symbol-simplification-nonloc-loc.cpp
Log Message:
-----------
Reapply [analyzer] Simplify SVal for simple NonLoc->Loc casts
Reapply after fixing the test by enabling the `debug.ExprInspection` checker.
-----
NonLoc symbolic SVal to Loc casts are not supported except for
nonloc::ConcreteInt.
This change simplifies the source SVals so that the more casts can
go through nonloc::ConcreteInt->loc::ConcreteInt path. For example:
void test_simplified_before_cast_add(long long t1) {
long long t2 = t1 + 3;
if (!t2) {
int *p = (int *) t2;
clang_analyzer_eval(p == 0); // expected-warning{{TRUE}}
}
}
If simplified, 't2' is 0, resulting 'p' is nullptr, otherwise 'p'
is unknown.
Fixes #62232
More information about the All-commits
mailing list