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