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_task_reduction:
1838     C = OMPTaskReductionClause::CreateEmpty(Context, Reader->Record.readInt());
1839     break;
1840   case OMPC_linear:
1841     C = OMPLinearClause::CreateEmpty(Context, Reader->Record.readInt());
1842     break;
1843   case OMPC_aligned:
1844     C = OMPAlignedClause::CreateEmpty(Context, Reader->Record.readInt());
1845     break;
1846   case OMPC_copyin:
1847     C = OMPCopyinClause::CreateEmpty(Context, Reader->Record.readInt());
1848     break;
1849   case OMPC_copyprivate:
1850     C = OMPCopyprivateClause::CreateEmpty(Context, Reader->Record.readInt());
1851     break;
1852   case OMPC_flush:
1853     C = OMPFlushClause::CreateEmpty(Context, Reader->Record.readInt());
1854     break;
1855   case OMPC_depend:
1856     C = OMPDependClause::CreateEmpty(Context, Reader->Record.readInt());
1857     break;
1858   case OMPC_device:
1859     C = new (Context) OMPDeviceClause();
1860     break;
1861   case OMPC_map: {
1862     unsigned NumVars = Reader->Record.readInt();
1863     unsigned NumDeclarations = Reader->Record.readInt();
1864     unsigned NumLists = Reader->Record.readInt();
1865     unsigned NumComponents = Reader->Record.readInt();
1866     C = OMPMapClause::CreateEmpty(Context, NumVars, NumDeclarations, NumLists,
1867                                   NumComponents);
1868     break;
1869   }
1870   case OMPC_num_teams:
1871     C = new (Context) OMPNumTeamsClause();
1872     break;
1873   case OMPC_thread_limit:
1874     C = new (Context) OMPThreadLimitClause();
1875     break;
1876   case OMPC_priority:
1877     C = new (Context) OMPPriorityClause();
1878     break;
1879   case OMPC_grainsize:
1880     C = new (Context) OMPGrainsizeClause();
1881     break;
1882   case OMPC_num_tasks:
1883     C = new (Context) OMPNumTasksClause();
1884     break;
1885   case OMPC_hint:
1886     C = new (Context) OMPHintClause();
1887     break;
1888   case OMPC_dist_schedule:
1889     C = new (Context) OMPDistScheduleClause();
1890     break;
1891   case OMPC_defaultmap:
1892     C = new (Context) OMPDefaultmapClause();
1893     break;
1894   case OMPC_to: {
1895     unsigned NumVars = Reader->Record.readInt();
1896     unsigned NumDeclarations = Reader->Record.readInt();
1897     unsigned NumLists = Reader->Record.readInt();
1898     unsigned NumComponents = Reader->Record.readInt();
1899     C = OMPToClause::CreateEmpty(Context, NumVars, NumDeclarations, NumLists,
1900                                  NumComponents);
1901     break;
1902   }
1903   case OMPC_from: {
1904     unsigned NumVars = Reader->Record.readInt();
1905     unsigned NumDeclarations = Reader->Record.readInt();
1906     unsigned NumLists = Reader->Record.readInt();
1907     unsigned NumComponents = Reader->Record.readInt();
1908     C = OMPFromClause::CreateEmpty(Context, NumVars, NumDeclarations, NumLists,
1909                                    NumComponents);
1910     break;
1911   }
1912   case OMPC_use_device_ptr: {
1913     unsigned NumVars = Reader->Record.readInt();
1914     unsigned NumDeclarations = Reader->Record.readInt();
1915     unsigned NumLists = Reader->Record.readInt();
1916     unsigned NumComponents = Reader->Record.readInt();
1917     C = OMPUseDevicePtrClause::CreateEmpty(Context, NumVars, NumDeclarations,
1918                                            NumLists, NumComponents);
1919     break;
1920   }
1921   case OMPC_is_device_ptr: {
1922     unsigned NumVars = Reader->Record.readInt();
1923     unsigned NumDeclarations = Reader->Record.readInt();
1924     unsigned NumLists = Reader->Record.readInt();
1925     unsigned NumComponents = Reader->Record.readInt();
1926     C = OMPIsDevicePtrClause::CreateEmpty(Context, NumVars, NumDeclarations,
1927                                           NumLists, NumComponents);
1928     break;
1929   }
1930   }
1931   Visit(C);
1932   C->setLocStart(Reader->ReadSourceLocation());
1933   C->setLocEnd(Reader->ReadSourceLocation());
1934 
1935   return C;
1936 }
1937 
1938 void OMPClauseReader::VisitOMPClauseWithPreInit(OMPClauseWithPreInit *C) {
1939   C->setPreInitStmt(Reader->Record.readSubStmt(),
1940                     static_cast<OpenMPDirectiveKind>(Reader->Record.readInt()));
1941 }
1942 
1943 void OMPClauseReader::VisitOMPClauseWithPostUpdate(OMPClauseWithPostUpdate *C) {
1944   VisitOMPClauseWithPreInit(C);
1945   C->setPostUpdateExpr(Reader->Record.readSubExpr());
1946 }
1947 
1948 void OMPClauseReader::VisitOMPIfClause(OMPIfClause *C) {
1949   VisitOMPClauseWithPreInit(C);
1950   C->setNameModifier(static_cast<OpenMPDirectiveKind>(Reader->Record.readInt()));
1951   C->setNameModifierLoc(Reader->ReadSourceLocation());
1952   C->setColonLoc(Reader->ReadSourceLocation());
1953   C->setCondition(Reader->Record.readSubExpr());
1954   C->setLParenLoc(Reader->ReadSourceLocation());
1955 }
1956 
1957 void OMPClauseReader::VisitOMPFinalClause(OMPFinalClause *C) {
1958   C->setCondition(Reader->Record.readSubExpr());
1959   C->setLParenLoc(Reader->ReadSourceLocation());
1960 }
1961 
1962 void OMPClauseReader::VisitOMPNumThreadsClause(OMPNumThreadsClause *C) {
1963   VisitOMPClauseWithPreInit(C);
1964   C->setNumThreads(Reader->Record.readSubExpr());
1965   C->setLParenLoc(Reader->ReadSourceLocation());
1966 }
1967 
1968 void OMPClauseReader::VisitOMPSafelenClause(OMPSafelenClause *C) {
1969   C->setSafelen(Reader->Record.readSubExpr());
1970   C->setLParenLoc(Reader->ReadSourceLocation());
1971 }
1972 
1973 void OMPClauseReader::VisitOMPSimdlenClause(OMPSimdlenClause *C) {
1974   C->setSimdlen(Reader->Record.readSubExpr());
1975   C->setLParenLoc(Reader->ReadSourceLocation());
1976 }
1977 
1978 void OMPClauseReader::VisitOMPCollapseClause(OMPCollapseClause *C) {
1979   C->setNumForLoops(Reader->Record.readSubExpr());
1980   C->setLParenLoc(Reader->ReadSourceLocation());
1981 }
1982 
1983 void OMPClauseReader::VisitOMPDefaultClause(OMPDefaultClause *C) {
1984   C->setDefaultKind(
1985        static_cast<OpenMPDefaultClauseKind>(Reader->Record.readInt()));
1986   C->setLParenLoc(Reader->ReadSourceLocation());
1987   C->setDefaultKindKwLoc(Reader->ReadSourceLocation());
1988 }
1989 
1990 void OMPClauseReader::VisitOMPProcBindClause(OMPProcBindClause *C) {
1991   C->setProcBindKind(
1992        static_cast<OpenMPProcBindClauseKind>(Reader->Record.readInt()));
1993   C->setLParenLoc(Reader->ReadSourceLocation());
1994   C->setProcBindKindKwLoc(Reader->ReadSourceLocation());
1995 }
1996 
1997 void OMPClauseReader::VisitOMPScheduleClause(OMPScheduleClause *C) {
1998   VisitOMPClauseWithPreInit(C);
1999   C->setScheduleKind(
2000        static_cast<OpenMPScheduleClauseKind>(Reader->Record.readInt()));
2001   C->setFirstScheduleModifier(
2002       static_cast<OpenMPScheduleClauseModifier>(Reader->Record.readInt()));
2003   C->setSecondScheduleModifier(
2004       static_cast<OpenMPScheduleClauseModifier>(Reader->Record.readInt()));
2005   C->setChunkSize(Reader->Record.readSubExpr());
2006   C->setLParenLoc(Reader->ReadSourceLocation());
2007   C->setFirstScheduleModifierLoc(Reader->ReadSourceLocation());
2008   C->setSecondScheduleModifierLoc(Reader->ReadSourceLocation());
2009   C->setScheduleKindLoc(Reader->ReadSourceLocation());
2010   C->setCommaLoc(Reader->ReadSourceLocation());
2011 }
2012 
2013 void OMPClauseReader::VisitOMPOrderedClause(OMPOrderedClause *C) {
2014   C->setNumForLoops(Reader->Record.readSubExpr());
2015   C->setLParenLoc(Reader->ReadSourceLocation());
2016 }
2017 
2018 void OMPClauseReader::VisitOMPNowaitClause(OMPNowaitClause *) {}
2019 
2020 void OMPClauseReader::VisitOMPUntiedClause(OMPUntiedClause *) {}
2021 
2022 void OMPClauseReader::VisitOMPMergeableClause(OMPMergeableClause *) {}
2023 
2024 void OMPClauseReader::VisitOMPReadClause(OMPReadClause *) {}
2025 
2026 void OMPClauseReader::VisitOMPWriteClause(OMPWriteClause *) {}
2027 
2028 void OMPClauseReader::VisitOMPUpdateClause(OMPUpdateClause *) {}
2029 
2030 void OMPClauseReader::VisitOMPCaptureClause(OMPCaptureClause *) {}
2031 
2032 void OMPClauseReader::VisitOMPSeqCstClause(OMPSeqCstClause *) {}
2033 
2034 void OMPClauseReader::VisitOMPThreadsClause(OMPThreadsClause *) {}
2035 
2036 void OMPClauseReader::VisitOMPSIMDClause(OMPSIMDClause *) {}
2037 
2038 void OMPClauseReader::VisitOMPNogroupClause(OMPNogroupClause *) {}
2039 
2040 void OMPClauseReader::VisitOMPPrivateClause(OMPPrivateClause *C) {
2041   C->setLParenLoc(Reader->ReadSourceLocation());
2042   unsigned NumVars = C->varlist_size();
2043   SmallVector<Expr *, 16> Vars;
2044   Vars.reserve(NumVars);
2045   for (unsigned i = 0; i != NumVars; ++i)
2046     Vars.push_back(Reader->Record.readSubExpr());
2047   C->setVarRefs(Vars);
2048   Vars.clear();
2049   for (unsigned i = 0; i != NumVars; ++i)
2050     Vars.push_back(Reader->Record.readSubExpr());
2051   C->setPrivateCopies(Vars);
2052 }
2053 
2054 void OMPClauseReader::VisitOMPFirstprivateClause(OMPFirstprivateClause *C) {
2055   VisitOMPClauseWithPreInit(C);
2056   C->setLParenLoc(Reader->ReadSourceLocation());
2057   unsigned NumVars = C->varlist_size();
2058   SmallVector<Expr *, 16> Vars;
2059   Vars.reserve(NumVars);
2060   for (unsigned i = 0; i != NumVars; ++i)
2061     Vars.push_back(Reader->Record.readSubExpr());
2062   C->setVarRefs(Vars);
2063   Vars.clear();
2064   for (unsigned i = 0; i != NumVars; ++i)
2065     Vars.push_back(Reader->Record.readSubExpr());
2066   C->setPrivateCopies(Vars);
2067   Vars.clear();
2068   for (unsigned i = 0; i != NumVars; ++i)
2069     Vars.push_back(Reader->Record.readSubExpr());
2070   C->setInits(Vars);
2071 }
2072 
2073 void OMPClauseReader::VisitOMPLastprivateClause(OMPLastprivateClause *C) {
2074   VisitOMPClauseWithPostUpdate(C);
2075   C->setLParenLoc(Reader->ReadSourceLocation());
2076   unsigned NumVars = C->varlist_size();
2077   SmallVector<Expr *, 16> Vars;
2078   Vars.reserve(NumVars);
2079   for (unsigned i = 0; i != NumVars; ++i)
2080     Vars.push_back(Reader->Record.readSubExpr());
2081   C->setVarRefs(Vars);
2082   Vars.clear();
2083   for (unsigned i = 0; i != NumVars; ++i)
2084     Vars.push_back(Reader->Record.readSubExpr());
2085   C->setPrivateCopies(Vars);
2086   Vars.clear();
2087   for (unsigned i = 0; i != NumVars; ++i)
2088     Vars.push_back(Reader->Record.readSubExpr());
2089   C->setSourceExprs(Vars);
2090   Vars.clear();
2091   for (unsigned i = 0; i != NumVars; ++i)
2092     Vars.push_back(Reader->Record.readSubExpr());
2093   C->setDestinationExprs(Vars);
2094   Vars.clear();
2095   for (unsigned i = 0; i != NumVars; ++i)
2096     Vars.push_back(Reader->Record.readSubExpr());
2097   C->setAssignmentOps(Vars);
2098 }
2099 
2100 void OMPClauseReader::VisitOMPSharedClause(OMPSharedClause *C) {
2101   C->setLParenLoc(Reader->ReadSourceLocation());
2102   unsigned NumVars = C->varlist_size();
2103   SmallVector<Expr *, 16> Vars;
2104   Vars.reserve(NumVars);
2105   for (unsigned i = 0; i != NumVars; ++i)
2106     Vars.push_back(Reader->Record.readSubExpr());
2107   C->setVarRefs(Vars);
2108 }
2109 
2110 void OMPClauseReader::VisitOMPReductionClause(OMPReductionClause *C) {
2111   VisitOMPClauseWithPostUpdate(C);
2112   C->setLParenLoc(Reader->ReadSourceLocation());
2113   C->setColonLoc(Reader->ReadSourceLocation());
2114   NestedNameSpecifierLoc NNSL = Reader->Record.readNestedNameSpecifierLoc();
2115   DeclarationNameInfo DNI;
2116   Reader->ReadDeclarationNameInfo(DNI);
2117   C->setQualifierLoc(NNSL);
2118   C->setNameInfo(DNI);
2119 
2120   unsigned NumVars = C->varlist_size();
2121   SmallVector<Expr *, 16> Vars;
2122   Vars.reserve(NumVars);
2123   for (unsigned i = 0; i != NumVars; ++i)
2124     Vars.push_back(Reader->Record.readSubExpr());
2125   C->setVarRefs(Vars);
2126   Vars.clear();
2127   for (unsigned i = 0; i != NumVars; ++i)
2128     Vars.push_back(Reader->Record.readSubExpr());
2129   C->setPrivates(Vars);
2130   Vars.clear();
2131   for (unsigned i = 0; i != NumVars; ++i)
2132     Vars.push_back(Reader->Record.readSubExpr());
2133   C->setLHSExprs(Vars);
2134   Vars.clear();
2135   for (unsigned i = 0; i != NumVars; ++i)
2136     Vars.push_back(Reader->Record.readSubExpr());
2137   C->setRHSExprs(Vars);
2138   Vars.clear();
2139   for (unsigned i = 0; i != NumVars; ++i)
2140     Vars.push_back(Reader->Record.readSubExpr());
2141   C->setReductionOps(Vars);
2142 }
2143 
2144 void OMPClauseReader::VisitOMPTaskReductionClause(OMPTaskReductionClause *C) {
2145   VisitOMPClauseWithPostUpdate(C);
2146   C->setLParenLoc(Reader->ReadSourceLocation());
2147   C->setColonLoc(Reader->ReadSourceLocation());
2148   NestedNameSpecifierLoc NNSL = Reader->Record.readNestedNameSpecifierLoc();
2149   DeclarationNameInfo DNI;
2150   Reader->ReadDeclarationNameInfo(DNI);
2151   C->setQualifierLoc(NNSL);
2152   C->setNameInfo(DNI);
2153 
2154   unsigned NumVars = C->varlist_size();
2155   SmallVector<Expr *, 16> Vars;
2156   Vars.reserve(NumVars);
2157   for (unsigned I = 0; I != NumVars; ++I)
2158     Vars.push_back(Reader->Record.readSubExpr());
2159   C->setVarRefs(Vars);
2160   Vars.clear();
2161   for (unsigned I = 0; I != NumVars; ++I)
2162     Vars.push_back(Reader->Record.readSubExpr());
2163   C->setPrivates(Vars);
2164   Vars.clear();
2165   for (unsigned I = 0; I != NumVars; ++I)
2166     Vars.push_back(Reader->Record.readSubExpr());
2167   C->setLHSExprs(Vars);
2168   Vars.clear();
2169   for (unsigned I = 0; I != NumVars; ++I)
2170     Vars.push_back(Reader->Record.readSubExpr());
2171   C->setRHSExprs(Vars);
2172   Vars.clear();
2173   for (unsigned I = 0; I != NumVars; ++I)
2174     Vars.push_back(Reader->Record.readSubExpr());
2175   C->setReductionOps(Vars);
2176 }
2177 
2178 void OMPClauseReader::VisitOMPLinearClause(OMPLinearClause *C) {
2179   VisitOMPClauseWithPostUpdate(C);
2180   C->setLParenLoc(Reader->ReadSourceLocation());
2181   C->setColonLoc(Reader->ReadSourceLocation());
2182   C->setModifier(static_cast<OpenMPLinearClauseKind>(Reader->Record.readInt()));
2183   C->setModifierLoc(Reader->ReadSourceLocation());
2184   unsigned NumVars = C->varlist_size();
2185   SmallVector<Expr *, 16> Vars;
2186   Vars.reserve(NumVars);
2187   for (unsigned i = 0; i != NumVars; ++i)
2188     Vars.push_back(Reader->Record.readSubExpr());
2189   C->setVarRefs(Vars);
2190   Vars.clear();
2191   for (unsigned i = 0; i != NumVars; ++i)
2192     Vars.push_back(Reader->Record.readSubExpr());
2193   C->setPrivates(Vars);
2194   Vars.clear();
2195   for (unsigned i = 0; i != NumVars; ++i)
2196     Vars.push_back(Reader->Record.readSubExpr());
2197   C->setInits(Vars);
2198   Vars.clear();
2199   for (unsigned i = 0; i != NumVars; ++i)
2200     Vars.push_back(Reader->Record.readSubExpr());
2201   C->setUpdates(Vars);
2202   Vars.clear();
2203   for (unsigned i = 0; i != NumVars; ++i)
2204     Vars.push_back(Reader->Record.readSubExpr());
2205   C->setFinals(Vars);
2206   C->setStep(Reader->Record.readSubExpr());
2207   C->setCalcStep(Reader->Record.readSubExpr());
2208 }
2209 
2210 void OMPClauseReader::VisitOMPAlignedClause(OMPAlignedClause *C) {
2211   C->setLParenLoc(Reader->ReadSourceLocation());
2212   C->setColonLoc(Reader->ReadSourceLocation());
2213   unsigned NumVars = C->varlist_size();
2214   SmallVector<Expr *, 16> Vars;
2215   Vars.reserve(NumVars);
2216   for (unsigned i = 0; i != NumVars; ++i)
2217     Vars.push_back(Reader->Record.readSubExpr());
2218   C->setVarRefs(Vars);
2219   C->setAlignment(Reader->Record.readSubExpr());
2220 }
2221 
2222 void OMPClauseReader::VisitOMPCopyinClause(OMPCopyinClause *C) {
2223   C->setLParenLoc(Reader->ReadSourceLocation());
2224   unsigned NumVars = C->varlist_size();
2225   SmallVector<Expr *, 16> Exprs;
2226   Exprs.reserve(NumVars);
2227   for (unsigned i = 0; i != NumVars; ++i)
2228     Exprs.push_back(Reader->Record.readSubExpr());
2229   C->setVarRefs(Exprs);
2230   Exprs.clear();
2231   for (unsigned i = 0; i != NumVars; ++i)
2232     Exprs.push_back(Reader->Record.readSubExpr());
2233   C->setSourceExprs(Exprs);
2234   Exprs.clear();
2235   for (unsigned i = 0; i != NumVars; ++i)
2236     Exprs.push_back(Reader->Record.readSubExpr());
2237   C->setDestinationExprs(Exprs);
2238   Exprs.clear();
2239   for (unsigned i = 0; i != NumVars; ++i)
2240     Exprs.push_back(Reader->Record.readSubExpr());
2241   C->setAssignmentOps(Exprs);
2242 }
2243 
2244 void OMPClauseReader::VisitOMPCopyprivateClause(OMPCopyprivateClause *C) {
2245   C->setLParenLoc(Reader->ReadSourceLocation());
2246   unsigned NumVars = C->varlist_size();
2247   SmallVector<Expr *, 16> Exprs;
2248   Exprs.reserve(NumVars);
2249   for (unsigned i = 0; i != NumVars; ++i)
2250     Exprs.push_back(Reader->Record.readSubExpr());
2251   C->setVarRefs(Exprs);
2252   Exprs.clear();
2253   for (unsigned i = 0; i != NumVars; ++i)
2254     Exprs.push_back(Reader->Record.readSubExpr());
2255   C->setSourceExprs(Exprs);
2256   Exprs.clear();
2257   for (unsigned i = 0; i != NumVars; ++i)
2258     Exprs.push_back(Reader->Record.readSubExpr());
2259   C->setDestinationExprs(Exprs);
2260   Exprs.clear();
2261   for (unsigned i = 0; i != NumVars; ++i)
2262     Exprs.push_back(Reader->Record.readSubExpr());
2263   C->setAssignmentOps(Exprs);
2264 }
2265 
2266 void OMPClauseReader::VisitOMPFlushClause(OMPFlushClause *C) {
2267   C->setLParenLoc(Reader->ReadSourceLocation());
2268   unsigned NumVars = C->varlist_size();
2269   SmallVector<Expr *, 16> Vars;
2270   Vars.reserve(NumVars);
2271   for (unsigned i = 0; i != NumVars; ++i)
2272     Vars.push_back(Reader->Record.readSubExpr());
2273   C->setVarRefs(Vars);
2274 }
2275 
2276 void OMPClauseReader::VisitOMPDependClause(OMPDependClause *C) {
2277   C->setLParenLoc(Reader->ReadSourceLocation());
2278   C->setDependencyKind(
2279       static_cast<OpenMPDependClauseKind>(Reader->Record.readInt()));
2280   C->setDependencyLoc(Reader->ReadSourceLocation());
2281   C->setColonLoc(Reader->ReadSourceLocation());
2282   unsigned NumVars = C->varlist_size();
2283   SmallVector<Expr *, 16> Vars;
2284   Vars.reserve(NumVars);
2285   for (unsigned i = 0; i != NumVars; ++i)
2286     Vars.push_back(Reader->Record.readSubExpr());
2287   C->setVarRefs(Vars);
2288   C->setCounterValue(Reader->Record.readSubExpr());
2289 }
2290 
2291 void OMPClauseReader::VisitOMPDeviceClause(OMPDeviceClause *C) {
2292   C->setDevice(Reader->Record.readSubExpr());
2293   C->setLParenLoc(Reader->ReadSourceLocation());
2294 }
2295 
2296 void OMPClauseReader::VisitOMPMapClause(OMPMapClause *C) {
2297   C->setLParenLoc(Reader->ReadSourceLocation());
2298   C->setMapTypeModifier(
2299      static_cast<OpenMPMapClauseKind>(Reader->Record.readInt()));
2300   C->setMapType(
2301      static_cast<OpenMPMapClauseKind>(Reader->Record.readInt()));
2302   C->setMapLoc(Reader->ReadSourceLocation());
2303   C->setColonLoc(Reader->ReadSourceLocation());
2304   auto NumVars = C->varlist_size();
2305   auto UniqueDecls = C->getUniqueDeclarationsNum();
2306   auto TotalLists = C->getTotalComponentListNum();
2307   auto TotalComponents = C->getTotalComponentsNum();
2308 
2309   SmallVector<Expr *, 16> Vars;
2310   Vars.reserve(NumVars);
2311   for (unsigned i = 0; i != NumVars; ++i)
2312     Vars.push_back(Reader->Record.readSubExpr());
2313   C->setVarRefs(Vars);
2314 
2315   SmallVector<ValueDecl *, 16> Decls;
2316   Decls.reserve(UniqueDecls);
2317   for (unsigned i = 0; i < UniqueDecls; ++i)
2318     Decls.push_back(Reader->Record.readDeclAs<ValueDecl>());
2319   C->setUniqueDecls(Decls);
2320 
2321   SmallVector<unsigned, 16> ListsPerDecl;
2322   ListsPerDecl.reserve(UniqueDecls);
2323   for (unsigned i = 0; i < UniqueDecls; ++i)
2324     ListsPerDecl.push_back(Reader->Record.readInt());
2325   C->setDeclNumLists(ListsPerDecl);
2326 
2327   SmallVector<unsigned, 32> ListSizes;
2328   ListSizes.reserve(TotalLists);
2329   for (unsigned i = 0; i < TotalLists; ++i)
2330     ListSizes.push_back(Reader->Record.readInt());
2331   C->setComponentListSizes(ListSizes);
2332 
2333   SmallVector<OMPClauseMappableExprCommon::MappableComponent, 32> Components;
2334   Components.reserve(TotalComponents);
2335   for (unsigned i = 0; i < TotalComponents; ++i) {
2336     Expr *AssociatedExpr = Reader->Record.readSubExpr();
2337     ValueDecl *AssociatedDecl = Reader->Record.readDeclAs<ValueDecl>();
2338     Components.push_back(OMPClauseMappableExprCommon::MappableComponent(
2339         AssociatedExpr, AssociatedDecl));
2340   }
2341   C->setComponents(Components, ListSizes);
2342 }
2343 
2344 void OMPClauseReader::VisitOMPNumTeamsClause(OMPNumTeamsClause *C) {
2345   VisitOMPClauseWithPreInit(C);
2346   C->setNumTeams(Reader->Record.readSubExpr());
2347   C->setLParenLoc(Reader->ReadSourceLocation());
2348 }
2349 
2350 void OMPClauseReader::VisitOMPThreadLimitClause(OMPThreadLimitClause *C) {
2351   VisitOMPClauseWithPreInit(C);
2352   C->setThreadLimit(Reader->Record.readSubExpr());
2353   C->setLParenLoc(Reader->ReadSourceLocation());
2354 }
2355 
2356 void OMPClauseReader::VisitOMPPriorityClause(OMPPriorityClause *C) {
2357   C->setPriority(Reader->Record.readSubExpr());
2358   C->setLParenLoc(Reader->ReadSourceLocation());
2359 }
2360 
2361 void OMPClauseReader::VisitOMPGrainsizeClause(OMPGrainsizeClause *C) {
2362   C->setGrainsize(Reader->Record.readSubExpr());
2363   C->setLParenLoc(Reader->ReadSourceLocation());
2364 }
2365 
2366 void OMPClauseReader::VisitOMPNumTasksClause(OMPNumTasksClause *C) {
2367   C->setNumTasks(Reader->Record.readSubExpr());
2368   C->setLParenLoc(Reader->ReadSourceLocation());
2369 }
2370 
2371 void OMPClauseReader::VisitOMPHintClause(OMPHintClause *C) {
2372   C->setHint(Reader->Record.readSubExpr());
2373   C->setLParenLoc(Reader->ReadSourceLocation());
2374 }
2375 
2376 void OMPClauseReader::VisitOMPDistScheduleClause(OMPDistScheduleClause *C) {
2377   VisitOMPClauseWithPreInit(C);
2378   C->setDistScheduleKind(
2379       static_cast<OpenMPDistScheduleClauseKind>(Reader->Record.readInt()));
2380   C->setChunkSize(Reader->Record.readSubExpr());
2381   C->setLParenLoc(Reader->ReadSourceLocation());
2382   C->setDistScheduleKindLoc(Reader->ReadSourceLocation());
2383   C->setCommaLoc(Reader->ReadSourceLocation());
2384 }
2385 
2386 void OMPClauseReader::VisitOMPDefaultmapClause(OMPDefaultmapClause *C) {
2387   C->setDefaultmapKind(
2388        static_cast<OpenMPDefaultmapClauseKind>(Reader->Record.readInt()));
2389   C->setDefaultmapModifier(
2390       static_cast<OpenMPDefaultmapClauseModifier>(Reader->Record.readInt()));
2391   C->setLParenLoc(Reader->ReadSourceLocation());
2392   C->setDefaultmapModifierLoc(Reader->ReadSourceLocation());
2393   C->setDefaultmapKindLoc(Reader->ReadSourceLocation());
2394 }
2395 
2396 void OMPClauseReader::VisitOMPToClause(OMPToClause *C) {
2397   C->setLParenLoc(Reader->ReadSourceLocation());
2398   auto NumVars = C->varlist_size();
2399   auto UniqueDecls = C->getUniqueDeclarationsNum();
2400   auto TotalLists = C->getTotalComponentListNum();
2401   auto TotalComponents = C->getTotalComponentsNum();
2402 
2403   SmallVector<Expr *, 16> Vars;
2404   Vars.reserve(NumVars);
2405   for (unsigned i = 0; i != NumVars; ++i)
2406     Vars.push_back(Reader->Record.readSubExpr());
2407   C->setVarRefs(Vars);
2408 
2409   SmallVector<ValueDecl *, 16> Decls;
2410   Decls.reserve(UniqueDecls);
2411   for (unsigned i = 0; i < UniqueDecls; ++i)
2412     Decls.push_back(Reader->Record.readDeclAs<ValueDecl>());
2413   C->setUniqueDecls(Decls);
2414 
2415   SmallVector<unsigned, 16> ListsPerDecl;
2416   ListsPerDecl.reserve(UniqueDecls);
2417   for (unsigned i = 0; i < UniqueDecls; ++i)
2418     ListsPerDecl.push_back(Reader->Record.readInt());
2419   C->setDeclNumLists(ListsPerDecl);
2420 
2421   SmallVector<unsigned, 32> ListSizes;
2422   ListSizes.reserve(TotalLists);
2423   for (unsigned i = 0; i < TotalLists; ++i)
2424     ListSizes.push_back(Reader->Record.readInt());
2425   C->setComponentListSizes(ListSizes);
2426 
2427   SmallVector<OMPClauseMappableExprCommon::MappableComponent, 32> Components;
2428   Components.reserve(TotalComponents);
2429   for (unsigned i = 0; i < TotalComponents; ++i) {
2430     Expr *AssociatedExpr = Reader->Record.readSubExpr();
2431     ValueDecl *AssociatedDecl = Reader->Record.readDeclAs<ValueDecl>();
2432     Components.push_back(OMPClauseMappableExprCommon::MappableComponent(
2433         AssociatedExpr, AssociatedDecl));
2434   }
2435   C->setComponents(Components, ListSizes);
2436 }
2437 
2438 void OMPClauseReader::VisitOMPFromClause(OMPFromClause *C) {
2439   C->setLParenLoc(Reader->ReadSourceLocation());
2440   auto NumVars = C->varlist_size();
2441   auto UniqueDecls = C->getUniqueDeclarationsNum();
2442   auto TotalLists = C->getTotalComponentListNum();
2443   auto TotalComponents = C->getTotalComponentsNum();
2444 
2445   SmallVector<Expr *, 16> Vars;
2446   Vars.reserve(NumVars);
2447   for (unsigned i = 0; i != NumVars; ++i)
2448     Vars.push_back(Reader->Record.readSubExpr());
2449   C->setVarRefs(Vars);
2450 
2451   SmallVector<ValueDecl *, 16> Decls;
2452   Decls.reserve(UniqueDecls);
2453   for (unsigned i = 0; i < UniqueDecls; ++i)
2454     Decls.push_back(Reader->Record.readDeclAs<ValueDecl>());
2455   C->setUniqueDecls(Decls);
2456 
2457   SmallVector<unsigned, 16> ListsPerDecl;
2458   ListsPerDecl.reserve(UniqueDecls);
2459   for (unsigned i = 0; i < UniqueDecls; ++i)
2460     ListsPerDecl.push_back(Reader->Record.readInt());
2461   C->setDeclNumLists(ListsPerDecl);
2462 
2463   SmallVector<unsigned, 32> ListSizes;
2464   ListSizes.reserve(TotalLists);
2465   for (unsigned i = 0; i < TotalLists; ++i)
2466     ListSizes.push_back(Reader->Record.readInt());
2467   C->setComponentListSizes(ListSizes);
2468 
2469   SmallVector<OMPClauseMappableExprCommon::MappableComponent, 32> Components;
2470   Components.reserve(TotalComponents);
2471   for (unsigned i = 0; i < TotalComponents; ++i) {
2472     Expr *AssociatedExpr = Reader->Record.readSubExpr();
2473     ValueDecl *AssociatedDecl = Reader->Record.readDeclAs<ValueDecl>();
2474     Components.push_back(OMPClauseMappableExprCommon::MappableComponent(
2475         AssociatedExpr, AssociatedDecl));
2476   }
2477   C->setComponents(Components, ListSizes);
2478 }
2479 
2480 void OMPClauseReader::VisitOMPUseDevicePtrClause(OMPUseDevicePtrClause *C) {
2481   C->setLParenLoc(Reader->ReadSourceLocation());
2482   auto NumVars = C->varlist_size();
2483   auto UniqueDecls = C->getUniqueDeclarationsNum();
2484   auto TotalLists = C->getTotalComponentListNum();
2485   auto TotalComponents = C->getTotalComponentsNum();
2486 
2487   SmallVector<Expr *, 16> Vars;
2488   Vars.reserve(NumVars);
2489   for (unsigned i = 0; i != NumVars; ++i)
2490     Vars.push_back(Reader->Record.readSubExpr());
2491   C->setVarRefs(Vars);
2492   Vars.clear();
2493   for (unsigned i = 0; i != NumVars; ++i)
2494     Vars.push_back(Reader->Record.readSubExpr());
2495   C->setPrivateCopies(Vars);
2496   Vars.clear();
2497   for (unsigned i = 0; i != NumVars; ++i)
2498     Vars.push_back(Reader->Record.readSubExpr());
2499   C->setInits(Vars);
2500 
2501   SmallVector<ValueDecl *, 16> Decls;
2502   Decls.reserve(UniqueDecls);
2503   for (unsigned i = 0; i < UniqueDecls; ++i)
2504     Decls.push_back(Reader->Record.readDeclAs<ValueDecl>());
2505   C->setUniqueDecls(Decls);
2506 
2507   SmallVector<unsigned, 16> ListsPerDecl;
2508   ListsPerDecl.reserve(UniqueDecls);
2509   for (unsigned i = 0; i < UniqueDecls; ++i)
2510     ListsPerDecl.push_back(Reader->Record.readInt());
2511   C->setDeclNumLists(ListsPerDecl);
2512 
2513   SmallVector<unsigned, 32> ListSizes;
2514   ListSizes.reserve(TotalLists);
2515   for (unsigned i = 0; i < TotalLists; ++i)
2516     ListSizes.push_back(Reader->Record.readInt());
2517   C->setComponentListSizes(ListSizes);
2518 
2519   SmallVector<OMPClauseMappableExprCommon::MappableComponent, 32> Components;
2520   Components.reserve(TotalComponents);
2521   for (unsigned i = 0; i < TotalComponents; ++i) {
2522     Expr *AssociatedExpr = Reader->Record.readSubExpr();
2523     ValueDecl *AssociatedDecl = Reader->Record.readDeclAs<ValueDecl>();
2524     Components.push_back(OMPClauseMappableExprCommon::MappableComponent(
2525         AssociatedExpr, AssociatedDecl));
2526   }
2527   C->setComponents(Components, ListSizes);
2528 }
2529 
2530 void OMPClauseReader::VisitOMPIsDevicePtrClause(OMPIsDevicePtrClause *C) {
2531   C->setLParenLoc(Reader->ReadSourceLocation());
2532   auto NumVars = C->varlist_size();
2533   auto UniqueDecls = C->getUniqueDeclarationsNum();
2534   auto TotalLists = C->getTotalComponentListNum();
2535   auto TotalComponents = C->getTotalComponentsNum();
2536 
2537   SmallVector<Expr *, 16> Vars;
2538   Vars.reserve(NumVars);
2539   for (unsigned i = 0; i != NumVars; ++i)
2540     Vars.push_back(Reader->Record.readSubExpr());
2541   C->setVarRefs(Vars);
2542   Vars.clear();
2543 
2544   SmallVector<ValueDecl *, 16> Decls;
2545   Decls.reserve(UniqueDecls);
2546   for (unsigned i = 0; i < UniqueDecls; ++i)
2547     Decls.push_back(Reader->Record.readDeclAs<ValueDecl>());
2548   C->setUniqueDecls(Decls);
2549 
2550   SmallVector<unsigned, 16> ListsPerDecl;
2551   ListsPerDecl.reserve(UniqueDecls);
2552   for (unsigned i = 0; i < UniqueDecls; ++i)
2553     ListsPerDecl.push_back(Reader->Record.readInt());
2554   C->setDeclNumLists(ListsPerDecl);
2555 
2556   SmallVector<unsigned, 32> ListSizes;
2557   ListSizes.reserve(TotalLists);
2558   for (unsigned i = 0; i < TotalLists; ++i)
2559     ListSizes.push_back(Reader->Record.readInt());
2560   C->setComponentListSizes(ListSizes);
2561 
2562   SmallVector<OMPClauseMappableExprCommon::MappableComponent, 32> Components;
2563   Components.reserve(TotalComponents);
2564   for (unsigned i = 0; i < TotalComponents; ++i) {
2565     Expr *AssociatedExpr = Reader->Record.readSubExpr();
2566     ValueDecl *AssociatedDecl = Reader->Record.readDeclAs<ValueDecl>();
2567     Components.push_back(OMPClauseMappableExprCommon::MappableComponent(
2568         AssociatedExpr, AssociatedDecl));
2569   }
2570   C->setComponents(Components, ListSizes);
2571 }
2572 
2573 //===----------------------------------------------------------------------===//
2574 // OpenMP Directives.
2575 //===----------------------------------------------------------------------===//
2576 void ASTStmtReader::VisitOMPExecutableDirective(OMPExecutableDirective *E) {
2577   E->setLocStart(ReadSourceLocation());
2578   E->setLocEnd(ReadSourceLocation());
2579   OMPClauseReader ClauseReader(this, Record);
2580   SmallVector<OMPClause *, 5> Clauses;
2581   for (unsigned i = 0; i < E->getNumClauses(); ++i)
2582     Clauses.push_back(ClauseReader.readClause());
2583   E->setClauses(Clauses);
2584   if (E->hasAssociatedStmt())
2585     E->setAssociatedStmt(Record.readSubStmt());
2586 }
2587 
2588 void ASTStmtReader::VisitOMPLoopDirective(OMPLoopDirective *D) {
2589   VisitStmt(D);
2590   // Two fields (NumClauses and CollapsedNum) were read in ReadStmtFromStream.
2591   Record.skipInts(2);
2592   VisitOMPExecutableDirective(D);
2593   D->setIterationVariable(Record.readSubExpr());
2594   D->setLastIteration(Record.readSubExpr());
2595   D->setCalcLastIteration(Record.readSubExpr());
2596   D->setPreCond(Record.readSubExpr());
2597   D->setCond(Record.readSubExpr());
2598   D->setInit(Record.readSubExpr());
2599   D->setInc(Record.readSubExpr());
2600   D->setPreInits(Record.readSubStmt());
2601   if (isOpenMPWorksharingDirective(D->getDirectiveKind()) ||
2602       isOpenMPTaskLoopDirective(D->getDirectiveKind()) ||
2603       isOpenMPDistributeDirective(D->getDirectiveKind())) {
2604     D->setIsLastIterVariable(Record.readSubExpr());
2605     D->setLowerBoundVariable(Record.readSubExpr());
2606     D->setUpperBoundVariable(Record.readSubExpr());
2607     D->setStrideVariable(Record.readSubExpr());
2608     D->setEnsureUpperBound(Record.readSubExpr());
2609     D->setNextLowerBound(Record.readSubExpr());
2610     D->setNextUpperBound(Record.readSubExpr());
2611     D->setNumIterations(Record.readSubExpr());
2612   }
2613   if (isOpenMPLoopBoundSharingDirective(D->getDirectiveKind())) {
2614     D->setPrevLowerBoundVariable(Record.readSubExpr());
2615     D->setPrevUpperBoundVariable(Record.readSubExpr());
2616     D->setDistInc(Record.readSubExpr());
2617     D->setPrevEnsureUpperBound(Record.readSubExpr());
2618     D->setCombinedLowerBoundVariable(Record.readSubExpr());
2619     D->setCombinedUpperBoundVariable(Record.readSubExpr());
2620     D->setCombinedEnsureUpperBound(Record.readSubExpr());
2621     D->setCombinedInit(Record.readSubExpr());
2622     D->setCombinedCond(Record.readSubExpr());
2623     D->setCombinedNextLowerBound(Record.readSubExpr());
2624     D->setCombinedNextUpperBound(Record.readSubExpr());
2625   }
2626   SmallVector<Expr *, 4> Sub;
2627   unsigned CollapsedNum = D->getCollapsedNumber();
2628   Sub.reserve(CollapsedNum);
2629   for (unsigned i = 0; i < CollapsedNum; ++i)
2630     Sub.push_back(Record.readSubExpr());
2631   D->setCounters(Sub);
2632   Sub.clear();
2633   for (unsigned i = 0; i < CollapsedNum; ++i)
2634     Sub.push_back(Record.readSubExpr());
2635   D->setPrivateCounters(Sub);
2636   Sub.clear();
2637   for (unsigned i = 0; i < CollapsedNum; ++i)
2638     Sub.push_back(Record.readSubExpr());
2639   D->setInits(Sub);
2640   Sub.clear();
2641   for (unsigned i = 0; i < CollapsedNum; ++i)
2642     Sub.push_back(Record.readSubExpr());
2643   D->setUpdates(Sub);
2644   Sub.clear();
2645   for (unsigned i = 0; i < CollapsedNum; ++i)
2646     Sub.push_back(Record.readSubExpr());
2647   D->setFinals(Sub);
2648 }
2649 
2650 void ASTStmtReader::VisitOMPParallelDirective(OMPParallelDirective *D) {
2651   VisitStmt(D);
2652   // The NumClauses field was read in ReadStmtFromStream.
2653   Record.skipInts(1);
2654   VisitOMPExecutableDirective(D);
2655   D->setHasCancel(Record.readInt());
2656 }
2657 
2658 void ASTStmtReader::VisitOMPSimdDirective(OMPSimdDirective *D) {
2659   VisitOMPLoopDirective(D);
2660 }
2661 
2662 void ASTStmtReader::VisitOMPForDirective(OMPForDirective *D) {
2663   VisitOMPLoopDirective(D);
2664   D->setHasCancel(Record.readInt());
2665 }
2666 
2667 void ASTStmtReader::VisitOMPForSimdDirective(OMPForSimdDirective *D) {
2668   VisitOMPLoopDirective(D);
2669 }
2670 
2671 void ASTStmtReader::VisitOMPSectionsDirective(OMPSectionsDirective *D) {
2672   VisitStmt(D);
2673   // The NumClauses field was read in ReadStmtFromStream.
2674   Record.skipInts(1);
2675   VisitOMPExecutableDirective(D);
2676   D->setHasCancel(Record.readInt());
2677 }
2678 
2679 void ASTStmtReader::VisitOMPSectionDirective(OMPSectionDirective *D) {
2680   VisitStmt(D);
2681   VisitOMPExecutableDirective(D);
2682   D->setHasCancel(Record.readInt());
2683 }
2684 
2685 void ASTStmtReader::VisitOMPSingleDirective(OMPSingleDirective *D) {
2686   VisitStmt(D);
2687   // The NumClauses field was read in ReadStmtFromStream.
2688   Record.skipInts(1);
2689   VisitOMPExecutableDirective(D);
2690 }
2691 
2692 void ASTStmtReader::VisitOMPMasterDirective(OMPMasterDirective *D) {
2693   VisitStmt(D);
2694   VisitOMPExecutableDirective(D);
2695 }
2696 
2697 void ASTStmtReader::VisitOMPCriticalDirective(OMPCriticalDirective *D) {
2698   VisitStmt(D);
2699   // The NumClauses field was read in ReadStmtFromStream.
2700   Record.skipInts(1);
2701   VisitOMPExecutableDirective(D);
2702   ReadDeclarationNameInfo(D->DirName);
2703 }
2704 
2705 void ASTStmtReader::VisitOMPParallelForDirective(OMPParallelForDirective *D) {
2706   VisitOMPLoopDirective(D);
2707   D->setHasCancel(Record.readInt());
2708 }
2709 
2710 void ASTStmtReader::VisitOMPParallelForSimdDirective(
2711     OMPParallelForSimdDirective *D) {
2712   VisitOMPLoopDirective(D);
2713 }
2714 
2715 void ASTStmtReader::VisitOMPParallelSectionsDirective(
2716     OMPParallelSectionsDirective *D) {
2717   VisitStmt(D);
2718   // The NumClauses field was read in ReadStmtFromStream.
2719   Record.skipInts(1);
2720   VisitOMPExecutableDirective(D);
2721   D->setHasCancel(Record.readInt());
2722 }
2723 
2724 void ASTStmtReader::VisitOMPTaskDirective(OMPTaskDirective *D) {
2725   VisitStmt(D);
2726   // The NumClauses field was read in ReadStmtFromStream.
2727   Record.skipInts(1);
2728   VisitOMPExecutableDirective(D);
2729   D->setHasCancel(Record.readInt());
2730 }
2731 
2732 void ASTStmtReader::VisitOMPTaskyieldDirective(OMPTaskyieldDirective *D) {
2733   VisitStmt(D);
2734   VisitOMPExecutableDirective(D);
2735 }
2736 
2737 void ASTStmtReader::VisitOMPBarrierDirective(OMPBarrierDirective *D) {
2738   VisitStmt(D);
2739   VisitOMPExecutableDirective(D);
2740 }
2741 
2742 void ASTStmtReader::VisitOMPTaskwaitDirective(OMPTaskwaitDirective *D) {
2743   VisitStmt(D);
2744   VisitOMPExecutableDirective(D);
2745 }
2746 
2747 void ASTStmtReader::VisitOMPTaskgroupDirective(OMPTaskgroupDirective *D) {
2748   VisitStmt(D);
2749   // The NumClauses field was read in ReadStmtFromStream.
2750   Record.skipInts(1);
2751   VisitOMPExecutableDirective(D);
2752 }
2753 
2754 void ASTStmtReader::VisitOMPFlushDirective(OMPFlushDirective *D) {
2755   VisitStmt(D);
2756   // The NumClauses field was read in ReadStmtFromStream.
2757   Record.skipInts(1);
2758   VisitOMPExecutableDirective(D);
2759 }
2760 
2761 void ASTStmtReader::VisitOMPOrderedDirective(OMPOrderedDirective *D) {
2762   VisitStmt(D);
2763   // The NumClauses field was read in ReadStmtFromStream.
2764   Record.skipInts(1);
2765   VisitOMPExecutableDirective(D);
2766 }
2767 
2768 void ASTStmtReader::VisitOMPAtomicDirective(OMPAtomicDirective *D) {
2769   VisitStmt(D);
2770   // The NumClauses field was read in ReadStmtFromStream.
2771   Record.skipInts(1);
2772   VisitOMPExecutableDirective(D);
2773   D->setX(Record.readSubExpr());
2774   D->setV(Record.readSubExpr());
2775   D->setExpr(Record.readSubExpr());
2776   D->setUpdateExpr(Record.readSubExpr());
2777   D->IsXLHSInRHSPart = Record.readInt() != 0;
2778   D->IsPostfixUpdate = Record.readInt() != 0;
2779 }
2780 
2781 void ASTStmtReader::VisitOMPTargetDirective(OMPTargetDirective *D) {
2782   VisitStmt(D);
2783   // The NumClauses field was read in ReadStmtFromStream.
2784   Record.skipInts(1);
2785   VisitOMPExecutableDirective(D);
2786 }
2787 
2788 void ASTStmtReader::VisitOMPTargetDataDirective(OMPTargetDataDirective *D) {
2789   VisitStmt(D);
2790   Record.skipInts(1);
2791   VisitOMPExecutableDirective(D);
2792 }
2793 
2794 void ASTStmtReader::VisitOMPTargetEnterDataDirective(
2795     OMPTargetEnterDataDirective *D) {
2796   VisitStmt(D);
2797   Record.skipInts(1);
2798   VisitOMPExecutableDirective(D);
2799 }
2800 
2801 void ASTStmtReader::VisitOMPTargetExitDataDirective(
2802     OMPTargetExitDataDirective *D) {
2803   VisitStmt(D);
2804   Record.skipInts(1);
2805   VisitOMPExecutableDirective(D);
2806 }
2807 
2808 void ASTStmtReader::VisitOMPTargetParallelDirective(
2809     OMPTargetParallelDirective *D) {
2810   VisitStmt(D);
2811   Record.skipInts(1);
2812   VisitOMPExecutableDirective(D);
2813 }
2814 
2815 void ASTStmtReader::VisitOMPTargetParallelForDirective(
2816     OMPTargetParallelForDirective *D) {
2817   VisitOMPLoopDirective(D);
2818   D->setHasCancel(Record.readInt());
2819 }
2820 
2821 void ASTStmtReader::VisitOMPTeamsDirective(OMPTeamsDirective *D) {
2822   VisitStmt(D);
2823   // The NumClauses field was read in ReadStmtFromStream.
2824   Record.skipInts(1);
2825   VisitOMPExecutableDirective(D);
2826 }
2827 
2828 void ASTStmtReader::VisitOMPCancellationPointDirective(
2829     OMPCancellationPointDirective *D) {
2830   VisitStmt(D);
2831   VisitOMPExecutableDirective(D);
2832   D->setCancelRegion(static_cast<OpenMPDirectiveKind>(Record.readInt()));
2833 }
2834 
2835 void ASTStmtReader::VisitOMPCancelDirective(OMPCancelDirective *D) {
2836   VisitStmt(D);
2837   // The NumClauses field was read in ReadStmtFromStream.
2838   Record.skipInts(1);
2839   VisitOMPExecutableDirective(D);
2840   D->setCancelRegion(static_cast<OpenMPDirectiveKind>(Record.readInt()));
2841 }
2842 
2843 void ASTStmtReader::VisitOMPTaskLoopDirective(OMPTaskLoopDirective *D) {
2844   VisitOMPLoopDirective(D);
2845 }
2846 
2847 void ASTStmtReader::VisitOMPTaskLoopSimdDirective(OMPTaskLoopSimdDirective *D) {
2848   VisitOMPLoopDirective(D);
2849 }
2850 
2851 void ASTStmtReader::VisitOMPDistributeDirective(OMPDistributeDirective *D) {
2852   VisitOMPLoopDirective(D);
2853 }
2854 
2855 void ASTStmtReader::VisitOMPTargetUpdateDirective(OMPTargetUpdateDirective *D) {
2856   VisitStmt(D);
2857   Record.skipInts(1);
2858   VisitOMPExecutableDirective(D);
2859 }
2860 void ASTStmtReader::VisitOMPDistributeParallelForDirective(
2861     OMPDistributeParallelForDirective *D) {
2862   VisitOMPLoopDirective(D);
2863 }
2864 
2865 void ASTStmtReader::VisitOMPDistributeParallelForSimdDirective(
2866     OMPDistributeParallelForSimdDirective *D) {
2867   VisitOMPLoopDirective(D);
2868 }
2869 
2870 void ASTStmtReader::VisitOMPDistributeSimdDirective(
2871     OMPDistributeSimdDirective *D) {
2872   VisitOMPLoopDirective(D);
2873 }
2874 
2875 void ASTStmtReader::VisitOMPTargetParallelForSimdDirective(
2876     OMPTargetParallelForSimdDirective *D) {
2877   VisitOMPLoopDirective(D);
2878 }
2879 
2880 void ASTStmtReader::VisitOMPTargetSimdDirective(OMPTargetSimdDirective *D) {
2881   VisitOMPLoopDirective(D);
2882 }
2883 
2884 void ASTStmtReader::VisitOMPTeamsDistributeDirective(
2885     OMPTeamsDistributeDirective *D) {
2886   VisitOMPLoopDirective(D);
2887 }
2888 
2889 void ASTStmtReader::VisitOMPTeamsDistributeSimdDirective(
2890     OMPTeamsDistributeSimdDirective *D) {
2891   VisitOMPLoopDirective(D);
2892 }
2893 
2894 void ASTStmtReader::VisitOMPTeamsDistributeParallelForSimdDirective(
2895     OMPTeamsDistributeParallelForSimdDirective *D) {
2896   VisitOMPLoopDirective(D);
2897 }
2898 
2899 void ASTStmtReader::VisitOMPTeamsDistributeParallelForDirective(
2900     OMPTeamsDistributeParallelForDirective *D) {
2901   VisitOMPLoopDirective(D);
2902 }
2903 
2904 void ASTStmtReader::VisitOMPTargetTeamsDirective(OMPTargetTeamsDirective *D) {
2905   VisitStmt(D);
2906   // The NumClauses field was read in ReadStmtFromStream.
2907   Record.skipInts(1);
2908   VisitOMPExecutableDirective(D);
2909 }
2910 
2911 void ASTStmtReader::VisitOMPTargetTeamsDistributeDirective(
2912     OMPTargetTeamsDistributeDirective *D) {
2913   VisitOMPLoopDirective(D);
2914 }
2915 
2916 void ASTStmtReader::VisitOMPTargetTeamsDistributeParallelForDirective(
2917     OMPTargetTeamsDistributeParallelForDirective *D) {
2918   VisitOMPLoopDirective(D);
2919 }
2920 
2921 void ASTStmtReader::VisitOMPTargetTeamsDistributeParallelForSimdDirective(
2922     OMPTargetTeamsDistributeParallelForSimdDirective *D) {
2923   VisitOMPLoopDirective(D);
2924 }
2925 
2926 void ASTStmtReader::VisitOMPTargetTeamsDistributeSimdDirective(
2927     OMPTargetTeamsDistributeSimdDirective *D) {
2928   VisitOMPLoopDirective(D);
2929 }
2930 
2931 //===----------------------------------------------------------------------===//
2932 // ASTReader Implementation
2933 //===----------------------------------------------------------------------===//
2934 
2935 Stmt *ASTReader::ReadStmt(ModuleFile &F) {
2936   switch (ReadingKind) {
2937   case Read_None:
2938     llvm_unreachable("should not call this when not reading anything");
2939   case Read_Decl:
2940   case Read_Type:
2941     return ReadStmtFromStream(F);
2942   case Read_Stmt:
2943     return ReadSubStmt();
2944   }
2945 
2946   llvm_unreachable("ReadingKind not set ?");
2947 }
2948 
2949 Expr *ASTReader::ReadExpr(ModuleFile &F) {
2950   return cast_or_null<Expr>(ReadStmt(F));
2951 }
2952 
2953 Expr *ASTReader::ReadSubExpr() {
2954   return cast_or_null<Expr>(ReadSubStmt());
2955 }
2956 
2957 // Within the bitstream, expressions are stored in Reverse Polish
2958 // Notation, with each of the subexpressions preceding the
2959 // expression they are stored in. Subexpressions are stored from last to first.
2960 // To evaluate expressions, we continue reading expressions and placing them on
2961 // the stack, with expressions having operands removing those operands from the
2962 // stack. Evaluation terminates when we see a STMT_STOP record, and
2963 // the single remaining expression on the stack is our result.
2964 Stmt *ASTReader::ReadStmtFromStream(ModuleFile &F) {
2965 
2966   ReadingKindTracker ReadingKind(Read_Stmt, *this);
2967   llvm::BitstreamCursor &Cursor = F.DeclsCursor;
2968 
2969   // Map of offset to previously deserialized stmt. The offset points
2970   // just after the stmt record.
2971   llvm::DenseMap<uint64_t, Stmt *> StmtEntries;
2972 
2973 #ifndef NDEBUG
2974   unsigned PrevNumStmts = StmtStack.size();
2975 #endif
2976 
2977   ASTRecordReader Record(*this, F);
2978   ASTStmtReader Reader(Record, Cursor);
2979   Stmt::EmptyShell Empty;
2980 
2981   while (true) {
2982     llvm::BitstreamEntry Entry = Cursor.advanceSkippingSubblocks();
2983 
2984     switch (Entry.Kind) {
2985     case llvm::BitstreamEntry::SubBlock: // Handled for us already.
2986     case llvm::BitstreamEntry::Error:
2987       Error("malformed block record in AST file");
2988       return nullptr;
2989     case llvm::BitstreamEntry::EndBlock:
2990       goto Done;
2991     case llvm::BitstreamEntry::Record:
2992       // The interesting case.
2993       break;
2994     }
2995 
2996     ASTContext &Context = getContext();
2997     Stmt *S = nullptr;
2998     bool Finished = false;
2999     bool IsStmtReference = false;
3000     switch ((StmtCode)Record.readRecord(Cursor, Entry.ID)) {
3001     case STMT_STOP:
3002       Finished = true;
3003       break;
3004 
3005     case STMT_REF_PTR:
3006       IsStmtReference = true;
3007       assert(StmtEntries.find(Record[0]) != StmtEntries.end() &&
3008              "No stmt was recorded for this offset reference!");
3009       S = StmtEntries[Record.readInt()];
3010       break;
3011 
3012     case STMT_NULL_PTR:
3013       S = nullptr;
3014       break;
3015 
3016     case STMT_NULL:
3017       S = new (Context) NullStmt(Empty);
3018       break;
3019 
3020     case STMT_COMPOUND:
3021       S = new (Context) CompoundStmt(Empty);
3022       break;
3023 
3024     case STMT_CASE:
3025       S = new (Context) CaseStmt(Empty);
3026       break;
3027 
3028     case STMT_DEFAULT:
3029       S = new (Context) DefaultStmt(Empty);
3030       break;
3031 
3032     case STMT_LABEL:
3033       S = new (Context) LabelStmt(Empty);
3034       break;
3035 
3036     case STMT_ATTRIBUTED:
3037       S = AttributedStmt::CreateEmpty(
3038         Context,
3039         /*NumAttrs*/Record[ASTStmtReader::NumStmtFields]);
3040       break;
3041 
3042     case STMT_IF:
3043       S = new (Context) IfStmt(Empty);
3044       break;
3045 
3046     case STMT_SWITCH:
3047       S = new (Context) SwitchStmt(Empty);
3048       break;
3049 
3050     case STMT_WHILE:
3051       S = new (Context) WhileStmt(Empty);
3052       break;
3053 
3054     case STMT_DO:
3055       S = new (Context) DoStmt(Empty);
3056       break;
3057 
3058     case STMT_FOR:
3059       S = new (Context) ForStmt(Empty);
3060       break;
3061 
3062     case STMT_GOTO:
3063       S = new (Context) GotoStmt(Empty);
3064       break;
3065 
3066     case STMT_INDIRECT_GOTO:
3067       S = new (Context) IndirectGotoStmt(Empty);
3068       break;
3069 
3070     case STMT_CONTINUE:
3071       S = new (Context) ContinueStmt(Empty);
3072       break;
3073 
3074     case STMT_BREAK:
3075       S = new (Context) BreakStmt(Empty);
3076       break;
3077 
3078     case STMT_RETURN:
3079       S = new (Context) ReturnStmt(Empty);
3080       break;
3081 
3082     case STMT_DECL:
3083       S = new (Context) DeclStmt(Empty);
3084       break;
3085 
3086     case STMT_GCCASM:
3087       S = new (Context) GCCAsmStmt(Empty);
3088       break;
3089 
3090     case STMT_MSASM:
3091       S = new (Context) MSAsmStmt(Empty);
3092       break;
3093 
3094     case STMT_CAPTURED:
3095       S = CapturedStmt::CreateDeserialized(Context,
3096                                            Record[ASTStmtReader::NumStmtFields]);
3097       break;
3098 
3099     case EXPR_PREDEFINED:
3100       S = new (Context) PredefinedExpr(Empty);
3101       break;
3102 
3103     case EXPR_DECL_REF:
3104       S = DeclRefExpr::CreateEmpty(
3105         Context,
3106         /*HasQualifier=*/Record[ASTStmtReader::NumExprFields],
3107         /*HasFoundDecl=*/Record[ASTStmtReader::NumExprFields + 1],
3108         /*HasTemplateKWAndArgsInfo=*/Record[ASTStmtReader::NumExprFields + 2],
3109         /*NumTemplateArgs=*/Record[ASTStmtReader::NumExprFields + 2] ?
3110           Record[ASTStmtReader::NumExprFields + 5] : 0);
3111       break;
3112 
3113     case EXPR_INTEGER_LITERAL:
3114       S = IntegerLiteral::Create(Context, Empty);
3115       break;
3116 
3117     case EXPR_FLOATING_LITERAL:
3118       S = FloatingLiteral::Create(Context, Empty);
3119       break;
3120 
3121     case EXPR_IMAGINARY_LITERAL:
3122       S = new (Context) ImaginaryLiteral(Empty);
3123       break;
3124 
3125     case EXPR_STRING_LITERAL:
3126       S = StringLiteral::CreateEmpty(Context,
3127                                      Record[ASTStmtReader::NumExprFields + 1]);
3128       break;
3129 
3130     case EXPR_CHARACTER_LITERAL:
3131       S = new (Context) CharacterLiteral(Empty);
3132       break;
3133 
3134     case EXPR_PAREN:
3135       S = new (Context) ParenExpr(Empty);
3136       break;
3137 
3138     case EXPR_PAREN_LIST:
3139       S = new (Context) ParenListExpr(Empty);
3140       break;
3141 
3142     case EXPR_UNARY_OPERATOR:
3143       S = new (Context) UnaryOperator(Empty);
3144       break;
3145 
3146     case EXPR_OFFSETOF:
3147       S = OffsetOfExpr::CreateEmpty(Context,
3148                                     Record[ASTStmtReader::NumExprFields],
3149                                     Record[ASTStmtReader::NumExprFields + 1]);
3150       break;
3151 
3152     case EXPR_SIZEOF_ALIGN_OF:
3153       S = new (Context) UnaryExprOrTypeTraitExpr(Empty);
3154       break;
3155 
3156     case EXPR_ARRAY_SUBSCRIPT:
3157       S = new (Context) ArraySubscriptExpr(Empty);
3158       break;
3159 
3160     case EXPR_OMP_ARRAY_SECTION:
3161       S = new (Context) OMPArraySectionExpr(Empty);
3162       break;
3163 
3164     case EXPR_CALL:
3165       S = new (Context) CallExpr(Context, Stmt::CallExprClass, Empty);
3166       break;
3167 
3168     case EXPR_MEMBER: {
3169       // We load everything here and fully initialize it at creation.
3170       // That way we can use MemberExpr::Create and don't have to duplicate its
3171       // logic with a MemberExpr::CreateEmpty.
3172 
3173       assert(Record.getIdx() == 0);
3174       NestedNameSpecifierLoc QualifierLoc;
3175       if (Record.readInt()) { // HasQualifier.
3176         QualifierLoc = Record.readNestedNameSpecifierLoc();
3177       }
3178 
3179       SourceLocation TemplateKWLoc;
3180       TemplateArgumentListInfo ArgInfo;
3181       bool HasTemplateKWAndArgsInfo = Record.readInt();
3182       if (HasTemplateKWAndArgsInfo) {
3183         TemplateKWLoc = Record.readSourceLocation();
3184         unsigned NumTemplateArgs = Record.readInt();
3185         ArgInfo.setLAngleLoc(Record.readSourceLocation());
3186         ArgInfo.setRAngleLoc(Record.readSourceLocation());
3187         for (unsigned i = 0; i != NumTemplateArgs; ++i)
3188           ArgInfo.addArgument(Record.readTemplateArgumentLoc());
3189       }
3190 
3191       bool HadMultipleCandidates = Record.readInt();
3192 
3193       NamedDecl *FoundD = Record.readDeclAs<NamedDecl>();
3194       AccessSpecifier AS = (AccessSpecifier)Record.readInt();
3195       DeclAccessPair FoundDecl = DeclAccessPair::make(FoundD, AS);
3196 
3197       QualType T = Record.readType();
3198       ExprValueKind VK = static_cast<ExprValueKind>(Record.readInt());
3199       ExprObjectKind OK = static_cast<ExprObjectKind>(Record.readInt());
3200       Expr *Base = ReadSubExpr();
3201       ValueDecl *MemberD = Record.readDeclAs<ValueDecl>();
3202       SourceLocation MemberLoc = Record.readSourceLocation();
3203       DeclarationNameInfo MemberNameInfo(MemberD->getDeclName(), MemberLoc);
3204       bool IsArrow = Record.readInt();
3205       SourceLocation OperatorLoc = Record.readSourceLocation();
3206 
3207       S = MemberExpr::Create(Context, Base, IsArrow, OperatorLoc, QualifierLoc,
3208                              TemplateKWLoc, MemberD, FoundDecl, MemberNameInfo,
3209                              HasTemplateKWAndArgsInfo ? &ArgInfo : nullptr, T,
3210                              VK, OK);
3211       Record.readDeclarationNameLoc(cast<MemberExpr>(S)->MemberDNLoc,
3212                                     MemberD->getDeclName());
3213       if (HadMultipleCandidates)
3214         cast<MemberExpr>(S)->setHadMultipleCandidates(true);
3215       break;
3216     }
3217 
3218     case EXPR_BINARY_OPERATOR:
3219       S = new (Context) BinaryOperator(Empty);
3220       break;
3221 
3222     case EXPR_COMPOUND_ASSIGN_OPERATOR:
3223       S = new (Context) CompoundAssignOperator(Empty);
3224       break;
3225 
3226     case EXPR_CONDITIONAL_OPERATOR:
3227       S = new (Context) ConditionalOperator(Empty);
3228       break;
3229 
3230     case EXPR_BINARY_CONDITIONAL_OPERATOR:
3231       S = new (Context) BinaryConditionalOperator(Empty);
3232       break;
3233 
3234     case EXPR_IMPLICIT_CAST:
3235       S = ImplicitCastExpr::CreateEmpty(Context,
3236                        /*PathSize*/ Record[ASTStmtReader::NumExprFields]);
3237       break;
3238 
3239     case EXPR_CSTYLE_CAST:
3240       S = CStyleCastExpr::CreateEmpty(Context,
3241                        /*PathSize*/ Record[ASTStmtReader::NumExprFields]);
3242       break;
3243 
3244     case EXPR_COMPOUND_LITERAL:
3245       S = new (Context) CompoundLiteralExpr(Empty);
3246       break;
3247 
3248     case EXPR_EXT_VECTOR_ELEMENT:
3249       S = new (Context) ExtVectorElementExpr(Empty);
3250       break;
3251 
3252     case EXPR_INIT_LIST:
3253       S = new (Context) InitListExpr(Empty);
3254       break;
3255 
3256     case EXPR_DESIGNATED_INIT:
3257       S = DesignatedInitExpr::CreateEmpty(Context,
3258                                      Record[ASTStmtReader::NumExprFields] - 1);
3259 
3260       break;
3261 
3262     case EXPR_DESIGNATED_INIT_UPDATE:
3263       S = new (Context) DesignatedInitUpdateExpr(Empty);
3264       break;
3265 
3266     case EXPR_IMPLICIT_VALUE_INIT:
3267       S = new (Context) ImplicitValueInitExpr(Empty);
3268       break;
3269 
3270     case EXPR_NO_INIT:
3271       S = new (Context) NoInitExpr(Empty);
3272       break;
3273 
3274     case EXPR_ARRAY_INIT_LOOP:
3275       S = new (Context) ArrayInitLoopExpr(Empty);
3276       break;
3277 
3278     case EXPR_ARRAY_INIT_INDEX:
3279       S = new (Context) ArrayInitIndexExpr(Empty);
3280       break;
3281 
3282     case EXPR_VA_ARG:
3283       S = new (Context) VAArgExpr(Empty);
3284       break;
3285 
3286     case EXPR_ADDR_LABEL:
3287       S = new (Context) AddrLabelExpr(Empty);
3288       break;
3289 
3290     case EXPR_STMT:
3291       S = new (Context) StmtExpr(Empty);
3292       break;
3293 
3294     case EXPR_CHOOSE:
3295       S = new (Context) ChooseExpr(Empty);
3296       break;
3297 
3298     case EXPR_GNU_NULL:
3299       S = new (Context) GNUNullExpr(Empty);
3300       break;
3301 
3302     case EXPR_SHUFFLE_VECTOR:
3303       S = new (Context) ShuffleVectorExpr(Empty);
3304       break;
3305 
3306     case EXPR_CONVERT_VECTOR:
3307       S = new (Context) ConvertVectorExpr(Empty);
3308       break;
3309 
3310     case EXPR_BLOCK:
3311       S = new (Context) BlockExpr(Empty);
3312       break;
3313 
3314     case EXPR_GENERIC_SELECTION:
3315       S = new (Context) GenericSelectionExpr(Empty);
3316       break;
3317 
3318     case EXPR_OBJC_STRING_LITERAL:
3319       S = new (Context) ObjCStringLiteral(Empty);
3320       break;
3321     case EXPR_OBJC_BOXED_EXPRESSION:
3322       S = new (Context) ObjCBoxedExpr(Empty);
3323       break;
3324     case EXPR_OBJC_ARRAY_LITERAL:
3325       S = ObjCArrayLiteral::CreateEmpty(Context,
3326                                         Record[ASTStmtReader::NumExprFields]);
3327       break;
3328     case EXPR_OBJC_DICTIONARY_LITERAL:
3329       S = ObjCDictionaryLiteral::CreateEmpty(Context,
3330             Record[ASTStmtReader::NumExprFields],
3331             Record[ASTStmtReader::NumExprFields + 1]);
3332       break;
3333     case EXPR_OBJC_ENCODE:
3334       S = new (Context) ObjCEncodeExpr(Empty);
3335       break;
3336     case EXPR_OBJC_SELECTOR_EXPR:
3337       S = new (Context) ObjCSelectorExpr(Empty);
3338       break;
3339     case EXPR_OBJC_PROTOCOL_EXPR:
3340       S = new (Context) ObjCProtocolExpr(Empty);
3341       break;
3342     case EXPR_OBJC_IVAR_REF_EXPR:
3343       S = new (Context) ObjCIvarRefExpr(Empty);
3344       break;
3345     case EXPR_OBJC_PROPERTY_REF_EXPR:
3346       S = new (Context) ObjCPropertyRefExpr(Empty);
3347       break;
3348     case EXPR_OBJC_SUBSCRIPT_REF_EXPR:
3349       S = new (Context) ObjCSubscriptRefExpr(Empty);
3350       break;
3351     case EXPR_OBJC_KVC_REF_EXPR:
3352       llvm_unreachable("mismatching AST file");
3353     case EXPR_OBJC_MESSAGE_EXPR:
3354       S = ObjCMessageExpr::CreateEmpty(Context,
3355                                      Record[ASTStmtReader::NumExprFields],
3356                                      Record[ASTStmtReader::NumExprFields + 1]);
3357       break;
3358     case EXPR_OBJC_ISA:
3359       S = new (Context) ObjCIsaExpr(Empty);
3360       break;
3361     case EXPR_OBJC_INDIRECT_COPY_RESTORE:
3362       S = new (Context) ObjCIndirectCopyRestoreExpr(Empty);
3363       break;
3364     case EXPR_OBJC_BRIDGED_CAST:
3365       S = new (Context) ObjCBridgedCastExpr(Empty);
3366       break;
3367     case STMT_OBJC_FOR_COLLECTION:
3368       S = new (Context) ObjCForCollectionStmt(Empty);
3369       break;
3370     case STMT_OBJC_CATCH:
3371       S = new (Context) ObjCAtCatchStmt(Empty);
3372       break;
3373     case STMT_OBJC_FINALLY:
3374       S = new (Context) ObjCAtFinallyStmt(Empty);
3375       break;
3376     case STMT_OBJC_AT_TRY:
3377       S = ObjCAtTryStmt::CreateEmpty(Context,
3378                                      Record[ASTStmtReader::NumStmtFields],
3379                                      Record[ASTStmtReader::NumStmtFields + 1]);
3380       break;
3381     case STMT_OBJC_AT_SYNCHRONIZED:
3382       S = new (Context) ObjCAtSynchronizedStmt(Empty);
3383       break;
3384     case STMT_OBJC_AT_THROW:
3385       S = new (Context) ObjCAtThrowStmt(Empty);
3386       break;
3387     case STMT_OBJC_AUTORELEASE_POOL:
3388       S = new (Context) ObjCAutoreleasePoolStmt(Empty);
3389       break;
3390     case EXPR_OBJC_BOOL_LITERAL:
3391       S = new (Context) ObjCBoolLiteralExpr(Empty);
3392       break;
3393     case EXPR_OBJC_AVAILABILITY_CHECK:
3394       S = new (Context) ObjCAvailabilityCheckExpr(Empty);
3395       break;
3396     case STMT_SEH_LEAVE:
3397       S = new (Context) SEHLeaveStmt(Empty);
3398       break;
3399     case STMT_SEH_EXCEPT:
3400       S = new (Context) SEHExceptStmt(Empty);
3401       break;
3402     case STMT_SEH_FINALLY:
3403       S = new (Context) SEHFinallyStmt(Empty);
3404       break;
3405     case STMT_SEH_TRY:
3406       S = new (Context) SEHTryStmt(Empty);
3407       break;
3408     case STMT_CXX_CATCH:
3409       S = new (Context) CXXCatchStmt(Empty);
3410       break;
3411 
3412     case STMT_CXX_TRY:
3413       S = CXXTryStmt::Create(Context, Empty,
3414              /*NumHandlers=*/Record[ASTStmtReader::NumStmtFields]);
3415       break;
3416 
3417     case STMT_CXX_FOR_RANGE:
3418       S = new (Context) CXXForRangeStmt(Empty);
3419       break;
3420 
3421     case STMT_MS_DEPENDENT_EXISTS:
3422       S = new (Context) MSDependentExistsStmt(SourceLocation(), true,
3423                                               NestedNameSpecifierLoc(),
3424                                               DeclarationNameInfo(),
3425                                               nullptr);
3426       break;
3427 
3428     case STMT_OMP_PARALLEL_DIRECTIVE:
3429       S =
3430         OMPParallelDirective::CreateEmpty(Context,
3431                                           Record[ASTStmtReader::NumStmtFields],
3432                                           Empty);
3433       break;
3434 
3435     case STMT_OMP_SIMD_DIRECTIVE: {
3436       unsigned NumClauses = Record[ASTStmtReader::NumStmtFields];
3437       unsigned CollapsedNum = Record[ASTStmtReader::NumStmtFields + 1];
3438       S = OMPSimdDirective::CreateEmpty(Context, NumClauses,
3439                                         CollapsedNum, Empty);
3440       break;
3441     }
3442 
3443     case STMT_OMP_FOR_DIRECTIVE: {
3444       unsigned NumClauses = Record[ASTStmtReader::NumStmtFields];
3445       unsigned CollapsedNum = Record[ASTStmtReader::NumStmtFields + 1];
3446       S = OMPForDirective::CreateEmpty(Context, NumClauses, CollapsedNum,
3447                                        Empty);
3448       break;
3449     }
3450 
3451     case STMT_OMP_FOR_SIMD_DIRECTIVE: {
3452       unsigned NumClauses = Record[ASTStmtReader::NumStmtFields];
3453       unsigned CollapsedNum = Record[ASTStmtReader::NumStmtFields + 1];
3454       S = OMPForSimdDirective::CreateEmpty(Context, NumClauses, CollapsedNum,
3455                                            Empty);
3456       break;
3457     }
3458 
3459     case STMT_OMP_SECTIONS_DIRECTIVE:
3460       S = OMPSectionsDirective::CreateEmpty(
3461           Context, Record[ASTStmtReader::NumStmtFields], Empty);
3462       break;
3463 
3464     case STMT_OMP_SECTION_DIRECTIVE:
3465       S = OMPSectionDirective::CreateEmpty(Context, Empty);
3466       break;
3467 
3468     case STMT_OMP_SINGLE_DIRECTIVE:
3469       S = OMPSingleDirective::CreateEmpty(
3470           Context, Record[ASTStmtReader::NumStmtFields], Empty);
3471       break;
3472 
3473     case STMT_OMP_MASTER_DIRECTIVE:
3474       S = OMPMasterDirective::CreateEmpty(Context, Empty);
3475       break;
3476 
3477     case STMT_OMP_CRITICAL_DIRECTIVE:
3478       S = OMPCriticalDirective::CreateEmpty(
3479           Context, Record[ASTStmtReader::NumStmtFields], Empty);
3480       break;
3481 
3482     case STMT_OMP_PARALLEL_FOR_DIRECTIVE: {
3483       unsigned NumClauses = Record[ASTStmtReader::NumStmtFields];
3484       unsigned CollapsedNum = Record[ASTStmtReader::NumStmtFields + 1];
3485       S = OMPParallelForDirective::CreateEmpty(Context, NumClauses,
3486                                                CollapsedNum, Empty);
3487       break;
3488     }
3489 
3490     case STMT_OMP_PARALLEL_FOR_SIMD_DIRECTIVE: {
3491       unsigned NumClauses = Record[ASTStmtReader::NumStmtFields];
3492       unsigned CollapsedNum = Record[ASTStmtReader::NumStmtFields + 1];
3493       S = OMPParallelForSimdDirective::CreateEmpty(Context, NumClauses,
3494                                                    CollapsedNum, Empty);
3495       break;
3496     }
3497 
3498     case STMT_OMP_PARALLEL_SECTIONS_DIRECTIVE:
3499       S = OMPParallelSectionsDirective::CreateEmpty(
3500           Context, Record[ASTStmtReader::NumStmtFields], Empty);
3501       break;
3502 
3503     case STMT_OMP_TASK_DIRECTIVE:
3504       S = OMPTaskDirective::CreateEmpty(
3505           Context, Record[ASTStmtReader::NumStmtFields], Empty);
3506       break;
3507 
3508     case STMT_OMP_TASKYIELD_DIRECTIVE:
3509       S = OMPTaskyieldDirective::CreateEmpty(Context, Empty);
3510       break;
3511 
3512     case STMT_OMP_BARRIER_DIRECTIVE:
3513       S = OMPBarrierDirective::CreateEmpty(Context, Empty);
3514       break;
3515 
3516     case STMT_OMP_TASKWAIT_DIRECTIVE:
3517       S = OMPTaskwaitDirective::CreateEmpty(Context, Empty);
3518       break;
3519 
3520     case STMT_OMP_TASKGROUP_DIRECTIVE:
3521       S = OMPTaskgroupDirective::CreateEmpty(
3522           Context, Record[ASTStmtReader::NumStmtFields], Empty);
3523       break;
3524 
3525     case STMT_OMP_FLUSH_DIRECTIVE:
3526       S = OMPFlushDirective::CreateEmpty(
3527           Context, Record[ASTStmtReader::NumStmtFields], Empty);
3528       break;
3529 
3530     case STMT_OMP_ORDERED_DIRECTIVE:
3531       S = OMPOrderedDirective::CreateEmpty(
3532           Context, Record[ASTStmtReader::NumStmtFields], Empty);
3533       break;
3534 
3535     case STMT_OMP_ATOMIC_DIRECTIVE:
3536       S = OMPAtomicDirective::CreateEmpty(
3537           Context, Record[ASTStmtReader::NumStmtFields], Empty);
3538       break;
3539 
3540     case STMT_OMP_TARGET_DIRECTIVE:
3541       S = OMPTargetDirective::CreateEmpty(
3542           Context, Record[ASTStmtReader::NumStmtFields], Empty);
3543       break;
3544 
3545     case STMT_OMP_TARGET_DATA_DIRECTIVE:
3546       S = OMPTargetDataDirective::CreateEmpty(
3547           Context, Record[ASTStmtReader::NumStmtFields], Empty);
3548       break;
3549 
3550     case STMT_OMP_TARGET_ENTER_DATA_DIRECTIVE:
3551       S = OMPTargetEnterDataDirective::CreateEmpty(
3552           Context, Record[ASTStmtReader::NumStmtFields], Empty);
3553       break;
3554 
3555     case STMT_OMP_TARGET_EXIT_DATA_DIRECTIVE:
3556       S = OMPTargetExitDataDirective::CreateEmpty(
3557           Context, Record[ASTStmtReader::NumStmtFields], Empty);
3558       break;
3559 
3560     case STMT_OMP_TARGET_PARALLEL_DIRECTIVE:
3561       S = OMPTargetParallelDirective::CreateEmpty(
3562           Context, Record[ASTStmtReader::NumStmtFields], Empty);
3563       break;
3564 
3565     case STMT_OMP_TARGET_PARALLEL_FOR_DIRECTIVE: {
3566       unsigned NumClauses = Record[ASTStmtReader::NumStmtFields];
3567       unsigned CollapsedNum = Record[ASTStmtReader::NumStmtFields + 1];
3568       S = OMPTargetParallelForDirective::CreateEmpty(Context, NumClauses,
3569                                                      CollapsedNum, Empty);
3570       break;
3571     }
3572 
3573     case STMT_OMP_TARGET_UPDATE_DIRECTIVE:
3574       S = OMPTargetUpdateDirective::CreateEmpty(
3575           Context, Record[ASTStmtReader::NumStmtFields], Empty);
3576       break;
3577 
3578     case STMT_OMP_TEAMS_DIRECTIVE:
3579       S = OMPTeamsDirective::CreateEmpty(
3580           Context, Record[ASTStmtReader::NumStmtFields], Empty);
3581       break;
3582 
3583     case STMT_OMP_CANCELLATION_POINT_DIRECTIVE:
3584       S = OMPCancellationPointDirective::CreateEmpty(Context, Empty);
3585       break;
3586 
3587     case STMT_OMP_CANCEL_DIRECTIVE:
3588       S = OMPCancelDirective::CreateEmpty(
3589           Context, Record[ASTStmtReader::NumStmtFields], Empty);
3590       break;
3591 
3592     case STMT_OMP_TASKLOOP_DIRECTIVE: {
3593       unsigned NumClauses = Record[ASTStmtReader::NumStmtFields];
3594       unsigned CollapsedNum = Record[ASTStmtReader::NumStmtFields + 1];
3595       S = OMPTaskLoopDirective::CreateEmpty(Context, NumClauses, CollapsedNum,
3596                                             Empty);
3597       break;
3598     }
3599 
3600     case STMT_OMP_TASKLOOP_SIMD_DIRECTIVE: {
3601       unsigned NumClauses = Record[ASTStmtReader::NumStmtFields];
3602       unsigned CollapsedNum = Record[ASTStmtReader::NumStmtFields + 1];
3603       S = OMPTaskLoopSimdDirective::CreateEmpty(Context, NumClauses,
3604                                                 CollapsedNum, Empty);
3605       break;
3606     }
3607 
3608     case STMT_OMP_DISTRIBUTE_DIRECTIVE: {
3609       unsigned NumClauses = Record[ASTStmtReader::NumStmtFields];
3610       unsigned CollapsedNum = Record[ASTStmtReader::NumStmtFields + 1];
3611       S = OMPDistributeDirective::CreateEmpty(Context, NumClauses, CollapsedNum,
3612                                               Empty);
3613       break;
3614     }
3615 
3616     case STMT_OMP_DISTRIBUTE_PARALLEL_FOR_DIRECTIVE: {
3617       unsigned NumClauses = Record[ASTStmtReader::NumStmtFields];
3618       unsigned CollapsedNum = Record[ASTStmtReader::NumStmtFields + 1];
3619       S = OMPDistributeParallelForDirective::CreateEmpty(Context, NumClauses,
3620                                                          CollapsedNum, Empty);
3621       break;
3622     }
3623 
3624     case STMT_OMP_DISTRIBUTE_PARALLEL_FOR_SIMD_DIRECTIVE: {
3625       unsigned NumClauses = Record[ASTStmtReader::NumStmtFields];
3626       unsigned CollapsedNum = Record[ASTStmtReader::NumStmtFields + 1];
3627       S = OMPDistributeParallelForSimdDirective::CreateEmpty(Context, NumClauses,
3628                                                              CollapsedNum,
3629                                                              Empty);
3630       break;
3631     }
3632 
3633     case STMT_OMP_DISTRIBUTE_SIMD_DIRECTIVE: {
3634       unsigned NumClauses = Record[ASTStmtReader::NumStmtFields];
3635       unsigned CollapsedNum = Record[ASTStmtReader::NumStmtFields + 1];
3636       S = OMPDistributeSimdDirective::CreateEmpty(Context, NumClauses,
3637                                                   CollapsedNum, Empty);
3638       break;
3639     }
3640 
3641     case STMT_OMP_TARGET_PARALLEL_FOR_SIMD_DIRECTIVE: {
3642       unsigned NumClauses = Record[ASTStmtReader::NumStmtFields];
3643       unsigned CollapsedNum = Record[ASTStmtReader::NumStmtFields + 1];
3644       S = OMPTargetParallelForSimdDirective::CreateEmpty(Context, NumClauses,
3645                                                          CollapsedNum, Empty);
3646       break;
3647     }
3648 
3649     case STMT_OMP_TARGET_SIMD_DIRECTIVE: {
3650       auto NumClauses = Record[ASTStmtReader::NumStmtFields];
3651       auto CollapsedNum = Record[ASTStmtReader::NumStmtFields + 1];
3652       S = OMPTargetSimdDirective::CreateEmpty(Context, NumClauses, CollapsedNum,
3653                                               Empty);
3654       break;
3655     }
3656 
3657      case STMT_OMP_TEAMS_DISTRIBUTE_DIRECTIVE: {
3658       auto NumClauses = Record[ASTStmtReader::NumStmtFields];
3659       auto CollapsedNum = Record[ASTStmtReader::NumStmtFields + 1];
3660       S = OMPTeamsDistributeDirective::CreateEmpty(Context, NumClauses,
3661                                                    CollapsedNum, Empty);
3662       break;
3663     }
3664 
3665     case STMT_OMP_TEAMS_DISTRIBUTE_SIMD_DIRECTIVE: {
3666       unsigned NumClauses = Record[ASTStmtReader::NumStmtFields];
3667       unsigned CollapsedNum = Record[ASTStmtReader::NumStmtFields + 1];
3668       S = OMPTeamsDistributeSimdDirective::CreateEmpty(Context, NumClauses,
3669                                                        CollapsedNum, Empty);
3670       break;
3671     }
3672 
3673     case STMT_OMP_TEAMS_DISTRIBUTE_PARALLEL_FOR_SIMD_DIRECTIVE: {
3674       auto NumClauses = Record[ASTStmtReader::NumStmtFields];
3675       auto CollapsedNum = Record[ASTStmtReader::NumStmtFields + 1];
3676       S = OMPTeamsDistributeParallelForSimdDirective::CreateEmpty(
3677           Context, NumClauses, CollapsedNum, Empty);
3678       break;
3679     }
3680 
3681     case STMT_OMP_TEAMS_DISTRIBUTE_PARALLEL_FOR_DIRECTIVE: {
3682       auto NumClauses = Record[ASTStmtReader::NumStmtFields];
3683       auto CollapsedNum = Record[ASTStmtReader::NumStmtFields + 1];
3684       S = OMPTeamsDistributeParallelForDirective::CreateEmpty(
3685           Context, NumClauses, CollapsedNum, Empty);
3686       break;
3687     }
3688 
3689     case STMT_OMP_TARGET_TEAMS_DIRECTIVE: {
3690       S = OMPTargetTeamsDirective::CreateEmpty(
3691           Context, Record[ASTStmtReader::NumStmtFields], Empty);
3692       break;
3693     }
3694 
3695     case STMT_OMP_TARGET_TEAMS_DISTRIBUTE_DIRECTIVE: {
3696       auto NumClauses = Record[ASTStmtReader::NumStmtFields];
3697       auto CollapsedNum = Record[ASTStmtReader::NumStmtFields + 1];
3698       S = OMPTargetTeamsDistributeDirective::CreateEmpty(Context, NumClauses,
3699                                                          CollapsedNum, Empty);
3700       break;
3701     }
3702 
3703     case STMT_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_FOR_DIRECTIVE: {
3704       auto NumClauses = Record[ASTStmtReader::NumStmtFields];
3705       auto CollapsedNum = Record[ASTStmtReader::NumStmtFields + 1];
3706       S = OMPTargetTeamsDistributeParallelForDirective::CreateEmpty(
3707           Context, NumClauses, CollapsedNum, Empty);
3708       break;
3709     }
3710 
3711     case STMT_OMP_TARGET_TEAMS_DISTRIBUTE_PARALLEL_FOR_SIMD_DIRECTIVE: {
3712       auto NumClauses = Record[ASTStmtReader::NumStmtFields];
3713       auto CollapsedNum = Record[ASTStmtReader::NumStmtFields + 1];
3714       S = OMPTargetTeamsDistributeParallelForSimdDirective::CreateEmpty(
3715           Context, NumClauses, CollapsedNum, Empty);
3716       break;
3717     }
3718 
3719     case STMT_OMP_TARGET_TEAMS_DISTRIBUTE_SIMD_DIRECTIVE: {
3720       auto NumClauses = Record[ASTStmtReader::NumStmtFields];
3721       auto CollapsedNum = Record[ASTStmtReader::NumStmtFields + 1];
3722       S = OMPTargetTeamsDistributeSimdDirective::CreateEmpty(
3723           Context, NumClauses, CollapsedNum, Empty);
3724       break;
3725     }
3726 
3727     case EXPR_CXX_OPERATOR_CALL:
3728       S = new (Context) CXXOperatorCallExpr(Context, Empty);
3729       break;
3730 
3731     case EXPR_CXX_MEMBER_CALL:
3732       S = new (Context) CXXMemberCallExpr(Context, Empty);
3733       break;
3734 
3735     case EXPR_CXX_CONSTRUCT:
3736       S = new (Context) CXXConstructExpr(Empty);
3737       break;
3738 
3739     case EXPR_CXX_INHERITED_CTOR_INIT:
3740       S = new (Context) CXXInheritedCtorInitExpr(Empty);
3741       break;
3742 
3743     case EXPR_CXX_TEMPORARY_OBJECT:
3744       S = new (Context) CXXTemporaryObjectExpr(Empty);
3745       break;
3746 
3747     case EXPR_CXX_STATIC_CAST:
3748       S = CXXStaticCastExpr::CreateEmpty(Context,
3749                        /*PathSize*/ Record[ASTStmtReader::NumExprFields]);
3750       break;
3751 
3752     case EXPR_CXX_DYNAMIC_CAST:
3753       S = CXXDynamicCastExpr::CreateEmpty(Context,
3754                        /*PathSize*/ Record[ASTStmtReader::NumExprFields]);
3755       break;
3756 
3757     case EXPR_CXX_REINTERPRET_CAST:
3758       S = CXXReinterpretCastExpr::CreateEmpty(Context,
3759                        /*PathSize*/ Record[ASTStmtReader::NumExprFields]);
3760       break;
3761 
3762     case EXPR_CXX_CONST_CAST:
3763       S = CXXConstCastExpr::CreateEmpty(Context);
3764       break;
3765 
3766     case EXPR_CXX_FUNCTIONAL_CAST:
3767       S = CXXFunctionalCastExpr::CreateEmpty(Context,
3768                        /*PathSize*/ Record[ASTStmtReader::NumExprFields]);
3769       break;
3770 
3771     case EXPR_USER_DEFINED_LITERAL:
3772       S = new (Context) UserDefinedLiteral(Context, Empty);
3773       break;
3774 
3775     case EXPR_CXX_STD_INITIALIZER_LIST:
3776       S = new (Context) CXXStdInitializerListExpr(Empty);
3777       break;
3778 
3779     case EXPR_CXX_BOOL_LITERAL:
3780       S = new (Context) CXXBoolLiteralExpr(Empty);
3781       break;
3782 
3783     case EXPR_CXX_NULL_PTR_LITERAL:
3784       S = new (Context) CXXNullPtrLiteralExpr(Empty);
3785       break;
3786     case EXPR_CXX_TYPEID_EXPR:
3787       S = new (Context) CXXTypeidExpr(Empty, true);
3788       break;
3789     case EXPR_CXX_TYPEID_TYPE:
3790       S = new (Context) CXXTypeidExpr(Empty, false);
3791       break;
3792     case EXPR_CXX_UUIDOF_EXPR:
3793       S = new (Context) CXXUuidofExpr(Empty, true);
3794       break;
3795     case EXPR_CXX_PROPERTY_REF_EXPR:
3796       S = new (Context) MSPropertyRefExpr(Empty);
3797       break;
3798     case EXPR_CXX_PROPERTY_SUBSCRIPT_EXPR:
3799       S = new (Context) MSPropertySubscriptExpr(Empty);
3800       break;
3801     case EXPR_CXX_UUIDOF_TYPE:
3802       S = new (Context) CXXUuidofExpr(Empty, false);
3803       break;
3804     case EXPR_CXX_THIS:
3805       S = new (Context) CXXThisExpr(Empty);
3806       break;
3807     case EXPR_CXX_THROW:
3808       S = new (Context) CXXThrowExpr(Empty);
3809       break;
3810     case EXPR_CXX_DEFAULT_ARG:
3811       S = new (Context) CXXDefaultArgExpr(Empty);
3812       break;
3813     case EXPR_CXX_DEFAULT_INIT:
3814       S = new (Context) CXXDefaultInitExpr(Empty);
3815       break;
3816     case EXPR_CXX_BIND_TEMPORARY:
3817       S = new (Context) CXXBindTemporaryExpr(Empty);
3818       break;
3819 
3820     case EXPR_CXX_SCALAR_VALUE_INIT:
3821       S = new (Context) CXXScalarValueInitExpr(Empty);
3822       break;
3823     case EXPR_CXX_NEW:
3824       S = new (Context) CXXNewExpr(Empty);
3825       break;
3826     case EXPR_CXX_DELETE:
3827       S = new (Context) CXXDeleteExpr(Empty);
3828       break;
3829     case EXPR_CXX_PSEUDO_DESTRUCTOR:
3830       S = new (Context) CXXPseudoDestructorExpr(Empty);
3831       break;
3832 
3833     case EXPR_EXPR_WITH_CLEANUPS:
3834       S = ExprWithCleanups::Create(Context, Empty,
3835                                    Record[ASTStmtReader::NumExprFields]);
3836       break;
3837 
3838     case EXPR_CXX_DEPENDENT_SCOPE_MEMBER:
3839       S = CXXDependentScopeMemberExpr::CreateEmpty(Context,
3840          /*HasTemplateKWAndArgsInfo=*/Record[ASTStmtReader::NumExprFields],
3841                   /*NumTemplateArgs=*/Record[ASTStmtReader::NumExprFields]
3842                                    ? Record[ASTStmtReader::NumExprFields + 1]
3843                                    : 0);
3844       break;
3845 
3846     case EXPR_CXX_DEPENDENT_SCOPE_DECL_REF:
3847       S = DependentScopeDeclRefExpr::CreateEmpty(Context,
3848          /*HasTemplateKWAndArgsInfo=*/Record[ASTStmtReader::NumExprFields],
3849                   /*NumTemplateArgs=*/Record[ASTStmtReader::NumExprFields]
3850                                    ? Record[ASTStmtReader::NumExprFields + 1]
3851                                    : 0);
3852       break;
3853 
3854     case EXPR_CXX_UNRESOLVED_CONSTRUCT:
3855       S = CXXUnresolvedConstructExpr::CreateEmpty(Context,
3856                               /*NumArgs=*/Record[ASTStmtReader::NumExprFields]);
3857       break;
3858 
3859     case EXPR_CXX_UNRESOLVED_MEMBER:
3860       S = UnresolvedMemberExpr::CreateEmpty(Context,
3861          /*HasTemplateKWAndArgsInfo=*/Record[ASTStmtReader::NumExprFields],
3862                   /*NumTemplateArgs=*/Record[ASTStmtReader::NumExprFields]
3863                                    ? Record[ASTStmtReader::NumExprFields + 1]
3864                                    : 0);
3865       break;
3866 
3867     case EXPR_CXX_UNRESOLVED_LOOKUP:
3868       S = UnresolvedLookupExpr::CreateEmpty(Context,
3869          /*HasTemplateKWAndArgsInfo=*/Record[ASTStmtReader::NumExprFields],
3870                   /*NumTemplateArgs=*/Record[ASTStmtReader::NumExprFields]
3871                                    ? Record[ASTStmtReader::NumExprFields + 1]
3872                                    : 0);
3873       break;
3874 
3875     case EXPR_TYPE_TRAIT:
3876       S = TypeTraitExpr::CreateDeserialized(Context,
3877             Record[ASTStmtReader::NumExprFields]);
3878       break;
3879 
3880     case EXPR_ARRAY_TYPE_TRAIT:
3881       S = new (Context) ArrayTypeTraitExpr(Empty);
3882       break;
3883 
3884     case EXPR_CXX_EXPRESSION_TRAIT:
3885       S = new (Context) ExpressionTraitExpr(Empty);
3886       break;
3887 
3888     case EXPR_CXX_NOEXCEPT:
3889       S = new (Context) CXXNoexceptExpr(Empty);
3890       break;
3891 
3892     case EXPR_PACK_EXPANSION:
3893       S = new (Context) PackExpansionExpr(Empty);
3894       break;
3895 
3896     case EXPR_SIZEOF_PACK:
3897       S = SizeOfPackExpr::CreateDeserialized(
3898               Context,
3899               /*NumPartialArgs=*/Record[ASTStmtReader::NumExprFields]);
3900       break;
3901 
3902     case EXPR_SUBST_NON_TYPE_TEMPLATE_PARM:
3903       S = new (Context) SubstNonTypeTemplateParmExpr(Empty);
3904       break;
3905 
3906     case EXPR_SUBST_NON_TYPE_TEMPLATE_PARM_PACK:
3907       S = new (Context) SubstNonTypeTemplateParmPackExpr(Empty);
3908       break;
3909 
3910     case EXPR_FUNCTION_PARM_PACK:
3911       S = FunctionParmPackExpr::CreateEmpty(Context,
3912                                           Record[ASTStmtReader::NumExprFields]);
3913       break;
3914 
3915     case EXPR_MATERIALIZE_TEMPORARY:
3916       S = new (Context) MaterializeTemporaryExpr(Empty);
3917       break;
3918 
3919     case EXPR_CXX_FOLD:
3920       S = new (Context) CXXFoldExpr(Empty);
3921       break;
3922 
3923     case EXPR_OPAQUE_VALUE:
3924       S = new (Context) OpaqueValueExpr(Empty);
3925       break;
3926 
3927     case EXPR_CUDA_KERNEL_CALL:
3928       S = new (Context) CUDAKernelCallExpr(Context, Empty);
3929       break;
3930 
3931     case EXPR_ASTYPE:
3932       S = new (Context) AsTypeExpr(Empty);
3933       break;
3934 
3935     case EXPR_PSEUDO_OBJECT: {
3936       unsigned numSemanticExprs = Record[ASTStmtReader::NumExprFields];
3937       S = PseudoObjectExpr::Create(Context, Empty, numSemanticExprs);
3938       break;
3939     }
3940 
3941     case EXPR_ATOMIC:
3942       S = new (Context) AtomicExpr(Empty);
3943       break;
3944 
3945     case EXPR_LAMBDA: {
3946       unsigned NumCaptures = Record[ASTStmtReader::NumExprFields];
3947       S = LambdaExpr::CreateDeserialized(Context, NumCaptures);
3948       break;
3949     }
3950     }
3951 
3952     // We hit a STMT_STOP, so we're done with this expression.
3953     if (Finished)
3954       break;
3955 
3956     ++NumStatementsRead;
3957 
3958     if (S && !IsStmtReference) {
3959       Reader.Visit(S);
3960       StmtEntries[Cursor.GetCurrentBitNo()] = S;
3961     }
3962 
3963     assert(Record.getIdx() == Record.size() &&
3964            "Invalid deserialization of statement");
3965     StmtStack.push_back(S);
3966   }
3967 Done:
3968   assert(StmtStack.size() > PrevNumStmts && "Read too many sub-stmts!");
3969   assert(StmtStack.size() == PrevNumStmts + 1 && "Extra expressions on stack!");
3970   return StmtStack.pop_back_val();
3971 }
3972