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 D->setCombinedLowerBoundVariable(Record.readSubExpr()); 2582 D->setCombinedUpperBoundVariable(Record.readSubExpr()); 2583 D->setCombinedEnsureUpperBound(Record.readSubExpr()); 2584 D->setCombinedInit(Record.readSubExpr()); 2585 D->setCombinedCond(Record.readSubExpr()); 2586 D->setCombinedNextLowerBound(Record.readSubExpr()); 2587 D->setCombinedNextUpperBound(Record.readSubExpr()); 2588 } 2589 SmallVector<Expr *, 4> Sub; 2590 unsigned CollapsedNum = D->getCollapsedNumber(); 2591 Sub.reserve(CollapsedNum); 2592 for (unsigned i = 0; i < CollapsedNum; ++i) 2593 Sub.push_back(Record.readSubExpr()); 2594 D->setCounters(Sub); 2595 Sub.clear(); 2596 for (unsigned i = 0; i < CollapsedNum; ++i) 2597 Sub.push_back(Record.readSubExpr()); 2598 D->setPrivateCounters(Sub); 2599 Sub.clear(); 2600 for (unsigned i = 0; i < CollapsedNum; ++i) 2601 Sub.push_back(Record.readSubExpr()); 2602 D->setInits(Sub); 2603 Sub.clear(); 2604 for (unsigned i = 0; i < CollapsedNum; ++i) 2605 Sub.push_back(Record.readSubExpr()); 2606 D->setUpdates(Sub); 2607 Sub.clear(); 2608 for (unsigned i = 0; i < CollapsedNum; ++i) 2609 Sub.push_back(Record.readSubExpr()); 2610 D->setFinals(Sub); 2611 } 2612 2613 void ASTStmtReader::VisitOMPParallelDirective(OMPParallelDirective *D) { 2614 VisitStmt(D); 2615 // The NumClauses field was read in ReadStmtFromStream. 2616 Record.skipInts(1); 2617 VisitOMPExecutableDirective(D); 2618 D->setHasCancel(Record.readInt()); 2619 } 2620 2621 void ASTStmtReader::VisitOMPSimdDirective(OMPSimdDirective *D) { 2622 VisitOMPLoopDirective(D); 2623 } 2624 2625 void ASTStmtReader::VisitOMPForDirective(OMPForDirective *D) { 2626 VisitOMPLoopDirective(D); 2627 D->setHasCancel(Record.readInt()); 2628 } 2629 2630 void ASTStmtReader::VisitOMPForSimdDirective(OMPForSimdDirective *D) { 2631 VisitOMPLoopDirective(D); 2632 } 2633 2634 void ASTStmtReader::VisitOMPSectionsDirective(OMPSectionsDirective *D) { 2635 VisitStmt(D); 2636 // The NumClauses field was read in ReadStmtFromStream. 2637 Record.skipInts(1); 2638 VisitOMPExecutableDirective(D); 2639 D->setHasCancel(Record.readInt()); 2640 } 2641 2642 void ASTStmtReader::VisitOMPSectionDirective(OMPSectionDirective *D) { 2643 VisitStmt(D); 2644 VisitOMPExecutableDirective(D); 2645 D->setHasCancel(Record.readInt()); 2646 } 2647 2648 void ASTStmtReader::VisitOMPSingleDirective(OMPSingleDirective *D) { 2649 VisitStmt(D); 2650 // The NumClauses field was read in ReadStmtFromStream. 2651 Record.skipInts(1); 2652 VisitOMPExecutableDirective(D); 2653 } 2654 2655 void ASTStmtReader::VisitOMPMasterDirective(OMPMasterDirective *D) { 2656 VisitStmt(D); 2657 VisitOMPExecutableDirective(D); 2658 } 2659 2660 void ASTStmtReader::VisitOMPCriticalDirective(OMPCriticalDirective *D) { 2661 VisitStmt(D); 2662 // The NumClauses field was read in ReadStmtFromStream. 2663 Record.skipInts(1); 2664 VisitOMPExecutableDirective(D); 2665 ReadDeclarationNameInfo(D->DirName); 2666 } 2667 2668 void ASTStmtReader::VisitOMPParallelForDirective(OMPParallelForDirective *D) { 2669 VisitOMPLoopDirective(D); 2670 D->setHasCancel(Record.readInt()); 2671 } 2672 2673 void ASTStmtReader::VisitOMPParallelForSimdDirective( 2674 OMPParallelForSimdDirective *D) { 2675 VisitOMPLoopDirective(D); 2676 } 2677 2678 void ASTStmtReader::VisitOMPParallelSectionsDirective( 2679 OMPParallelSectionsDirective *D) { 2680 VisitStmt(D); 2681 // The NumClauses field was read in ReadStmtFromStream. 2682 Record.skipInts(1); 2683 VisitOMPExecutableDirective(D); 2684 D->setHasCancel(Record.readInt()); 2685 } 2686 2687 void ASTStmtReader::VisitOMPTaskDirective(OMPTaskDirective *D) { 2688 VisitStmt(D); 2689 // The NumClauses field was read in ReadStmtFromStream. 2690 Record.skipInts(1); 2691 VisitOMPExecutableDirective(D); 2692 D->setHasCancel(Record.readInt()); 2693 } 2694 2695 void ASTStmtReader::VisitOMPTaskyieldDirective(OMPTaskyieldDirective *D) { 2696 VisitStmt(D); 2697 VisitOMPExecutableDirective(D); 2698 } 2699 2700 void ASTStmtReader::VisitOMPBarrierDirective(OMPBarrierDirective *D) { 2701 VisitStmt(D); 2702 VisitOMPExecutableDirective(D); 2703 } 2704 2705 void ASTStmtReader::VisitOMPTaskwaitDirective(OMPTaskwaitDirective *D) { 2706 VisitStmt(D); 2707 VisitOMPExecutableDirective(D); 2708 } 2709 2710 void ASTStmtReader::VisitOMPTaskgroupDirective(OMPTaskgroupDirective *D) { 2711 VisitStmt(D); 2712 VisitOMPExecutableDirective(D); 2713 } 2714 2715 void ASTStmtReader::VisitOMPFlushDirective(OMPFlushDirective *D) { 2716 VisitStmt(D); 2717 // The NumClauses field was read in ReadStmtFromStream. 2718 Record.skipInts(1); 2719 VisitOMPExecutableDirective(D); 2720 } 2721 2722 void ASTStmtReader::VisitOMPOrderedDirective(OMPOrderedDirective *D) { 2723 VisitStmt(D); 2724 // The NumClauses field was read in ReadStmtFromStream. 2725 Record.skipInts(1); 2726 VisitOMPExecutableDirective(D); 2727 } 2728 2729 void ASTStmtReader::VisitOMPAtomicDirective(OMPAtomicDirective *D) { 2730 VisitStmt(D); 2731 // The NumClauses field was read in ReadStmtFromStream. 2732 Record.skipInts(1); 2733 VisitOMPExecutableDirective(D); 2734 D->setX(Record.readSubExpr()); 2735 D->setV(Record.readSubExpr()); 2736 D->setExpr(Record.readSubExpr()); 2737 D->setUpdateExpr(Record.readSubExpr()); 2738 D->IsXLHSInRHSPart = Record.readInt() != 0; 2739 D->IsPostfixUpdate = Record.readInt() != 0; 2740 } 2741 2742 void ASTStmtReader::VisitOMPTargetDirective(OMPTargetDirective *D) { 2743 VisitStmt(D); 2744 // The NumClauses field was read in ReadStmtFromStream. 2745 Record.skipInts(1); 2746 VisitOMPExecutableDirective(D); 2747 } 2748 2749 void ASTStmtReader::VisitOMPTargetDataDirective(OMPTargetDataDirective *D) { 2750 VisitStmt(D); 2751 Record.skipInts(1); 2752 VisitOMPExecutableDirective(D); 2753 } 2754 2755 void ASTStmtReader::VisitOMPTargetEnterDataDirective( 2756 OMPTargetEnterDataDirective *D) { 2757 VisitStmt(D); 2758 Record.skipInts(1); 2759 VisitOMPExecutableDirective(D); 2760 } 2761 2762 void ASTStmtReader::VisitOMPTargetExitDataDirective( 2763 OMPTargetExitDataDirective *D) { 2764 VisitStmt(D); 2765 Record.skipInts(1); 2766 VisitOMPExecutableDirective(D); 2767 } 2768 2769 void ASTStmtReader::VisitOMPTargetParallelDirective( 2770 OMPTargetParallelDirective *D) { 2771 VisitStmt(D); 2772 Record.skipInts(1); 2773 VisitOMPExecutableDirective(D); 2774 } 2775 2776 void ASTStmtReader::VisitOMPTargetParallelForDirective( 2777 OMPTargetParallelForDirective *D) { 2778 VisitOMPLoopDirective(D); 2779 D->setHasCancel(Record.readInt()); 2780 } 2781 2782 void ASTStmtReader::VisitOMPTeamsDirective(OMPTeamsDirective *D) { 2783 VisitStmt(D); 2784 // The NumClauses field was read in ReadStmtFromStream. 2785 Record.skipInts(1); 2786 VisitOMPExecutableDirective(D); 2787 } 2788 2789 void ASTStmtReader::VisitOMPCancellationPointDirective( 2790 OMPCancellationPointDirective *D) { 2791 VisitStmt(D); 2792 VisitOMPExecutableDirective(D); 2793 D->setCancelRegion(static_cast<OpenMPDirectiveKind>(Record.readInt())); 2794 } 2795 2796 void ASTStmtReader::VisitOMPCancelDirective(OMPCancelDirective *D) { 2797 VisitStmt(D); 2798 // The NumClauses field was read in ReadStmtFromStream. 2799 Record.skipInts(1); 2800 VisitOMPExecutableDirective(D); 2801 D->setCancelRegion(static_cast<OpenMPDirectiveKind>(Record.readInt())); 2802 } 2803 2804 void ASTStmtReader::VisitOMPTaskLoopDirective(OMPTaskLoopDirective *D) { 2805 VisitOMPLoopDirective(D); 2806 } 2807 2808 void ASTStmtReader::VisitOMPTaskLoopSimdDirective(OMPTaskLoopSimdDirective *D) { 2809 VisitOMPLoopDirective(D); 2810 } 2811 2812 void ASTStmtReader::VisitOMPDistributeDirective(OMPDistributeDirective *D) { 2813 VisitOMPLoopDirective(D); 2814 } 2815 2816 void ASTStmtReader::VisitOMPTargetUpdateDirective(OMPTargetUpdateDirective *D) { 2817 VisitStmt(D); 2818 Record.skipInts(1); 2819 VisitOMPExecutableDirective(D); 2820 } 2821 void ASTStmtReader::VisitOMPDistributeParallelForDirective( 2822 OMPDistributeParallelForDirective *D) { 2823 VisitOMPLoopDirective(D); 2824 } 2825 2826 void ASTStmtReader::VisitOMPDistributeParallelForSimdDirective( 2827 OMPDistributeParallelForSimdDirective *D) { 2828 VisitOMPLoopDirective(D); 2829 } 2830 2831 void ASTStmtReader::VisitOMPDistributeSimdDirective( 2832 OMPDistributeSimdDirective *D) { 2833 VisitOMPLoopDirective(D); 2834 } 2835 2836 void ASTStmtReader::VisitOMPTargetParallelForSimdDirective( 2837 OMPTargetParallelForSimdDirective *D) { 2838 VisitOMPLoopDirective(D); 2839 } 2840 2841 void ASTStmtReader::VisitOMPTargetSimdDirective(OMPTargetSimdDirective *D) { 2842 VisitOMPLoopDirective(D); 2843 } 2844 2845 void ASTStmtReader::VisitOMPTeamsDistributeDirective( 2846 OMPTeamsDistributeDirective *D) { 2847 VisitOMPLoopDirective(D); 2848 } 2849 2850 void ASTStmtReader::VisitOMPTeamsDistributeSimdDirective( 2851 OMPTeamsDistributeSimdDirective *D) { 2852 VisitOMPLoopDirective(D); 2853 } 2854 2855 void ASTStmtReader::VisitOMPTeamsDistributeParallelForSimdDirective( 2856 OMPTeamsDistributeParallelForSimdDirective *D) { 2857 VisitOMPLoopDirective(D); 2858 } 2859 2860 void ASTStmtReader::VisitOMPTeamsDistributeParallelForDirective( 2861 OMPTeamsDistributeParallelForDirective *D) { 2862 VisitOMPLoopDirective(D); 2863 } 2864 2865 void ASTStmtReader::VisitOMPTargetTeamsDirective(OMPTargetTeamsDirective *D) { 2866 VisitStmt(D); 2867 // The NumClauses field was read in ReadStmtFromStream. 2868 Record.skipInts(1); 2869 VisitOMPExecutableDirective(D); 2870 } 2871 2872 void ASTStmtReader::VisitOMPTargetTeamsDistributeDirective( 2873 OMPTargetTeamsDistributeDirective *D) { 2874 VisitOMPLoopDirective(D); 2875 } 2876 2877 void ASTStmtReader::VisitOMPTargetTeamsDistributeParallelForDirective( 2878 OMPTargetTeamsDistributeParallelForDirective *D) { 2879 VisitOMPLoopDirective(D); 2880 } 2881 2882 void ASTStmtReader::VisitOMPTargetTeamsDistributeParallelForSimdDirective( 2883 OMPTargetTeamsDistributeParallelForSimdDirective *D) { 2884 VisitOMPLoopDirective(D); 2885 } 2886 2887 void ASTStmtReader::VisitOMPTargetTeamsDistributeSimdDirective( 2888 OMPTargetTeamsDistributeSimdDirective *D) { 2889 VisitOMPLoopDirective(D); 2890 } 2891 2892 //===----------------------------------------------------------------------===// 2893 // ASTReader Implementation 2894 //===----------------------------------------------------------------------===// 2895 2896 Stmt *ASTReader::ReadStmt(ModuleFile &F) { 2897 switch (ReadingKind) { 2898 case Read_None: 2899 llvm_unreachable("should not call this when not reading anything"); 2900 case Read_Decl: 2901 case Read_Type: 2902 return ReadStmtFromStream(F); 2903 case Read_Stmt: 2904 return ReadSubStmt(); 2905 } 2906 2907 llvm_unreachable("ReadingKind not set ?"); 2908 } 2909 2910 Expr *ASTReader::ReadExpr(ModuleFile &F) { 2911 return cast_or_null<Expr>(ReadStmt(F)); 2912 } 2913 2914 Expr *ASTReader::ReadSubExpr() { 2915 return cast_or_null<Expr>(ReadSubStmt()); 2916 } 2917 2918 // Within the bitstream, expressions are stored in Reverse Polish 2919 // Notation, with each of the subexpressions preceding the 2920 // expression they are stored in. Subexpressions are stored from last to first. 2921 // To evaluate expressions, we continue reading expressions and placing them on 2922 // the stack, with expressions having operands removing those operands from the 2923 // stack. Evaluation terminates when we see a STMT_STOP record, and 2924 // the single remaining expression on the stack is our result. 2925 Stmt *ASTReader::ReadStmtFromStream(ModuleFile &F) { 2926 2927 ReadingKindTracker ReadingKind(Read_Stmt, *this); 2928 llvm::BitstreamCursor &Cursor = F.DeclsCursor; 2929 2930 // Map of offset to previously deserialized stmt. The offset points 2931 // just after the stmt record. 2932 llvm::DenseMap<uint64_t, Stmt *> StmtEntries; 2933 2934 #ifndef NDEBUG 2935 unsigned PrevNumStmts = StmtStack.size(); 2936 #endif 2937 2938 ASTRecordReader Record(*this, F); 2939 ASTStmtReader Reader(Record, Cursor); 2940 Stmt::EmptyShell Empty; 2941 2942 while (true) { 2943 llvm::BitstreamEntry Entry = Cursor.advanceSkippingSubblocks(); 2944 2945 switch (Entry.Kind) { 2946 case llvm::BitstreamEntry::SubBlock: // Handled for us already. 2947 case llvm::BitstreamEntry::Error: 2948 Error("malformed block record in AST file"); 2949 return nullptr; 2950 case llvm::BitstreamEntry::EndBlock: 2951 goto Done; 2952 case llvm::BitstreamEntry::Record: 2953 // The interesting case. 2954 break; 2955 } 2956 2957 ASTContext &Context = getContext(); 2958 Stmt *S = nullptr; 2959 bool Finished = false; 2960 bool IsStmtReference = false; 2961 switch ((StmtCode)Record.readRecord(Cursor, Entry.ID)) { 2962 case STMT_STOP: 2963 Finished = true; 2964 break; 2965 2966 case STMT_REF_PTR: 2967 IsStmtReference = true; 2968 assert(StmtEntries.find(Record[0]) != StmtEntries.end() && 2969 "No stmt was recorded for this offset reference!"); 2970 S = StmtEntries[Record.readInt()]; 2971 break; 2972 2973 case STMT_NULL_PTR: 2974 S = nullptr; 2975 break; 2976 2977 case STMT_NULL: 2978 S = new (Context) NullStmt(Empty); 2979 break; 2980 2981 case STMT_COMPOUND: 2982 S = new (Context) CompoundStmt(Empty); 2983 break; 2984 2985 case STMT_CASE: 2986 S = new (Context) CaseStmt(Empty); 2987 break; 2988 2989 case STMT_DEFAULT: 2990 S = new (Context) DefaultStmt(Empty); 2991 break; 2992 2993 case STMT_LABEL: 2994 S = new (Context) LabelStmt(Empty); 2995 break; 2996 2997 case STMT_ATTRIBUTED: 2998 S = AttributedStmt::CreateEmpty( 2999 Context, 3000 /*NumAttrs*/Record[ASTStmtReader::NumStmtFields]); 3001 break; 3002 3003 case STMT_IF: 3004 S = new (Context) IfStmt(Empty); 3005 break; 3006 3007 case STMT_SWITCH: 3008 S = new (Context) SwitchStmt(Empty); 3009 break; 3010 3011 case STMT_WHILE: 3012 S = new (Context) WhileStmt(Empty); 3013 break; 3014 3015 case STMT_DO: 3016 S = new (Context) DoStmt(Empty); 3017 break; 3018 3019 case STMT_FOR: 3020 S = new (Context) ForStmt(Empty); 3021 break; 3022 3023 case STMT_GOTO: 3024 S = new (Context) GotoStmt(Empty); 3025 break; 3026 3027 case STMT_INDIRECT_GOTO: 3028 S = new (Context) IndirectGotoStmt(Empty); 3029 break; 3030 3031 case STMT_CONTINUE: 3032 S = new (Context) ContinueStmt(Empty); 3033 break; 3034 3035 case STMT_BREAK: 3036 S = new (Context) BreakStmt(Empty); 3037 break; 3038 3039 case STMT_RETURN: 3040 S = new (Context) ReturnStmt(Empty); 3041 break; 3042 3043 case STMT_DECL: 3044 S = new (Context) DeclStmt(Empty); 3045 break; 3046 3047 case STMT_GCCASM: 3048 S = new (Context) GCCAsmStmt(Empty); 3049 break; 3050 3051 case STMT_MSASM: 3052 S = new (Context) MSAsmStmt(Empty); 3053 break; 3054 3055 case STMT_CAPTURED: 3056 S = CapturedStmt::CreateDeserialized(Context, 3057 Record[ASTStmtReader::NumStmtFields]); 3058 break; 3059 3060 case EXPR_PREDEFINED: 3061 S = new (Context) PredefinedExpr(Empty); 3062 break; 3063 3064 case EXPR_DECL_REF: 3065 S = DeclRefExpr::CreateEmpty( 3066 Context, 3067 /*HasQualifier=*/Record[ASTStmtReader::NumExprFields], 3068 /*HasFoundDecl=*/Record[ASTStmtReader::NumExprFields + 1], 3069 /*HasTemplateKWAndArgsInfo=*/Record[ASTStmtReader::NumExprFields + 2], 3070 /*NumTemplateArgs=*/Record[ASTStmtReader::NumExprFields + 2] ? 3071 Record[ASTStmtReader::NumExprFields + 5] : 0); 3072 break; 3073 3074 case EXPR_INTEGER_LITERAL: 3075 S = IntegerLiteral::Create(Context, Empty); 3076 break; 3077 3078 case EXPR_FLOATING_LITERAL: 3079 S = FloatingLiteral::Create(Context, Empty); 3080 break; 3081 3082 case EXPR_IMAGINARY_LITERAL: 3083 S = new (Context) ImaginaryLiteral(Empty); 3084 break; 3085 3086 case EXPR_STRING_LITERAL: 3087 S = StringLiteral::CreateEmpty(Context, 3088 Record[ASTStmtReader::NumExprFields + 1]); 3089 break; 3090 3091 case EXPR_CHARACTER_LITERAL: 3092 S = new (Context) CharacterLiteral(Empty); 3093 break; 3094 3095 case EXPR_PAREN: 3096 S = new (Context) ParenExpr(Empty); 3097 break; 3098 3099 case EXPR_PAREN_LIST: 3100 S = new (Context) ParenListExpr(Empty); 3101 break; 3102 3103 case EXPR_UNARY_OPERATOR: 3104 S = new (Context) UnaryOperator(Empty); 3105 break; 3106 3107 case EXPR_OFFSETOF: 3108 S = OffsetOfExpr::CreateEmpty(Context, 3109 Record[ASTStmtReader::NumExprFields], 3110 Record[ASTStmtReader::NumExprFields + 1]); 3111 break; 3112 3113 case EXPR_SIZEOF_ALIGN_OF: 3114 S = new (Context) UnaryExprOrTypeTraitExpr(Empty); 3115 break; 3116 3117 case EXPR_ARRAY_SUBSCRIPT: 3118 S = new (Context) ArraySubscriptExpr(Empty); 3119 break; 3120 3121 case EXPR_OMP_ARRAY_SECTION: 3122 S = new (Context) OMPArraySectionExpr(Empty); 3123 break; 3124 3125 case EXPR_CALL: 3126 S = new (Context) CallExpr(Context, Stmt::CallExprClass, Empty); 3127 break; 3128 3129 case EXPR_MEMBER: { 3130 // We load everything here and fully initialize it at creation. 3131 // That way we can use MemberExpr::Create and don't have to duplicate its 3132 // logic with a MemberExpr::CreateEmpty. 3133 3134 assert(Record.getIdx() == 0); 3135 NestedNameSpecifierLoc QualifierLoc; 3136 if (Record.readInt()) { // HasQualifier. 3137 QualifierLoc = Record.readNestedNameSpecifierLoc(); 3138 } 3139 3140 SourceLocation TemplateKWLoc; 3141 TemplateArgumentListInfo ArgInfo; 3142 bool HasTemplateKWAndArgsInfo = Record.readInt(); 3143 if (HasTemplateKWAndArgsInfo) { 3144 TemplateKWLoc = Record.readSourceLocation(); 3145 unsigned NumTemplateArgs = Record.readInt(); 3146 ArgInfo.setLAngleLoc(Record.readSourceLocation()); 3147 ArgInfo.setRAngleLoc(Record.readSourceLocation()); 3148 for (unsigned i = 0; i != NumTemplateArgs; ++i) 3149 ArgInfo.addArgument(Record.readTemplateArgumentLoc()); 3150 } 3151 3152 bool HadMultipleCandidates = Record.readInt(); 3153 3154 NamedDecl *FoundD = Record.readDeclAs<NamedDecl>(); 3155 AccessSpecifier AS = (AccessSpecifier)Record.readInt(); 3156 DeclAccessPair FoundDecl = DeclAccessPair::make(FoundD, AS); 3157 3158 QualType T = Record.readType(); 3159 ExprValueKind VK = static_cast<ExprValueKind>(Record.readInt()); 3160 ExprObjectKind OK = static_cast<ExprObjectKind>(Record.readInt()); 3161 Expr *Base = ReadSubExpr(); 3162 ValueDecl *MemberD = Record.readDeclAs<ValueDecl>(); 3163 SourceLocation MemberLoc = Record.readSourceLocation(); 3164 DeclarationNameInfo MemberNameInfo(MemberD->getDeclName(), MemberLoc); 3165 bool IsArrow = Record.readInt(); 3166 SourceLocation OperatorLoc = Record.readSourceLocation(); 3167 3168 S = MemberExpr::Create(Context, Base, IsArrow, OperatorLoc, QualifierLoc, 3169 TemplateKWLoc, MemberD, FoundDecl, MemberNameInfo, 3170 HasTemplateKWAndArgsInfo ? &ArgInfo : nullptr, T, 3171 VK, OK); 3172 Record.readDeclarationNameLoc(cast<MemberExpr>(S)->MemberDNLoc, 3173 MemberD->getDeclName()); 3174 if (HadMultipleCandidates) 3175 cast<MemberExpr>(S)->setHadMultipleCandidates(true); 3176 break; 3177 } 3178 3179 case EXPR_BINARY_OPERATOR: 3180 S = new (Context) BinaryOperator(Empty); 3181 break; 3182 3183 case EXPR_COMPOUND_ASSIGN_OPERATOR: 3184 S = new (Context) CompoundAssignOperator(Empty); 3185 break; 3186 3187 case EXPR_CONDITIONAL_OPERATOR: 3188 S = new (Context) ConditionalOperator(Empty); 3189 break; 3190 3191 case EXPR_BINARY_CONDITIONAL_OPERATOR: 3192 S = new (Context) BinaryConditionalOperator(Empty); 3193 break; 3194 3195 case EXPR_IMPLICIT_CAST: 3196 S = ImplicitCastExpr::CreateEmpty(Context, 3197 /*PathSize*/ Record[ASTStmtReader::NumExprFields]); 3198 break; 3199 3200 case EXPR_CSTYLE_CAST: 3201 S = CStyleCastExpr::CreateEmpty(Context, 3202 /*PathSize*/ Record[ASTStmtReader::NumExprFields]); 3203 break; 3204 3205 case EXPR_COMPOUND_LITERAL: 3206 S = new (Context) CompoundLiteralExpr(Empty); 3207 break; 3208 3209 case EXPR_EXT_VECTOR_ELEMENT: 3210 S = new (Context) ExtVectorElementExpr(Empty); 3211 break; 3212 3213 case EXPR_INIT_LIST: 3214 S = new (Context) InitListExpr(Empty); 3215 break; 3216 3217 case EXPR_DESIGNATED_INIT: 3218 S = DesignatedInitExpr::CreateEmpty(Context, 3219 Record[ASTStmtReader::NumExprFields] - 1); 3220 3221 break; 3222 3223 case EXPR_DESIGNATED_INIT_UPDATE: 3224 S = new (Context) DesignatedInitUpdateExpr(Empty); 3225 break; 3226 3227 case EXPR_IMPLICIT_VALUE_INIT: 3228 S = new (Context) ImplicitValueInitExpr(Empty); 3229 break; 3230 3231 case EXPR_NO_INIT: 3232 S = new (Context) NoInitExpr(Empty); 3233 break; 3234 3235 case EXPR_ARRAY_INIT_LOOP: 3236 S = new (Context) ArrayInitLoopExpr(Empty); 3237 break; 3238 3239 case EXPR_ARRAY_INIT_INDEX: 3240 S = new (Context) ArrayInitIndexExpr(Empty); 3241 break; 3242 3243 case EXPR_VA_ARG: 3244 S = new (Context) VAArgExpr(Empty); 3245 break; 3246 3247 case EXPR_ADDR_LABEL: 3248 S = new (Context) AddrLabelExpr(Empty); 3249 break; 3250 3251 case EXPR_STMT: 3252 S = new (Context) StmtExpr(Empty); 3253 break; 3254 3255 case EXPR_CHOOSE: 3256 S = new (Context) ChooseExpr(Empty); 3257 break; 3258 3259 case EXPR_GNU_NULL: 3260 S = new (Context) GNUNullExpr(Empty); 3261 break; 3262 3263 case EXPR_SHUFFLE_VECTOR: 3264 S = new (Context) ShuffleVectorExpr(Empty); 3265 break; 3266 3267 case EXPR_CONVERT_VECTOR: 3268 S = new (Context) ConvertVectorExpr(Empty); 3269 break; 3270 3271 case EXPR_BLOCK: 3272 S = new (Context) BlockExpr(Empty); 3273 break; 3274 3275 case EXPR_GENERIC_SELECTION: 3276 S = new (Context) GenericSelectionExpr(Empty); 3277 break; 3278 3279 case EXPR_OBJC_STRING_LITERAL: 3280 S = new (Context) ObjCStringLiteral(Empty); 3281 break; 3282 case EXPR_OBJC_BOXED_EXPRESSION: 3283 S = new (Context) ObjCBoxedExpr(Empty); 3284 break; 3285 case EXPR_OBJC_ARRAY_LITERAL: 3286 S = ObjCArrayLiteral::CreateEmpty(Context, 3287 Record[ASTStmtReader::NumExprFields]); 3288 break; 3289 case EXPR_OBJC_DICTIONARY_LITERAL: 3290 S = ObjCDictionaryLiteral::CreateEmpty(Context, 3291 Record[ASTStmtReader::NumExprFields], 3292 Record[ASTStmtReader::NumExprFields + 1]); 3293 break; 3294 case EXPR_OBJC_ENCODE: 3295 S = new (Context) ObjCEncodeExpr(Empty); 3296 break; 3297 case EXPR_OBJC_SELECTOR_EXPR: 3298 S = new (Context) ObjCSelectorExpr(Empty); 3299 break; 3300 case EXPR_OBJC_PROTOCOL_EXPR: 3301 S = new (Context) ObjCProtocolExpr(Empty); 3302 break; 3303 case EXPR_OBJC_IVAR_REF_EXPR: 3304 S = new (Context) ObjCIvarRefExpr(Empty); 3305 break; 3306 case EXPR_OBJC_PROPERTY_REF_EXPR: 3307 S = new (Context) ObjCPropertyRefExpr(Empty); 3308 break; 3309 case EXPR_OBJC_SUBSCRIPT_REF_EXPR: 3310 S = new (Context) ObjCSubscriptRefExpr(Empty); 3311 break; 3312 case EXPR_OBJC_KVC_REF_EXPR: 3313 llvm_unreachable("mismatching AST file"); 3314 case EXPR_OBJC_MESSAGE_EXPR: 3315 S = ObjCMessageExpr::CreateEmpty(Context, 3316 Record[ASTStmtReader::NumExprFields], 3317 Record[ASTStmtReader::NumExprFields + 1]); 3318 break; 3319 case EXPR_OBJC_ISA: 3320 S = new (Context) ObjCIsaExpr(Empty); 3321 break; 3322 case EXPR_OBJC_INDIRECT_COPY_RESTORE: 3323 S = new (Context) ObjCIndirectCopyRestoreExpr(Empty); 3324 break; 3325 case EXPR_OBJC_BRIDGED_CAST: 3326 S = new (Context) ObjCBridgedCastExpr(Empty); 3327 break; 3328 case STMT_OBJC_FOR_COLLECTION: 3329 S = new (Context) ObjCForCollectionStmt(Empty); 3330 break; 3331 case STMT_OBJC_CATCH: 3332 S = new (Context) ObjCAtCatchStmt(Empty); 3333 break; 3334 case STMT_OBJC_FINALLY: 3335 S = new (Context) ObjCAtFinallyStmt(Empty); 3336 break; 3337 case STMT_OBJC_AT_TRY: 3338 S = ObjCAtTryStmt::CreateEmpty(Context, 3339 Record[ASTStmtReader::NumStmtFields], 3340 Record[ASTStmtReader::NumStmtFields + 1]); 3341 break; 3342 case STMT_OBJC_AT_SYNCHRONIZED: 3343 S = new (Context) ObjCAtSynchronizedStmt(Empty); 3344 break; 3345 case STMT_OBJC_AT_THROW: 3346 S = new (Context) ObjCAtThrowStmt(Empty); 3347 break; 3348 case STMT_OBJC_AUTORELEASE_POOL: 3349 S = new (Context) ObjCAutoreleasePoolStmt(Empty); 3350 break; 3351 case EXPR_OBJC_BOOL_LITERAL: 3352 S = new (Context) ObjCBoolLiteralExpr(Empty); 3353 break; 3354 case EXPR_OBJC_AVAILABILITY_CHECK: 3355 S = new (Context) ObjCAvailabilityCheckExpr(Empty); 3356 break; 3357 case STMT_SEH_LEAVE: 3358 S = new (Context) SEHLeaveStmt(Empty); 3359 break; 3360 case STMT_SEH_EXCEPT: 3361 S = new (Context) SEHExceptStmt(Empty); 3362 break; 3363 case STMT_SEH_FINALLY: 3364 S = new (Context) SEHFinallyStmt(Empty); 3365 break; 3366 case STMT_SEH_TRY: 3367 S = new (Context) SEHTryStmt(Empty); 3368 break; 3369 case STMT_CXX_CATCH: 3370 S = new (Context) CXXCatchStmt(Empty); 3371 break; 3372 3373 case STMT_CXX_TRY: 3374 S = CXXTryStmt::Create(Context, Empty, 3375 /*NumHandlers=*/Record[ASTStmtReader::NumStmtFields]); 3376 break; 3377 3378 case STMT_CXX_FOR_RANGE: 3379 S = new (Context) CXXForRangeStmt(Empty); 3380 break; 3381 3382 case STMT_MS_DEPENDENT_EXISTS: 3383 S = new (Context) MSDependentExistsStmt(SourceLocation(), true, 3384 NestedNameSpecifierLoc(), 3385 DeclarationNameInfo(), 3386 nullptr); 3387 break; 3388 3389 case STMT_OMP_PARALLEL_DIRECTIVE: 3390 S = 3391 OMPParallelDirective::CreateEmpty(Context, 3392 Record[ASTStmtReader::NumStmtFields], 3393 Empty); 3394 break; 3395 3396 case STMT_OMP_SIMD_DIRECTIVE: { 3397 unsigned NumClauses = Record[ASTStmtReader::NumStmtFields]; 3398 unsigned CollapsedNum = Record[ASTStmtReader::NumStmtFields + 1]; 3399 S = OMPSimdDirective::CreateEmpty(Context, NumClauses, 3400 CollapsedNum, Empty); 3401 break; 3402 } 3403 3404 case STMT_OMP_FOR_DIRECTIVE: { 3405 unsigned NumClauses = Record[ASTStmtReader::NumStmtFields]; 3406 unsigned CollapsedNum = Record[ASTStmtReader::NumStmtFields + 1]; 3407 S = OMPForDirective::CreateEmpty(Context, NumClauses, CollapsedNum, 3408 Empty); 3409 break; 3410 } 3411 3412 case STMT_OMP_FOR_SIMD_DIRECTIVE: { 3413 unsigned NumClauses = Record[ASTStmtReader::NumStmtFields]; 3414 unsigned CollapsedNum = Record[ASTStmtReader::NumStmtFields + 1]; 3415 S = OMPForSimdDirective::CreateEmpty(Context, NumClauses, CollapsedNum, 3416 Empty); 3417 break; 3418 } 3419 3420 case STMT_OMP_SECTIONS_DIRECTIVE: 3421 S = OMPSectionsDirective::CreateEmpty( 3422 Context, Record[ASTStmtReader::NumStmtFields], Empty); 3423 break; 3424 3425 case STMT_OMP_SECTION_DIRECTIVE: 3426 S = OMPSectionDirective::CreateEmpty(Context, Empty); 3427 break; 3428 3429 case STMT_OMP_SINGLE_DIRECTIVE: 3430 S = OMPSingleDirective::CreateEmpty( 3431 Context, Record[ASTStmtReader::NumStmtFields], Empty); 3432 break; 3433 3434 case STMT_OMP_MASTER_DIRECTIVE: 3435 S = OMPMasterDirective::CreateEmpty(Context, Empty); 3436 break; 3437 3438 case STMT_OMP_CRITICAL_DIRECTIVE: 3439 S = OMPCriticalDirective::CreateEmpty( 3440 Context, Record[ASTStmtReader::NumStmtFields], Empty); 3441 break; 3442 3443 case STMT_OMP_PARALLEL_FOR_DIRECTIVE: { 3444 unsigned NumClauses = Record[ASTStmtReader::NumStmtFields]; 3445 unsigned CollapsedNum = Record[ASTStmtReader::NumStmtFields + 1]; 3446 S = OMPParallelForDirective::CreateEmpty(Context, NumClauses, 3447 CollapsedNum, Empty); 3448 break; 3449 } 3450 3451 case STMT_OMP_PARALLEL_FOR_SIMD_DIRECTIVE: { 3452 unsigned NumClauses = Record[ASTStmtReader::NumStmtFields]; 3453 unsigned CollapsedNum = Record[ASTStmtReader::NumStmtFields + 1]; 3454 S = OMPParallelForSimdDirective::CreateEmpty(Context, NumClauses, 3455 CollapsedNum, Empty); 3456 break; 3457 } 3458 3459 case STMT_OMP_PARALLEL_SECTIONS_DIRECTIVE: 3460 S = OMPParallelSectionsDirective::CreateEmpty( 3461 Context, Record[ASTStmtReader::NumStmtFields], Empty); 3462 break; 3463 3464 case STMT_OMP_TASK_DIRECTIVE: 3465 S = OMPTaskDirective::CreateEmpty( 3466 Context, Record[ASTStmtReader::NumStmtFields], Empty); 3467 break; 3468 3469 case STMT_OMP_TASKYIELD_DIRECTIVE: 3470 S = OMPTaskyieldDirective::CreateEmpty(Context, Empty); 3471 break; 3472 3473 case STMT_OMP_BARRIER_DIRECTIVE: 3474 S = OMPBarrierDirective::CreateEmpty(Context, Empty); 3475 break; 3476 3477 case STMT_OMP_TASKWAIT_DIRECTIVE: 3478 S = OMPTaskwaitDirective::CreateEmpty(Context, Empty); 3479 break; 3480 3481 case STMT_OMP_TASKGROUP_DIRECTIVE: 3482 S = OMPTaskgroupDirective::CreateEmpty(Context, Empty); 3483 break; 3484 3485 case STMT_OMP_FLUSH_DIRECTIVE: 3486 S = OMPFlushDirective::CreateEmpty( 3487 Context, Record[ASTStmtReader::NumStmtFields], Empty); 3488 break; 3489 3490 case STMT_OMP_ORDERED_DIRECTIVE: 3491 S = OMPOrderedDirective::CreateEmpty( 3492 Context, Record[ASTStmtReader::NumStmtFields], Empty); 3493 break; 3494 3495 case STMT_OMP_ATOMIC_DIRECTIVE: 3496 S = OMPAtomicDirective::CreateEmpty( 3497 Context, Record[ASTStmtReader::NumStmtFields], Empty); 3498 break; 3499 3500 case STMT_OMP_TARGET_DIRECTIVE: 3501 S = OMPTargetDirective::CreateEmpty( 3502 Context, Record[ASTStmtReader::NumStmtFields], Empty); 3503 break; 3504 3505 case STMT_OMP_TARGET_DATA_DIRECTIVE: 3506 S = OMPTargetDataDirective::CreateEmpty( 3507 Context, Record[ASTStmtReader::NumStmtFields], Empty); 3508 break; 3509 3510 case STMT_OMP_TARGET_ENTER_DATA_DIRECTIVE: 3511 S = OMPTargetEnterDataDirective::CreateEmpty( 3512 Context, Record[ASTStmtReader::NumStmtFields], Empty); 3513 break; 3514 3515 case STMT_OMP_TARGET_EXIT_DATA_DIRECTIVE: 3516 S = OMPTargetExitDataDirective::CreateEmpty( 3517 Context, Record[ASTStmtReader::NumStmtFields], Empty); 3518 break; 3519 3520 case STMT_OMP_TARGET_PARALLEL_DIRECTIVE: 3521 S = OMPTargetParallelDirective::CreateEmpty( 3522 Context, Record[ASTStmtReader::NumStmtFields], Empty); 3523 break; 3524 3525 case STMT_OMP_TARGET_PARALLEL_FOR_DIRECTIVE: { 3526 unsigned NumClauses = Record[ASTStmtReader::NumStmtFields]; 3527 unsigned CollapsedNum = Record[ASTStmtReader::NumStmtFields + 1]; 3528 S = OMPTargetParallelForDirective::CreateEmpty(Context, NumClauses, 3529 CollapsedNum, Empty); 3530 break; 3531 } 3532 3533 case STMT_OMP_TARGET_UPDATE_DIRECTIVE: 3534 S = OMPTargetUpdateDirective::CreateEmpty( 3535 Context, Record[ASTStmtReader::NumStmtFields], Empty); 3536 break; 3537 3538 case STMT_OMP_TEAMS_DIRECTIVE: 3539 S = OMPTeamsDirective::CreateEmpty( 3540 Context, Record[ASTStmtReader::NumStmtFields], Empty); 3541 break; 3542 3543 case STMT_OMP_CANCELLATION_POINT_DIRECTIVE: 3544 S = OMPCancellationPointDirective::CreateEmpty(Context, Empty); 3545 break; 3546 3547 case STMT_OMP_CANCEL_DIRECTIVE: 3548 S = OMPCancelDirective::CreateEmpty( 3549 Context, Record[ASTStmtReader::NumStmtFields], Empty); 3550 break; 3551 3552 case STMT_OMP_TASKLOOP_DIRECTIVE: { 3553 unsigned NumClauses = Record[ASTStmtReader::NumStmtFields]; 3554 unsigned CollapsedNum = Record[ASTStmtReader::NumStmtFields + 1]; 3555 S = OMPTaskLoopDirective::CreateEmpty(Context, NumClauses, CollapsedNum, 3556 Empty); 3557 break; 3558 } 3559 3560 case STMT_OMP_TASKLOOP_SIMD_DIRECTIVE: { 3561 unsigned NumClauses = Record[ASTStmtReader::NumStmtFields]; 3562 unsigned CollapsedNum = Record[ASTStmtReader::NumStmtFields + 1]; 3563 S = OMPTaskLoopSimdDirective::CreateEmpty(Context, NumClauses, 3564 CollapsedNum, Empty); 3565 break; 3566 } 3567 3568 case STMT_OMP_DISTRIBUTE_DIRECTIVE: { 3569 unsigned NumClauses = Record[ASTStmtReader::NumStmtFields]; 3570 unsigned CollapsedNum = Record[ASTStmtReader::NumStmtFields + 1]; 3571 S = OMPDistributeDirective::CreateEmpty(Context, NumClauses, CollapsedNum, 3572 Empty); 3573 break; 3574 } 3575 3576 case STMT_OMP_DISTRIBUTE_PARALLEL_FOR_DIRECTIVE: { 3577 unsigned NumClauses = Record[ASTStmtReader::NumStmtFields]; 3578 unsigned CollapsedNum = Record[ASTStmtReader::NumStmtFields + 1]; 3579 S = OMPDistributeParallelForDirective::CreateEmpty(Context, NumClauses, 3580 CollapsedNum, Empty); 3581 break; 3582 } 3583 3584 case STMT_OMP_DISTRIBUTE_PARALLEL_FOR_SIMD_DIRECTIVE: { 3585 unsigned NumClauses = Record[ASTStmtReader::NumStmtFields]; 3586 unsigned CollapsedNum = Record[ASTStmtReader::NumStmtFields + 1]; 3587 S = OMPDistributeParallelForSimdDirective::CreateEmpty(Context, NumClauses, 3588 CollapsedNum, 3589 Empty); 3590 break; 3591 } 3592 3593 case STMT_OMP_DISTRIBUTE_SIMD_DIRECTIVE: { 3594 unsigned NumClauses = Record[ASTStmtReader::NumStmtFields]; 3595 unsigned CollapsedNum = Record[ASTStmtReader::NumStmtFields + 1]; 3596 S = OMPDistributeSimdDirective::CreateEmpty(Context, NumClauses, 3597 CollapsedNum, Empty); 3598 break; 3599 } 3600 3601 case STMT_OMP_TARGET_PARALLEL_FOR_SIMD_DIRECTIVE: { 3602 unsigned NumClauses = Record[ASTStmtReader::NumStmtFields]; 3603 unsigned CollapsedNum = Record[ASTStmtReader::NumStmtFields + 1]; 3604 S = OMPTargetParallelForSimdDirective::CreateEmpty(Context, NumClauses, 3605 CollapsedNum, Empty); 3606 break; 3607 } 3608 3609 case STMT_OMP_TARGET_SIMD_DIRECTIVE: { 3610 auto NumClauses = Record[ASTStmtReader::NumStmtFields]; 3611 auto CollapsedNum = Record[ASTStmtReader::NumStmtFields + 1]; 3612 S = OMPTargetSimdDirective::CreateEmpty(Context, NumClauses, CollapsedNum, 3613 Empty); 3614 break; 3615 } 3616 3617 case STMT_OMP_TEAMS_DISTRIBUTE_DIRECTIVE: { 3618 auto NumClauses = Record[ASTStmtReader::NumStmtFields]; 3619 auto CollapsedNum = Record[ASTStmtReader::NumStmtFields + 1]; 3620 S = OMPTeamsDistributeDirective::CreateEmpty(Context, NumClauses, 3621 CollapsedNum, Empty); 3622 break; 3623 } 3624 3625 case STMT_OMP_TEAMS_DISTRIBUTE_SIMD_DIRECTIVE: { 3626 unsigned NumClauses = Record[ASTStmtReader::NumStmtFields]; 3627 unsigned CollapsedNum = Record[ASTStmtReader::NumStmtFields + 1]; 3628 S = OMPTeamsDistributeSimdDirective::CreateEmpty(Context, NumClauses, 3629 CollapsedNum, Empty); 3630 break; 3631 } 3632 3633 case STMT_OMP_TEAMS_DISTRIBUTE_PARALLEL_FOR_SIMD_DIRECTIVE: { 3634 auto NumClauses = Record[ASTStmtReader::NumStmtFields]; 3635 auto CollapsedNum = Record[ASTStmtReader::NumStmtFields + 1]; 3636 S = OMPTeamsDistributeParallelForSimdDirective::CreateEmpty( 3637 Context, NumClauses, CollapsedNum, Empty); 3638 break; 3639 } 3640 3641 case STMT_OMP_TEAMS_DISTRIBUTE_PARALLEL_FOR_DIRECTIVE: { 3642 auto NumClauses = Record[ASTStmtReader::NumStmtFields]; 3643 auto CollapsedNum = Record[ASTStmtReader::NumStmtFields + 1]; 3644 S = OMPTeamsDistributeParallelForDirective::CreateEmpty( 3645 Context, NumClauses, CollapsedNum, Empty); 3646 break; 3647 } 3648 3649 case STMT_OMP_TARGET_TEAMS_DIRECTIVE: { 3650 S = OMPTargetTeamsDirective::CreateEmpty( 3651 Context, Record[ASTStmtReader::NumStmtFields], Empty); 3652 break; 3653 } 3654 3655 case STMT_OMP_TARGET_TEAMS_DISTRIBUTE_DIRECTIVE: { 3656 auto NumClauses = Record[ASTStmtReader::NumStmtFields]; 3657 auto CollapsedNum = Record[ASTStmtReader::NumStmtFields + 1]; 3658 S = OMPTargetTeamsDistributeDirective::CreateEmpty(Context, NumClauses, 3659 CollapsedNum, Empty); 3660 break; 3661 } 3662 3663 case STMT_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_FOR_DIRECTIVE: { 3664 auto NumClauses = Record[ASTStmtReader::NumStmtFields]; 3665 auto CollapsedNum = Record[ASTStmtReader::NumStmtFields + 1]; 3666 S = OMPTargetTeamsDistributeParallelForDirective::CreateEmpty( 3667 Context, NumClauses, CollapsedNum, Empty); 3668 break; 3669 } 3670 3671 case STMT_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_FOR_SIMD_DIRECTIVE: { 3672 auto NumClauses = Record[ASTStmtReader::NumStmtFields]; 3673 auto CollapsedNum = Record[ASTStmtReader::NumStmtFields + 1]; 3674 S = OMPTargetTeamsDistributeParallelForSimdDirective::CreateEmpty( 3675 Context, NumClauses, CollapsedNum, Empty); 3676 break; 3677 } 3678 3679 case STMT_OMP_TARGET_TEAMS_DISTRIBUTE_SIMD_DIRECTIVE: { 3680 auto NumClauses = Record[ASTStmtReader::NumStmtFields]; 3681 auto CollapsedNum = Record[ASTStmtReader::NumStmtFields + 1]; 3682 S = OMPTargetTeamsDistributeSimdDirective::CreateEmpty( 3683 Context, NumClauses, CollapsedNum, Empty); 3684 break; 3685 } 3686 3687 case EXPR_CXX_OPERATOR_CALL: 3688 S = new (Context) CXXOperatorCallExpr(Context, Empty); 3689 break; 3690 3691 case EXPR_CXX_MEMBER_CALL: 3692 S = new (Context) CXXMemberCallExpr(Context, Empty); 3693 break; 3694 3695 case EXPR_CXX_CONSTRUCT: 3696 S = new (Context) CXXConstructExpr(Empty); 3697 break; 3698 3699 case EXPR_CXX_INHERITED_CTOR_INIT: 3700 S = new (Context) CXXInheritedCtorInitExpr(Empty); 3701 break; 3702 3703 case EXPR_CXX_TEMPORARY_OBJECT: 3704 S = new (Context) CXXTemporaryObjectExpr(Empty); 3705 break; 3706 3707 case EXPR_CXX_STATIC_CAST: 3708 S = CXXStaticCastExpr::CreateEmpty(Context, 3709 /*PathSize*/ Record[ASTStmtReader::NumExprFields]); 3710 break; 3711 3712 case EXPR_CXX_DYNAMIC_CAST: 3713 S = CXXDynamicCastExpr::CreateEmpty(Context, 3714 /*PathSize*/ Record[ASTStmtReader::NumExprFields]); 3715 break; 3716 3717 case EXPR_CXX_REINTERPRET_CAST: 3718 S = CXXReinterpretCastExpr::CreateEmpty(Context, 3719 /*PathSize*/ Record[ASTStmtReader::NumExprFields]); 3720 break; 3721 3722 case EXPR_CXX_CONST_CAST: 3723 S = CXXConstCastExpr::CreateEmpty(Context); 3724 break; 3725 3726 case EXPR_CXX_FUNCTIONAL_CAST: 3727 S = CXXFunctionalCastExpr::CreateEmpty(Context, 3728 /*PathSize*/ Record[ASTStmtReader::NumExprFields]); 3729 break; 3730 3731 case EXPR_USER_DEFINED_LITERAL: 3732 S = new (Context) UserDefinedLiteral(Context, Empty); 3733 break; 3734 3735 case EXPR_CXX_STD_INITIALIZER_LIST: 3736 S = new (Context) CXXStdInitializerListExpr(Empty); 3737 break; 3738 3739 case EXPR_CXX_BOOL_LITERAL: 3740 S = new (Context) CXXBoolLiteralExpr(Empty); 3741 break; 3742 3743 case EXPR_CXX_NULL_PTR_LITERAL: 3744 S = new (Context) CXXNullPtrLiteralExpr(Empty); 3745 break; 3746 case EXPR_CXX_TYPEID_EXPR: 3747 S = new (Context) CXXTypeidExpr(Empty, true); 3748 break; 3749 case EXPR_CXX_TYPEID_TYPE: 3750 S = new (Context) CXXTypeidExpr(Empty, false); 3751 break; 3752 case EXPR_CXX_UUIDOF_EXPR: 3753 S = new (Context) CXXUuidofExpr(Empty, true); 3754 break; 3755 case EXPR_CXX_PROPERTY_REF_EXPR: 3756 S = new (Context) MSPropertyRefExpr(Empty); 3757 break; 3758 case EXPR_CXX_PROPERTY_SUBSCRIPT_EXPR: 3759 S = new (Context) MSPropertySubscriptExpr(Empty); 3760 break; 3761 case EXPR_CXX_UUIDOF_TYPE: 3762 S = new (Context) CXXUuidofExpr(Empty, false); 3763 break; 3764 case EXPR_CXX_THIS: 3765 S = new (Context) CXXThisExpr(Empty); 3766 break; 3767 case EXPR_CXX_THROW: 3768 S = new (Context) CXXThrowExpr(Empty); 3769 break; 3770 case EXPR_CXX_DEFAULT_ARG: 3771 S = new (Context) CXXDefaultArgExpr(Empty); 3772 break; 3773 case EXPR_CXX_DEFAULT_INIT: 3774 S = new (Context) CXXDefaultInitExpr(Empty); 3775 break; 3776 case EXPR_CXX_BIND_TEMPORARY: 3777 S = new (Context) CXXBindTemporaryExpr(Empty); 3778 break; 3779 3780 case EXPR_CXX_SCALAR_VALUE_INIT: 3781 S = new (Context) CXXScalarValueInitExpr(Empty); 3782 break; 3783 case EXPR_CXX_NEW: 3784 S = new (Context) CXXNewExpr(Empty); 3785 break; 3786 case EXPR_CXX_DELETE: 3787 S = new (Context) CXXDeleteExpr(Empty); 3788 break; 3789 case EXPR_CXX_PSEUDO_DESTRUCTOR: 3790 S = new (Context) CXXPseudoDestructorExpr(Empty); 3791 break; 3792 3793 case EXPR_EXPR_WITH_CLEANUPS: 3794 S = ExprWithCleanups::Create(Context, Empty, 3795 Record[ASTStmtReader::NumExprFields]); 3796 break; 3797 3798 case EXPR_CXX_DEPENDENT_SCOPE_MEMBER: 3799 S = CXXDependentScopeMemberExpr::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_DEPENDENT_SCOPE_DECL_REF: 3807 S = DependentScopeDeclRefExpr::CreateEmpty(Context, 3808 /*HasTemplateKWAndArgsInfo=*/Record[ASTStmtReader::NumExprFields], 3809 /*NumTemplateArgs=*/Record[ASTStmtReader::NumExprFields] 3810 ? Record[ASTStmtReader::NumExprFields + 1] 3811 : 0); 3812 break; 3813 3814 case EXPR_CXX_UNRESOLVED_CONSTRUCT: 3815 S = CXXUnresolvedConstructExpr::CreateEmpty(Context, 3816 /*NumArgs=*/Record[ASTStmtReader::NumExprFields]); 3817 break; 3818 3819 case EXPR_CXX_UNRESOLVED_MEMBER: 3820 S = UnresolvedMemberExpr::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_CXX_UNRESOLVED_LOOKUP: 3828 S = UnresolvedLookupExpr::CreateEmpty(Context, 3829 /*HasTemplateKWAndArgsInfo=*/Record[ASTStmtReader::NumExprFields], 3830 /*NumTemplateArgs=*/Record[ASTStmtReader::NumExprFields] 3831 ? Record[ASTStmtReader::NumExprFields + 1] 3832 : 0); 3833 break; 3834 3835 case EXPR_TYPE_TRAIT: 3836 S = TypeTraitExpr::CreateDeserialized(Context, 3837 Record[ASTStmtReader::NumExprFields]); 3838 break; 3839 3840 case EXPR_ARRAY_TYPE_TRAIT: 3841 S = new (Context) ArrayTypeTraitExpr(Empty); 3842 break; 3843 3844 case EXPR_CXX_EXPRESSION_TRAIT: 3845 S = new (Context) ExpressionTraitExpr(Empty); 3846 break; 3847 3848 case EXPR_CXX_NOEXCEPT: 3849 S = new (Context) CXXNoexceptExpr(Empty); 3850 break; 3851 3852 case EXPR_PACK_EXPANSION: 3853 S = new (Context) PackExpansionExpr(Empty); 3854 break; 3855 3856 case EXPR_SIZEOF_PACK: 3857 S = SizeOfPackExpr::CreateDeserialized( 3858 Context, 3859 /*NumPartialArgs=*/Record[ASTStmtReader::NumExprFields]); 3860 break; 3861 3862 case EXPR_SUBST_NON_TYPE_TEMPLATE_PARM: 3863 S = new (Context) SubstNonTypeTemplateParmExpr(Empty); 3864 break; 3865 3866 case EXPR_SUBST_NON_TYPE_TEMPLATE_PARM_PACK: 3867 S = new (Context) SubstNonTypeTemplateParmPackExpr(Empty); 3868 break; 3869 3870 case EXPR_FUNCTION_PARM_PACK: 3871 S = FunctionParmPackExpr::CreateEmpty(Context, 3872 Record[ASTStmtReader::NumExprFields]); 3873 break; 3874 3875 case EXPR_MATERIALIZE_TEMPORARY: 3876 S = new (Context) MaterializeTemporaryExpr(Empty); 3877 break; 3878 3879 case EXPR_CXX_FOLD: 3880 S = new (Context) CXXFoldExpr(Empty); 3881 break; 3882 3883 case EXPR_OPAQUE_VALUE: 3884 S = new (Context) OpaqueValueExpr(Empty); 3885 break; 3886 3887 case EXPR_CUDA_KERNEL_CALL: 3888 S = new (Context) CUDAKernelCallExpr(Context, Empty); 3889 break; 3890 3891 case EXPR_ASTYPE: 3892 S = new (Context) AsTypeExpr(Empty); 3893 break; 3894 3895 case EXPR_PSEUDO_OBJECT: { 3896 unsigned numSemanticExprs = Record[ASTStmtReader::NumExprFields]; 3897 S = PseudoObjectExpr::Create(Context, Empty, numSemanticExprs); 3898 break; 3899 } 3900 3901 case EXPR_ATOMIC: 3902 S = new (Context) AtomicExpr(Empty); 3903 break; 3904 3905 case EXPR_LAMBDA: { 3906 unsigned NumCaptures = Record[ASTStmtReader::NumExprFields]; 3907 S = LambdaExpr::CreateDeserialized(Context, NumCaptures); 3908 break; 3909 } 3910 } 3911 3912 // We hit a STMT_STOP, so we're done with this expression. 3913 if (Finished) 3914 break; 3915 3916 ++NumStatementsRead; 3917 3918 if (S && !IsStmtReference) { 3919 Reader.Visit(S); 3920 StmtEntries[Cursor.GetCurrentBitNo()] = S; 3921 } 3922 3923 assert(Record.getIdx() == Record.size() && 3924 "Invalid deserialization of statement"); 3925 StmtStack.push_back(S); 3926 } 3927 Done: 3928 assert(StmtStack.size() > PrevNumStmts && "Read too many sub-stmts!"); 3929 assert(StmtStack.size() == PrevNumStmts + 1 && "Extra expressions on stack!"); 3930 return StmtStack.pop_back_val(); 3931 } 3932