blob: 460841b2ff073095cef9a8f6a19e287978a95d4d [file] [log] [blame]
Sebastian Redl904c9c82010-08-18 23:57:11 +00001//===--- ASTReaderStmt.cpp - Stmt/Expr Deserialization ----------*- C++ -*-===//
Chris Lattner4c6f9522009-04-27 05:14:47 +00002//
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
Sebastian Redlc43b54c2010-08-18 23:56:43 +000011// ASTReader::ReadStmt method.
Chris Lattner4c6f9522009-04-27 05:14:47 +000012//
13//===----------------------------------------------------------------------===//
14
Sebastian Redl6ab7cd82010-08-18 23:57:17 +000015#include "clang/Serialization/ASTReader.h"
Benjamin Kramer471c8b42012-07-04 20:19:54 +000016#include "clang/AST/ASTContext.h"
Douglas Gregor39da0b82009-09-09 23:08:42 +000017#include "clang/AST/DeclCXX.h"
Douglas Gregorc7793c72011-01-15 01:15:58 +000018#include "clang/AST/DeclTemplate.h"
Chris Lattner4c6f9522009-04-27 05:14:47 +000019#include "clang/AST/StmtVisitor.h"
Benjamin Kramer8fe83e12012-02-04 13:45:25 +000020#include "llvm/ADT/SmallString.h"
Chris Lattner4c6f9522009-04-27 05:14:47 +000021using namespace clang;
Sebastian Redl8538e8d2010-08-18 23:57:32 +000022using namespace clang::serialization;
Chris Lattner4c6f9522009-04-27 05:14:47 +000023
Argyrios Kyrtzidis37bdfe22010-06-30 08:49:18 +000024namespace clang {
Argyrios Kyrtzidis17cfded2010-06-28 09:31:42 +000025
Sebastian Redl60adf4a2010-08-18 23:56:52 +000026 class ASTStmtReader : public StmtVisitor<ASTStmtReader> {
Douglas Gregor409448c2011-07-21 22:35:25 +000027 typedef ASTReader::RecordData RecordData;
28
Sebastian Redlc43b54c2010-08-18 23:56:43 +000029 ASTReader &Reader;
Douglas Gregor1a4761e2011-11-30 23:21:26 +000030 ModuleFile &F;
Sebastian Redl577d4792010-07-22 22:43:28 +000031 llvm::BitstreamCursor &DeclsCursor;
Sebastian Redlc43b54c2010-08-18 23:56:43 +000032 const ASTReader::RecordData &Record;
Chris Lattner4c6f9522009-04-27 05:14:47 +000033 unsigned &Idx;
Chris Lattner4c6f9522009-04-27 05:14:47 +000034
Douglas Gregor409448c2011-07-21 22:35:25 +000035 SourceLocation ReadSourceLocation(const RecordData &R, unsigned &I) {
Sebastian Redlc3632732010-10-05 15:59:54 +000036 return Reader.ReadSourceLocation(F, R, I);
37 }
Douglas Gregor409448c2011-07-21 22:35:25 +000038
39 SourceRange ReadSourceRange(const RecordData &R, unsigned &I) {
Sebastian Redlc3632732010-10-05 15:59:54 +000040 return Reader.ReadSourceRange(F, R, I);
41 }
Douglas Gregor409448c2011-07-21 22:35:25 +000042
43 TypeSourceInfo *GetTypeSourceInfo(const RecordData &R, unsigned &I) {
Sebastian Redlc3632732010-10-05 15:59:54 +000044 return Reader.GetTypeSourceInfo(F, R, I);
45 }
Douglas Gregor409448c2011-07-21 22:35:25 +000046
47 serialization::DeclID ReadDeclID(const RecordData &R, unsigned &I) {
48 return Reader.ReadDeclID(F, R, I);
49 }
50
51 Decl *ReadDecl(const RecordData &R, unsigned &I) {
52 return Reader.ReadDecl(F, R, I);
53 }
54
55 template<typename T>
56 T *ReadDeclAs(const RecordData &R, unsigned &I) {
57 return Reader.ReadDeclAs<T>(F, R, I);
58 }
59
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +000060 void ReadDeclarationNameLoc(DeclarationNameLoc &DNLoc, DeclarationName Name,
61 const ASTReader::RecordData &R, unsigned &I) {
62 Reader.ReadDeclarationNameLoc(F, DNLoc, Name, R, I);
63 }
Douglas Gregor409448c2011-07-21 22:35:25 +000064
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +000065 void ReadDeclarationNameInfo(DeclarationNameInfo &NameInfo,
66 const ASTReader::RecordData &R, unsigned &I) {
67 Reader.ReadDeclarationNameInfo(F, NameInfo, R, I);
68 }
Sebastian Redlc3632732010-10-05 15:59:54 +000069
Chris Lattner4c6f9522009-04-27 05:14:47 +000070 public:
Douglas Gregor1a4761e2011-11-30 23:21:26 +000071 ASTStmtReader(ASTReader &Reader, ModuleFile &F,
Sebastian Redlc3632732010-10-05 15:59:54 +000072 llvm::BitstreamCursor &Cursor,
Sebastian Redlc43b54c2010-08-18 23:56:43 +000073 const ASTReader::RecordData &Record, unsigned &Idx)
Sebastian Redlc3632732010-10-05 15:59:54 +000074 : Reader(Reader), F(F), DeclsCursor(Cursor), Record(Record), Idx(Idx) { }
Chris Lattner4c6f9522009-04-27 05:14:47 +000075
76 /// \brief The number of record fields required for the Stmt class
77 /// itself.
78 static const unsigned NumStmtFields = 0;
79
80 /// \brief The number of record fields required for the Expr class
81 /// itself.
Douglas Gregor561f8122011-07-01 01:22:09 +000082 static const unsigned NumExprFields = NumStmtFields + 7;
Abramo Bagnarae4b92762012-01-27 09:46:47 +000083
84 /// \brief Read and initialize a ExplicitTemplateArgumentList structure.
85 void ReadTemplateKWAndArgsInfo(ASTTemplateKWAndArgsInfo &Args,
86 unsigned NumTemplateArgs);
Argyrios Kyrtzidis36c76f02010-06-28 09:31:48 +000087 /// \brief Read and initialize a ExplicitTemplateArgumentList structure.
Argyrios Kyrtzidisb0c3e092011-09-22 20:07:03 +000088 void ReadExplicitTemplateArgumentList(ASTTemplateArgumentListInfo &ArgList,
Argyrios Kyrtzidis919e6932010-06-28 22:28:35 +000089 unsigned NumTemplateArgs);
Chris Lattner4c6f9522009-04-27 05:14:47 +000090
Argyrios Kyrtzidis919e6932010-06-28 22:28:35 +000091 void VisitStmt(Stmt *S);
John McCall7110fd62011-07-15 07:00:14 +000092#define STMT(Type, Base) \
93 void Visit##Type(Type *);
94#include "clang/AST/StmtNodes.inc"
Chris Lattner4c6f9522009-04-27 05:14:47 +000095 };
96}
97
Sebastian Redl60adf4a2010-08-18 23:56:52 +000098void ASTStmtReader::
Abramo Bagnarae4b92762012-01-27 09:46:47 +000099ReadTemplateKWAndArgsInfo(ASTTemplateKWAndArgsInfo &Args,
100 unsigned NumTemplateArgs) {
101 SourceLocation TemplateKWLoc = ReadSourceLocation(Record, Idx);
Argyrios Kyrtzidis36c76f02010-06-28 09:31:48 +0000102 TemplateArgumentListInfo ArgInfo;
Sebastian Redlc3632732010-10-05 15:59:54 +0000103 ArgInfo.setLAngleLoc(ReadSourceLocation(Record, Idx));
104 ArgInfo.setRAngleLoc(ReadSourceLocation(Record, Idx));
Argyrios Kyrtzidis36c76f02010-06-28 09:31:48 +0000105 for (unsigned i = 0; i != NumTemplateArgs; ++i)
Sebastian Redl577d4792010-07-22 22:43:28 +0000106 ArgInfo.addArgument(
Sebastian Redlc3632732010-10-05 15:59:54 +0000107 Reader.ReadTemplateArgumentLoc(F, Record, Idx));
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000108 Args.initializeFrom(TemplateKWLoc, ArgInfo);
Argyrios Kyrtzidis36c76f02010-06-28 09:31:48 +0000109}
110
Sebastian Redl60adf4a2010-08-18 23:56:52 +0000111void ASTStmtReader::VisitStmt(Stmt *S) {
Chris Lattner4c6f9522009-04-27 05:14:47 +0000112 assert(Idx == NumStmtFields && "Incorrect statement field count");
Chris Lattner4c6f9522009-04-27 05:14:47 +0000113}
114
Sebastian Redl60adf4a2010-08-18 23:56:52 +0000115void ASTStmtReader::VisitNullStmt(NullStmt *S) {
Chris Lattner4c6f9522009-04-27 05:14:47 +0000116 VisitStmt(S);
Sebastian Redlc3632732010-10-05 15:59:54 +0000117 S->setSemiLoc(ReadSourceLocation(Record, Idx));
Argyrios Kyrtzidise2ca8282011-09-01 21:53:45 +0000118 S->HasLeadingEmptyMacro = Record[Idx++];
Chris Lattner4c6f9522009-04-27 05:14:47 +0000119}
120
Sebastian Redl60adf4a2010-08-18 23:56:52 +0000121void ASTStmtReader::VisitCompoundStmt(CompoundStmt *S) {
Chris Lattner4c6f9522009-04-27 05:14:47 +0000122 VisitStmt(S);
Chris Lattner5f9e2722011-07-23 10:55:15 +0000123 SmallVector<Stmt *, 16> Stmts;
Chris Lattner4c6f9522009-04-27 05:14:47 +0000124 unsigned NumStmts = Record[Idx++];
Argyrios Kyrtzidis919e6932010-06-28 22:28:35 +0000125 while (NumStmts--)
Argyrios Kyrtzidisd98a2ab2010-06-29 22:46:25 +0000126 Stmts.push_back(Reader.ReadSubStmt());
Douglas Gregor35942772011-09-09 21:34:22 +0000127 S->setStmts(Reader.getContext(), Stmts.data(), Stmts.size());
Sebastian Redlc3632732010-10-05 15:59:54 +0000128 S->setLBracLoc(ReadSourceLocation(Record, Idx));
129 S->setRBracLoc(ReadSourceLocation(Record, Idx));
Chris Lattner4c6f9522009-04-27 05:14:47 +0000130}
131
Sebastian Redl60adf4a2010-08-18 23:56:52 +0000132void ASTStmtReader::VisitSwitchCase(SwitchCase *S) {
Chris Lattner4c6f9522009-04-27 05:14:47 +0000133 VisitStmt(S);
134 Reader.RecordSwitchCaseID(S, Record[Idx++]);
Chris Lattner4c6f9522009-04-27 05:14:47 +0000135}
136
Sebastian Redl60adf4a2010-08-18 23:56:52 +0000137void ASTStmtReader::VisitCaseStmt(CaseStmt *S) {
Chris Lattner4c6f9522009-04-27 05:14:47 +0000138 VisitSwitchCase(S);
Argyrios Kyrtzidisd98a2ab2010-06-29 22:46:25 +0000139 S->setLHS(Reader.ReadSubExpr());
140 S->setRHS(Reader.ReadSubExpr());
141 S->setSubStmt(Reader.ReadSubStmt());
Sebastian Redlc3632732010-10-05 15:59:54 +0000142 S->setCaseLoc(ReadSourceLocation(Record, Idx));
143 S->setEllipsisLoc(ReadSourceLocation(Record, Idx));
144 S->setColonLoc(ReadSourceLocation(Record, Idx));
Chris Lattner4c6f9522009-04-27 05:14:47 +0000145}
146
Sebastian Redl60adf4a2010-08-18 23:56:52 +0000147void ASTStmtReader::VisitDefaultStmt(DefaultStmt *S) {
Chris Lattner4c6f9522009-04-27 05:14:47 +0000148 VisitSwitchCase(S);
Argyrios Kyrtzidisd98a2ab2010-06-29 22:46:25 +0000149 S->setSubStmt(Reader.ReadSubStmt());
Sebastian Redlc3632732010-10-05 15:59:54 +0000150 S->setDefaultLoc(ReadSourceLocation(Record, Idx));
151 S->setColonLoc(ReadSourceLocation(Record, Idx));
Chris Lattner4c6f9522009-04-27 05:14:47 +0000152}
153
Sebastian Redl60adf4a2010-08-18 23:56:52 +0000154void ASTStmtReader::VisitLabelStmt(LabelStmt *S) {
Chris Lattner4c6f9522009-04-27 05:14:47 +0000155 VisitStmt(S);
Douglas Gregor409448c2011-07-21 22:35:25 +0000156 LabelDecl *LD = ReadDeclAs<LabelDecl>(Record, Idx);
Chris Lattnerad8dcf42011-02-17 07:39:24 +0000157 LD->setStmt(S);
158 S->setDecl(LD);
Argyrios Kyrtzidisd98a2ab2010-06-29 22:46:25 +0000159 S->setSubStmt(Reader.ReadSubStmt());
Sebastian Redlc3632732010-10-05 15:59:54 +0000160 S->setIdentLoc(ReadSourceLocation(Record, Idx));
Chris Lattner4c6f9522009-04-27 05:14:47 +0000161}
162
Richard Smith534986f2012-04-14 00:33:13 +0000163void ASTStmtReader::VisitAttributedStmt(AttributedStmt *S) {
164 VisitStmt(S);
165 AttrVec Attrs;
166 Reader.ReadAttributes(F, Attrs, Record, Idx);
167 S->Attrs = Attrs;
168 S->SubStmt = Reader.ReadSubStmt();
169 S->AttrLoc = ReadSourceLocation(Record, Idx);
170}
171
Sebastian Redl60adf4a2010-08-18 23:56:52 +0000172void ASTStmtReader::VisitIfStmt(IfStmt *S) {
Chris Lattner4c6f9522009-04-27 05:14:47 +0000173 VisitStmt(S);
Richard Smith534986f2012-04-14 00:33:13 +0000174 S->setConditionVariable(Reader.getContext(),
Douglas Gregor409448c2011-07-21 22:35:25 +0000175 ReadDeclAs<VarDecl>(Record, Idx));
Argyrios Kyrtzidisd98a2ab2010-06-29 22:46:25 +0000176 S->setCond(Reader.ReadSubExpr());
177 S->setThen(Reader.ReadSubStmt());
178 S->setElse(Reader.ReadSubStmt());
Sebastian Redlc3632732010-10-05 15:59:54 +0000179 S->setIfLoc(ReadSourceLocation(Record, Idx));
180 S->setElseLoc(ReadSourceLocation(Record, Idx));
Chris Lattner4c6f9522009-04-27 05:14:47 +0000181}
182
Sebastian Redl60adf4a2010-08-18 23:56:52 +0000183void ASTStmtReader::VisitSwitchStmt(SwitchStmt *S) {
Chris Lattner4c6f9522009-04-27 05:14:47 +0000184 VisitStmt(S);
Douglas Gregor35942772011-09-09 21:34:22 +0000185 S->setConditionVariable(Reader.getContext(),
Douglas Gregor409448c2011-07-21 22:35:25 +0000186 ReadDeclAs<VarDecl>(Record, Idx));
Argyrios Kyrtzidisd98a2ab2010-06-29 22:46:25 +0000187 S->setCond(Reader.ReadSubExpr());
188 S->setBody(Reader.ReadSubStmt());
Sebastian Redlc3632732010-10-05 15:59:54 +0000189 S->setSwitchLoc(ReadSourceLocation(Record, Idx));
Ted Kremenek559fb552010-09-09 00:05:53 +0000190 if (Record[Idx++])
191 S->setAllEnumCasesCovered();
192
Chris Lattner4c6f9522009-04-27 05:14:47 +0000193 SwitchCase *PrevSC = 0;
194 for (unsigned N = Record.size(); Idx != N; ++Idx) {
195 SwitchCase *SC = Reader.getSwitchCaseWithID(Record[Idx]);
196 if (PrevSC)
197 PrevSC->setNextSwitchCase(SC);
198 else
199 S->setSwitchCaseList(SC);
Mike Stump1eb44332009-09-09 15:08:12 +0000200
Chris Lattner4c6f9522009-04-27 05:14:47 +0000201 PrevSC = SC;
202 }
Chris Lattner4c6f9522009-04-27 05:14:47 +0000203}
204
Sebastian Redl60adf4a2010-08-18 23:56:52 +0000205void ASTStmtReader::VisitWhileStmt(WhileStmt *S) {
Chris Lattner4c6f9522009-04-27 05:14:47 +0000206 VisitStmt(S);
Douglas Gregor35942772011-09-09 21:34:22 +0000207 S->setConditionVariable(Reader.getContext(),
Douglas Gregor409448c2011-07-21 22:35:25 +0000208 ReadDeclAs<VarDecl>(Record, Idx));
209
Argyrios Kyrtzidisd98a2ab2010-06-29 22:46:25 +0000210 S->setCond(Reader.ReadSubExpr());
211 S->setBody(Reader.ReadSubStmt());
Sebastian Redlc3632732010-10-05 15:59:54 +0000212 S->setWhileLoc(ReadSourceLocation(Record, Idx));
Chris Lattner4c6f9522009-04-27 05:14:47 +0000213}
214
Sebastian Redl60adf4a2010-08-18 23:56:52 +0000215void ASTStmtReader::VisitDoStmt(DoStmt *S) {
Chris Lattner4c6f9522009-04-27 05:14:47 +0000216 VisitStmt(S);
Argyrios Kyrtzidisd98a2ab2010-06-29 22:46:25 +0000217 S->setCond(Reader.ReadSubExpr());
218 S->setBody(Reader.ReadSubStmt());
Sebastian Redlc3632732010-10-05 15:59:54 +0000219 S->setDoLoc(ReadSourceLocation(Record, Idx));
220 S->setWhileLoc(ReadSourceLocation(Record, Idx));
221 S->setRParenLoc(ReadSourceLocation(Record, Idx));
Chris Lattner4c6f9522009-04-27 05:14:47 +0000222}
223
Sebastian Redl60adf4a2010-08-18 23:56:52 +0000224void ASTStmtReader::VisitForStmt(ForStmt *S) {
Chris Lattner4c6f9522009-04-27 05:14:47 +0000225 VisitStmt(S);
Argyrios Kyrtzidisd98a2ab2010-06-29 22:46:25 +0000226 S->setInit(Reader.ReadSubStmt());
227 S->setCond(Reader.ReadSubExpr());
Douglas Gregor35942772011-09-09 21:34:22 +0000228 S->setConditionVariable(Reader.getContext(),
Douglas Gregor409448c2011-07-21 22:35:25 +0000229 ReadDeclAs<VarDecl>(Record, Idx));
Argyrios Kyrtzidisd98a2ab2010-06-29 22:46:25 +0000230 S->setInc(Reader.ReadSubExpr());
231 S->setBody(Reader.ReadSubStmt());
Sebastian Redlc3632732010-10-05 15:59:54 +0000232 S->setForLoc(ReadSourceLocation(Record, Idx));
233 S->setLParenLoc(ReadSourceLocation(Record, Idx));
234 S->setRParenLoc(ReadSourceLocation(Record, Idx));
Chris Lattner4c6f9522009-04-27 05:14:47 +0000235}
236
Sebastian Redl60adf4a2010-08-18 23:56:52 +0000237void ASTStmtReader::VisitGotoStmt(GotoStmt *S) {
Chris Lattner4c6f9522009-04-27 05:14:47 +0000238 VisitStmt(S);
Douglas Gregor409448c2011-07-21 22:35:25 +0000239 S->setLabel(ReadDeclAs<LabelDecl>(Record, Idx));
Sebastian Redlc3632732010-10-05 15:59:54 +0000240 S->setGotoLoc(ReadSourceLocation(Record, Idx));
241 S->setLabelLoc(ReadSourceLocation(Record, Idx));
Chris Lattner4c6f9522009-04-27 05:14:47 +0000242}
243
Sebastian Redl60adf4a2010-08-18 23:56:52 +0000244void ASTStmtReader::VisitIndirectGotoStmt(IndirectGotoStmt *S) {
Chris Lattner4c6f9522009-04-27 05:14:47 +0000245 VisitStmt(S);
Sebastian Redlc3632732010-10-05 15:59:54 +0000246 S->setGotoLoc(ReadSourceLocation(Record, Idx));
247 S->setStarLoc(ReadSourceLocation(Record, Idx));
Argyrios Kyrtzidisd98a2ab2010-06-29 22:46:25 +0000248 S->setTarget(Reader.ReadSubExpr());
Chris Lattner4c6f9522009-04-27 05:14:47 +0000249}
250
Sebastian Redl60adf4a2010-08-18 23:56:52 +0000251void ASTStmtReader::VisitContinueStmt(ContinueStmt *S) {
Chris Lattner4c6f9522009-04-27 05:14:47 +0000252 VisitStmt(S);
Sebastian Redlc3632732010-10-05 15:59:54 +0000253 S->setContinueLoc(ReadSourceLocation(Record, Idx));
Chris Lattner4c6f9522009-04-27 05:14:47 +0000254}
255
Sebastian Redl60adf4a2010-08-18 23:56:52 +0000256void ASTStmtReader::VisitBreakStmt(BreakStmt *S) {
Chris Lattner4c6f9522009-04-27 05:14:47 +0000257 VisitStmt(S);
Sebastian Redlc3632732010-10-05 15:59:54 +0000258 S->setBreakLoc(ReadSourceLocation(Record, Idx));
Chris Lattner4c6f9522009-04-27 05:14:47 +0000259}
260
Sebastian Redl60adf4a2010-08-18 23:56:52 +0000261void ASTStmtReader::VisitReturnStmt(ReturnStmt *S) {
Chris Lattner4c6f9522009-04-27 05:14:47 +0000262 VisitStmt(S);
Argyrios Kyrtzidisd98a2ab2010-06-29 22:46:25 +0000263 S->setRetValue(Reader.ReadSubExpr());
Sebastian Redlc3632732010-10-05 15:59:54 +0000264 S->setReturnLoc(ReadSourceLocation(Record, Idx));
Douglas Gregor409448c2011-07-21 22:35:25 +0000265 S->setNRVOCandidate(ReadDeclAs<VarDecl>(Record, Idx));
Chris Lattner4c6f9522009-04-27 05:14:47 +0000266}
267
Sebastian Redl60adf4a2010-08-18 23:56:52 +0000268void ASTStmtReader::VisitDeclStmt(DeclStmt *S) {
Chris Lattner4c6f9522009-04-27 05:14:47 +0000269 VisitStmt(S);
Sebastian Redlc3632732010-10-05 15:59:54 +0000270 S->setStartLoc(ReadSourceLocation(Record, Idx));
271 S->setEndLoc(ReadSourceLocation(Record, Idx));
Chris Lattner4c6f9522009-04-27 05:14:47 +0000272
273 if (Idx + 1 == Record.size()) {
274 // Single declaration
Douglas Gregor409448c2011-07-21 22:35:25 +0000275 S->setDeclGroup(DeclGroupRef(ReadDecl(Record, Idx)));
Chris Lattner4c6f9522009-04-27 05:14:47 +0000276 } else {
Chris Lattner5f9e2722011-07-23 10:55:15 +0000277 SmallVector<Decl *, 16> Decls;
Douglas Gregor409448c2011-07-21 22:35:25 +0000278 Decls.reserve(Record.size() - Idx);
279 for (unsigned N = Record.size(); Idx != N; )
280 Decls.push_back(ReadDecl(Record, Idx));
Douglas Gregor35942772011-09-09 21:34:22 +0000281 S->setDeclGroup(DeclGroupRef(DeclGroup::Create(Reader.getContext(),
Douglas Gregor75fdb232009-05-22 22:45:36 +0000282 Decls.data(),
283 Decls.size())));
Chris Lattner4c6f9522009-04-27 05:14:47 +0000284 }
Chris Lattner4c6f9522009-04-27 05:14:47 +0000285}
286
Sebastian Redl60adf4a2010-08-18 23:56:52 +0000287void ASTStmtReader::VisitAsmStmt(AsmStmt *S) {
Chris Lattner4c6f9522009-04-27 05:14:47 +0000288 VisitStmt(S);
289 unsigned NumOutputs = Record[Idx++];
290 unsigned NumInputs = Record[Idx++];
291 unsigned NumClobbers = Record[Idx++];
Sebastian Redlc3632732010-10-05 15:59:54 +0000292 S->setAsmLoc(ReadSourceLocation(Record, Idx));
293 S->setRParenLoc(ReadSourceLocation(Record, Idx));
Chris Lattner4c6f9522009-04-27 05:14:47 +0000294 S->setVolatile(Record[Idx++]);
295 S->setSimple(Record[Idx++]);
Mike Stump3b11fd32010-01-04 22:37:17 +0000296 S->setMSAsm(Record[Idx++]);
Mike Stump1eb44332009-09-09 15:08:12 +0000297
Argyrios Kyrtzidisd98a2ab2010-06-29 22:46:25 +0000298 S->setAsmString(cast_or_null<StringLiteral>(Reader.ReadSubStmt()));
Chris Lattner4c6f9522009-04-27 05:14:47 +0000299
300 // Outputs and inputs
Chris Lattner5f9e2722011-07-23 10:55:15 +0000301 SmallVector<IdentifierInfo *, 16> Names;
302 SmallVector<StringLiteral*, 16> Constraints;
303 SmallVector<Stmt*, 16> Exprs;
Chris Lattner4c6f9522009-04-27 05:14:47 +0000304 for (unsigned I = 0, N = NumOutputs + NumInputs; I != N; ++I) {
Douglas Gregor95eab172011-07-28 20:55:49 +0000305 Names.push_back(Reader.GetIdentifierInfo(F, Record, Idx));
Argyrios Kyrtzidisd98a2ab2010-06-29 22:46:25 +0000306 Constraints.push_back(cast_or_null<StringLiteral>(Reader.ReadSubStmt()));
307 Exprs.push_back(Reader.ReadSubStmt());
Chris Lattner4c6f9522009-04-27 05:14:47 +0000308 }
Chris Lattner4c6f9522009-04-27 05:14:47 +0000309
310 // Constraints
Chris Lattner5f9e2722011-07-23 10:55:15 +0000311 SmallVector<StringLiteral*, 16> Clobbers;
Chris Lattner4c6f9522009-04-27 05:14:47 +0000312 for (unsigned I = 0; I != NumClobbers; ++I)
Argyrios Kyrtzidisd98a2ab2010-06-29 22:46:25 +0000313 Clobbers.push_back(cast_or_null<StringLiteral>(Reader.ReadSubStmt()));
Anders Carlssonfdba9c02010-01-30 19:34:25 +0000314
Douglas Gregor35942772011-09-09 21:34:22 +0000315 S->setOutputsAndInputsAndClobbers(Reader.getContext(),
Anders Carlssonacb6bcb2010-01-30 20:38:10 +0000316 Names.data(), Constraints.data(),
Anders Carlssonfdba9c02010-01-30 19:34:25 +0000317 Exprs.data(), NumOutputs, NumInputs,
318 Clobbers.data(), NumClobbers);
Chris Lattner4c6f9522009-04-27 05:14:47 +0000319}
320
Chad Rosier8cd64b42012-06-11 20:47:18 +0000321void ASTStmtReader::VisitMSAsmStmt(MSAsmStmt *S) {
322 // FIXME: Statement reader not yet implemented for MS style inline asm.
323 VisitStmt(S);
324}
325
Sebastian Redl60adf4a2010-08-18 23:56:52 +0000326void ASTStmtReader::VisitExpr(Expr *E) {
Chris Lattner4c6f9522009-04-27 05:14:47 +0000327 VisitStmt(E);
Douglas Gregor393f2492011-07-22 00:38:23 +0000328 E->setType(Reader.readType(F, Record, Idx));
Chris Lattner4c6f9522009-04-27 05:14:47 +0000329 E->setTypeDependent(Record[Idx++]);
330 E->setValueDependent(Record[Idx++]);
Douglas Gregor561f8122011-07-01 01:22:09 +0000331 E->setInstantiationDependent(Record[Idx++]);
Douglas Gregord0937222010-12-13 22:49:22 +0000332 E->ExprBits.ContainsUnexpandedParameterPack = Record[Idx++];
John McCallf89e55a2010-11-18 06:31:45 +0000333 E->setValueKind(static_cast<ExprValueKind>(Record[Idx++]));
334 E->setObjectKind(static_cast<ExprObjectKind>(Record[Idx++]));
Chris Lattner4c6f9522009-04-27 05:14:47 +0000335 assert(Idx == NumExprFields && "Incorrect expression field count");
Chris Lattner4c6f9522009-04-27 05:14:47 +0000336}
337
Sebastian Redl60adf4a2010-08-18 23:56:52 +0000338void ASTStmtReader::VisitPredefinedExpr(PredefinedExpr *E) {
Chris Lattner4c6f9522009-04-27 05:14:47 +0000339 VisitExpr(E);
Sebastian Redlc3632732010-10-05 15:59:54 +0000340 E->setLocation(ReadSourceLocation(Record, Idx));
Chris Lattner4c6f9522009-04-27 05:14:47 +0000341 E->setIdentType((PredefinedExpr::IdentType)Record[Idx++]);
Chris Lattner4c6f9522009-04-27 05:14:47 +0000342}
343
Sebastian Redl60adf4a2010-08-18 23:56:52 +0000344void ASTStmtReader::VisitDeclRefExpr(DeclRefExpr *E) {
Chris Lattner4c6f9522009-04-27 05:14:47 +0000345 VisitExpr(E);
Argyrios Kyrtzidis663e3802010-07-08 13:09:47 +0000346
Chandler Carruthcb66cff2011-05-01 21:29:53 +0000347 E->DeclRefExprBits.HasQualifier = Record[Idx++];
Chandler Carruth3aa81402011-05-01 23:48:14 +0000348 E->DeclRefExprBits.HasFoundDecl = Record[Idx++];
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000349 E->DeclRefExprBits.HasTemplateKWAndArgsInfo = Record[Idx++];
Abramo Bagnara7cc58b42011-10-05 07:56:41 +0000350 E->DeclRefExprBits.HadMultipleCandidates = Record[Idx++];
John McCallf4b88a42012-03-10 09:33:50 +0000351 E->DeclRefExprBits.RefersToEnclosingLocal = Record[Idx++];
Anders Carlssonb0ca1372011-03-06 18:19:42 +0000352 unsigned NumTemplateArgs = 0;
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000353 if (E->hasTemplateKWAndArgsInfo())
Anders Carlssonb0ca1372011-03-06 18:19:42 +0000354 NumTemplateArgs = Record[Idx++];
355
Chandler Carruthcb66cff2011-05-01 21:29:53 +0000356 if (E->hasQualifier())
Chandler Carruth6857c3e2011-05-01 22:14:37 +0000357 E->getInternalQualifierLoc()
Douglas Gregor40d96a62011-02-28 21:54:11 +0000358 = Reader.ReadNestedNameSpecifierLoc(F, Record, Idx);
Argyrios Kyrtzidis663e3802010-07-08 13:09:47 +0000359
Chandler Carruth3aa81402011-05-01 23:48:14 +0000360 if (E->hasFoundDecl())
Douglas Gregor409448c2011-07-21 22:35:25 +0000361 E->getInternalFoundDecl() = ReadDeclAs<NamedDecl>(Record, Idx);
Chandler Carruth3aa81402011-05-01 23:48:14 +0000362
Abramo Bagnarae4b92762012-01-27 09:46:47 +0000363 if (E->hasTemplateKWAndArgsInfo())
364 ReadTemplateKWAndArgsInfo(*E->getTemplateKWAndArgsInfo(),
365 NumTemplateArgs);
Argyrios Kyrtzidis663e3802010-07-08 13:09:47 +0000366
Douglas Gregor409448c2011-07-21 22:35:25 +0000367 E->setDecl(ReadDeclAs<ValueDecl>(Record, Idx));
Sebastian Redlc3632732010-10-05 15:59:54 +0000368 E->setLocation(ReadSourceLocation(Record, Idx));
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +0000369 ReadDeclarationNameLoc(E->DNLoc, E->getDecl()->getDeclName(), Record, Idx);
Chris Lattner4c6f9522009-04-27 05:14:47 +0000370}
371
Sebastian Redl60adf4a2010-08-18 23:56:52 +0000372void ASTStmtReader::VisitIntegerLiteral(IntegerLiteral *E) {
Chris Lattner4c6f9522009-04-27 05:14:47 +0000373 VisitExpr(E);
Sebastian Redlc3632732010-10-05 15:59:54 +0000374 E->setLocation(ReadSourceLocation(Record, Idx));
Douglas Gregor35942772011-09-09 21:34:22 +0000375 E->setValue(Reader.getContext(), Reader.ReadAPInt(Record, Idx));
Chris Lattner4c6f9522009-04-27 05:14:47 +0000376}
377
Sebastian Redl60adf4a2010-08-18 23:56:52 +0000378void ASTStmtReader::VisitFloatingLiteral(FloatingLiteral *E) {
Chris Lattner4c6f9522009-04-27 05:14:47 +0000379 VisitExpr(E);
Douglas Gregor35942772011-09-09 21:34:22 +0000380 E->setValue(Reader.getContext(), Reader.ReadAPFloat(Record, Idx));
Chris Lattner4c6f9522009-04-27 05:14:47 +0000381 E->setExact(Record[Idx++]);
Sebastian Redlc3632732010-10-05 15:59:54 +0000382 E->setLocation(ReadSourceLocation(Record, Idx));
Chris Lattner4c6f9522009-04-27 05:14:47 +0000383}
384
Sebastian Redl60adf4a2010-08-18 23:56:52 +0000385void ASTStmtReader::VisitImaginaryLiteral(ImaginaryLiteral *E) {
Chris Lattner4c6f9522009-04-27 05:14:47 +0000386 VisitExpr(E);
Argyrios Kyrtzidisd98a2ab2010-06-29 22:46:25 +0000387 E->setSubExpr(Reader.ReadSubExpr());
Chris Lattner4c6f9522009-04-27 05:14:47 +0000388}
389
Sebastian Redl60adf4a2010-08-18 23:56:52 +0000390void ASTStmtReader::VisitStringLiteral(StringLiteral *E) {
Chris Lattner4c6f9522009-04-27 05:14:47 +0000391 VisitExpr(E);
392 unsigned Len = Record[Idx++];
Mike Stump1eb44332009-09-09 15:08:12 +0000393 assert(Record[Idx] == E->getNumConcatenated() &&
Chris Lattner4c6f9522009-04-27 05:14:47 +0000394 "Wrong number of concatenated tokens!");
395 ++Idx;
Eli Friedman64f45a22011-11-01 02:23:42 +0000396 StringLiteral::StringKind kind =
397 static_cast<StringLiteral::StringKind>(Record[Idx++]);
398 bool isPascal = Record[Idx++];
Chris Lattner4c6f9522009-04-27 05:14:47 +0000399
Mike Stump1eb44332009-09-09 15:08:12 +0000400 // Read string data
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +0000401 SmallString<16> Str(&Record[Idx], &Record[Idx] + Len);
Eli Friedman64f45a22011-11-01 02:23:42 +0000402 E->setString(Reader.getContext(), Str.str(), kind, isPascal);
Chris Lattner4c6f9522009-04-27 05:14:47 +0000403 Idx += Len;
404
405 // Read source locations
406 for (unsigned I = 0, N = E->getNumConcatenated(); I != N; ++I)
Sebastian Redlc3632732010-10-05 15:59:54 +0000407 E->setStrTokenLoc(I, ReadSourceLocation(Record, Idx));
Chris Lattner4c6f9522009-04-27 05:14:47 +0000408}
409
Sebastian Redl60adf4a2010-08-18 23:56:52 +0000410void ASTStmtReader::VisitCharacterLiteral(CharacterLiteral *E) {
Chris Lattner4c6f9522009-04-27 05:14:47 +0000411 VisitExpr(E);
412 E->setValue(Record[Idx++]);
Sebastian Redlc3632732010-10-05 15:59:54 +0000413 E->setLocation(ReadSourceLocation(Record, Idx));
Douglas Gregor5cee1192011-07-27 05:40:30 +0000414 E->setKind(static_cast<CharacterLiteral::CharacterKind>(Record[Idx++]));
Chris Lattner4c6f9522009-04-27 05:14:47 +0000415}
416
Sebastian Redl60adf4a2010-08-18 23:56:52 +0000417void ASTStmtReader::VisitParenExpr(ParenExpr *E) {
Chris Lattner4c6f9522009-04-27 05:14:47 +0000418 VisitExpr(E);
Sebastian Redlc3632732010-10-05 15:59:54 +0000419 E->setLParen(ReadSourceLocation(Record, Idx));
420 E->setRParen(ReadSourceLocation(Record, Idx));
Argyrios Kyrtzidisd98a2ab2010-06-29 22:46:25 +0000421 E->setSubExpr(Reader.ReadSubExpr());
Chris Lattner4c6f9522009-04-27 05:14:47 +0000422}
423
Sebastian Redl60adf4a2010-08-18 23:56:52 +0000424void ASTStmtReader::VisitParenListExpr(ParenListExpr *E) {
Argyrios Kyrtzidis37bdfe22010-06-30 08:49:18 +0000425 VisitExpr(E);
426 unsigned NumExprs = Record[Idx++];
Douglas Gregor35942772011-09-09 21:34:22 +0000427 E->Exprs = new (Reader.getContext()) Stmt*[NumExprs];
Argyrios Kyrtzidis37bdfe22010-06-30 08:49:18 +0000428 for (unsigned i = 0; i != NumExprs; ++i)
429 E->Exprs[i] = Reader.ReadSubStmt();
430 E->NumExprs = NumExprs;
Sebastian Redlc3632732010-10-05 15:59:54 +0000431 E->LParenLoc = ReadSourceLocation(Record, Idx);
432 E->RParenLoc = ReadSourceLocation(Record, Idx);
Argyrios Kyrtzidis37bdfe22010-06-30 08:49:18 +0000433}
434
Sebastian Redl60adf4a2010-08-18 23:56:52 +0000435void ASTStmtReader::VisitUnaryOperator(UnaryOperator *E) {
Chris Lattner4c6f9522009-04-27 05:14:47 +0000436 VisitExpr(E);
Argyrios Kyrtzidisd98a2ab2010-06-29 22:46:25 +0000437 E->setSubExpr(Reader.ReadSubExpr());
Chris Lattner4c6f9522009-04-27 05:14:47 +0000438 E->setOpcode((UnaryOperator::Opcode)Record[Idx++]);
Sebastian Redlc3632732010-10-05 15:59:54 +0000439 E->setOperatorLoc(ReadSourceLocation(Record, Idx));
Chris Lattner4c6f9522009-04-27 05:14:47 +0000440}
441
Sebastian Redl60adf4a2010-08-18 23:56:52 +0000442void ASTStmtReader::VisitOffsetOfExpr(OffsetOfExpr *E) {
Douglas Gregor8ecdb652010-04-28 22:16:22 +0000443 typedef OffsetOfExpr::OffsetOfNode Node;
444 VisitExpr(E);
445 assert(E->getNumComponents() == Record[Idx]);
446 ++Idx;
447 assert(E->getNumExpressions() == Record[Idx]);
448 ++Idx;
Sebastian Redlc3632732010-10-05 15:59:54 +0000449 E->setOperatorLoc(ReadSourceLocation(Record, Idx));
450 E->setRParenLoc(ReadSourceLocation(Record, Idx));
451 E->setTypeSourceInfo(GetTypeSourceInfo(Record, Idx));
Douglas Gregor8ecdb652010-04-28 22:16:22 +0000452 for (unsigned I = 0, N = E->getNumComponents(); I != N; ++I) {
453 Node::Kind Kind = static_cast<Node::Kind>(Record[Idx++]);
Sebastian Redlc3632732010-10-05 15:59:54 +0000454 SourceLocation Start = ReadSourceLocation(Record, Idx);
455 SourceLocation End = ReadSourceLocation(Record, Idx);
Douglas Gregor8ecdb652010-04-28 22:16:22 +0000456 switch (Kind) {
457 case Node::Array:
458 E->setComponent(I, Node(Start, Record[Idx++], End));
459 break;
460
461 case Node::Field:
Douglas Gregor409448c2011-07-21 22:35:25 +0000462 E->setComponent(I, Node(Start, ReadDeclAs<FieldDecl>(Record, Idx), End));
Douglas Gregor8ecdb652010-04-28 22:16:22 +0000463 break;
464
465 case Node::Identifier:
Douglas Gregor95eab172011-07-28 20:55:49 +0000466 E->setComponent(I,
467 Node(Start,
468 Reader.GetIdentifierInfo(F, Record, Idx),
469 End));
Douglas Gregor8ecdb652010-04-28 22:16:22 +0000470 break;
Douglas Gregorcc8a5d52010-04-29 00:18:15 +0000471
Argyrios Kyrtzidisafbf3122010-07-29 18:16:10 +0000472 case Node::Base: {
Douglas Gregor35942772011-09-09 21:34:22 +0000473 CXXBaseSpecifier *Base = new (Reader.getContext()) CXXBaseSpecifier();
Sebastian Redlc3632732010-10-05 15:59:54 +0000474 *Base = Reader.ReadCXXBaseSpecifier(F, Record, Idx);
Argyrios Kyrtzidisafbf3122010-07-29 18:16:10 +0000475 E->setComponent(I, Node(Base));
Douglas Gregorcc8a5d52010-04-29 00:18:15 +0000476 break;
Douglas Gregor8ecdb652010-04-28 22:16:22 +0000477 }
Argyrios Kyrtzidisafbf3122010-07-29 18:16:10 +0000478 }
Douglas Gregor8ecdb652010-04-28 22:16:22 +0000479 }
480
481 for (unsigned I = 0, N = E->getNumExpressions(); I != N; ++I)
Argyrios Kyrtzidisd98a2ab2010-06-29 22:46:25 +0000482 E->setIndexExpr(I, Reader.ReadSubExpr());
Douglas Gregor8ecdb652010-04-28 22:16:22 +0000483}
484
Peter Collingbournef4e3cfb2011-03-11 19:24:49 +0000485void ASTStmtReader::VisitUnaryExprOrTypeTraitExpr(UnaryExprOrTypeTraitExpr *E) {
Chris Lattner4c6f9522009-04-27 05:14:47 +0000486 VisitExpr(E);
Peter Collingbournef4e3cfb2011-03-11 19:24:49 +0000487 E->setKind(static_cast<UnaryExprOrTypeTrait>(Record[Idx++]));
Chris Lattner4c6f9522009-04-27 05:14:47 +0000488 if (Record[Idx] == 0) {
Argyrios Kyrtzidisd98a2ab2010-06-29 22:46:25 +0000489 E->setArgument(Reader.ReadSubExpr());
Chris Lattner4c6f9522009-04-27 05:14:47 +0000490 ++Idx;
491 } else {
Sebastian Redlc3632732010-10-05 15:59:54 +0000492 E->setArgument(GetTypeSourceInfo(Record, Idx));
Chris Lattner4c6f9522009-04-27 05:14:47 +0000493 }
Sebastian Redlc3632732010-10-05 15:59:54 +0000494 E->setOperatorLoc(ReadSourceLocation(Record, Idx));
495 E->setRParenLoc(ReadSourceLocation(Record, Idx));
Chris Lattner4c6f9522009-04-27 05:14:47 +0000496}
497
Sebastian Redl60adf4a2010-08-18 23:56:52 +0000498void ASTStmtReader::VisitArraySubscriptExpr(ArraySubscriptExpr *E) {
Chris Lattner4c6f9522009-04-27 05:14:47 +0000499 VisitExpr(E);
Argyrios Kyrtzidisd98a2ab2010-06-29 22:46:25 +0000500 E->setLHS(Reader.ReadSubExpr());
501 E->setRHS(Reader.ReadSubExpr());
Sebastian Redlc3632732010-10-05 15:59:54 +0000502 E->setRBracketLoc(ReadSourceLocation(Record, Idx));
Chris Lattner4c6f9522009-04-27 05:14:47 +0000503}
504
Sebastian Redl60adf4a2010-08-18 23:56:52 +0000505void ASTStmtReader::VisitCallExpr(CallExpr *E) {
Chris Lattner4c6f9522009-04-27 05:14:47 +0000506 VisitExpr(E);
Douglas Gregor35942772011-09-09 21:34:22 +0000507 E->setNumArgs(Reader.getContext(), Record[Idx++]);
Sebastian Redlc3632732010-10-05 15:59:54 +0000508 E->setRParenLoc(ReadSourceLocation(Record, Idx));
Argyrios Kyrtzidisd98a2ab2010-06-29 22:46:25 +0000509 E->setCallee(Reader.ReadSubExpr());
Chris Lattner4c6f9522009-04-27 05:14:47 +0000510 for (unsigned I = 0, N = E->getNumArgs(); I != N; ++I)
Argyrios Kyrtzidisd98a2ab2010-06-29 22:46:25 +0000511 E->setArg(I, Reader.ReadSubExpr());
Chris Lattner4c6f9522009-04-27 05:14:47 +0000512}
513
John McCall7110fd62011-07-15 07:00:14 +0000514void ASTStmtReader::VisitCXXMemberCallExpr(CXXMemberCallExpr *E) {
515 VisitCallExpr(E);
516}
517
Sebastian Redl60adf4a2010-08-18 23:56:52 +0000518void ASTStmtReader::VisitMemberExpr(MemberExpr *E) {
Argyrios Kyrtzidis663e3802010-07-08 13:09:47 +0000519 // Don't call VisitExpr, this is fully initialized at creation.
520 assert(E->getStmtClass() == Stmt::MemberExprClass &&
521 "It's a subclass, we must advance Idx!");
Chris Lattner4c6f9522009-04-27 05:14:47 +0000522}
523
Sebastian Redl60adf4a2010-08-18 23:56:52 +0000524void ASTStmtReader::VisitObjCIsaExpr(ObjCIsaExpr *E) {
Steve Narofff242b1b2009-07-24 17:54:45 +0000525 VisitExpr(E);
Argyrios Kyrtzidisd98a2ab2010-06-29 22:46:25 +0000526 E->setBase(Reader.ReadSubExpr());
Sebastian Redlc3632732010-10-05 15:59:54 +0000527 E->setIsaMemberLoc(ReadSourceLocation(Record, Idx));
Steve Narofff242b1b2009-07-24 17:54:45 +0000528 E->setArrow(Record[Idx++]);
Steve Narofff242b1b2009-07-24 17:54:45 +0000529}
530
John McCallf85e1932011-06-15 23:02:42 +0000531void ASTStmtReader::
532VisitObjCIndirectCopyRestoreExpr(ObjCIndirectCopyRestoreExpr *E) {
533 VisitExpr(E);
534 E->Operand = Reader.ReadSubExpr();
535 E->setShouldCopy(Record[Idx++]);
536}
537
538void ASTStmtReader::VisitObjCBridgedCastExpr(ObjCBridgedCastExpr *E) {
539 VisitExplicitCastExpr(E);
540 E->LParenLoc = ReadSourceLocation(Record, Idx);
541 E->BridgeKeywordLoc = ReadSourceLocation(Record, Idx);
542 E->Kind = Record[Idx++];
543}
544
Sebastian Redl60adf4a2010-08-18 23:56:52 +0000545void ASTStmtReader::VisitCastExpr(CastExpr *E) {
Chris Lattner4c6f9522009-04-27 05:14:47 +0000546 VisitExpr(E);
John McCallf871d0c2010-08-07 06:22:56 +0000547 unsigned NumBaseSpecs = Record[Idx++];
548 assert(NumBaseSpecs == E->path_size());
Argyrios Kyrtzidisd98a2ab2010-06-29 22:46:25 +0000549 E->setSubExpr(Reader.ReadSubExpr());
Anders Carlssoncdef2b72009-07-31 00:48:10 +0000550 E->setCastKind((CastExpr::CastKind)Record[Idx++]);
John McCallf871d0c2010-08-07 06:22:56 +0000551 CastExpr::path_iterator BaseI = E->path_begin();
Argyrios Kyrtzidis0745d0a2010-07-02 23:30:27 +0000552 while (NumBaseSpecs--) {
Douglas Gregor35942772011-09-09 21:34:22 +0000553 CXXBaseSpecifier *BaseSpec = new (Reader.getContext()) CXXBaseSpecifier;
Sebastian Redlc3632732010-10-05 15:59:54 +0000554 *BaseSpec = Reader.ReadCXXBaseSpecifier(F, Record, Idx);
John McCallf871d0c2010-08-07 06:22:56 +0000555 *BaseI++ = BaseSpec;
Argyrios Kyrtzidis0745d0a2010-07-02 23:30:27 +0000556 }
Chris Lattner4c6f9522009-04-27 05:14:47 +0000557}
558
Sebastian Redl60adf4a2010-08-18 23:56:52 +0000559void ASTStmtReader::VisitBinaryOperator(BinaryOperator *E) {
Chris Lattner4c6f9522009-04-27 05:14:47 +0000560 VisitExpr(E);
Argyrios Kyrtzidisd98a2ab2010-06-29 22:46:25 +0000561 E->setLHS(Reader.ReadSubExpr());
562 E->setRHS(Reader.ReadSubExpr());
Chris Lattner4c6f9522009-04-27 05:14:47 +0000563 E->setOpcode((BinaryOperator::Opcode)Record[Idx++]);
Sebastian Redlc3632732010-10-05 15:59:54 +0000564 E->setOperatorLoc(ReadSourceLocation(Record, Idx));
Chris Lattner4c6f9522009-04-27 05:14:47 +0000565}
566
Sebastian Redl60adf4a2010-08-18 23:56:52 +0000567void ASTStmtReader::VisitCompoundAssignOperator(CompoundAssignOperator *E) {
Chris Lattner4c6f9522009-04-27 05:14:47 +0000568 VisitBinaryOperator(E);
Douglas Gregor393f2492011-07-22 00:38:23 +0000569 E->setComputationLHSType(Reader.readType(F, Record, Idx));
570 E->setComputationResultType(Reader.readType(F, Record, Idx));
Chris Lattner4c6f9522009-04-27 05:14:47 +0000571}
572
Sebastian Redl60adf4a2010-08-18 23:56:52 +0000573void ASTStmtReader::VisitConditionalOperator(ConditionalOperator *E) {
Chris Lattner4c6f9522009-04-27 05:14:47 +0000574 VisitExpr(E);
John McCall56ca35d2011-02-17 10:25:35 +0000575 E->SubExprs[ConditionalOperator::COND] = Reader.ReadSubExpr();
576 E->SubExprs[ConditionalOperator::LHS] = Reader.ReadSubExpr();
577 E->SubExprs[ConditionalOperator::RHS] = Reader.ReadSubExpr();
578 E->QuestionLoc = ReadSourceLocation(Record, Idx);
579 E->ColonLoc = ReadSourceLocation(Record, Idx);
580}
581
582void
583ASTStmtReader::VisitBinaryConditionalOperator(BinaryConditionalOperator *E) {
584 VisitExpr(E);
585 E->OpaqueValue = cast<OpaqueValueExpr>(Reader.ReadSubExpr());
586 E->SubExprs[BinaryConditionalOperator::COMMON] = Reader.ReadSubExpr();
587 E->SubExprs[BinaryConditionalOperator::COND] = Reader.ReadSubExpr();
588 E->SubExprs[BinaryConditionalOperator::LHS] = Reader.ReadSubExpr();
589 E->SubExprs[BinaryConditionalOperator::RHS] = Reader.ReadSubExpr();
590 E->QuestionLoc = ReadSourceLocation(Record, Idx);
591 E->ColonLoc = ReadSourceLocation(Record, Idx);
Chris Lattner4c6f9522009-04-27 05:14:47 +0000592}
593
Sebastian Redl60adf4a2010-08-18 23:56:52 +0000594void ASTStmtReader::VisitImplicitCastExpr(ImplicitCastExpr *E) {
Chris Lattner4c6f9522009-04-27 05:14:47 +0000595 VisitCastExpr(E);
Chris Lattner4c6f9522009-04-27 05:14:47 +0000596}
597
Sebastian Redl60adf4a2010-08-18 23:56:52 +0000598void ASTStmtReader::VisitExplicitCastExpr(ExplicitCastExpr *E) {
Chris Lattner4c6f9522009-04-27 05:14:47 +0000599 VisitCastExpr(E);
Sebastian Redlc3632732010-10-05 15:59:54 +0000600 E->setTypeInfoAsWritten(GetTypeSourceInfo(Record, Idx));
Chris Lattner4c6f9522009-04-27 05:14:47 +0000601}
602
Sebastian Redl60adf4a2010-08-18 23:56:52 +0000603void ASTStmtReader::VisitCStyleCastExpr(CStyleCastExpr *E) {
Chris Lattner4c6f9522009-04-27 05:14:47 +0000604 VisitExplicitCastExpr(E);
Sebastian Redlc3632732010-10-05 15:59:54 +0000605 E->setLParenLoc(ReadSourceLocation(Record, Idx));
606 E->setRParenLoc(ReadSourceLocation(Record, Idx));
Chris Lattner4c6f9522009-04-27 05:14:47 +0000607}
608
Sebastian Redl60adf4a2010-08-18 23:56:52 +0000609void ASTStmtReader::VisitCompoundLiteralExpr(CompoundLiteralExpr *E) {
Chris Lattner4c6f9522009-04-27 05:14:47 +0000610 VisitExpr(E);
Sebastian Redlc3632732010-10-05 15:59:54 +0000611 E->setLParenLoc(ReadSourceLocation(Record, Idx));
612 E->setTypeSourceInfo(GetTypeSourceInfo(Record, Idx));
Argyrios Kyrtzidisd98a2ab2010-06-29 22:46:25 +0000613 E->setInitializer(Reader.ReadSubExpr());
Chris Lattner4c6f9522009-04-27 05:14:47 +0000614 E->setFileScope(Record[Idx++]);
Chris Lattner4c6f9522009-04-27 05:14:47 +0000615}
616
Sebastian Redl60adf4a2010-08-18 23:56:52 +0000617void ASTStmtReader::VisitExtVectorElementExpr(ExtVectorElementExpr *E) {
Chris Lattner4c6f9522009-04-27 05:14:47 +0000618 VisitExpr(E);
Argyrios Kyrtzidisd98a2ab2010-06-29 22:46:25 +0000619 E->setBase(Reader.ReadSubExpr());
Douglas Gregor95eab172011-07-28 20:55:49 +0000620 E->setAccessor(Reader.GetIdentifierInfo(F, Record, Idx));
Sebastian Redlc3632732010-10-05 15:59:54 +0000621 E->setAccessorLoc(ReadSourceLocation(Record, Idx));
Chris Lattner4c6f9522009-04-27 05:14:47 +0000622}
623
Sebastian Redl60adf4a2010-08-18 23:56:52 +0000624void ASTStmtReader::VisitInitListExpr(InitListExpr *E) {
Chris Lattner4c6f9522009-04-27 05:14:47 +0000625 VisitExpr(E);
Argyrios Kyrtzidisd98a2ab2010-06-29 22:46:25 +0000626 E->setSyntacticForm(cast_or_null<InitListExpr>(Reader.ReadSubStmt()));
Sebastian Redlc3632732010-10-05 15:59:54 +0000627 E->setLBraceLoc(ReadSourceLocation(Record, Idx));
628 E->setRBraceLoc(ReadSourceLocation(Record, Idx));
Argyrios Kyrtzidis2ac0b7a2011-04-22 05:29:30 +0000629 bool isArrayFiller = Record[Idx++];
630 Expr *filler = 0;
631 if (isArrayFiller) {
632 filler = Reader.ReadSubExpr();
633 E->ArrayFillerOrUnionFieldInit = filler;
634 } else
Douglas Gregor409448c2011-07-21 22:35:25 +0000635 E->ArrayFillerOrUnionFieldInit = ReadDeclAs<FieldDecl>(Record, Idx);
Chris Lattner4c6f9522009-04-27 05:14:47 +0000636 E->sawArrayRangeDesignator(Record[Idx++]);
Benjamin Kramer1b1a5072012-02-27 13:20:39 +0000637 E->setInitializesStdInitializerList(Record[Idx++]);
Argyrios Kyrtzidis2ac0b7a2011-04-22 05:29:30 +0000638 unsigned NumInits = Record[Idx++];
Douglas Gregor35942772011-09-09 21:34:22 +0000639 E->reserveInits(Reader.getContext(), NumInits);
Argyrios Kyrtzidis2ac0b7a2011-04-22 05:29:30 +0000640 if (isArrayFiller) {
641 for (unsigned I = 0; I != NumInits; ++I) {
642 Expr *init = Reader.ReadSubExpr();
Douglas Gregor35942772011-09-09 21:34:22 +0000643 E->updateInit(Reader.getContext(), I, init ? init : filler);
Argyrios Kyrtzidis2ac0b7a2011-04-22 05:29:30 +0000644 }
645 } else {
646 for (unsigned I = 0; I != NumInits; ++I)
Douglas Gregor35942772011-09-09 21:34:22 +0000647 E->updateInit(Reader.getContext(), I, Reader.ReadSubExpr());
Argyrios Kyrtzidis2ac0b7a2011-04-22 05:29:30 +0000648 }
Chris Lattner4c6f9522009-04-27 05:14:47 +0000649}
650
Sebastian Redl60adf4a2010-08-18 23:56:52 +0000651void ASTStmtReader::VisitDesignatedInitExpr(DesignatedInitExpr *E) {
Chris Lattner4c6f9522009-04-27 05:14:47 +0000652 typedef DesignatedInitExpr::Designator Designator;
653
654 VisitExpr(E);
655 unsigned NumSubExprs = Record[Idx++];
656 assert(NumSubExprs == E->getNumSubExprs() && "Wrong number of subexprs");
657 for (unsigned I = 0; I != NumSubExprs; ++I)
Argyrios Kyrtzidisd98a2ab2010-06-29 22:46:25 +0000658 E->setSubExpr(I, Reader.ReadSubExpr());
Sebastian Redlc3632732010-10-05 15:59:54 +0000659 E->setEqualOrColonLoc(ReadSourceLocation(Record, Idx));
Chris Lattner4c6f9522009-04-27 05:14:47 +0000660 E->setGNUSyntax(Record[Idx++]);
661
Chris Lattner5f9e2722011-07-23 10:55:15 +0000662 SmallVector<Designator, 4> Designators;
Chris Lattner4c6f9522009-04-27 05:14:47 +0000663 while (Idx < Record.size()) {
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000664 switch ((DesignatorTypes)Record[Idx++]) {
665 case DESIG_FIELD_DECL: {
Douglas Gregor409448c2011-07-21 22:35:25 +0000666 FieldDecl *Field = ReadDeclAs<FieldDecl>(Record, Idx);
Mike Stump1eb44332009-09-09 15:08:12 +0000667 SourceLocation DotLoc
Sebastian Redlc3632732010-10-05 15:59:54 +0000668 = ReadSourceLocation(Record, Idx);
Mike Stump1eb44332009-09-09 15:08:12 +0000669 SourceLocation FieldLoc
Sebastian Redlc3632732010-10-05 15:59:54 +0000670 = ReadSourceLocation(Record, Idx);
Mike Stump1eb44332009-09-09 15:08:12 +0000671 Designators.push_back(Designator(Field->getIdentifier(), DotLoc,
Chris Lattner4c6f9522009-04-27 05:14:47 +0000672 FieldLoc));
673 Designators.back().setField(Field);
674 break;
675 }
676
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000677 case DESIG_FIELD_NAME: {
Douglas Gregor95eab172011-07-28 20:55:49 +0000678 const IdentifierInfo *Name = Reader.GetIdentifierInfo(F, Record, Idx);
Mike Stump1eb44332009-09-09 15:08:12 +0000679 SourceLocation DotLoc
Sebastian Redlc3632732010-10-05 15:59:54 +0000680 = ReadSourceLocation(Record, Idx);
Mike Stump1eb44332009-09-09 15:08:12 +0000681 SourceLocation FieldLoc
Sebastian Redlc3632732010-10-05 15:59:54 +0000682 = ReadSourceLocation(Record, Idx);
Chris Lattner4c6f9522009-04-27 05:14:47 +0000683 Designators.push_back(Designator(Name, DotLoc, FieldLoc));
684 break;
685 }
Mike Stump1eb44332009-09-09 15:08:12 +0000686
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000687 case DESIG_ARRAY: {
Chris Lattner4c6f9522009-04-27 05:14:47 +0000688 unsigned Index = Record[Idx++];
689 SourceLocation LBracketLoc
Sebastian Redlc3632732010-10-05 15:59:54 +0000690 = ReadSourceLocation(Record, Idx);
Chris Lattner4c6f9522009-04-27 05:14:47 +0000691 SourceLocation RBracketLoc
Sebastian Redlc3632732010-10-05 15:59:54 +0000692 = ReadSourceLocation(Record, Idx);
Chris Lattner4c6f9522009-04-27 05:14:47 +0000693 Designators.push_back(Designator(Index, LBracketLoc, RBracketLoc));
694 break;
695 }
696
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000697 case DESIG_ARRAY_RANGE: {
Chris Lattner4c6f9522009-04-27 05:14:47 +0000698 unsigned Index = Record[Idx++];
699 SourceLocation LBracketLoc
Sebastian Redlc3632732010-10-05 15:59:54 +0000700 = ReadSourceLocation(Record, Idx);
Chris Lattner4c6f9522009-04-27 05:14:47 +0000701 SourceLocation EllipsisLoc
Sebastian Redlc3632732010-10-05 15:59:54 +0000702 = ReadSourceLocation(Record, Idx);
Chris Lattner4c6f9522009-04-27 05:14:47 +0000703 SourceLocation RBracketLoc
Sebastian Redlc3632732010-10-05 15:59:54 +0000704 = ReadSourceLocation(Record, Idx);
Chris Lattner4c6f9522009-04-27 05:14:47 +0000705 Designators.push_back(Designator(Index, LBracketLoc, EllipsisLoc,
706 RBracketLoc));
707 break;
708 }
709 }
710 }
Douglas Gregor35942772011-09-09 21:34:22 +0000711 E->setDesignators(Reader.getContext(),
Douglas Gregor319d57f2010-01-06 23:17:19 +0000712 Designators.data(), Designators.size());
Chris Lattner4c6f9522009-04-27 05:14:47 +0000713}
714
Sebastian Redl60adf4a2010-08-18 23:56:52 +0000715void ASTStmtReader::VisitImplicitValueInitExpr(ImplicitValueInitExpr *E) {
Chris Lattner4c6f9522009-04-27 05:14:47 +0000716 VisitExpr(E);
Chris Lattner4c6f9522009-04-27 05:14:47 +0000717}
718
Sebastian Redl60adf4a2010-08-18 23:56:52 +0000719void ASTStmtReader::VisitVAArgExpr(VAArgExpr *E) {
Chris Lattner4c6f9522009-04-27 05:14:47 +0000720 VisitExpr(E);
Argyrios Kyrtzidisd98a2ab2010-06-29 22:46:25 +0000721 E->setSubExpr(Reader.ReadSubExpr());
Sebastian Redlc3632732010-10-05 15:59:54 +0000722 E->setWrittenTypeInfo(GetTypeSourceInfo(Record, Idx));
723 E->setBuiltinLoc(ReadSourceLocation(Record, Idx));
724 E->setRParenLoc(ReadSourceLocation(Record, Idx));
Chris Lattner4c6f9522009-04-27 05:14:47 +0000725}
726
Sebastian Redl60adf4a2010-08-18 23:56:52 +0000727void ASTStmtReader::VisitAddrLabelExpr(AddrLabelExpr *E) {
Chris Lattner4c6f9522009-04-27 05:14:47 +0000728 VisitExpr(E);
Sebastian Redlc3632732010-10-05 15:59:54 +0000729 E->setAmpAmpLoc(ReadSourceLocation(Record, Idx));
730 E->setLabelLoc(ReadSourceLocation(Record, Idx));
Douglas Gregor409448c2011-07-21 22:35:25 +0000731 E->setLabel(ReadDeclAs<LabelDecl>(Record, Idx));
Chris Lattner4c6f9522009-04-27 05:14:47 +0000732}
733
Sebastian Redl60adf4a2010-08-18 23:56:52 +0000734void ASTStmtReader::VisitStmtExpr(StmtExpr *E) {
Chris Lattner4c6f9522009-04-27 05:14:47 +0000735 VisitExpr(E);
Sebastian Redlc3632732010-10-05 15:59:54 +0000736 E->setLParenLoc(ReadSourceLocation(Record, Idx));
737 E->setRParenLoc(ReadSourceLocation(Record, Idx));
Argyrios Kyrtzidisd98a2ab2010-06-29 22:46:25 +0000738 E->setSubStmt(cast_or_null<CompoundStmt>(Reader.ReadSubStmt()));
Chris Lattner4c6f9522009-04-27 05:14:47 +0000739}
740
Sebastian Redl60adf4a2010-08-18 23:56:52 +0000741void ASTStmtReader::VisitChooseExpr(ChooseExpr *E) {
Chris Lattner4c6f9522009-04-27 05:14:47 +0000742 VisitExpr(E);
Argyrios Kyrtzidisd98a2ab2010-06-29 22:46:25 +0000743 E->setCond(Reader.ReadSubExpr());
744 E->setLHS(Reader.ReadSubExpr());
745 E->setRHS(Reader.ReadSubExpr());
Sebastian Redlc3632732010-10-05 15:59:54 +0000746 E->setBuiltinLoc(ReadSourceLocation(Record, Idx));
747 E->setRParenLoc(ReadSourceLocation(Record, Idx));
Chris Lattner4c6f9522009-04-27 05:14:47 +0000748}
749
Sebastian Redl60adf4a2010-08-18 23:56:52 +0000750void ASTStmtReader::VisitGNUNullExpr(GNUNullExpr *E) {
Chris Lattner4c6f9522009-04-27 05:14:47 +0000751 VisitExpr(E);
Sebastian Redlc3632732010-10-05 15:59:54 +0000752 E->setTokenLocation(ReadSourceLocation(Record, Idx));
Chris Lattner4c6f9522009-04-27 05:14:47 +0000753}
754
Sebastian Redl60adf4a2010-08-18 23:56:52 +0000755void ASTStmtReader::VisitShuffleVectorExpr(ShuffleVectorExpr *E) {
Chris Lattner4c6f9522009-04-27 05:14:47 +0000756 VisitExpr(E);
Chris Lattner5f9e2722011-07-23 10:55:15 +0000757 SmallVector<Expr *, 16> Exprs;
Chris Lattner4c6f9522009-04-27 05:14:47 +0000758 unsigned NumExprs = Record[Idx++];
Argyrios Kyrtzidis919e6932010-06-28 22:28:35 +0000759 while (NumExprs--)
Argyrios Kyrtzidisd98a2ab2010-06-29 22:46:25 +0000760 Exprs.push_back(Reader.ReadSubExpr());
Douglas Gregor35942772011-09-09 21:34:22 +0000761 E->setExprs(Reader.getContext(), Exprs.data(), Exprs.size());
Sebastian Redlc3632732010-10-05 15:59:54 +0000762 E->setBuiltinLoc(ReadSourceLocation(Record, Idx));
763 E->setRParenLoc(ReadSourceLocation(Record, Idx));
Chris Lattner4c6f9522009-04-27 05:14:47 +0000764}
765
Sebastian Redl60adf4a2010-08-18 23:56:52 +0000766void ASTStmtReader::VisitBlockExpr(BlockExpr *E) {
Chris Lattner4c6f9522009-04-27 05:14:47 +0000767 VisitExpr(E);
Douglas Gregor409448c2011-07-21 22:35:25 +0000768 E->setBlockDecl(ReadDeclAs<BlockDecl>(Record, Idx));
Chris Lattner4c6f9522009-04-27 05:14:47 +0000769}
770
Peter Collingbournef111d932011-04-15 00:35:48 +0000771void ASTStmtReader::VisitGenericSelectionExpr(GenericSelectionExpr *E) {
772 VisitExpr(E);
773 E->NumAssocs = Record[Idx++];
Douglas Gregor35942772011-09-09 21:34:22 +0000774 E->AssocTypes = new (Reader.getContext()) TypeSourceInfo*[E->NumAssocs];
Peter Collingbournef111d932011-04-15 00:35:48 +0000775 E->SubExprs =
Douglas Gregor35942772011-09-09 21:34:22 +0000776 new(Reader.getContext()) Stmt*[GenericSelectionExpr::END_EXPR+E->NumAssocs];
Peter Collingbournef111d932011-04-15 00:35:48 +0000777
778 E->SubExprs[GenericSelectionExpr::CONTROLLING] = Reader.ReadSubExpr();
779 for (unsigned I = 0, N = E->getNumAssocs(); I != N; ++I) {
780 E->AssocTypes[I] = GetTypeSourceInfo(Record, Idx);
781 E->SubExprs[GenericSelectionExpr::END_EXPR+I] = Reader.ReadSubExpr();
782 }
783 E->ResultIndex = Record[Idx++];
784
785 E->GenericLoc = ReadSourceLocation(Record, Idx);
786 E->DefaultLoc = ReadSourceLocation(Record, Idx);
787 E->RParenLoc = ReadSourceLocation(Record, Idx);
788}
789
John McCall4b9c2d22011-11-06 09:01:30 +0000790void ASTStmtReader::VisitPseudoObjectExpr(PseudoObjectExpr *E) {
791 VisitExpr(E);
792 unsigned numSemanticExprs = Record[Idx++];
793 assert(numSemanticExprs + 1 == E->PseudoObjectExprBits.NumSubExprs);
794 E->PseudoObjectExprBits.ResultIndex = Record[Idx++];
795
796 // Read the syntactic expression.
797 E->getSubExprsBuffer()[0] = Reader.ReadSubExpr();
798
799 // Read all the semantic expressions.
800 for (unsigned i = 0; i != numSemanticExprs; ++i) {
801 Expr *subExpr = Reader.ReadSubExpr();
John McCall4b9c2d22011-11-06 09:01:30 +0000802 E->getSubExprsBuffer()[i+1] = subExpr;
803 }
804}
805
Eli Friedman276b0612011-10-11 02:20:01 +0000806void ASTStmtReader::VisitAtomicExpr(AtomicExpr *E) {
807 VisitExpr(E);
Richard Smithe1b2abc2012-04-10 22:49:28 +0000808 E->Op = AtomicExpr::AtomicOp(Record[Idx++]);
809 E->NumSubExprs = AtomicExpr::getNumSubExprs(E->Op);
810 for (unsigned I = 0; I != E->NumSubExprs; ++I)
811 E->SubExprs[I] = Reader.ReadSubExpr();
812 E->BuiltinLoc = ReadSourceLocation(Record, Idx);
813 E->RParenLoc = ReadSourceLocation(Record, Idx);
Eli Friedman276b0612011-10-11 02:20:01 +0000814}
815
Chris Lattner4c6f9522009-04-27 05:14:47 +0000816//===----------------------------------------------------------------------===//
817// Objective-C Expressions and Statements
818
Sebastian Redl60adf4a2010-08-18 23:56:52 +0000819void ASTStmtReader::VisitObjCStringLiteral(ObjCStringLiteral *E) {
Chris Lattner4c6f9522009-04-27 05:14:47 +0000820 VisitExpr(E);
Argyrios Kyrtzidisd98a2ab2010-06-29 22:46:25 +0000821 E->setString(cast<StringLiteral>(Reader.ReadSubStmt()));
Sebastian Redlc3632732010-10-05 15:59:54 +0000822 E->setAtLoc(ReadSourceLocation(Record, Idx));
Chris Lattner4c6f9522009-04-27 05:14:47 +0000823}
824
Patrick Beardeb382ec2012-04-19 00:25:12 +0000825void ASTStmtReader::VisitObjCBoxedExpr(ObjCBoxedExpr *E) {
Ted Kremenekebcb57a2012-03-06 20:05:56 +0000826 VisitExpr(E);
827 // could be one of several IntegerLiteral, FloatLiteral, etc.
Patrick Beardeb382ec2012-04-19 00:25:12 +0000828 E->SubExpr = Reader.ReadSubStmt();
829 E->BoxingMethod = ReadDeclAs<ObjCMethodDecl>(Record, Idx);
830 E->Range = ReadSourceRange(Record, Idx);
Ted Kremenekebcb57a2012-03-06 20:05:56 +0000831}
832
833void ASTStmtReader::VisitObjCArrayLiteral(ObjCArrayLiteral *E) {
834 VisitExpr(E);
835 unsigned NumElements = Record[Idx++];
836 assert(NumElements == E->getNumElements() && "Wrong number of elements");
837 Expr **Elements = E->getElements();
838 for (unsigned I = 0, N = NumElements; I != N; ++I)
839 Elements[I] = Reader.ReadSubExpr();
840 E->ArrayWithObjectsMethod = ReadDeclAs<ObjCMethodDecl>(Record, Idx);
841 E->Range = ReadSourceRange(Record, Idx);
842}
843
844void ASTStmtReader::VisitObjCDictionaryLiteral(ObjCDictionaryLiteral *E) {
845 VisitExpr(E);
846 unsigned NumElements = Record[Idx++];
847 assert(NumElements == E->getNumElements() && "Wrong number of elements");
848 bool HasPackExpansions = Record[Idx++];
849 assert(HasPackExpansions == E->HasPackExpansions &&"Pack expansion mismatch");
850 ObjCDictionaryLiteral::KeyValuePair *KeyValues = E->getKeyValues();
851 ObjCDictionaryLiteral::ExpansionData *Expansions = E->getExpansionData();
852 for (unsigned I = 0; I != NumElements; ++I) {
853 KeyValues[I].Key = Reader.ReadSubExpr();
854 KeyValues[I].Value = Reader.ReadSubExpr();
855 if (HasPackExpansions) {
856 Expansions[I].EllipsisLoc = ReadSourceLocation(Record, Idx);
857 Expansions[I].NumExpansionsPlusOne = Record[Idx++];
858 }
859 }
860 E->DictWithObjectsMethod = ReadDeclAs<ObjCMethodDecl>(Record, Idx);
861 E->Range = ReadSourceRange(Record, Idx);
862}
863
Sebastian Redl60adf4a2010-08-18 23:56:52 +0000864void ASTStmtReader::VisitObjCEncodeExpr(ObjCEncodeExpr *E) {
Chris Lattner4c6f9522009-04-27 05:14:47 +0000865 VisitExpr(E);
Sebastian Redlc3632732010-10-05 15:59:54 +0000866 E->setEncodedTypeSourceInfo(GetTypeSourceInfo(Record, Idx));
867 E->setAtLoc(ReadSourceLocation(Record, Idx));
868 E->setRParenLoc(ReadSourceLocation(Record, Idx));
Chris Lattner4c6f9522009-04-27 05:14:47 +0000869}
870
Sebastian Redl60adf4a2010-08-18 23:56:52 +0000871void ASTStmtReader::VisitObjCSelectorExpr(ObjCSelectorExpr *E) {
Chris Lattner4c6f9522009-04-27 05:14:47 +0000872 VisitExpr(E);
Douglas Gregor2d2689a2011-07-28 21:16:51 +0000873 E->setSelector(Reader.ReadSelector(F, Record, Idx));
Sebastian Redlc3632732010-10-05 15:59:54 +0000874 E->setAtLoc(ReadSourceLocation(Record, Idx));
875 E->setRParenLoc(ReadSourceLocation(Record, Idx));
Chris Lattner4c6f9522009-04-27 05:14:47 +0000876}
877
Sebastian Redl60adf4a2010-08-18 23:56:52 +0000878void ASTStmtReader::VisitObjCProtocolExpr(ObjCProtocolExpr *E) {
Chris Lattner4c6f9522009-04-27 05:14:47 +0000879 VisitExpr(E);
Douglas Gregor409448c2011-07-21 22:35:25 +0000880 E->setProtocol(ReadDeclAs<ObjCProtocolDecl>(Record, Idx));
Sebastian Redlc3632732010-10-05 15:59:54 +0000881 E->setAtLoc(ReadSourceLocation(Record, Idx));
Argyrios Kyrtzidis7d24e282012-05-16 00:50:02 +0000882 E->ProtoLoc = ReadSourceLocation(Record, Idx);
Sebastian Redlc3632732010-10-05 15:59:54 +0000883 E->setRParenLoc(ReadSourceLocation(Record, Idx));
Chris Lattner4c6f9522009-04-27 05:14:47 +0000884}
885
Sebastian Redl60adf4a2010-08-18 23:56:52 +0000886void ASTStmtReader::VisitObjCIvarRefExpr(ObjCIvarRefExpr *E) {
Chris Lattner4c6f9522009-04-27 05:14:47 +0000887 VisitExpr(E);
Douglas Gregor409448c2011-07-21 22:35:25 +0000888 E->setDecl(ReadDeclAs<ObjCIvarDecl>(Record, Idx));
Sebastian Redlc3632732010-10-05 15:59:54 +0000889 E->setLocation(ReadSourceLocation(Record, Idx));
Argyrios Kyrtzidisd98a2ab2010-06-29 22:46:25 +0000890 E->setBase(Reader.ReadSubExpr());
Chris Lattner4c6f9522009-04-27 05:14:47 +0000891 E->setIsArrow(Record[Idx++]);
892 E->setIsFreeIvar(Record[Idx++]);
Chris Lattner4c6f9522009-04-27 05:14:47 +0000893}
894
Sebastian Redl60adf4a2010-08-18 23:56:52 +0000895void ASTStmtReader::VisitObjCPropertyRefExpr(ObjCPropertyRefExpr *E) {
Chris Lattner4c6f9522009-04-27 05:14:47 +0000896 VisitExpr(E);
Argyrios Kyrtzidisb085d892012-03-30 00:19:18 +0000897 unsigned MethodRefFlags = Record[Idx++];
John McCall12f78a62010-12-02 01:19:52 +0000898 bool Implicit = Record[Idx++] != 0;
899 if (Implicit) {
Douglas Gregor409448c2011-07-21 22:35:25 +0000900 ObjCMethodDecl *Getter = ReadDeclAs<ObjCMethodDecl>(Record, Idx);
901 ObjCMethodDecl *Setter = ReadDeclAs<ObjCMethodDecl>(Record, Idx);
Argyrios Kyrtzidisb085d892012-03-30 00:19:18 +0000902 E->setImplicitProperty(Getter, Setter, MethodRefFlags);
John McCall12f78a62010-12-02 01:19:52 +0000903 } else {
Argyrios Kyrtzidisb085d892012-03-30 00:19:18 +0000904 E->setExplicitProperty(ReadDeclAs<ObjCPropertyDecl>(Record, Idx),
905 MethodRefFlags);
Fariborz Jahanian8ac2d442010-10-14 16:04:05 +0000906 }
Sebastian Redlc3632732010-10-05 15:59:54 +0000907 E->setLocation(ReadSourceLocation(Record, Idx));
John McCall12f78a62010-12-02 01:19:52 +0000908 E->setReceiverLocation(ReadSourceLocation(Record, Idx));
909 switch (Record[Idx++]) {
910 case 0:
911 E->setBase(Reader.ReadSubExpr());
912 break;
913 case 1:
Douglas Gregor393f2492011-07-22 00:38:23 +0000914 E->setSuperReceiver(Reader.readType(F, Record, Idx));
John McCall12f78a62010-12-02 01:19:52 +0000915 break;
916 case 2:
Douglas Gregor409448c2011-07-21 22:35:25 +0000917 E->setClassReceiver(ReadDeclAs<ObjCInterfaceDecl>(Record, Idx));
John McCall12f78a62010-12-02 01:19:52 +0000918 break;
919 }
Chris Lattner4c6f9522009-04-27 05:14:47 +0000920}
921
Ted Kremenekebcb57a2012-03-06 20:05:56 +0000922void ASTStmtReader::VisitObjCSubscriptRefExpr(ObjCSubscriptRefExpr *E) {
923 VisitExpr(E);
924 E->setRBracket(ReadSourceLocation(Record, Idx));
925 E->setBaseExpr(Reader.ReadSubExpr());
926 E->setKeyExpr(Reader.ReadSubExpr());
927 E->GetAtIndexMethodDecl = ReadDeclAs<ObjCMethodDecl>(Record, Idx);
928 E->SetAtIndexMethodDecl = ReadDeclAs<ObjCMethodDecl>(Record, Idx);
929}
930
Sebastian Redl60adf4a2010-08-18 23:56:52 +0000931void ASTStmtReader::VisitObjCMessageExpr(ObjCMessageExpr *E) {
Chris Lattner4c6f9522009-04-27 05:14:47 +0000932 VisitExpr(E);
Douglas Gregor04badcf2010-04-21 00:45:42 +0000933 assert(Record[Idx] == E->getNumArgs());
934 ++Idx;
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +0000935 unsigned NumStoredSelLocs = Record[Idx++];
936 E->SelLocsKind = Record[Idx++];
John McCallf85e1932011-06-15 23:02:42 +0000937 E->setDelegateInitCall(Record[Idx++]);
Argyrios Kyrtzidis746f5bc2012-01-12 02:34:39 +0000938 E->IsImplicit = Record[Idx++];
Douglas Gregor04badcf2010-04-21 00:45:42 +0000939 ObjCMessageExpr::ReceiverKind Kind
940 = static_cast<ObjCMessageExpr::ReceiverKind>(Record[Idx++]);
941 switch (Kind) {
942 case ObjCMessageExpr::Instance:
Argyrios Kyrtzidisd98a2ab2010-06-29 22:46:25 +0000943 E->setInstanceReceiver(Reader.ReadSubExpr());
Douglas Gregor04badcf2010-04-21 00:45:42 +0000944 break;
945
946 case ObjCMessageExpr::Class:
Sebastian Redlc3632732010-10-05 15:59:54 +0000947 E->setClassReceiver(GetTypeSourceInfo(Record, Idx));
Douglas Gregor04badcf2010-04-21 00:45:42 +0000948 break;
949
950 case ObjCMessageExpr::SuperClass:
951 case ObjCMessageExpr::SuperInstance: {
Douglas Gregor393f2492011-07-22 00:38:23 +0000952 QualType T = Reader.readType(F, Record, Idx);
Sebastian Redlc3632732010-10-05 15:59:54 +0000953 SourceLocation SuperLoc = ReadSourceLocation(Record, Idx);
Douglas Gregor04badcf2010-04-21 00:45:42 +0000954 E->setSuper(SuperLoc, T, Kind == ObjCMessageExpr::SuperInstance);
955 break;
956 }
957 }
958
959 assert(Kind == E->getReceiverKind());
960
961 if (Record[Idx++])
Douglas Gregor409448c2011-07-21 22:35:25 +0000962 E->setMethodDecl(ReadDeclAs<ObjCMethodDecl>(Record, Idx));
Douglas Gregor04badcf2010-04-21 00:45:42 +0000963 else
Douglas Gregor2d2689a2011-07-28 21:16:51 +0000964 E->setSelector(Reader.ReadSelector(F, Record, Idx));
Douglas Gregor04badcf2010-04-21 00:45:42 +0000965
Argyrios Kyrtzidisf40f0d52010-12-10 20:08:27 +0000966 E->LBracLoc = ReadSourceLocation(Record, Idx);
967 E->RBracLoc = ReadSourceLocation(Record, Idx);
Chris Lattner4c6f9522009-04-27 05:14:47 +0000968
969 for (unsigned I = 0, N = E->getNumArgs(); I != N; ++I)
Argyrios Kyrtzidisd98a2ab2010-06-29 22:46:25 +0000970 E->setArg(I, Reader.ReadSubExpr());
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +0000971
972 SourceLocation *Locs = E->getStoredSelLocs();
973 for (unsigned I = 0; I != NumStoredSelLocs; ++I)
974 Locs[I] = ReadSourceLocation(Record, Idx);
Chris Lattner4c6f9522009-04-27 05:14:47 +0000975}
976
Sebastian Redl60adf4a2010-08-18 23:56:52 +0000977void ASTStmtReader::VisitObjCForCollectionStmt(ObjCForCollectionStmt *S) {
Chris Lattner4c6f9522009-04-27 05:14:47 +0000978 VisitStmt(S);
Argyrios Kyrtzidisd98a2ab2010-06-29 22:46:25 +0000979 S->setElement(Reader.ReadSubStmt());
980 S->setCollection(Reader.ReadSubExpr());
981 S->setBody(Reader.ReadSubStmt());
Sebastian Redlc3632732010-10-05 15:59:54 +0000982 S->setForLoc(ReadSourceLocation(Record, Idx));
983 S->setRParenLoc(ReadSourceLocation(Record, Idx));
Chris Lattner4c6f9522009-04-27 05:14:47 +0000984}
985
Sebastian Redl60adf4a2010-08-18 23:56:52 +0000986void ASTStmtReader::VisitObjCAtCatchStmt(ObjCAtCatchStmt *S) {
Chris Lattner4c6f9522009-04-27 05:14:47 +0000987 VisitStmt(S);
Argyrios Kyrtzidisd98a2ab2010-06-29 22:46:25 +0000988 S->setCatchBody(Reader.ReadSubStmt());
Douglas Gregor409448c2011-07-21 22:35:25 +0000989 S->setCatchParamDecl(ReadDeclAs<VarDecl>(Record, Idx));
Sebastian Redlc3632732010-10-05 15:59:54 +0000990 S->setAtCatchLoc(ReadSourceLocation(Record, Idx));
991 S->setRParenLoc(ReadSourceLocation(Record, Idx));
Chris Lattner4c6f9522009-04-27 05:14:47 +0000992}
993
Sebastian Redl60adf4a2010-08-18 23:56:52 +0000994void ASTStmtReader::VisitObjCAtFinallyStmt(ObjCAtFinallyStmt *S) {
Chris Lattner4c6f9522009-04-27 05:14:47 +0000995 VisitStmt(S);
Argyrios Kyrtzidisd98a2ab2010-06-29 22:46:25 +0000996 S->setFinallyBody(Reader.ReadSubStmt());
Sebastian Redlc3632732010-10-05 15:59:54 +0000997 S->setAtFinallyLoc(ReadSourceLocation(Record, Idx));
Chris Lattner4c6f9522009-04-27 05:14:47 +0000998}
999
John McCallf85e1932011-06-15 23:02:42 +00001000void ASTStmtReader::VisitObjCAutoreleasePoolStmt(ObjCAutoreleasePoolStmt *S) {
1001 VisitStmt(S);
1002 S->setSubStmt(Reader.ReadSubStmt());
1003 S->setAtLoc(ReadSourceLocation(Record, Idx));
1004}
1005
Sebastian Redl60adf4a2010-08-18 23:56:52 +00001006void ASTStmtReader::VisitObjCAtTryStmt(ObjCAtTryStmt *S) {
Chris Lattner4c6f9522009-04-27 05:14:47 +00001007 VisitStmt(S);
Douglas Gregor8f5e3dd2010-04-23 22:50:49 +00001008 assert(Record[Idx] == S->getNumCatchStmts());
1009 ++Idx;
1010 bool HasFinally = Record[Idx++];
Argyrios Kyrtzidisd98a2ab2010-06-29 22:46:25 +00001011 S->setTryBody(Reader.ReadSubStmt());
Argyrios Kyrtzidis919e6932010-06-28 22:28:35 +00001012 for (unsigned I = 0, N = S->getNumCatchStmts(); I != N; ++I)
Argyrios Kyrtzidisd98a2ab2010-06-29 22:46:25 +00001013 S->setCatchStmt(I, cast_or_null<ObjCAtCatchStmt>(Reader.ReadSubStmt()));
Douglas Gregor8f5e3dd2010-04-23 22:50:49 +00001014
Douglas Gregor8f5e3dd2010-04-23 22:50:49 +00001015 if (HasFinally)
Argyrios Kyrtzidisd98a2ab2010-06-29 22:46:25 +00001016 S->setFinallyStmt(Reader.ReadSubStmt());
Sebastian Redlc3632732010-10-05 15:59:54 +00001017 S->setAtTryLoc(ReadSourceLocation(Record, Idx));
Chris Lattner4c6f9522009-04-27 05:14:47 +00001018}
1019
Sebastian Redl60adf4a2010-08-18 23:56:52 +00001020void ASTStmtReader::VisitObjCAtSynchronizedStmt(ObjCAtSynchronizedStmt *S) {
Chris Lattner4c6f9522009-04-27 05:14:47 +00001021 VisitStmt(S);
Argyrios Kyrtzidisd98a2ab2010-06-29 22:46:25 +00001022 S->setSynchExpr(Reader.ReadSubStmt());
1023 S->setSynchBody(Reader.ReadSubStmt());
Sebastian Redlc3632732010-10-05 15:59:54 +00001024 S->setAtSynchronizedLoc(ReadSourceLocation(Record, Idx));
Chris Lattner4c6f9522009-04-27 05:14:47 +00001025}
1026
Sebastian Redl60adf4a2010-08-18 23:56:52 +00001027void ASTStmtReader::VisitObjCAtThrowStmt(ObjCAtThrowStmt *S) {
Chris Lattner4c6f9522009-04-27 05:14:47 +00001028 VisitStmt(S);
Argyrios Kyrtzidisd98a2ab2010-06-29 22:46:25 +00001029 S->setThrowExpr(Reader.ReadSubStmt());
Sebastian Redlc3632732010-10-05 15:59:54 +00001030 S->setThrowLoc(ReadSourceLocation(Record, Idx));
Chris Lattner4c6f9522009-04-27 05:14:47 +00001031}
1032
Ted Kremenekebcb57a2012-03-06 20:05:56 +00001033void ASTStmtReader::VisitObjCBoolLiteralExpr(ObjCBoolLiteralExpr *E) {
1034 VisitExpr(E);
1035 E->setValue(Record[Idx++]);
1036 E->setLocation(ReadSourceLocation(Record, Idx));
1037}
1038
Argyrios Kyrtzidisba0a9002009-07-14 03:19:21 +00001039//===----------------------------------------------------------------------===//
1040// C++ Expressions and Statements
Argyrios Kyrtzidis7cb45e32010-07-22 16:03:56 +00001041//===----------------------------------------------------------------------===//
1042
Sebastian Redl60adf4a2010-08-18 23:56:52 +00001043void ASTStmtReader::VisitCXXCatchStmt(CXXCatchStmt *S) {
Argyrios Kyrtzidis7cb45e32010-07-22 16:03:56 +00001044 VisitStmt(S);
Sebastian Redlc3632732010-10-05 15:59:54 +00001045 S->CatchLoc = ReadSourceLocation(Record, Idx);
Douglas Gregor409448c2011-07-21 22:35:25 +00001046 S->ExceptionDecl = ReadDeclAs<VarDecl>(Record, Idx);
Argyrios Kyrtzidis7cb45e32010-07-22 16:03:56 +00001047 S->HandlerBlock = Reader.ReadSubStmt();
1048}
1049
Sebastian Redl60adf4a2010-08-18 23:56:52 +00001050void ASTStmtReader::VisitCXXTryStmt(CXXTryStmt *S) {
Argyrios Kyrtzidis7cb45e32010-07-22 16:03:56 +00001051 VisitStmt(S);
1052 assert(Record[Idx] == S->getNumHandlers() && "NumStmtFields is wrong ?");
1053 ++Idx;
Sebastian Redlc3632732010-10-05 15:59:54 +00001054 S->TryLoc = ReadSourceLocation(Record, Idx);
Argyrios Kyrtzidis7cb45e32010-07-22 16:03:56 +00001055 S->getStmts()[0] = Reader.ReadSubStmt();
1056 for (unsigned i = 0, e = S->getNumHandlers(); i != e; ++i)
1057 S->getStmts()[i + 1] = Reader.ReadSubStmt();
1058}
Argyrios Kyrtzidisba0a9002009-07-14 03:19:21 +00001059
Richard Smithad762fc2011-04-14 22:09:26 +00001060void ASTStmtReader::VisitCXXForRangeStmt(CXXForRangeStmt *S) {
1061 VisitStmt(S);
1062 S->setForLoc(ReadSourceLocation(Record, Idx));
1063 S->setColonLoc(ReadSourceLocation(Record, Idx));
1064 S->setRParenLoc(ReadSourceLocation(Record, Idx));
1065 S->setRangeStmt(Reader.ReadSubStmt());
1066 S->setBeginEndStmt(Reader.ReadSubStmt());
1067 S->setCond(Reader.ReadSubExpr());
1068 S->setInc(Reader.ReadSubExpr());
1069 S->setLoopVarStmt(Reader.ReadSubStmt());
1070 S->setBody(Reader.ReadSubStmt());
1071}
1072
Douglas Gregorba0513d2011-10-25 01:33:02 +00001073void ASTStmtReader::VisitMSDependentExistsStmt(MSDependentExistsStmt *S) {
1074 VisitStmt(S);
1075 S->KeywordLoc = ReadSourceLocation(Record, Idx);
1076 S->IsIfExists = Record[Idx++];
1077 S->QualifierLoc = Reader.ReadNestedNameSpecifierLoc(F, Record, Idx);
1078 ReadDeclarationNameInfo(S->NameInfo, Record, Idx);
1079 S->SubStmt = Reader.ReadSubStmt();
1080}
1081
Sebastian Redl60adf4a2010-08-18 23:56:52 +00001082void ASTStmtReader::VisitCXXOperatorCallExpr(CXXOperatorCallExpr *E) {
Argyrios Kyrtzidis919e6932010-06-28 22:28:35 +00001083 VisitCallExpr(E);
Argyrios Kyrtzidis4548ca22012-04-30 22:12:22 +00001084 E->Operator = (OverloadedOperatorKind)Record[Idx++];
1085 E->Range = Reader.ReadSourceRange(F, Record, Idx);
Argyrios Kyrtzidisba0a9002009-07-14 03:19:21 +00001086}
1087
Sebastian Redl60adf4a2010-08-18 23:56:52 +00001088void ASTStmtReader::VisitCXXConstructExpr(CXXConstructExpr *E) {
Douglas Gregor39da0b82009-09-09 23:08:42 +00001089 VisitExpr(E);
Argyrios Kyrtzidis6d00c132010-07-10 11:46:15 +00001090 E->NumArgs = Record[Idx++];
1091 if (E->NumArgs)
Douglas Gregor35942772011-09-09 21:34:22 +00001092 E->Args = new (Reader.getContext()) Stmt*[E->NumArgs];
Argyrios Kyrtzidis5e1b7c22010-06-24 08:57:09 +00001093 for (unsigned I = 0, N = E->getNumArgs(); I != N; ++I)
Argyrios Kyrtzidisd98a2ab2010-06-29 22:46:25 +00001094 E->setArg(I, Reader.ReadSubExpr());
Douglas Gregor409448c2011-07-21 22:35:25 +00001095 E->setConstructor(ReadDeclAs<CXXConstructorDecl>(Record, Idx));
Sebastian Redlc3632732010-10-05 15:59:54 +00001096 E->setLocation(ReadSourceLocation(Record, Idx));
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00001097 E->setElidable(Record[Idx++]);
1098 E->setHadMultipleCandidates(Record[Idx++]);
Douglas Gregor16006c92009-12-16 18:50:27 +00001099 E->setRequiresZeroInitialization(Record[Idx++]);
Douglas Gregor3c9034c2010-05-15 00:13:29 +00001100 E->setConstructionKind((CXXConstructExpr::ConstructionKind)Record[Idx++]);
Chandler Carruth428edaf2010-10-25 08:47:36 +00001101 E->ParenRange = ReadSourceRange(Record, Idx);
Douglas Gregor39da0b82009-09-09 23:08:42 +00001102}
Chris Lattner4c6f9522009-04-27 05:14:47 +00001103
Sebastian Redl60adf4a2010-08-18 23:56:52 +00001104void ASTStmtReader::VisitCXXTemporaryObjectExpr(CXXTemporaryObjectExpr *E) {
Argyrios Kyrtzidis6d00c132010-07-10 11:46:15 +00001105 VisitCXXConstructExpr(E);
Sebastian Redlc3632732010-10-05 15:59:54 +00001106 E->Type = GetTypeSourceInfo(Record, Idx);
Argyrios Kyrtzidis6d00c132010-07-10 11:46:15 +00001107}
1108
Douglas Gregor01d08012012-02-07 10:09:13 +00001109void ASTStmtReader::VisitLambdaExpr(LambdaExpr *E) {
1110 VisitExpr(E);
Douglas Gregor9d36f5d2012-02-14 17:54:36 +00001111 unsigned NumCaptures = Record[Idx++];
1112 assert(NumCaptures == E->NumCaptures);(void)NumCaptures;
1113 unsigned NumArrayIndexVars = Record[Idx++];
1114 E->IntroducerRange = ReadSourceRange(Record, Idx);
1115 E->CaptureDefault = static_cast<LambdaCaptureDefault>(Record[Idx++]);
1116 E->ExplicitParams = Record[Idx++];
1117 E->ExplicitResultType = Record[Idx++];
1118 E->ClosingBrace = ReadSourceLocation(Record, Idx);
1119
1120 // Read capture initializers.
1121 for (LambdaExpr::capture_init_iterator C = E->capture_init_begin(),
1122 CEnd = E->capture_init_end();
1123 C != CEnd; ++C)
1124 *C = Reader.ReadSubExpr();
1125
1126 // Read array capture index variables.
1127 if (NumArrayIndexVars > 0) {
1128 unsigned *ArrayIndexStarts = E->getArrayIndexStarts();
1129 for (unsigned I = 0; I != NumCaptures + 1; ++I)
1130 ArrayIndexStarts[I] = Record[Idx++];
1131
1132 VarDecl **ArrayIndexVars = E->getArrayIndexVars();
1133 for (unsigned I = 0; I != NumArrayIndexVars; ++I)
1134 ArrayIndexVars[I] = ReadDeclAs<VarDecl>(Record, Idx);
1135 }
Douglas Gregor01d08012012-02-07 10:09:13 +00001136}
1137
Sebastian Redl60adf4a2010-08-18 23:56:52 +00001138void ASTStmtReader::VisitCXXNamedCastExpr(CXXNamedCastExpr *E) {
Argyrios Kyrtzidis919e6932010-06-28 22:28:35 +00001139 VisitExplicitCastExpr(E);
Douglas Gregor1d5d0b92011-01-12 22:41:29 +00001140 SourceRange R = ReadSourceRange(Record, Idx);
1141 E->Loc = R.getBegin();
1142 E->RParenLoc = R.getEnd();
Sam Weinigce757a72010-01-16 21:21:01 +00001143}
1144
Sebastian Redl60adf4a2010-08-18 23:56:52 +00001145void ASTStmtReader::VisitCXXStaticCastExpr(CXXStaticCastExpr *E) {
Sam Weinigce757a72010-01-16 21:21:01 +00001146 return VisitCXXNamedCastExpr(E);
1147}
1148
Sebastian Redl60adf4a2010-08-18 23:56:52 +00001149void ASTStmtReader::VisitCXXDynamicCastExpr(CXXDynamicCastExpr *E) {
Sam Weinigce757a72010-01-16 21:21:01 +00001150 return VisitCXXNamedCastExpr(E);
1151}
1152
Sebastian Redl60adf4a2010-08-18 23:56:52 +00001153void ASTStmtReader::VisitCXXReinterpretCastExpr(CXXReinterpretCastExpr *E) {
Sam Weinigce757a72010-01-16 21:21:01 +00001154 return VisitCXXNamedCastExpr(E);
1155}
1156
Sebastian Redl60adf4a2010-08-18 23:56:52 +00001157void ASTStmtReader::VisitCXXConstCastExpr(CXXConstCastExpr *E) {
Sam Weinigce757a72010-01-16 21:21:01 +00001158 return VisitCXXNamedCastExpr(E);
1159}
1160
Sebastian Redl60adf4a2010-08-18 23:56:52 +00001161void ASTStmtReader::VisitCXXFunctionalCastExpr(CXXFunctionalCastExpr *E) {
Argyrios Kyrtzidis919e6932010-06-28 22:28:35 +00001162 VisitExplicitCastExpr(E);
Sebastian Redlc3632732010-10-05 15:59:54 +00001163 E->setTypeBeginLoc(ReadSourceLocation(Record, Idx));
1164 E->setRParenLoc(ReadSourceLocation(Record, Idx));
Sam Weinigce757a72010-01-16 21:21:01 +00001165}
1166
Richard Smith9fcce652012-03-07 08:35:16 +00001167void ASTStmtReader::VisitUserDefinedLiteral(UserDefinedLiteral *E) {
1168 VisitCallExpr(E);
1169 E->UDSuffixLoc = ReadSourceLocation(Record, Idx);
1170}
1171
Sebastian Redl60adf4a2010-08-18 23:56:52 +00001172void ASTStmtReader::VisitCXXBoolLiteralExpr(CXXBoolLiteralExpr *E) {
Sam Weinigeb7f9612010-02-07 06:32:43 +00001173 VisitExpr(E);
1174 E->setValue(Record[Idx++]);
Sebastian Redlc3632732010-10-05 15:59:54 +00001175 E->setLocation(ReadSourceLocation(Record, Idx));
Sam Weinigeb7f9612010-02-07 06:32:43 +00001176}
1177
Sebastian Redl60adf4a2010-08-18 23:56:52 +00001178void ASTStmtReader::VisitCXXNullPtrLiteralExpr(CXXNullPtrLiteralExpr *E) {
Sam Weinigeb7f9612010-02-07 06:32:43 +00001179 VisitExpr(E);
Sebastian Redlc3632732010-10-05 15:59:54 +00001180 E->setLocation(ReadSourceLocation(Record, Idx));
Sam Weinigeb7f9612010-02-07 06:32:43 +00001181}
1182
Sebastian Redl60adf4a2010-08-18 23:56:52 +00001183void ASTStmtReader::VisitCXXTypeidExpr(CXXTypeidExpr *E) {
Chris Lattner14ab24f2010-05-09 06:03:39 +00001184 VisitExpr(E);
Sebastian Redlc3632732010-10-05 15:59:54 +00001185 E->setSourceRange(ReadSourceRange(Record, Idx));
Chris Lattner14ab24f2010-05-09 06:03:39 +00001186 if (E->isTypeOperand()) { // typeid(int)
Sebastian Redl577d4792010-07-22 22:43:28 +00001187 E->setTypeOperandSourceInfo(
Sebastian Redlc3632732010-10-05 15:59:54 +00001188 GetTypeSourceInfo(Record, Idx));
Argyrios Kyrtzidis919e6932010-06-28 22:28:35 +00001189 return;
Chris Lattner14ab24f2010-05-09 06:03:39 +00001190 }
1191
1192 // typeid(42+2)
Argyrios Kyrtzidisd98a2ab2010-06-29 22:46:25 +00001193 E->setExprOperand(Reader.ReadSubExpr());
Chris Lattner14ab24f2010-05-09 06:03:39 +00001194}
1195
Sebastian Redl60adf4a2010-08-18 23:56:52 +00001196void ASTStmtReader::VisitCXXThisExpr(CXXThisExpr *E) {
Chris Lattner2fbdfcd2010-05-09 06:15:05 +00001197 VisitExpr(E);
Sebastian Redlc3632732010-10-05 15:59:54 +00001198 E->setLocation(ReadSourceLocation(Record, Idx));
Chris Lattner2fbdfcd2010-05-09 06:15:05 +00001199 E->setImplicit(Record[Idx++]);
Chris Lattner2fbdfcd2010-05-09 06:15:05 +00001200}
1201
Sebastian Redl60adf4a2010-08-18 23:56:52 +00001202void ASTStmtReader::VisitCXXThrowExpr(CXXThrowExpr *E) {
Chris Lattner2fbdfcd2010-05-09 06:15:05 +00001203 VisitExpr(E);
Douglas Gregorbca01b42011-07-06 22:04:06 +00001204 E->ThrowLoc = ReadSourceLocation(Record, Idx);
1205 E->Op = Reader.ReadSubExpr();
1206 E->IsThrownVariableInScope = Record[Idx++];
Chris Lattner2fbdfcd2010-05-09 06:15:05 +00001207}
Chris Lattner14ab24f2010-05-09 06:03:39 +00001208
Sebastian Redl60adf4a2010-08-18 23:56:52 +00001209void ASTStmtReader::VisitCXXDefaultArgExpr(CXXDefaultArgExpr *E) {
Chris Lattner030854b2010-05-09 06:40:08 +00001210 VisitExpr(E);
Argyrios Kyrtzidis8a507332010-07-02 23:30:15 +00001211
Douglas Gregordf226552011-09-23 22:07:41 +00001212 assert((bool)Record[Idx] == E->Param.getInt() && "We messed up at creation ?");
Argyrios Kyrtzidis8a507332010-07-02 23:30:15 +00001213 ++Idx; // HasOtherExprStored and SubExpr was handled during creation.
Douglas Gregor409448c2011-07-21 22:35:25 +00001214 E->Param.setPointer(ReadDeclAs<ParmVarDecl>(Record, Idx));
Sebastian Redlc3632732010-10-05 15:59:54 +00001215 E->Loc = ReadSourceLocation(Record, Idx);
Chris Lattnerd2598362010-05-10 00:25:06 +00001216}
1217
Sebastian Redl60adf4a2010-08-18 23:56:52 +00001218void ASTStmtReader::VisitCXXBindTemporaryExpr(CXXBindTemporaryExpr *E) {
Chris Lattnerd2598362010-05-10 00:25:06 +00001219 VisitExpr(E);
Douglas Gregor409448c2011-07-21 22:35:25 +00001220 E->setTemporary(Reader.ReadCXXTemporary(F, Record, Idx));
Argyrios Kyrtzidisd98a2ab2010-06-29 22:46:25 +00001221 E->setSubExpr(Reader.ReadSubExpr());
Chris Lattnerd2598362010-05-10 00:25:06 +00001222}
1223
Sebastian Redl60adf4a2010-08-18 23:56:52 +00001224void ASTStmtReader::VisitCXXScalarValueInitExpr(CXXScalarValueInitExpr *E) {
Chris Lattner59218632010-05-10 01:22:27 +00001225 VisitExpr(E);
Sebastian Redlc3632732010-10-05 15:59:54 +00001226 E->TypeInfo = GetTypeSourceInfo(Record, Idx);
1227 E->RParenLoc = ReadSourceLocation(Record, Idx);
Chris Lattner59218632010-05-10 01:22:27 +00001228}
1229
Sebastian Redl60adf4a2010-08-18 23:56:52 +00001230void ASTStmtReader::VisitCXXNewExpr(CXXNewExpr *E) {
Chris Lattner59218632010-05-10 01:22:27 +00001231 VisitExpr(E);
John McCall6ec278d2011-01-27 09:37:56 +00001232 E->GlobalNew = Record[Idx++];
Sebastian Redl1548d142012-02-16 11:35:52 +00001233 bool isArray = Record[Idx++];
Sebastian Redl2aed8b82012-02-16 12:22:20 +00001234 E->UsualArrayDeleteWantsSize = Record[Idx++];
Chris Lattner59218632010-05-10 01:22:27 +00001235 unsigned NumPlacementArgs = Record[Idx++];
Sebastian Redl2aed8b82012-02-16 12:22:20 +00001236 E->StoredInitializationStyle = Record[Idx++];
Douglas Gregor409448c2011-07-21 22:35:25 +00001237 E->setOperatorNew(ReadDeclAs<FunctionDecl>(Record, Idx));
1238 E->setOperatorDelete(ReadDeclAs<FunctionDecl>(Record, Idx));
Sebastian Redlc3632732010-10-05 15:59:54 +00001239 E->AllocatedTypeInfo = GetTypeSourceInfo(Record, Idx);
Douglas Gregor83bc2762012-02-20 16:12:14 +00001240 E->TypeIdParens = ReadSourceRange(Record, Idx);
Chandler Carruth428edaf2010-10-25 08:47:36 +00001241 E->StartLoc = ReadSourceLocation(Record, Idx);
Douglas Gregor83bc2762012-02-20 16:12:14 +00001242 E->DirectInitRange = ReadSourceRange(Record, Idx);
Chandler Carruth428edaf2010-10-25 08:47:36 +00001243
Douglas Gregor35942772011-09-09 21:34:22 +00001244 E->AllocateArgsArray(Reader.getContext(), isArray, NumPlacementArgs,
Sebastian Redl2aed8b82012-02-16 12:22:20 +00001245 E->StoredInitializationStyle != 0);
Chris Lattner59218632010-05-10 01:22:27 +00001246
1247 // Install all the subexpressions.
Chris Lattner59218632010-05-10 01:22:27 +00001248 for (CXXNewExpr::raw_arg_iterator I = E->raw_arg_begin(),e = E->raw_arg_end();
1249 I != e; ++I)
Argyrios Kyrtzidisd98a2ab2010-06-29 22:46:25 +00001250 *I = Reader.ReadSubStmt();
Chris Lattner59218632010-05-10 01:22:27 +00001251}
1252
Sebastian Redl60adf4a2010-08-18 23:56:52 +00001253void ASTStmtReader::VisitCXXDeleteExpr(CXXDeleteExpr *E) {
Argyrios Kyrtzidis95fc98c2010-06-22 17:07:59 +00001254 VisitExpr(E);
Argyrios Kyrtzidisf1b89112010-09-13 20:15:40 +00001255 E->GlobalDelete = Record[Idx++];
1256 E->ArrayForm = Record[Idx++];
Argyrios Kyrtzidis4076dac2010-09-13 20:15:54 +00001257 E->ArrayFormAsWritten = Record[Idx++];
John McCall6ec278d2011-01-27 09:37:56 +00001258 E->UsualArrayDeleteWantsSize = Record[Idx++];
Douglas Gregor409448c2011-07-21 22:35:25 +00001259 E->OperatorDelete = ReadDeclAs<FunctionDecl>(Record, Idx);
Argyrios Kyrtzidisf1b89112010-09-13 20:15:40 +00001260 E->Argument = Reader.ReadSubExpr();
Sebastian Redlc3632732010-10-05 15:59:54 +00001261 E->Loc = ReadSourceLocation(Record, Idx);
Argyrios Kyrtzidis95fc98c2010-06-22 17:07:59 +00001262}
Chris Lattnerd2598362010-05-10 00:25:06 +00001263
Sebastian Redl60adf4a2010-08-18 23:56:52 +00001264void ASTStmtReader::VisitCXXPseudoDestructorExpr(CXXPseudoDestructorExpr *E) {
Argyrios Kyrtzidisde4bd182010-06-28 09:32:03 +00001265 VisitExpr(E);
1266
Douglas Gregorf3db29f2011-02-25 18:19:59 +00001267 E->Base = Reader.ReadSubExpr();
1268 E->IsArrow = Record[Idx++];
1269 E->OperatorLoc = ReadSourceLocation(Record, Idx);
1270 E->QualifierLoc = Reader.ReadNestedNameSpecifierLoc(F, Record, Idx);
1271 E->ScopeType = GetTypeSourceInfo(Record, Idx);
1272 E->ColonColonLoc = ReadSourceLocation(Record, Idx);
1273 E->TildeLoc = ReadSourceLocation(Record, Idx);
Argyrios Kyrtzidisde4bd182010-06-28 09:32:03 +00001274
Douglas Gregor95eab172011-07-28 20:55:49 +00001275 IdentifierInfo *II = Reader.GetIdentifierInfo(F, Record, Idx);
Argyrios Kyrtzidisde4bd182010-06-28 09:32:03 +00001276 if (II)
Sebastian Redlc3632732010-10-05 15:59:54 +00001277 E->setDestroyedType(II, ReadSourceLocation(Record, Idx));
Argyrios Kyrtzidisde4bd182010-06-28 09:32:03 +00001278 else
Sebastian Redlc3632732010-10-05 15:59:54 +00001279 E->setDestroyedType(GetTypeSourceInfo(Record, Idx));
Argyrios Kyrtzidisde4bd182010-06-28 09:32:03 +00001280}
1281
John McCall4765fa02010-12-06 08:20:24 +00001282void ASTStmtReader::VisitExprWithCleanups(ExprWithCleanups *E) {
Chris Lattnerd2598362010-05-10 00:25:06 +00001283 VisitExpr(E);
John McCall80ee6e82011-11-10 05:35:25 +00001284
1285 unsigned NumObjects = Record[Idx++];
1286 assert(NumObjects == E->getNumObjects());
1287 for (unsigned i = 0; i != NumObjects; ++i)
1288 E->getObjectsBuffer()[i] = ReadDeclAs<BlockDecl>(Record, Idx);
1289
1290 E->SubExpr = Reader.ReadSubExpr();
Chris Lattner030854b2010-05-09 06:40:08 +00001291}
1292
Argyrios Kyrtzidis919e6932010-06-28 22:28:35 +00001293void
Sebastian Redl60adf4a2010-08-18 23:56:52 +00001294ASTStmtReader::VisitCXXDependentScopeMemberExpr(CXXDependentScopeMemberExpr *E){
Argyrios Kyrtzidis8dfbd8b2010-06-24 08:57:31 +00001295 VisitExpr(E);
Abramo Bagnarae4b92762012-01-27 09:46:47 +00001296
1297 if (Record[Idx++]) // HasTemplateKWAndArgsInfo
1298 ReadTemplateKWAndArgsInfo(*E->getTemplateKWAndArgsInfo(),
1299 /*NumTemplateArgs=*/Record[Idx++]);
Argyrios Kyrtzidis8dfbd8b2010-06-24 08:57:31 +00001300
Douglas Gregor7c3179c2011-02-28 18:50:33 +00001301 E->Base = Reader.ReadSubExpr();
Douglas Gregor393f2492011-07-22 00:38:23 +00001302 E->BaseType = Reader.readType(F, Record, Idx);
Douglas Gregor7c3179c2011-02-28 18:50:33 +00001303 E->IsArrow = Record[Idx++];
1304 E->OperatorLoc = ReadSourceLocation(Record, Idx);
1305 E->QualifierLoc = Reader.ReadNestedNameSpecifierLoc(F, Record, Idx);
Douglas Gregor409448c2011-07-21 22:35:25 +00001306 E->FirstQualifierFoundInScope = ReadDeclAs<NamedDecl>(Record, Idx);
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +00001307 ReadDeclarationNameInfo(E->MemberNameInfo, Record, Idx);
Argyrios Kyrtzidis8dfbd8b2010-06-24 08:57:31 +00001308}
1309
Argyrios Kyrtzidis919e6932010-06-28 22:28:35 +00001310void
Sebastian Redl60adf4a2010-08-18 23:56:52 +00001311ASTStmtReader::VisitDependentScopeDeclRefExpr(DependentScopeDeclRefExpr *E) {
Argyrios Kyrtzidis12dffcd2010-06-28 09:31:56 +00001312 VisitExpr(E);
Abramo Bagnarae4b92762012-01-27 09:46:47 +00001313
1314 if (Record[Idx++]) // HasTemplateKWAndArgsInfo
1315 ReadTemplateKWAndArgsInfo(*E->getTemplateKWAndArgsInfo(),
1316 /*NumTemplateArgs=*/Record[Idx++]);
Douglas Gregor00cf3cc2011-02-25 20:49:16 +00001317
1318 E->QualifierLoc = Reader.ReadNestedNameSpecifierLoc(F, Record, Idx);
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +00001319 ReadDeclarationNameInfo(E->NameInfo, Record, Idx);
Argyrios Kyrtzidis12dffcd2010-06-28 09:31:56 +00001320}
1321
Argyrios Kyrtzidis919e6932010-06-28 22:28:35 +00001322void
Sebastian Redl60adf4a2010-08-18 23:56:52 +00001323ASTStmtReader::VisitCXXUnresolvedConstructExpr(CXXUnresolvedConstructExpr *E) {
Argyrios Kyrtzidis8dfbd8b2010-06-24 08:57:31 +00001324 VisitExpr(E);
1325 assert(Record[Idx] == E->arg_size() && "Read wrong record during creation ?");
1326 ++Idx; // NumArgs;
1327 for (unsigned I = 0, N = E->arg_size(); I != N; ++I)
Argyrios Kyrtzidisd98a2ab2010-06-29 22:46:25 +00001328 E->setArg(I, Reader.ReadSubExpr());
Sebastian Redlc3632732010-10-05 15:59:54 +00001329 E->Type = GetTypeSourceInfo(Record, Idx);
1330 E->setLParenLoc(ReadSourceLocation(Record, Idx));
1331 E->setRParenLoc(ReadSourceLocation(Record, Idx));
Argyrios Kyrtzidis8dfbd8b2010-06-24 08:57:31 +00001332}
1333
Sebastian Redl60adf4a2010-08-18 23:56:52 +00001334void ASTStmtReader::VisitOverloadExpr(OverloadExpr *E) {
Argyrios Kyrtzidisa77eb082010-06-25 09:03:26 +00001335 VisitExpr(E);
Abramo Bagnarae4b92762012-01-27 09:46:47 +00001336
1337 if (Record[Idx++]) // HasTemplateKWAndArgsInfo
1338 ReadTemplateKWAndArgsInfo(*E->getTemplateKWAndArgsInfo(),
1339 /*NumTemplateArgs=*/Record[Idx++]);
Argyrios Kyrtzidisa77eb082010-06-25 09:03:26 +00001340
1341 unsigned NumDecls = Record[Idx++];
1342 UnresolvedSet<8> Decls;
1343 for (unsigned i = 0; i != NumDecls; ++i) {
Douglas Gregor409448c2011-07-21 22:35:25 +00001344 NamedDecl *D = ReadDeclAs<NamedDecl>(Record, Idx);
Argyrios Kyrtzidisa77eb082010-06-25 09:03:26 +00001345 AccessSpecifier AS = (AccessSpecifier)Record[Idx++];
1346 Decls.addDecl(D, AS);
1347 }
Douglas Gregor35942772011-09-09 21:34:22 +00001348 E->initializeResults(Reader.getContext(), Decls.begin(), Decls.end());
Argyrios Kyrtzidisa77eb082010-06-25 09:03:26 +00001349
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +00001350 ReadDeclarationNameInfo(E->NameInfo, Record, Idx);
Douglas Gregor4c9be892011-02-28 20:01:57 +00001351 E->QualifierLoc = Reader.ReadNestedNameSpecifierLoc(F, Record, Idx);
Argyrios Kyrtzidisa77eb082010-06-25 09:03:26 +00001352}
1353
Sebastian Redl60adf4a2010-08-18 23:56:52 +00001354void ASTStmtReader::VisitUnresolvedMemberExpr(UnresolvedMemberExpr *E) {
Argyrios Kyrtzidis919e6932010-06-28 22:28:35 +00001355 VisitOverloadExpr(E);
Douglas Gregor4c9be892011-02-28 20:01:57 +00001356 E->IsArrow = Record[Idx++];
1357 E->HasUnresolvedUsing = Record[Idx++];
1358 E->Base = Reader.ReadSubExpr();
Douglas Gregor393f2492011-07-22 00:38:23 +00001359 E->BaseType = Reader.readType(F, Record, Idx);
Douglas Gregor4c9be892011-02-28 20:01:57 +00001360 E->OperatorLoc = ReadSourceLocation(Record, Idx);
Argyrios Kyrtzidisa77eb082010-06-25 09:03:26 +00001361}
1362
Sebastian Redl60adf4a2010-08-18 23:56:52 +00001363void ASTStmtReader::VisitUnresolvedLookupExpr(UnresolvedLookupExpr *E) {
Argyrios Kyrtzidis919e6932010-06-28 22:28:35 +00001364 VisitOverloadExpr(E);
Douglas Gregor4c9be892011-02-28 20:01:57 +00001365 E->RequiresADL = Record[Idx++];
Richard Smithad762fc2011-04-14 22:09:26 +00001366 if (E->RequiresADL)
1367 E->StdIsAssociatedNamespace = Record[Idx++];
Douglas Gregor4c9be892011-02-28 20:01:57 +00001368 E->Overloaded = Record[Idx++];
Douglas Gregor409448c2011-07-21 22:35:25 +00001369 E->NamingClass = ReadDeclAs<CXXRecordDecl>(Record, Idx);
Argyrios Kyrtzidisbd65bb52010-06-25 09:03:34 +00001370}
1371
Sebastian Redl60adf4a2010-08-18 23:56:52 +00001372void ASTStmtReader::VisitUnaryTypeTraitExpr(UnaryTypeTraitExpr *E) {
Argyrios Kyrtzidis6d00c132010-07-10 11:46:15 +00001373 VisitExpr(E);
1374 E->UTT = (UnaryTypeTrait)Record[Idx++];
Sebastian Redl0dfd8482010-09-13 20:56:31 +00001375 E->Value = (bool)Record[Idx++];
Sebastian Redlc3632732010-10-05 15:59:54 +00001376 SourceRange Range = ReadSourceRange(Record, Idx);
Argyrios Kyrtzidis6d00c132010-07-10 11:46:15 +00001377 E->Loc = Range.getBegin();
1378 E->RParen = Range.getEnd();
Sebastian Redlc3632732010-10-05 15:59:54 +00001379 E->QueriedType = GetTypeSourceInfo(Record, Idx);
Argyrios Kyrtzidis6d00c132010-07-10 11:46:15 +00001380}
1381
Francois Pichet6ad6f282010-12-07 00:08:36 +00001382void ASTStmtReader::VisitBinaryTypeTraitExpr(BinaryTypeTraitExpr *E) {
1383 VisitExpr(E);
1384 E->BTT = (BinaryTypeTrait)Record[Idx++];
1385 E->Value = (bool)Record[Idx++];
1386 SourceRange Range = ReadSourceRange(Record, Idx);
1387 E->Loc = Range.getBegin();
1388 E->RParen = Range.getEnd();
1389 E->LhsType = GetTypeSourceInfo(Record, Idx);
1390 E->RhsType = GetTypeSourceInfo(Record, Idx);
1391}
1392
Douglas Gregor4ca8ac22012-02-24 07:38:34 +00001393void ASTStmtReader::VisitTypeTraitExpr(TypeTraitExpr *E) {
1394 VisitExpr(E);
1395 E->TypeTraitExprBits.NumArgs = Record[Idx++];
1396 E->TypeTraitExprBits.Kind = Record[Idx++];
1397 E->TypeTraitExprBits.Value = Record[Idx++];
1398
1399 TypeSourceInfo **Args = E->getTypeSourceInfos();
1400 for (unsigned I = 0, N = E->getNumArgs(); I != N; ++I)
1401 Args[I] = GetTypeSourceInfo(Record, Idx);
1402}
1403
John Wiegley21ff2e52011-04-28 00:16:57 +00001404void ASTStmtReader::VisitArrayTypeTraitExpr(ArrayTypeTraitExpr *E) {
1405 VisitExpr(E);
1406 E->ATT = (ArrayTypeTrait)Record[Idx++];
1407 E->Value = (unsigned int)Record[Idx++];
1408 SourceRange Range = ReadSourceRange(Record, Idx);
1409 E->Loc = Range.getBegin();
1410 E->RParen = Range.getEnd();
1411 E->QueriedType = GetTypeSourceInfo(Record, Idx);
1412}
1413
John Wiegley55262202011-04-25 06:54:41 +00001414void ASTStmtReader::VisitExpressionTraitExpr(ExpressionTraitExpr *E) {
1415 VisitExpr(E);
1416 E->ET = (ExpressionTrait)Record[Idx++];
1417 E->Value = (bool)Record[Idx++];
1418 SourceRange Range = ReadSourceRange(Record, Idx);
1419 E->QueriedExpression = Reader.ReadSubExpr();
1420 E->Loc = Range.getBegin();
1421 E->RParen = Range.getEnd();
1422}
1423
Sebastian Redl6b219d02010-09-10 20:55:54 +00001424void ASTStmtReader::VisitCXXNoexceptExpr(CXXNoexceptExpr *E) {
1425 VisitExpr(E);
Sebastian Redl5221d8f2010-09-10 22:34:40 +00001426 E->Value = (bool)Record[Idx++];
Sebastian Redlc3632732010-10-05 15:59:54 +00001427 E->Range = ReadSourceRange(Record, Idx);
Sebastian Redl5221d8f2010-09-10 22:34:40 +00001428 E->Operand = Reader.ReadSubExpr();
Sebastian Redl6b219d02010-09-10 20:55:54 +00001429}
1430
Douglas Gregorbe230c32011-01-03 17:17:50 +00001431void ASTStmtReader::VisitPackExpansionExpr(PackExpansionExpr *E) {
1432 VisitExpr(E);
1433 E->EllipsisLoc = ReadSourceLocation(Record, Idx);
Douglas Gregor67fd1252011-01-14 21:20:45 +00001434 E->NumExpansions = Record[Idx++];
Douglas Gregorbe230c32011-01-03 17:17:50 +00001435 E->Pattern = Reader.ReadSubExpr();
1436}
1437
Douglas Gregoree8aff02011-01-04 17:33:58 +00001438void ASTStmtReader::VisitSizeOfPackExpr(SizeOfPackExpr *E) {
1439 VisitExpr(E);
1440 E->OperatorLoc = ReadSourceLocation(Record, Idx);
1441 E->PackLoc = ReadSourceLocation(Record, Idx);
1442 E->RParenLoc = ReadSourceLocation(Record, Idx);
1443 E->Length = Record[Idx++];
Douglas Gregor409448c2011-07-21 22:35:25 +00001444 E->Pack = ReadDeclAs<NamedDecl>(Record, Idx);
Douglas Gregoree8aff02011-01-04 17:33:58 +00001445}
1446
John McCall7110fd62011-07-15 07:00:14 +00001447void ASTStmtReader::VisitSubstNonTypeTemplateParmExpr(
1448 SubstNonTypeTemplateParmExpr *E) {
1449 VisitExpr(E);
Douglas Gregor409448c2011-07-21 22:35:25 +00001450 E->Param = ReadDeclAs<NonTypeTemplateParmDecl>(Record, Idx);
John McCall7110fd62011-07-15 07:00:14 +00001451 E->NameLoc = ReadSourceLocation(Record, Idx);
1452 E->Replacement = Reader.ReadSubExpr();
1453}
1454
Douglas Gregorc7793c72011-01-15 01:15:58 +00001455void ASTStmtReader::VisitSubstNonTypeTemplateParmPackExpr(
1456 SubstNonTypeTemplateParmPackExpr *E) {
1457 VisitExpr(E);
Douglas Gregor409448c2011-07-21 22:35:25 +00001458 E->Param = ReadDeclAs<NonTypeTemplateParmDecl>(Record, Idx);
Douglas Gregorc7793c72011-01-15 01:15:58 +00001459 TemplateArgument ArgPack = Reader.ReadTemplateArgument(F, Record, Idx);
1460 if (ArgPack.getKind() != TemplateArgument::Pack)
1461 return;
1462
1463 E->Arguments = ArgPack.pack_begin();
1464 E->NumArguments = ArgPack.pack_size();
1465 E->NameLoc = ReadSourceLocation(Record, Idx);
1466}
1467
Douglas Gregor03e80032011-06-21 17:03:29 +00001468void ASTStmtReader::VisitMaterializeTemporaryExpr(MaterializeTemporaryExpr *E) {
1469 VisitExpr(E);
1470 E->Temporary = Reader.ReadSubExpr();
1471}
1472
John McCall7cd7d1a2010-11-15 23:31:06 +00001473void ASTStmtReader::VisitOpaqueValueExpr(OpaqueValueExpr *E) {
1474 VisitExpr(E);
Argyrios Kyrtzidis8bc27822011-12-03 03:49:52 +00001475 E->SourceExpr = Reader.ReadSubExpr();
Douglas Gregorb608b982011-01-28 02:26:04 +00001476 E->Loc = ReadSourceLocation(Record, Idx);
John McCall7cd7d1a2010-11-15 23:31:06 +00001477}
1478
Peter Collingbournee08ce652011-02-09 21:07:24 +00001479//===----------------------------------------------------------------------===//
John McCall7110fd62011-07-15 07:00:14 +00001480// Microsoft Expressions and Statements
1481//===----------------------------------------------------------------------===//
1482void ASTStmtReader::VisitCXXUuidofExpr(CXXUuidofExpr *E) {
1483 VisitExpr(E);
1484 E->setSourceRange(ReadSourceRange(Record, Idx));
1485 if (E->isTypeOperand()) { // __uuidof(ComType)
1486 E->setTypeOperandSourceInfo(
1487 GetTypeSourceInfo(Record, Idx));
1488 return;
1489 }
1490
1491 // __uuidof(expr)
1492 E->setExprOperand(Reader.ReadSubExpr());
1493}
1494
1495void ASTStmtReader::VisitSEHExceptStmt(SEHExceptStmt *S) {
1496 VisitStmt(S);
1497 S->Loc = ReadSourceLocation(Record, Idx);
1498 S->Children[SEHExceptStmt::FILTER_EXPR] = Reader.ReadSubStmt();
1499 S->Children[SEHExceptStmt::BLOCK] = Reader.ReadSubStmt();
1500}
1501
1502void ASTStmtReader::VisitSEHFinallyStmt(SEHFinallyStmt *S) {
1503 VisitStmt(S);
1504 S->Loc = ReadSourceLocation(Record, Idx);
1505 S->Block = Reader.ReadSubStmt();
1506}
1507
1508void ASTStmtReader::VisitSEHTryStmt(SEHTryStmt *S) {
1509 VisitStmt(S);
1510 S->IsCXXTry = Record[Idx++];
1511 S->TryLoc = ReadSourceLocation(Record, Idx);
1512 S->Children[SEHTryStmt::TRY] = Reader.ReadSubStmt();
1513 S->Children[SEHTryStmt::HANDLER] = Reader.ReadSubStmt();
1514}
1515
1516//===----------------------------------------------------------------------===//
Peter Collingbournee08ce652011-02-09 21:07:24 +00001517// CUDA Expressions and Statements
1518//===----------------------------------------------------------------------===//
1519
1520void ASTStmtReader::VisitCUDAKernelCallExpr(CUDAKernelCallExpr *E) {
1521 VisitCallExpr(E);
1522 E->setConfig(cast<CallExpr>(Reader.ReadSubExpr()));
1523}
1524
John McCall7110fd62011-07-15 07:00:14 +00001525//===----------------------------------------------------------------------===//
1526// OpenCL Expressions and Statements.
1527//===----------------------------------------------------------------------===//
1528void ASTStmtReader::VisitAsTypeExpr(AsTypeExpr *E) {
1529 VisitExpr(E);
1530 E->BuiltinLoc = ReadSourceLocation(Record, Idx);
1531 E->RParenLoc = ReadSourceLocation(Record, Idx);
1532 E->SrcExpr = Reader.ReadSubExpr();
1533}
1534
1535//===----------------------------------------------------------------------===//
1536// ASTReader Implementation
1537//===----------------------------------------------------------------------===//
1538
Douglas Gregor1a4761e2011-11-30 23:21:26 +00001539Stmt *ASTReader::ReadStmt(ModuleFile &F) {
Argyrios Kyrtzidis919e6932010-06-28 22:28:35 +00001540 switch (ReadingKind) {
1541 case Read_Decl:
1542 case Read_Type:
Sebastian Redlc3632732010-10-05 15:59:54 +00001543 return ReadStmtFromStream(F);
Argyrios Kyrtzidis919e6932010-06-28 22:28:35 +00001544 case Read_Stmt:
Argyrios Kyrtzidisd98a2ab2010-06-29 22:46:25 +00001545 return ReadSubStmt();
Argyrios Kyrtzidis919e6932010-06-28 22:28:35 +00001546 }
1547
1548 llvm_unreachable("ReadingKind not set ?");
Argyrios Kyrtzidis919e6932010-06-28 22:28:35 +00001549}
1550
Douglas Gregor1a4761e2011-11-30 23:21:26 +00001551Expr *ASTReader::ReadExpr(ModuleFile &F) {
Sebastian Redlc3632732010-10-05 15:59:54 +00001552 return cast_or_null<Expr>(ReadStmt(F));
Argyrios Kyrtzidis919e6932010-06-28 22:28:35 +00001553}
Chris Lattner030854b2010-05-09 06:40:08 +00001554
Sebastian Redlc43b54c2010-08-18 23:56:43 +00001555Expr *ASTReader::ReadSubExpr() {
Argyrios Kyrtzidisd98a2ab2010-06-29 22:46:25 +00001556 return cast_or_null<Expr>(ReadSubStmt());
1557}
1558
Chris Lattner52e97d12009-04-27 05:41:06 +00001559// Within the bitstream, expressions are stored in Reverse Polish
1560// Notation, with each of the subexpressions preceding the
Argyrios Kyrtzidis919e6932010-06-28 22:28:35 +00001561// expression they are stored in. Subexpressions are stored from last to first.
1562// To evaluate expressions, we continue reading expressions and placing them on
1563// the stack, with expressions having operands removing those operands from the
Chris Lattner52e97d12009-04-27 05:41:06 +00001564// stack. Evaluation terminates when we see a STMT_STOP record, and
1565// the single remaining expression on the stack is our result.
Douglas Gregor1a4761e2011-11-30 23:21:26 +00001566Stmt *ASTReader::ReadStmtFromStream(ModuleFile &F) {
Argyrios Kyrtzidis919e6932010-06-28 22:28:35 +00001567
1568 ReadingKindTracker ReadingKind(Read_Stmt, *this);
Sebastian Redlc3632732010-10-05 15:59:54 +00001569 llvm::BitstreamCursor &Cursor = F.DeclsCursor;
Argyrios Kyrtzidise6f08682011-10-21 23:02:28 +00001570
1571 // Map of offset to previously deserialized stmt. The offset points
1572 /// just after the stmt record.
1573 llvm::DenseMap<uint64_t, Stmt *> StmtEntries;
Sebastian Redlc3632732010-10-05 15:59:54 +00001574
Argyrios Kyrtzidis919e6932010-06-28 22:28:35 +00001575#ifndef NDEBUG
1576 unsigned PrevNumStmts = StmtStack.size();
1577#endif
1578
Chris Lattner4c6f9522009-04-27 05:14:47 +00001579 RecordData Record;
1580 unsigned Idx;
Sebastian Redlc3632732010-10-05 15:59:54 +00001581 ASTStmtReader Reader(*this, F, Cursor, Record, Idx);
Chris Lattner4c6f9522009-04-27 05:14:47 +00001582 Stmt::EmptyShell Empty;
1583
1584 while (true) {
Chris Lattner52e97d12009-04-27 05:41:06 +00001585 unsigned Code = Cursor.ReadCode();
Chris Lattner4c6f9522009-04-27 05:14:47 +00001586 if (Code == llvm::bitc::END_BLOCK) {
Chris Lattner52e97d12009-04-27 05:41:06 +00001587 if (Cursor.ReadBlockEnd()) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00001588 Error("error at end of block in AST file");
Chris Lattner4c6f9522009-04-27 05:14:47 +00001589 return 0;
1590 }
1591 break;
1592 }
1593
1594 if (Code == llvm::bitc::ENTER_SUBBLOCK) {
1595 // No known subblocks, always skip them.
Chris Lattner52e97d12009-04-27 05:41:06 +00001596 Cursor.ReadSubBlockID();
1597 if (Cursor.SkipBlock()) {
Sebastian Redl3c7f4132010-08-18 23:57:06 +00001598 Error("malformed block record in AST file");
Chris Lattner4c6f9522009-04-27 05:14:47 +00001599 return 0;
1600 }
1601 continue;
1602 }
1603
1604 if (Code == llvm::bitc::DEFINE_ABBREV) {
Chris Lattner52e97d12009-04-27 05:41:06 +00001605 Cursor.ReadAbbrevRecord();
Chris Lattner4c6f9522009-04-27 05:14:47 +00001606 continue;
1607 }
1608
1609 Stmt *S = 0;
1610 Idx = 0;
1611 Record.clear();
1612 bool Finished = false;
Argyrios Kyrtzidise6f08682011-10-21 23:02:28 +00001613 bool IsStmtReference = false;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001614 switch ((StmtCode)Cursor.ReadRecord(Code, Record)) {
1615 case STMT_STOP:
Chris Lattner4c6f9522009-04-27 05:14:47 +00001616 Finished = true;
1617 break;
1618
Argyrios Kyrtzidise6f08682011-10-21 23:02:28 +00001619 case STMT_REF_PTR:
1620 IsStmtReference = true;
1621 assert(StmtEntries.find(Record[0]) != StmtEntries.end() &&
1622 "No stmt was recorded for this offset reference!");
1623 S = StmtEntries[Record[Idx++]];
1624 break;
1625
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001626 case STMT_NULL_PTR:
Mike Stump1eb44332009-09-09 15:08:12 +00001627 S = 0;
Chris Lattner4c6f9522009-04-27 05:14:47 +00001628 break;
1629
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001630 case STMT_NULL:
Chris Lattner4c6f9522009-04-27 05:14:47 +00001631 S = new (Context) NullStmt(Empty);
1632 break;
1633
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001634 case STMT_COMPOUND:
Chris Lattner4c6f9522009-04-27 05:14:47 +00001635 S = new (Context) CompoundStmt(Empty);
1636 break;
1637
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001638 case STMT_CASE:
Chris Lattner4c6f9522009-04-27 05:14:47 +00001639 S = new (Context) CaseStmt(Empty);
1640 break;
1641
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001642 case STMT_DEFAULT:
Chris Lattner4c6f9522009-04-27 05:14:47 +00001643 S = new (Context) DefaultStmt(Empty);
1644 break;
1645
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001646 case STMT_LABEL:
Chris Lattner4c6f9522009-04-27 05:14:47 +00001647 S = new (Context) LabelStmt(Empty);
1648 break;
1649
Richard Smith534986f2012-04-14 00:33:13 +00001650 case STMT_ATTRIBUTED:
1651 S = new (Context) AttributedStmt(Empty);
1652 break;
1653
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001654 case STMT_IF:
Chris Lattner4c6f9522009-04-27 05:14:47 +00001655 S = new (Context) IfStmt(Empty);
1656 break;
1657
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001658 case STMT_SWITCH:
Chris Lattner4c6f9522009-04-27 05:14:47 +00001659 S = new (Context) SwitchStmt(Empty);
1660 break;
1661
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001662 case STMT_WHILE:
Chris Lattner4c6f9522009-04-27 05:14:47 +00001663 S = new (Context) WhileStmt(Empty);
1664 break;
1665
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001666 case STMT_DO:
Chris Lattner4c6f9522009-04-27 05:14:47 +00001667 S = new (Context) DoStmt(Empty);
1668 break;
Mike Stump1eb44332009-09-09 15:08:12 +00001669
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001670 case STMT_FOR:
Chris Lattner4c6f9522009-04-27 05:14:47 +00001671 S = new (Context) ForStmt(Empty);
1672 break;
1673
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001674 case STMT_GOTO:
Chris Lattner4c6f9522009-04-27 05:14:47 +00001675 S = new (Context) GotoStmt(Empty);
1676 break;
Mike Stump1eb44332009-09-09 15:08:12 +00001677
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001678 case STMT_INDIRECT_GOTO:
Chris Lattner4c6f9522009-04-27 05:14:47 +00001679 S = new (Context) IndirectGotoStmt(Empty);
1680 break;
1681
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001682 case STMT_CONTINUE:
Chris Lattner4c6f9522009-04-27 05:14:47 +00001683 S = new (Context) ContinueStmt(Empty);
1684 break;
1685
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001686 case STMT_BREAK:
Chris Lattner4c6f9522009-04-27 05:14:47 +00001687 S = new (Context) BreakStmt(Empty);
1688 break;
1689
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001690 case STMT_RETURN:
Chris Lattner4c6f9522009-04-27 05:14:47 +00001691 S = new (Context) ReturnStmt(Empty);
1692 break;
1693
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001694 case STMT_DECL:
Chris Lattner4c6f9522009-04-27 05:14:47 +00001695 S = new (Context) DeclStmt(Empty);
1696 break;
1697
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001698 case STMT_ASM:
Chris Lattner4c6f9522009-04-27 05:14:47 +00001699 S = new (Context) AsmStmt(Empty);
1700 break;
1701
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001702 case EXPR_PREDEFINED:
Chris Lattner4c6f9522009-04-27 05:14:47 +00001703 S = new (Context) PredefinedExpr(Empty);
1704 break;
Mike Stump1eb44332009-09-09 15:08:12 +00001705
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001706 case EXPR_DECL_REF:
Chandler Carruth3aa81402011-05-01 23:48:14 +00001707 S = DeclRefExpr::CreateEmpty(
Douglas Gregor35942772011-09-09 21:34:22 +00001708 Context,
Chandler Carruth3aa81402011-05-01 23:48:14 +00001709 /*HasQualifier=*/Record[ASTStmtReader::NumExprFields],
1710 /*HasFoundDecl=*/Record[ASTStmtReader::NumExprFields + 1],
Abramo Bagnarae4b92762012-01-27 09:46:47 +00001711 /*HasTemplateKWAndArgsInfo=*/Record[ASTStmtReader::NumExprFields + 2],
Chandler Carruth3aa81402011-05-01 23:48:14 +00001712 /*NumTemplateArgs=*/Record[ASTStmtReader::NumExprFields + 2] ?
John McCallf4b88a42012-03-10 09:33:50 +00001713 Record[ASTStmtReader::NumExprFields + 5] : 0);
Chris Lattner4c6f9522009-04-27 05:14:47 +00001714 break;
Mike Stump1eb44332009-09-09 15:08:12 +00001715
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001716 case EXPR_INTEGER_LITERAL:
Douglas Gregor35942772011-09-09 21:34:22 +00001717 S = IntegerLiteral::Create(Context, Empty);
Chris Lattner4c6f9522009-04-27 05:14:47 +00001718 break;
Mike Stump1eb44332009-09-09 15:08:12 +00001719
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001720 case EXPR_FLOATING_LITERAL:
Douglas Gregor35942772011-09-09 21:34:22 +00001721 S = FloatingLiteral::Create(Context, Empty);
Chris Lattner4c6f9522009-04-27 05:14:47 +00001722 break;
Mike Stump1eb44332009-09-09 15:08:12 +00001723
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001724 case EXPR_IMAGINARY_LITERAL:
Chris Lattner4c6f9522009-04-27 05:14:47 +00001725 S = new (Context) ImaginaryLiteral(Empty);
1726 break;
1727
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001728 case EXPR_STRING_LITERAL:
Douglas Gregor35942772011-09-09 21:34:22 +00001729 S = StringLiteral::CreateEmpty(Context,
Sebastian Redl60adf4a2010-08-18 23:56:52 +00001730 Record[ASTStmtReader::NumExprFields + 1]);
Chris Lattner4c6f9522009-04-27 05:14:47 +00001731 break;
1732
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001733 case EXPR_CHARACTER_LITERAL:
Chris Lattner4c6f9522009-04-27 05:14:47 +00001734 S = new (Context) CharacterLiteral(Empty);
1735 break;
1736
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001737 case EXPR_PAREN:
Chris Lattner4c6f9522009-04-27 05:14:47 +00001738 S = new (Context) ParenExpr(Empty);
1739 break;
1740
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001741 case EXPR_PAREN_LIST:
Argyrios Kyrtzidis37bdfe22010-06-30 08:49:18 +00001742 S = new (Context) ParenListExpr(Empty);
1743 break;
1744
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001745 case EXPR_UNARY_OPERATOR:
Chris Lattner4c6f9522009-04-27 05:14:47 +00001746 S = new (Context) UnaryOperator(Empty);
1747 break;
1748
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001749 case EXPR_OFFSETOF:
Douglas Gregor35942772011-09-09 21:34:22 +00001750 S = OffsetOfExpr::CreateEmpty(Context,
Sebastian Redl60adf4a2010-08-18 23:56:52 +00001751 Record[ASTStmtReader::NumExprFields],
1752 Record[ASTStmtReader::NumExprFields + 1]);
Douglas Gregor8ecdb652010-04-28 22:16:22 +00001753 break;
1754
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001755 case EXPR_SIZEOF_ALIGN_OF:
Peter Collingbournef4e3cfb2011-03-11 19:24:49 +00001756 S = new (Context) UnaryExprOrTypeTraitExpr(Empty);
Chris Lattner4c6f9522009-04-27 05:14:47 +00001757 break;
1758
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001759 case EXPR_ARRAY_SUBSCRIPT:
Chris Lattner4c6f9522009-04-27 05:14:47 +00001760 S = new (Context) ArraySubscriptExpr(Empty);
1761 break;
1762
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001763 case EXPR_CALL:
Douglas Gregor35942772011-09-09 21:34:22 +00001764 S = new (Context) CallExpr(Context, Stmt::CallExprClass, Empty);
Chris Lattner4c6f9522009-04-27 05:14:47 +00001765 break;
1766
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001767 case EXPR_MEMBER: {
Argyrios Kyrtzidis663e3802010-07-08 13:09:47 +00001768 // We load everything here and fully initialize it at creation.
1769 // That way we can use MemberExpr::Create and don't have to duplicate its
1770 // logic with a MemberExpr::CreateEmpty.
1771
1772 assert(Idx == 0);
Douglas Gregor40d96a62011-02-28 21:54:11 +00001773 NestedNameSpecifierLoc QualifierLoc;
Argyrios Kyrtzidis663e3802010-07-08 13:09:47 +00001774 if (Record[Idx++]) { // HasQualifier.
Douglas Gregor40d96a62011-02-28 21:54:11 +00001775 QualifierLoc = ReadNestedNameSpecifierLoc(F, Record, Idx);
Argyrios Kyrtzidis663e3802010-07-08 13:09:47 +00001776 }
1777
Abramo Bagnarae4b92762012-01-27 09:46:47 +00001778 SourceLocation TemplateKWLoc;
Argyrios Kyrtzidis663e3802010-07-08 13:09:47 +00001779 TemplateArgumentListInfo ArgInfo;
Abramo Bagnarae4b92762012-01-27 09:46:47 +00001780 bool HasTemplateKWAndArgsInfo = Record[Idx++];
1781 if (HasTemplateKWAndArgsInfo) {
1782 TemplateKWLoc = ReadSourceLocation(F, Record, Idx);
Douglas Gregordef03542011-02-04 12:01:24 +00001783 unsigned NumTemplateArgs = Record[Idx++];
Sebastian Redlc3632732010-10-05 15:59:54 +00001784 ArgInfo.setLAngleLoc(ReadSourceLocation(F, Record, Idx));
1785 ArgInfo.setRAngleLoc(ReadSourceLocation(F, Record, Idx));
Argyrios Kyrtzidis663e3802010-07-08 13:09:47 +00001786 for (unsigned i = 0; i != NumTemplateArgs; ++i)
Sebastian Redlc3632732010-10-05 15:59:54 +00001787 ArgInfo.addArgument(ReadTemplateArgumentLoc(F, Record, Idx));
Argyrios Kyrtzidis663e3802010-07-08 13:09:47 +00001788 }
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00001789
1790 bool HadMultipleCandidates = Record[Idx++];
1791
Douglas Gregor409448c2011-07-21 22:35:25 +00001792 NamedDecl *FoundD = ReadDeclAs<NamedDecl>(F, Record, Idx);
Argyrios Kyrtzidis663e3802010-07-08 13:09:47 +00001793 AccessSpecifier AS = (AccessSpecifier)Record[Idx++];
1794 DeclAccessPair FoundDecl = DeclAccessPair::make(FoundD, AS);
1795
Douglas Gregor393f2492011-07-22 00:38:23 +00001796 QualType T = readType(F, Record, Idx);
John McCallf89e55a2010-11-18 06:31:45 +00001797 ExprValueKind VK = static_cast<ExprValueKind>(Record[Idx++]);
1798 ExprObjectKind OK = static_cast<ExprObjectKind>(Record[Idx++]);
Argyrios Kyrtzidis663e3802010-07-08 13:09:47 +00001799 Expr *Base = ReadSubExpr();
Douglas Gregor409448c2011-07-21 22:35:25 +00001800 ValueDecl *MemberD = ReadDeclAs<ValueDecl>(F, Record, Idx);
Sebastian Redlc3632732010-10-05 15:59:54 +00001801 SourceLocation MemberLoc = ReadSourceLocation(F, Record, Idx);
Abramo Bagnara25777432010-08-11 22:01:17 +00001802 DeclarationNameInfo MemberNameInfo(MemberD->getDeclName(), MemberLoc);
Argyrios Kyrtzidis663e3802010-07-08 13:09:47 +00001803 bool IsArrow = Record[Idx++];
1804
Douglas Gregor35942772011-09-09 21:34:22 +00001805 S = MemberExpr::Create(Context, Base, IsArrow, QualifierLoc,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00001806 TemplateKWLoc, MemberD, FoundDecl, MemberNameInfo,
1807 HasTemplateKWAndArgsInfo ? &ArgInfo : 0,
1808 T, VK, OK);
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +00001809 ReadDeclarationNameLoc(F, cast<MemberExpr>(S)->MemberDNLoc,
1810 MemberD->getDeclName(), Record, Idx);
Abramo Bagnara7cc58b42011-10-05 07:56:41 +00001811 if (HadMultipleCandidates)
1812 cast<MemberExpr>(S)->setHadMultipleCandidates(true);
Chris Lattner4c6f9522009-04-27 05:14:47 +00001813 break;
Argyrios Kyrtzidis663e3802010-07-08 13:09:47 +00001814 }
Chris Lattner4c6f9522009-04-27 05:14:47 +00001815
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001816 case EXPR_BINARY_OPERATOR:
Chris Lattner4c6f9522009-04-27 05:14:47 +00001817 S = new (Context) BinaryOperator(Empty);
1818 break;
1819
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001820 case EXPR_COMPOUND_ASSIGN_OPERATOR:
Chris Lattner4c6f9522009-04-27 05:14:47 +00001821 S = new (Context) CompoundAssignOperator(Empty);
1822 break;
1823
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001824 case EXPR_CONDITIONAL_OPERATOR:
Chris Lattner4c6f9522009-04-27 05:14:47 +00001825 S = new (Context) ConditionalOperator(Empty);
1826 break;
1827
John McCall56ca35d2011-02-17 10:25:35 +00001828 case EXPR_BINARY_CONDITIONAL_OPERATOR:
1829 S = new (Context) BinaryConditionalOperator(Empty);
1830 break;
1831
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001832 case EXPR_IMPLICIT_CAST:
Douglas Gregor35942772011-09-09 21:34:22 +00001833 S = ImplicitCastExpr::CreateEmpty(Context,
Sebastian Redl60adf4a2010-08-18 23:56:52 +00001834 /*PathSize*/ Record[ASTStmtReader::NumExprFields]);
Chris Lattner4c6f9522009-04-27 05:14:47 +00001835 break;
1836
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001837 case EXPR_CSTYLE_CAST:
Douglas Gregor35942772011-09-09 21:34:22 +00001838 S = CStyleCastExpr::CreateEmpty(Context,
Sebastian Redl60adf4a2010-08-18 23:56:52 +00001839 /*PathSize*/ Record[ASTStmtReader::NumExprFields]);
Chris Lattner4c6f9522009-04-27 05:14:47 +00001840 break;
1841
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001842 case EXPR_COMPOUND_LITERAL:
Chris Lattner4c6f9522009-04-27 05:14:47 +00001843 S = new (Context) CompoundLiteralExpr(Empty);
1844 break;
1845
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001846 case EXPR_EXT_VECTOR_ELEMENT:
Chris Lattner4c6f9522009-04-27 05:14:47 +00001847 S = new (Context) ExtVectorElementExpr(Empty);
1848 break;
1849
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001850 case EXPR_INIT_LIST:
Douglas Gregor35942772011-09-09 21:34:22 +00001851 S = new (Context) InitListExpr(getContext(), Empty);
Chris Lattner4c6f9522009-04-27 05:14:47 +00001852 break;
1853
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001854 case EXPR_DESIGNATED_INIT:
Douglas Gregor35942772011-09-09 21:34:22 +00001855 S = DesignatedInitExpr::CreateEmpty(Context,
Sebastian Redl60adf4a2010-08-18 23:56:52 +00001856 Record[ASTStmtReader::NumExprFields] - 1);
Mike Stump1eb44332009-09-09 15:08:12 +00001857
Chris Lattner4c6f9522009-04-27 05:14:47 +00001858 break;
1859
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001860 case EXPR_IMPLICIT_VALUE_INIT:
Chris Lattner4c6f9522009-04-27 05:14:47 +00001861 S = new (Context) ImplicitValueInitExpr(Empty);
1862 break;
1863
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001864 case EXPR_VA_ARG:
Chris Lattner4c6f9522009-04-27 05:14:47 +00001865 S = new (Context) VAArgExpr(Empty);
1866 break;
1867
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001868 case EXPR_ADDR_LABEL:
Chris Lattner4c6f9522009-04-27 05:14:47 +00001869 S = new (Context) AddrLabelExpr(Empty);
1870 break;
1871
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001872 case EXPR_STMT:
Chris Lattner4c6f9522009-04-27 05:14:47 +00001873 S = new (Context) StmtExpr(Empty);
1874 break;
1875
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001876 case EXPR_CHOOSE:
Chris Lattner4c6f9522009-04-27 05:14:47 +00001877 S = new (Context) ChooseExpr(Empty);
1878 break;
1879
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001880 case EXPR_GNU_NULL:
Chris Lattner4c6f9522009-04-27 05:14:47 +00001881 S = new (Context) GNUNullExpr(Empty);
1882 break;
1883
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001884 case EXPR_SHUFFLE_VECTOR:
Chris Lattner4c6f9522009-04-27 05:14:47 +00001885 S = new (Context) ShuffleVectorExpr(Empty);
1886 break;
Mike Stump1eb44332009-09-09 15:08:12 +00001887
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001888 case EXPR_BLOCK:
Chris Lattner4c6f9522009-04-27 05:14:47 +00001889 S = new (Context) BlockExpr(Empty);
1890 break;
1891
Peter Collingbournef111d932011-04-15 00:35:48 +00001892 case EXPR_GENERIC_SELECTION:
1893 S = new (Context) GenericSelectionExpr(Empty);
1894 break;
1895
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001896 case EXPR_OBJC_STRING_LITERAL:
Chris Lattner4c6f9522009-04-27 05:14:47 +00001897 S = new (Context) ObjCStringLiteral(Empty);
1898 break;
Patrick Beardeb382ec2012-04-19 00:25:12 +00001899 case EXPR_OBJC_BOXED_EXPRESSION:
1900 S = new (Context) ObjCBoxedExpr(Empty);
Ted Kremenekebcb57a2012-03-06 20:05:56 +00001901 break;
1902 case EXPR_OBJC_ARRAY_LITERAL:
1903 S = ObjCArrayLiteral::CreateEmpty(Context,
1904 Record[ASTStmtReader::NumExprFields]);
1905 break;
1906 case EXPR_OBJC_DICTIONARY_LITERAL:
1907 S = ObjCDictionaryLiteral::CreateEmpty(Context,
1908 Record[ASTStmtReader::NumExprFields],
1909 Record[ASTStmtReader::NumExprFields + 1]);
1910 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001911 case EXPR_OBJC_ENCODE:
Chris Lattner4c6f9522009-04-27 05:14:47 +00001912 S = new (Context) ObjCEncodeExpr(Empty);
1913 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001914 case EXPR_OBJC_SELECTOR_EXPR:
Chris Lattner4c6f9522009-04-27 05:14:47 +00001915 S = new (Context) ObjCSelectorExpr(Empty);
1916 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001917 case EXPR_OBJC_PROTOCOL_EXPR:
Chris Lattner4c6f9522009-04-27 05:14:47 +00001918 S = new (Context) ObjCProtocolExpr(Empty);
1919 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001920 case EXPR_OBJC_IVAR_REF_EXPR:
Chris Lattner4c6f9522009-04-27 05:14:47 +00001921 S = new (Context) ObjCIvarRefExpr(Empty);
1922 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001923 case EXPR_OBJC_PROPERTY_REF_EXPR:
Chris Lattner4c6f9522009-04-27 05:14:47 +00001924 S = new (Context) ObjCPropertyRefExpr(Empty);
1925 break;
Ted Kremenekebcb57a2012-03-06 20:05:56 +00001926 case EXPR_OBJC_SUBSCRIPT_REF_EXPR:
1927 S = new (Context) ObjCSubscriptRefExpr(Empty);
1928 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001929 case EXPR_OBJC_KVC_REF_EXPR:
John McCall12f78a62010-12-02 01:19:52 +00001930 llvm_unreachable("mismatching AST file");
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001931 case EXPR_OBJC_MESSAGE_EXPR:
Douglas Gregor35942772011-09-09 21:34:22 +00001932 S = ObjCMessageExpr::CreateEmpty(Context,
Argyrios Kyrtzidis20718082011-10-03 06:36:51 +00001933 Record[ASTStmtReader::NumExprFields],
1934 Record[ASTStmtReader::NumExprFields + 1]);
Chris Lattner4c6f9522009-04-27 05:14:47 +00001935 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001936 case EXPR_OBJC_ISA:
Steve Narofff242b1b2009-07-24 17:54:45 +00001937 S = new (Context) ObjCIsaExpr(Empty);
1938 break;
John McCallf85e1932011-06-15 23:02:42 +00001939 case EXPR_OBJC_INDIRECT_COPY_RESTORE:
1940 S = new (Context) ObjCIndirectCopyRestoreExpr(Empty);
1941 break;
1942 case EXPR_OBJC_BRIDGED_CAST:
1943 S = new (Context) ObjCBridgedCastExpr(Empty);
1944 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001945 case STMT_OBJC_FOR_COLLECTION:
Chris Lattner4c6f9522009-04-27 05:14:47 +00001946 S = new (Context) ObjCForCollectionStmt(Empty);
1947 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001948 case STMT_OBJC_CATCH:
Chris Lattner4c6f9522009-04-27 05:14:47 +00001949 S = new (Context) ObjCAtCatchStmt(Empty);
1950 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001951 case STMT_OBJC_FINALLY:
Chris Lattner4c6f9522009-04-27 05:14:47 +00001952 S = new (Context) ObjCAtFinallyStmt(Empty);
1953 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001954 case STMT_OBJC_AT_TRY:
Douglas Gregor35942772011-09-09 21:34:22 +00001955 S = ObjCAtTryStmt::CreateEmpty(Context,
Sebastian Redl60adf4a2010-08-18 23:56:52 +00001956 Record[ASTStmtReader::NumStmtFields],
1957 Record[ASTStmtReader::NumStmtFields + 1]);
Chris Lattner4c6f9522009-04-27 05:14:47 +00001958 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001959 case STMT_OBJC_AT_SYNCHRONIZED:
Chris Lattner4c6f9522009-04-27 05:14:47 +00001960 S = new (Context) ObjCAtSynchronizedStmt(Empty);
1961 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001962 case STMT_OBJC_AT_THROW:
Chris Lattner4c6f9522009-04-27 05:14:47 +00001963 S = new (Context) ObjCAtThrowStmt(Empty);
1964 break;
John McCallf85e1932011-06-15 23:02:42 +00001965 case STMT_OBJC_AUTORELEASE_POOL:
1966 S = new (Context) ObjCAutoreleasePoolStmt(Empty);
1967 break;
Ted Kremenekebcb57a2012-03-06 20:05:56 +00001968 case EXPR_OBJC_BOOL_LITERAL:
1969 S = new (Context) ObjCBoolLiteralExpr(Empty);
1970 break;
John McCall7110fd62011-07-15 07:00:14 +00001971 case STMT_SEH_EXCEPT:
1972 S = new (Context) SEHExceptStmt(Empty);
1973 break;
1974 case STMT_SEH_FINALLY:
1975 S = new (Context) SEHFinallyStmt(Empty);
1976 break;
1977 case STMT_SEH_TRY:
1978 S = new (Context) SEHTryStmt(Empty);
1979 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001980 case STMT_CXX_CATCH:
Argyrios Kyrtzidis7cb45e32010-07-22 16:03:56 +00001981 S = new (Context) CXXCatchStmt(Empty);
1982 break;
1983
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001984 case STMT_CXX_TRY:
Douglas Gregor35942772011-09-09 21:34:22 +00001985 S = CXXTryStmt::Create(Context, Empty,
Sebastian Redl60adf4a2010-08-18 23:56:52 +00001986 /*NumHandlers=*/Record[ASTStmtReader::NumStmtFields]);
Argyrios Kyrtzidis7cb45e32010-07-22 16:03:56 +00001987 break;
1988
Richard Smithad762fc2011-04-14 22:09:26 +00001989 case STMT_CXX_FOR_RANGE:
1990 S = new (Context) CXXForRangeStmt(Empty);
1991 break;
1992
Douglas Gregorba0513d2011-10-25 01:33:02 +00001993 case STMT_MS_DEPENDENT_EXISTS:
1994 S = new (Context) MSDependentExistsStmt(SourceLocation(), true,
1995 NestedNameSpecifierLoc(),
1996 DeclarationNameInfo(),
1997 0);
1998 break;
1999
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002000 case EXPR_CXX_OPERATOR_CALL:
Douglas Gregor35942772011-09-09 21:34:22 +00002001 S = new (Context) CXXOperatorCallExpr(Context, Empty);
Argyrios Kyrtzidisba0a9002009-07-14 03:19:21 +00002002 break;
Chris Lattner1817bd42010-05-09 05:36:05 +00002003
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002004 case EXPR_CXX_MEMBER_CALL:
Douglas Gregor35942772011-09-09 21:34:22 +00002005 S = new (Context) CXXMemberCallExpr(Context, Empty);
Chris Lattner1817bd42010-05-09 05:36:05 +00002006 break;
Douglas Gregor39da0b82009-09-09 23:08:42 +00002007
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002008 case EXPR_CXX_CONSTRUCT:
Argyrios Kyrtzidis6d00c132010-07-10 11:46:15 +00002009 S = new (Context) CXXConstructExpr(Empty);
2010 break;
2011
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002012 case EXPR_CXX_TEMPORARY_OBJECT:
Argyrios Kyrtzidis6d00c132010-07-10 11:46:15 +00002013 S = new (Context) CXXTemporaryObjectExpr(Empty);
Douglas Gregor39da0b82009-09-09 23:08:42 +00002014 break;
Sam Weinigce757a72010-01-16 21:21:01 +00002015
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002016 case EXPR_CXX_STATIC_CAST:
Douglas Gregor35942772011-09-09 21:34:22 +00002017 S = CXXStaticCastExpr::CreateEmpty(Context,
Sebastian Redl60adf4a2010-08-18 23:56:52 +00002018 /*PathSize*/ Record[ASTStmtReader::NumExprFields]);
Sam Weinigce757a72010-01-16 21:21:01 +00002019 break;
2020
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002021 case EXPR_CXX_DYNAMIC_CAST:
Douglas Gregor35942772011-09-09 21:34:22 +00002022 S = CXXDynamicCastExpr::CreateEmpty(Context,
Sebastian Redl60adf4a2010-08-18 23:56:52 +00002023 /*PathSize*/ Record[ASTStmtReader::NumExprFields]);
Sam Weinigce757a72010-01-16 21:21:01 +00002024 break;
2025
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002026 case EXPR_CXX_REINTERPRET_CAST:
Douglas Gregor35942772011-09-09 21:34:22 +00002027 S = CXXReinterpretCastExpr::CreateEmpty(Context,
Sebastian Redl60adf4a2010-08-18 23:56:52 +00002028 /*PathSize*/ Record[ASTStmtReader::NumExprFields]);
Sam Weinigce757a72010-01-16 21:21:01 +00002029 break;
2030
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002031 case EXPR_CXX_CONST_CAST:
Douglas Gregor35942772011-09-09 21:34:22 +00002032 S = CXXConstCastExpr::CreateEmpty(Context);
Sam Weinigce757a72010-01-16 21:21:01 +00002033 break;
2034
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002035 case EXPR_CXX_FUNCTIONAL_CAST:
Douglas Gregor35942772011-09-09 21:34:22 +00002036 S = CXXFunctionalCastExpr::CreateEmpty(Context,
Sebastian Redl60adf4a2010-08-18 23:56:52 +00002037 /*PathSize*/ Record[ASTStmtReader::NumExprFields]);
Sam Weinigce757a72010-01-16 21:21:01 +00002038 break;
2039
Richard Smith9fcce652012-03-07 08:35:16 +00002040 case EXPR_USER_DEFINED_LITERAL:
2041 S = new (Context) UserDefinedLiteral(Context, Empty);
2042 break;
2043
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002044 case EXPR_CXX_BOOL_LITERAL:
Sam Weinigeb7f9612010-02-07 06:32:43 +00002045 S = new (Context) CXXBoolLiteralExpr(Empty);
2046 break;
Sam Weinigce757a72010-01-16 21:21:01 +00002047
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002048 case EXPR_CXX_NULL_PTR_LITERAL:
Sam Weinigeb7f9612010-02-07 06:32:43 +00002049 S = new (Context) CXXNullPtrLiteralExpr(Empty);
2050 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002051 case EXPR_CXX_TYPEID_EXPR:
Chris Lattner14ab24f2010-05-09 06:03:39 +00002052 S = new (Context) CXXTypeidExpr(Empty, true);
2053 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002054 case EXPR_CXX_TYPEID_TYPE:
Chris Lattner14ab24f2010-05-09 06:03:39 +00002055 S = new (Context) CXXTypeidExpr(Empty, false);
2056 break;
Francois Pichet01b7c302010-09-08 12:20:18 +00002057 case EXPR_CXX_UUIDOF_EXPR:
2058 S = new (Context) CXXUuidofExpr(Empty, true);
2059 break;
2060 case EXPR_CXX_UUIDOF_TYPE:
2061 S = new (Context) CXXUuidofExpr(Empty, false);
2062 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002063 case EXPR_CXX_THIS:
Chris Lattner2fbdfcd2010-05-09 06:15:05 +00002064 S = new (Context) CXXThisExpr(Empty);
2065 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002066 case EXPR_CXX_THROW:
Chris Lattner2fbdfcd2010-05-09 06:15:05 +00002067 S = new (Context) CXXThrowExpr(Empty);
2068 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002069 case EXPR_CXX_DEFAULT_ARG: {
Sebastian Redl60adf4a2010-08-18 23:56:52 +00002070 bool HasOtherExprStored = Record[ASTStmtReader::NumExprFields];
Argyrios Kyrtzidis8a507332010-07-02 23:30:15 +00002071 if (HasOtherExprStored) {
2072 Expr *SubExpr = ReadSubExpr();
Douglas Gregor35942772011-09-09 21:34:22 +00002073 S = CXXDefaultArgExpr::Create(Context, SourceLocation(), 0, SubExpr);
Argyrios Kyrtzidis8a507332010-07-02 23:30:15 +00002074 } else
2075 S = new (Context) CXXDefaultArgExpr(Empty);
Chris Lattner030854b2010-05-09 06:40:08 +00002076 break;
Argyrios Kyrtzidis8a507332010-07-02 23:30:15 +00002077 }
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002078 case EXPR_CXX_BIND_TEMPORARY:
Chris Lattnerd2598362010-05-10 00:25:06 +00002079 S = new (Context) CXXBindTemporaryExpr(Empty);
2080 break;
Douglas Gregore2ca6d42010-09-02 21:50:02 +00002081
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002082 case EXPR_CXX_SCALAR_VALUE_INIT:
Douglas Gregored8abf12010-07-08 06:14:04 +00002083 S = new (Context) CXXScalarValueInitExpr(Empty);
Chris Lattner59218632010-05-10 01:22:27 +00002084 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002085 case EXPR_CXX_NEW:
Chris Lattner59218632010-05-10 01:22:27 +00002086 S = new (Context) CXXNewExpr(Empty);
2087 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002088 case EXPR_CXX_DELETE:
Argyrios Kyrtzidis95fc98c2010-06-22 17:07:59 +00002089 S = new (Context) CXXDeleteExpr(Empty);
2090 break;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002091 case EXPR_CXX_PSEUDO_DESTRUCTOR:
Argyrios Kyrtzidisde4bd182010-06-28 09:32:03 +00002092 S = new (Context) CXXPseudoDestructorExpr(Empty);
2093 break;
Chris Lattner59218632010-05-10 01:22:27 +00002094
John McCall4765fa02010-12-06 08:20:24 +00002095 case EXPR_EXPR_WITH_CLEANUPS:
John McCall80ee6e82011-11-10 05:35:25 +00002096 S = ExprWithCleanups::Create(Context, Empty,
2097 Record[ASTStmtReader::NumExprFields]);
Chris Lattnerd2598362010-05-10 00:25:06 +00002098 break;
Argyrios Kyrtzidis8dfbd8b2010-06-24 08:57:31 +00002099
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002100 case EXPR_CXX_DEPENDENT_SCOPE_MEMBER:
Douglas Gregor35942772011-09-09 21:34:22 +00002101 S = CXXDependentScopeMemberExpr::CreateEmpty(Context,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00002102 /*HasTemplateKWAndArgsInfo=*/Record[ASTStmtReader::NumExprFields],
Douglas Gregordef03542011-02-04 12:01:24 +00002103 /*NumTemplateArgs=*/Record[ASTStmtReader::NumExprFields]
2104 ? Record[ASTStmtReader::NumExprFields + 1]
2105 : 0);
Argyrios Kyrtzidis8dfbd8b2010-06-24 08:57:31 +00002106 break;
2107
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002108 case EXPR_CXX_DEPENDENT_SCOPE_DECL_REF:
Douglas Gregor35942772011-09-09 21:34:22 +00002109 S = DependentScopeDeclRefExpr::CreateEmpty(Context,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00002110 /*HasTemplateKWAndArgsInfo=*/Record[ASTStmtReader::NumExprFields],
Douglas Gregordef03542011-02-04 12:01:24 +00002111 /*NumTemplateArgs=*/Record[ASTStmtReader::NumExprFields]
2112 ? Record[ASTStmtReader::NumExprFields + 1]
2113 : 0);
Argyrios Kyrtzidis12dffcd2010-06-28 09:31:56 +00002114 break;
2115
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002116 case EXPR_CXX_UNRESOLVED_CONSTRUCT:
Douglas Gregor35942772011-09-09 21:34:22 +00002117 S = CXXUnresolvedConstructExpr::CreateEmpty(Context,
Sebastian Redl60adf4a2010-08-18 23:56:52 +00002118 /*NumArgs=*/Record[ASTStmtReader::NumExprFields]);
Argyrios Kyrtzidisa77eb082010-06-25 09:03:26 +00002119 break;
2120
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002121 case EXPR_CXX_UNRESOLVED_MEMBER:
Douglas Gregor35942772011-09-09 21:34:22 +00002122 S = UnresolvedMemberExpr::CreateEmpty(Context,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00002123 /*HasTemplateKWAndArgsInfo=*/Record[ASTStmtReader::NumExprFields],
Douglas Gregordef03542011-02-04 12:01:24 +00002124 /*NumTemplateArgs=*/Record[ASTStmtReader::NumExprFields]
2125 ? Record[ASTStmtReader::NumExprFields + 1]
2126 : 0);
Argyrios Kyrtzidis8dfbd8b2010-06-24 08:57:31 +00002127 break;
Argyrios Kyrtzidisbd65bb52010-06-25 09:03:34 +00002128
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002129 case EXPR_CXX_UNRESOLVED_LOOKUP:
Douglas Gregor35942772011-09-09 21:34:22 +00002130 S = UnresolvedLookupExpr::CreateEmpty(Context,
Abramo Bagnarae4b92762012-01-27 09:46:47 +00002131 /*HasTemplateKWAndArgsInfo=*/Record[ASTStmtReader::NumExprFields],
Douglas Gregordef03542011-02-04 12:01:24 +00002132 /*NumTemplateArgs=*/Record[ASTStmtReader::NumExprFields]
2133 ? Record[ASTStmtReader::NumExprFields + 1]
2134 : 0);
Argyrios Kyrtzidisbd65bb52010-06-25 09:03:34 +00002135 break;
Argyrios Kyrtzidis6d00c132010-07-10 11:46:15 +00002136
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002137 case EXPR_CXX_UNARY_TYPE_TRAIT:
Argyrios Kyrtzidis6d00c132010-07-10 11:46:15 +00002138 S = new (Context) UnaryTypeTraitExpr(Empty);
2139 break;
Sebastian Redl6b219d02010-09-10 20:55:54 +00002140
Francois Pichetf1872372010-12-08 22:35:30 +00002141 case EXPR_BINARY_TYPE_TRAIT:
Francois Pichet6ad6f282010-12-07 00:08:36 +00002142 S = new (Context) BinaryTypeTraitExpr(Empty);
2143 break;
2144
Douglas Gregor4ca8ac22012-02-24 07:38:34 +00002145 case EXPR_TYPE_TRAIT:
2146 S = TypeTraitExpr::CreateDeserialized(Context,
2147 Record[ASTStmtReader::NumExprFields]);
2148 break;
2149
John Wiegley21ff2e52011-04-28 00:16:57 +00002150 case EXPR_ARRAY_TYPE_TRAIT:
2151 S = new (Context) ArrayTypeTraitExpr(Empty);
2152 break;
2153
John Wiegley55262202011-04-25 06:54:41 +00002154 case EXPR_CXX_EXPRESSION_TRAIT:
2155 S = new (Context) ExpressionTraitExpr(Empty);
2156 break;
2157
Sebastian Redl6b219d02010-09-10 20:55:54 +00002158 case EXPR_CXX_NOEXCEPT:
2159 S = new (Context) CXXNoexceptExpr(Empty);
2160 break;
John McCall7cd7d1a2010-11-15 23:31:06 +00002161
Douglas Gregorbe230c32011-01-03 17:17:50 +00002162 case EXPR_PACK_EXPANSION:
2163 S = new (Context) PackExpansionExpr(Empty);
2164 break;
2165
Douglas Gregoree8aff02011-01-04 17:33:58 +00002166 case EXPR_SIZEOF_PACK:
2167 S = new (Context) SizeOfPackExpr(Empty);
2168 break;
2169
John McCall7110fd62011-07-15 07:00:14 +00002170 case EXPR_SUBST_NON_TYPE_TEMPLATE_PARM:
2171 S = new (Context) SubstNonTypeTemplateParmExpr(Empty);
2172 break;
2173
Douglas Gregorc7793c72011-01-15 01:15:58 +00002174 case EXPR_SUBST_NON_TYPE_TEMPLATE_PARM_PACK:
2175 S = new (Context) SubstNonTypeTemplateParmPackExpr(Empty);
2176 break;
2177
Douglas Gregor03e80032011-06-21 17:03:29 +00002178 case EXPR_MATERIALIZE_TEMPORARY:
2179 S = new (Context) MaterializeTemporaryExpr(Empty);
2180 break;
2181
Argyrios Kyrtzidis8bc27822011-12-03 03:49:52 +00002182 case EXPR_OPAQUE_VALUE:
2183 S = new (Context) OpaqueValueExpr(Empty);
John McCall7cd7d1a2010-11-15 23:31:06 +00002184 break;
Peter Collingbournee08ce652011-02-09 21:07:24 +00002185
2186 case EXPR_CUDA_KERNEL_CALL:
Douglas Gregor35942772011-09-09 21:34:22 +00002187 S = new (Context) CUDAKernelCallExpr(Context, Empty);
Peter Collingbournee08ce652011-02-09 21:07:24 +00002188 break;
Tanya Lattner61eee0c2011-06-04 00:47:47 +00002189
2190 case EXPR_ASTYPE:
2191 S = new (Context) AsTypeExpr(Empty);
2192 break;
Eli Friedman276b0612011-10-11 02:20:01 +00002193
John McCall4b9c2d22011-11-06 09:01:30 +00002194 case EXPR_PSEUDO_OBJECT: {
2195 unsigned numSemanticExprs = Record[ASTStmtReader::NumExprFields];
2196 S = PseudoObjectExpr::Create(Context, Empty, numSemanticExprs);
2197 break;
2198 }
2199
Eli Friedman276b0612011-10-11 02:20:01 +00002200 case EXPR_ATOMIC:
2201 S = new (Context) AtomicExpr(Empty);
2202 break;
Douglas Gregor9d36f5d2012-02-14 17:54:36 +00002203
2204 case EXPR_LAMBDA: {
2205 unsigned NumCaptures = Record[ASTStmtReader::NumExprFields];
2206 unsigned NumArrayIndexVars = Record[ASTStmtReader::NumExprFields + 1];
2207 S = LambdaExpr::CreateDeserialized(Context, NumCaptures,
2208 NumArrayIndexVars);
2209 break;
2210 }
Chris Lattner4c6f9522009-04-27 05:14:47 +00002211 }
Argyrios Kyrtzidis6d00c132010-07-10 11:46:15 +00002212
Chris Lattner4c6f9522009-04-27 05:14:47 +00002213 // We hit a STMT_STOP, so we're done with this expression.
2214 if (Finished)
2215 break;
2216
2217 ++NumStatementsRead;
2218
Argyrios Kyrtzidise6f08682011-10-21 23:02:28 +00002219 if (S && !IsStmtReference) {
Argyrios Kyrtzidis919e6932010-06-28 22:28:35 +00002220 Reader.Visit(S);
Argyrios Kyrtzidise6f08682011-10-21 23:02:28 +00002221 StmtEntries[Cursor.GetCurrentBitNo()] = S;
2222 }
2223
Chris Lattner4c6f9522009-04-27 05:14:47 +00002224
2225 assert(Idx == Record.size() && "Invalid deserialization of statement");
2226 StmtStack.push_back(S);
2227 }
Argyrios Kyrtzidis919e6932010-06-28 22:28:35 +00002228
2229#ifndef NDEBUG
2230 assert(StmtStack.size() > PrevNumStmts && "Read too many sub stmts!");
2231 assert(StmtStack.size() == PrevNumStmts + 1 && "Extra expressions on stack!");
2232#endif
2233
2234 return StmtStack.pop_back_val();
Chris Lattner4c6f9522009-04-27 05:14:47 +00002235}