Files
clang-p2996/compiler-rt/test/asan/TestCases/Linux/static_tls.cc
Adhemerval Zanella 975998bf6a [asan] Enable asan for aarch64
This patch enables asan for aarch64/linux.  It marks it as 'unstable-release',
since some tests are failing due either kernel missing support of non-executable
pages in mmap or environment instability (infinite loop in juno reference
boards).

It sets decorate_proc_maps test to require stable-release, since the test expects
the shadow memory to not be executable and the support for aarch64 is only
added recently by Linux (da141706aea52c1a9 - 4.0).

It also XFAIL static_tls test for aarch64 linker may omit the __tls_get_addr call
as a TLS optimization.

llvm-svn: 244054
2015-08-05 15:13:33 +00:00

30 lines
668 B
C++

// REQUIRES: asan-64-bits
// Regression test: __tls_get_addr interceptor must recognize static TLS.
//
// RUN: %clangxx_asan -DSHARED %s -shared -o %t-so.so -fPIC
// RUN: %clangxx_asan %s -ldl -pthread -o %t %t-so.so
// RUN: env ASAN_OPTIONS=$ASAN_OPTIONS:verbosity=2 %run %t 2>&1 | FileCheck %s
// CHECK: before
// CHECK: __tls_get_addr: static tls
// CHECK: after
// XFAIL: powerpc64, aarch64
#ifndef SHARED
#include <stdio.h>
unsigned *f();
int main(int argc, char *argv[]) {
fprintf(stderr, "before\n");
f();
fprintf(stderr, "after\n");
return 0;
}
#else // SHARED
static __thread unsigned ThreadLocal;
unsigned *f() {
return &ThreadLocal;
}
#endif