2014-11-11 12:05:39 +08:00
|
|
|
// no PCH
|
2015-07-14 06:54:53 +08:00
|
|
|
// RUN: %clang_cc1 -fopenmp -fnoopenmp-use-tls -emit-llvm -include %s -include %s %s -o - | FileCheck %s
|
2014-11-11 12:05:39 +08:00
|
|
|
// with PCH
|
2015-07-14 06:54:53 +08:00
|
|
|
// RUN: %clang_cc1 -fopenmp -fnoopenmp-use-tls -emit-llvm -chain-include %s -chain-include %s %s -o - | FileCheck %s
|
|
|
|
// no PCH
|
|
|
|
// RUN: %clang_cc1 -fopenmp -emit-llvm -include %s -include %s %s -o - | FileCheck %s -check-prefix=CHECK-TLS
|
|
|
|
// with PCH
|
|
|
|
// RUN: %clang_cc1 -fopenmp -emit-llvm -chain-include %s -chain-include %s %s -o - | FileCheck %s -check-prefix=CHECK-TLS
|
2015-07-14 12:00:18 +08:00
|
|
|
|
|
|
|
// REQUIRES: tls
|
|
|
|
|
2014-11-11 12:05:39 +08:00
|
|
|
#if !defined(PASS1)
|
|
|
|
#define PASS1
|
|
|
|
|
|
|
|
extern "C" int* malloc (int size);
|
|
|
|
int *a = malloc(20);
|
|
|
|
|
|
|
|
#elif !defined(PASS2)
|
|
|
|
#define PASS2
|
|
|
|
|
|
|
|
#pragma omp threadprivate(a)
|
|
|
|
|
|
|
|
#else
|
|
|
|
|
|
|
|
// CHECK: call {{.*}} @__kmpc_threadprivate_register(
|
2015-07-14 06:54:53 +08:00
|
|
|
// CHECK-TLS: @a = {{.*}}thread_local {{.*}}global {{.*}}i32*
|
2014-11-11 12:05:39 +08:00
|
|
|
|
|
|
|
// CHECK-LABEL: foo
|
2015-07-14 06:54:53 +08:00
|
|
|
// CHECK-TLS-LABEL: foo
|
2014-11-11 12:05:39 +08:00
|
|
|
int foo() {
|
|
|
|
return *a;
|
|
|
|
// CHECK: call {{.*}} @__kmpc_global_thread_num(
|
|
|
|
// CHECK: call {{.*}} @__kmpc_threadprivate_cached(
|
2015-07-14 06:54:53 +08:00
|
|
|
// CHECK-TLS: call {{.*}}i32** @_ZTW1a()
|
2014-11-11 12:05:39 +08:00
|
|
|
}
|
2015-07-14 06:54:53 +08:00
|
|
|
|
|
|
|
// CHECK-TLS: define {{.*}}i32** @_ZTW1a()
|
|
|
|
|
2014-11-11 12:05:39 +08:00
|
|
|
#endif
|