Reading from a garbage pointer should be modeled as garbage,
and performTrivialCopy should be able to deal with any SVal input.
Patch by Ilya Palachev!
Differential Revision: https://reviews.llvm.org/D25727
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@285640
91177308-0d34-0410-b5e6-
96231b3b80d8
if (Optional<Loc> L = V.getAs<Loc>())
V = Pred->getState()->getSVal(*L);
else
- assert(V.isUnknown());
+ assert(V.isUnknownOrUndef());
const Expr *CallExpr = Call.getOriginExpr();
evalBind(Dst, CallExpr, Pred, ThisVal, V, true);
--- /dev/null
+// RUN: %clang_cc1 -analyze -analyzer-checker=core.builtin -verify -DCHECK_FOR_CRASH %s
+// RUN: %clang_cc1 -analyze -analyzer-checker=core -verify %s
+
+#ifdef CHECK_FOR_CRASH
+// expected-no-diagnostics
+#endif
+
+namespace PerformTrivialCopyForUndefs {
+struct A {
+ int x;
+};
+
+struct B {
+ A a;
+};
+
+struct C {
+ B b;
+};
+
+void foo() {
+ C c1;
+ C *c2;
+#ifdef CHECK_FOR_CRASH
+ // If the value of variable is not defined and checkers that check undefined
+ // values are not enabled, performTrivialCopy should be able to handle the
+ // case with undefined values, too.
+ c1.b.a = c2->b.a;
+#else
+ c1.b.a = c2->b.a; // expected-warning{{Function call argument is an uninitialized value}}
+#endif
+}
+}
+