mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-26 22:56:05 +00:00

This caused a miscompile in Chrome (see crbug.com/908372) that's illustrated by this small reduction: static bool f(int *a, int *b) { return !__builtin_constant_p(b - a) || (!(b - a)); } int arr[] = {1,2,3}; bool g() { return f(arr, arr + 3); } $ clang -O2 -S -emit-llvm a.cc -o - g() should return true, but after r347417 it became false for some reason. This also reverts the follow-up commits. r347417: > Re-Reinstate 347294 with a fix for the failures. > > Don't try to emit a scalar expression for a non-scalar argument to > __builtin_constant_p(). > > Third time's a charm! r347446: > The result of is.constant() is unsigned. r347480: > A __builtin_constant_p() returns 0 with a function type. r347512: > isEvaluatable() implies a constant context. > > Assume that we're in a constant context if we're asking if the expression can > be compiled into a constant initializer. This fixes the issue where a > __builtin_constant_p() in a compound literal was diagnosed as not being > constant, even though it's always possible to convert the builtin into a > constant. r347531: > A "constexpr" is evaluated in a constant context. Make sure this is reflected > if a __builtin_constant_p() is a part of a constexpr. llvm-svn: 347656
84 lines
2.9 KiB
C++
84 lines
2.9 KiB
C++
// RUN: %clang_analyze_cc1 -triple x86_64-apple-darwin10 -analyzer-checker=core,debug.ExprInspection %s -std=c++11 -verify
|
|
|
|
void clang_analyzer_eval(bool);
|
|
void clang_analyzer_warnIfReached();
|
|
|
|
void testAddressof(int x) {
|
|
clang_analyzer_eval(&x == __builtin_addressof(x)); // expected-warning{{TRUE}}
|
|
}
|
|
|
|
void testSize() {
|
|
struct {
|
|
int x;
|
|
int y;
|
|
char z;
|
|
} object;
|
|
clang_analyzer_eval(__builtin_object_size(&object.y, 0) == sizeof(object) - sizeof(int)); // expected-warning{{TRUE}}
|
|
|
|
// Clang can't actually evaluate these builtin "calls", but importantly they don't actually evaluate the argument expression either.
|
|
int i = 0;
|
|
char buf[10];
|
|
clang_analyzer_eval(__builtin_object_size(&buf[i++], 0) == sizeof(buf)); // expected-warning{{FALSE}}
|
|
clang_analyzer_eval(__builtin_object_size(&buf[++i], 0) == sizeof(buf) - 1); // expected-warning{{FALSE}}
|
|
|
|
clang_analyzer_eval(i == 0); // expected-warning{{TRUE}}
|
|
}
|
|
|
|
void test_assume_aligned_1(char *p) {
|
|
char *q;
|
|
|
|
q = (char*) __builtin_assume_aligned(p, 16);
|
|
clang_analyzer_eval(p == q); // expected-warning{{TRUE}}
|
|
}
|
|
|
|
void test_assume_aligned_2(char *p) {
|
|
char *q;
|
|
|
|
q = (char*) __builtin_assume_aligned(p, 16, 8);
|
|
clang_analyzer_eval(p == q); // expected-warning{{TRUE}}
|
|
}
|
|
|
|
void test_assume_aligned_3(char *p) {
|
|
void *q;
|
|
|
|
q = __builtin_assume_aligned(p, 16, 8);
|
|
clang_analyzer_eval(p == q); // expected-warning{{TRUE}}
|
|
}
|
|
|
|
void test_assume_aligned_4(char *p) {
|
|
char *q;
|
|
|
|
q = (char*) __builtin_assume_aligned(p + 1, 16);
|
|
clang_analyzer_eval(p == q); // expected-warning{{FALSE}}
|
|
}
|
|
|
|
void f(int i) {
|
|
__builtin_assume(i < 10);
|
|
clang_analyzer_eval(i < 15); // expected-warning {{TRUE}}
|
|
}
|
|
|
|
void g(int i) {
|
|
if (i > 5) {
|
|
__builtin_assume(i < 5);
|
|
clang_analyzer_warnIfReached(); // Assumtion contradicts constraints.
|
|
// We give up the analysis on this path.
|
|
}
|
|
}
|
|
|
|
void test_constant_p() {
|
|
int i = 1;
|
|
const int j = 2;
|
|
constexpr int k = 3;
|
|
clang_analyzer_eval(__builtin_constant_p(42) == 1); // expected-warning {{TRUE}}
|
|
clang_analyzer_eval(__builtin_constant_p(i) == 0); // expected-warning {{TRUE}}
|
|
clang_analyzer_eval(__builtin_constant_p(j) == 1); // expected-warning {{TRUE}}
|
|
clang_analyzer_eval(__builtin_constant_p(k) == 1); // expected-warning {{TRUE}}
|
|
clang_analyzer_eval(__builtin_constant_p(i + 42) == 0); // expected-warning {{TRUE}}
|
|
clang_analyzer_eval(__builtin_constant_p(j + 42) == 1); // expected-warning {{TRUE}}
|
|
clang_analyzer_eval(__builtin_constant_p(k + 42) == 1); // expected-warning {{TRUE}}
|
|
clang_analyzer_eval(__builtin_constant_p(" ") == 1); // expected-warning {{TRUE}}
|
|
clang_analyzer_eval(__builtin_constant_p(test_constant_p) == 0); // expected-warning {{TRUE}}
|
|
clang_analyzer_eval(__builtin_constant_p(k - 3) == 0); // expected-warning {{FALSE}}
|
|
clang_analyzer_eval(__builtin_constant_p(k - 3) == 1); // expected-warning {{TRUE}}
|
|
}
|