Skip to content
Snippets Groups Projects
Commit 1a5e6db2 authored by Artem Belevich's avatar Artem Belevich
Browse files

[cuda] Preserve TLS storage class of host variable even if it's a

device-side compilation.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@236029 91177308-0d34-0410-b5e6-96231b3b80d8
parent ce80aa27
No related branches found
No related tags found
No related merge requests found
...@@ -5769,12 +5769,16 @@ Sema::ActOnVariableDeclarator(Scope *S, Declarator &D, DeclContext *DC, ...@@ -5769,12 +5769,16 @@ Sema::ActOnVariableDeclarator(Scope *S, Declarator &D, DeclContext *DC,
diag::err_thread_non_global) diag::err_thread_non_global)
<< DeclSpec::getSpecifierName(TSCS); << DeclSpec::getSpecifierName(TSCS);
else if (!Context.getTargetInfo().isTLSSupported()) { else if (!Context.getTargetInfo().isTLSSupported()) {
if (getLangOpts().CUDA) if (getLangOpts().CUDA) {
// Postpone error emission until we've collected attributes required to // Postpone error emission until we've collected attributes required to
// figure out whether it's a host or device variable and whether the // figure out whether it's a host or device variable and whether the
// error should be ignored. // error should be ignored.
EmitTLSUnsupportedError = true; EmitTLSUnsupportedError = true;
else // We still need to mark the variable as TLS so it shows up in AST with
// proper storage class for other tools to use even if we're not going
// to emit any code for it.
NewVD->setTSCSpec(TSCS);
} else
Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(), Diag(D.getDeclSpec().getThreadStorageClassSpecLoc(),
diag::err_thread_unsupported); diag::err_thread_unsupported);
} else } else
......
// RUN: %clang_cc1 -triple x86_64-unknown-linux-gnu -fsyntax-only -verify %s // RUN: %clang_cc1 -triple x86_64-unknown-linux-gnu -fsyntax-only -verify %s
// RUN: %clang_cc1 -triple nvptx-unknown-cuda -fsyntax-only -verify -fcuda-is-device %s // RUN: %clang_cc1 -triple nvptx-unknown-cuda -fsyntax-only -verify -fcuda-is-device %s
//
// We run clang_cc1 with 'not' because source file contains
// intentional errors. CC1 failure is expected and must be ignored
// here. We're interested in what ends up in AST and that's what
// FileCheck verifies.
// RUN: not %clang_cc1 -triple x86_64-unknown-linux-gnu -fsyntax-only -ast-dump %s \
// RUN: | FileCheck %s --check-prefix=CHECK-ALL --check-prefix=CHECK-HOST
// RUN: not %clang_cc1 -triple nvptx-unknown-cuda -fsyntax-only -ast-dump -fcuda-is-device %s \
// RUN: | FileCheck %s --check-prefix=CHECK-ALL --check-prefix=CHECK-DEVICE
#include "Inputs/cuda.h" #include "Inputs/cuda.h"
// Host (x86) supports TLS and device-side compilation should ignore // Host (x86) supports TLS and device-side compilation should ignore
// host variables. No errors in either case. // host variables. No errors in either case.
int __thread host_tls_var; int __thread host_tls_var;
// CHECK-ALL: host_tls_var 'int' tls
#if defined(__CUDA_ARCH__) #if defined(__CUDA_ARCH__)
// NVPTX does not support TLS // NVPTX does not support TLS
__device__ int __thread device_tls_var; // expected-error {{thread-local storage is not supported for the current target}} __device__ int __thread device_tls_var; // expected-error {{thread-local storage is not supported for the current target}}
// CHECK-DEVICE: device_tls_var 'int' tls
__shared__ int __thread shared_tls_var; // expected-error {{thread-local storage is not supported for the current target}} __shared__ int __thread shared_tls_var; // expected-error {{thread-local storage is not supported for the current target}}
// CHECK-DEVICE: shared_tls_var 'int' tls
#else #else
// Device-side vars should not produce any errors during host-side // Device-side vars should not produce any errors during host-side
// compilation. // compilation.
__device__ int __thread device_tls_var; __device__ int __thread device_tls_var;
// CHECK-HOST: device_tls_var 'int' tls
__shared__ int __thread shared_tls_var; __shared__ int __thread shared_tls_var;
// CHECK-HOST: shared_tls_var 'int' tls
#endif #endif
__global__ void g1(int x) {} __global__ void g1(int x) {}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment