From: Valeriy Savchenko Date: Wed, 13 May 2020 10:02:00 +0000 (+0300) Subject: [analyzer] Fix crash for non-pointers annotated as nonnull X-Git-Tag: llvmorg-12-init~6204 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=855f0ce79bf3bdf34a390d1f5fd842a6aa79d5ef;p=platform%2Fupstream%2Fllvm.git [analyzer] Fix crash for non-pointers annotated as nonnull Summary: Nonnull attribute can be applied to non-pointers. This caused assertion failures in NonNullParamChecker when we tried to *assume* such parameters to be non-zero. rdar://problem/63150074 Differential Revision: https://reviews.llvm.org/D79843 --- diff --git a/clang/lib/StaticAnalyzer/Checkers/NonNullParamChecker.cpp b/clang/lib/StaticAnalyzer/Checkers/NonNullParamChecker.cpp index c3c6a69..534b5d6 100644 --- a/clang/lib/StaticAnalyzer/Checkers/NonNullParamChecker.cpp +++ b/clang/lib/StaticAnalyzer/Checkers/NonNullParamChecker.cpp @@ -254,12 +254,18 @@ void NonNullParamChecker::checkBeginFunction(CheckerContext &Context) const { if (!ParameterNonNullMarks.test(Parameter->getFunctionScopeIndex())) continue; + // 2. Check that parameter is a pointer. + // Nonnull attribute can be applied to non-pointers (by default + // __attribute__(nonnull) implies "all parameters"). + if (!Parameter->getType()->isPointerType()) + continue; + Loc ParameterLoc = State->getLValue(Parameter, LocContext); // We never consider top-level function parameters undefined. auto StoredVal = State->getSVal(ParameterLoc).castAs(); - // 2. Assume that it is indeed non-null + // 3. Assume that it is indeed non-null if (ProgramStateRef NewState = State->assume(StoredVal, true)) { State = NewState; } diff --git a/clang/test/Analysis/UserNullabilityAnnotations.m b/clang/test/Analysis/UserNullabilityAnnotations.m index e3c2b6f..5e708c7 100644 --- a/clang/test/Analysis/UserNullabilityAnnotations.m +++ b/clang/test/Analysis/UserNullabilityAnnotations.m @@ -1,4 +1,5 @@ // RUN: %clang_analyze_cc1 -verify -Wno-objc-root-class %s \ +// RUN: -Wno-tautological-pointer-compare \ // RUN: -analyzer-checker=core \ // RUN: -analyzer-checker=nullability \ // RUN: -analyzer-checker=debug.ExprInspection @@ -34,3 +35,15 @@ void f1(NestedNonnullMember *Root) { clang_analyzer_eval(Grandson->Value != 0); // expected-warning{{TRUE}} clang_analyzer_eval(foo()->Child->Value != 0); // expected-warning{{TRUE}} } + +// Check that we correctly process situations when non-pointer parameters +// get nonnul attributes. +// Original problem: rdar://problem/63150074 +typedef struct { + long a; +} B; +__attribute__((nonnull)) void c(B x, int *y); + +void c(B x, int *y) { + clang_analyzer_eval(y != 0); // expected-warning{{TRUE}} +}