This is an archive of the discontinued LLVM Phabricator instance.

[clangd] Highlight typedefs to template parameters as template parameters
ClosedPublic

Authored by ilya-biryukov on Aug 21 2019, 1:44 AM.

Details

Summary

Template parameters were handled outside addType, this led to lack of highlightings for typedefs
to template types.

This was never desirable, we want to highlight our typedefs as their underlying type.
Note that typedefs to more complicated types, like pointers and references are still not highlighted.

Event Timeline

jvikstrom created this revision.Aug 21 2019, 1:44 AM
Herald added a project: Restricted Project. · View Herald TranscriptAug 21 2019, 1:44 AM
ilya-biryukov added inline comments.Aug 21 2019, 2:22 AM
clang-tools-extra/clangd/SemanticHighlighting.cpp
177

RecursiveASTVisitor also traverses the pointer and reference types, why does it not reach the inner TemplateTypeParmType in the cases you describe?

jvikstrom marked an inline comment as done.Aug 21 2019, 3:05 AM
jvikstrom added inline comments.
clang-tools-extra/clangd/SemanticHighlighting.cpp
177

The D in using D = ... typedef ... D does not have a TypeLoc (at least not one that is visited). Therefore we use the VisitTypedefNameDecl (line 121) to get the location of D to be able to highlight it. And we just send the typeLocs typeptr to addType (which is a Pointer for using D = T*;)...

But maybe we should get the underlying type before we call addType with TypePtr? Just a while loop on line 123 basically (can we have multiple PointerTypes nested in each other actually?)

Even if we keep it in addType the comment is actually wrong, because it obviously works when for the actual "type occurrences" for D (so will fix that no matter what). This recursion will just make us add more duplicate tokens...

ilya-biryukov added inline comments.Aug 21 2019, 4:41 AM
clang-tools-extra/clangd/SemanticHighlighting.cpp
177

Could we investigate why RecursiveASTVisitor does not visit the TypeLoc of a corresponding decl?
Here's the code from RecursiveASTVisitor.h that should do the trick:

DEF_TRAVERSE_DECL(TypeAliasDecl, {
  TRY_TO(TraverseTypeLoc(D->getTypeSourceInfo()->getTypeLoc()));
  // We shouldn't traverse D->getTypeForDecl(); it's a result of
  // declaring the type alias, not something that was written in the
  // source.
})

If it doesn't, we are probably holding it wrong.

nridge added a subscriber: nridge.Aug 21 2019, 5:39 PM
jvikstrom marked an inline comment as done.Aug 22 2019, 9:11 AM
jvikstrom added inline comments.
clang-tools-extra/clangd/SemanticHighlighting.cpp
177

There just doesn't seem to be a TypeLoc for the typedef'ed Decl. We can get the T* TypeLoc (with D->getTypeSourceInfo()->getTypeLoc()). But there isn't one for D. Even the D->getTypeForDecl returns null.

And I have no idea where I'd even start debugging that. Or if it's even a bug

ilya-biryukov added inline comments.Aug 22 2019, 9:28 AM
clang-tools-extra/clangd/SemanticHighlighting.cpp
177

I may have misinterpreted the patch. Are we trying to add highlightings for the names of using aliases here? E.g. for the following range:

template <class T>
struct Foo {
  using [[D]] = T**;
};

Why isn't this handled in VisitNamedDecl?
We don't seem to call this function for TypedefNameDecl at all and it actually weird. Is this because we attempt to highlight typedefs as their underlying types?

jvikstrom marked an inline comment as done.Aug 26 2019, 4:19 AM
jvikstrom added inline comments.
clang-tools-extra/clangd/SemanticHighlighting.cpp
177

So currently using aliases and typedefs are highlighted the same as the underlying type (in most cases). One case where they aren't is when the underlying type is a template parameter (which is what this patch is trying to solve).

Why isn't this handled in VisitNamedDecl?

The Decl is actually visited in VisitNamedDecl, however as it is a TypeAliasDecl which we do not have a check for in the addToken function it will not get highlighted in that visit.

Actually, could add a check for TypeAliasDecl in addToken (should probably be a check for TypedefNameDecl to cover both using ... and typedef ...) and move the code from the VisitTypedefNameDecl to the addToken function inside that check instead.

