This is an archive of the discontinued LLVM Phabricator instance.

[OpenMP] Attribute target diagnostics properly
ClosedPublic

Authored by jdoerfert on Feb 2 2021, 5:50 PM.

Details

Summary

Type errors in function declarations were not (always) diagnosed prior
to this patch. Furthermore, certain remarks did not get associated
properly which caused them to be emitted multiple times.

Diff Detail

Event Timeline

jdoerfert created this revision.Feb 2 2021, 5:50 PM
jdoerfert requested review of this revision.Feb 2 2021, 5:50 PM
Herald added a project: Restricted Project. · View Herald TranscriptFeb 2 2021, 5:50 PM
Herald added a subscriber: sstefan1. · View Herald Transcript
jdoerfert updated this revision to Diff 321012.Feb 2 2021, 10:51 PM

Rebase on top of D95903

friendly ping, also D95928.

These were supposed to be backported into 12 :(

Fznamznon added inline comments.Feb 15 2021, 7:45 AM
clang/lib/Sema/Sema.cpp
1805

So, we assume that lexical context is a function and if it is not, we assume that the value declaration being checked is a function. Can we actually break this assumption?
For example, will something like this work correctly:

struct S {
    __float128 A = 1;
    int bar = 2 * A;
};
#pragma omp declare target
  S s;
#pragma omp end declare target
1842

I was a bit confused by FPTy variable name and already started writing a comment that we already checked a case FunctionProtoType case, then I realized that it is a check for Function*No*Prototype :) . Can we change FPTy to something closer to FunctionNoProtoType ?

clang/test/OpenMP/nvptx_unsupported_type_messages.cpp
42–43

So, boo is diagnosed two times, at the point where it actually used and where it is defined, it looks a bit like a duplication isn't it? I think it makes sense to diagnose only usage point with note pointing to the definition.

Thanks for taking a look!

clang/lib/Sema/Sema.cpp
1805

This is diagnosed neither with nor without the patch.
I'm not sure we should either because 2 * A is a constant expression.
We can make the example more complex using a constructor but I'd say that is not related to this patch either way.

clang/test/OpenMP/nvptx_unsupported_type_messages.cpp
42–43

It is diagnosed twice, right. I don't think this is a problem of this patch though, see for example line 54 on the left where we emit the boo error 4 times before. Also, take a look at 181 and following in this file. With this patch we reduce the number of times the error is emitted from 3 to 1. It's a bit of a mixed bag but I think this makes it better.

JonChesterfield accepted this revision.Feb 15 2021, 9:44 AM

I agree this is an improvement on the current status and should land.

Reading through it has made me nervous about our current semantic checking. In particular, I'm not sure suppressing error messages from code that ultimately proves to be discarded as the same as not parsing code that ultimately was not required, but that design choice seems to have been made a long time ago. Presumably lazy diagnostics had better engineering properties than lazy parsing and codegen - I'd be interested to see docs/emails about the early design choices for single source target offloading if someone has them on hand.

This revision is now accepted and ready to land.Feb 15 2021, 9:44 AM
jdoerfert marked an inline comment as done.

Rename variable as requested

This revision was landed with ongoing or failed builds.Feb 15 2021, 11:17 AM
This revision was automatically updated to reflect the committed changes.