
The checks for the 'z' and 't' format specifiers added in the original PR #143653 had some issues and were overly strict, causing some build failures and were consequently reverted at4c85bf2fe8
. In the latest commit27c58629ec
, I relaxed the checks for the 'z' and 't' format specifiers, so warnings are now only issued when they are used with mismatched types. The original intent of these checks was to diagnose code that assumes the underlying type of `size_t` is `unsigned` or `unsigned long`, for example: ```c printf("%zu", 1ul); // Not portable, but not an error when size_t is unsigned long ``` However, it produced a significant number of false positives. This was partly because Clang does not treat the `typedef` `size_t` and `__size_t` as having a common "sugar" type, and partly because a large amount of existing code either assumes `unsigned` (or `unsigned long`) is `size_t`, or they define the equivalent of size_t in their own way (such as sanitizer_internal_defs.h).2e67dcfdcd/compiler-rt/lib/sanitizer_common/sanitizer_internal_defs.h (L203)
62 lines
2.2 KiB
C
62 lines
2.2 KiB
C
// Check the case when only the StreamChecker is enabled.
|
|
// RUN: %clang_analyze_cc1 %s \
|
|
// RUN: -analyzer-checker=core,unix.Stream \
|
|
// RUN: -analyzer-config unix.Stream:Pedantic=true \
|
|
// RUN: -analyzer-checker=debug.ExprInspection \
|
|
// RUN: -analyzer-config eagerly-assume=false \
|
|
// RUN: -triple x86_64-unknown-linux \
|
|
// RUN: -verify=stream
|
|
|
|
// Check the case when only the StdLibraryFunctionsChecker is enabled.
|
|
// RUN: %clang_analyze_cc1 %s \
|
|
// RUN: -analyzer-checker=unix.StdCLibraryFunctions \
|
|
// RUN: -analyzer-config unix.StdCLibraryFunctions:DisplayLoadedSummaries=true \
|
|
// RUN: -analyzer-checker=debug.ExprInspection \
|
|
// RUN: -analyzer-config eagerly-assume=false \
|
|
// RUN: -triple x86_64-unknown-linux \
|
|
// RUN: -verify=stdLib 2>&1 | FileCheck %s
|
|
|
|
// Check the case when both the StreamChecker and the
|
|
// StdLibraryFunctionsChecker are enabled.
|
|
// RUN: %clang_analyze_cc1 %s \
|
|
// RUN: -analyzer-checker=core,unix.Stream \
|
|
// RUN: -analyzer-config unix.Stream:Pedantic=true \
|
|
// RUN: -analyzer-checker=unix.StdCLibraryFunctions \
|
|
// RUN: -analyzer-config unix.StdCLibraryFunctions:DisplayLoadedSummaries=true \
|
|
// RUN: -analyzer-checker=debug.ExprInspection \
|
|
// RUN: -analyzer-config eagerly-assume=false \
|
|
// RUN: -triple x86_64-unknown-linux \
|
|
// RUN: -verify=both 2>&1 | FileCheck %s
|
|
|
|
// Verify that the summaries are loaded when the StdLibraryFunctionsChecker is
|
|
// enabled.
|
|
// CHECK: Loaded summary for: int getchar(void)
|
|
// CHECK-NEXT: Loaded summary for: __size_t fread(void *restrict, size_t, size_t, FILE *restrict)
|
|
// CHECK-NEXT: Loaded summary for: __size_t fwrite(const void *restrict, size_t, size_t, FILE *restrict)
|
|
|
|
#include "Inputs/system-header-simulator.h"
|
|
|
|
void clang_analyzer_eval(int);
|
|
|
|
void test_fread_fwrite(FILE *fp, int *buf) {
|
|
fp = fopen("foo", "r");
|
|
if (!fp)
|
|
return;
|
|
size_t x = fwrite(buf, sizeof(int), 10, fp);
|
|
|
|
clang_analyzer_eval(x <= 10); // \
|
|
// stream-warning{{TRUE}} \
|
|
// stdLib-warning{{TRUE}} \
|
|
// both-warning{{TRUE}}
|
|
|
|
clang_analyzer_eval(x == 10); // \
|
|
// stream-warning{{TRUE}} \
|
|
// stream-warning{{FALSE}} \
|
|
// stdLib-warning{{TRUE}} \
|
|
// stdLib-warning{{FALSE}} \
|
|
// both-warning{{TRUE}} \
|
|
// both-warning{{FALSE}}
|
|
|
|
fclose(fp);
|
|
}
|