We don't seem to call this function for TypedefNameDecl at all and it actually weird. Is this because we attempt to highlight typedefs as their underlying types?

Don't understand what you mean. What function?

ilya-biryukov added inline comments.Aug 27 2019, 2:51 AM
clang-tools-extra/clangd/SemanticHighlighting.cpp
177

So currently using aliases and typedefs are highlighted the same as the underlying type (in most cases).

Thanks for clarifying this. This is where my confusion is coming from.
A few question to try understanding the approach taken (sorry if that's too detailed, I am probably missing the context here)

  • What do we fallback to? From my reading of the code, we do not highlight them at all if the underlying type is not one of the predefined cases.
  • Why are pointers and l-value references special? What about arrays, r-value references, function types, pack expansions, etc.?

Don't understand what you mean. What function?

We don't call VisitNamedDecl from VisitTypedefNameDecl. I guess that's intentional if we try to highlight them as underlying types.

ilya-biryukov added inline comments.Aug 28 2019, 2:34 AM
clang-tools-extra/clangd/SemanticHighlighting.cpp
177

Summarizing the offline discussion:

  • we chose to highlight typedefs same as their underlying type (e.g. if it's a class we highlight the typedef as class too)
  • we need to ensure all typdefs are highlighted in some color. That means we need to handle all composite types in this function and recurse into those. That involves handling at least functions, arrays, all reference types (not just l-value references).
  • we should add tests for this.

@jvikstrom, please let me know if I missed something.

jvikstrom updated this revision to Diff 217618.Aug 28 2019, 6:15 AM

Added a RecursiveASTVisitor for finding 'underlying' types.

jvikstrom marked an inline comment as done.Aug 28 2019, 6:40 AM
jvikstrom added inline comments.
clang-tools-extra/clangd/SemanticHighlighting.cpp
177

we chose to highlight typedefs same as their underlying type (e.g. if it's a class we highlight the typedef as class too)

So this version should do that. For the typedef part.

When there are references with typedefs SomeTypedefTypeThatIsNotBuiltinAndHasNoTagDecl R = ... this will not highlight the SomeTypedefTypeThatIsNotBuiltinAndHasNoTagDecl because RecursiveASTVisitor does not traverse into typedeftypelocs, so we'd need to add the getUnderlyingType thing in VisitTypeLoc as well.
Also need to do this for auto.

And, does it make sense to highlight function typedefs as their return type?

But I'm a bit worried this current approach might not be really sensible.
The 'short circuit' when we find a TagDecl is because otherwise we get weird results at times. (for example TemplateInstantiations, if instantiated with a builtin we'd highlight that as a Primitive while it should be a class because of traversal order)

I guess it would be possible to create a TypeVisitor kind of like how you get deduced types from a typeptr, but that would be a lot of boilerplate.

Maybe what we could do instead of stopping the traversal early when finding a TagDecl is add one field for each Leaf type in UnderlyingTypeVisitor. When returning we'd then return the Record if there is one or Enum if there is one, ... , or a Builtin if none of the others exist.

Is there maybe some other way of finding the "correct" type for a type hierarchy or maybe doing the very basic ranking would be enough? (Record > Enum > TemplateTypeParm > ObjC stuff > Builtin)

ilya-biryukov added inline comments.Aug 30 2019, 3:08 AM
clang-tools-extra/clangd/SemanticHighlighting.cpp
24

The comment is a bit complicated, would it be fair to say this is trying to
find the type that should be used to highlight a typedef?

30

We need to initialize Underlying to nullptr

37

Could you make this function static or define it out of class?
That would allow the clients to avoid writing the boilerplate of creating the visitor

38

NIT: maybe simplify to T.getTypePtr()?

57

NIT: no need to specify template arguments to the base class, just use RecursiveASTVisitor::TraverseType()

63

Despite our best efforts, RecursiveASTVisitor still traverses extra stuff, e.g. array sizes

template <class T>
struct X{ 
  using foo = int a[sizeof(T)]; // will probably get 'T' now.
}

Using the recursive ast visitor will lead to hard-to-detect bugs because it visits too much. It's much simpler to write a function that will possibly visit too little, but won't visit the things we don't want to visit:

const Type* getTypeForHighlighting(QualType T) {
  while (true) {
     if (T.isAnyPointerType())
        T = T.getPointeeType();
     else if (T.isReferenceType())
        T = T.getReferencedType();
     else if (T.isArrayType()) 
        T = T.getArrayElementType();
     else if (T.isFunctionType())
        T = T.getReturnType();
     else if (T.isTypedefType())
        T = T.getUnderlyingTypedefType();
     else if (T.isDecltypeType())
        T = T.getAs<DecltypeType>().getExpression().getType(); // have to careful here, can it loop forever?
     else
        break;
  } 
}
126–127

Could we signal when addType cannot produce a highlighting?
E.g. with a vlog()? So that it's easy to detect if we missed something in practice.

177

And, does it make sense to highlight function typedefs as their return type?

I also think it's confusing. But we need to fallback to something if we see a function type (or some other unhandled type) and I believe we
currently just don't highlight those typedefs at all, which seems bad.

I would just have a separate highlighting kind for typedefs (regardless of what the underlying type is).
This would allow to avoid both technical problems (simplifying the implementation) and logical questions (e.g. 'should we highlight typedefs to functions as their return type?)

186

Why do we consider all non-tag-decl types as corner-cases?
The non-tag-decl cases are actually much more common: only classes, structs unions and enums are tag decls, all other non-composite types are not (including builtins, template types, many dependent types, etc)

clang-tools-extra/clangd/unittests/SemanticHighlightingTests.cpp
19

Just define a stream output operator for HighlightingToken.
And we should do this inside the file where HighlightingToken is declared to avoid potential ODR violations (e.g. if two tests define the same function, we are in trouble)

442

Could you also add checks that usages of these typedefs are highlighted in the same way as their declarations?

Given that we do not call getUnderlyingType() for those, I suspect they won't be. Perhaps I'm missing something

nridge added inline comments.Aug 31 2019, 9:56 PM
clang-tools-extra/clangd/SemanticHighlighting.cpp
177

I would just have a separate highlighting kind for typedefs (regardless of what the underlying type is).

FWIW, this is what Eclipse CDT does.

(Although clangd's current choice to highlight typedefs based on their target type is certainly an interesting one. From a user's point of view I can see arguments in either direction. On the one hand, revealing information about the target type is useful. On the other hand, knowing that a type is an alias for something else can also be useful.)

ilya-biryukov commandeered this revision.Sep 6 2019, 6:40 AM
ilya-biryukov edited reviewers, added: jvikstrom; removed: ilya-biryukov.
  • Replace UnderlyingTypeVisitor with a function
  • Remove PrintTo()
  • Also highlight references to typedefs
  • reformat
ilya-biryukov planned changes to this revision.Sep 6 2019, 6:46 AM

Now that I think about it more, maybe the simplest option is to not recurse into composite types at all....
E.g. a typedef to a template parameter will be highlighted as a template parameter. A typedef to a pointer can be highligthed with a separate kind (other typedefs...)
I'll do these changes, this should simplify both our model and the implementation.

  • Only highlight typedefs to non-composite types, simplifies everything
ilya-biryukov retitled this revision from [clangd] Added highlighting to types dependant on templates. to [clangd] Highlight typedefs to template parameters as template parameters.Sep 6 2019, 7:21 AM
ilya-biryukov edited the summary of this revision. (Show Details)

I'll send a separate change to fallback to a new highlighting type if the underlying type of a typedef is complicated.

hokein accepted this revision.Sep 9 2019, 1:56 AM

thanks for taking care of it.

clang-tools-extra/clangd/SemanticHighlighting.cpp
123

nit: I think the previous TSI->getTypeLoc().getTypePtr() should work?

185

nit: use auto, since the type is obvious from RHS.

clang-tools-extra/clangd/unittests/SemanticHighlightingTests.cpp
225

Is this change relevant to this patch?

This revision is now accepted and ready to land.Sep 9 2019, 1:56 AM
ilya-biryukov marked 5 inline comments as done.
  • Address comments
clang-tools-extra/clangd/SemanticHighlighting.cpp
123

Ah, good point, thanks! Fixed.
I've changed this code multiple types and didn't notice that the final result is just a no-op change.

clang-tools-extra/clangd/unittests/SemanticHighlightingTests.cpp
225

A leftover from an older version of the patch. Removed, thanks!

This revision was automatically updated to reflect the committed changes.
Herald added a project: Restricted Project. · View Herald TranscriptSep 9 2019, 2:35 AM