25#include "llvm/ADT/SmallVector.h"
26#include "llvm/Support/ErrorHandling.h"
27#include "llvm/Support/MathExtras.h"
43class TypeLocRanger :
public TypeLocVisitor<TypeLocRanger, SourceRange> {
45#define ABSTRACT_TYPELOC(CLASS, PARENT)
46#define TYPELOC(CLASS, PARENT) \
47 SourceRange Visit##CLASS##TypeLoc(CLASS##TypeLoc TyLoc) { \
48 return TyLoc.getLocalSourceRange(); \
50#include "clang/AST/TypeLocNodes.def"
56 if (TL.
isNull())
return SourceRange();
57 return TypeLocRanger().Visit(TL);
64#define ABSTRACT_TYPELOC(CLASS, PARENT)
65#define TYPELOC(CLASS, PARENT) \
66 unsigned Visit##CLASS##TypeLoc(CLASS##TypeLoc TyLoc) { \
67 return TyLoc.getLocalDataAlignment(); \
69#include "clang/AST/TypeLocNodes.def"
76 if (
Ty.isNull())
return 1;
77 return TypeAligner().Visit(
TypeLoc(
Ty,
nullptr));
84#define ABSTRACT_TYPELOC(CLASS, PARENT)
85#define TYPELOC(CLASS, PARENT) \
86 unsigned Visit##CLASS##TypeLoc(CLASS##TypeLoc TyLoc) { \
87 return TyLoc.getLocalDataSize(); \
89#include "clang/AST/TypeLocNodes.def"
98 unsigned MaxAlign = 1;
101 MaxAlign = std::max(Align, MaxAlign);
102 Total = llvm::alignTo(Total, Align);
103 Total += TypeSizer().Visit(TyLoc);
106 Total = llvm::alignTo(Total, MaxAlign);
114#define ABSTRACT_TYPELOC(CLASS, PARENT)
115#define TYPELOC(CLASS, PARENT) \
116 TypeLoc Visit##CLASS##TypeLoc(CLASS##TypeLoc TyLoc) { \
117 return TyLoc.getNextTypeLoc(); \
119#include "clang/AST/TypeLocNodes.def"
127 return NextLoc().Visit(TL);
137#define ABSTRACT_TYPELOC(CLASS, PARENT)
138#define TYPELOC(CLASS, PARENT) \
140 CLASS##TypeLoc TLCasted = TL.castAs<CLASS##TypeLoc>(); \
141 TLCasted.initializeLocal(Context, Loc); \
142 TL = TLCasted.getNextTypeLoc(); \
146#include "clang/AST/TypeLocNodes.def"
157 TypeLocCopier(TypeLoc source) : Source(source) {}
159#define ABSTRACT_TYPELOC(CLASS, PARENT)
160#define TYPELOC(CLASS, PARENT) \
161 void Visit##CLASS##TypeLoc(CLASS##TypeLoc dest) { \
162 dest.copyLocal(Source.castAs<CLASS##TypeLoc>()); \
164#include "clang/AST/TypeLocNodes.def"
188 TypeLocCopier(other).Visit(TL);
205 case FunctionNoProto:
207 case DependentSizedArray:
208 case IncompleteArray:
235 return Last.getLocalSourceRange().getEnd();
238 case DependentSizedArray:
239 case IncompleteArray:
241 case FunctionNoProto:
252 case ObjCObjectPointer:
260 case LValueReference:
261 case RValueReference:
280 static bool isTypeSpec(
TypeLoc _) {
return false; }
282#define ABSTRACT_TYPELOC(CLASS, PARENT)
283#define TYPELOC(CLASS, PARENT) \
284 bool Visit##CLASS##TypeLoc(CLASS##TypeLoc TyLoc) { \
285 return isTypeSpec(TyLoc); \
287#include "clang/AST/TypeLocNodes.def"
300bool TypeSpecTypeLoc::isKind(
const TypeLoc &TL) {
302 return TSTChecker().
Visit(TL);
326 case BuiltinType::Void:
328 case BuiltinType::Bool:
330 case BuiltinType::Char_U:
331 case BuiltinType::Char_S:
333 case BuiltinType::Char8:
335 case BuiltinType::Char16:
337 case BuiltinType::Char32:
339 case BuiltinType::WChar_S:
340 case BuiltinType::WChar_U:
342 case BuiltinType::UChar:
343 case BuiltinType::UShort:
344 case BuiltinType::UInt:
345 case BuiltinType::ULong:
346 case BuiltinType::ULongLong:
347 case BuiltinType::UInt128:
348 case BuiltinType::SChar:
349 case BuiltinType::Short:
350 case BuiltinType::Int:
351 case BuiltinType::Long:
352 case BuiltinType::LongLong:
353 case BuiltinType::Int128:
354 case BuiltinType::Half:
355 case BuiltinType::Float:
356 case BuiltinType::Double:
357 case BuiltinType::LongDouble:
358 case BuiltinType::Float16:
359 case BuiltinType::Float128:
360 case BuiltinType::Ibm128:
361 case BuiltinType::ShortAccum:
362 case BuiltinType::Accum:
363 case BuiltinType::LongAccum:
364 case BuiltinType::UShortAccum:
365 case BuiltinType::UAccum:
366 case BuiltinType::ULongAccum:
367 case BuiltinType::ShortFract:
368 case BuiltinType::Fract:
369 case BuiltinType::LongFract:
370 case BuiltinType::UShortFract:
371 case BuiltinType::UFract:
372 case BuiltinType::ULongFract:
373 case BuiltinType::SatShortAccum:
374 case BuiltinType::SatAccum:
375 case BuiltinType::SatLongAccum:
376 case BuiltinType::SatUShortAccum:
377 case BuiltinType::SatUAccum:
378 case BuiltinType::SatULongAccum:
379 case BuiltinType::SatShortFract:
380 case BuiltinType::SatFract:
381 case BuiltinType::SatLongFract:
382 case BuiltinType::SatUShortFract:
383 case BuiltinType::SatUFract:
384 case BuiltinType::SatULongFract:
385 case BuiltinType::BFloat16:
386 llvm_unreachable(
"Builtin type needs extra local data!");
389 case BuiltinType::NullPtr:
390 case BuiltinType::Overload:
391 case BuiltinType::Dependent:
392 case BuiltinType::UnresolvedTemplate:
393 case BuiltinType::BoundMember:
394 case BuiltinType::UnknownAny:
395 case BuiltinType::ARCUnbridgedCast:
396 case BuiltinType::PseudoObject:
397 case BuiltinType::ObjCId:
398 case BuiltinType::ObjCClass:
399 case BuiltinType::ObjCSel:
400#define IMAGE_TYPE(ImgType, Id, SingletonId, Access, Suffix) \
401 case BuiltinType::Id:
402#include "clang/Basic/OpenCLImageTypes.def"
403#define EXT_OPAQUE_TYPE(ExtType, Id, Ext) \
404 case BuiltinType::Id:
405#include "clang/Basic/OpenCLExtensionTypes.def"
406 case BuiltinType::OCLSampler:
407 case BuiltinType::OCLEvent:
408 case BuiltinType::OCLClkEvent:
409 case BuiltinType::OCLQueue:
410 case BuiltinType::OCLReserveID:
411#define SVE_TYPE(Name, Id, SingletonId) \
412 case BuiltinType::Id:
413#include "clang/Basic/AArch64ACLETypes.def"
414#define PPC_VECTOR_TYPE(Name, Id, Size) \
415 case BuiltinType::Id:
416#include "clang/Basic/PPCTypes.def"
417#define RVV_TYPE(Name, Id, SingletonId) case BuiltinType::Id:
418#include "clang/Basic/RISCVVTypes.def"
419#define WASM_TYPE(Name, Id, SingletonId) case BuiltinType::Id:
420#include "clang/Basic/WebAssemblyReferenceTypes.def"
421#define AMDGPU_TYPE(Name, Id, SingletonId, Width, Align) case BuiltinType::Id:
422#include "clang/Basic/AMDGPUTypes.def"
423#define HLSL_INTANGIBLE_TYPE(Name, Id, SingletonId) case BuiltinType::Id:
424#include "clang/Basic/HLSLIntangibleTypes.def"
425 case BuiltinType::BuiltinFn:
426 case BuiltinType::IncompleteMatrixIdx:
427 case BuiltinType::ArraySection:
428 case BuiltinType::OMPArrayShaping:
429 case BuiltinType::OMPIterator:
433 llvm_unreachable(
"Invalid BuiltinType Kind!");
438 TL = PTL.getInnerLoc();
444 const Attr *A = ATL.getAttr();
462 if (
attr.isQualifier())
return attr;
463 return attr.getModifiedLoc().findExplicitQualifierLoc();
476 case TypeLoc::DependentName:
478 case TypeLoc::TemplateSpecialization:
480 case TypeLoc::DeducedTemplateSpecialization:
483 case TypeLoc::Record:
484 case TypeLoc::InjectedClassName:
486 case TypeLoc::Typedef:
488 case TypeLoc::UnresolvedUsing:
499 case TypeLoc::TemplateSpecialization: {
503 Loc = TL.getTemplateNameLoc();
506 case TypeLoc::DeducedTemplateSpecialization: {
510 Loc = TL.getTemplateNameLoc();
513 case TypeLoc::DependentName:
516 case TypeLoc::Record:
517 case TypeLoc::InjectedClassName:
519 case TypeLoc::Typedef:
521 case TypeLoc::UnresolvedUsing:
537 .getNonElaboratedBeginLoc();
538 case TypeLoc::TemplateSpecialization: {
541 return QualifierLoc.getBeginLoc();
542 return T.getTemplateNameLoc();
544 case TypeLoc::DeducedTemplateSpecialization: {
547 return QualifierLoc.getBeginLoc();
548 return T.getTemplateNameLoc();
550 case TypeLoc::DependentName: {
553 return QualifierLoc.getBeginLoc();
554 return T.getNameLoc();
557 case TypeLoc::Record:
558 case TypeLoc::InjectedClassName: {
561 return QualifierLoc.getBeginLoc();
562 return T.getNameLoc();
564 case TypeLoc::Typedef: {
567 return QualifierLoc.getBeginLoc();
568 return T.getNameLoc();
570 case TypeLoc::UnresolvedUsing: {
573 return QualifierLoc.getBeginLoc();
574 return T.getNameLoc();
576 case TypeLoc::Using: {
579 return QualifierLoc.getBeginLoc();
580 return T.getNameLoc();
605 Context.getTrivialTypeSourceInfo(
606 getTypePtr()->getTypeArgsAsWritten()[i], Loc));
654 T.setElaboratedKeywordLoc(
T.getTypePtr()->getKeyword() !=
667 return Builder.getWithLocInContext(Context);
686 Data.ElaboratedKWLoc = ElaboratedKeywordLoc;
692 getTypePtr()->getTemplateName().getQualifier());
694 if (QualifierLoc && !BeginLoc.
isValid())
697 Data.TemplateKWLoc = TemplateKeywordLoc;
699 BeginLoc = TemplateKeywordLoc;
701 Data.NameLoc = NameLoc;
705 Data.LAngleLoc = LAngleLoc;
714 set(ElaboratedKeywordLoc, QualifierLoc, TemplateKeywordLoc, NameLoc,
717 assert(TAL.
size() == ArgInfos.size());
718 for (
unsigned I = 0, N = TAL.
size(); I != N; ++I)
719 ArgInfos[I] = TAL[I].getLocInfo();
725 auto [Qualifier, HasTemplateKeyword] =
726 getTypePtr()->getTemplateName().getQualifierAndTemplateKeyword();
737 QualifierLoc = Builder.getWithLocInContext(Context);
741 set(ElaboratedKeywordLoc, QualifierLoc,
751 for (
unsigned i = 0, e = Args.size(); i != e; ++i) {
754 llvm_unreachable(
"Impossible TemplateArgument");
769 Context.getTrivialTypeSourceInfo(Args[i].getAsType(),
778 Builder.MakeTrivial(Context, DTN->getQualifier(), Loc);
780 Builder.MakeTrivial(Context, QTN->getQualifier(), Loc);
783 Context, Loc, Builder.getWithLocInContext(Context), Loc,
800 const AutoType *AT) {
803 AT->getTypeConstraintConcept()->getDeclName());
804 unsigned size = AT->getTypeConstraintArguments().size();
807 Context, AT->getTypeConstraintArguments(), TALI.data(), Loc);
809 for (
unsigned i = 0; i < size; ++i) {
817 AT->getTypeConstraintConcept(),
836 Context,
getTypePtr()->getTemplateName().getQualifier(), Loc));
842 class GetContainedAutoTypeLocVisitor :
854 return Visit(
T.getUnqualifiedLoc());
857 TypeLoc VisitPointerTypeLoc(PointerTypeLoc
T) {
858 return Visit(
T.getPointeeLoc());
861 TypeLoc VisitBlockPointerTypeLoc(BlockPointerTypeLoc
T) {
862 return Visit(
T.getPointeeLoc());
865 TypeLoc VisitReferenceTypeLoc(ReferenceTypeLoc
T) {
866 return Visit(
T.getPointeeLoc());
869 TypeLoc VisitMemberPointerTypeLoc(MemberPointerTypeLoc
T) {
870 return Visit(
T.getPointeeLoc());
873 TypeLoc VisitArrayTypeLoc(ArrayTypeLoc
T) {
874 return Visit(
T.getElementLoc());
877 TypeLoc VisitFunctionTypeLoc(FunctionTypeLoc
T) {
878 return Visit(
T.getReturnLoc());
881 TypeLoc VisitParenTypeLoc(ParenTypeLoc
T) {
882 return Visit(
T.getInnerLoc());
885 TypeLoc VisitAttributedTypeLoc(AttributedTypeLoc
T) {
886 return Visit(
T.getModifiedLoc());
889 TypeLoc VisitBTFTagAttributedTypeLoc(BTFTagAttributedTypeLoc
T) {
890 return Visit(
T.getWrappedLoc());
894 VisitHLSLAttributedResourceTypeLoc(HLSLAttributedResourceTypeLoc
T) {
895 return Visit(
T.getWrappedLoc());
898 TypeLoc VisitMacroQualifiedTypeLoc(MacroQualifiedTypeLoc
T) {
899 return Visit(
T.getInnerLoc());
902 TypeLoc VisitAdjustedTypeLoc(AdjustedTypeLoc
T) {
903 return Visit(
T.getOriginalLoc());
906 TypeLoc VisitPackExpansionTypeLoc(PackExpansionTypeLoc
T) {
907 return Visit(
T.getPatternLoc());
914 TypeLoc Res = GetContainedAutoTypeLocVisitor().Visit(*
this);
922 return TSTL.getTemplateKeywordLoc();
This file provides AST data structures related to concepts.
Defines the clang::ASTContext interface.
static Decl::Kind getKind(const Decl *D)
Defines the C++ template declaration subclasses.
Defines the clang::SourceLocation class and associated facilities.
Defines various enumerations that describe declaration and type specifiers.
static ConceptReference * createTrivialConceptReference(ASTContext &Context, SourceLocation Loc, const AutoType *AT)
static const unsigned TypeLocMaxDataAlign
static NestedNameSpecifierLoc initializeQualifier(ASTContext &Context, NestedNameSpecifier Qualifier, SourceLocation Loc)
static void initializeElaboratedKeyword(TL T, SourceLocation Loc)
Defines the clang::TypeLoc interface and its subclasses.
__DEVICE__ void * memcpy(void *__a, const void *__b, size_t __c)
Holds long-lived AST nodes (such as types and decls) that can be referred to throughout the semantic ...
TypeSourceInfo * getTrivialTypeSourceInfo(QualType T, SourceLocation Loc=SourceLocation()) const
Allocate a TypeSourceInfo where all locations have been initialized to a given location,...
Attr - This represents one attribute.
SourceLocation getLocation() const
SourceRange getRange() const
Type source information for an attributed type.
const Attr * getAttr() const
The type attribute.
SourceRange getLocalSourceRange() const
void initializeLocal(ASTContext &Context, SourceLocation Loc)
void setConceptReference(ConceptReference *CR)
bool isConstrained() const
void setRParenLoc(SourceLocation Loc)
const BTFTypeTagAttr * getAttr() const
The btf_type_tag attribute.
SourceRange getLocalSourceRange() const
TypeSpecifierType getWrittenTypeSpec() const
bool needsExtraLocalData() const
WrittenBuiltinSpecs & getWrittenBuiltinSpecs()
A reference to a concept and its template args, as it appears in the code.
static ConceptReference * Create(const ASTContext &C, NestedNameSpecifierLoc NNS, SourceLocation TemplateKWLoc, DeclarationNameInfo ConceptNameInfo, NamedDecl *FoundDecl, TemplateDecl *NamedConcept, const ASTTemplateArgumentListInfo *ArgsAsWritten)
const TagType * getTypePtr() const
TypeOfTypeLocInfo * getLocalData() const
Expr * getCountExpr() const
SourceRange getLocalSourceRange() const
void setQualifierLoc(NestedNameSpecifierLoc QualifierLoc)
void initializeLocal(ASTContext &Context, SourceLocation Loc)
void setTemplateNameLoc(SourceLocation Loc)
void initializeLocal(ASTContext &Context, SourceLocation Loc)
void setNameLoc(SourceLocation Loc)
void setQualifierLoc(NestedNameSpecifierLoc QualifierLoc)
bool hasTrailingReturn() const
Whether this function prototype has a trailing return type.
const TypeClass * getTypePtr() const
Class that aids in the construction of nested-name-specifiers along with source-location information ...
void MakeTrivial(ASTContext &Context, NestedNameSpecifier Qualifier, SourceRange R)
Make a new nested-name-specifier from incomplete source-location information.
A C++ nested-name-specifier augmented with source location information.
NestedNameSpecifier getNestedNameSpecifier() const
Retrieve the nested-name-specifier to which this instance refers.
SourceLocation getBeginLoc() const
Retrieve the location of the beginning of this nested-name-specifier.
void * getOpaqueData() const
Retrieve the opaque pointer that refers to source-location data.
Represents a C++ nested name specifier, such as "\::std::vector<int>::".
Wraps an ObjCPointerType with source location information.
SourceLocation getStarLoc() const
void setTypeArgsRAngleLoc(SourceLocation Loc)
void initializeLocal(ASTContext &Context, SourceLocation Loc)
unsigned getNumTypeArgs() const
unsigned getNumProtocols() const
void setTypeArgsLAngleLoc(SourceLocation Loc)
void setTypeArgTInfo(unsigned i, TypeSourceInfo *TInfo)
void setProtocolLAngleLoc(SourceLocation Loc)
void setProtocolRAngleLoc(SourceLocation Loc)
void setHasBaseTypeAsWritten(bool HasBaseType)
void setProtocolLoc(unsigned i, SourceLocation Loc)
unsigned getNumProtocols() const
void setProtocolLoc(unsigned i, SourceLocation Loc)
void setProtocolLAngleLoc(SourceLocation Loc)
void initializeLocal(ASTContext &Context, SourceLocation Loc)
void setProtocolRAngleLoc(SourceLocation Loc)
void setNameLoc(SourceLocation Loc)
A (possibly-)qualified type.
bool hasLocalQualifiers() const
Determine whether this particular QualType instance has any qualifiers, without looking through any t...
Represents a template name as written in source code.
Wrapper of type source information for a type with non-trivial direct qualifiers.
Encodes a location in the source.
bool isValid() const
Return true if this is a valid SourceLocation object.
A trivial tuple used to represent a source range.
SourceLocation getBegin() const
SourceRange getSourceRange() const LLVM_READONLY
SourceLocation tokens are not useful in isolation - they are low level value objects created/interpre...
bool isCompleteDefinition() const
Return true if this decl has its body fully specified.
TagDecl * getOriginalDecl() const
bool isDefinition() const
True if the tag was defined in this type specifier.
A convenient class for passing around template argument information.
SourceLocation getRAngleLoc() const
void addArgument(const TemplateArgumentLoc &Loc)
SourceLocation getLAngleLoc() const
Location wrapper for a TemplateArgument.
@ Declaration
The template argument is a declaration that was provided for a pointer, reference,...
@ Template
The template argument is a template name that was provided for a template template parameter.
@ StructuralValue
The template argument is a non-type template argument that can't be represented by the special-case D...
@ Pack
The template argument is actually a parameter pack.
@ TemplateExpansion
The template argument is a pack expansion of a template name that was provided for a template templat...
@ NullPtr
The template argument is a null pointer or null pointer to member that was provided for a non-type te...
@ Type
The template argument is a type.
@ Null
Represents an empty template argument, e.g., one that has not been deduced.
@ Integral
The template argument is an integral value stored in an llvm::APSInt that was provided for an integra...
@ Expression
The template argument is an expression, and we've not resolved it to one of the other forms yet,...
Represents a C++ template name within the type system.
static void initializeArgLocs(ASTContext &Context, ArrayRef< TemplateArgument > Args, TemplateArgumentLocInfo *ArgInfos, SourceLocation Loc)
MutableArrayRef< TemplateArgumentLocInfo > getArgLocInfos()
void set(SourceLocation ElaboratedKeywordLoc, NestedNameSpecifierLoc QualifierLoc, SourceLocation TemplateKeywordLoc, SourceLocation NameLoc, SourceLocation LAngleLoc, SourceLocation RAngleLoc)
void initializeLocal(ASTContext &Context, SourceLocation Loc)
RetTy Visit(TypeLoc TyLoc)
Base wrapper for a particular "section" of type source info.
SourceLocation findNullabilityLoc() const
Find the location of the nullability specifier (__nonnull, __nullable, or __null_unspecifier),...
static unsigned getLocalAlignmentForType(QualType Ty)
Returns the alignment of type source info data block for the given type.
TypeLoc findExplicitQualifierLoc() const
Find a type with the location of an explicit type qualifier.
QualType getType() const
Get the type for which this source info wrapper provides information.
TypeLoc getNextTypeLoc() const
Get the next TypeLoc pointed by this TypeLoc, e.g for "int*" the TypeLoc is a PointerLoc and next Typ...
T getAs() const
Convert to the specified TypeLoc type, returning a null TypeLoc if this TypeLoc is not of the desired...
NestedNameSpecifierLoc getPrefix() const
If this type represents a qualified-id, this returns it's nested name specifier.
TypeLoc IgnoreParens() const
T castAs() const
Convert to the specified TypeLoc type, asserting that this TypeLoc is of the desired type.
SourceLocation getNonElaboratedBeginLoc() const
This returns the position of the type after any elaboration, such as the 'struct' keyword.
SourceRange getSourceRange() const LLVM_READONLY
Get the full source range.
SourceRange getLocalSourceRange() const
Get the local source range.
unsigned getFullDataSize() const
Returns the size of the type source info data block.
AutoTypeLoc getContainedAutoTypeLoc() const
Get the typeloc of an AutoType whose type will be deduced for a variable with an initializer of this ...
SourceLocation getTemplateKeywordLoc() const
Get the SourceLocation of the template keyword (if any).
void copy(TypeLoc other)
Copies the other type loc into this one.
TypeLocClass getTypeLocClass() const
static unsigned getFullDataSizeForType(QualType Ty)
Returns the size of type source info data block for the given type.
SourceLocation getEndLoc() const
Get the end source location.
T getAsAdjusted() const
Convert to the specified TypeLoc type, returning a null TypeLoc if this TypeLoc is not of the desired...
SourceLocation getBeginLoc() const
Get the begin source location.
SourceLocation getNonPrefixBeginLoc() const
This returns the position of the type after any elaboration, such as the 'struct' keyword,...
SourceRange getLocalSourceRange() const
Expr * getUnderlyingExpr() const
void initializeLocal(ASTContext &Context, SourceLocation Loc)
QualType getUnmodifiedType() const
A reasonable base class for TypeLocs that correspond to types that are written as a type-specifier.
void setNameLoc(SourceLocation Loc)
SourceLocation getRParenLoc() const
SourceLocation getTypeofLoc() const
The JSON file list parser is used to communicate input to InstallAPI.
TypeSpecifierType
Specifies the kind of type.
bool isa(CodeGen::Address addr)
const FunctionProtoType * T
@ Template
We are parsing a template declaration.
@ None
No keyword precedes the qualified type name.
__UINTPTR_TYPE__ uintptr_t
An unsigned integer type with the property that any valid pointer to void can be converted to this ty...
static const ASTTemplateArgumentListInfo * Create(const ASTContext &C, const TemplateArgumentListInfo &List)
DeclarationNameInfo - A collector data type for bundling together a DeclarationName and the correspon...
Location information for a TemplateArgument.
TypeSourceInfo * UnmodifiedTInfo