mirror of
https://github.com/capstone-engine/llvm-capstone.git
synced 2024-12-13 19:24:21 +00:00
59d10a4cbc
This is a follow up for one of the previous diffs https://reviews.llvm.org/D32328. getTypeSize and with getIntWidth are not equivalent for bool (see https://clang.llvm.org/doxygen/ASTContext_8cpp_source.html#l08444), this causes a number of issues (for instance, if APint X representing a bool is created with the wrong bit width then X is not comparable against Min/Max (because of the different bit width), that results in crashes (triggered asserts) inside assume* methods), for examples see the newly added test cases. Test plan: make check-all Differential revision: https://reviews.llvm.org/D35041 llvm-svn: 307604
70 lines
1.3 KiB
C++
70 lines
1.3 KiB
C++
// RUN: %clang_analyze_cc1 -std=c++11 -analyzer-checker=debug.ExprInspection %s
|
|
|
|
void clang_analyzer_eval(bool);
|
|
|
|
enum class Foo {
|
|
Zero
|
|
};
|
|
|
|
bool pr15703(int x) {
|
|
return Foo::Zero == (Foo)x; // don't crash
|
|
}
|
|
|
|
void testCasting(int i) {
|
|
Foo f = static_cast<Foo>(i);
|
|
int j = static_cast<int>(f);
|
|
if (i == 0)
|
|
{
|
|
clang_analyzer_eval(f == Foo::Zero); // expected-warning{{TRUE}}
|
|
clang_analyzer_eval(j == 0); // expected-warning{{TRUE}}
|
|
}
|
|
else
|
|
{
|
|
clang_analyzer_eval(f == Foo::Zero); // expected-warning{{FALSE}}
|
|
clang_analyzer_eval(j == 0); // expected-warning{{FALSE}}
|
|
}
|
|
}
|
|
|
|
enum class EnumBool : bool {
|
|
F = false,
|
|
T = true
|
|
};
|
|
|
|
bool testNoCrashOnSwitchEnumBool(EnumBool E) {
|
|
switch (E) {
|
|
case EnumBool::F:
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
bool testNoCrashOnSwitchEnumBoolConstant() {
|
|
EnumBool E = EnumBool::F;
|
|
switch (E) {
|
|
case EnumBool::F:
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
typedef __INTPTR_TYPE__ intptr_t;
|
|
bool testNoCrashOnSwitchEnumBoolConstantCastedFromNullptr() {
|
|
EnumBool E = static_cast<EnumBool>((intptr_t)nullptr);
|
|
switch (E) {
|
|
case EnumBool::F:
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|
|
|
|
bool testNoCrashOnSwitchEnumBoolConstantCastedFromPtr() {
|
|
int X;
|
|
intptr_t P = (intptr_t)&X;
|
|
EnumBool E = static_cast<EnumBool>(P);
|
|
switch (E) {
|
|
case EnumBool::F:
|
|
return false;
|
|
}
|
|
return true;
|
|
}
|