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