1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493
|
// RUN: %clang_cc1 -no-opaque-pointers -triple x86_64-apple-darwin -emit-llvm -O0 %s -o - 2>&1 | FileCheck %s
typedef unsigned long size_t;
struct Foo {
int t[10];
};
#define PS(N) __attribute__((pass_object_size(N)))
#define PDS(N) __attribute__((pass_dynamic_object_size(N)))
int gi = 0;
// CHECK-LABEL: define{{.*}} i32 @ObjectSize0(i8* noundef %{{.*}}, i64 noundef %0)
int ObjectSize0(void *const p PS(0)) {
// CHECK-NOT: @llvm.objectsize
return __builtin_object_size(p, 0);
}
// CHECK-LABEL: define{{.*}} i32 @DynamicObjectSize0(i8* noundef %{{.*}}, i64 noundef %0)
int DynamicObjectSize0(void *const p PDS(0)) {
// CHECK-NOT: @llvm.objectsize
return __builtin_dynamic_object_size(p, 0);
}
// CHECK-LABEL: define{{.*}} i32 @ObjectSize1(i8* noundef %{{.*}}, i64 noundef %0)
int ObjectSize1(void *const p PS(1)) {
// CHECK-NOT: @llvm.objectsize
return __builtin_object_size(p, 1);
}
// CHECK-LABEL: define{{.*}} i32 @DynamicObjectSize1(i8* noundef %{{.*}}, i64 noundef %0)
int DynamicObjectSize1(void *const p PDS(1)) {
// CHECK-NOT: @llvm.objectsize
return __builtin_dynamic_object_size(p, 1);
}
// CHECK-LABEL: define{{.*}} i32 @ObjectSize2(i8* noundef %{{.*}}, i64 noundef %0)
int ObjectSize2(void *const p PS(2)) {
// CHECK-NOT: @llvm.objectsize
return __builtin_object_size(p, 2);
}
// CHECK-LABEL: define{{.*}} i32 @DynamicObjectSize2(i8* noundef %{{.*}}, i64 noundef %0)
int DynamicObjectSize2(void *const p PDS(2)) {
// CHECK-NOT: @llvm.objectsize
return __builtin_object_size(p, 2);
}
// CHECK-LABEL: define{{.*}} i32 @ObjectSize3(i8* noundef %{{.*}}, i64 noundef %0)
int ObjectSize3(void *const p PS(3)) {
// CHECK-NOT: @llvm.objectsize
return __builtin_object_size(p, 3);
}
// CHECK-LABEL: define{{.*}} i32 @DynamicObjectSize3(i8* noundef %{{.*}}, i64 noundef %0)
int DynamicObjectSize3(void *const p PDS(3)) {
// CHECK-NOT: @llvm.objectsize
return __builtin_object_size(p, 3);
}
void *malloc(unsigned long) __attribute__((alloc_size(1)));
// CHECK-LABEL: define{{.*}} void @test1
void test1(unsigned long sz) {
struct Foo t[10];
// CHECK: call i32 @ObjectSize0(i8* noundef %{{.*}}, i64 noundef 360)
gi = ObjectSize0(&t[1]);
// CHECK: call i32 @ObjectSize1(i8* noundef %{{.*}}, i64 noundef 360)
gi = ObjectSize1(&t[1]);
// CHECK: call i32 @ObjectSize2(i8* noundef %{{.*}}, i64 noundef 360)
gi = ObjectSize2(&t[1]);
// CHECK: call i32 @ObjectSize3(i8* noundef %{{.*}}, i64 noundef 360)
gi = ObjectSize3(&t[1]);
// CHECK: call i32 @ObjectSize0(i8* noundef %{{.*}}, i64 noundef 356)
gi = ObjectSize0(&t[1].t[1]);
// CHECK: call i32 @ObjectSize1(i8* noundef %{{.*}}, i64 noundef 36)
gi = ObjectSize1(&t[1].t[1]);
// CHECK: call i32 @ObjectSize2(i8* noundef %{{.*}}, i64 noundef 356)
gi = ObjectSize2(&t[1].t[1]);
// CHECK: call i32 @ObjectSize3(i8* noundef %{{.*}}, i64 noundef 36)
gi = ObjectSize3(&t[1].t[1]);
char *ptr = (char *)malloc(sz);
// CHECK: [[REG:%.*]] = call i64 @llvm.objectsize.i64.p0i8({{.*}}, i1 false, i1 true, i1 true)
// CHECK: call i32 @DynamicObjectSize0(i8* noundef %{{.*}}, i64 noundef [[REG]])
gi = DynamicObjectSize0(ptr);
// CHECK: [[WITH_OFFSET:%.*]] = getelementptr
// CHECK: [[REG:%.*]] = call i64 @llvm.objectsize.i64.p0i8(i8* [[WITH_OFFSET]], i1 false, i1 true, i1 true)
// CHECK: call i32 @DynamicObjectSize0(i8* noundef {{.*}}, i64 noundef [[REG]])
gi = DynamicObjectSize0(ptr+10);
// CHECK: [[REG:%.*]] = call i64 @llvm.objectsize.i64.p0i8({{.*}}, i1 true, i1 true, i1 true)
// CHECK: call i32 @DynamicObjectSize2(i8* noundef {{.*}}, i64 noundef [[REG]])
gi = DynamicObjectSize2(ptr);
}
// CHECK-LABEL: define{{.*}} void @test2
void test2(struct Foo *t) {
// CHECK: [[VAR:%[0-9]+]] = call i64 @llvm.objectsize
// CHECK: call i32 @ObjectSize1(i8* noundef %{{.*}}, i64 noundef [[VAR]])
gi = ObjectSize1(&t->t[1]);
// CHECK: call i32 @ObjectSize3(i8* noundef %{{.*}}, i64 noundef 36)
gi = ObjectSize3(&t->t[1]);
}
// CHECK-LABEL: define{{.*}} i32 @_Z27NoViableOverloadObjectSize0Pv
int NoViableOverloadObjectSize0(void *const p) __attribute__((overloadable)) {
// CHECK: @llvm.objectsize
return __builtin_object_size(p, 0);
}
// CHECK-LABEL: define{{.*}} i32 @_Z34NoViableOverloadDynamicObjectSize0Pv
int NoViableOverloadDynamicObjectSize0(void *const p)
__attribute__((overloadable)) {
// CHECK: @llvm.objectsize
return __builtin_object_size(p, 0);
}
// CHECK-LABEL: define{{.*}} i32 @_Z27NoViableOverloadObjectSize1Pv
int NoViableOverloadObjectSize1(void *const p) __attribute__((overloadable)) {
// CHECK: @llvm.objectsize
return __builtin_object_size(p, 1);
}
// CHECK-LABEL: define{{.*}} i32 @_Z27NoViableOverloadObjectSize2Pv
int NoViableOverloadObjectSize2(void *const p) __attribute__((overloadable)) {
// CHECK: @llvm.objectsize
return __builtin_object_size(p, 2);
}
// CHECK-LABEL: define{{.*}} i32 @_Z27NoViableOverloadObjectSize3Pv
int NoViableOverloadObjectSize3(void *const p) __attribute__((overloadable)) {
// CHECK-NOT: @llvm.objectsize
return __builtin_object_size(p, 3);
}
// CHECK-LABEL: define{{.*}} i32 @_Z27NoViableOverloadObjectSize0Pv
// CHECK-NOT: @llvm.objectsize
int NoViableOverloadObjectSize0(void *const p PS(0))
__attribute__((overloadable)) {
return __builtin_object_size(p, 0);
}
int NoViableOverloadDynamicObjectSize0(void *const p PDS(0))
__attribute__((overloadable)) {
return __builtin_dynamic_object_size(p, 0);
}
int NoViableOverloadObjectSize1(void *const p PS(1))
__attribute__((overloadable)) {
return __builtin_object_size(p, 1);
}
int NoViableOverloadObjectSize2(void *const p PS(2))
__attribute__((overloadable)) {
return __builtin_object_size(p, 2);
}
int NoViableOverloadObjectSize3(void *const p PS(3))
__attribute__((overloadable)) {
return __builtin_object_size(p, 3);
}
const static int SHOULDNT_BE_CALLED = -100;
int NoViableOverloadObjectSize0(void *const p PS(0))
__attribute__((overloadable, enable_if(p == 0, "never selected"))) {
return SHOULDNT_BE_CALLED;
}
int NoViableOverloadObjectSize1(void *const p PS(1))
__attribute__((overloadable, enable_if(p == 0, "never selected"))) {
return SHOULDNT_BE_CALLED;
}
int NoViableOverloadObjectSize2(void *const p PS(2))
__attribute__((overloadable, enable_if(p == 0, "never selected"))) {
return SHOULDNT_BE_CALLED;
}
int NoViableOverloadObjectSize3(void *const p PS(3))
__attribute__((overloadable, enable_if(p == 0, "never selected"))) {
return SHOULDNT_BE_CALLED;
}
// CHECK-LABEL: define{{.*}} void @test3
void test3(void) {
struct Foo t[10];
// CHECK: call i32 @_Z27NoViableOverloadObjectSize0PvU17pass_object_size0(i8* noundef %{{.*}}, i64 noundef 360)
gi = NoViableOverloadObjectSize0(&t[1]);
// CHECK: call i32 @_Z27NoViableOverloadObjectSize1PvU17pass_object_size1(i8* noundef %{{.*}}, i64 noundef 360)
gi = NoViableOverloadObjectSize1(&t[1]);
// CHECK: call i32 @_Z27NoViableOverloadObjectSize2PvU17pass_object_size2(i8* noundef %{{.*}}, i64 noundef 360)
gi = NoViableOverloadObjectSize2(&t[1]);
// CHECK: call i32 @_Z27NoViableOverloadObjectSize3PvU17pass_object_size3(i8* noundef %{{.*}}, i64 noundef 360)
gi = NoViableOverloadObjectSize3(&t[1]);
// CHECK: call i32 @_Z27NoViableOverloadObjectSize0PvU17pass_object_size0(i8* noundef %{{.*}}, i64 noundef 356)
gi = NoViableOverloadObjectSize0(&t[1].t[1]);
// CHECK: call i32 @_Z27NoViableOverloadObjectSize1PvU17pass_object_size1(i8* noundef %{{.*}}, i64 noundef 36)
gi = NoViableOverloadObjectSize1(&t[1].t[1]);
// CHECK: call i32 @_Z27NoViableOverloadObjectSize2PvU17pass_object_size2(i8* noundef %{{.*}}, i64 noundef 356)
gi = NoViableOverloadObjectSize2(&t[1].t[1]);
// CHECK: call i32 @_Z27NoViableOverloadObjectSize3PvU17pass_object_size3(i8* noundef %{{.*}}, i64 noundef 36)
gi = NoViableOverloadObjectSize3(&t[1].t[1]);
// CHECK: call i32 @_Z34NoViableOverloadDynamicObjectSize0PvU25pass_dynamic_object_size0(i8* noundef %{{.*}}, i64 noundef 360)
gi = NoViableOverloadDynamicObjectSize0(&t[1]);
}
// CHECK-LABEL: define{{.*}} void @test4
void test4(struct Foo *t) {
// CHECK: call i32 @_Z27NoViableOverloadObjectSize0PvU17pass_object_size0(i8* noundef %{{.*}}, i64 noundef %{{.*}})
gi = NoViableOverloadObjectSize0(&t[1]);
// CHECK: call i32 @_Z27NoViableOverloadObjectSize1PvU17pass_object_size1(i8* noundef %{{.*}}, i64 noundef %{{.*}})
gi = NoViableOverloadObjectSize1(&t[1]);
// CHECK: call i32 @_Z27NoViableOverloadObjectSize2PvU17pass_object_size2(i8* noundef %{{.*}}, i64 noundef %{{.*}})
gi = NoViableOverloadObjectSize2(&t[1]);
// CHECK: call i32 @_Z27NoViableOverloadObjectSize3PvU17pass_object_size3(i8* noundef %{{.*}}, i64 noundef 0)
gi = NoViableOverloadObjectSize3(&t[1]);
// CHECK: call i32 @_Z27NoViableOverloadObjectSize0PvU17pass_object_size0(i8* noundef %{{.*}}, i64 noundef %{{.*}})
gi = NoViableOverloadObjectSize0(&t[1].t[1]);
// CHECK: [[VAR:%[0-9]+]] = call i64 @llvm.objectsize
// CHECK: call i32 @_Z27NoViableOverloadObjectSize1PvU17pass_object_size1(i8* noundef %{{.*}}, i64 noundef [[VAR]])
gi = NoViableOverloadObjectSize1(&t[1].t[1]);
// CHECK: call i32 @_Z27NoViableOverloadObjectSize2PvU17pass_object_size2(i8* noundef %{{.*}}, i64 noundef %{{.*}})
gi = NoViableOverloadObjectSize2(&t[1].t[1]);
// CHECK: call i32 @_Z27NoViableOverloadObjectSize3PvU17pass_object_size3(i8* noundef %{{.*}}, i64 noundef 36)
gi = NoViableOverloadObjectSize3(&t[1].t[1]);
}
void test5(void) {
struct Foo t[10];
int (*f)(void *) = &NoViableOverloadObjectSize0;
gi = f(&t[1]);
int (*g)(void *) = &NoViableOverloadDynamicObjectSize0;
gi = g(&t[1]);
}
// CHECK-LABEL: define{{.*}} i32 @IndirectObjectSize0
int IndirectObjectSize0(void *const p PS(0)) {
// CHECK: call i32 @ObjectSize0(i8* noundef %{{.*}}, i64 noundef %{{.*}})
// CHECK-NOT: @llvm.objectsize
return ObjectSize0(p);
}
// CHECK-LABEL: define{{.*}} i32 @IndirectObjectSize1
int IndirectObjectSize1(void *const p PS(1)) {
// CHECK: call i32 @ObjectSize1(i8* noundef %{{.*}}, i64 noundef %{{.*}})
// CHECK-NOT: @llvm.objectsize
return ObjectSize1(p);
}
// CHECK-LABEL: define{{.*}} i32 @IndirectObjectSize2
int IndirectObjectSize2(void *const p PS(2)) {
// CHECK: call i32 @ObjectSize2(i8* noundef %{{.*}}, i64 noundef %{{.*}})
// CHECK-NOT: @llvm.objectsize
return ObjectSize2(p);
}
// CHECK-LABEL: define{{.*}} i32 @IndirectObjectSize3
int IndirectObjectSize3(void *const p PS(3)) {
// CHECK: call i32 @ObjectSize3(i8* noundef %{{.*}}, i64 noundef %{{.*}})
// CHECK-NOT: @llvm.objectsize
return ObjectSize3(p);
}
int IndirectDynamicObjectSize0(void *const p PDS(0)) {
// CHECK: call i32 @ObjectSize0(i8* noundef %{{.*}}, i64 noundef %{{.*}})
// CHECK-NOT: @llvm.objectsize
return ObjectSize0(p);
}
int Overload0(void *, size_t, void *, size_t);
int OverloadNoSize(void *, void *);
int OverloadedObjectSize(void *const p PS(0),
void *const c PS(0))
__attribute__((overloadable)) __asm__("Overload0");
int OverloadedObjectSize(void *const p, void *const c)
__attribute__((overloadable)) __asm__("OverloadNoSize");
// CHECK-LABEL: define{{.*}} void @test6
void test6(void) {
int known[10], *opaque;
// CHECK: call i32 @"\01Overload0"
gi = OverloadedObjectSize(&known[0], &known[0]);
// CHECK: call i32 @"\01Overload0"
gi = OverloadedObjectSize(&known[0], opaque);
// CHECK: call i32 @"\01Overload0"
gi = OverloadedObjectSize(opaque, &known[0]);
// CHECK: call i32 @"\01Overload0"
gi = OverloadedObjectSize(opaque, opaque);
}
int Identity(void *p, size_t i) { return i; }
// CHECK-NOT: define{{.*}} void @AsmObjectSize
int AsmObjectSize0(void *const p PS(0)) __asm__("Identity");
int AsmObjectSize1(void *const p PS(1)) __asm__("Identity");
int AsmObjectSize2(void *const p PS(2)) __asm__("Identity");
int AsmObjectSize3(void *const p PS(3)) __asm__("Identity");
// CHECK-LABEL: define{{.*}} void @test7
void test7(void) {
struct Foo t[10];
// CHECK: call i32 @"\01Identity"(i8* noundef %{{.*}}, i64 noundef 360)
gi = AsmObjectSize0(&t[1]);
// CHECK: call i32 @"\01Identity"(i8* noundef %{{.*}}, i64 noundef 360)
gi = AsmObjectSize1(&t[1]);
// CHECK: call i32 @"\01Identity"(i8* noundef %{{.*}}, i64 noundef 360)
gi = AsmObjectSize2(&t[1]);
// CHECK: call i32 @"\01Identity"(i8* noundef %{{.*}}, i64 noundef 360)
gi = AsmObjectSize3(&t[1]);
// CHECK: call i32 @"\01Identity"(i8* noundef %{{.*}}, i64 noundef 356)
gi = AsmObjectSize0(&t[1].t[1]);
// CHECK: call i32 @"\01Identity"(i8* noundef %{{.*}}, i64 noundef 36)
gi = AsmObjectSize1(&t[1].t[1]);
// CHECK: call i32 @"\01Identity"(i8* noundef %{{.*}}, i64 noundef 356)
gi = AsmObjectSize2(&t[1].t[1]);
// CHECK: call i32 @"\01Identity"(i8* noundef %{{.*}}, i64 noundef 36)
gi = AsmObjectSize3(&t[1].t[1]);
}
// CHECK-LABEL: define{{.*}} void @test8
void test8(struct Foo *t) {
// CHECK: [[VAR:%[0-9]+]] = call i64 @llvm.objectsize
// CHECK: call i32 @"\01Identity"(i8* noundef %{{.*}}, i64 noundef [[VAR]])
gi = AsmObjectSize1(&t[1].t[1]);
// CHECK: call i32 @"\01Identity"(i8* noundef %{{.*}}, i64 noundef 36)
gi = AsmObjectSize3(&t[1].t[1]);
}
void DifferingObjectSize0(void *const p __attribute__((pass_object_size(0))));
void DifferingObjectSize1(void *const p __attribute__((pass_object_size(1))));
void DifferingObjectSize2(void *const p __attribute__((pass_object_size(2))));
void DifferingObjectSize3(void *const p __attribute__((pass_object_size(3))));
// CHECK-LABEL: define{{.*}} void @test9
void test9(void *const p __attribute__((pass_object_size(0)))) {
// CHECK: @llvm.objectsize
DifferingObjectSize2(p);
// CHECK-NOT: @llvm.objectsize
DifferingObjectSize0(p);
DifferingObjectSize1(p);
// CHECK: call void @DifferingObjectSize3(i8* noundef %{{.*}}, i64 noundef 0)
DifferingObjectSize3(p);
}
// CHECK-LABEL: define{{.*}} void @test10
void test10(void *const p __attribute__((pass_object_size(1)))) {
// CHECK: @llvm.objectsize
DifferingObjectSize2(p);
// CHECK: @llvm.objectsize
DifferingObjectSize0(p);
// CHECK-NOT: @llvm.objectsize
DifferingObjectSize1(p);
// CHECK: call void @DifferingObjectSize3(i8* noundef %{{.*}}, i64 noundef 0)
DifferingObjectSize3(p);
}
// CHECK-LABEL: define{{.*}} void @test11
void test11(void *const p __attribute__((pass_object_size(2)))) {
// CHECK: @llvm.objectsize
DifferingObjectSize0(p);
// CHECK: @llvm.objectsize
DifferingObjectSize1(p);
// CHECK-NOT: @llvm.objectsize
DifferingObjectSize2(p);
// CHECK: call void @DifferingObjectSize3(i8* noundef %{{.*}}, i64 noundef 0)
DifferingObjectSize3(p);
}
// CHECK-LABEL: define{{.*}} void @test12
void test12(void *const p __attribute__((pass_object_size(3)))) {
// CHECK: @llvm.objectsize
DifferingObjectSize0(p);
// CHECK: @llvm.objectsize
DifferingObjectSize1(p);
// CHECK-NOT: @llvm.objectsize
DifferingObjectSize2(p);
DifferingObjectSize3(p);
}
// CHECK-LABEL: define{{.*}} void @test13
void test13(void) {
char c[10];
unsigned i = 0;
char *p = c;
// CHECK: @llvm.objectsize
ObjectSize0(p);
// Allow side-effects, since they always need to happen anyway. Just make sure
// we don't perform them twice.
// CHECK: = add
// CHECK-NOT: = add
// CHECK: @llvm.objectsize
// CHECK: call i32 @ObjectSize0
ObjectSize0(p + ++i);
// CHECK: = add
// CHECK: @llvm.objectsize
// CHECK-NOT: = add
// CHECK: call i32 @ObjectSize0
ObjectSize0(p + i++);
}
// There was a bug where variadic functions with pass_object_size would cause
// problems in the form of failed assertions.
void my_sprintf(char *const c __attribute__((pass_object_size(0))), ...) {}
// CHECK-LABEL: define{{.*}} void @test14
void test14(char *c) {
// CHECK: @llvm.objectsize
// CHECK: call void (i8*, i64, ...) @my_sprintf
my_sprintf(c);
// CHECK: @llvm.objectsize
// CHECK: call void (i8*, i64, ...) @my_sprintf
my_sprintf(c, 1, 2, 3);
}
void pass_size_unsigned(unsigned *const PS(0));
// Bug: we weren't lowering to the proper @llvm.objectsize for pointers that
// don't turn into i8*s, which caused crashes.
// CHECK-LABEL: define{{.*}} void @test15
void test15(unsigned *I) {
// CHECK: @llvm.objectsize.i64.p0i32
// CHECK: call void @pass_size_unsigned
pass_size_unsigned(I);
}
void pass_size_as1(__attribute__((address_space(1))) void *const PS(0));
void pass_size_unsigned_as1(
__attribute__((address_space(1))) unsigned *const PS(0));
// CHECK-LABEL: define{{.*}} void @test16
void test16(__attribute__((address_space(1))) unsigned *I) {
// CHECK: call i64 @llvm.objectsize.i64.p1i8
// CHECK: call void @pass_size_as1
pass_size_as1(I);
// CHECK: call i64 @llvm.objectsize.i64.p1i32
// CHECK: call void @pass_size_unsigned_as1
pass_size_unsigned_as1(I);
}
// This used to cause assertion failures, since we'd try to emit the statement
// expression (and definitions for `a`) twice.
// CHECK-LABEL: define{{.*}} void @test17
void test17(char *C) {
// Check for 65535 to see if we're emitting this pointer twice.
// CHECK: 65535
// CHECK-NOT: 65535
// CHECK: @llvm.objectsize.i64.p0i8(i8* [[PTR:%[^,]+]],
// CHECK-NOT: 65535
// CHECK: call i32 @ObjectSize0(i8* noundef [[PTR]]
ObjectSize0(C + ({ int a = 65535; a; }));
}
// CHECK-LABEL: define{{.*}} void @test18
void test18(char *const p PDS(0)) {
// CHECK-NOT: llvm.objectsize
gi = __builtin_dynamic_object_size(p, 0);
gi = __builtin_object_size(p, 0);
}
|