Index: clang/lib/Sema/Sema.cpp =================================================================== --- clang/lib/Sema/Sema.cpp +++ clang/lib/Sema/Sema.cpp @@ -1494,6 +1494,13 @@ DeferredDiagnosticsEmitter(Sema &S) : Inherited(S), ShouldEmit(false), InOMPDeviceContext(0) {} + void VisitDeclRefExpr(DeclRefExpr *E) { + auto *D = E->getDecl(); + if (isa(D)) { + visitUsedDecl(E->getLocation(), D); + } + } + void VisitOMPTargetDirective(OMPTargetDirective *Node) { ++InOMPDeviceContext; Inherited::VisitOMPTargetDirective(Node); @@ -1525,6 +1532,11 @@ UseStack.pop_back(); Visited.erase(D); } else if (auto *VD = dyn_cast(D)) { + assert(Visited.count(D) == 0 && + "Variables should not recursively visited"); + Visited.insert(D); + assert(VD->hasGlobalStorage() && + "Should only check variables with global storage"); if (auto *Init = VD->getInit()) { auto DevTy = OMPDeclareTargetDeclAttr::getDeviceType(VD); bool IsDev = DevTy && (*DevTy == OMPDeclareTargetDeclAttr::DT_NoHost || @@ -1535,6 +1547,7 @@ if (IsDev) --InOMPDeviceContext; } + Visited.erase(D); } else Inherited::visitUsedDecl(Loc, D); } Index: clang/test/OpenMP/nvptx_target_exceptions_messages.cpp =================================================================== --- clang/test/OpenMP/nvptx_target_exceptions_messages.cpp +++ clang/test/OpenMP/nvptx_target_exceptions_messages.cpp @@ -1,5 +1,10 @@ -// RUN: %clang_cc1 -fopenmp -x c++ -triple powerpc64le-unknown-unknown -fopenmp-targets=nvptx64-nvidia-cuda -emit-llvm-bc %s -o %t-ppc-host.bc -fexceptions -fcxx-exceptions -// RUN: %clang_cc1 -verify -fopenmp -x c++ -triple nvptx64-unknown-unknown -fopenmp-targets=nvptx64-nvidia-cuda -emit-llvm %s -fopenmp-is-device -fopenmp-host-ir-file-path %t-ppc-host.bc -o - -fexceptions -fcxx-exceptions -ferror-limit 100 +// RUN: %clang_cc1 -fopenmp -x c++ -triple powerpc64le-unknown-unknown \ +// RUN: -verify=host -fopenmp-targets=nvptx64-nvidia-cuda -emit-llvm-bc \ +// RUN: %s -o %t-ppc-host.bc -fexceptions -fcxx-exceptions +// RUN: %clang_cc1 -verify -fopenmp -x c++ -triple nvptx64-unknown-unknown \ +// RUN: -fopenmp-targets=nvptx64-nvidia-cuda -emit-llvm %s \ +// RUN: -fopenmp-is-device -fopenmp-host-ir-file-path %t-ppc-host.bc -o - \ +// RUN: -fexceptions -fcxx-exceptions -ferror-limit 100 #ifndef HEADER #define HEADER @@ -81,4 +86,17 @@ int foobar1() { throw 1; } int foobar2() { throw 1; } // expected-error {{cannot use 'throw' with exceptions disabled}} + +int foobar3(); +int (*C)() = &foobar3; // expected-warning {{declaration is not declared in any declare target region}} + // host-warning@-1 {{declaration is not declared in any declare target region}} +#pragma omp declare target +int (*D)() = C; // expected-note {{used here}} + // host-note@-1 {{used here}} +#pragma omp end declare target +int foobar3() { throw 1; } + +// Check no infinite recursion in deferred diagnostic emitter. +long E = (long)&E; + #endif // HEADER