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