1 //===- TypeLoc.cpp - Type Source Info Wrapper -----------------------------===// 2 // 3 // The LLVM Compiler Infrastructure 4 // 5 // This file is distributed under the University of Illinois Open Source 6 // License. See LICENSE.TXT for details. 7 // 8 //===----------------------------------------------------------------------===// 9 // 10 // This file defines the TypeLoc subclasses implementations. 11 // 12 //===----------------------------------------------------------------------===// 13 14 #include "clang/AST/TypeLoc.h" 15 #include "clang/AST/ASTContext.h" 16 #include "clang/AST/Expr.h" 17 #include "clang/AST/NestedNameSpecifier.h" 18 #include "clang/AST/TemplateBase.h" 19 #include "clang/AST/TemplateName.h" 20 #include "clang/AST/TypeLocVisitor.h" 21 #include "clang/Basic/SourceLocation.h" 22 #include "clang/Basic/Specifiers.h" 23 #include "llvm/Support/ErrorHandling.h" 24 #include "llvm/Support/MathExtras.h" 25 #include <algorithm> 26 #include <cassert> 27 #include <cstdint> 28 #include <cstring> 29 30 using namespace clang; 31 32 static const unsigned TypeLocMaxDataAlign = alignof(void *); 33 34 //===----------------------------------------------------------------------===// 35 // TypeLoc Implementation 36 //===----------------------------------------------------------------------===// 37 38 namespace { 39 40 class TypeLocRanger : public TypeLocVisitor<TypeLocRanger, SourceRange> { 41 public: 42 #define ABSTRACT_TYPELOC(CLASS, PARENT) 43 #define TYPELOC(CLASS, PARENT) \ 44 SourceRange Visit##CLASS##TypeLoc(CLASS##TypeLoc TyLoc) { \ 45 return TyLoc.getLocalSourceRange(); \ 46 } 47 #include "clang/AST/TypeLocNodes.def" 48 }; 49 50 } // namespace 51 52 SourceRange TypeLoc::getLocalSourceRangeImpl(TypeLoc TL) { 53 if (TL.isNull()) return SourceRange(); 54 return TypeLocRanger().Visit(TL); 55 } 56 57 namespace { 58 59 class TypeAligner : public TypeLocVisitor<TypeAligner, unsigned> { 60 public: 61 #define ABSTRACT_TYPELOC(CLASS, PARENT) 62 #define TYPELOC(CLASS, PARENT) \ 63 unsigned Visit##CLASS##TypeLoc(CLASS##TypeLoc TyLoc) { \ 64 return TyLoc.getLocalDataAlignment(); \ 65 } 66 #include "clang/AST/TypeLocNodes.def" 67 }; 68 69 } // namespace 70 71 /// Returns the alignment of the type source info data block. 72 unsigned TypeLoc::getLocalAlignmentForType(QualType Ty) { 73 if (Ty.isNull()) return 1; 74 return TypeAligner().Visit(TypeLoc(Ty, nullptr)); 75 } 76 77 namespace { 78 79 class TypeSizer : public TypeLocVisitor<TypeSizer, unsigned> { 80 public: 81 #define ABSTRACT_TYPELOC(CLASS, PARENT) 82 #define TYPELOC(CLASS, PARENT) \ 83 unsigned Visit##CLASS##TypeLoc(CLASS##TypeLoc TyLoc) { \ 84 return TyLoc.getLocalDataSize(); \ 85 } 86 #include "clang/AST/TypeLocNodes.def" 87 }; 88 89 } // namespace 90 91 /// Returns the size of the type source info data block. 92 unsigned TypeLoc::getFullDataSizeForType(QualType Ty) { 93 unsigned Total = 0; 94 TypeLoc TyLoc(Ty, nullptr); 95 unsigned MaxAlign = 1; 96 while (!TyLoc.isNull()) { 97 unsigned Align = getLocalAlignmentForType(TyLoc.getType()); 98 MaxAlign = std::max(Align, MaxAlign); 99 Total = llvm::alignTo(Total, Align); 100 Total += TypeSizer().Visit(TyLoc); 101 TyLoc = TyLoc.getNextTypeLoc(); 102 } 103 Total = llvm::alignTo(Total, MaxAlign); 104 return Total; 105 } 106 107 namespace { 108 109 class NextLoc : public TypeLocVisitor<NextLoc, TypeLoc> { 110 public: 111 #define ABSTRACT_TYPELOC(CLASS, PARENT) 112 #define TYPELOC(CLASS, PARENT) \ 113 TypeLoc Visit##CLASS##TypeLoc(CLASS##TypeLoc TyLoc) { \ 114 return TyLoc.getNextTypeLoc(); \ 115 } 116 #include "clang/AST/TypeLocNodes.def" 117 }; 118 119 } // namespace 120 121 /// Get the next TypeLoc pointed by this TypeLoc, e.g for "int*" the 122 /// TypeLoc is a PointerLoc and next TypeLoc is for "int". 123 TypeLoc TypeLoc::getNextTypeLocImpl(TypeLoc TL) { 124 return NextLoc().Visit(TL); 125 } 126 127 /// Initializes a type location, and all of its children 128 /// recursively, as if the entire tree had been written in the 129 /// given location. 130 void TypeLoc::initializeImpl(ASTContext &Context, TypeLoc TL, 131 SourceLocation Loc) { 132 while (true) { 133 switch (TL.getTypeLocClass()) { 134 #define ABSTRACT_TYPELOC(CLASS, PARENT) 135 #define TYPELOC(CLASS, PARENT) \ 136 case CLASS: { \ 137 CLASS##TypeLoc TLCasted = TL.castAs<CLASS##TypeLoc>(); \ 138 TLCasted.initializeLocal(Context, Loc); \ 139 TL = TLCasted.getNextTypeLoc(); \ 140 if (!TL) return; \ 141 continue; \ 142 } 143 #include "clang/AST/TypeLocNodes.def" 144 } 145 } 146 } 147 148 namespace { 149 150 class TypeLocCopier : public TypeLocVisitor<TypeLocCopier> { 151 TypeLoc Source; 152 153 public: 154 TypeLocCopier(TypeLoc source) : Source(source) {} 155 156 #define ABSTRACT_TYPELOC(CLASS, PARENT) 157 #define TYPELOC(CLASS, PARENT) \ 158 void Visit##CLASS##TypeLoc(CLASS##TypeLoc dest) { \ 159 dest.copyLocal(Source.castAs<CLASS##TypeLoc>()); \ 160 } 161 #include "clang/AST/TypeLocNodes.def" 162 }; 163 164 } // namespace 165 166 void TypeLoc::copy(TypeLoc other) { 167 assert(getFullDataSize() == other.getFullDataSize()); 168 169 // If both data pointers are aligned to the maximum alignment, we 170 // can memcpy because getFullDataSize() accurately reflects the 171 // layout of the data. 172 if (reinterpret_cast<uintptr_t>(Data) == 173 llvm::alignTo(reinterpret_cast<uintptr_t>(Data), 174 TypeLocMaxDataAlign) && 175 reinterpret_cast<uintptr_t>(other.Data) == 176 llvm::alignTo(reinterpret_cast<uintptr_t>(other.Data), 177 TypeLocMaxDataAlign)) { 178 memcpy(Data, other.Data, getFullDataSize()); 179 return; 180 } 181 182 // Copy each of the pieces. 183 TypeLoc TL(getType(), Data); 184 do { 185 TypeLocCopier(other).Visit(TL); 186 other = other.getNextTypeLoc(); 187 } while ((TL = TL.getNextTypeLoc())); 188 } 189 190 SourceLocation TypeLoc::getBeginLoc() const { 191 TypeLoc Cur = *this; 192 TypeLoc LeftMost = Cur; 193 while (true) { 194 switch (Cur.getTypeLocClass()) { 195 case Elaborated: 196 LeftMost = Cur; 197 break; 198 case FunctionProto: 199 if (Cur.castAs<FunctionProtoTypeLoc>().getTypePtr() 200 ->hasTrailingReturn()) { 201 LeftMost = Cur; 202 break; 203 } 204 LLVM_FALLTHROUGH; 205 case FunctionNoProto: 206 case ConstantArray: 207 case DependentSizedArray: 208 case IncompleteArray: 209 case VariableArray: 210 // FIXME: Currently QualifiedTypeLoc does not have a source range 211 case Qualified: 212 Cur = Cur.getNextTypeLoc(); 213 continue; 214 default: 215 if (Cur.getLocalSourceRange().getBegin().isValid()) 216 LeftMost = Cur; 217 Cur = Cur.getNextTypeLoc(); 218 if (Cur.isNull()) 219 break; 220 continue; 221 } // switch 222 break; 223 } // while 224 return LeftMost.getLocalSourceRange().getBegin(); 225 } 226 227 SourceLocation TypeLoc::getEndLoc() const { 228 TypeLoc Cur = *this; 229 TypeLoc Last; 230 while (true) { 231 switch (Cur.getTypeLocClass()) { 232 default: 233 if (!Last) 234 Last = Cur; 235 return Last.getLocalSourceRange().getEnd(); 236 case Paren: 237 case ConstantArray: 238 case DependentSizedArray: 239 case IncompleteArray: 240 case VariableArray: 241 case FunctionNoProto: 242 Last = Cur; 243 break; 244 case FunctionProto: 245 if (Cur.castAs<FunctionProtoTypeLoc>().getTypePtr()->hasTrailingReturn()) 246 Last = TypeLoc(); 247 else 248 Last = Cur; 249 break; 250 case Pointer: 251 case BlockPointer: 252 case MemberPointer: 253 case LValueReference: 254 case RValueReference: 255 case PackExpansion: 256 if (!Last) 257 Last = Cur; 258 break; 259 case Qualified: 260 case Elaborated: 261 break; 262 } 263 Cur = Cur.getNextTypeLoc(); 264 } 265 } 266 267 namespace { 268 269 struct TSTChecker : public TypeLocVisitor<TSTChecker, bool> { 270 // Overload resolution does the real work for us. 271 static bool isTypeSpec(TypeSpecTypeLoc _) { return true; } 272 static bool isTypeSpec(TypeLoc _) { return false; } 273 274 #define ABSTRACT_TYPELOC(CLASS, PARENT) 275 #define TYPELOC(CLASS, PARENT) \ 276 bool Visit##CLASS##TypeLoc(CLASS##TypeLoc TyLoc) { \ 277 return isTypeSpec(TyLoc); \ 278 } 279 #include "clang/AST/TypeLocNodes.def" 280 }; 281 282 } // namespace 283 284 /// Determines if the given type loc corresponds to a 285 /// TypeSpecTypeLoc. Since there is not actually a TypeSpecType in 286 /// the type hierarchy, this is made somewhat complicated. 287 /// 288 /// There are a lot of types that currently use TypeSpecTypeLoc 289 /// because it's a convenient base class. Ideally we would not accept 290 /// those here, but ideally we would have better implementations for 291 /// them. 292 bool TypeSpecTypeLoc::isKind(const TypeLoc &TL) { 293 if (TL.getType().hasLocalQualifiers()) return false; 294 return TSTChecker().Visit(TL); 295 } 296 297 // Reimplemented to account for GNU/C++ extension 298 // typeof unary-expression 299 // where there are no parentheses. 300 SourceRange TypeOfExprTypeLoc::getLocalSourceRange() const { 301 if (getRParenLoc().isValid()) 302 return SourceRange(getTypeofLoc(), getRParenLoc()); 303 else 304 return SourceRange(getTypeofLoc(), 305 getUnderlyingExpr()->getSourceRange().getEnd()); 306 } 307 308 309 TypeSpecifierType BuiltinTypeLoc::getWrittenTypeSpec() const { 310 if (needsExtraLocalData()) 311 return static_cast<TypeSpecifierType>(getWrittenBuiltinSpecs().Type); 312 switch (getTypePtr()->getKind()) { 313 case BuiltinType::Void: 314 return TST_void; 315 case BuiltinType::Bool: 316 return TST_bool; 317 case BuiltinType::Char_U: 318 case BuiltinType::Char_S: 319 return TST_char; 320 case BuiltinType::Char8: 321 return TST_char8; 322 case BuiltinType::Char16: 323 return TST_char16; 324 case BuiltinType::Char32: 325 return TST_char32; 326 case BuiltinType::WChar_S: 327 case BuiltinType::WChar_U: 328 return TST_wchar; 329 case BuiltinType::UChar: 330 case BuiltinType::UShort: 331 case BuiltinType::UInt: 332 case BuiltinType::ULong: 333 case BuiltinType::ULongLong: 334 case BuiltinType::UInt128: 335 case BuiltinType::SChar: 336 case BuiltinType::Short: 337 case BuiltinType::Int: 338 case BuiltinType::Long: 339 case BuiltinType::LongLong: 340 case BuiltinType::Int128: 341 case BuiltinType::Half: 342 case BuiltinType::Float: 343 case BuiltinType::Double: 344 case BuiltinType::LongDouble: 345 case BuiltinType::Float16: 346 case BuiltinType::Float128: 347 llvm_unreachable("Builtin type needs extra local data!"); 348 // Fall through, if the impossible happens. 349 350 case BuiltinType::NullPtr: 351 case BuiltinType::Overload: 352 case BuiltinType::Dependent: 353 case BuiltinType::BoundMember: 354 case BuiltinType::UnknownAny: 355 case BuiltinType::ARCUnbridgedCast: 356 case BuiltinType::PseudoObject: 357 case BuiltinType::ObjCId: 358 case BuiltinType::ObjCClass: 359 case BuiltinType::ObjCSel: 360 #define IMAGE_TYPE(ImgType, Id, SingletonId, Access, Suffix) \ 361 case BuiltinType::Id: 362 #include "clang/Basic/OpenCLImageTypes.def" 363 case BuiltinType::OCLSampler: 364 case BuiltinType::OCLEvent: 365 case BuiltinType::OCLClkEvent: 366 case BuiltinType::OCLQueue: 367 case BuiltinType::OCLReserveID: 368 case BuiltinType::BuiltinFn: 369 case BuiltinType::OMPArraySection: 370 return TST_unspecified; 371 } 372 373 llvm_unreachable("Invalid BuiltinType Kind!"); 374 } 375 376 TypeLoc TypeLoc::IgnoreParensImpl(TypeLoc TL) { 377 while (ParenTypeLoc PTL = TL.getAs<ParenTypeLoc>()) 378 TL = PTL.getInnerLoc(); 379 return TL; 380 } 381 382 SourceLocation TypeLoc::findNullabilityLoc() const { 383 if (auto attributedLoc = getAs<AttributedTypeLoc>()) { 384 if (attributedLoc.getAttrKind() == AttributedType::attr_nullable || 385 attributedLoc.getAttrKind() == AttributedType::attr_nonnull || 386 attributedLoc.getAttrKind() == AttributedType::attr_null_unspecified) 387 return attributedLoc.getAttrNameLoc(); 388 } 389 390 return {}; 391 } 392 393 TypeLoc TypeLoc::findExplicitQualifierLoc() const { 394 // Qualified types. 395 if (auto qual = getAs<QualifiedTypeLoc>()) 396 return qual; 397 398 TypeLoc loc = IgnoreParens(); 399 400 // Attributed types. 401 if (auto attr = loc.getAs<AttributedTypeLoc>()) { 402 if (attr.isQualifier()) return attr; 403 return attr.getModifiedLoc().findExplicitQualifierLoc(); 404 } 405 406 // C11 _Atomic types. 407 if (auto atomic = loc.getAs<AtomicTypeLoc>()) { 408 return atomic; 409 } 410 411 return {}; 412 } 413 414 void ObjCTypeParamTypeLoc::initializeLocal(ASTContext &Context, 415 SourceLocation Loc) { 416 setNameLoc(Loc); 417 if (!getNumProtocols()) return; 418 419 setProtocolLAngleLoc(Loc); 420 setProtocolRAngleLoc(Loc); 421 for (unsigned i = 0, e = getNumProtocols(); i != e; ++i) 422 setProtocolLoc(i, Loc); 423 } 424 425 void ObjCObjectTypeLoc::initializeLocal(ASTContext &Context, 426 SourceLocation Loc) { 427 setHasBaseTypeAsWritten(true); 428 setTypeArgsLAngleLoc(Loc); 429 setTypeArgsRAngleLoc(Loc); 430 for (unsigned i = 0, e = getNumTypeArgs(); i != e; ++i) { 431 setTypeArgTInfo(i, 432 Context.getTrivialTypeSourceInfo( 433 getTypePtr()->getTypeArgsAsWritten()[i], Loc)); 434 } 435 setProtocolLAngleLoc(Loc); 436 setProtocolRAngleLoc(Loc); 437 for (unsigned i = 0, e = getNumProtocols(); i != e; ++i) 438 setProtocolLoc(i, Loc); 439 } 440 441 void TypeOfTypeLoc::initializeLocal(ASTContext &Context, 442 SourceLocation Loc) { 443 TypeofLikeTypeLoc<TypeOfTypeLoc, TypeOfType, TypeOfTypeLocInfo> 444 ::initializeLocal(Context, Loc); 445 this->getLocalData()->UnderlyingTInfo = Context.getTrivialTypeSourceInfo( 446 getUnderlyingType(), Loc); 447 } 448 449 void UnaryTransformTypeLoc::initializeLocal(ASTContext &Context, 450 SourceLocation Loc) { 451 setKWLoc(Loc); 452 setRParenLoc(Loc); 453 setLParenLoc(Loc); 454 this->setUnderlyingTInfo( 455 Context.getTrivialTypeSourceInfo(getTypePtr()->getBaseType(), Loc)); 456 } 457 458 void ElaboratedTypeLoc::initializeLocal(ASTContext &Context, 459 SourceLocation Loc) { 460 setElaboratedKeywordLoc(Loc); 461 NestedNameSpecifierLocBuilder Builder; 462 Builder.MakeTrivial(Context, getTypePtr()->getQualifier(), Loc); 463 setQualifierLoc(Builder.getWithLocInContext(Context)); 464 } 465 466 void DependentNameTypeLoc::initializeLocal(ASTContext &Context, 467 SourceLocation Loc) { 468 setElaboratedKeywordLoc(Loc); 469 NestedNameSpecifierLocBuilder Builder; 470 Builder.MakeTrivial(Context, getTypePtr()->getQualifier(), Loc); 471 setQualifierLoc(Builder.getWithLocInContext(Context)); 472 setNameLoc(Loc); 473 } 474 475 void 476 DependentTemplateSpecializationTypeLoc::initializeLocal(ASTContext &Context, 477 SourceLocation Loc) { 478 setElaboratedKeywordLoc(Loc); 479 if (getTypePtr()->getQualifier()) { 480 NestedNameSpecifierLocBuilder Builder; 481 Builder.MakeTrivial(Context, getTypePtr()->getQualifier(), Loc); 482 setQualifierLoc(Builder.getWithLocInContext(Context)); 483 } else { 484 setQualifierLoc(NestedNameSpecifierLoc()); 485 } 486 setTemplateKeywordLoc(Loc); 487 setTemplateNameLoc(Loc); 488 setLAngleLoc(Loc); 489 setRAngleLoc(Loc); 490 TemplateSpecializationTypeLoc::initializeArgLocs(Context, getNumArgs(), 491 getTypePtr()->getArgs(), 492 getArgInfos(), Loc); 493 } 494 495 void TemplateSpecializationTypeLoc::initializeArgLocs(ASTContext &Context, 496 unsigned NumArgs, 497 const TemplateArgument *Args, 498 TemplateArgumentLocInfo *ArgInfos, 499 SourceLocation Loc) { 500 for (unsigned i = 0, e = NumArgs; i != e; ++i) { 501 switch (Args[i].getKind()) { 502 case TemplateArgument::Null: 503 llvm_unreachable("Impossible TemplateArgument"); 504 505 case TemplateArgument::Integral: 506 case TemplateArgument::Declaration: 507 case TemplateArgument::NullPtr: 508 ArgInfos[i] = TemplateArgumentLocInfo(); 509 break; 510 511 case TemplateArgument::Expression: 512 ArgInfos[i] = TemplateArgumentLocInfo(Args[i].getAsExpr()); 513 break; 514 515 case TemplateArgument::Type: 516 ArgInfos[i] = TemplateArgumentLocInfo( 517 Context.getTrivialTypeSourceInfo(Args[i].getAsType(), 518 Loc)); 519 break; 520 521 case TemplateArgument::Template: 522 case TemplateArgument::TemplateExpansion: { 523 NestedNameSpecifierLocBuilder Builder; 524 TemplateName Template = Args[i].getAsTemplateOrTemplatePattern(); 525 if (DependentTemplateName *DTN = Template.getAsDependentTemplateName()) 526 Builder.MakeTrivial(Context, DTN->getQualifier(), Loc); 527 else if (QualifiedTemplateName *QTN = Template.getAsQualifiedTemplateName()) 528 Builder.MakeTrivial(Context, QTN->getQualifier(), Loc); 529 530 ArgInfos[i] = TemplateArgumentLocInfo( 531 Builder.getWithLocInContext(Context), Loc, 532 Args[i].getKind() == TemplateArgument::Template ? SourceLocation() 533 : Loc); 534 break; 535 } 536 537 case TemplateArgument::Pack: 538 ArgInfos[i] = TemplateArgumentLocInfo(); 539 break; 540 } 541 } 542 } 543