Run DCE after a LoopFlatten test to reduce spurious output [nfc]
[llvm-project.git] / compiler-rt / test / asan / TestCases / Linux / malloc-in-qsort.cpp
blob3544324c81a032d156b50b1179f98b0d0bf23eba
1 // RUN: %clangxx_asan -O2 %s -o %t
2 // RUN: %env_asan_opts=fast_unwind_on_malloc=1 not %run %t 2>&1 | FileCheck %s --check-prefix=CHECK-FAST
3 // RUN: %env_asan_opts=fast_unwind_on_malloc=0 not %run %t 2>&1 | FileCheck %s --check-prefix=CHECK-SLOW
5 // Test how well we unwind in presence of qsort in the stack
6 // (i.e. if we can unwind through a function compiled w/o frame pointers).
7 // https://code.google.com/p/address-sanitizer/issues/detail?id=137
9 // Fast unwinder is only available on x86_64 and i386.
10 // REQUIRES: x86-target-arch
12 // REQUIRES: compiler-rt-optimized
14 #include <stdlib.h>
15 #include <stdio.h>
17 int *GlobalPtr;
19 extern "C" {
20 int QsortCallback(const void *a, const void *b) {
21 char *x = (char*)a;
22 char *y = (char*)b;
23 printf("Calling QsortCallback\n");
24 GlobalPtr = new int[10];
25 return (int)*x - (int)*y;
28 __attribute__((noinline))
29 void MyQsort(char *a, size_t size) {
30 printf("Calling qsort\n");
31 qsort(a, size, sizeof(char), QsortCallback);
32 printf("Done\n"); // Avoid tail call.
34 } // extern "C"
36 int main() {
37 char a[2] = {1, 2};
38 MyQsort(a, 2);
39 return GlobalPtr[10];
42 // Fast unwind may not unwind through qsort.
43 // CHECK-FAST: ERROR: AddressSanitizer: heap-buffer-overflow
44 // CHECK-FAST: is located 0 bytes after
45 // CHECK-FAST: #0{{.*}}operator new
46 // CHECK-FAST-NEXT: #1{{.*}}QsortCallback
48 // CHECK-SLOW: ERROR: AddressSanitizer: heap-buffer-overflow
49 // CHECK-SLOW: is located 0 bytes after
50 // CHECK-SLOW: #0{{.*}}operator new
51 // CHECK-SLOW-NEXT: #1{{.*}}QsortCallback
52 // CHECK-SLOW: #{{.*}}MyQsort
53 // CHECK-SLOW-NEXT: #{{.*}}main