Artem Dergachev | 9d3a7d8 | 2018-03-30 19:21:18 +0000 | [diff] [blame] | 1 | // RUN: %clang_analyze_cc1 -analyzer-checker=core,debug.ExprInspection -std=c++11 -verify %s |
| 2 | // RUN: %clang_analyze_cc1 -analyzer-checker=core,debug.ExprInspection -std=c++17 -verify %s |
Artem Dergachev | 9a209ad | 2018-06-28 00:30:18 +0000 | [diff] [blame^] | 3 | // RUN: %clang_analyze_cc1 -analyzer-checker=core,debug.ExprInspection -std=c++11 -analyzer-config elide-constructors=false -DNO_ELIDE_FLAG -verify %s |
| 4 | // RUN: %clang_analyze_cc1 -analyzer-checker=core,debug.ExprInspection -std=c++17 -analyzer-config elide-constructors=false -DNO_ELIDE_FLAG -verify %s |
| 5 | |
| 6 | // Copy elision always occurs in C++17, otherwise it's under |
| 7 | // an on-by-default flag. |
| 8 | #if __cplusplus >= 201703L |
| 9 | #define ELIDE 1 |
| 10 | #else |
| 11 | #ifndef NO_ELIDE_FLAG |
| 12 | #define ELIDE 1 |
| 13 | #endif |
| 14 | #endif |
Artem Dergachev | 9d3a7d8 | 2018-03-30 19:21:18 +0000 | [diff] [blame] | 15 | |
| 16 | void clang_analyzer_eval(bool); |
| 17 | |
Artem Dergachev | 1fe5247 | 2018-06-14 01:32:46 +0000 | [diff] [blame] | 18 | namespace variable_functional_cast_crash { |
| 19 | |
| 20 | struct A { |
| 21 | A(int) {} |
| 22 | }; |
| 23 | |
| 24 | void foo() { |
| 25 | A a = A(0); |
| 26 | } |
| 27 | |
| 28 | struct B { |
| 29 | A a; |
| 30 | B(): a(A(0)) {} |
| 31 | }; |
| 32 | |
| 33 | } // namespace variable_functional_cast_crash |
| 34 | |
| 35 | |
Artem Dergachev | a84374d | 2018-06-14 01:40:49 +0000 | [diff] [blame] | 36 | namespace ctor_initializer { |
| 37 | |
| 38 | struct S { |
| 39 | int x, y, z; |
| 40 | }; |
| 41 | |
| 42 | struct T { |
| 43 | S s; |
| 44 | int w; |
| 45 | T(int w): s(), w(w) {} |
| 46 | }; |
| 47 | |
| 48 | class C { |
| 49 | T t; |
| 50 | public: |
| 51 | C() : t(T(4)) { |
| 52 | S s = {1, 2, 3}; |
| 53 | t.s = s; |
Artem Dergachev | 9a209ad | 2018-06-28 00:30:18 +0000 | [diff] [blame^] | 54 | // FIXME: Should be TRUE regardless of copy elision. |
Artem Dergachev | a84374d | 2018-06-14 01:40:49 +0000 | [diff] [blame] | 55 | clang_analyzer_eval(t.w == 4); |
Artem Dergachev | 9a209ad | 2018-06-28 00:30:18 +0000 | [diff] [blame^] | 56 | #ifdef ELIDE |
Artem Dergachev | a84374d | 2018-06-14 01:40:49 +0000 | [diff] [blame] | 57 | // expected-warning@-2{{TRUE}} |
| 58 | #else |
| 59 | // expected-warning@-4{{UNKNOWN}} |
| 60 | #endif |
| 61 | } |
| 62 | }; |
| 63 | |
Artem Dergachev | 53b8ce0 | 2018-06-14 01:54:21 +0000 | [diff] [blame] | 64 | |
| 65 | struct A { |
| 66 | int x; |
| 67 | A(): x(0) {} |
| 68 | ~A() {} |
| 69 | }; |
| 70 | |
| 71 | struct B { |
| 72 | A a; |
| 73 | B() : a(A()) {} |
| 74 | }; |
| 75 | |
| 76 | void foo() { |
| 77 | B b; |
| 78 | clang_analyzer_eval(b.a.x == 0); // expected-warning{{TRUE}} |
| 79 | } |
| 80 | |
Artem Dergachev | a84374d | 2018-06-14 01:40:49 +0000 | [diff] [blame] | 81 | } // namespace ctor_initializer |
| 82 | |
| 83 | |
Artem Dergachev | 53b8ce0 | 2018-06-14 01:54:21 +0000 | [diff] [blame] | 84 | namespace elision_on_ternary_op_branches { |
| 85 | class C1 { |
| 86 | int x; |
| 87 | public: |
| 88 | C1(int x): x(x) {} |
| 89 | int getX() const { return x; } |
| 90 | ~C1(); |
| 91 | }; |
| 92 | |
| 93 | class C2 { |
| 94 | int x; |
| 95 | int y; |
| 96 | public: |
| 97 | C2(int x, int y): x(x), y(y) {} |
| 98 | int getX() const { return x; } |
| 99 | int getY() const { return y; } |
| 100 | ~C2(); |
| 101 | }; |
| 102 | |
| 103 | void foo(int coin) { |
| 104 | C1 c1 = coin ? C1(1) : C1(2); |
| 105 | if (coin) { |
| 106 | clang_analyzer_eval(c1.getX() == 1); // expected-warning{{TRUE}} |
| 107 | } else { |
| 108 | clang_analyzer_eval(c1.getX() == 2); // expected-warning{{TRUE}} |
| 109 | } |
| 110 | C2 c2 = coin ? C2(3, 4) : C2(5, 6); |
| 111 | if (coin) { |
| 112 | clang_analyzer_eval(c2.getX() == 3); // expected-warning{{TRUE}} |
| 113 | clang_analyzer_eval(c2.getY() == 4); // expected-warning{{TRUE}} |
| 114 | } else { |
| 115 | clang_analyzer_eval(c2.getX() == 5); // expected-warning{{TRUE}} |
| 116 | clang_analyzer_eval(c2.getY() == 6); // expected-warning{{TRUE}} |
| 117 | } |
| 118 | } |
| 119 | } // namespace elision_on_ternary_op_branches |
| 120 | |
| 121 | |
Artem Dergachev | 1fe5247 | 2018-06-14 01:32:46 +0000 | [diff] [blame] | 122 | namespace address_vector_tests { |
| 123 | |
Artem Dergachev | 9d3a7d8 | 2018-03-30 19:21:18 +0000 | [diff] [blame] | 124 | template <typename T> struct AddressVector { |
| 125 | T *buf[10]; |
| 126 | int len; |
| 127 | |
| 128 | AddressVector() : len(0) {} |
| 129 | |
| 130 | void push(T *t) { |
| 131 | buf[len] = t; |
| 132 | ++len; |
| 133 | } |
| 134 | }; |
| 135 | |
| 136 | class ClassWithoutDestructor { |
| 137 | AddressVector<ClassWithoutDestructor> &v; |
| 138 | |
| 139 | public: |
| 140 | ClassWithoutDestructor(AddressVector<ClassWithoutDestructor> &v) : v(v) { |
| 141 | v.push(this); |
| 142 | } |
| 143 | |
| 144 | ClassWithoutDestructor(ClassWithoutDestructor &&c) : v(c.v) { v.push(this); } |
| 145 | ClassWithoutDestructor(const ClassWithoutDestructor &c) : v(c.v) { |
| 146 | v.push(this); |
| 147 | } |
| 148 | }; |
| 149 | |
| 150 | ClassWithoutDestructor make1(AddressVector<ClassWithoutDestructor> &v) { |
| 151 | return ClassWithoutDestructor(v); |
| 152 | } |
| 153 | ClassWithoutDestructor make2(AddressVector<ClassWithoutDestructor> &v) { |
| 154 | return make1(v); |
| 155 | } |
| 156 | ClassWithoutDestructor make3(AddressVector<ClassWithoutDestructor> &v) { |
| 157 | return make2(v); |
| 158 | } |
| 159 | |
| 160 | void testMultipleReturns() { |
| 161 | AddressVector<ClassWithoutDestructor> v; |
| 162 | ClassWithoutDestructor c = make3(v); |
| 163 | |
Artem Dergachev | 9a209ad | 2018-06-28 00:30:18 +0000 | [diff] [blame^] | 164 | #if ELIDE |
Artem Dergachev | 9d3a7d8 | 2018-03-30 19:21:18 +0000 | [diff] [blame] | 165 | clang_analyzer_eval(v.len == 1); // expected-warning{{TRUE}} |
Artem Dergachev | f28d7f17 | 2018-06-14 01:59:35 +0000 | [diff] [blame] | 166 | clang_analyzer_eval(v.buf[0] == &c); // expected-warning{{TRUE}} |
Artem Dergachev | 9d3a7d8 | 2018-03-30 19:21:18 +0000 | [diff] [blame] | 167 | #else |
| 168 | clang_analyzer_eval(v.len == 5); // expected-warning{{TRUE}} |
| 169 | clang_analyzer_eval(v.buf[0] != v.buf[1]); // expected-warning{{TRUE}} |
| 170 | clang_analyzer_eval(v.buf[1] != v.buf[2]); // expected-warning{{TRUE}} |
| 171 | clang_analyzer_eval(v.buf[2] != v.buf[3]); // expected-warning{{TRUE}} |
| 172 | clang_analyzer_eval(v.buf[3] != v.buf[4]); // expected-warning{{TRUE}} |
| 173 | clang_analyzer_eval(v.buf[4] == &c); // expected-warning{{TRUE}} |
| 174 | #endif |
| 175 | } |
Artem Dergachev | 1fe5247 | 2018-06-14 01:32:46 +0000 | [diff] [blame] | 176 | |
Artem Dergachev | 53b8ce0 | 2018-06-14 01:54:21 +0000 | [diff] [blame] | 177 | class ClassWithDestructor { |
| 178 | AddressVector<ClassWithDestructor> &v; |
| 179 | |
| 180 | public: |
| 181 | ClassWithDestructor(AddressVector<ClassWithDestructor> &v) : v(v) { |
| 182 | v.push(this); |
| 183 | } |
| 184 | |
| 185 | ClassWithDestructor(ClassWithDestructor &&c) : v(c.v) { v.push(this); } |
| 186 | ClassWithDestructor(const ClassWithDestructor &c) : v(c.v) { |
| 187 | v.push(this); |
| 188 | } |
| 189 | |
| 190 | ~ClassWithDestructor() { v.push(this); } |
| 191 | }; |
| 192 | |
| 193 | void testVariable() { |
| 194 | AddressVector<ClassWithDestructor> v; |
| 195 | { |
| 196 | ClassWithDestructor c = ClassWithDestructor(v); |
Artem Dergachev | f28d7f17 | 2018-06-14 01:59:35 +0000 | [diff] [blame] | 197 | // Check if the last destructor is an automatic destructor. |
| 198 | // A temporary destructor would have fired by now. |
Artem Dergachev | 9a209ad | 2018-06-28 00:30:18 +0000 | [diff] [blame^] | 199 | #if ELIDE |
Artem Dergachev | f28d7f17 | 2018-06-14 01:59:35 +0000 | [diff] [blame] | 200 | clang_analyzer_eval(v.len == 1); // expected-warning{{TRUE}} |
| 201 | #else |
| 202 | clang_analyzer_eval(v.len == 3); // expected-warning{{TRUE}} |
| 203 | #endif |
Artem Dergachev | 53b8ce0 | 2018-06-14 01:54:21 +0000 | [diff] [blame] | 204 | } |
Artem Dergachev | 9a209ad | 2018-06-28 00:30:18 +0000 | [diff] [blame^] | 205 | #if ELIDE |
Artem Dergachev | 53b8ce0 | 2018-06-14 01:54:21 +0000 | [diff] [blame] | 206 | // 0. Construct the variable. |
| 207 | // 1. Destroy the variable. |
| 208 | clang_analyzer_eval(v.len == 2); // expected-warning{{TRUE}} |
| 209 | clang_analyzer_eval(v.buf[0] == v.buf[1]); // expected-warning{{TRUE}} |
| 210 | #else |
| 211 | // 0. Construct the temporary. |
| 212 | // 1. Construct the variable. |
| 213 | // 2. Destroy the temporary. |
| 214 | // 3. Destroy the variable. |
| 215 | clang_analyzer_eval(v.len == 4); // expected-warning{{TRUE}} |
| 216 | clang_analyzer_eval(v.buf[0] == v.buf[2]); // expected-warning{{TRUE}} |
| 217 | clang_analyzer_eval(v.buf[1] == v.buf[3]); // expected-warning{{TRUE}} |
| 218 | #endif |
| 219 | } |
| 220 | |
| 221 | struct TestCtorInitializer { |
| 222 | ClassWithDestructor c; |
| 223 | TestCtorInitializer(AddressVector<ClassWithDestructor> &v) |
| 224 | : c(ClassWithDestructor(v)) {} |
| 225 | }; |
| 226 | |
| 227 | void testCtorInitializer() { |
| 228 | AddressVector<ClassWithDestructor> v; |
| 229 | { |
| 230 | TestCtorInitializer t(v); |
Artem Dergachev | f28d7f17 | 2018-06-14 01:59:35 +0000 | [diff] [blame] | 231 | // Check if the last destructor is an automatic destructor. |
| 232 | // A temporary destructor would have fired by now. |
Artem Dergachev | 9a209ad | 2018-06-28 00:30:18 +0000 | [diff] [blame^] | 233 | #if ELIDE |
Artem Dergachev | f28d7f17 | 2018-06-14 01:59:35 +0000 | [diff] [blame] | 234 | clang_analyzer_eval(v.len == 1); // expected-warning{{TRUE}} |
| 235 | #else |
| 236 | clang_analyzer_eval(v.len == 3); // expected-warning{{TRUE}} |
| 237 | #endif |
Artem Dergachev | 53b8ce0 | 2018-06-14 01:54:21 +0000 | [diff] [blame] | 238 | } |
Artem Dergachev | 9a209ad | 2018-06-28 00:30:18 +0000 | [diff] [blame^] | 239 | #if ELIDE |
Artem Dergachev | 53b8ce0 | 2018-06-14 01:54:21 +0000 | [diff] [blame] | 240 | // 0. Construct the member variable. |
| 241 | // 1. Destroy the member variable. |
| 242 | clang_analyzer_eval(v.len == 2); // expected-warning{{TRUE}} |
| 243 | clang_analyzer_eval(v.buf[0] == v.buf[1]); // expected-warning{{TRUE}} |
| 244 | #else |
| 245 | // 0. Construct the temporary. |
| 246 | // 1. Construct the member variable. |
| 247 | // 2. Destroy the temporary. |
| 248 | // 3. Destroy the member variable. |
| 249 | clang_analyzer_eval(v.len == 4); // expected-warning{{TRUE}} |
| 250 | clang_analyzer_eval(v.buf[0] == v.buf[2]); // expected-warning{{TRUE}} |
| 251 | clang_analyzer_eval(v.buf[1] == v.buf[3]); // expected-warning{{TRUE}} |
| 252 | #endif |
| 253 | } |
| 254 | |
Artem Dergachev | f28d7f17 | 2018-06-14 01:59:35 +0000 | [diff] [blame] | 255 | |
| 256 | ClassWithDestructor make1(AddressVector<ClassWithDestructor> &v) { |
| 257 | return ClassWithDestructor(v); |
| 258 | } |
| 259 | ClassWithDestructor make2(AddressVector<ClassWithDestructor> &v) { |
| 260 | return make1(v); |
| 261 | } |
| 262 | ClassWithDestructor make3(AddressVector<ClassWithDestructor> &v) { |
| 263 | return make2(v); |
| 264 | } |
| 265 | |
| 266 | void testMultipleReturnsWithDestructors() { |
| 267 | AddressVector<ClassWithDestructor> v; |
| 268 | { |
| 269 | ClassWithDestructor c = make3(v); |
| 270 | // Check if the last destructor is an automatic destructor. |
| 271 | // A temporary destructor would have fired by now. |
Artem Dergachev | 9a209ad | 2018-06-28 00:30:18 +0000 | [diff] [blame^] | 272 | #if ELIDE |
Artem Dergachev | f28d7f17 | 2018-06-14 01:59:35 +0000 | [diff] [blame] | 273 | clang_analyzer_eval(v.len == 1); // expected-warning{{TRUE}} |
| 274 | #else |
| 275 | clang_analyzer_eval(v.len == 9); // expected-warning{{TRUE}} |
| 276 | #endif |
| 277 | } |
| 278 | |
Artem Dergachev | 9a209ad | 2018-06-28 00:30:18 +0000 | [diff] [blame^] | 279 | #if ELIDE |
Artem Dergachev | f28d7f17 | 2018-06-14 01:59:35 +0000 | [diff] [blame] | 280 | // 0. Construct the variable. Yes, constructor in make1() constructs |
| 281 | // the variable 'c'. |
| 282 | // 1. Destroy the variable. |
| 283 | clang_analyzer_eval(v.len == 2); // expected-warning{{TRUE}} |
| 284 | clang_analyzer_eval(v.buf[0] == v.buf[1]); // expected-warning{{TRUE}} |
| 285 | #else |
| 286 | // 0. Construct the temporary in make1(). |
| 287 | // 1. Construct the temporary in make2(). |
| 288 | // 2. Destroy the temporary in make1(). |
| 289 | // 3. Construct the temporary in make3(). |
| 290 | // 4. Destroy the temporary in make2(). |
| 291 | // 5. Construct the temporary here. |
| 292 | // 6. Destroy the temporary in make3(). |
| 293 | // 7. Construct the variable. |
| 294 | // 8. Destroy the temporary here. |
| 295 | // 9. Destroy the variable. |
| 296 | clang_analyzer_eval(v.len == 10); // expected-warning{{TRUE}} |
| 297 | clang_analyzer_eval(v.buf[0] == v.buf[2]); // expected-warning{{TRUE}} |
| 298 | clang_analyzer_eval(v.buf[1] == v.buf[4]); // expected-warning{{TRUE}} |
| 299 | clang_analyzer_eval(v.buf[3] == v.buf[6]); // expected-warning{{TRUE}} |
| 300 | clang_analyzer_eval(v.buf[5] == v.buf[8]); // expected-warning{{TRUE}} |
| 301 | clang_analyzer_eval(v.buf[7] == v.buf[9]); // expected-warning{{TRUE}} |
| 302 | #endif |
| 303 | } |
Artem Dergachev | 1fe5247 | 2018-06-14 01:32:46 +0000 | [diff] [blame] | 304 | } // namespace address_vector_tests |