I’m using clang-tool to extract type names in template arguments. For example,
typedef unsigned int vectors32_t[32];
template
func(T *const vec) {
…
}
int main() {
…
func<vector32_t>(…);
…
}
I’d like to get the type name “vector32_t” from func’s template argument. So I use clang::FunctionDecl::getTemplateSpecializationArgs() to get func’s template argument list, extract the argument from the list, and then try to get the type name for the argument by using clang::TemplateArgument::getAsType().getAsString(). However, “unsigned int [32]” is returned rather than “vector32_t”.
Any thoughts on how I can extract the type alias name “vector32_t” in my above example?
Once you have the FunctionDecl you've gone too far and any type sugar
is lost, I believe. (because func<vectors32_t> is the same function as
func<unsigned int[32]> or any other typedef/alias/etc of that type
parameter, etc)
I think you'd have to be able to see the call to the function, and go
from there to find the type as written.
Ha, deja vu - Pratyush (cc’d) was just dealing with this exact issue in another context the other day, and Oliver we were kind of dealing with this same general issue the other week re: attributes.
You definitely should be able to get the full type sugar without fuss. The obstacle to that is in
For some reason within that function the Converted template argument is always constructed with Context.getCanonicalType(ParamType), instead of ParamType, which erases the type sugar needlessly.
Correction: I did not notice that was a typename parameter, not a non-type template parameter as Pratyush addressed — so the issue is broader. Perhaps CheckTemplateArgument(TemplateTypeParmDecl *, …) needs to be addressed too, e.g. perhaps in this line the original type should be used instead of the canonical type:
Correction: I did not notice that was a typename parameter, not a non-type template parameter as Pratyush addressed — so the issue is broader. Perhaps CheckTemplateArgument(TemplateTypeParmDecl *, …) needs to be addressed too, e.g. perhaps in this line the original type should be used instead of the canonical type:
Yes you’re right, good point. In the FunctionDecl level the template argument types must be canonical.
Oliver definitely take David’s advice to get the template arguments from the DeclRefExpr referenced in the CallExpr — hopefully that should contain the proper type sugar.
Pratyush, this unfortunately may have the implications for the solution you employed in https://reviews.llvm.org/D77598 at my suggestion, in order to distinguish between deduced and non-deduced non-type template arguments.
// Note: this renders CanonParamType non-canonical, but since every instantiation // of this argument will be wrapped in an AutoType (since Param->getType() will always // be an AutoType for this template), there should be no difference in how arguments // are distinguished. if (Param->getType()->getAs()) CanonParamType = Context.getAutoType(CanonParamType, AutoTypeKeyword::Auto, false, false); |
Thanks David and Dave for your nice suggestions and thoughts!
Unfortunately the case I need to handle is a little more complex than I thought, as implicit template specification is involved. Now the full example looks like this (differences from the previous example is highlighted):
typedef unsigned int vectors32_t[32];
template
func(T *const vec) {
…
}
int main() {
…
vector32_t *vecPtr = …;
func(vecPtr);
…
}
I didn’t find a way to get the type alias name (“vector32_t”) from an implicit template argument by using CallExpr or DeclRefExpr. Actually it seems information about “vector32_t” can only be retrieved from the typedef and the declaration of “vecPtr”.
There will not be any template arguments in the DeclRefExpr in that example, as nothing was specifically written in brackets.
If instead of func(vecPtr) you wrote func<vector32_t>(vecPtr), there would be a template argument in the DeclRefExpr with the proper sugared type (i.e. vector32_t, not unsigned int[32]).
But the DeclRefExpr does not implicitly generate this template argument, and probably should not, because that would muddy its purpose of representing the particular syntax used in referring to some declaration.
So, I think your best bet if you really want to refer to vector32_t instead of unsigned int[32] is to either a) explicitly specify the template arguments in your func calls or b) define vector32_t as a wrapper class instead of a typedef (such that when passed as a template argument it would be instantiated separately from an unsigned int[32] argument).