1 //===--- ASTReaderStmt.cpp - Stmt/Expr Deserialization ----------*- C++ -*-===// 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 // Statement/expression deserialization. This implements the 11 // ASTReader::ReadStmt method. 12 // 13 //===----------------------------------------------------------------------===// 14 15 #include "clang/Serialization/ASTReader.h" 16 #include "clang/AST/ASTContext.h" 17 #include "clang/AST/DeclCXX.h" 18 #include "clang/AST/DeclTemplate.h" 19 #include "clang/AST/StmtVisitor.h" 20 #include "clang/Lex/Token.h" 21 #include "llvm/ADT/SmallString.h" 22 using namespace clang; 23 using namespace clang::serialization; 24 25 namespace clang { 26 27 class ASTStmtReader : public StmtVisitor<ASTStmtReader> { 28 friend class OMPClauseReader; 29 30 ASTRecordReader &Record; 31 llvm::BitstreamCursor &DeclsCursor; 32 33 SourceLocation ReadSourceLocation() { 34 return Record.readSourceLocation(); 35 } 36 37 SourceRange ReadSourceRange() { 38 return Record.readSourceRange(); 39 } 40 41 std::string ReadString() { 42 return Record.readString(); 43 } 44 45 TypeSourceInfo *GetTypeSourceInfo() { 46 return Record.getTypeSourceInfo(); 47 } 48 49 Decl *ReadDecl() { 50 return Record.readDecl(); 51 } 52 53 template<typename T> 54 T *ReadDeclAs() { 55 return Record.readDeclAs<T>(); 56 } 57 58 void ReadDeclarationNameLoc(DeclarationNameLoc &DNLoc, 59 DeclarationName Name) { 60 Record.readDeclarationNameLoc(DNLoc, Name); 61 } 62 63 void ReadDeclarationNameInfo(DeclarationNameInfo &NameInfo) { 64 Record.readDeclarationNameInfo(NameInfo); 65 } 66 67 public: 68 ASTStmtReader(ASTRecordReader &Record, llvm::BitstreamCursor &Cursor) 69 : Record(Record), DeclsCursor(Cursor) {} 70 71 /// \brief The number of record fields required for the Stmt class 72 /// itself. 73 static const unsigned NumStmtFields = 0; 74 75 /// \brief The number of record fields required for the Expr class 76 /// itself. 77 static const unsigned NumExprFields = NumStmtFields + 7; 78 79 /// \brief Read and initialize a ExplicitTemplateArgumentList structure. 80 void ReadTemplateKWAndArgsInfo(ASTTemplateKWAndArgsInfo &Args, 81 TemplateArgumentLoc *ArgsLocArray, 82 unsigned NumTemplateArgs); 83 /// \brief Read and initialize a ExplicitTemplateArgumentList structure. 84 void ReadExplicitTemplateArgumentList(ASTTemplateArgumentListInfo &ArgList, 85 unsigned NumTemplateArgs); 86 87 void VisitStmt(Stmt *S); 88 #define STMT(Type, Base) \ 89 void Visit##Type(Type *); 90 #include "clang/AST/StmtNodes.inc" 91 }; 92 } 93 94 void ASTStmtReader::ReadTemplateKWAndArgsInfo(ASTTemplateKWAndArgsInfo &Args, 95 TemplateArgumentLoc *ArgsLocArray, 96 unsigned NumTemplateArgs) { 97 SourceLocation TemplateKWLoc = ReadSourceLocation(); 98 TemplateArgumentListInfo ArgInfo; 99 ArgInfo.setLAngleLoc(ReadSourceLocation()); 100 ArgInfo.setRAngleLoc(ReadSourceLocation()); 101 for (unsigned i = 0; i != NumTemplateArgs; ++i) 102 ArgInfo.addArgument(Record.readTemplateArgumentLoc()); 103 Args.initializeFrom(TemplateKWLoc, ArgInfo, ArgsLocArray); 104 } 105 106 void ASTStmtReader::VisitStmt(Stmt *S) { 107 assert(Record.getIdx() == NumStmtFields && "Incorrect statement field count"); 108 } 109 110 void ASTStmtReader::VisitNullStmt(NullStmt *S) { 111 VisitStmt(S); 112 S->setSemiLoc(ReadSourceLocation()); 113 S->HasLeadingEmptyMacro = Record.readInt(); 114 } 115 116 void ASTStmtReader::VisitCompoundStmt(CompoundStmt *S) { 117 VisitStmt(S); 118 SmallVector<Stmt *, 16> Stmts; 119 unsigned NumStmts = Record.readInt(); 120 while (NumStmts--) 121 Stmts.push_back(Record.readSubStmt()); 122 S->setStmts(Record.getContext(), Stmts); 123 S->LBraceLoc = ReadSourceLocation(); 124 S->RBraceLoc = ReadSourceLocation(); 125 } 126 127 void ASTStmtReader::VisitSwitchCase(SwitchCase *S) { 128 VisitStmt(S); 129 Record.recordSwitchCaseID(S, Record.readInt()); 130 S->setKeywordLoc(ReadSourceLocation()); 131 S->setColonLoc(ReadSourceLocation()); 132 } 133 134 void ASTStmtReader::VisitCaseStmt(CaseStmt *S) { 135 VisitSwitchCase(S); 136 S->setLHS(Record.readSubExpr()); 137 S->setRHS(Record.readSubExpr()); 138 S->setSubStmt(Record.readSubStmt()); 139 S->setEllipsisLoc(ReadSourceLocation()); 140 } 141 142 void ASTStmtReader::VisitDefaultStmt(DefaultStmt *S) { 143 VisitSwitchCase(S); 144 S->setSubStmt(Record.readSubStmt()); 145 } 146 147 void ASTStmtReader::VisitLabelStmt(LabelStmt *S) { 148 VisitStmt(S); 149 LabelDecl *LD = ReadDeclAs<LabelDecl>(); 150 LD->setStmt(S); 151 S->setDecl(LD); 152 S->setSubStmt(Record.readSubStmt()); 153 S->setIdentLoc(ReadSourceLocation()); 154 } 155 156 void ASTStmtReader::VisitAttributedStmt(AttributedStmt *S) { 157 VisitStmt(S); 158 uint64_t NumAttrs = Record.readInt(); 159 AttrVec Attrs; 160 Record.readAttributes(Attrs); 161 (void)NumAttrs; 162 assert(NumAttrs == S->NumAttrs); 163 assert(NumAttrs == Attrs.size()); 164 std::copy(Attrs.begin(), Attrs.end(), S->getAttrArrayPtr()); 165 S->SubStmt = Record.readSubStmt(); 166 S->AttrLoc = ReadSourceLocation(); 167 } 168 169 void ASTStmtReader::VisitIfStmt(IfStmt *S) { 170 VisitStmt(S); 171 S->setConstexpr(Record.readInt()); 172 S->setInit(Record.readSubStmt()); 173 S->setConditionVariable(Record.getContext(), ReadDeclAs<VarDecl>()); 174 S->setCond(Record.readSubExpr()); 175 S->setThen(Record.readSubStmt()); 176 S->setElse(Record.readSubStmt()); 177 S->setIfLoc(ReadSourceLocation()); 178 S->setElseLoc(ReadSourceLocation()); 179 } 180 181 void ASTStmtReader::VisitSwitchStmt(SwitchStmt *S) { 182 VisitStmt(S); 183 S->setInit(Record.readSubStmt()); 184 S->setConditionVariable(Record.getContext(), ReadDeclAs<VarDecl>()); 185 S->setCond(Record.readSubExpr()); 186 S->setBody(Record.readSubStmt()); 187 S->setSwitchLoc(ReadSourceLocation()); 188 if (Record.readInt()) 189 S->setAllEnumCasesCovered(); 190 191 SwitchCase *PrevSC = nullptr; 192 for (auto E = Record.size(); Record.getIdx() != E; ) { 193 SwitchCase *SC = Record.getSwitchCaseWithID(Record.readInt()); 194 if (PrevSC) 195 PrevSC->setNextSwitchCase(SC); 196 else 197 S->setSwitchCaseList(SC); 198 199 PrevSC = SC; 200 } 201 } 202 203 void ASTStmtReader::VisitWhileStmt(WhileStmt *S) { 204 VisitStmt(S); 205 S->setConditionVariable(Record.getContext(), ReadDeclAs<VarDecl>()); 206 207 S->setCond(Record.readSubExpr()); 208 S->setBody(Record.readSubStmt()); 209 S->setWhileLoc(ReadSourceLocation()); 210 } 211 212 void ASTStmtReader::VisitDoStmt(DoStmt *S) { 213 VisitStmt(S); 214 S->setCond(Record.readSubExpr()); 215 S->setBody(Record.readSubStmt()); 216 S->setDoLoc(ReadSourceLocation()); 217 S->setWhileLoc(ReadSourceLocation()); 218 S->setRParenLoc(ReadSourceLocation()); 219 } 220 221 void ASTStmtReader::VisitForStmt(ForStmt *S) { 222 VisitStmt(S); 223 S->setInit(Record.readSubStmt()); 224 S->setCond(Record.readSubExpr()); 225 S->setConditionVariable(Record.getContext(), ReadDeclAs<VarDecl>()); 226 S->setInc(Record.readSubExpr()); 227 S->setBody(Record.readSubStmt()); 228 S->setForLoc(ReadSourceLocation()); 229 S->setLParenLoc(ReadSourceLocation()); 230 S->setRParenLoc(ReadSourceLocation()); 231 } 232 233 void ASTStmtReader::VisitGotoStmt(GotoStmt *S) { 234 VisitStmt(S); 235 S->setLabel(ReadDeclAs<LabelDecl>()); 236 S->setGotoLoc(ReadSourceLocation()); 237 S->setLabelLoc(ReadSourceLocation()); 238 } 239 240 void ASTStmtReader::VisitIndirectGotoStmt(IndirectGotoStmt *S) { 241 VisitStmt(S); 242 S->setGotoLoc(ReadSourceLocation()); 243 S->setStarLoc(ReadSourceLocation()); 244 S->setTarget(Record.readSubExpr()); 245 } 246 247 void ASTStmtReader::VisitContinueStmt(ContinueStmt *S) { 248 VisitStmt(S); 249 S->setContinueLoc(ReadSourceLocation()); 250 } 251 252 void ASTStmtReader::VisitBreakStmt(BreakStmt *S) { 253 VisitStmt(S); 254 S->setBreakLoc(ReadSourceLocation()); 255 } 256 257 void ASTStmtReader::VisitReturnStmt(ReturnStmt *S) { 258 VisitStmt(S); 259 S->setRetValue(Record.readSubExpr()); 260 S->setReturnLoc(ReadSourceLocation()); 261 S->setNRVOCandidate(ReadDeclAs<VarDecl>()); 262 } 263 264 void ASTStmtReader::VisitDeclStmt(DeclStmt *S) { 265 VisitStmt(S); 266 S->setStartLoc(ReadSourceLocation()); 267 S->setEndLoc(ReadSourceLocation()); 268 269 if (Record.size() - Record.getIdx() == 1) { 270 // Single declaration 271 S->setDeclGroup(DeclGroupRef(ReadDecl())); 272 } else { 273 SmallVector<Decl *, 16> Decls; 274 int N = Record.size() - Record.getIdx(); 275 Decls.reserve(N); 276 for (int I = 0; I < N; ++I) 277 Decls.push_back(ReadDecl()); 278 S->setDeclGroup(DeclGroupRef(DeclGroup::Create(Record.getContext(), 279 Decls.data(), 280 Decls.size()))); 281 } 282 } 283 284 void ASTStmtReader::VisitAsmStmt(AsmStmt *S) { 285 VisitStmt(S); 286 S->NumOutputs = Record.readInt(); 287 S->NumInputs = Record.readInt(); 288 S->NumClobbers = Record.readInt(); 289 S->setAsmLoc(ReadSourceLocation()); 290 S->setVolatile(Record.readInt()); 291 S->setSimple(Record.readInt()); 292 } 293 294 void ASTStmtReader::VisitGCCAsmStmt(GCCAsmStmt *S) { 295 VisitAsmStmt(S); 296 S->setRParenLoc(ReadSourceLocation()); 297 S->setAsmString(cast_or_null<StringLiteral>(Record.readSubStmt())); 298 299 unsigned NumOutputs = S->getNumOutputs(); 300 unsigned NumInputs = S->getNumInputs(); 301 unsigned NumClobbers = S->getNumClobbers(); 302 303 // Outputs and inputs 304 SmallVector<IdentifierInfo *, 16> Names; 305 SmallVector<StringLiteral*, 16> Constraints; 306 SmallVector<Stmt*, 16> Exprs; 307 for (unsigned I = 0, N = NumOutputs + NumInputs; I != N; ++I) { 308 Names.push_back(Record.getIdentifierInfo()); 309 Constraints.push_back(cast_or_null<StringLiteral>(Record.readSubStmt())); 310 Exprs.push_back(Record.readSubStmt()); 311 } 312 313 // Constraints 314 SmallVector<StringLiteral*, 16> Clobbers; 315 for (unsigned I = 0; I != NumClobbers; ++I) 316 Clobbers.push_back(cast_or_null<StringLiteral>(Record.readSubStmt())); 317 318 S->setOutputsAndInputsAndClobbers(Record.getContext(), 319 Names.data(), Constraints.data(), 320 Exprs.data(), NumOutputs, NumInputs, 321 Clobbers.data(), NumClobbers); 322 } 323 324 void ASTStmtReader::VisitMSAsmStmt(MSAsmStmt *S) { 325 VisitAsmStmt(S); 326 S->LBraceLoc = ReadSourceLocation(); 327 S->EndLoc = ReadSourceLocation(); 328 S->NumAsmToks = Record.readInt(); 329 std::string AsmStr = ReadString(); 330 331 // Read the tokens. 332 SmallVector<Token, 16> AsmToks; 333 AsmToks.reserve(S->NumAsmToks); 334 for (unsigned i = 0, e = S->NumAsmToks; i != e; ++i) { 335 AsmToks.push_back(Record.readToken()); 336 } 337 338 // The calls to reserve() for the FooData vectors are mandatory to 339 // prevent dead StringRefs in the Foo vectors. 340 341 // Read the clobbers. 342 SmallVector<std::string, 16> ClobbersData; 343 SmallVector<StringRef, 16> Clobbers; 344 ClobbersData.reserve(S->NumClobbers); 345 Clobbers.reserve(S->NumClobbers); 346 for (unsigned i = 0, e = S->NumClobbers; i != e; ++i) { 347 ClobbersData.push_back(ReadString()); 348 Clobbers.push_back(ClobbersData.back()); 349 } 350 351 // Read the operands. 352 unsigned NumOperands = S->NumOutputs + S->NumInputs; 353 SmallVector<Expr*, 16> Exprs; 354 SmallVector<std::string, 16> ConstraintsData; 355 SmallVector<StringRef, 16> Constraints; 356 Exprs.reserve(NumOperands); 357 ConstraintsData.reserve(NumOperands); 358 Constraints.reserve(NumOperands); 359 for (unsigned i = 0; i != NumOperands; ++i) { 360 Exprs.push_back(cast<Expr>(Record.readSubStmt())); 361 ConstraintsData.push_back(ReadString()); 362 Constraints.push_back(ConstraintsData.back()); 363 } 364 365 S->initialize(Record.getContext(), AsmStr, AsmToks, 366 Constraints, Exprs, Clobbers); 367 } 368 369 void ASTStmtReader::VisitCoroutineBodyStmt(CoroutineBodyStmt *S) { 370 // FIXME: Implement coroutine serialization. 371 llvm_unreachable("unimplemented"); 372 } 373 374 void ASTStmtReader::VisitCoreturnStmt(CoreturnStmt *S) { 375 // FIXME: Implement coroutine serialization. 376 llvm_unreachable("unimplemented"); 377 } 378 379 void ASTStmtReader::VisitCoawaitExpr(CoawaitExpr *S) { 380 // FIXME: Implement coroutine serialization. 381 llvm_unreachable("unimplemented"); 382 } 383 384 void ASTStmtReader::VisitDependentCoawaitExpr(DependentCoawaitExpr *S) { 385 // FIXME: Implement coroutine serialization. 386 llvm_unreachable("unimplemented"); 387 } 388 389 void ASTStmtReader::VisitCoyieldExpr(CoyieldExpr *S) { 390 // FIXME: Implement coroutine serialization. 391 llvm_unreachable("unimplemented"); 392 } 393 394 void ASTStmtReader::VisitCapturedStmt(CapturedStmt *S) { 395 VisitStmt(S); 396 Record.skipInts(1); 397 S->setCapturedDecl(ReadDeclAs<CapturedDecl>()); 398 S->setCapturedRegionKind(static_cast<CapturedRegionKind>(Record.readInt())); 399 S->setCapturedRecordDecl(ReadDeclAs<RecordDecl>()); 400 401 // Capture inits 402 for (CapturedStmt::capture_init_iterator I = S->capture_init_begin(), 403 E = S->capture_init_end(); 404 I != E; ++I) 405 *I = Record.readSubExpr(); 406 407 // Body 408 S->setCapturedStmt(Record.readSubStmt()); 409 S->getCapturedDecl()->setBody(S->getCapturedStmt()); 410 411 // Captures 412 for (auto &I : S->captures()) { 413 I.VarAndKind.setPointer(ReadDeclAs<VarDecl>()); 414 I.VarAndKind.setInt( 415 static_cast<CapturedStmt::VariableCaptureKind>(Record.readInt())); 416 I.Loc = ReadSourceLocation(); 417 } 418 } 419 420 void ASTStmtReader::VisitExpr(Expr *E) { 421 VisitStmt(E); 422 E->setType(Record.readType()); 423 E->setTypeDependent(Record.readInt()); 424 E->setValueDependent(Record.readInt()); 425 E->setInstantiationDependent(Record.readInt()); 426 E->ExprBits.ContainsUnexpandedParameterPack = Record.readInt(); 427 E->setValueKind(static_cast<ExprValueKind>(Record.readInt())); 428 E->setObjectKind(static_cast<ExprObjectKind>(Record.readInt())); 429 assert(Record.getIdx() == NumExprFields && 430 "Incorrect expression field count"); 431 } 432 433 void ASTStmtReader::VisitPredefinedExpr(PredefinedExpr *E) { 434 VisitExpr(E); 435 E->setLocation(ReadSourceLocation()); 436 E->Type = (PredefinedExpr::IdentType)Record.readInt(); 437 E->FnName = cast_or_null<StringLiteral>(Record.readSubExpr()); 438 } 439 440 void ASTStmtReader::VisitDeclRefExpr(DeclRefExpr *E) { 441 VisitExpr(E); 442 443 E->DeclRefExprBits.HasQualifier = Record.readInt(); 444 E->DeclRefExprBits.HasFoundDecl = Record.readInt(); 445 E->DeclRefExprBits.HasTemplateKWAndArgsInfo = Record.readInt(); 446 E->DeclRefExprBits.HadMultipleCandidates = Record.readInt(); 447 E->DeclRefExprBits.RefersToEnclosingVariableOrCapture = Record.readInt(); 448 unsigned NumTemplateArgs = 0; 449 if (E->hasTemplateKWAndArgsInfo()) 450 NumTemplateArgs = Record.readInt(); 451 452 if (E->hasQualifier()) 453 new (E->getTrailingObjects<NestedNameSpecifierLoc>()) 454 NestedNameSpecifierLoc(Record.readNestedNameSpecifierLoc()); 455 456 if (E->hasFoundDecl()) 457 *E->getTrailingObjects<NamedDecl *>() = ReadDeclAs<NamedDecl>(); 458 459 if (E->hasTemplateKWAndArgsInfo()) 460 ReadTemplateKWAndArgsInfo( 461 *E->getTrailingObjects<ASTTemplateKWAndArgsInfo>(), 462 E->getTrailingObjects<TemplateArgumentLoc>(), NumTemplateArgs); 463 464 E->setDecl(ReadDeclAs<ValueDecl>()); 465 E->setLocation(ReadSourceLocation()); 466 ReadDeclarationNameLoc(E->DNLoc, E->getDecl()->getDeclName()); 467 } 468 469 void ASTStmtReader::VisitIntegerLiteral(IntegerLiteral *E) { 470 VisitExpr(E); 471 E->setLocation(ReadSourceLocation()); 472 E->setValue(Record.getContext(), Record.readAPInt()); 473 } 474 475 void ASTStmtReader::VisitFloatingLiteral(FloatingLiteral *E) { 476 VisitExpr(E); 477 E->setRawSemantics(static_cast<Stmt::APFloatSemantics>(Record.readInt())); 478 E->setExact(Record.readInt()); 479 E->setValue(Record.getContext(), Record.readAPFloat(E->getSemantics())); 480 E->setLocation(ReadSourceLocation()); 481 } 482 483 void ASTStmtReader::VisitImaginaryLiteral(ImaginaryLiteral *E) { 484 VisitExpr(E); 485 E->setSubExpr(Record.readSubExpr()); 486 } 487 488 void ASTStmtReader::VisitStringLiteral(StringLiteral *E) { 489 VisitExpr(E); 490 unsigned Len = Record.readInt(); 491 assert(Record.peekInt() == E->getNumConcatenated() && 492 "Wrong number of concatenated tokens!"); 493 Record.skipInts(1); 494 StringLiteral::StringKind kind = 495 static_cast<StringLiteral::StringKind>(Record.readInt()); 496 bool isPascal = Record.readInt(); 497 498 // Read string data 499 auto B = &Record.peekInt(); 500 SmallString<16> Str(B, B + Len); 501 E->setString(Record.getContext(), Str, kind, isPascal); 502 Record.skipInts(Len); 503 504 // Read source locations 505 for (unsigned I = 0, N = E->getNumConcatenated(); I != N; ++I) 506 E->setStrTokenLoc(I, ReadSourceLocation()); 507 } 508 509 void ASTStmtReader::VisitCharacterLiteral(CharacterLiteral *E) { 510 VisitExpr(E); 511 E->setValue(Record.readInt()); 512 E->setLocation(ReadSourceLocation()); 513 E->setKind(static_cast<CharacterLiteral::CharacterKind>(Record.readInt())); 514 } 515 516 void ASTStmtReader::VisitParenExpr(ParenExpr *E) { 517 VisitExpr(E); 518 E->setLParen(ReadSourceLocation()); 519 E->setRParen(ReadSourceLocation()); 520 E->setSubExpr(Record.readSubExpr()); 521 } 522 523 void ASTStmtReader::VisitParenListExpr(ParenListExpr *E) { 524 VisitExpr(E); 525 unsigned NumExprs = Record.readInt(); 526 E->Exprs = new (Record.getContext()) Stmt*[NumExprs]; 527 for (unsigned i = 0; i != NumExprs; ++i) 528 E->Exprs[i] = Record.readSubStmt(); 529 E->NumExprs = NumExprs; 530 E->LParenLoc = ReadSourceLocation(); 531 E->RParenLoc = ReadSourceLocation(); 532 } 533 534 void ASTStmtReader::VisitUnaryOperator(UnaryOperator *E) { 535 VisitExpr(E); 536 E->setSubExpr(Record.readSubExpr()); 537 E->setOpcode((UnaryOperator::Opcode)Record.readInt()); 538 E->setOperatorLoc(ReadSourceLocation()); 539 } 540 541 void ASTStmtReader::VisitOffsetOfExpr(OffsetOfExpr *E) { 542 VisitExpr(E); 543 assert(E->getNumComponents() == Record.peekInt()); 544 Record.skipInts(1); 545 assert(E->getNumExpressions() == Record.peekInt()); 546 Record.skipInts(1); 547 E->setOperatorLoc(ReadSourceLocation()); 548 E->setRParenLoc(ReadSourceLocation()); 549 E->setTypeSourceInfo(GetTypeSourceInfo()); 550 for (unsigned I = 0, N = E->getNumComponents(); I != N; ++I) { 551 OffsetOfNode::Kind Kind = static_cast<OffsetOfNode::Kind>(Record.readInt()); 552 SourceLocation Start = ReadSourceLocation(); 553 SourceLocation End = ReadSourceLocation(); 554 switch (Kind) { 555 case OffsetOfNode::Array: 556 E->setComponent(I, OffsetOfNode(Start, Record.readInt(), End)); 557 break; 558 559 case OffsetOfNode::Field: 560 E->setComponent( 561 I, OffsetOfNode(Start, ReadDeclAs<FieldDecl>(), End)); 562 break; 563 564 case OffsetOfNode::Identifier: 565 E->setComponent( 566 I, 567 OffsetOfNode(Start, Record.getIdentifierInfo(), End)); 568 break; 569 570 case OffsetOfNode::Base: { 571 CXXBaseSpecifier *Base = new (Record.getContext()) CXXBaseSpecifier(); 572 *Base = Record.readCXXBaseSpecifier(); 573 E->setComponent(I, OffsetOfNode(Base)); 574 break; 575 } 576 } 577 } 578 579 for (unsigned I = 0, N = E->getNumExpressions(); I != N; ++I) 580 E->setIndexExpr(I, Record.readSubExpr()); 581 } 582 583 void ASTStmtReader::VisitUnaryExprOrTypeTraitExpr(UnaryExprOrTypeTraitExpr *E) { 584 VisitExpr(E); 585 E->setKind(static_cast<UnaryExprOrTypeTrait>(Record.readInt())); 586 if (Record.peekInt() == 0) { 587 E->setArgument(Record.readSubExpr()); 588 Record.skipInts(1); 589 } else { 590 E->setArgument(GetTypeSourceInfo()); 591 } 592 E->setOperatorLoc(ReadSourceLocation()); 593 E->setRParenLoc(ReadSourceLocation()); 594 } 595 596 void ASTStmtReader::VisitArraySubscriptExpr(ArraySubscriptExpr *E) { 597 VisitExpr(E); 598 E->setLHS(Record.readSubExpr()); 599 E->setRHS(Record.readSubExpr()); 600 E->setRBracketLoc(ReadSourceLocation()); 601 } 602 603 void ASTStmtReader::VisitOMPArraySectionExpr(OMPArraySectionExpr *E) { 604 VisitExpr(E); 605 E->setBase(Record.readSubExpr()); 606 E->setLowerBound(Record.readSubExpr()); 607 E->setLength(Record.readSubExpr()); 608 E->setColonLoc(ReadSourceLocation()); 609 E->setRBracketLoc(ReadSourceLocation()); 610 } 611 612 void ASTStmtReader::VisitCallExpr(CallExpr *E) { 613 VisitExpr(E); 614 E->setNumArgs(Record.getContext(), Record.readInt()); 615 E->setRParenLoc(ReadSourceLocation()); 616 E->setCallee(Record.readSubExpr()); 617 for (unsigned I = 0, N = E->getNumArgs(); I != N; ++I) 618 E->setArg(I, Record.readSubExpr()); 619 } 620 621 void ASTStmtReader::VisitCXXMemberCallExpr(CXXMemberCallExpr *E) { 622 VisitCallExpr(E); 623 } 624 625 void ASTStmtReader::VisitMemberExpr(MemberExpr *E) { 626 // Don't call VisitExpr, this is fully initialized at creation. 627 assert(E->getStmtClass() == Stmt::MemberExprClass && 628 "It's a subclass, we must advance Idx!"); 629 } 630 631 void ASTStmtReader::VisitObjCIsaExpr(ObjCIsaExpr *E) { 632 VisitExpr(E); 633 E->setBase(Record.readSubExpr()); 634 E->setIsaMemberLoc(ReadSourceLocation()); 635 E->setOpLoc(ReadSourceLocation()); 636 E->setArrow(Record.readInt()); 637 } 638 639 void ASTStmtReader:: 640 VisitObjCIndirectCopyRestoreExpr(ObjCIndirectCopyRestoreExpr *E) { 641 VisitExpr(E); 642 E->Operand = Record.readSubExpr(); 643 E->setShouldCopy(Record.readInt()); 644 } 645 646 void ASTStmtReader::VisitObjCBridgedCastExpr(ObjCBridgedCastExpr *E) { 647 VisitExplicitCastExpr(E); 648 E->LParenLoc = ReadSourceLocation(); 649 E->BridgeKeywordLoc = ReadSourceLocation(); 650 E->Kind = Record.readInt(); 651 } 652 653 void ASTStmtReader::VisitCastExpr(CastExpr *E) { 654 VisitExpr(E); 655 unsigned NumBaseSpecs = Record.readInt(); 656 assert(NumBaseSpecs == E->path_size()); 657 E->setSubExpr(Record.readSubExpr()); 658 E->setCastKind((CastKind)Record.readInt()); 659 CastExpr::path_iterator BaseI = E->path_begin(); 660 while (NumBaseSpecs--) { 661 CXXBaseSpecifier *BaseSpec = new (Record.getContext()) CXXBaseSpecifier; 662 *BaseSpec = Record.readCXXBaseSpecifier(); 663 *BaseI++ = BaseSpec; 664 } 665 } 666 667 void ASTStmtReader::VisitBinaryOperator(BinaryOperator *E) { 668 VisitExpr(E); 669 E->setLHS(Record.readSubExpr()); 670 E->setRHS(Record.readSubExpr()); 671 E->setOpcode((BinaryOperator::Opcode)Record.readInt()); 672 E->setOperatorLoc(ReadSourceLocation()); 673 E->setFPFeatures(FPOptions(Record.readInt())); 674 } 675 676 void ASTStmtReader::VisitCompoundAssignOperator(CompoundAssignOperator *E) { 677 VisitBinaryOperator(E); 678 E->setComputationLHSType(Record.readType()); 679 E->setComputationResultType(Record.readType()); 680 } 681 682 void ASTStmtReader::VisitConditionalOperator(ConditionalOperator *E) { 683 VisitExpr(E); 684 E->SubExprs[ConditionalOperator::COND] = Record.readSubExpr(); 685 E->SubExprs[ConditionalOperator::LHS] = Record.readSubExpr(); 686 E->SubExprs[ConditionalOperator::RHS] = Record.readSubExpr(); 687 E->QuestionLoc = ReadSourceLocation(); 688 E->ColonLoc = ReadSourceLocation(); 689 } 690 691 void 692 ASTStmtReader::VisitBinaryConditionalOperator(BinaryConditionalOperator *E) { 693 VisitExpr(E); 694 E->OpaqueValue = cast<OpaqueValueExpr>(Record.readSubExpr()); 695 E->SubExprs[BinaryConditionalOperator::COMMON] = Record.readSubExpr(); 696 E->SubExprs[BinaryConditionalOperator::COND] = Record.readSubExpr(); 697 E->SubExprs[BinaryConditionalOperator::LHS] = Record.readSubExpr(); 698 E->SubExprs[BinaryConditionalOperator::RHS] = Record.readSubExpr(); 699 E->QuestionLoc = ReadSourceLocation(); 700 E->ColonLoc = ReadSourceLocation(); 701 } 702 703 void ASTStmtReader::VisitImplicitCastExpr(ImplicitCastExpr *E) { 704 VisitCastExpr(E); 705 } 706 707 void ASTStmtReader::VisitExplicitCastExpr(ExplicitCastExpr *E) { 708 VisitCastExpr(E); 709 E->setTypeInfoAsWritten(GetTypeSourceInfo()); 710 } 711 712 void ASTStmtReader::VisitCStyleCastExpr(CStyleCastExpr *E) { 713 VisitExplicitCastExpr(E); 714 E->setLParenLoc(ReadSourceLocation()); 715 E->setRParenLoc(ReadSourceLocation()); 716 } 717 718 void ASTStmtReader::VisitCompoundLiteralExpr(CompoundLiteralExpr *E) { 719 VisitExpr(E); 720 E->setLParenLoc(ReadSourceLocation()); 721 E->setTypeSourceInfo(GetTypeSourceInfo()); 722 E->setInitializer(Record.readSubExpr()); 723 E->setFileScope(Record.readInt()); 724 } 725 726 void ASTStmtReader::VisitExtVectorElementExpr(ExtVectorElementExpr *E) { 727 VisitExpr(E); 728 E->setBase(Record.readSubExpr()); 729 E->setAccessor(Record.getIdentifierInfo()); 730 E->setAccessorLoc(ReadSourceLocation()); 731 } 732 733 void ASTStmtReader::VisitInitListExpr(InitListExpr *E) { 734 VisitExpr(E); 735 if (InitListExpr *SyntForm = cast_or_null<InitListExpr>(Record.readSubStmt())) 736 E->setSyntacticForm(SyntForm); 737 E->setLBraceLoc(ReadSourceLocation()); 738 E->setRBraceLoc(ReadSourceLocation()); 739 bool isArrayFiller = Record.readInt(); 740 Expr *filler = nullptr; 741 if (isArrayFiller) { 742 filler = Record.readSubExpr(); 743 E->ArrayFillerOrUnionFieldInit = filler; 744 } else 745 E->ArrayFillerOrUnionFieldInit = ReadDeclAs<FieldDecl>(); 746 E->sawArrayRangeDesignator(Record.readInt()); 747 unsigned NumInits = Record.readInt(); 748 E->reserveInits(Record.getContext(), NumInits); 749 if (isArrayFiller) { 750 for (unsigned I = 0; I != NumInits; ++I) { 751 Expr *init = Record.readSubExpr(); 752 E->updateInit(Record.getContext(), I, init ? init : filler); 753 } 754 } else { 755 for (unsigned I = 0; I != NumInits; ++I) 756 E->updateInit(Record.getContext(), I, Record.readSubExpr()); 757 } 758 } 759 760 void ASTStmtReader::VisitDesignatedInitExpr(DesignatedInitExpr *E) { 761 typedef DesignatedInitExpr::Designator Designator; 762 763 VisitExpr(E); 764 unsigned NumSubExprs = Record.readInt(); 765 assert(NumSubExprs == E->getNumSubExprs() && "Wrong number of subexprs"); 766 for (unsigned I = 0; I != NumSubExprs; ++I) 767 E->setSubExpr(I, Record.readSubExpr()); 768 E->setEqualOrColonLoc(ReadSourceLocation()); 769 E->setGNUSyntax(Record.readInt()); 770 771 SmallVector<Designator, 4> Designators; 772 while (Record.getIdx() < Record.size()) { 773 switch ((DesignatorTypes)Record.readInt()) { 774 case DESIG_FIELD_DECL: { 775 FieldDecl *Field = ReadDeclAs<FieldDecl>(); 776 SourceLocation DotLoc = ReadSourceLocation(); 777 SourceLocation FieldLoc = ReadSourceLocation(); 778 Designators.push_back(Designator(Field->getIdentifier(), DotLoc, 779 FieldLoc)); 780 Designators.back().setField(Field); 781 break; 782 } 783 784 case DESIG_FIELD_NAME: { 785 const IdentifierInfo *Name = Record.getIdentifierInfo(); 786 SourceLocation DotLoc = ReadSourceLocation(); 787 SourceLocation FieldLoc = ReadSourceLocation(); 788 Designators.push_back(Designator(Name, DotLoc, FieldLoc)); 789 break; 790 } 791 792 case DESIG_ARRAY: { 793 unsigned Index = Record.readInt(); 794 SourceLocation LBracketLoc = ReadSourceLocation(); 795 SourceLocation RBracketLoc = ReadSourceLocation(); 796 Designators.push_back(Designator(Index, LBracketLoc, RBracketLoc)); 797 break; 798 } 799 800 case DESIG_ARRAY_RANGE: { 801 unsigned Index = Record.readInt(); 802 SourceLocation LBracketLoc = ReadSourceLocation(); 803 SourceLocation EllipsisLoc = ReadSourceLocation(); 804 SourceLocation RBracketLoc = ReadSourceLocation(); 805 Designators.push_back(Designator(Index, LBracketLoc, EllipsisLoc, 806 RBracketLoc)); 807 break; 808 } 809 } 810 } 811 E->setDesignators(Record.getContext(), 812 Designators.data(), Designators.size()); 813 } 814 815 void ASTStmtReader::VisitDesignatedInitUpdateExpr(DesignatedInitUpdateExpr *E) { 816 VisitExpr(E); 817 E->setBase(Record.readSubExpr()); 818 E->setUpdater(Record.readSubExpr()); 819 } 820 821 void ASTStmtReader::VisitNoInitExpr(NoInitExpr *E) { 822 VisitExpr(E); 823 } 824 825 void ASTStmtReader::VisitArrayInitLoopExpr(ArrayInitLoopExpr *E) { 826 VisitExpr(E); 827 E->SubExprs[0] = Record.readSubExpr(); 828 E->SubExprs[1] = Record.readSubExpr(); 829 } 830 831 void ASTStmtReader::VisitArrayInitIndexExpr(ArrayInitIndexExpr *E) { 832 VisitExpr(E); 833 } 834 835 void ASTStmtReader::VisitImplicitValueInitExpr(ImplicitValueInitExpr *E) { 836 VisitExpr(E); 837 } 838 839 void ASTStmtReader::VisitVAArgExpr(VAArgExpr *E) { 840 VisitExpr(E); 841 E->setSubExpr(Record.readSubExpr()); 842 E->setWrittenTypeInfo(GetTypeSourceInfo()); 843 E->setBuiltinLoc(ReadSourceLocation()); 844 E->setRParenLoc(ReadSourceLocation()); 845 E->setIsMicrosoftABI(Record.readInt()); 846 } 847 848 void ASTStmtReader::VisitAddrLabelExpr(AddrLabelExpr *E) { 849 VisitExpr(E); 850 E->setAmpAmpLoc(ReadSourceLocation()); 851 E->setLabelLoc(ReadSourceLocation()); 852 E->setLabel(ReadDeclAs<LabelDecl>()); 853 } 854 855 void ASTStmtReader::VisitStmtExpr(StmtExpr *E) { 856 VisitExpr(E); 857 E->setLParenLoc(ReadSourceLocation()); 858 E->setRParenLoc(ReadSourceLocation()); 859 E->setSubStmt(cast_or_null<CompoundStmt>(Record.readSubStmt())); 860 } 861 862 void ASTStmtReader::VisitChooseExpr(ChooseExpr *E) { 863 VisitExpr(E); 864 E->setCond(Record.readSubExpr()); 865 E->setLHS(Record.readSubExpr()); 866 E->setRHS(Record.readSubExpr()); 867 E->setBuiltinLoc(ReadSourceLocation()); 868 E->setRParenLoc(ReadSourceLocation()); 869 E->setIsConditionTrue(Record.readInt()); 870 } 871 872 void ASTStmtReader::VisitGNUNullExpr(GNUNullExpr *E) { 873 VisitExpr(E); 874 E->setTokenLocation(ReadSourceLocation()); 875 } 876 877 void ASTStmtReader::VisitShuffleVectorExpr(ShuffleVectorExpr *E) { 878 VisitExpr(E); 879 SmallVector<Expr *, 16> Exprs; 880 unsigned NumExprs = Record.readInt(); 881 while (NumExprs--) 882 Exprs.push_back(Record.readSubExpr()); 883 E->setExprs(Record.getContext(), Exprs); 884 E->setBuiltinLoc(ReadSourceLocation()); 885 E->setRParenLoc(ReadSourceLocation()); 886 } 887 888 void ASTStmtReader::VisitConvertVectorExpr(ConvertVectorExpr *E) { 889 VisitExpr(E); 890 E->BuiltinLoc = ReadSourceLocation(); 891 E->RParenLoc = ReadSourceLocation(); 892 E->TInfo = GetTypeSourceInfo(); 893 E->SrcExpr = Record.readSubExpr(); 894 } 895 896 void ASTStmtReader::VisitBlockExpr(BlockExpr *E) { 897 VisitExpr(E); 898 E->setBlockDecl(ReadDeclAs<BlockDecl>()); 899 } 900 901 void ASTStmtReader::VisitGenericSelectionExpr(GenericSelectionExpr *E) { 902 VisitExpr(E); 903 E->NumAssocs = Record.readInt(); 904 E->AssocTypes = new (Record.getContext()) TypeSourceInfo*[E->NumAssocs]; 905 E->SubExprs = 906 new(Record.getContext()) Stmt*[GenericSelectionExpr::END_EXPR+E->NumAssocs]; 907 908 E->SubExprs[GenericSelectionExpr::CONTROLLING] = Record.readSubExpr(); 909 for (unsigned I = 0, N = E->getNumAssocs(); I != N; ++I) { 910 E->AssocTypes[I] = GetTypeSourceInfo(); 911 E->SubExprs[GenericSelectionExpr::END_EXPR+I] = Record.readSubExpr(); 912 } 913 E->ResultIndex = Record.readInt(); 914 915 E->GenericLoc = ReadSourceLocation(); 916 E->DefaultLoc = ReadSourceLocation(); 917 E->RParenLoc = ReadSourceLocation(); 918 } 919 920 void ASTStmtReader::VisitPseudoObjectExpr(PseudoObjectExpr *E) { 921 VisitExpr(E); 922 unsigned numSemanticExprs = Record.readInt(); 923 assert(numSemanticExprs + 1 == E->PseudoObjectExprBits.NumSubExprs); 924 E->PseudoObjectExprBits.ResultIndex = Record.readInt(); 925 926 // Read the syntactic expression. 927 E->getSubExprsBuffer()[0] = Record.readSubExpr(); 928 929 // Read all the semantic expressions. 930 for (unsigned i = 0; i != numSemanticExprs; ++i) { 931 Expr *subExpr = Record.readSubExpr(); 932 E->getSubExprsBuffer()[i+1] = subExpr; 933 } 934 } 935 936 void ASTStmtReader::VisitAtomicExpr(AtomicExpr *E) { 937 VisitExpr(E); 938 E->Op = AtomicExpr::AtomicOp(Record.readInt()); 939 E->NumSubExprs = AtomicExpr::getNumSubExprs(E->Op); 940 for (unsigned I = 0; I != E->NumSubExprs; ++I) 941 E->SubExprs[I] = Record.readSubExpr(); 942 E->BuiltinLoc = ReadSourceLocation(); 943 E->RParenLoc = ReadSourceLocation(); 944 } 945 946 //===----------------------------------------------------------------------===// 947 // Objective-C Expressions and Statements 948 949 void ASTStmtReader::VisitObjCStringLiteral(ObjCStringLiteral *E) { 950 VisitExpr(E); 951 E->setString(cast<StringLiteral>(Record.readSubStmt())); 952 E->setAtLoc(ReadSourceLocation()); 953 } 954 955 void ASTStmtReader::VisitObjCBoxedExpr(ObjCBoxedExpr *E) { 956 VisitExpr(E); 957 // could be one of several IntegerLiteral, FloatLiteral, etc. 958 E->SubExpr = Record.readSubStmt(); 959 E->BoxingMethod = ReadDeclAs<ObjCMethodDecl>(); 960 E->Range = ReadSourceRange(); 961 } 962 963 void ASTStmtReader::VisitObjCArrayLiteral(ObjCArrayLiteral *E) { 964 VisitExpr(E); 965 unsigned NumElements = Record.readInt(); 966 assert(NumElements == E->getNumElements() && "Wrong number of elements"); 967 Expr **Elements = E->getElements(); 968 for (unsigned I = 0, N = NumElements; I != N; ++I) 969 Elements[I] = Record.readSubExpr(); 970 E->ArrayWithObjectsMethod = ReadDeclAs<ObjCMethodDecl>(); 971 E->Range = ReadSourceRange(); 972 } 973 974 void ASTStmtReader::VisitObjCDictionaryLiteral(ObjCDictionaryLiteral *E) { 975 VisitExpr(E); 976 unsigned NumElements = Record.readInt(); 977 assert(NumElements == E->getNumElements() && "Wrong number of elements"); 978 bool HasPackExpansions = Record.readInt(); 979 assert(HasPackExpansions == E->HasPackExpansions &&"Pack expansion mismatch"); 980 ObjCDictionaryLiteral::KeyValuePair *KeyValues = 981 E->getTrailingObjects<ObjCDictionaryLiteral::KeyValuePair>(); 982 ObjCDictionaryLiteral::ExpansionData *Expansions = 983 E->getTrailingObjects<ObjCDictionaryLiteral::ExpansionData>(); 984 for (unsigned I = 0; I != NumElements; ++I) { 985 KeyValues[I].Key = Record.readSubExpr(); 986 KeyValues[I].Value = Record.readSubExpr(); 987 if (HasPackExpansions) { 988 Expansions[I].EllipsisLoc = ReadSourceLocation(); 989 Expansions[I].NumExpansionsPlusOne = Record.readInt(); 990 } 991 } 992 E->DictWithObjectsMethod = ReadDeclAs<ObjCMethodDecl>(); 993 E->Range = ReadSourceRange(); 994 } 995 996 void ASTStmtReader::VisitObjCEncodeExpr(ObjCEncodeExpr *E) { 997 VisitExpr(E); 998 E->setEncodedTypeSourceInfo(GetTypeSourceInfo()); 999 E->setAtLoc(ReadSourceLocation()); 1000 E->setRParenLoc(ReadSourceLocation()); 1001 } 1002 1003 void ASTStmtReader::VisitObjCSelectorExpr(ObjCSelectorExpr *E) { 1004 VisitExpr(E); 1005 E->setSelector(Record.readSelector()); 1006 E->setAtLoc(ReadSourceLocation()); 1007 E->setRParenLoc(ReadSourceLocation()); 1008 } 1009 1010 void ASTStmtReader::VisitObjCProtocolExpr(ObjCProtocolExpr *E) { 1011 VisitExpr(E); 1012 E->setProtocol(ReadDeclAs<ObjCProtocolDecl>()); 1013 E->setAtLoc(ReadSourceLocation()); 1014 E->ProtoLoc = ReadSourceLocation(); 1015 E->setRParenLoc(ReadSourceLocation()); 1016 } 1017 1018 void ASTStmtReader::VisitObjCIvarRefExpr(ObjCIvarRefExpr *E) { 1019 VisitExpr(E); 1020 E->setDecl(ReadDeclAs<ObjCIvarDecl>()); 1021 E->setLocation(ReadSourceLocation()); 1022 E->setOpLoc(ReadSourceLocation()); 1023 E->setBase(Record.readSubExpr()); 1024 E->setIsArrow(Record.readInt()); 1025 E->setIsFreeIvar(Record.readInt()); 1026 } 1027 1028 void ASTStmtReader::VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *E) { 1029 VisitExpr(E); 1030 unsigned MethodRefFlags = Record.readInt(); 1031 bool Implicit = Record.readInt() != 0; 1032 if (Implicit) { 1033 ObjCMethodDecl *Getter = ReadDeclAs<ObjCMethodDecl>(); 1034 ObjCMethodDecl *Setter = ReadDeclAs<ObjCMethodDecl>(); 1035 E->setImplicitProperty(Getter, Setter, MethodRefFlags); 1036 } else { 1037 E->setExplicitProperty(ReadDeclAs<ObjCPropertyDecl>(), MethodRefFlags); 1038 } 1039 E->setLocation(ReadSourceLocation()); 1040 E->setReceiverLocation(ReadSourceLocation()); 1041 switch (Record.readInt()) { 1042 case 0: 1043 E->setBase(Record.readSubExpr()); 1044 break; 1045 case 1: 1046 E->setSuperReceiver(Record.readType()); 1047 break; 1048 case 2: 1049 E->setClassReceiver(ReadDeclAs<ObjCInterfaceDecl>()); 1050 break; 1051 } 1052 } 1053 1054 void ASTStmtReader::VisitObjCSubscriptRefExpr(ObjCSubscriptRefExpr *E) { 1055 VisitExpr(E); 1056 E->setRBracket(ReadSourceLocation()); 1057 E->setBaseExpr(Record.readSubExpr()); 1058 E->setKeyExpr(Record.readSubExpr()); 1059 E->GetAtIndexMethodDecl = ReadDeclAs<ObjCMethodDecl>(); 1060 E->SetAtIndexMethodDecl = ReadDeclAs<ObjCMethodDecl>(); 1061 } 1062 1063 void ASTStmtReader::VisitObjCMessageExpr(ObjCMessageExpr *E) { 1064 VisitExpr(E); 1065 assert(Record.peekInt() == E->getNumArgs()); 1066 Record.skipInts(1); 1067 unsigned NumStoredSelLocs = Record.readInt(); 1068 E->SelLocsKind = Record.readInt(); 1069 E->setDelegateInitCall(Record.readInt()); 1070 E->IsImplicit = Record.readInt(); 1071 ObjCMessageExpr::ReceiverKind Kind 1072 = static_cast<ObjCMessageExpr::ReceiverKind>(Record.readInt()); 1073 switch (Kind) { 1074 case ObjCMessageExpr::Instance: 1075 E->setInstanceReceiver(Record.readSubExpr()); 1076 break; 1077 1078 case ObjCMessageExpr::Class: 1079 E->setClassReceiver(GetTypeSourceInfo()); 1080 break; 1081 1082 case ObjCMessageExpr::SuperClass: 1083 case ObjCMessageExpr::SuperInstance: { 1084 QualType T = Record.readType(); 1085 SourceLocation SuperLoc = ReadSourceLocation(); 1086 E->setSuper(SuperLoc, T, Kind == ObjCMessageExpr::SuperInstance); 1087 break; 1088 } 1089 } 1090 1091 assert(Kind == E->getReceiverKind()); 1092 1093 if (Record.readInt()) 1094 E->setMethodDecl(ReadDeclAs<ObjCMethodDecl>()); 1095 else 1096 E->setSelector(Record.readSelector()); 1097 1098 E->LBracLoc = ReadSourceLocation(); 1099 E->RBracLoc = ReadSourceLocation(); 1100 1101 for (unsigned I = 0, N = E->getNumArgs(); I != N; ++I) 1102 E->setArg(I, Record.readSubExpr()); 1103 1104 SourceLocation *Locs = E->getStoredSelLocs(); 1105 for (unsigned I = 0; I != NumStoredSelLocs; ++I) 1106 Locs[I] = ReadSourceLocation(); 1107 } 1108 1109 void ASTStmtReader::VisitObjCForCollectionStmt(ObjCForCollectionStmt *S) { 1110 VisitStmt(S); 1111 S->setElement(Record.readSubStmt()); 1112 S->setCollection(Record.readSubExpr()); 1113 S->setBody(Record.readSubStmt()); 1114 S->setForLoc(ReadSourceLocation()); 1115 S->setRParenLoc(ReadSourceLocation()); 1116 } 1117 1118 void ASTStmtReader::VisitObjCAtCatchStmt(ObjCAtCatchStmt *S) { 1119 VisitStmt(S); 1120 S->setCatchBody(Record.readSubStmt()); 1121 S->setCatchParamDecl(ReadDeclAs<VarDecl>()); 1122 S->setAtCatchLoc(ReadSourceLocation()); 1123 S->setRParenLoc(ReadSourceLocation()); 1124 } 1125 1126 void ASTStmtReader::VisitObjCAtFinallyStmt(ObjCAtFinallyStmt *S) { 1127 VisitStmt(S); 1128 S->setFinallyBody(Record.readSubStmt()); 1129 S->setAtFinallyLoc(ReadSourceLocation()); 1130 } 1131 1132 void ASTStmtReader::VisitObjCAutoreleasePoolStmt(ObjCAutoreleasePoolStmt *S) { 1133 VisitStmt(S); 1134 S->setSubStmt(Record.readSubStmt()); 1135 S->setAtLoc(ReadSourceLocation()); 1136 } 1137 1138 void ASTStmtReader::VisitObjCAtTryStmt(ObjCAtTryStmt *S) { 1139 VisitStmt(S); 1140 assert(Record.peekInt() == S->getNumCatchStmts()); 1141 Record.skipInts(1); 1142 bool HasFinally = Record.readInt(); 1143 S->setTryBody(Record.readSubStmt()); 1144 for (unsigned I = 0, N = S->getNumCatchStmts(); I != N; ++I) 1145 S->setCatchStmt(I, cast_or_null<ObjCAtCatchStmt>(Record.readSubStmt())); 1146 1147 if (HasFinally) 1148 S->setFinallyStmt(Record.readSubStmt()); 1149 S->setAtTryLoc(ReadSourceLocation()); 1150 } 1151 1152 void ASTStmtReader::VisitObjCAtSynchronizedStmt(ObjCAtSynchronizedStmt *S) { 1153 VisitStmt(S); 1154 S->setSynchExpr(Record.readSubStmt()); 1155 S->setSynchBody(Record.readSubStmt()); 1156 S->setAtSynchronizedLoc(ReadSourceLocation()); 1157 } 1158 1159 void ASTStmtReader::VisitObjCAtThrowStmt(ObjCAtThrowStmt *S) { 1160 VisitStmt(S); 1161 S->setThrowExpr(Record.readSubStmt()); 1162 S->setThrowLoc(ReadSourceLocation()); 1163 } 1164 1165 void ASTStmtReader::VisitObjCBoolLiteralExpr(ObjCBoolLiteralExpr *E) { 1166 VisitExpr(E); 1167 E->setValue(Record.readInt()); 1168 E->setLocation(ReadSourceLocation()); 1169 } 1170 1171 void ASTStmtReader::VisitObjCAvailabilityCheckExpr(ObjCAvailabilityCheckExpr *E) { 1172 VisitExpr(E); 1173 SourceRange R = Record.readSourceRange(); 1174 E->AtLoc = R.getBegin(); 1175 E->RParen = R.getEnd(); 1176 E->VersionToCheck = Record.readVersionTuple(); 1177 } 1178 1179 //===----------------------------------------------------------------------===// 1180 // C++ Expressions and Statements 1181 //===----------------------------------------------------------------------===// 1182 1183 void ASTStmtReader::VisitCXXCatchStmt(CXXCatchStmt *S) { 1184 VisitStmt(S); 1185 S->CatchLoc = ReadSourceLocation(); 1186 S->ExceptionDecl = ReadDeclAs<VarDecl>(); 1187 S->HandlerBlock = Record.readSubStmt(); 1188 } 1189 1190 void ASTStmtReader::VisitCXXTryStmt(CXXTryStmt *S) { 1191 VisitStmt(S); 1192 assert(Record.peekInt() == S->getNumHandlers() && "NumStmtFields is wrong ?"); 1193 Record.skipInts(1); 1194 S->TryLoc = ReadSourceLocation(); 1195 S->getStmts()[0] = Record.readSubStmt(); 1196 for (unsigned i = 0, e = S->getNumHandlers(); i != e; ++i) 1197 S->getStmts()[i + 1] = Record.readSubStmt(); 1198 } 1199 1200 void ASTStmtReader::VisitCXXForRangeStmt(CXXForRangeStmt *S) { 1201 VisitStmt(S); 1202 S->ForLoc = ReadSourceLocation(); 1203 S->CoawaitLoc = ReadSourceLocation(); 1204 S->ColonLoc = ReadSourceLocation(); 1205 S->RParenLoc = ReadSourceLocation(); 1206 S->setRangeStmt(Record.readSubStmt()); 1207 S->setBeginStmt(Record.readSubStmt()); 1208 S->setEndStmt(Record.readSubStmt()); 1209 S->setCond(Record.readSubExpr()); 1210 S->setInc(Record.readSubExpr()); 1211 S->setLoopVarStmt(Record.readSubStmt()); 1212 S->setBody(Record.readSubStmt()); 1213 } 1214 1215 void ASTStmtReader::VisitMSDependentExistsStmt(MSDependentExistsStmt *S) { 1216 VisitStmt(S); 1217 S->KeywordLoc = ReadSourceLocation(); 1218 S->IsIfExists = Record.readInt(); 1219 S->QualifierLoc = Record.readNestedNameSpecifierLoc(); 1220 ReadDeclarationNameInfo(S->NameInfo); 1221 S->SubStmt = Record.readSubStmt(); 1222 } 1223 1224 void ASTStmtReader::VisitCXXOperatorCallExpr(CXXOperatorCallExpr *E) { 1225 VisitCallExpr(E); 1226 E->Operator = (OverloadedOperatorKind)Record.readInt(); 1227 E->Range = Record.readSourceRange(); 1228 E->setFPFeatures(FPOptions(Record.readInt())); 1229 } 1230 1231 void ASTStmtReader::VisitCXXConstructExpr(CXXConstructExpr *E) { 1232 VisitExpr(E); 1233 E->NumArgs = Record.readInt(); 1234 if (E->NumArgs) 1235 E->Args = new (Record.getContext()) Stmt*[E->NumArgs]; 1236 for (unsigned I = 0, N = E->getNumArgs(); I != N; ++I) 1237 E->setArg(I, Record.readSubExpr()); 1238 E->setConstructor(ReadDeclAs<CXXConstructorDecl>()); 1239 E->setLocation(ReadSourceLocation()); 1240 E->setElidable(Record.readInt()); 1241 E->setHadMultipleCandidates(Record.readInt()); 1242 E->setListInitialization(Record.readInt()); 1243 E->setStdInitListInitialization(Record.readInt()); 1244 E->setRequiresZeroInitialization(Record.readInt()); 1245 E->setConstructionKind((CXXConstructExpr::ConstructionKind)Record.readInt()); 1246 E->ParenOrBraceRange = ReadSourceRange(); 1247 } 1248 1249 void ASTStmtReader::VisitCXXInheritedCtorInitExpr(CXXInheritedCtorInitExpr *E) { 1250 VisitExpr(E); 1251 E->Constructor = ReadDeclAs<CXXConstructorDecl>(); 1252 E->Loc = ReadSourceLocation(); 1253 E->ConstructsVirtualBase = Record.readInt(); 1254 E->InheritedFromVirtualBase = Record.readInt(); 1255 } 1256 1257 void ASTStmtReader::VisitCXXTemporaryObjectExpr(CXXTemporaryObjectExpr *E) { 1258 VisitCXXConstructExpr(E); 1259 E->Type = GetTypeSourceInfo(); 1260 } 1261 1262 void ASTStmtReader::VisitLambdaExpr(LambdaExpr *E) { 1263 VisitExpr(E); 1264 unsigned NumCaptures = Record.readInt(); 1265 assert(NumCaptures == E->NumCaptures);(void)NumCaptures; 1266 E->IntroducerRange = ReadSourceRange(); 1267 E->CaptureDefault = static_cast<LambdaCaptureDefault>(Record.readInt()); 1268 E->CaptureDefaultLoc = ReadSourceLocation(); 1269 E->ExplicitParams = Record.readInt(); 1270 E->ExplicitResultType = Record.readInt(); 1271 E->ClosingBrace = ReadSourceLocation(); 1272 1273 // Read capture initializers. 1274 for (LambdaExpr::capture_init_iterator C = E->capture_init_begin(), 1275 CEnd = E->capture_init_end(); 1276 C != CEnd; ++C) 1277 *C = Record.readSubExpr(); 1278 } 1279 1280 void 1281 ASTStmtReader::VisitCXXStdInitializerListExpr(CXXStdInitializerListExpr *E) { 1282 VisitExpr(E); 1283 E->SubExpr = Record.readSubExpr(); 1284 } 1285 1286 void ASTStmtReader::VisitCXXNamedCastExpr(CXXNamedCastExpr *E) { 1287 VisitExplicitCastExpr(E); 1288 SourceRange R = ReadSourceRange(); 1289 E->Loc = R.getBegin(); 1290 E->RParenLoc = R.getEnd(); 1291 R = ReadSourceRange(); 1292 E->AngleBrackets = R; 1293 } 1294 1295 void ASTStmtReader::VisitCXXStaticCastExpr(CXXStaticCastExpr *E) { 1296 return VisitCXXNamedCastExpr(E); 1297 } 1298 1299 void ASTStmtReader::VisitCXXDynamicCastExpr(CXXDynamicCastExpr *E) { 1300 return VisitCXXNamedCastExpr(E); 1301 } 1302 1303 void ASTStmtReader::VisitCXXReinterpretCastExpr(CXXReinterpretCastExpr *E) { 1304 return VisitCXXNamedCastExpr(E); 1305 } 1306 1307 void ASTStmtReader::VisitCXXConstCastExpr(CXXConstCastExpr *E) { 1308 return VisitCXXNamedCastExpr(E); 1309 } 1310 1311 void ASTStmtReader::VisitCXXFunctionalCastExpr(CXXFunctionalCastExpr *E) { 1312 VisitExplicitCastExpr(E); 1313 E->setLParenLoc(ReadSourceLocation()); 1314 E->setRParenLoc(ReadSourceLocation()); 1315 } 1316 1317 void ASTStmtReader::VisitUserDefinedLiteral(UserDefinedLiteral *E) { 1318 VisitCallExpr(E); 1319 E->UDSuffixLoc = ReadSourceLocation(); 1320 } 1321 1322 void ASTStmtReader::VisitCXXBoolLiteralExpr(CXXBoolLiteralExpr *E) { 1323 VisitExpr(E); 1324 E->setValue(Record.readInt()); 1325 E->setLocation(ReadSourceLocation()); 1326 } 1327 1328 void ASTStmtReader::VisitCXXNullPtrLiteralExpr(CXXNullPtrLiteralExpr *E) { 1329 VisitExpr(E); 1330 E->setLocation(ReadSourceLocation()); 1331 } 1332 1333 void ASTStmtReader::VisitCXXTypeidExpr(CXXTypeidExpr *E) { 1334 VisitExpr(E); 1335 E->setSourceRange(ReadSourceRange()); 1336 if (E->isTypeOperand()) { // typeid(int) 1337 E->setTypeOperandSourceInfo( 1338 GetTypeSourceInfo()); 1339 return; 1340 } 1341 1342 // typeid(42+2) 1343 E->setExprOperand(Record.readSubExpr()); 1344 } 1345 1346 void ASTStmtReader::VisitCXXThisExpr(CXXThisExpr *E) { 1347 VisitExpr(E); 1348 E->setLocation(ReadSourceLocation()); 1349 E->setImplicit(Record.readInt()); 1350 } 1351 1352 void ASTStmtReader::VisitCXXThrowExpr(CXXThrowExpr *E) { 1353 VisitExpr(E); 1354 E->ThrowLoc = ReadSourceLocation(); 1355 E->Op = Record.readSubExpr(); 1356 E->IsThrownVariableInScope = Record.readInt(); 1357 } 1358 1359 void ASTStmtReader::VisitCXXDefaultArgExpr(CXXDefaultArgExpr *E) { 1360 VisitExpr(E); 1361 E->Param = ReadDeclAs<ParmVarDecl>(); 1362 E->Loc = ReadSourceLocation(); 1363 } 1364 1365 void ASTStmtReader::VisitCXXDefaultInitExpr(CXXDefaultInitExpr *E) { 1366 VisitExpr(E); 1367 E->Field = ReadDeclAs<FieldDecl>(); 1368 E->Loc = ReadSourceLocation(); 1369 } 1370 1371 void ASTStmtReader::VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E) { 1372 VisitExpr(E); 1373 E->setTemporary(Record.readCXXTemporary()); 1374 E->setSubExpr(Record.readSubExpr()); 1375 } 1376 1377 void ASTStmtReader::VisitCXXScalarValueInitExpr(CXXScalarValueInitExpr *E) { 1378 VisitExpr(E); 1379 E->TypeInfo = GetTypeSourceInfo(); 1380 E->RParenLoc = ReadSourceLocation(); 1381 } 1382 1383 void ASTStmtReader::VisitCXXNewExpr(CXXNewExpr *E) { 1384 VisitExpr(E); 1385 E->GlobalNew = Record.readInt(); 1386 bool isArray = Record.readInt(); 1387 E->PassAlignment = Record.readInt(); 1388 E->UsualArrayDeleteWantsSize = Record.readInt(); 1389 unsigned NumPlacementArgs = Record.readInt(); 1390 E->StoredInitializationStyle = Record.readInt(); 1391 E->setOperatorNew(ReadDeclAs<FunctionDecl>()); 1392 E->setOperatorDelete(ReadDeclAs<FunctionDecl>()); 1393 E->AllocatedTypeInfo = GetTypeSourceInfo(); 1394 E->TypeIdParens = ReadSourceRange(); 1395 E->Range = ReadSourceRange(); 1396 E->DirectInitRange = ReadSourceRange(); 1397 1398 E->AllocateArgsArray(Record.getContext(), isArray, NumPlacementArgs, 1399 E->StoredInitializationStyle != 0); 1400 1401 // Install all the subexpressions. 1402 for (CXXNewExpr::raw_arg_iterator I = E->raw_arg_begin(),e = E->raw_arg_end(); 1403 I != e; ++I) 1404 *I = Record.readSubStmt(); 1405 } 1406 1407 void ASTStmtReader::VisitCXXDeleteExpr(CXXDeleteExpr *E) { 1408 VisitExpr(E); 1409 E->GlobalDelete = Record.readInt(); 1410 E->ArrayForm = Record.readInt(); 1411 E->ArrayFormAsWritten = Record.readInt(); 1412 E->UsualArrayDeleteWantsSize = Record.readInt(); 1413 E->OperatorDelete = ReadDeclAs<FunctionDecl>(); 1414 E->Argument = Record.readSubExpr(); 1415 E->Loc = ReadSourceLocation(); 1416 } 1417 1418 void ASTStmtReader::VisitCXXPseudoDestructorExpr(CXXPseudoDestructorExpr *E) { 1419 VisitExpr(E); 1420 1421 E->Base = Record.readSubExpr(); 1422 E->IsArrow = Record.readInt(); 1423 E->OperatorLoc = ReadSourceLocation(); 1424 E->QualifierLoc = Record.readNestedNameSpecifierLoc(); 1425 E->ScopeType = GetTypeSourceInfo(); 1426 E->ColonColonLoc = ReadSourceLocation(); 1427 E->TildeLoc = ReadSourceLocation(); 1428 1429 IdentifierInfo *II = Record.getIdentifierInfo(); 1430 if (II) 1431 E->setDestroyedType(II, ReadSourceLocation()); 1432 else 1433 E->setDestroyedType(GetTypeSourceInfo()); 1434 } 1435 1436 void ASTStmtReader::VisitExprWithCleanups(ExprWithCleanups *E) { 1437 VisitExpr(E); 1438 1439 unsigned NumObjects = Record.readInt(); 1440 assert(NumObjects == E->getNumObjects()); 1441 for (unsigned i = 0; i != NumObjects; ++i) 1442 E->getTrailingObjects<BlockDecl *>()[i] = 1443 ReadDeclAs<BlockDecl>(); 1444 1445 E->ExprWithCleanupsBits.CleanupsHaveSideEffects = Record.readInt(); 1446 E->SubExpr = Record.readSubExpr(); 1447 } 1448 1449 void 1450 ASTStmtReader::VisitCXXDependentScopeMemberExpr(CXXDependentScopeMemberExpr *E){ 1451 VisitExpr(E); 1452 1453 if (Record.readInt()) // HasTemplateKWAndArgsInfo 1454 ReadTemplateKWAndArgsInfo( 1455 *E->getTrailingObjects<ASTTemplateKWAndArgsInfo>(), 1456 E->getTrailingObjects<TemplateArgumentLoc>(), 1457 /*NumTemplateArgs=*/Record.readInt()); 1458 1459 E->Base = Record.readSubExpr(); 1460 E->BaseType = Record.readType(); 1461 E->IsArrow = Record.readInt(); 1462 E->OperatorLoc = ReadSourceLocation(); 1463 E->QualifierLoc = Record.readNestedNameSpecifierLoc(); 1464 E->FirstQualifierFoundInScope = ReadDeclAs<NamedDecl>(); 1465 ReadDeclarationNameInfo(E->MemberNameInfo); 1466 } 1467 1468 void 1469 ASTStmtReader::VisitDependentScopeDeclRefExpr(DependentScopeDeclRefExpr *E) { 1470 VisitExpr(E); 1471 1472 if (Record.readInt()) // HasTemplateKWAndArgsInfo 1473 ReadTemplateKWAndArgsInfo( 1474 *E->getTrailingObjects<ASTTemplateKWAndArgsInfo>(), 1475 E->getTrailingObjects<TemplateArgumentLoc>(), 1476 /*NumTemplateArgs=*/Record.readInt()); 1477 1478 E->QualifierLoc = Record.readNestedNameSpecifierLoc(); 1479 ReadDeclarationNameInfo(E->NameInfo); 1480 } 1481 1482 void 1483 ASTStmtReader::VisitCXXUnresolvedConstructExpr(CXXUnresolvedConstructExpr *E) { 1484 VisitExpr(E); 1485 assert(Record.peekInt() == E->arg_size() && 1486 "Read wrong record during creation ?"); 1487 Record.skipInts(1); 1488 for (unsigned I = 0, N = E->arg_size(); I != N; ++I) 1489 E->setArg(I, Record.readSubExpr()); 1490 E->Type = GetTypeSourceInfo(); 1491 E->setLParenLoc(ReadSourceLocation()); 1492 E->setRParenLoc(ReadSourceLocation()); 1493 } 1494 1495 void ASTStmtReader::VisitOverloadExpr(OverloadExpr *E) { 1496 VisitExpr(E); 1497 1498 if (Record.readInt()) // HasTemplateKWAndArgsInfo 1499 ReadTemplateKWAndArgsInfo(*E->getTrailingASTTemplateKWAndArgsInfo(), 1500 E->getTrailingTemplateArgumentLoc(), 1501 /*NumTemplateArgs=*/Record.readInt()); 1502 1503 unsigned NumDecls = Record.readInt(); 1504 UnresolvedSet<8> Decls; 1505 for (unsigned i = 0; i != NumDecls; ++i) { 1506 NamedDecl *D = ReadDeclAs<NamedDecl>(); 1507 AccessSpecifier AS = (AccessSpecifier)Record.readInt(); 1508 Decls.addDecl(D, AS); 1509 } 1510 E->initializeResults(Record.getContext(), Decls.begin(), Decls.end()); 1511 1512 ReadDeclarationNameInfo(E->NameInfo); 1513 E->QualifierLoc = Record.readNestedNameSpecifierLoc(); 1514 } 1515 1516 void ASTStmtReader::VisitUnresolvedMemberExpr(UnresolvedMemberExpr *E) { 1517 VisitOverloadExpr(E); 1518 E->IsArrow = Record.readInt(); 1519 E->HasUnresolvedUsing = Record.readInt(); 1520 E->Base = Record.readSubExpr(); 1521 E->BaseType = Record.readType(); 1522 E->OperatorLoc = ReadSourceLocation(); 1523 } 1524 1525 void ASTStmtReader::VisitUnresolvedLookupExpr(UnresolvedLookupExpr *E) { 1526 VisitOverloadExpr(E); 1527 E->RequiresADL = Record.readInt(); 1528 E->Overloaded = Record.readInt(); 1529 E->NamingClass = ReadDeclAs<CXXRecordDecl>(); 1530 } 1531 1532 void ASTStmtReader::VisitTypeTraitExpr(TypeTraitExpr *E) { 1533 VisitExpr(E); 1534 E->TypeTraitExprBits.NumArgs = Record.readInt(); 1535 E->TypeTraitExprBits.Kind = Record.readInt(); 1536 E->TypeTraitExprBits.Value = Record.readInt(); 1537 SourceRange Range = ReadSourceRange(); 1538 E->Loc = Range.getBegin(); 1539 E->RParenLoc = Range.getEnd(); 1540 1541 TypeSourceInfo **Args = E->getTrailingObjects<TypeSourceInfo *>(); 1542 for (unsigned I = 0, N = E->getNumArgs(); I != N; ++I) 1543 Args[I] = GetTypeSourceInfo(); 1544 } 1545 1546 void ASTStmtReader::VisitArrayTypeTraitExpr(ArrayTypeTraitExpr *E) { 1547 VisitExpr(E); 1548 E->ATT = (ArrayTypeTrait)Record.readInt(); 1549 E->Value = (unsigned int)Record.readInt(); 1550 SourceRange Range = ReadSourceRange(); 1551 E->Loc = Range.getBegin(); 1552 E->RParen = Range.getEnd(); 1553 E->QueriedType = GetTypeSourceInfo(); 1554 E->Dimension = Record.readSubExpr(); 1555 } 1556 1557 void ASTStmtReader::VisitExpressionTraitExpr(ExpressionTraitExpr *E) { 1558 VisitExpr(E); 1559 E->ET = (ExpressionTrait)Record.readInt(); 1560 E->Value = (bool)Record.readInt(); 1561 SourceRange Range = ReadSourceRange(); 1562 E->QueriedExpression = Record.readSubExpr(); 1563 E->Loc = Range.getBegin(); 1564 E->RParen = Range.getEnd(); 1565 } 1566 1567 void ASTStmtReader::VisitCXXNoexceptExpr(CXXNoexceptExpr *E) { 1568 VisitExpr(E); 1569 E->Value = (bool)Record.readInt(); 1570 E->Range = ReadSourceRange(); 1571 E->Operand = Record.readSubExpr(); 1572 } 1573 1574 void ASTStmtReader::VisitPackExpansionExpr(PackExpansionExpr *E) { 1575 VisitExpr(E); 1576 E->EllipsisLoc = ReadSourceLocation(); 1577 E->NumExpansions = Record.readInt(); 1578 E->Pattern = Record.readSubExpr(); 1579 } 1580 1581 void ASTStmtReader::VisitSizeOfPackExpr(SizeOfPackExpr *E) { 1582 VisitExpr(E); 1583 unsigned NumPartialArgs = Record.readInt(); 1584 E->OperatorLoc = ReadSourceLocation(); 1585 E->PackLoc = ReadSourceLocation(); 1586 E->RParenLoc = ReadSourceLocation(); 1587 E->Pack = Record.readDeclAs<NamedDecl>(); 1588 if (E->isPartiallySubstituted()) { 1589 assert(E->Length == NumPartialArgs); 1590 for (auto *I = E->getTrailingObjects<TemplateArgument>(), 1591 *E = I + NumPartialArgs; 1592 I != E; ++I) 1593 new (I) TemplateArgument(Record.readTemplateArgument()); 1594 } else if (!E->isValueDependent()) { 1595 E->Length = Record.readInt(); 1596 } 1597 } 1598 1599 void ASTStmtReader::VisitSubstNonTypeTemplateParmExpr( 1600 SubstNonTypeTemplateParmExpr *E) { 1601 VisitExpr(E); 1602 E->Param = ReadDeclAs<NonTypeTemplateParmDecl>(); 1603 E->NameLoc = ReadSourceLocation(); 1604 E->Replacement = Record.readSubExpr(); 1605 } 1606 1607 void ASTStmtReader::VisitSubstNonTypeTemplateParmPackExpr( 1608 SubstNonTypeTemplateParmPackExpr *E) { 1609 VisitExpr(E); 1610 E->Param = ReadDeclAs<NonTypeTemplateParmDecl>(); 1611 TemplateArgument ArgPack = Record.readTemplateArgument(); 1612 if (ArgPack.getKind() != TemplateArgument::Pack) 1613 return; 1614 1615 E->Arguments = ArgPack.pack_begin(); 1616 E->NumArguments = ArgPack.pack_size(); 1617 E->NameLoc = ReadSourceLocation(); 1618 } 1619 1620 void ASTStmtReader::VisitFunctionParmPackExpr(FunctionParmPackExpr *E) { 1621 VisitExpr(E); 1622 E->NumParameters = Record.readInt(); 1623 E->ParamPack = ReadDeclAs<ParmVarDecl>(); 1624 E->NameLoc = ReadSourceLocation(); 1625 ParmVarDecl **Parms = E->getTrailingObjects<ParmVarDecl *>(); 1626 for (unsigned i = 0, n = E->NumParameters; i != n; ++i) 1627 Parms[i] = ReadDeclAs<ParmVarDecl>(); 1628 } 1629 1630 void ASTStmtReader::VisitMaterializeTemporaryExpr(MaterializeTemporaryExpr *E) { 1631 VisitExpr(E); 1632 E->State = Record.readSubExpr(); 1633 auto VD = ReadDeclAs<ValueDecl>(); 1634 unsigned ManglingNumber = Record.readInt(); 1635 E->setExtendingDecl(VD, ManglingNumber); 1636 } 1637 1638 void ASTStmtReader::VisitCXXFoldExpr(CXXFoldExpr *E) { 1639 VisitExpr(E); 1640 E->LParenLoc = ReadSourceLocation(); 1641 E->EllipsisLoc = ReadSourceLocation(); 1642 E->RParenLoc = ReadSourceLocation(); 1643 E->SubExprs[0] = Record.readSubExpr(); 1644 E->SubExprs[1] = Record.readSubExpr(); 1645 E->Opcode = (BinaryOperatorKind)Record.readInt(); 1646 } 1647 1648 void ASTStmtReader::VisitOpaqueValueExpr(OpaqueValueExpr *E) { 1649 VisitExpr(E); 1650 E->SourceExpr = Record.readSubExpr(); 1651 E->Loc = ReadSourceLocation(); 1652 } 1653 1654 void ASTStmtReader::VisitTypoExpr(TypoExpr *E) { 1655 llvm_unreachable("Cannot read TypoExpr nodes"); 1656 } 1657 1658 //===----------------------------------------------------------------------===// 1659 // Microsoft Expressions and Statements 1660 //===----------------------------------------------------------------------===// 1661 void ASTStmtReader::VisitMSPropertyRefExpr(MSPropertyRefExpr *E) { 1662 VisitExpr(E); 1663 E->IsArrow = (Record.readInt() != 0); 1664 E->BaseExpr = Record.readSubExpr(); 1665 E->QualifierLoc = Record.readNestedNameSpecifierLoc(); 1666 E->MemberLoc = ReadSourceLocation(); 1667 E->TheDecl = ReadDeclAs<MSPropertyDecl>(); 1668 } 1669 1670 void ASTStmtReader::VisitMSPropertySubscriptExpr(MSPropertySubscriptExpr *E) { 1671 VisitExpr(E); 1672 E->setBase(Record.readSubExpr()); 1673 E->setIdx(Record.readSubExpr()); 1674 E->setRBracketLoc(ReadSourceLocation()); 1675 } 1676 1677 void ASTStmtReader::VisitCXXUuidofExpr(CXXUuidofExpr *E) { 1678 VisitExpr(E); 1679 E->setSourceRange(ReadSourceRange()); 1680 std::string UuidStr = ReadString(); 1681 E->setUuidStr(StringRef(UuidStr).copy(Record.getContext())); 1682 if (E->isTypeOperand()) { // __uuidof(ComType) 1683 E->setTypeOperandSourceInfo( 1684 GetTypeSourceInfo()); 1685 return; 1686 } 1687 1688 // __uuidof(expr) 1689 E->setExprOperand(Record.readSubExpr()); 1690 } 1691 1692 void ASTStmtReader::VisitSEHLeaveStmt(SEHLeaveStmt *S) { 1693 VisitStmt(S); 1694 S->setLeaveLoc(ReadSourceLocation()); 1695 } 1696 1697 void ASTStmtReader::VisitSEHExceptStmt(SEHExceptStmt *S) { 1698 VisitStmt(S); 1699 S->Loc = ReadSourceLocation(); 1700 S->Children[SEHExceptStmt::FILTER_EXPR] = Record.readSubStmt(); 1701 S->Children[SEHExceptStmt::BLOCK] = Record.readSubStmt(); 1702 } 1703 1704 void ASTStmtReader::VisitSEHFinallyStmt(SEHFinallyStmt *S) { 1705 VisitStmt(S); 1706 S->Loc = ReadSourceLocation(); 1707 S->Block = Record.readSubStmt(); 1708 } 1709 1710 void ASTStmtReader::VisitSEHTryStmt(SEHTryStmt *S) { 1711 VisitStmt(S); 1712 S->IsCXXTry = Record.readInt(); 1713 S->TryLoc = ReadSourceLocation(); 1714 S->Children[SEHTryStmt::TRY] = Record.readSubStmt(); 1715 S->Children[SEHTryStmt::HANDLER] = Record.readSubStmt(); 1716 } 1717 1718 //===----------------------------------------------------------------------===// 1719 // CUDA Expressions and Statements 1720 //===----------------------------------------------------------------------===// 1721 1722 void ASTStmtReader::VisitCUDAKernelCallExpr(CUDAKernelCallExpr *E) { 1723 VisitCallExpr(E); 1724 E->setConfig(cast<CallExpr>(Record.readSubExpr())); 1725 } 1726 1727 //===----------------------------------------------------------------------===// 1728 // OpenCL Expressions and Statements. 1729 //===----------------------------------------------------------------------===// 1730 void ASTStmtReader::VisitAsTypeExpr(AsTypeExpr *E) { 1731 VisitExpr(E); 1732 E->BuiltinLoc = ReadSourceLocation(); 1733 E->RParenLoc = ReadSourceLocation(); 1734 E->SrcExpr = Record.readSubExpr(); 1735 } 1736 1737 //===----------------------------------------------------------------------===// 1738 // OpenMP Clauses. 1739 //===----------------------------------------------------------------------===// 1740 1741 namespace clang { 1742 class OMPClauseReader : public OMPClauseVisitor<OMPClauseReader> { 1743 ASTStmtReader *Reader; 1744 ASTContext &Context; 1745 public: 1746 OMPClauseReader(ASTStmtReader *R, ASTRecordReader &Record) 1747 : Reader(R), Context(Record.getContext()) {} 1748 #define OPENMP_CLAUSE(Name, Class) void Visit##Class(Class *C); 1749 #include "clang/Basic/OpenMPKinds.def" 1750 OMPClause *readClause(); 1751 void VisitOMPClauseWithPreInit(OMPClauseWithPreInit *C); 1752 void VisitOMPClauseWithPostUpdate(OMPClauseWithPostUpdate *C); 1753 }; 1754 } 1755 1756 OMPClause *OMPClauseReader::readClause() { 1757 OMPClause *C; 1758 switch (Reader->Record.readInt()) { 1759 case OMPC_if: 1760 C = new (Context) OMPIfClause(); 1761 break; 1762 case OMPC_final: 1763 C = new (Context) OMPFinalClause(); 1764 break; 1765 case OMPC_num_threads: 1766 C = new (Context) OMPNumThreadsClause(); 1767 break; 1768 case OMPC_safelen: 1769 C = new (Context) OMPSafelenClause(); 1770 break; 1771 case OMPC_simdlen: 1772 C = new (Context) OMPSimdlenClause(); 1773 break; 1774 case OMPC_collapse: 1775 C = new (Context) OMPCollapseClause(); 1776 break; 1777 case OMPC_default: 1778 C = new (Context) OMPDefaultClause(); 1779 break; 1780 case OMPC_proc_bind: 1781 C = new (Context) OMPProcBindClause(); 1782 break; 1783 case OMPC_schedule: 1784 C = new (Context) OMPScheduleClause(); 1785 break; 1786 case OMPC_ordered: 1787 C = new (Context) OMPOrderedClause(); 1788 break; 1789 case OMPC_nowait: 1790 C = new (Context) OMPNowaitClause(); 1791 break; 1792 case OMPC_untied: 1793 C = new (Context) OMPUntiedClause(); 1794 break; 1795 case OMPC_mergeable: 1796 C = new (Context) OMPMergeableClause(); 1797 break; 1798 case OMPC_read: 1799 C = new (Context) OMPReadClause(); 1800 break; 1801 case OMPC_write: 1802 C = new (Context) OMPWriteClause(); 1803 break; 1804 case OMPC_update: 1805 C = new (Context) OMPUpdateClause(); 1806 break; 1807 case OMPC_capture: 1808 C = new (Context) OMPCaptureClause(); 1809 break; 1810 case OMPC_seq_cst: 1811 C = new (Context) OMPSeqCstClause(); 1812 break; 1813 case OMPC_threads: 1814 C = new (Context) OMPThreadsClause(); 1815 break; 1816 case OMPC_simd: 1817 C = new (Context) OMPSIMDClause(); 1818 break; 1819 case OMPC_nogroup: 1820 C = new (Context) OMPNogroupClause(); 1821 break; 1822 case OMPC_private: 1823 C = OMPPrivateClause::CreateEmpty(Context, Reader->Record.readInt()); 1824 break; 1825 case OMPC_firstprivate: 1826 C = OMPFirstprivateClause::CreateEmpty(Context, Reader->Record.readInt()); 1827 break; 1828 case OMPC_lastprivate: 1829 C = OMPLastprivateClause::CreateEmpty(Context, Reader->Record.readInt()); 1830 break; 1831 case OMPC_shared: 1832 C = OMPSharedClause::CreateEmpty(Context, Reader->Record.readInt()); 1833 break; 1834 case OMPC_reduction: 1835 C = OMPReductionClause::CreateEmpty(Context, Reader->Record.readInt()); 1836 break; 1837 case OMPC_linear: 1838 C = OMPLinearClause::CreateEmpty(Context, Reader->Record.readInt()); 1839 break; 1840 case OMPC_aligned: 1841 C = OMPAlignedClause::CreateEmpty(Context, Reader->Record.readInt()); 1842 break; 1843 case OMPC_copyin: 1844 C = OMPCopyinClause::CreateEmpty(Context, Reader->Record.readInt()); 1845 break; 1846 case OMPC_copyprivate: 1847 C = OMPCopyprivateClause::CreateEmpty(Context, Reader->Record.readInt()); 1848 break; 1849 case OMPC_flush: 1850 C = OMPFlushClause::CreateEmpty(Context, Reader->Record.readInt()); 1851 break; 1852 case OMPC_depend: 1853 C = OMPDependClause::CreateEmpty(Context, Reader->Record.readInt()); 1854 break; 1855 case OMPC_device: 1856 C = new (Context) OMPDeviceClause(); 1857 break; 1858 case OMPC_map: { 1859 unsigned NumVars = Reader->Record.readInt(); 1860 unsigned NumDeclarations = Reader->Record.readInt(); 1861 unsigned NumLists = Reader->Record.readInt(); 1862 unsigned NumComponents = Reader->Record.readInt(); 1863 C = OMPMapClause::CreateEmpty(Context, NumVars, NumDeclarations, NumLists, 1864 NumComponents); 1865 break; 1866 } 1867 case OMPC_num_teams: 1868 C = new (Context) OMPNumTeamsClause(); 1869 break; 1870 case OMPC_thread_limit: 1871 C = new (Context) OMPThreadLimitClause(); 1872 break; 1873 case OMPC_priority: 1874 C = new (Context) OMPPriorityClause(); 1875 break; 1876 case OMPC_grainsize: 1877 C = new (Context) OMPGrainsizeClause(); 1878 break; 1879 case OMPC_num_tasks: 1880 C = new (Context) OMPNumTasksClause(); 1881 break; 1882 case OMPC_hint: 1883 C = new (Context) OMPHintClause(); 1884 break; 1885 case OMPC_dist_schedule: 1886 C = new (Context) OMPDistScheduleClause(); 1887 break; 1888 case OMPC_defaultmap: 1889 C = new (Context) OMPDefaultmapClause(); 1890 break; 1891 case OMPC_to: { 1892 unsigned NumVars = Reader->Record.readInt(); 1893 unsigned NumDeclarations = Reader->Record.readInt(); 1894 unsigned NumLists = Reader->Record.readInt(); 1895 unsigned NumComponents = Reader->Record.readInt(); 1896 C = OMPToClause::CreateEmpty(Context, NumVars, NumDeclarations, NumLists, 1897 NumComponents); 1898 break; 1899 } 1900 case OMPC_from: { 1901 unsigned NumVars = Reader->Record.readInt(); 1902 unsigned NumDeclarations = Reader->Record.readInt(); 1903 unsigned NumLists = Reader->Record.readInt(); 1904 unsigned NumComponents = Reader->Record.readInt(); 1905 C = OMPFromClause::CreateEmpty(Context, NumVars, NumDeclarations, NumLists, 1906 NumComponents); 1907 break; 1908 } 1909 case OMPC_use_device_ptr: { 1910 unsigned NumVars = Reader->Record.readInt(); 1911 unsigned NumDeclarations = Reader->Record.readInt(); 1912 unsigned NumLists = Reader->Record.readInt(); 1913 unsigned NumComponents = Reader->Record.readInt(); 1914 C = OMPUseDevicePtrClause::CreateEmpty(Context, NumVars, NumDeclarations, 1915 NumLists, NumComponents); 1916 break; 1917 } 1918 case OMPC_is_device_ptr: { 1919 unsigned NumVars = Reader->Record.readInt(); 1920 unsigned NumDeclarations = Reader->Record.readInt(); 1921 unsigned NumLists = Reader->Record.readInt(); 1922 unsigned NumComponents = Reader->Record.readInt(); 1923 C = OMPIsDevicePtrClause::CreateEmpty(Context, NumVars, NumDeclarations, 1924 NumLists, NumComponents); 1925 break; 1926 } 1927 } 1928 Visit(C); 1929 C->setLocStart(Reader->ReadSourceLocation()); 1930 C->setLocEnd(Reader->ReadSourceLocation()); 1931 1932 return C; 1933 } 1934 1935 void OMPClauseReader::VisitOMPClauseWithPreInit(OMPClauseWithPreInit *C) { 1936 C->setPreInitStmt(Reader->Record.readSubStmt(), 1937 static_cast<OpenMPDirectiveKind>(Reader->Record.readInt())); 1938 } 1939 1940 void OMPClauseReader::VisitOMPClauseWithPostUpdate(OMPClauseWithPostUpdate *C) { 1941 VisitOMPClauseWithPreInit(C); 1942 C->setPostUpdateExpr(Reader->Record.readSubExpr()); 1943 } 1944 1945 void OMPClauseReader::VisitOMPIfClause(OMPIfClause *C) { 1946 VisitOMPClauseWithPreInit(C); 1947 C->setNameModifier(static_cast<OpenMPDirectiveKind>(Reader->Record.readInt())); 1948 C->setNameModifierLoc(Reader->ReadSourceLocation()); 1949 C->setColonLoc(Reader->ReadSourceLocation()); 1950 C->setCondition(Reader->Record.readSubExpr()); 1951 C->setLParenLoc(Reader->ReadSourceLocation()); 1952 } 1953 1954 void OMPClauseReader::VisitOMPFinalClause(OMPFinalClause *C) { 1955 C->setCondition(Reader->Record.readSubExpr()); 1956 C->setLParenLoc(Reader->ReadSourceLocation()); 1957 } 1958 1959 void OMPClauseReader::VisitOMPNumThreadsClause(OMPNumThreadsClause *C) { 1960 VisitOMPClauseWithPreInit(C); 1961 C->setNumThreads(Reader->Record.readSubExpr()); 1962 C->setLParenLoc(Reader->ReadSourceLocation()); 1963 } 1964 1965 void OMPClauseReader::VisitOMPSafelenClause(OMPSafelenClause *C) { 1966 C->setSafelen(Reader->Record.readSubExpr()); 1967 C->setLParenLoc(Reader->ReadSourceLocation()); 1968 } 1969 1970 void OMPClauseReader::VisitOMPSimdlenClause(OMPSimdlenClause *C) { 1971 C->setSimdlen(Reader->Record.readSubExpr()); 1972 C->setLParenLoc(Reader->ReadSourceLocation()); 1973 } 1974 1975 void OMPClauseReader::VisitOMPCollapseClause(OMPCollapseClause *C) { 1976 C->setNumForLoops(Reader->Record.readSubExpr()); 1977 C->setLParenLoc(Reader->ReadSourceLocation()); 1978 } 1979 1980 void OMPClauseReader::VisitOMPDefaultClause(OMPDefaultClause *C) { 1981 C->setDefaultKind( 1982 static_cast<OpenMPDefaultClauseKind>(Reader->Record.readInt())); 1983 C->setLParenLoc(Reader->ReadSourceLocation()); 1984 C->setDefaultKindKwLoc(Reader->ReadSourceLocation()); 1985 } 1986 1987 void OMPClauseReader::VisitOMPProcBindClause(OMPProcBindClause *C) { 1988 C->setProcBindKind( 1989 static_cast<OpenMPProcBindClauseKind>(Reader->Record.readInt())); 1990 C->setLParenLoc(Reader->ReadSourceLocation()); 1991 C->setProcBindKindKwLoc(Reader->ReadSourceLocation()); 1992 } 1993 1994 void OMPClauseReader::VisitOMPScheduleClause(OMPScheduleClause *C) { 1995 VisitOMPClauseWithPreInit(C); 1996 C->setScheduleKind( 1997 static_cast<OpenMPScheduleClauseKind>(Reader->Record.readInt())); 1998 C->setFirstScheduleModifier( 1999 static_cast<OpenMPScheduleClauseModifier>(Reader->Record.readInt())); 2000 C->setSecondScheduleModifier( 2001 static_cast<OpenMPScheduleClauseModifier>(Reader->Record.readInt())); 2002 C->setChunkSize(Reader->Record.readSubExpr()); 2003 C->setLParenLoc(Reader->ReadSourceLocation()); 2004 C->setFirstScheduleModifierLoc(Reader->ReadSourceLocation()); 2005 C->setSecondScheduleModifierLoc(Reader->ReadSourceLocation()); 2006 C->setScheduleKindLoc(Reader->ReadSourceLocation()); 2007 C->setCommaLoc(Reader->ReadSourceLocation()); 2008 } 2009 2010 void OMPClauseReader::VisitOMPOrderedClause(OMPOrderedClause *C) { 2011 C->setNumForLoops(Reader->Record.readSubExpr()); 2012 C->setLParenLoc(Reader->ReadSourceLocation()); 2013 } 2014 2015 void OMPClauseReader::VisitOMPNowaitClause(OMPNowaitClause *) {} 2016 2017 void OMPClauseReader::VisitOMPUntiedClause(OMPUntiedClause *) {} 2018 2019 void OMPClauseReader::VisitOMPMergeableClause(OMPMergeableClause *) {} 2020 2021 void OMPClauseReader::VisitOMPReadClause(OMPReadClause *) {} 2022 2023 void OMPClauseReader::VisitOMPWriteClause(OMPWriteClause *) {} 2024 2025 void OMPClauseReader::VisitOMPUpdateClause(OMPUpdateClause *) {} 2026 2027 void OMPClauseReader::VisitOMPCaptureClause(OMPCaptureClause *) {} 2028 2029 void OMPClauseReader::VisitOMPSeqCstClause(OMPSeqCstClause *) {} 2030 2031 void OMPClauseReader::VisitOMPThreadsClause(OMPThreadsClause *) {} 2032 2033 void OMPClauseReader::VisitOMPSIMDClause(OMPSIMDClause *) {} 2034 2035 void OMPClauseReader::VisitOMPNogroupClause(OMPNogroupClause *) {} 2036 2037 void OMPClauseReader::VisitOMPPrivateClause(OMPPrivateClause *C) { 2038 C->setLParenLoc(Reader->ReadSourceLocation()); 2039 unsigned NumVars = C->varlist_size(); 2040 SmallVector<Expr *, 16> Vars; 2041 Vars.reserve(NumVars); 2042 for (unsigned i = 0; i != NumVars; ++i) 2043 Vars.push_back(Reader->Record.readSubExpr()); 2044 C->setVarRefs(Vars); 2045 Vars.clear(); 2046 for (unsigned i = 0; i != NumVars; ++i) 2047 Vars.push_back(Reader->Record.readSubExpr()); 2048 C->setPrivateCopies(Vars); 2049 } 2050 2051 void OMPClauseReader::VisitOMPFirstprivateClause(OMPFirstprivateClause *C) { 2052 VisitOMPClauseWithPreInit(C); 2053 C->setLParenLoc(Reader->ReadSourceLocation()); 2054 unsigned NumVars = C->varlist_size(); 2055 SmallVector<Expr *, 16> Vars; 2056 Vars.reserve(NumVars); 2057 for (unsigned i = 0; i != NumVars; ++i) 2058 Vars.push_back(Reader->Record.readSubExpr()); 2059 C->setVarRefs(Vars); 2060 Vars.clear(); 2061 for (unsigned i = 0; i != NumVars; ++i) 2062 Vars.push_back(Reader->Record.readSubExpr()); 2063 C->setPrivateCopies(Vars); 2064 Vars.clear(); 2065 for (unsigned i = 0; i != NumVars; ++i) 2066 Vars.push_back(Reader->Record.readSubExpr()); 2067 C->setInits(Vars); 2068 } 2069 2070 void OMPClauseReader::VisitOMPLastprivateClause(OMPLastprivateClause *C) { 2071 VisitOMPClauseWithPostUpdate(C); 2072 C->setLParenLoc(Reader->ReadSourceLocation()); 2073 unsigned NumVars = C->varlist_size(); 2074 SmallVector<Expr *, 16> Vars; 2075 Vars.reserve(NumVars); 2076 for (unsigned i = 0; i != NumVars; ++i) 2077 Vars.push_back(Reader->Record.readSubExpr()); 2078 C->setVarRefs(Vars); 2079 Vars.clear(); 2080 for (unsigned i = 0; i != NumVars; ++i) 2081 Vars.push_back(Reader->Record.readSubExpr()); 2082 C->setPrivateCopies(Vars); 2083 Vars.clear(); 2084 for (unsigned i = 0; i != NumVars; ++i) 2085 Vars.push_back(Reader->Record.readSubExpr()); 2086 C->setSourceExprs(Vars); 2087 Vars.clear(); 2088 for (unsigned i = 0; i != NumVars; ++i) 2089 Vars.push_back(Reader->Record.readSubExpr()); 2090 C->setDestinationExprs(Vars); 2091 Vars.clear(); 2092 for (unsigned i = 0; i != NumVars; ++i) 2093 Vars.push_back(Reader->Record.readSubExpr()); 2094 C->setAssignmentOps(Vars); 2095 } 2096 2097 void OMPClauseReader::VisitOMPSharedClause(OMPSharedClause *C) { 2098 C->setLParenLoc(Reader->ReadSourceLocation()); 2099 unsigned NumVars = C->varlist_size(); 2100 SmallVector<Expr *, 16> Vars; 2101 Vars.reserve(NumVars); 2102 for (unsigned i = 0; i != NumVars; ++i) 2103 Vars.push_back(Reader->Record.readSubExpr()); 2104 C->setVarRefs(Vars); 2105 } 2106 2107 void OMPClauseReader::VisitOMPReductionClause(OMPReductionClause *C) { 2108 VisitOMPClauseWithPostUpdate(C); 2109 C->setLParenLoc(Reader->ReadSourceLocation()); 2110 C->setColonLoc(Reader->ReadSourceLocation()); 2111 NestedNameSpecifierLoc NNSL = Reader->Record.readNestedNameSpecifierLoc(); 2112 DeclarationNameInfo DNI; 2113 Reader->ReadDeclarationNameInfo(DNI); 2114 C->setQualifierLoc(NNSL); 2115 C->setNameInfo(DNI); 2116 2117 unsigned NumVars = C->varlist_size(); 2118 SmallVector<Expr *, 16> Vars; 2119 Vars.reserve(NumVars); 2120 for (unsigned i = 0; i != NumVars; ++i) 2121 Vars.push_back(Reader->Record.readSubExpr()); 2122 C->setVarRefs(Vars); 2123 Vars.clear(); 2124 for (unsigned i = 0; i != NumVars; ++i) 2125 Vars.push_back(Reader->Record.readSubExpr()); 2126 C->setPrivates(Vars); 2127 Vars.clear(); 2128 for (unsigned i = 0; i != NumVars; ++i) 2129 Vars.push_back(Reader->Record.readSubExpr()); 2130 C->setLHSExprs(Vars); 2131 Vars.clear(); 2132 for (unsigned i = 0; i != NumVars; ++i) 2133 Vars.push_back(Reader->Record.readSubExpr()); 2134 C->setRHSExprs(Vars); 2135 Vars.clear(); 2136 for (unsigned i = 0; i != NumVars; ++i) 2137 Vars.push_back(Reader->Record.readSubExpr()); 2138 C->setReductionOps(Vars); 2139 } 2140 2141 void OMPClauseReader::VisitOMPLinearClause(OMPLinearClause *C) { 2142 VisitOMPClauseWithPostUpdate(C); 2143 C->setLParenLoc(Reader->ReadSourceLocation()); 2144 C->setColonLoc(Reader->ReadSourceLocation()); 2145 C->setModifier(static_cast<OpenMPLinearClauseKind>(Reader->Record.readInt())); 2146 C->setModifierLoc(Reader->ReadSourceLocation()); 2147 unsigned NumVars = C->varlist_size(); 2148 SmallVector<Expr *, 16> Vars; 2149 Vars.reserve(NumVars); 2150 for (unsigned i = 0; i != NumVars; ++i) 2151 Vars.push_back(Reader->Record.readSubExpr()); 2152 C->setVarRefs(Vars); 2153 Vars.clear(); 2154 for (unsigned i = 0; i != NumVars; ++i) 2155 Vars.push_back(Reader->Record.readSubExpr()); 2156 C->setPrivates(Vars); 2157 Vars.clear(); 2158 for (unsigned i = 0; i != NumVars; ++i) 2159 Vars.push_back(Reader->Record.readSubExpr()); 2160 C->setInits(Vars); 2161 Vars.clear(); 2162 for (unsigned i = 0; i != NumVars; ++i) 2163 Vars.push_back(Reader->Record.readSubExpr()); 2164 C->setUpdates(Vars); 2165 Vars.clear(); 2166 for (unsigned i = 0; i != NumVars; ++i) 2167 Vars.push_back(Reader->Record.readSubExpr()); 2168 C->setFinals(Vars); 2169 C->setStep(Reader->Record.readSubExpr()); 2170 C->setCalcStep(Reader->Record.readSubExpr()); 2171 } 2172 2173 void OMPClauseReader::VisitOMPAlignedClause(OMPAlignedClause *C) { 2174 C->setLParenLoc(Reader->ReadSourceLocation()); 2175 C->setColonLoc(Reader->ReadSourceLocation()); 2176 unsigned NumVars = C->varlist_size(); 2177 SmallVector<Expr *, 16> Vars; 2178 Vars.reserve(NumVars); 2179 for (unsigned i = 0; i != NumVars; ++i) 2180 Vars.push_back(Reader->Record.readSubExpr()); 2181 C->setVarRefs(Vars); 2182 C->setAlignment(Reader->Record.readSubExpr()); 2183 } 2184 2185 void OMPClauseReader::VisitOMPCopyinClause(OMPCopyinClause *C) { 2186 C->setLParenLoc(Reader->ReadSourceLocation()); 2187 unsigned NumVars = C->varlist_size(); 2188 SmallVector<Expr *, 16> Exprs; 2189 Exprs.reserve(NumVars); 2190 for (unsigned i = 0; i != NumVars; ++i) 2191 Exprs.push_back(Reader->Record.readSubExpr()); 2192 C->setVarRefs(Exprs); 2193 Exprs.clear(); 2194 for (unsigned i = 0; i != NumVars; ++i) 2195 Exprs.push_back(Reader->Record.readSubExpr()); 2196 C->setSourceExprs(Exprs); 2197 Exprs.clear(); 2198 for (unsigned i = 0; i != NumVars; ++i) 2199 Exprs.push_back(Reader->Record.readSubExpr()); 2200 C->setDestinationExprs(Exprs); 2201 Exprs.clear(); 2202 for (unsigned i = 0; i != NumVars; ++i) 2203 Exprs.push_back(Reader->Record.readSubExpr()); 2204 C->setAssignmentOps(Exprs); 2205 } 2206 2207 void OMPClauseReader::VisitOMPCopyprivateClause(OMPCopyprivateClause *C) { 2208 C->setLParenLoc(Reader->ReadSourceLocation()); 2209 unsigned NumVars = C->varlist_size(); 2210 SmallVector<Expr *, 16> Exprs; 2211 Exprs.reserve(NumVars); 2212 for (unsigned i = 0; i != NumVars; ++i) 2213 Exprs.push_back(Reader->Record.readSubExpr()); 2214 C->setVarRefs(Exprs); 2215 Exprs.clear(); 2216 for (unsigned i = 0; i != NumVars; ++i) 2217 Exprs.push_back(Reader->Record.readSubExpr()); 2218 C->setSourceExprs(Exprs); 2219 Exprs.clear(); 2220 for (unsigned i = 0; i != NumVars; ++i) 2221 Exprs.push_back(Reader->Record.readSubExpr()); 2222 C->setDestinationExprs(Exprs); 2223 Exprs.clear(); 2224 for (unsigned i = 0; i != NumVars; ++i) 2225 Exprs.push_back(Reader->Record.readSubExpr()); 2226 C->setAssignmentOps(Exprs); 2227 } 2228 2229 void OMPClauseReader::VisitOMPFlushClause(OMPFlushClause *C) { 2230 C->setLParenLoc(Reader->ReadSourceLocation()); 2231 unsigned NumVars = C->varlist_size(); 2232 SmallVector<Expr *, 16> Vars; 2233 Vars.reserve(NumVars); 2234 for (unsigned i = 0; i != NumVars; ++i) 2235 Vars.push_back(Reader->Record.readSubExpr()); 2236 C->setVarRefs(Vars); 2237 } 2238 2239 void OMPClauseReader::VisitOMPDependClause(OMPDependClause *C) { 2240 C->setLParenLoc(Reader->ReadSourceLocation()); 2241 C->setDependencyKind( 2242 static_cast<OpenMPDependClauseKind>(Reader->Record.readInt())); 2243 C->setDependencyLoc(Reader->ReadSourceLocation()); 2244 C->setColonLoc(Reader->ReadSourceLocation()); 2245 unsigned NumVars = C->varlist_size(); 2246 SmallVector<Expr *, 16> Vars; 2247 Vars.reserve(NumVars); 2248 for (unsigned i = 0; i != NumVars; ++i) 2249 Vars.push_back(Reader->Record.readSubExpr()); 2250 C->setVarRefs(Vars); 2251 C->setCounterValue(Reader->Record.readSubExpr()); 2252 } 2253 2254 void OMPClauseReader::VisitOMPDeviceClause(OMPDeviceClause *C) { 2255 C->setDevice(Reader->Record.readSubExpr()); 2256 C->setLParenLoc(Reader->ReadSourceLocation()); 2257 } 2258 2259 void OMPClauseReader::VisitOMPMapClause(OMPMapClause *C) { 2260 C->setLParenLoc(Reader->ReadSourceLocation()); 2261 C->setMapTypeModifier( 2262 static_cast<OpenMPMapClauseKind>(Reader->Record.readInt())); 2263 C->setMapType( 2264 static_cast<OpenMPMapClauseKind>(Reader->Record.readInt())); 2265 C->setMapLoc(Reader->ReadSourceLocation()); 2266 C->setColonLoc(Reader->ReadSourceLocation()); 2267 auto NumVars = C->varlist_size(); 2268 auto UniqueDecls = C->getUniqueDeclarationsNum(); 2269 auto TotalLists = C->getTotalComponentListNum(); 2270 auto TotalComponents = C->getTotalComponentsNum(); 2271 2272 SmallVector<Expr *, 16> Vars; 2273 Vars.reserve(NumVars); 2274 for (unsigned i = 0; i != NumVars; ++i) 2275 Vars.push_back(Reader->Record.readSubExpr()); 2276 C->setVarRefs(Vars); 2277 2278 SmallVector<ValueDecl *, 16> Decls; 2279 Decls.reserve(UniqueDecls); 2280 for (unsigned i = 0; i < UniqueDecls; ++i) 2281 Decls.push_back(Reader->Record.readDeclAs<ValueDecl>()); 2282 C->setUniqueDecls(Decls); 2283 2284 SmallVector<unsigned, 16> ListsPerDecl; 2285 ListsPerDecl.reserve(UniqueDecls); 2286 for (unsigned i = 0; i < UniqueDecls; ++i) 2287 ListsPerDecl.push_back(Reader->Record.readInt()); 2288 C->setDeclNumLists(ListsPerDecl); 2289 2290 SmallVector<unsigned, 32> ListSizes; 2291 ListSizes.reserve(TotalLists); 2292 for (unsigned i = 0; i < TotalLists; ++i) 2293 ListSizes.push_back(Reader->Record.readInt()); 2294 C->setComponentListSizes(ListSizes); 2295 2296 SmallVector<OMPClauseMappableExprCommon::MappableComponent, 32> Components; 2297 Components.reserve(TotalComponents); 2298 for (unsigned i = 0; i < TotalComponents; ++i) { 2299 Expr *AssociatedExpr = Reader->Record.readSubExpr(); 2300 ValueDecl *AssociatedDecl = Reader->Record.readDeclAs<ValueDecl>(); 2301 Components.push_back(OMPClauseMappableExprCommon::MappableComponent( 2302 AssociatedExpr, AssociatedDecl)); 2303 } 2304 C->setComponents(Components, ListSizes); 2305 } 2306 2307 void OMPClauseReader::VisitOMPNumTeamsClause(OMPNumTeamsClause *C) { 2308 VisitOMPClauseWithPreInit(C); 2309 C->setNumTeams(Reader->Record.readSubExpr()); 2310 C->setLParenLoc(Reader->ReadSourceLocation()); 2311 } 2312 2313 void OMPClauseReader::VisitOMPThreadLimitClause(OMPThreadLimitClause *C) { 2314 VisitOMPClauseWithPreInit(C); 2315 C->setThreadLimit(Reader->Record.readSubExpr()); 2316 C->setLParenLoc(Reader->ReadSourceLocation()); 2317 } 2318 2319 void OMPClauseReader::VisitOMPPriorityClause(OMPPriorityClause *C) { 2320 C->setPriority(Reader->Record.readSubExpr()); 2321 C->setLParenLoc(Reader->ReadSourceLocation()); 2322 } 2323 2324 void OMPClauseReader::VisitOMPGrainsizeClause(OMPGrainsizeClause *C) { 2325 C->setGrainsize(Reader->Record.readSubExpr()); 2326 C->setLParenLoc(Reader->ReadSourceLocation()); 2327 } 2328 2329 void OMPClauseReader::VisitOMPNumTasksClause(OMPNumTasksClause *C) { 2330 C->setNumTasks(Reader->Record.readSubExpr()); 2331 C->setLParenLoc(Reader->ReadSourceLocation()); 2332 } 2333 2334 void OMPClauseReader::VisitOMPHintClause(OMPHintClause *C) { 2335 C->setHint(Reader->Record.readSubExpr()); 2336 C->setLParenLoc(Reader->ReadSourceLocation()); 2337 } 2338 2339 void OMPClauseReader::VisitOMPDistScheduleClause(OMPDistScheduleClause *C) { 2340 VisitOMPClauseWithPreInit(C); 2341 C->setDistScheduleKind( 2342 static_cast<OpenMPDistScheduleClauseKind>(Reader->Record.readInt())); 2343 C->setChunkSize(Reader->Record.readSubExpr()); 2344 C->setLParenLoc(Reader->ReadSourceLocation()); 2345 C->setDistScheduleKindLoc(Reader->ReadSourceLocation()); 2346 C->setCommaLoc(Reader->ReadSourceLocation()); 2347 } 2348 2349 void OMPClauseReader::VisitOMPDefaultmapClause(OMPDefaultmapClause *C) { 2350 C->setDefaultmapKind( 2351 static_cast<OpenMPDefaultmapClauseKind>(Reader->Record.readInt())); 2352 C->setDefaultmapModifier( 2353 static_cast<OpenMPDefaultmapClauseModifier>(Reader->Record.readInt())); 2354 C->setLParenLoc(Reader->ReadSourceLocation()); 2355 C->setDefaultmapModifierLoc(Reader->ReadSourceLocation()); 2356 C->setDefaultmapKindLoc(Reader->ReadSourceLocation()); 2357 } 2358 2359 void OMPClauseReader::VisitOMPToClause(OMPToClause *C) { 2360 C->setLParenLoc(Reader->ReadSourceLocation()); 2361 auto NumVars = C->varlist_size(); 2362 auto UniqueDecls = C->getUniqueDeclarationsNum(); 2363 auto TotalLists = C->getTotalComponentListNum(); 2364 auto TotalComponents = C->getTotalComponentsNum(); 2365 2366 SmallVector<Expr *, 16> Vars; 2367 Vars.reserve(NumVars); 2368 for (unsigned i = 0; i != NumVars; ++i) 2369 Vars.push_back(Reader->Record.readSubExpr()); 2370 C->setVarRefs(Vars); 2371 2372 SmallVector<ValueDecl *, 16> Decls; 2373 Decls.reserve(UniqueDecls); 2374 for (unsigned i = 0; i < UniqueDecls; ++i) 2375 Decls.push_back(Reader->Record.readDeclAs<ValueDecl>()); 2376 C->setUniqueDecls(Decls); 2377 2378 SmallVector<unsigned, 16> ListsPerDecl; 2379 ListsPerDecl.reserve(UniqueDecls); 2380 for (unsigned i = 0; i < UniqueDecls; ++i) 2381 ListsPerDecl.push_back(Reader->Record.readInt()); 2382 C->setDeclNumLists(ListsPerDecl); 2383 2384 SmallVector<unsigned, 32> ListSizes; 2385 ListSizes.reserve(TotalLists); 2386 for (unsigned i = 0; i < TotalLists; ++i) 2387 ListSizes.push_back(Reader->Record.readInt()); 2388 C->setComponentListSizes(ListSizes); 2389 2390 SmallVector<OMPClauseMappableExprCommon::MappableComponent, 32> Components; 2391 Components.reserve(TotalComponents); 2392 for (unsigned i = 0; i < TotalComponents; ++i) { 2393 Expr *AssociatedExpr = Reader->Record.readSubExpr(); 2394 ValueDecl *AssociatedDecl = Reader->Record.readDeclAs<ValueDecl>(); 2395 Components.push_back(OMPClauseMappableExprCommon::MappableComponent( 2396 AssociatedExpr, AssociatedDecl)); 2397 } 2398 C->setComponents(Components, ListSizes); 2399 } 2400 2401 void OMPClauseReader::VisitOMPFromClause(OMPFromClause *C) { 2402 C->setLParenLoc(Reader->ReadSourceLocation()); 2403 auto NumVars = C->varlist_size(); 2404 auto UniqueDecls = C->getUniqueDeclarationsNum(); 2405 auto TotalLists = C->getTotalComponentListNum(); 2406 auto TotalComponents = C->getTotalComponentsNum(); 2407 2408 SmallVector<Expr *, 16> Vars; 2409 Vars.reserve(NumVars); 2410 for (unsigned i = 0; i != NumVars; ++i) 2411 Vars.push_back(Reader->Record.readSubExpr()); 2412 C->setVarRefs(Vars); 2413 2414 SmallVector<ValueDecl *, 16> Decls; 2415 Decls.reserve(UniqueDecls); 2416 for (unsigned i = 0; i < UniqueDecls; ++i) 2417 Decls.push_back(Reader->Record.readDeclAs<ValueDecl>()); 2418 C->setUniqueDecls(Decls); 2419 2420 SmallVector<unsigned, 16> ListsPerDecl; 2421 ListsPerDecl.reserve(UniqueDecls); 2422 for (unsigned i = 0; i < UniqueDecls; ++i) 2423 ListsPerDecl.push_back(Reader->Record.readInt()); 2424 C->setDeclNumLists(ListsPerDecl); 2425 2426 SmallVector<unsigned, 32> ListSizes; 2427 ListSizes.reserve(TotalLists); 2428 for (unsigned i = 0; i < TotalLists; ++i) 2429 ListSizes.push_back(Reader->Record.readInt()); 2430 C->setComponentListSizes(ListSizes); 2431 2432 SmallVector<OMPClauseMappableExprCommon::MappableComponent, 32> Components; 2433 Components.reserve(TotalComponents); 2434 for (unsigned i = 0; i < TotalComponents; ++i) { 2435 Expr *AssociatedExpr = Reader->Record.readSubExpr(); 2436 ValueDecl *AssociatedDecl = Reader->Record.readDeclAs<ValueDecl>(); 2437 Components.push_back(OMPClauseMappableExprCommon::MappableComponent( 2438 AssociatedExpr, AssociatedDecl)); 2439 } 2440 C->setComponents(Components, ListSizes); 2441 } 2442 2443 void OMPClauseReader::VisitOMPUseDevicePtrClause(OMPUseDevicePtrClause *C) { 2444 C->setLParenLoc(Reader->ReadSourceLocation()); 2445 auto NumVars = C->varlist_size(); 2446 auto UniqueDecls = C->getUniqueDeclarationsNum(); 2447 auto TotalLists = C->getTotalComponentListNum(); 2448 auto TotalComponents = C->getTotalComponentsNum(); 2449 2450 SmallVector<Expr *, 16> Vars; 2451 Vars.reserve(NumVars); 2452 for (unsigned i = 0; i != NumVars; ++i) 2453 Vars.push_back(Reader->Record.readSubExpr()); 2454 C->setVarRefs(Vars); 2455 Vars.clear(); 2456 for (unsigned i = 0; i != NumVars; ++i) 2457 Vars.push_back(Reader->Record.readSubExpr()); 2458 C->setPrivateCopies(Vars); 2459 Vars.clear(); 2460 for (unsigned i = 0; i != NumVars; ++i) 2461 Vars.push_back(Reader->Record.readSubExpr()); 2462 C->setInits(Vars); 2463 2464 SmallVector<ValueDecl *, 16> Decls; 2465 Decls.reserve(UniqueDecls); 2466 for (unsigned i = 0; i < UniqueDecls; ++i) 2467 Decls.push_back(Reader->Record.readDeclAs<ValueDecl>()); 2468 C->setUniqueDecls(Decls); 2469 2470 SmallVector<unsigned, 16> ListsPerDecl; 2471 ListsPerDecl.reserve(UniqueDecls); 2472 for (unsigned i = 0; i < UniqueDecls; ++i) 2473 ListsPerDecl.push_back(Reader->Record.readInt()); 2474 C->setDeclNumLists(ListsPerDecl); 2475 2476 SmallVector<unsigned, 32> ListSizes; 2477 ListSizes.reserve(TotalLists); 2478 for (unsigned i = 0; i < TotalLists; ++i) 2479 ListSizes.push_back(Reader->Record.readInt()); 2480 C->setComponentListSizes(ListSizes); 2481 2482 SmallVector<OMPClauseMappableExprCommon::MappableComponent, 32> Components; 2483 Components.reserve(TotalComponents); 2484 for (unsigned i = 0; i < TotalComponents; ++i) { 2485 Expr *AssociatedExpr = Reader->Record.readSubExpr(); 2486 ValueDecl *AssociatedDecl = Reader->Record.readDeclAs<ValueDecl>(); 2487 Components.push_back(OMPClauseMappableExprCommon::MappableComponent( 2488 AssociatedExpr, AssociatedDecl)); 2489 } 2490 C->setComponents(Components, ListSizes); 2491 } 2492 2493 void OMPClauseReader::VisitOMPIsDevicePtrClause(OMPIsDevicePtrClause *C) { 2494 C->setLParenLoc(Reader->ReadSourceLocation()); 2495 auto NumVars = C->varlist_size(); 2496 auto UniqueDecls = C->getUniqueDeclarationsNum(); 2497 auto TotalLists = C->getTotalComponentListNum(); 2498 auto TotalComponents = C->getTotalComponentsNum(); 2499 2500 SmallVector<Expr *, 16> Vars; 2501 Vars.reserve(NumVars); 2502 for (unsigned i = 0; i != NumVars; ++i) 2503 Vars.push_back(Reader->Record.readSubExpr()); 2504 C->setVarRefs(Vars); 2505 Vars.clear(); 2506 2507 SmallVector<ValueDecl *, 16> Decls; 2508 Decls.reserve(UniqueDecls); 2509 for (unsigned i = 0; i < UniqueDecls; ++i) 2510 Decls.push_back(Reader->Record.readDeclAs<ValueDecl>()); 2511 C->setUniqueDecls(Decls); 2512 2513 SmallVector<unsigned, 16> ListsPerDecl; 2514 ListsPerDecl.reserve(UniqueDecls); 2515 for (unsigned i = 0; i < UniqueDecls; ++i) 2516 ListsPerDecl.push_back(Reader->Record.readInt()); 2517 C->setDeclNumLists(ListsPerDecl); 2518 2519 SmallVector<unsigned, 32> ListSizes; 2520 ListSizes.reserve(TotalLists); 2521 for (unsigned i = 0; i < TotalLists; ++i) 2522 ListSizes.push_back(Reader->Record.readInt()); 2523 C->setComponentListSizes(ListSizes); 2524 2525 SmallVector<OMPClauseMappableExprCommon::MappableComponent, 32> Components; 2526 Components.reserve(TotalComponents); 2527 for (unsigned i = 0; i < TotalComponents; ++i) { 2528 Expr *AssociatedExpr = Reader->Record.readSubExpr(); 2529 ValueDecl *AssociatedDecl = Reader->Record.readDeclAs<ValueDecl>(); 2530 Components.push_back(OMPClauseMappableExprCommon::MappableComponent( 2531 AssociatedExpr, AssociatedDecl)); 2532 } 2533 C->setComponents(Components, ListSizes); 2534 } 2535 2536 //===----------------------------------------------------------------------===// 2537 // OpenMP Directives. 2538 //===----------------------------------------------------------------------===// 2539 void ASTStmtReader::VisitOMPExecutableDirective(OMPExecutableDirective *E) { 2540 E->setLocStart(ReadSourceLocation()); 2541 E->setLocEnd(ReadSourceLocation()); 2542 OMPClauseReader ClauseReader(this, Record); 2543 SmallVector<OMPClause *, 5> Clauses; 2544 for (unsigned i = 0; i < E->getNumClauses(); ++i) 2545 Clauses.push_back(ClauseReader.readClause()); 2546 E->setClauses(Clauses); 2547 if (E->hasAssociatedStmt()) 2548 E->setAssociatedStmt(Record.readSubStmt()); 2549 } 2550 2551 void ASTStmtReader::VisitOMPLoopDirective(OMPLoopDirective *D) { 2552 VisitStmt(D); 2553 // Two fields (NumClauses and CollapsedNum) were read in ReadStmtFromStream. 2554 Record.skipInts(2); 2555 VisitOMPExecutableDirective(D); 2556 D->setIterationVariable(Record.readSubExpr()); 2557 D->setLastIteration(Record.readSubExpr()); 2558 D->setCalcLastIteration(Record.readSubExpr()); 2559 D->setPreCond(Record.readSubExpr()); 2560 D->setCond(Record.readSubExpr()); 2561 D->setInit(Record.readSubExpr()); 2562 D->setInc(Record.readSubExpr()); 2563 D->setPreInits(Record.readSubStmt()); 2564 if (isOpenMPWorksharingDirective(D->getDirectiveKind()) || 2565 isOpenMPTaskLoopDirective(D->getDirectiveKind()) || 2566 isOpenMPDistributeDirective(D->getDirectiveKind())) { 2567 D->setIsLastIterVariable(Record.readSubExpr()); 2568 D->setLowerBoundVariable(Record.readSubExpr()); 2569 D->setUpperBoundVariable(Record.readSubExpr()); 2570 D->setStrideVariable(Record.readSubExpr()); 2571 D->setEnsureUpperBound(Record.readSubExpr()); 2572 D->setNextLowerBound(Record.readSubExpr()); 2573 D->setNextUpperBound(Record.readSubExpr()); 2574 D->setNumIterations(Record.readSubExpr()); 2575 } 2576 if (isOpenMPLoopBoundSharingDirective(D->getDirectiveKind())) { 2577 D->setPrevLowerBoundVariable(Record.readSubExpr()); 2578 D->setPrevUpperBoundVariable(Record.readSubExpr()); 2579 D->setDistInc(Record.readSubExpr()); 2580 D->setPrevEnsureUpperBound(Record.readSubExpr()); 2581 } 2582 SmallVector<Expr *, 4> Sub; 2583 unsigned CollapsedNum = D->getCollapsedNumber(); 2584 Sub.reserve(CollapsedNum); 2585 for (unsigned i = 0; i < CollapsedNum; ++i) 2586 Sub.push_back(Record.readSubExpr()); 2587 D->setCounters(Sub); 2588 Sub.clear(); 2589 for (unsigned i = 0; i < CollapsedNum; ++i) 2590 Sub.push_back(Record.readSubExpr()); 2591 D->setPrivateCounters(Sub); 2592 Sub.clear(); 2593 for (unsigned i = 0; i < CollapsedNum; ++i) 2594 Sub.push_back(Record.readSubExpr()); 2595 D->setInits(Sub); 2596 Sub.clear(); 2597 for (unsigned i = 0; i < CollapsedNum; ++i) 2598 Sub.push_back(Record.readSubExpr()); 2599 D->setUpdates(Sub); 2600 Sub.clear(); 2601 for (unsigned i = 0; i < CollapsedNum; ++i) 2602 Sub.push_back(Record.readSubExpr()); 2603 D->setFinals(Sub); 2604 } 2605 2606 void ASTStmtReader::VisitOMPParallelDirective(OMPParallelDirective *D) { 2607 VisitStmt(D); 2608 // The NumClauses field was read in ReadStmtFromStream. 2609 Record.skipInts(1); 2610 VisitOMPExecutableDirective(D); 2611 D->setHasCancel(Record.readInt()); 2612 } 2613 2614 void ASTStmtReader::VisitOMPSimdDirective(OMPSimdDirective *D) { 2615 VisitOMPLoopDirective(D); 2616 } 2617 2618 void ASTStmtReader::VisitOMPForDirective(OMPForDirective *D) { 2619 VisitOMPLoopDirective(D); 2620 D->setHasCancel(Record.readInt()); 2621 } 2622 2623 void ASTStmtReader::VisitOMPForSimdDirective(OMPForSimdDirective *D) { 2624 VisitOMPLoopDirective(D); 2625 } 2626 2627 void ASTStmtReader::VisitOMPSectionsDirective(OMPSectionsDirective *D) { 2628 VisitStmt(D); 2629 // The NumClauses field was read in ReadStmtFromStream. 2630 Record.skipInts(1); 2631 VisitOMPExecutableDirective(D); 2632 D->setHasCancel(Record.readInt()); 2633 } 2634 2635 void ASTStmtReader::VisitOMPSectionDirective(OMPSectionDirective *D) { 2636 VisitStmt(D); 2637 VisitOMPExecutableDirective(D); 2638 D->setHasCancel(Record.readInt()); 2639 } 2640 2641 void ASTStmtReader::VisitOMPSingleDirective(OMPSingleDirective *D) { 2642 VisitStmt(D); 2643 // The NumClauses field was read in ReadStmtFromStream. 2644 Record.skipInts(1); 2645 VisitOMPExecutableDirective(D); 2646 } 2647 2648 void ASTStmtReader::VisitOMPMasterDirective(OMPMasterDirective *D) { 2649 VisitStmt(D); 2650 VisitOMPExecutableDirective(D); 2651 } 2652 2653 void ASTStmtReader::VisitOMPCriticalDirective(OMPCriticalDirective *D) { 2654 VisitStmt(D); 2655 // The NumClauses field was read in ReadStmtFromStream. 2656 Record.skipInts(1); 2657 VisitOMPExecutableDirective(D); 2658 ReadDeclarationNameInfo(D->DirName); 2659 } 2660 2661 void ASTStmtReader::VisitOMPParallelForDirective(OMPParallelForDirective *D) { 2662 VisitOMPLoopDirective(D); 2663 D->setHasCancel(Record.readInt()); 2664 } 2665 2666 void ASTStmtReader::VisitOMPParallelForSimdDirective( 2667 OMPParallelForSimdDirective *D) { 2668 VisitOMPLoopDirective(D); 2669 } 2670 2671 void ASTStmtReader::VisitOMPParallelSectionsDirective( 2672 OMPParallelSectionsDirective *D) { 2673 VisitStmt(D); 2674 // The NumClauses field was read in ReadStmtFromStream. 2675 Record.skipInts(1); 2676 VisitOMPExecutableDirective(D); 2677 D->setHasCancel(Record.readInt()); 2678 } 2679 2680 void ASTStmtReader::VisitOMPTaskDirective(OMPTaskDirective *D) { 2681 VisitStmt(D); 2682 // The NumClauses field was read in ReadStmtFromStream. 2683 Record.skipInts(1); 2684 VisitOMPExecutableDirective(D); 2685 D->setHasCancel(Record.readInt()); 2686 } 2687 2688 void ASTStmtReader::VisitOMPTaskyieldDirective(OMPTaskyieldDirective *D) { 2689 VisitStmt(D); 2690 VisitOMPExecutableDirective(D); 2691 } 2692 2693 void ASTStmtReader::VisitOMPBarrierDirective(OMPBarrierDirective *D) { 2694 VisitStmt(D); 2695 VisitOMPExecutableDirective(D); 2696 } 2697 2698 void ASTStmtReader::VisitOMPTaskwaitDirective(OMPTaskwaitDirective *D) { 2699 VisitStmt(D); 2700 VisitOMPExecutableDirective(D); 2701 } 2702 2703 void ASTStmtReader::VisitOMPTaskgroupDirective(OMPTaskgroupDirective *D) { 2704 VisitStmt(D); 2705 VisitOMPExecutableDirective(D); 2706 } 2707 2708 void ASTStmtReader::VisitOMPFlushDirective(OMPFlushDirective *D) { 2709 VisitStmt(D); 2710 // The NumClauses field was read in ReadStmtFromStream. 2711 Record.skipInts(1); 2712 VisitOMPExecutableDirective(D); 2713 } 2714 2715 void ASTStmtReader::VisitOMPOrderedDirective(OMPOrderedDirective *D) { 2716 VisitStmt(D); 2717 // The NumClauses field was read in ReadStmtFromStream. 2718 Record.skipInts(1); 2719 VisitOMPExecutableDirective(D); 2720 } 2721 2722 void ASTStmtReader::VisitOMPAtomicDirective(OMPAtomicDirective *D) { 2723 VisitStmt(D); 2724 // The NumClauses field was read in ReadStmtFromStream. 2725 Record.skipInts(1); 2726 VisitOMPExecutableDirective(D); 2727 D->setX(Record.readSubExpr()); 2728 D->setV(Record.readSubExpr()); 2729 D->setExpr(Record.readSubExpr()); 2730 D->setUpdateExpr(Record.readSubExpr()); 2731 D->IsXLHSInRHSPart = Record.readInt() != 0; 2732 D->IsPostfixUpdate = Record.readInt() != 0; 2733 } 2734 2735 void ASTStmtReader::VisitOMPTargetDirective(OMPTargetDirective *D) { 2736 VisitStmt(D); 2737 // The NumClauses field was read in ReadStmtFromStream. 2738 Record.skipInts(1); 2739 VisitOMPExecutableDirective(D); 2740 } 2741 2742 void ASTStmtReader::VisitOMPTargetDataDirective(OMPTargetDataDirective *D) { 2743 VisitStmt(D); 2744 Record.skipInts(1); 2745 VisitOMPExecutableDirective(D); 2746 } 2747 2748 void ASTStmtReader::VisitOMPTargetEnterDataDirective( 2749 OMPTargetEnterDataDirective *D) { 2750 VisitStmt(D); 2751 Record.skipInts(1); 2752 VisitOMPExecutableDirective(D); 2753 } 2754 2755 void ASTStmtReader::VisitOMPTargetExitDataDirective( 2756 OMPTargetExitDataDirective *D) { 2757 VisitStmt(D); 2758 Record.skipInts(1); 2759 VisitOMPExecutableDirective(D); 2760 } 2761 2762 void ASTStmtReader::VisitOMPTargetParallelDirective( 2763 OMPTargetParallelDirective *D) { 2764 VisitStmt(D); 2765 Record.skipInts(1); 2766 VisitOMPExecutableDirective(D); 2767 } 2768 2769 void ASTStmtReader::VisitOMPTargetParallelForDirective( 2770 OMPTargetParallelForDirective *D) { 2771 VisitOMPLoopDirective(D); 2772 D->setHasCancel(Record.readInt()); 2773 } 2774 2775 void ASTStmtReader::VisitOMPTeamsDirective(OMPTeamsDirective *D) { 2776 VisitStmt(D); 2777 // The NumClauses field was read in ReadStmtFromStream. 2778 Record.skipInts(1); 2779 VisitOMPExecutableDirective(D); 2780 } 2781 2782 void ASTStmtReader::VisitOMPCancellationPointDirective( 2783 OMPCancellationPointDirective *D) { 2784 VisitStmt(D); 2785 VisitOMPExecutableDirective(D); 2786 D->setCancelRegion(static_cast<OpenMPDirectiveKind>(Record.readInt())); 2787 } 2788 2789 void ASTStmtReader::VisitOMPCancelDirective(OMPCancelDirective *D) { 2790 VisitStmt(D); 2791 // The NumClauses field was read in ReadStmtFromStream. 2792 Record.skipInts(1); 2793 VisitOMPExecutableDirective(D); 2794 D->setCancelRegion(static_cast<OpenMPDirectiveKind>(Record.readInt())); 2795 } 2796 2797 void ASTStmtReader::VisitOMPTaskLoopDirective(OMPTaskLoopDirective *D) { 2798 VisitOMPLoopDirective(D); 2799 } 2800 2801 void ASTStmtReader::VisitOMPTaskLoopSimdDirective(OMPTaskLoopSimdDirective *D) { 2802 VisitOMPLoopDirective(D); 2803 } 2804 2805 void ASTStmtReader::VisitOMPDistributeDirective(OMPDistributeDirective *D) { 2806 VisitOMPLoopDirective(D); 2807 } 2808 2809 void ASTStmtReader::VisitOMPTargetUpdateDirective(OMPTargetUpdateDirective *D) { 2810 VisitStmt(D); 2811 Record.skipInts(1); 2812 VisitOMPExecutableDirective(D); 2813 } 2814 void ASTStmtReader::VisitOMPDistributeParallelForDirective( 2815 OMPDistributeParallelForDirective *D) { 2816 VisitOMPLoopDirective(D); 2817 } 2818 2819 void ASTStmtReader::VisitOMPDistributeParallelForSimdDirective( 2820 OMPDistributeParallelForSimdDirective *D) { 2821 VisitOMPLoopDirective(D); 2822 } 2823 2824 void ASTStmtReader::VisitOMPDistributeSimdDirective( 2825 OMPDistributeSimdDirective *D) { 2826 VisitOMPLoopDirective(D); 2827 } 2828 2829 void ASTStmtReader::VisitOMPTargetParallelForSimdDirective( 2830 OMPTargetParallelForSimdDirective *D) { 2831 VisitOMPLoopDirective(D); 2832 } 2833 2834 void ASTStmtReader::VisitOMPTargetSimdDirective(OMPTargetSimdDirective *D) { 2835 VisitOMPLoopDirective(D); 2836 } 2837 2838 void ASTStmtReader::VisitOMPTeamsDistributeDirective( 2839 OMPTeamsDistributeDirective *D) { 2840 VisitOMPLoopDirective(D); 2841 } 2842 2843 void ASTStmtReader::VisitOMPTeamsDistributeSimdDirective( 2844 OMPTeamsDistributeSimdDirective *D) { 2845 VisitOMPLoopDirective(D); 2846 } 2847 2848 void ASTStmtReader::VisitOMPTeamsDistributeParallelForSimdDirective( 2849 OMPTeamsDistributeParallelForSimdDirective *D) { 2850 VisitOMPLoopDirective(D); 2851 } 2852 2853 void ASTStmtReader::VisitOMPTeamsDistributeParallelForDirective( 2854 OMPTeamsDistributeParallelForDirective *D) { 2855 VisitOMPLoopDirective(D); 2856 } 2857 2858 void ASTStmtReader::VisitOMPTargetTeamsDirective(OMPTargetTeamsDirective *D) { 2859 VisitStmt(D); 2860 // The NumClauses field was read in ReadStmtFromStream. 2861 Record.skipInts(1); 2862 VisitOMPExecutableDirective(D); 2863 } 2864 2865 void ASTStmtReader::VisitOMPTargetTeamsDistributeDirective( 2866 OMPTargetTeamsDistributeDirective *D) { 2867 VisitOMPLoopDirective(D); 2868 } 2869 2870 void ASTStmtReader::VisitOMPTargetTeamsDistributeParallelForDirective( 2871 OMPTargetTeamsDistributeParallelForDirective *D) { 2872 VisitOMPLoopDirective(D); 2873 } 2874 2875 void ASTStmtReader::VisitOMPTargetTeamsDistributeParallelForSimdDirective( 2876 OMPTargetTeamsDistributeParallelForSimdDirective *D) { 2877 VisitOMPLoopDirective(D); 2878 } 2879 2880 void ASTStmtReader::VisitOMPTargetTeamsDistributeSimdDirective( 2881 OMPTargetTeamsDistributeSimdDirective *D) { 2882 VisitOMPLoopDirective(D); 2883 } 2884 2885 //===----------------------------------------------------------------------===// 2886 // ASTReader Implementation 2887 //===----------------------------------------------------------------------===// 2888 2889 Stmt *ASTReader::ReadStmt(ModuleFile &F) { 2890 switch (ReadingKind) { 2891 case Read_None: 2892 llvm_unreachable("should not call this when not reading anything"); 2893 case Read_Decl: 2894 case Read_Type: 2895 return ReadStmtFromStream(F); 2896 case Read_Stmt: 2897 return ReadSubStmt(); 2898 } 2899 2900 llvm_unreachable("ReadingKind not set ?"); 2901 } 2902 2903 Expr *ASTReader::ReadExpr(ModuleFile &F) { 2904 return cast_or_null<Expr>(ReadStmt(F)); 2905 } 2906 2907 Expr *ASTReader::ReadSubExpr() { 2908 return cast_or_null<Expr>(ReadSubStmt()); 2909 } 2910 2911 // Within the bitstream, expressions are stored in Reverse Polish 2912 // Notation, with each of the subexpressions preceding the 2913 // expression they are stored in. Subexpressions are stored from last to first. 2914 // To evaluate expressions, we continue reading expressions and placing them on 2915 // the stack, with expressions having operands removing those operands from the 2916 // stack. Evaluation terminates when we see a STMT_STOP record, and 2917 // the single remaining expression on the stack is our result. 2918 Stmt *ASTReader::ReadStmtFromStream(ModuleFile &F) { 2919 2920 ReadingKindTracker ReadingKind(Read_Stmt, *this); 2921 llvm::BitstreamCursor &Cursor = F.DeclsCursor; 2922 2923 // Map of offset to previously deserialized stmt. The offset points 2924 // just after the stmt record. 2925 llvm::DenseMap<uint64_t, Stmt *> StmtEntries; 2926 2927 #ifndef NDEBUG 2928 unsigned PrevNumStmts = StmtStack.size(); 2929 #endif 2930 2931 ASTRecordReader Record(*this, F); 2932 ASTStmtReader Reader(Record, Cursor); 2933 Stmt::EmptyShell Empty; 2934 2935 while (true) { 2936 llvm::BitstreamEntry Entry = Cursor.advanceSkippingSubblocks(); 2937 2938 switch (Entry.Kind) { 2939 case llvm::BitstreamEntry::SubBlock: // Handled for us already. 2940 case llvm::BitstreamEntry::Error: 2941 Error("malformed block record in AST file"); 2942 return nullptr; 2943 case llvm::BitstreamEntry::EndBlock: 2944 goto Done; 2945 case llvm::BitstreamEntry::Record: 2946 // The interesting case. 2947 break; 2948 } 2949 2950 Stmt *S = nullptr; 2951 bool Finished = false; 2952 bool IsStmtReference = false; 2953 switch ((StmtCode)Record.readRecord(Cursor, Entry.ID)) { 2954 case STMT_STOP: 2955 Finished = true; 2956 break; 2957 2958 case STMT_REF_PTR: 2959 IsStmtReference = true; 2960 assert(StmtEntries.find(Record[0]) != StmtEntries.end() && 2961 "No stmt was recorded for this offset reference!"); 2962 S = StmtEntries[Record.readInt()]; 2963 break; 2964 2965 case STMT_NULL_PTR: 2966 S = nullptr; 2967 break; 2968 2969 case STMT_NULL: 2970 S = new (Context) NullStmt(Empty); 2971 break; 2972 2973 case STMT_COMPOUND: 2974 S = new (Context) CompoundStmt(Empty); 2975 break; 2976 2977 case STMT_CASE: 2978 S = new (Context) CaseStmt(Empty); 2979 break; 2980 2981 case STMT_DEFAULT: 2982 S = new (Context) DefaultStmt(Empty); 2983 break; 2984 2985 case STMT_LABEL: 2986 S = new (Context) LabelStmt(Empty); 2987 break; 2988 2989 case STMT_ATTRIBUTED: 2990 S = AttributedStmt::CreateEmpty( 2991 Context, 2992 /*NumAttrs*/Record[ASTStmtReader::NumStmtFields]); 2993 break; 2994 2995 case STMT_IF: 2996 S = new (Context) IfStmt(Empty); 2997 break; 2998 2999 case STMT_SWITCH: 3000 S = new (Context) SwitchStmt(Empty); 3001 break; 3002 3003 case STMT_WHILE: 3004 S = new (Context) WhileStmt(Empty); 3005 break; 3006 3007 case STMT_DO: 3008 S = new (Context) DoStmt(Empty); 3009 break; 3010 3011 case STMT_FOR: 3012 S = new (Context) ForStmt(Empty); 3013 break; 3014 3015 case STMT_GOTO: 3016 S = new (Context) GotoStmt(Empty); 3017 break; 3018 3019 case STMT_INDIRECT_GOTO: 3020 S = new (Context) IndirectGotoStmt(Empty); 3021 break; 3022 3023 case STMT_CONTINUE: 3024 S = new (Context) ContinueStmt(Empty); 3025 break; 3026 3027 case STMT_BREAK: 3028 S = new (Context) BreakStmt(Empty); 3029 break; 3030 3031 case STMT_RETURN: 3032 S = new (Context) ReturnStmt(Empty); 3033 break; 3034 3035 case STMT_DECL: 3036 S = new (Context) DeclStmt(Empty); 3037 break; 3038 3039 case STMT_GCCASM: 3040 S = new (Context) GCCAsmStmt(Empty); 3041 break; 3042 3043 case STMT_MSASM: 3044 S = new (Context) MSAsmStmt(Empty); 3045 break; 3046 3047 case STMT_CAPTURED: 3048 S = CapturedStmt::CreateDeserialized(Context, 3049 Record[ASTStmtReader::NumStmtFields]); 3050 break; 3051 3052 case EXPR_PREDEFINED: 3053 S = new (Context) PredefinedExpr(Empty); 3054 break; 3055 3056 case EXPR_DECL_REF: 3057 S = DeclRefExpr::CreateEmpty( 3058 Context, 3059 /*HasQualifier=*/Record[ASTStmtReader::NumExprFields], 3060 /*HasFoundDecl=*/Record[ASTStmtReader::NumExprFields + 1], 3061 /*HasTemplateKWAndArgsInfo=*/Record[ASTStmtReader::NumExprFields + 2], 3062 /*NumTemplateArgs=*/Record[ASTStmtReader::NumExprFields + 2] ? 3063 Record[ASTStmtReader::NumExprFields + 5] : 0); 3064 break; 3065 3066 case EXPR_INTEGER_LITERAL: 3067 S = IntegerLiteral::Create(Context, Empty); 3068 break; 3069 3070 case EXPR_FLOATING_LITERAL: 3071 S = FloatingLiteral::Create(Context, Empty); 3072 break; 3073 3074 case EXPR_IMAGINARY_LITERAL: 3075 S = new (Context) ImaginaryLiteral(Empty); 3076 break; 3077 3078 case EXPR_STRING_LITERAL: 3079 S = StringLiteral::CreateEmpty(Context, 3080 Record[ASTStmtReader::NumExprFields + 1]); 3081 break; 3082 3083 case EXPR_CHARACTER_LITERAL: 3084 S = new (Context) CharacterLiteral(Empty); 3085 break; 3086 3087 case EXPR_PAREN: 3088 S = new (Context) ParenExpr(Empty); 3089 break; 3090 3091 case EXPR_PAREN_LIST: 3092 S = new (Context) ParenListExpr(Empty); 3093 break; 3094 3095 case EXPR_UNARY_OPERATOR: 3096 S = new (Context) UnaryOperator(Empty); 3097 break; 3098 3099 case EXPR_OFFSETOF: 3100 S = OffsetOfExpr::CreateEmpty(Context, 3101 Record[ASTStmtReader::NumExprFields], 3102 Record[ASTStmtReader::NumExprFields + 1]); 3103 break; 3104 3105 case EXPR_SIZEOF_ALIGN_OF: 3106 S = new (Context) UnaryExprOrTypeTraitExpr(Empty); 3107 break; 3108 3109 case EXPR_ARRAY_SUBSCRIPT: 3110 S = new (Context) ArraySubscriptExpr(Empty); 3111 break; 3112 3113 case EXPR_OMP_ARRAY_SECTION: 3114 S = new (Context) OMPArraySectionExpr(Empty); 3115 break; 3116 3117 case EXPR_CALL: 3118 S = new (Context) CallExpr(Context, Stmt::CallExprClass, Empty); 3119 break; 3120 3121 case EXPR_MEMBER: { 3122 // We load everything here and fully initialize it at creation. 3123 // That way we can use MemberExpr::Create and don't have to duplicate its 3124 // logic with a MemberExpr::CreateEmpty. 3125 3126 assert(Record.getIdx() == 0); 3127 NestedNameSpecifierLoc QualifierLoc; 3128 if (Record.readInt()) { // HasQualifier. 3129 QualifierLoc = Record.readNestedNameSpecifierLoc(); 3130 } 3131 3132 SourceLocation TemplateKWLoc; 3133 TemplateArgumentListInfo ArgInfo; 3134 bool HasTemplateKWAndArgsInfo = Record.readInt(); 3135 if (HasTemplateKWAndArgsInfo) { 3136 TemplateKWLoc = Record.readSourceLocation(); 3137 unsigned NumTemplateArgs = Record.readInt(); 3138 ArgInfo.setLAngleLoc(Record.readSourceLocation()); 3139 ArgInfo.setRAngleLoc(Record.readSourceLocation()); 3140 for (unsigned i = 0; i != NumTemplateArgs; ++i) 3141 ArgInfo.addArgument(Record.readTemplateArgumentLoc()); 3142 } 3143 3144 bool HadMultipleCandidates = Record.readInt(); 3145 3146 NamedDecl *FoundD = Record.readDeclAs<NamedDecl>(); 3147 AccessSpecifier AS = (AccessSpecifier)Record.readInt(); 3148 DeclAccessPair FoundDecl = DeclAccessPair::make(FoundD, AS); 3149 3150 QualType T = Record.readType(); 3151 ExprValueKind VK = static_cast<ExprValueKind>(Record.readInt()); 3152 ExprObjectKind OK = static_cast<ExprObjectKind>(Record.readInt()); 3153 Expr *Base = ReadSubExpr(); 3154 ValueDecl *MemberD = Record.readDeclAs<ValueDecl>(); 3155 SourceLocation MemberLoc = Record.readSourceLocation(); 3156 DeclarationNameInfo MemberNameInfo(MemberD->getDeclName(), MemberLoc); 3157 bool IsArrow = Record.readInt(); 3158 SourceLocation OperatorLoc = Record.readSourceLocation(); 3159 3160 S = MemberExpr::Create(Context, Base, IsArrow, OperatorLoc, QualifierLoc, 3161 TemplateKWLoc, MemberD, FoundDecl, MemberNameInfo, 3162 HasTemplateKWAndArgsInfo ? &ArgInfo : nullptr, T, 3163 VK, OK); 3164 Record.readDeclarationNameLoc(cast<MemberExpr>(S)->MemberDNLoc, 3165 MemberD->getDeclName()); 3166 if (HadMultipleCandidates) 3167 cast<MemberExpr>(S)->setHadMultipleCandidates(true); 3168 break; 3169 } 3170 3171 case EXPR_BINARY_OPERATOR: 3172 S = new (Context) BinaryOperator(Empty); 3173 break; 3174 3175 case EXPR_COMPOUND_ASSIGN_OPERATOR: 3176 S = new (Context) CompoundAssignOperator(Empty); 3177 break; 3178 3179 case EXPR_CONDITIONAL_OPERATOR: 3180 S = new (Context) ConditionalOperator(Empty); 3181 break; 3182 3183 case EXPR_BINARY_CONDITIONAL_OPERATOR: 3184 S = new (Context) BinaryConditionalOperator(Empty); 3185 break; 3186 3187 case EXPR_IMPLICIT_CAST: 3188 S = ImplicitCastExpr::CreateEmpty(Context, 3189 /*PathSize*/ Record[ASTStmtReader::NumExprFields]); 3190 break; 3191 3192 case EXPR_CSTYLE_CAST: 3193 S = CStyleCastExpr::CreateEmpty(Context, 3194 /*PathSize*/ Record[ASTStmtReader::NumExprFields]); 3195 break; 3196 3197 case EXPR_COMPOUND_LITERAL: 3198 S = new (Context) CompoundLiteralExpr(Empty); 3199 break; 3200 3201 case EXPR_EXT_VECTOR_ELEMENT: 3202 S = new (Context) ExtVectorElementExpr(Empty); 3203 break; 3204 3205 case EXPR_INIT_LIST: 3206 S = new (Context) InitListExpr(Empty); 3207 break; 3208 3209 case EXPR_DESIGNATED_INIT: 3210 S = DesignatedInitExpr::CreateEmpty(Context, 3211 Record[ASTStmtReader::NumExprFields] - 1); 3212 3213 break; 3214 3215 case EXPR_DESIGNATED_INIT_UPDATE: 3216 S = new (Context) DesignatedInitUpdateExpr(Empty); 3217 break; 3218 3219 case EXPR_IMPLICIT_VALUE_INIT: 3220 S = new (Context) ImplicitValueInitExpr(Empty); 3221 break; 3222 3223 case EXPR_NO_INIT: 3224 S = new (Context) NoInitExpr(Empty); 3225 break; 3226 3227 case EXPR_ARRAY_INIT_LOOP: 3228 S = new (Context) ArrayInitLoopExpr(Empty); 3229 break; 3230 3231 case EXPR_ARRAY_INIT_INDEX: 3232 S = new (Context) ArrayInitIndexExpr(Empty); 3233 break; 3234 3235 case EXPR_VA_ARG: 3236 S = new (Context) VAArgExpr(Empty); 3237 break; 3238 3239 case EXPR_ADDR_LABEL: 3240 S = new (Context) AddrLabelExpr(Empty); 3241 break; 3242 3243 case EXPR_STMT: 3244 S = new (Context) StmtExpr(Empty); 3245 break; 3246 3247 case EXPR_CHOOSE: 3248 S = new (Context) ChooseExpr(Empty); 3249 break; 3250 3251 case EXPR_GNU_NULL: 3252 S = new (Context) GNUNullExpr(Empty); 3253 break; 3254 3255 case EXPR_SHUFFLE_VECTOR: 3256 S = new (Context) ShuffleVectorExpr(Empty); 3257 break; 3258 3259 case EXPR_CONVERT_VECTOR: 3260 S = new (Context) ConvertVectorExpr(Empty); 3261 break; 3262 3263 case EXPR_BLOCK: 3264 S = new (Context) BlockExpr(Empty); 3265 break; 3266 3267 case EXPR_GENERIC_SELECTION: 3268 S = new (Context) GenericSelectionExpr(Empty); 3269 break; 3270 3271 case EXPR_OBJC_STRING_LITERAL: 3272 S = new (Context) ObjCStringLiteral(Empty); 3273 break; 3274 case EXPR_OBJC_BOXED_EXPRESSION: 3275 S = new (Context) ObjCBoxedExpr(Empty); 3276 break; 3277 case EXPR_OBJC_ARRAY_LITERAL: 3278 S = ObjCArrayLiteral::CreateEmpty(Context, 3279 Record[ASTStmtReader::NumExprFields]); 3280 break; 3281 case EXPR_OBJC_DICTIONARY_LITERAL: 3282 S = ObjCDictionaryLiteral::CreateEmpty(Context, 3283 Record[ASTStmtReader::NumExprFields], 3284 Record[ASTStmtReader::NumExprFields + 1]); 3285 break; 3286 case EXPR_OBJC_ENCODE: 3287 S = new (Context) ObjCEncodeExpr(Empty); 3288 break; 3289 case EXPR_OBJC_SELECTOR_EXPR: 3290 S = new (Context) ObjCSelectorExpr(Empty); 3291 break; 3292 case EXPR_OBJC_PROTOCOL_EXPR: 3293 S = new (Context) ObjCProtocolExpr(Empty); 3294 break; 3295 case EXPR_OBJC_IVAR_REF_EXPR: 3296 S = new (Context) ObjCIvarRefExpr(Empty); 3297 break; 3298 case EXPR_OBJC_PROPERTY_REF_EXPR: 3299 S = new (Context) ObjCPropertyRefExpr(Empty); 3300 break; 3301 case EXPR_OBJC_SUBSCRIPT_REF_EXPR: 3302 S = new (Context) ObjCSubscriptRefExpr(Empty); 3303 break; 3304 case EXPR_OBJC_KVC_REF_EXPR: 3305 llvm_unreachable("mismatching AST file"); 3306 case EXPR_OBJC_MESSAGE_EXPR: 3307 S = ObjCMessageExpr::CreateEmpty(Context, 3308 Record[ASTStmtReader::NumExprFields], 3309 Record[ASTStmtReader::NumExprFields + 1]); 3310 break; 3311 case EXPR_OBJC_ISA: 3312 S = new (Context) ObjCIsaExpr(Empty); 3313 break; 3314 case EXPR_OBJC_INDIRECT_COPY_RESTORE: 3315 S = new (Context) ObjCIndirectCopyRestoreExpr(Empty); 3316 break; 3317 case EXPR_OBJC_BRIDGED_CAST: 3318 S = new (Context) ObjCBridgedCastExpr(Empty); 3319 break; 3320 case STMT_OBJC_FOR_COLLECTION: 3321 S = new (Context) ObjCForCollectionStmt(Empty); 3322 break; 3323 case STMT_OBJC_CATCH: 3324 S = new (Context) ObjCAtCatchStmt(Empty); 3325 break; 3326 case STMT_OBJC_FINALLY: 3327 S = new (Context) ObjCAtFinallyStmt(Empty); 3328 break; 3329 case STMT_OBJC_AT_TRY: 3330 S = ObjCAtTryStmt::CreateEmpty(Context, 3331 Record[ASTStmtReader::NumStmtFields], 3332 Record[ASTStmtReader::NumStmtFields + 1]); 3333 break; 3334 case STMT_OBJC_AT_SYNCHRONIZED: 3335 S = new (Context) ObjCAtSynchronizedStmt(Empty); 3336 break; 3337 case STMT_OBJC_AT_THROW: 3338 S = new (Context) ObjCAtThrowStmt(Empty); 3339 break; 3340 case STMT_OBJC_AUTORELEASE_POOL: 3341 S = new (Context) ObjCAutoreleasePoolStmt(Empty); 3342 break; 3343 case EXPR_OBJC_BOOL_LITERAL: 3344 S = new (Context) ObjCBoolLiteralExpr(Empty); 3345 break; 3346 case EXPR_OBJC_AVAILABILITY_CHECK: 3347 S = new (Context) ObjCAvailabilityCheckExpr(Empty); 3348 break; 3349 case STMT_SEH_LEAVE: 3350 S = new (Context) SEHLeaveStmt(Empty); 3351 break; 3352 case STMT_SEH_EXCEPT: 3353 S = new (Context) SEHExceptStmt(Empty); 3354 break; 3355 case STMT_SEH_FINALLY: 3356 S = new (Context) SEHFinallyStmt(Empty); 3357 break; 3358 case STMT_SEH_TRY: 3359 S = new (Context) SEHTryStmt(Empty); 3360 break; 3361 case STMT_CXX_CATCH: 3362 S = new (Context) CXXCatchStmt(Empty); 3363 break; 3364 3365 case STMT_CXX_TRY: 3366 S = CXXTryStmt::Create(Context, Empty, 3367 /*NumHandlers=*/Record[ASTStmtReader::NumStmtFields]); 3368 break; 3369 3370 case STMT_CXX_FOR_RANGE: 3371 S = new (Context) CXXForRangeStmt(Empty); 3372 break; 3373 3374 case STMT_MS_DEPENDENT_EXISTS: 3375 S = new (Context) MSDependentExistsStmt(SourceLocation(), true, 3376 NestedNameSpecifierLoc(), 3377 DeclarationNameInfo(), 3378 nullptr); 3379 break; 3380 3381 case STMT_OMP_PARALLEL_DIRECTIVE: 3382 S = 3383 OMPParallelDirective::CreateEmpty(Context, 3384 Record[ASTStmtReader::NumStmtFields], 3385 Empty); 3386 break; 3387 3388 case STMT_OMP_SIMD_DIRECTIVE: { 3389 unsigned NumClauses = Record[ASTStmtReader::NumStmtFields]; 3390 unsigned CollapsedNum = Record[ASTStmtReader::NumStmtFields + 1]; 3391 S = OMPSimdDirective::CreateEmpty(Context, NumClauses, 3392 CollapsedNum, Empty); 3393 break; 3394 } 3395 3396 case STMT_OMP_FOR_DIRECTIVE: { 3397 unsigned NumClauses = Record[ASTStmtReader::NumStmtFields]; 3398 unsigned CollapsedNum = Record[ASTStmtReader::NumStmtFields + 1]; 3399 S = OMPForDirective::CreateEmpty(Context, NumClauses, CollapsedNum, 3400 Empty); 3401 break; 3402 } 3403 3404 case STMT_OMP_FOR_SIMD_DIRECTIVE: { 3405 unsigned NumClauses = Record[ASTStmtReader::NumStmtFields]; 3406 unsigned CollapsedNum = Record[ASTStmtReader::NumStmtFields + 1]; 3407 S = OMPForSimdDirective::CreateEmpty(Context, NumClauses, CollapsedNum, 3408 Empty); 3409 break; 3410 } 3411 3412 case STMT_OMP_SECTIONS_DIRECTIVE: 3413 S = OMPSectionsDirective::CreateEmpty( 3414 Context, Record[ASTStmtReader::NumStmtFields], Empty); 3415 break; 3416 3417 case STMT_OMP_SECTION_DIRECTIVE: 3418 S = OMPSectionDirective::CreateEmpty(Context, Empty); 3419 break; 3420 3421 case STMT_OMP_SINGLE_DIRECTIVE: 3422 S = OMPSingleDirective::CreateEmpty( 3423 Context, Record[ASTStmtReader::NumStmtFields], Empty); 3424 break; 3425 3426 case STMT_OMP_MASTER_DIRECTIVE: 3427 S = OMPMasterDirective::CreateEmpty(Context, Empty); 3428 break; 3429 3430 case STMT_OMP_CRITICAL_DIRECTIVE: 3431 S = OMPCriticalDirective::CreateEmpty( 3432 Context, Record[ASTStmtReader::NumStmtFields], Empty); 3433 break; 3434 3435 case STMT_OMP_PARALLEL_FOR_DIRECTIVE: { 3436 unsigned NumClauses = Record[ASTStmtReader::NumStmtFields]; 3437 unsigned CollapsedNum = Record[ASTStmtReader::NumStmtFields + 1]; 3438 S = OMPParallelForDirective::CreateEmpty(Context, NumClauses, 3439 CollapsedNum, Empty); 3440 break; 3441 } 3442 3443 case STMT_OMP_PARALLEL_FOR_SIMD_DIRECTIVE: { 3444 unsigned NumClauses = Record[ASTStmtReader::NumStmtFields]; 3445 unsigned CollapsedNum = Record[ASTStmtReader::NumStmtFields + 1]; 3446 S = OMPParallelForSimdDirective::CreateEmpty(Context, NumClauses, 3447 CollapsedNum, Empty); 3448 break; 3449 } 3450 3451 case STMT_OMP_PARALLEL_SECTIONS_DIRECTIVE: 3452 S = OMPParallelSectionsDirective::CreateEmpty( 3453 Context, Record[ASTStmtReader::NumStmtFields], Empty); 3454 break; 3455 3456 case STMT_OMP_TASK_DIRECTIVE: 3457 S = OMPTaskDirective::CreateEmpty( 3458 Context, Record[ASTStmtReader::NumStmtFields], Empty); 3459 break; 3460 3461 case STMT_OMP_TASKYIELD_DIRECTIVE: 3462 S = OMPTaskyieldDirective::CreateEmpty(Context, Empty); 3463 break; 3464 3465 case STMT_OMP_BARRIER_DIRECTIVE: 3466 S = OMPBarrierDirective::CreateEmpty(Context, Empty); 3467 break; 3468 3469 case STMT_OMP_TASKWAIT_DIRECTIVE: 3470 S = OMPTaskwaitDirective::CreateEmpty(Context, Empty); 3471 break; 3472 3473 case STMT_OMP_TASKGROUP_DIRECTIVE: 3474 S = OMPTaskgroupDirective::CreateEmpty(Context, Empty); 3475 break; 3476 3477 case STMT_OMP_FLUSH_DIRECTIVE: 3478 S = OMPFlushDirective::CreateEmpty( 3479 Context, Record[ASTStmtReader::NumStmtFields], Empty); 3480 break; 3481 3482 case STMT_OMP_ORDERED_DIRECTIVE: 3483 S = OMPOrderedDirective::CreateEmpty( 3484 Context, Record[ASTStmtReader::NumStmtFields], Empty); 3485 break; 3486 3487 case STMT_OMP_ATOMIC_DIRECTIVE: 3488 S = OMPAtomicDirective::CreateEmpty( 3489 Context, Record[ASTStmtReader::NumStmtFields], Empty); 3490 break; 3491 3492 case STMT_OMP_TARGET_DIRECTIVE: 3493 S = OMPTargetDirective::CreateEmpty( 3494 Context, Record[ASTStmtReader::NumStmtFields], Empty); 3495 break; 3496 3497 case STMT_OMP_TARGET_DATA_DIRECTIVE: 3498 S = OMPTargetDataDirective::CreateEmpty( 3499 Context, Record[ASTStmtReader::NumStmtFields], Empty); 3500 break; 3501 3502 case STMT_OMP_TARGET_ENTER_DATA_DIRECTIVE: 3503 S = OMPTargetEnterDataDirective::CreateEmpty( 3504 Context, Record[ASTStmtReader::NumStmtFields], Empty); 3505 break; 3506 3507 case STMT_OMP_TARGET_EXIT_DATA_DIRECTIVE: 3508 S = OMPTargetExitDataDirective::CreateEmpty( 3509 Context, Record[ASTStmtReader::NumStmtFields], Empty); 3510 break; 3511 3512 case STMT_OMP_TARGET_PARALLEL_DIRECTIVE: 3513 S = OMPTargetParallelDirective::CreateEmpty( 3514 Context, Record[ASTStmtReader::NumStmtFields], Empty); 3515 break; 3516 3517 case STMT_OMP_TARGET_PARALLEL_FOR_DIRECTIVE: { 3518 unsigned NumClauses = Record[ASTStmtReader::NumStmtFields]; 3519 unsigned CollapsedNum = Record[ASTStmtReader::NumStmtFields + 1]; 3520 S = OMPTargetParallelForDirective::CreateEmpty(Context, NumClauses, 3521 CollapsedNum, Empty); 3522 break; 3523 } 3524 3525 case STMT_OMP_TARGET_UPDATE_DIRECTIVE: 3526 S = OMPTargetUpdateDirective::CreateEmpty( 3527 Context, Record[ASTStmtReader::NumStmtFields], Empty); 3528 break; 3529 3530 case STMT_OMP_TEAMS_DIRECTIVE: 3531 S = OMPTeamsDirective::CreateEmpty( 3532 Context, Record[ASTStmtReader::NumStmtFields], Empty); 3533 break; 3534 3535 case STMT_OMP_CANCELLATION_POINT_DIRECTIVE: 3536 S = OMPCancellationPointDirective::CreateEmpty(Context, Empty); 3537 break; 3538 3539 case STMT_OMP_CANCEL_DIRECTIVE: 3540 S = OMPCancelDirective::CreateEmpty( 3541 Context, Record[ASTStmtReader::NumStmtFields], Empty); 3542 break; 3543 3544 case STMT_OMP_TASKLOOP_DIRECTIVE: { 3545 unsigned NumClauses = Record[ASTStmtReader::NumStmtFields]; 3546 unsigned CollapsedNum = Record[ASTStmtReader::NumStmtFields + 1]; 3547 S = OMPTaskLoopDirective::CreateEmpty(Context, NumClauses, CollapsedNum, 3548 Empty); 3549 break; 3550 } 3551 3552 case STMT_OMP_TASKLOOP_SIMD_DIRECTIVE: { 3553 unsigned NumClauses = Record[ASTStmtReader::NumStmtFields]; 3554 unsigned CollapsedNum = Record[ASTStmtReader::NumStmtFields + 1]; 3555 S = OMPTaskLoopSimdDirective::CreateEmpty(Context, NumClauses, 3556 CollapsedNum, Empty); 3557 break; 3558 } 3559 3560 case STMT_OMP_DISTRIBUTE_DIRECTIVE: { 3561 unsigned NumClauses = Record[ASTStmtReader::NumStmtFields]; 3562 unsigned CollapsedNum = Record[ASTStmtReader::NumStmtFields + 1]; 3563 S = OMPDistributeDirective::CreateEmpty(Context, NumClauses, CollapsedNum, 3564 Empty); 3565 break; 3566 } 3567 3568 case STMT_OMP_DISTRIBUTE_PARALLEL_FOR_DIRECTIVE: { 3569 unsigned NumClauses = Record[ASTStmtReader::NumStmtFields]; 3570 unsigned CollapsedNum = Record[ASTStmtReader::NumStmtFields + 1]; 3571 S = OMPDistributeParallelForDirective::CreateEmpty(Context, NumClauses, 3572 CollapsedNum, Empty); 3573 break; 3574 } 3575 3576 case STMT_OMP_DISTRIBUTE_PARALLEL_FOR_SIMD_DIRECTIVE: { 3577 unsigned NumClauses = Record[ASTStmtReader::NumStmtFields]; 3578 unsigned CollapsedNum = Record[ASTStmtReader::NumStmtFields + 1]; 3579 S = OMPDistributeParallelForSimdDirective::CreateEmpty(Context, NumClauses, 3580 CollapsedNum, 3581 Empty); 3582 break; 3583 } 3584 3585 case STMT_OMP_DISTRIBUTE_SIMD_DIRECTIVE: { 3586 unsigned NumClauses = Record[ASTStmtReader::NumStmtFields]; 3587 unsigned CollapsedNum = Record[ASTStmtReader::NumStmtFields + 1]; 3588 S = OMPDistributeSimdDirective::CreateEmpty(Context, NumClauses, 3589 CollapsedNum, Empty); 3590 break; 3591 } 3592 3593 case STMT_OMP_TARGET_PARALLEL_FOR_SIMD_DIRECTIVE: { 3594 unsigned NumClauses = Record[ASTStmtReader::NumStmtFields]; 3595 unsigned CollapsedNum = Record[ASTStmtReader::NumStmtFields + 1]; 3596 S = OMPTargetParallelForSimdDirective::CreateEmpty(Context, NumClauses, 3597 CollapsedNum, Empty); 3598 break; 3599 } 3600 3601 case STMT_OMP_TARGET_SIMD_DIRECTIVE: { 3602 auto NumClauses = Record[ASTStmtReader::NumStmtFields]; 3603 auto CollapsedNum = Record[ASTStmtReader::NumStmtFields + 1]; 3604 S = OMPTargetSimdDirective::CreateEmpty(Context, NumClauses, CollapsedNum, 3605 Empty); 3606 break; 3607 } 3608 3609 case STMT_OMP_TEAMS_DISTRIBUTE_DIRECTIVE: { 3610 auto NumClauses = Record[ASTStmtReader::NumStmtFields]; 3611 auto CollapsedNum = Record[ASTStmtReader::NumStmtFields + 1]; 3612 S = OMPTeamsDistributeDirective::CreateEmpty(Context, NumClauses, 3613 CollapsedNum, Empty); 3614 break; 3615 } 3616 3617 case STMT_OMP_TEAMS_DISTRIBUTE_SIMD_DIRECTIVE: { 3618 unsigned NumClauses = Record[ASTStmtReader::NumStmtFields]; 3619 unsigned CollapsedNum = Record[ASTStmtReader::NumStmtFields + 1]; 3620 S = OMPTeamsDistributeSimdDirective::CreateEmpty(Context, NumClauses, 3621 CollapsedNum, Empty); 3622 break; 3623 } 3624 3625 case STMT_OMP_TEAMS_DISTRIBUTE_PARALLEL_FOR_SIMD_DIRECTIVE: { 3626 auto NumClauses = Record[ASTStmtReader::NumStmtFields]; 3627 auto CollapsedNum = Record[ASTStmtReader::NumStmtFields + 1]; 3628 S = OMPTeamsDistributeParallelForSimdDirective::CreateEmpty( 3629 Context, NumClauses, CollapsedNum, Empty); 3630 break; 3631 } 3632 3633 case STMT_OMP_TEAMS_DISTRIBUTE_PARALLEL_FOR_DIRECTIVE: { 3634 auto NumClauses = Record[ASTStmtReader::NumStmtFields]; 3635 auto CollapsedNum = Record[ASTStmtReader::NumStmtFields + 1]; 3636 S = OMPTeamsDistributeParallelForDirective::CreateEmpty( 3637 Context, NumClauses, CollapsedNum, Empty); 3638 break; 3639 } 3640 3641 case STMT_OMP_TARGET_TEAMS_DIRECTIVE: { 3642 S = OMPTargetTeamsDirective::CreateEmpty( 3643 Context, Record[ASTStmtReader::NumStmtFields], Empty); 3644 break; 3645 } 3646 3647 case STMT_OMP_TARGET_TEAMS_DISTRIBUTE_DIRECTIVE: { 3648 auto NumClauses = Record[ASTStmtReader::NumStmtFields]; 3649 auto CollapsedNum = Record[ASTStmtReader::NumStmtFields + 1]; 3650 S = OMPTargetTeamsDistributeDirective::CreateEmpty(Context, NumClauses, 3651 CollapsedNum, Empty); 3652 break; 3653 } 3654 3655 case STMT_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_FOR_DIRECTIVE: { 3656 auto NumClauses = Record[ASTStmtReader::NumStmtFields]; 3657 auto CollapsedNum = Record[ASTStmtReader::NumStmtFields + 1]; 3658 S = OMPTargetTeamsDistributeParallelForDirective::CreateEmpty( 3659 Context, NumClauses, CollapsedNum, Empty); 3660 break; 3661 } 3662 3663 case STMT_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_FOR_SIMD_DIRECTIVE: { 3664 auto NumClauses = Record[ASTStmtReader::NumStmtFields]; 3665 auto CollapsedNum = Record[ASTStmtReader::NumStmtFields + 1]; 3666 S = OMPTargetTeamsDistributeParallelForSimdDirective::CreateEmpty( 3667 Context, NumClauses, CollapsedNum, Empty); 3668 break; 3669 } 3670 3671 case STMT_OMP_TARGET_TEAMS_DISTRIBUTE_SIMD_DIRECTIVE: { 3672 auto NumClauses = Record[ASTStmtReader::NumStmtFields]; 3673 auto CollapsedNum = Record[ASTStmtReader::NumStmtFields + 1]; 3674 S = OMPTargetTeamsDistributeSimdDirective::CreateEmpty( 3675 Context, NumClauses, CollapsedNum, Empty); 3676 break; 3677 } 3678 3679 case EXPR_CXX_OPERATOR_CALL: 3680 S = new (Context) CXXOperatorCallExpr(Context, Empty); 3681 break; 3682 3683 case EXPR_CXX_MEMBER_CALL: 3684 S = new (Context) CXXMemberCallExpr(Context, Empty); 3685 break; 3686 3687 case EXPR_CXX_CONSTRUCT: 3688 S = new (Context) CXXConstructExpr(Empty); 3689 break; 3690 3691 case EXPR_CXX_INHERITED_CTOR_INIT: 3692 S = new (Context) CXXInheritedCtorInitExpr(Empty); 3693 break; 3694 3695 case EXPR_CXX_TEMPORARY_OBJECT: 3696 S = new (Context) CXXTemporaryObjectExpr(Empty); 3697 break; 3698 3699 case EXPR_CXX_STATIC_CAST: 3700 S = CXXStaticCastExpr::CreateEmpty(Context, 3701 /*PathSize*/ Record[ASTStmtReader::NumExprFields]); 3702 break; 3703 3704 case EXPR_CXX_DYNAMIC_CAST: 3705 S = CXXDynamicCastExpr::CreateEmpty(Context, 3706 /*PathSize*/ Record[ASTStmtReader::NumExprFields]); 3707 break; 3708 3709 case EXPR_CXX_REINTERPRET_CAST: 3710 S = CXXReinterpretCastExpr::CreateEmpty(Context, 3711 /*PathSize*/ Record[ASTStmtReader::NumExprFields]); 3712 break; 3713 3714 case EXPR_CXX_CONST_CAST: 3715 S = CXXConstCastExpr::CreateEmpty(Context); 3716 break; 3717 3718 case EXPR_CXX_FUNCTIONAL_CAST: 3719 S = CXXFunctionalCastExpr::CreateEmpty(Context, 3720 /*PathSize*/ Record[ASTStmtReader::NumExprFields]); 3721 break; 3722 3723 case EXPR_USER_DEFINED_LITERAL: 3724 S = new (Context) UserDefinedLiteral(Context, Empty); 3725 break; 3726 3727 case EXPR_CXX_STD_INITIALIZER_LIST: 3728 S = new (Context) CXXStdInitializerListExpr(Empty); 3729 break; 3730 3731 case EXPR_CXX_BOOL_LITERAL: 3732 S = new (Context) CXXBoolLiteralExpr(Empty); 3733 break; 3734 3735 case EXPR_CXX_NULL_PTR_LITERAL: 3736 S = new (Context) CXXNullPtrLiteralExpr(Empty); 3737 break; 3738 case EXPR_CXX_TYPEID_EXPR: 3739 S = new (Context) CXXTypeidExpr(Empty, true); 3740 break; 3741 case EXPR_CXX_TYPEID_TYPE: 3742 S = new (Context) CXXTypeidExpr(Empty, false); 3743 break; 3744 case EXPR_CXX_UUIDOF_EXPR: 3745 S = new (Context) CXXUuidofExpr(Empty, true); 3746 break; 3747 case EXPR_CXX_PROPERTY_REF_EXPR: 3748 S = new (Context) MSPropertyRefExpr(Empty); 3749 break; 3750 case EXPR_CXX_PROPERTY_SUBSCRIPT_EXPR: 3751 S = new (Context) MSPropertySubscriptExpr(Empty); 3752 break; 3753 case EXPR_CXX_UUIDOF_TYPE: 3754 S = new (Context) CXXUuidofExpr(Empty, false); 3755 break; 3756 case EXPR_CXX_THIS: 3757 S = new (Context) CXXThisExpr(Empty); 3758 break; 3759 case EXPR_CXX_THROW: 3760 S = new (Context) CXXThrowExpr(Empty); 3761 break; 3762 case EXPR_CXX_DEFAULT_ARG: 3763 S = new (Context) CXXDefaultArgExpr(Empty); 3764 break; 3765 case EXPR_CXX_DEFAULT_INIT: 3766 S = new (Context) CXXDefaultInitExpr(Empty); 3767 break; 3768 case EXPR_CXX_BIND_TEMPORARY: 3769 S = new (Context) CXXBindTemporaryExpr(Empty); 3770 break; 3771 3772 case EXPR_CXX_SCALAR_VALUE_INIT: 3773 S = new (Context) CXXScalarValueInitExpr(Empty); 3774 break; 3775 case EXPR_CXX_NEW: 3776 S = new (Context) CXXNewExpr(Empty); 3777 break; 3778 case EXPR_CXX_DELETE: 3779 S = new (Context) CXXDeleteExpr(Empty); 3780 break; 3781 case EXPR_CXX_PSEUDO_DESTRUCTOR: 3782 S = new (Context) CXXPseudoDestructorExpr(Empty); 3783 break; 3784 3785 case EXPR_EXPR_WITH_CLEANUPS: 3786 S = ExprWithCleanups::Create(Context, Empty, 3787 Record[ASTStmtReader::NumExprFields]); 3788 break; 3789 3790 case EXPR_CXX_DEPENDENT_SCOPE_MEMBER: 3791 S = CXXDependentScopeMemberExpr::CreateEmpty(Context, 3792 /*HasTemplateKWAndArgsInfo=*/Record[ASTStmtReader::NumExprFields], 3793 /*NumTemplateArgs=*/Record[ASTStmtReader::NumExprFields] 3794 ? Record[ASTStmtReader::NumExprFields + 1] 3795 : 0); 3796 break; 3797 3798 case EXPR_CXX_DEPENDENT_SCOPE_DECL_REF: 3799 S = DependentScopeDeclRefExpr::CreateEmpty(Context, 3800 /*HasTemplateKWAndArgsInfo=*/Record[ASTStmtReader::NumExprFields], 3801 /*NumTemplateArgs=*/Record[ASTStmtReader::NumExprFields] 3802 ? Record[ASTStmtReader::NumExprFields + 1] 3803 : 0); 3804 break; 3805 3806 case EXPR_CXX_UNRESOLVED_CONSTRUCT: 3807 S = CXXUnresolvedConstructExpr::CreateEmpty(Context, 3808 /*NumArgs=*/Record[ASTStmtReader::NumExprFields]); 3809 break; 3810 3811 case EXPR_CXX_UNRESOLVED_MEMBER: 3812 S = UnresolvedMemberExpr::CreateEmpty(Context, 3813 /*HasTemplateKWAndArgsInfo=*/Record[ASTStmtReader::NumExprFields], 3814 /*NumTemplateArgs=*/Record[ASTStmtReader::NumExprFields] 3815 ? Record[ASTStmtReader::NumExprFields + 1] 3816 : 0); 3817 break; 3818 3819 case EXPR_CXX_UNRESOLVED_LOOKUP: 3820 S = UnresolvedLookupExpr::CreateEmpty(Context, 3821 /*HasTemplateKWAndArgsInfo=*/Record[ASTStmtReader::NumExprFields], 3822 /*NumTemplateArgs=*/Record[ASTStmtReader::NumExprFields] 3823 ? Record[ASTStmtReader::NumExprFields + 1] 3824 : 0); 3825 break; 3826 3827 case EXPR_TYPE_TRAIT: 3828 S = TypeTraitExpr::CreateDeserialized(Context, 3829 Record[ASTStmtReader::NumExprFields]); 3830 break; 3831 3832 case EXPR_ARRAY_TYPE_TRAIT: 3833 S = new (Context) ArrayTypeTraitExpr(Empty); 3834 break; 3835 3836 case EXPR_CXX_EXPRESSION_TRAIT: 3837 S = new (Context) ExpressionTraitExpr(Empty); 3838 break; 3839 3840 case EXPR_CXX_NOEXCEPT: 3841 S = new (Context) CXXNoexceptExpr(Empty); 3842 break; 3843 3844 case EXPR_PACK_EXPANSION: 3845 S = new (Context) PackExpansionExpr(Empty); 3846 break; 3847 3848 case EXPR_SIZEOF_PACK: 3849 S = SizeOfPackExpr::CreateDeserialized( 3850 Context, 3851 /*NumPartialArgs=*/Record[ASTStmtReader::NumExprFields]); 3852 break; 3853 3854 case EXPR_SUBST_NON_TYPE_TEMPLATE_PARM: 3855 S = new (Context) SubstNonTypeTemplateParmExpr(Empty); 3856 break; 3857 3858 case EXPR_SUBST_NON_TYPE_TEMPLATE_PARM_PACK: 3859 S = new (Context) SubstNonTypeTemplateParmPackExpr(Empty); 3860 break; 3861 3862 case EXPR_FUNCTION_PARM_PACK: 3863 S = FunctionParmPackExpr::CreateEmpty(Context, 3864 Record[ASTStmtReader::NumExprFields]); 3865 break; 3866 3867 case EXPR_MATERIALIZE_TEMPORARY: 3868 S = new (Context) MaterializeTemporaryExpr(Empty); 3869 break; 3870 3871 case EXPR_CXX_FOLD: 3872 S = new (Context) CXXFoldExpr(Empty); 3873 break; 3874 3875 case EXPR_OPAQUE_VALUE: 3876 S = new (Context) OpaqueValueExpr(Empty); 3877 break; 3878 3879 case EXPR_CUDA_KERNEL_CALL: 3880 S = new (Context) CUDAKernelCallExpr(Context, Empty); 3881 break; 3882 3883 case EXPR_ASTYPE: 3884 S = new (Context) AsTypeExpr(Empty); 3885 break; 3886 3887 case EXPR_PSEUDO_OBJECT: { 3888 unsigned numSemanticExprs = Record[ASTStmtReader::NumExprFields]; 3889 S = PseudoObjectExpr::Create(Context, Empty, numSemanticExprs); 3890 break; 3891 } 3892 3893 case EXPR_ATOMIC: 3894 S = new (Context) AtomicExpr(Empty); 3895 break; 3896 3897 case EXPR_LAMBDA: { 3898 unsigned NumCaptures = Record[ASTStmtReader::NumExprFields]; 3899 S = LambdaExpr::CreateDeserialized(Context, NumCaptures); 3900 break; 3901 } 3902 } 3903 3904 // We hit a STMT_STOP, so we're done with this expression. 3905 if (Finished) 3906 break; 3907 3908 ++NumStatementsRead; 3909 3910 if (S && !IsStmtReference) { 3911 Reader.Visit(S); 3912 StmtEntries[Cursor.GetCurrentBitNo()] = S; 3913 } 3914 3915 assert(Record.getIdx() == Record.size() && 3916 "Invalid deserialization of statement"); 3917 StmtStack.push_back(S); 3918 } 3919 Done: 3920 assert(StmtStack.size() > PrevNumStmts && "Read too many sub-stmts!"); 3921 assert(StmtStack.size() == PrevNumStmts + 1 && "Extra expressions on stack!"); 3922 return StmtStack.pop_back_val(); 3923 } 3924