blob: 62e129919b1b8c0851c45275901410db90f1a411 [file] [log] [blame]
Douglas Gregor2cf26342009-04-09 22:27:44 +00001//===--- PCHWriter.h - Precompiled Headers Writer ---------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file defines the PCHWriter class, which writes a precompiled header.
11//
12//===----------------------------------------------------------------------===//
13
14#include "clang/Frontend/PCHWriter.h"
Douglas Gregore7785042009-04-20 15:53:59 +000015#include "../Sema/Sema.h" // FIXME: move header into include/clang/Sema
Douglas Gregor3251ceb2009-04-20 20:36:09 +000016#include "../Sema/IdentifierResolver.h" // FIXME: move header
Douglas Gregor2cf26342009-04-09 22:27:44 +000017#include "clang/AST/ASTContext.h"
18#include "clang/AST/Decl.h"
19#include "clang/AST/DeclContextInternals.h"
20#include "clang/AST/DeclVisitor.h"
Douglas Gregor0b748912009-04-14 21:18:50 +000021#include "clang/AST/Expr.h"
22#include "clang/AST/StmtVisitor.h"
Douglas Gregor2cf26342009-04-09 22:27:44 +000023#include "clang/AST/Type.h"
Chris Lattner7c5d24e2009-04-10 18:00:12 +000024#include "clang/Lex/MacroInfo.h"
25#include "clang/Lex/Preprocessor.h"
Douglas Gregor14f79002009-04-10 03:52:48 +000026#include "clang/Basic/FileManager.h"
Douglas Gregor3251ceb2009-04-20 20:36:09 +000027#include "clang/Basic/OnDiskHashTable.h"
Douglas Gregor14f79002009-04-10 03:52:48 +000028#include "clang/Basic/SourceManager.h"
Douglas Gregorbd945002009-04-13 16:31:14 +000029#include "clang/Basic/SourceManagerInternals.h"
Douglas Gregor2bec0412009-04-10 21:16:55 +000030#include "clang/Basic/TargetInfo.h"
Douglas Gregor17fc2232009-04-14 21:55:33 +000031#include "llvm/ADT/APFloat.h"
32#include "llvm/ADT/APInt.h"
Douglas Gregor2cf26342009-04-09 22:27:44 +000033#include "llvm/Bitcode/BitstreamWriter.h"
34#include "llvm/Support/Compiler.h"
Douglas Gregor14f79002009-04-10 03:52:48 +000035#include "llvm/Support/MemoryBuffer.h"
Chris Lattner3c304bd2009-04-11 18:40:46 +000036#include <cstdio>
Douglas Gregor2cf26342009-04-09 22:27:44 +000037using namespace clang;
38
39//===----------------------------------------------------------------------===//
40// Type serialization
41//===----------------------------------------------------------------------===//
42namespace {
43 class VISIBILITY_HIDDEN PCHTypeWriter {
44 PCHWriter &Writer;
45 PCHWriter::RecordData &Record;
46
47 public:
48 /// \brief Type code that corresponds to the record generated.
49 pch::TypeCode Code;
50
51 PCHTypeWriter(PCHWriter &Writer, PCHWriter::RecordData &Record)
52 : Writer(Writer), Record(Record) { }
53
54 void VisitArrayType(const ArrayType *T);
55 void VisitFunctionType(const FunctionType *T);
56 void VisitTagType(const TagType *T);
57
58#define TYPE(Class, Base) void Visit##Class##Type(const Class##Type *T);
59#define ABSTRACT_TYPE(Class, Base)
60#define DEPENDENT_TYPE(Class, Base)
61#include "clang/AST/TypeNodes.def"
62 };
63}
64
65void PCHTypeWriter::VisitExtQualType(const ExtQualType *T) {
66 Writer.AddTypeRef(QualType(T->getBaseType(), 0), Record);
67 Record.push_back(T->getObjCGCAttr()); // FIXME: use stable values
68 Record.push_back(T->getAddressSpace());
69 Code = pch::TYPE_EXT_QUAL;
70}
71
72void PCHTypeWriter::VisitBuiltinType(const BuiltinType *T) {
73 assert(false && "Built-in types are never serialized");
74}
75
76void PCHTypeWriter::VisitFixedWidthIntType(const FixedWidthIntType *T) {
77 Record.push_back(T->getWidth());
78 Record.push_back(T->isSigned());
79 Code = pch::TYPE_FIXED_WIDTH_INT;
80}
81
82void PCHTypeWriter::VisitComplexType(const ComplexType *T) {
83 Writer.AddTypeRef(T->getElementType(), Record);
84 Code = pch::TYPE_COMPLEX;
85}
86
87void PCHTypeWriter::VisitPointerType(const PointerType *T) {
88 Writer.AddTypeRef(T->getPointeeType(), Record);
89 Code = pch::TYPE_POINTER;
90}
91
92void PCHTypeWriter::VisitBlockPointerType(const BlockPointerType *T) {
93 Writer.AddTypeRef(T->getPointeeType(), Record);
94 Code = pch::TYPE_BLOCK_POINTER;
95}
96
97void PCHTypeWriter::VisitLValueReferenceType(const LValueReferenceType *T) {
98 Writer.AddTypeRef(T->getPointeeType(), Record);
99 Code = pch::TYPE_LVALUE_REFERENCE;
100}
101
102void PCHTypeWriter::VisitRValueReferenceType(const RValueReferenceType *T) {
103 Writer.AddTypeRef(T->getPointeeType(), Record);
104 Code = pch::TYPE_RVALUE_REFERENCE;
105}
106
107void PCHTypeWriter::VisitMemberPointerType(const MemberPointerType *T) {
108 Writer.AddTypeRef(T->getPointeeType(), Record);
109 Writer.AddTypeRef(QualType(T->getClass(), 0), Record);
110 Code = pch::TYPE_MEMBER_POINTER;
111}
112
113void PCHTypeWriter::VisitArrayType(const ArrayType *T) {
114 Writer.AddTypeRef(T->getElementType(), Record);
115 Record.push_back(T->getSizeModifier()); // FIXME: stable values
116 Record.push_back(T->getIndexTypeQualifier()); // FIXME: stable values
117}
118
119void PCHTypeWriter::VisitConstantArrayType(const ConstantArrayType *T) {
120 VisitArrayType(T);
121 Writer.AddAPInt(T->getSize(), Record);
122 Code = pch::TYPE_CONSTANT_ARRAY;
123}
124
125void PCHTypeWriter::VisitIncompleteArrayType(const IncompleteArrayType *T) {
126 VisitArrayType(T);
127 Code = pch::TYPE_INCOMPLETE_ARRAY;
128}
129
130void PCHTypeWriter::VisitVariableArrayType(const VariableArrayType *T) {
131 VisitArrayType(T);
Douglas Gregorc9490c02009-04-16 22:23:12 +0000132 Writer.AddStmt(T->getSizeExpr());
Douglas Gregor2cf26342009-04-09 22:27:44 +0000133 Code = pch::TYPE_VARIABLE_ARRAY;
134}
135
136void PCHTypeWriter::VisitVectorType(const VectorType *T) {
137 Writer.AddTypeRef(T->getElementType(), Record);
138 Record.push_back(T->getNumElements());
139 Code = pch::TYPE_VECTOR;
140}
141
142void PCHTypeWriter::VisitExtVectorType(const ExtVectorType *T) {
143 VisitVectorType(T);
144 Code = pch::TYPE_EXT_VECTOR;
145}
146
147void PCHTypeWriter::VisitFunctionType(const FunctionType *T) {
148 Writer.AddTypeRef(T->getResultType(), Record);
149}
150
151void PCHTypeWriter::VisitFunctionNoProtoType(const FunctionNoProtoType *T) {
152 VisitFunctionType(T);
153 Code = pch::TYPE_FUNCTION_NO_PROTO;
154}
155
156void PCHTypeWriter::VisitFunctionProtoType(const FunctionProtoType *T) {
157 VisitFunctionType(T);
158 Record.push_back(T->getNumArgs());
159 for (unsigned I = 0, N = T->getNumArgs(); I != N; ++I)
160 Writer.AddTypeRef(T->getArgType(I), Record);
161 Record.push_back(T->isVariadic());
162 Record.push_back(T->getTypeQuals());
163 Code = pch::TYPE_FUNCTION_PROTO;
164}
165
166void PCHTypeWriter::VisitTypedefType(const TypedefType *T) {
167 Writer.AddDeclRef(T->getDecl(), Record);
168 Code = pch::TYPE_TYPEDEF;
169}
170
171void PCHTypeWriter::VisitTypeOfExprType(const TypeOfExprType *T) {
Douglas Gregorc9490c02009-04-16 22:23:12 +0000172 Writer.AddStmt(T->getUnderlyingExpr());
Douglas Gregor2cf26342009-04-09 22:27:44 +0000173 Code = pch::TYPE_TYPEOF_EXPR;
174}
175
176void PCHTypeWriter::VisitTypeOfType(const TypeOfType *T) {
177 Writer.AddTypeRef(T->getUnderlyingType(), Record);
178 Code = pch::TYPE_TYPEOF;
179}
180
181void PCHTypeWriter::VisitTagType(const TagType *T) {
182 Writer.AddDeclRef(T->getDecl(), Record);
183 assert(!T->isBeingDefined() &&
184 "Cannot serialize in the middle of a type definition");
185}
186
187void PCHTypeWriter::VisitRecordType(const RecordType *T) {
188 VisitTagType(T);
189 Code = pch::TYPE_RECORD;
190}
191
192void PCHTypeWriter::VisitEnumType(const EnumType *T) {
193 VisitTagType(T);
194 Code = pch::TYPE_ENUM;
195}
196
197void
198PCHTypeWriter::VisitTemplateSpecializationType(
199 const TemplateSpecializationType *T) {
Douglas Gregor6a2bfb22009-04-15 18:43:11 +0000200 // FIXME: Serialize this type (C++ only)
Douglas Gregor2cf26342009-04-09 22:27:44 +0000201 assert(false && "Cannot serialize template specialization types");
202}
203
204void PCHTypeWriter::VisitQualifiedNameType(const QualifiedNameType *T) {
Douglas Gregor6a2bfb22009-04-15 18:43:11 +0000205 // FIXME: Serialize this type (C++ only)
Douglas Gregor2cf26342009-04-09 22:27:44 +0000206 assert(false && "Cannot serialize qualified name types");
207}
208
209void PCHTypeWriter::VisitObjCInterfaceType(const ObjCInterfaceType *T) {
210 Writer.AddDeclRef(T->getDecl(), Record);
211 Code = pch::TYPE_OBJC_INTERFACE;
212}
213
214void
215PCHTypeWriter::VisitObjCQualifiedInterfaceType(
216 const ObjCQualifiedInterfaceType *T) {
217 VisitObjCInterfaceType(T);
218 Record.push_back(T->getNumProtocols());
219 for (unsigned I = 0, N = T->getNumProtocols(); I != N; ++I)
220 Writer.AddDeclRef(T->getProtocol(I), Record);
221 Code = pch::TYPE_OBJC_QUALIFIED_INTERFACE;
222}
223
224void PCHTypeWriter::VisitObjCQualifiedIdType(const ObjCQualifiedIdType *T) {
225 Record.push_back(T->getNumProtocols());
226 for (unsigned I = 0, N = T->getNumProtocols(); I != N; ++I)
227 Writer.AddDeclRef(T->getProtocols(I), Record);
228 Code = pch::TYPE_OBJC_QUALIFIED_ID;
229}
230
Douglas Gregor2cf26342009-04-09 22:27:44 +0000231//===----------------------------------------------------------------------===//
232// Declaration serialization
233//===----------------------------------------------------------------------===//
234namespace {
235 class VISIBILITY_HIDDEN PCHDeclWriter
236 : public DeclVisitor<PCHDeclWriter, void> {
237
238 PCHWriter &Writer;
Douglas Gregor72971342009-04-18 00:02:19 +0000239 ASTContext &Context;
Douglas Gregor2cf26342009-04-09 22:27:44 +0000240 PCHWriter::RecordData &Record;
241
242 public:
243 pch::DeclCode Code;
244
Douglas Gregor72971342009-04-18 00:02:19 +0000245 PCHDeclWriter(PCHWriter &Writer, ASTContext &Context,
246 PCHWriter::RecordData &Record)
247 : Writer(Writer), Context(Context), Record(Record) { }
Douglas Gregor2cf26342009-04-09 22:27:44 +0000248
249 void VisitDecl(Decl *D);
250 void VisitTranslationUnitDecl(TranslationUnitDecl *D);
251 void VisitNamedDecl(NamedDecl *D);
252 void VisitTypeDecl(TypeDecl *D);
253 void VisitTypedefDecl(TypedefDecl *D);
Douglas Gregor0a2b45e2009-04-13 18:14:40 +0000254 void VisitTagDecl(TagDecl *D);
255 void VisitEnumDecl(EnumDecl *D);
Douglas Gregor8c700062009-04-13 21:20:57 +0000256 void VisitRecordDecl(RecordDecl *D);
Douglas Gregor2cf26342009-04-09 22:27:44 +0000257 void VisitValueDecl(ValueDecl *D);
Douglas Gregor0a2b45e2009-04-13 18:14:40 +0000258 void VisitEnumConstantDecl(EnumConstantDecl *D);
Douglas Gregor3a2f7e42009-04-13 22:18:37 +0000259 void VisitFunctionDecl(FunctionDecl *D);
Douglas Gregor8c700062009-04-13 21:20:57 +0000260 void VisitFieldDecl(FieldDecl *D);
Douglas Gregor2cf26342009-04-09 22:27:44 +0000261 void VisitVarDecl(VarDecl *D);
Douglas Gregor3a2f7e42009-04-13 22:18:37 +0000262 void VisitParmVarDecl(ParmVarDecl *D);
263 void VisitOriginalParmVarDecl(OriginalParmVarDecl *D);
Douglas Gregor1028bc62009-04-13 22:49:25 +0000264 void VisitFileScopeAsmDecl(FileScopeAsmDecl *D);
265 void VisitBlockDecl(BlockDecl *D);
Douglas Gregor2cf26342009-04-09 22:27:44 +0000266 void VisitDeclContext(DeclContext *DC, uint64_t LexicalOffset,
267 uint64_t VisibleOffset);
Steve Naroff53c9d8a2009-04-20 15:06:07 +0000268 void VisitObjCMethodDecl(ObjCMethodDecl *D);
Steve Naroff33feeb02009-04-20 20:09:33 +0000269 void VisitObjCContainerDecl(ObjCContainerDecl *D);
270 void VisitObjCInterfaceDecl(ObjCInterfaceDecl *D);
271 void VisitObjCIvarDecl(ObjCIvarDecl *D);
Steve Naroff30833f82009-04-21 15:12:33 +0000272 void VisitObjCProtocolDecl(ObjCProtocolDecl *D);
273 void VisitObjCAtDefsFieldDecl(ObjCAtDefsFieldDecl *D);
274 void VisitObjCClassDecl(ObjCClassDecl *D);
275 void VisitObjCForwardProtocolDecl(ObjCForwardProtocolDecl *D);
276 void VisitObjCCategoryDecl(ObjCCategoryDecl *D);
277 void VisitObjCImplDecl(ObjCImplDecl *D);
278 void VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D);
279 void VisitObjCImplementationDecl(ObjCImplementationDecl *D);
280 void VisitObjCCompatibleAliasDecl(ObjCCompatibleAliasDecl *D);
281 void VisitObjCPropertyDecl(ObjCPropertyDecl *D);
282 void VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *D);
Douglas Gregor2cf26342009-04-09 22:27:44 +0000283 };
284}
285
286void PCHDeclWriter::VisitDecl(Decl *D) {
287 Writer.AddDeclRef(cast_or_null<Decl>(D->getDeclContext()), Record);
288 Writer.AddDeclRef(cast_or_null<Decl>(D->getLexicalDeclContext()), Record);
289 Writer.AddSourceLocation(D->getLocation(), Record);
290 Record.push_back(D->isInvalidDecl());
Douglas Gregor68a2eb02009-04-15 21:30:51 +0000291 Record.push_back(D->hasAttrs());
Douglas Gregor2cf26342009-04-09 22:27:44 +0000292 Record.push_back(D->isImplicit());
293 Record.push_back(D->getAccess());
294}
295
296void PCHDeclWriter::VisitTranslationUnitDecl(TranslationUnitDecl *D) {
297 VisitDecl(D);
298 Code = pch::DECL_TRANSLATION_UNIT;
299}
300
301void PCHDeclWriter::VisitNamedDecl(NamedDecl *D) {
302 VisitDecl(D);
303 Writer.AddDeclarationName(D->getDeclName(), Record);
304}
305
306void PCHDeclWriter::VisitTypeDecl(TypeDecl *D) {
307 VisitNamedDecl(D);
308 Writer.AddTypeRef(QualType(D->getTypeForDecl(), 0), Record);
309}
310
311void PCHDeclWriter::VisitTypedefDecl(TypedefDecl *D) {
312 VisitTypeDecl(D);
313 Writer.AddTypeRef(D->getUnderlyingType(), Record);
314 Code = pch::DECL_TYPEDEF;
315}
316
Douglas Gregor0a2b45e2009-04-13 18:14:40 +0000317void PCHDeclWriter::VisitTagDecl(TagDecl *D) {
318 VisitTypeDecl(D);
319 Record.push_back((unsigned)D->getTagKind()); // FIXME: stable encoding
320 Record.push_back(D->isDefinition());
321 Writer.AddDeclRef(D->getTypedefForAnonDecl(), Record);
322}
323
324void PCHDeclWriter::VisitEnumDecl(EnumDecl *D) {
325 VisitTagDecl(D);
326 Writer.AddTypeRef(D->getIntegerType(), Record);
327 Code = pch::DECL_ENUM;
328}
329
Douglas Gregor8c700062009-04-13 21:20:57 +0000330void PCHDeclWriter::VisitRecordDecl(RecordDecl *D) {
331 VisitTagDecl(D);
332 Record.push_back(D->hasFlexibleArrayMember());
333 Record.push_back(D->isAnonymousStructOrUnion());
334 Code = pch::DECL_RECORD;
335}
336
Douglas Gregor2cf26342009-04-09 22:27:44 +0000337void PCHDeclWriter::VisitValueDecl(ValueDecl *D) {
338 VisitNamedDecl(D);
339 Writer.AddTypeRef(D->getType(), Record);
340}
341
Douglas Gregor0a2b45e2009-04-13 18:14:40 +0000342void PCHDeclWriter::VisitEnumConstantDecl(EnumConstantDecl *D) {
343 VisitValueDecl(D);
Douglas Gregor0b748912009-04-14 21:18:50 +0000344 Record.push_back(D->getInitExpr()? 1 : 0);
345 if (D->getInitExpr())
Douglas Gregorc9490c02009-04-16 22:23:12 +0000346 Writer.AddStmt(D->getInitExpr());
Douglas Gregor0a2b45e2009-04-13 18:14:40 +0000347 Writer.AddAPSInt(D->getInitVal(), Record);
348 Code = pch::DECL_ENUM_CONSTANT;
349}
350
Douglas Gregor3a2f7e42009-04-13 22:18:37 +0000351void PCHDeclWriter::VisitFunctionDecl(FunctionDecl *D) {
352 VisitValueDecl(D);
Douglas Gregor025452f2009-04-17 00:04:06 +0000353 Record.push_back(D->isThisDeclarationADefinition());
354 if (D->isThisDeclarationADefinition())
Douglas Gregor72971342009-04-18 00:02:19 +0000355 Writer.AddStmt(D->getBody(Context));
Douglas Gregor3a2f7e42009-04-13 22:18:37 +0000356 Writer.AddDeclRef(D->getPreviousDeclaration(), Record);
357 Record.push_back(D->getStorageClass()); // FIXME: stable encoding
358 Record.push_back(D->isInline());
359 Record.push_back(D->isVirtual());
360 Record.push_back(D->isPure());
361 Record.push_back(D->inheritedPrototype());
362 Record.push_back(D->hasPrototype() && !D->inheritedPrototype());
363 Record.push_back(D->isDeleted());
364 Writer.AddSourceLocation(D->getTypeSpecStartLoc(), Record);
365 Record.push_back(D->param_size());
366 for (FunctionDecl::param_iterator P = D->param_begin(), PEnd = D->param_end();
367 P != PEnd; ++P)
368 Writer.AddDeclRef(*P, Record);
369 Code = pch::DECL_FUNCTION;
370}
371
Steve Naroff53c9d8a2009-04-20 15:06:07 +0000372void PCHDeclWriter::VisitObjCMethodDecl(ObjCMethodDecl *D) {
373 VisitNamedDecl(D);
374 // FIXME: convert to LazyStmtPtr?
375 // Unlike C/C++, method bodies will never be in header files.
376 Record.push_back(D->getBody() != 0);
377 if (D->getBody() != 0) {
378 Writer.AddStmt(D->getBody(Context));
379 Writer.AddDeclRef(D->getSelfDecl(), Record);
380 Writer.AddDeclRef(D->getCmdDecl(), Record);
381 }
382 Record.push_back(D->isInstanceMethod());
383 Record.push_back(D->isVariadic());
384 Record.push_back(D->isSynthesized());
385 // FIXME: stable encoding for @required/@optional
386 Record.push_back(D->getImplementationControl());
387 // FIXME: stable encoding for in/out/inout/bycopy/byref/oneway
388 Record.push_back(D->getObjCDeclQualifier());
389 Writer.AddTypeRef(D->getResultType(), Record);
390 Writer.AddSourceLocation(D->getLocEnd(), Record);
391 Record.push_back(D->param_size());
392 for (ObjCMethodDecl::param_iterator P = D->param_begin(),
393 PEnd = D->param_end(); P != PEnd; ++P)
394 Writer.AddDeclRef(*P, Record);
395 Code = pch::DECL_OBJC_METHOD;
396}
397
Steve Naroff33feeb02009-04-20 20:09:33 +0000398void PCHDeclWriter::VisitObjCContainerDecl(ObjCContainerDecl *D) {
399 VisitNamedDecl(D);
400 Writer.AddSourceLocation(D->getAtEndLoc(), Record);
401 // Abstract class (no need to define a stable pch::DECL code).
402}
403
404void PCHDeclWriter::VisitObjCInterfaceDecl(ObjCInterfaceDecl *D) {
405 VisitObjCContainerDecl(D);
406 Writer.AddTypeRef(QualType(D->getTypeForDecl(), 0), Record);
407 Writer.AddDeclRef(D->getSuperClass(), Record);
Douglas Gregor291be392009-04-23 03:59:07 +0000408 Record.push_back(D->protocol_size());
409 for (ObjCInterfaceDecl::protocol_iterator P = D->protocol_begin(),
410 PEnd = D->protocol_end();
411 P != PEnd; ++P)
412 Writer.AddDeclRef(*P, Record);
Steve Naroff33feeb02009-04-20 20:09:33 +0000413 Record.push_back(D->ivar_size());
414 for (ObjCInterfaceDecl::ivar_iterator I = D->ivar_begin(),
415 IEnd = D->ivar_end(); I != IEnd; ++I)
416 Writer.AddDeclRef(*I, Record);
417 Record.push_back(D->isForwardDecl());
418 Record.push_back(D->isImplicitInterfaceDecl());
419 Writer.AddSourceLocation(D->getClassLoc(), Record);
420 Writer.AddSourceLocation(D->getSuperClassLoc(), Record);
421 Writer.AddSourceLocation(D->getLocEnd(), Record);
Douglas Gregor291be392009-04-23 03:59:07 +0000422 // FIXME: add categories.
Steve Naroff30833f82009-04-21 15:12:33 +0000423 Code = pch::DECL_OBJC_INTERFACE;
Steve Naroff33feeb02009-04-20 20:09:33 +0000424}
425
426void PCHDeclWriter::VisitObjCIvarDecl(ObjCIvarDecl *D) {
427 VisitFieldDecl(D);
428 // FIXME: stable encoding for @public/@private/@protected/@package
429 Record.push_back(D->getAccessControl());
Steve Naroff30833f82009-04-21 15:12:33 +0000430 Code = pch::DECL_OBJC_IVAR;
431}
432
433void PCHDeclWriter::VisitObjCProtocolDecl(ObjCProtocolDecl *D) {
434 VisitObjCContainerDecl(D);
435 Record.push_back(D->isForwardDecl());
436 Writer.AddSourceLocation(D->getLocEnd(), Record);
437 Record.push_back(D->protocol_size());
438 for (ObjCProtocolDecl::protocol_iterator
439 I = D->protocol_begin(), IEnd = D->protocol_end(); I != IEnd; ++I)
440 Writer.AddDeclRef(*I, Record);
441 Code = pch::DECL_OBJC_PROTOCOL;
442}
443
444void PCHDeclWriter::VisitObjCAtDefsFieldDecl(ObjCAtDefsFieldDecl *D) {
445 VisitFieldDecl(D);
446 Code = pch::DECL_OBJC_AT_DEFS_FIELD;
447}
448
449void PCHDeclWriter::VisitObjCClassDecl(ObjCClassDecl *D) {
450 VisitDecl(D);
451 Record.push_back(D->size());
452 for (ObjCClassDecl::iterator I = D->begin(), IEnd = D->end(); I != IEnd; ++I)
453 Writer.AddDeclRef(*I, Record);
454 Code = pch::DECL_OBJC_CLASS;
455}
456
457void PCHDeclWriter::VisitObjCForwardProtocolDecl(ObjCForwardProtocolDecl *D) {
458 VisitDecl(D);
459 Record.push_back(D->protocol_size());
460 for (ObjCProtocolDecl::protocol_iterator
461 I = D->protocol_begin(), IEnd = D->protocol_end(); I != IEnd; ++I)
462 Writer.AddDeclRef(*I, Record);
463 Code = pch::DECL_OBJC_FORWARD_PROTOCOL;
464}
465
466void PCHDeclWriter::VisitObjCCategoryDecl(ObjCCategoryDecl *D) {
467 VisitObjCContainerDecl(D);
468 Writer.AddDeclRef(D->getClassInterface(), Record);
469 Record.push_back(D->protocol_size());
470 for (ObjCProtocolDecl::protocol_iterator
471 I = D->protocol_begin(), IEnd = D->protocol_end(); I != IEnd; ++I)
472 Writer.AddDeclRef(*I, Record);
473 Writer.AddDeclRef(D->getNextClassCategory(), Record);
474 Writer.AddSourceLocation(D->getLocEnd(), Record);
475 Code = pch::DECL_OBJC_CATEGORY;
476}
477
478void PCHDeclWriter::VisitObjCCompatibleAliasDecl(ObjCCompatibleAliasDecl *D) {
479 VisitNamedDecl(D);
480 Writer.AddDeclRef(D->getClassInterface(), Record);
481 Code = pch::DECL_OBJC_COMPATIBLE_ALIAS;
482}
483
484void PCHDeclWriter::VisitObjCPropertyDecl(ObjCPropertyDecl *D) {
485 VisitNamedDecl(D);
Douglas Gregor70e5a142009-04-22 23:20:34 +0000486 Writer.AddTypeRef(D->getType(), Record);
487 // FIXME: stable encoding
488 Record.push_back((unsigned)D->getPropertyAttributes());
489 // FIXME: stable encoding
490 Record.push_back((unsigned)D->getPropertyImplementation());
491 Writer.AddDeclarationName(D->getGetterName(), Record);
492 Writer.AddDeclarationName(D->getSetterName(), Record);
493 Writer.AddDeclRef(D->getGetterMethodDecl(), Record);
494 Writer.AddDeclRef(D->getSetterMethodDecl(), Record);
495 Writer.AddDeclRef(D->getPropertyIvarDecl(), Record);
Steve Naroff30833f82009-04-21 15:12:33 +0000496 Code = pch::DECL_OBJC_PROPERTY;
497}
498
499void PCHDeclWriter::VisitObjCImplDecl(ObjCImplDecl *D) {
500 VisitDecl(D);
Douglas Gregor2c2d43c2009-04-23 02:42:49 +0000501 Writer.AddDeclRef(D->getClassInterface(), Record);
502 Writer.AddSourceLocation(D->getLocEnd(), Record);
Steve Naroff30833f82009-04-21 15:12:33 +0000503 // Abstract class (no need to define a stable pch::DECL code).
504}
505
506void PCHDeclWriter::VisitObjCCategoryImplDecl(ObjCCategoryImplDecl *D) {
507 VisitObjCImplDecl(D);
Douglas Gregor10b0e1f2009-04-23 02:53:57 +0000508 Writer.AddIdentifierRef(D->getIdentifier(), Record);
Steve Naroff30833f82009-04-21 15:12:33 +0000509 Code = pch::DECL_OBJC_CATEGORY_IMPL;
510}
511
512void PCHDeclWriter::VisitObjCImplementationDecl(ObjCImplementationDecl *D) {
513 VisitObjCImplDecl(D);
Douglas Gregor8f36aba2009-04-23 03:23:08 +0000514 Writer.AddDeclRef(D->getSuperClass(), Record);
Steve Naroff30833f82009-04-21 15:12:33 +0000515 Code = pch::DECL_OBJC_IMPLEMENTATION;
516}
517
518void PCHDeclWriter::VisitObjCPropertyImplDecl(ObjCPropertyImplDecl *D) {
519 VisitDecl(D);
Douglas Gregor8818c4f2009-04-23 03:43:53 +0000520 Writer.AddSourceLocation(D->getLocStart(), Record);
521 Writer.AddDeclRef(D->getPropertyDecl(), Record);
522 Writer.AddDeclRef(D->getPropertyIvarDecl(), Record);
Steve Naroff30833f82009-04-21 15:12:33 +0000523 Code = pch::DECL_OBJC_PROPERTY_IMPL;
Steve Naroff33feeb02009-04-20 20:09:33 +0000524}
525
Douglas Gregor8c700062009-04-13 21:20:57 +0000526void PCHDeclWriter::VisitFieldDecl(FieldDecl *D) {
527 VisitValueDecl(D);
528 Record.push_back(D->isMutable());
Douglas Gregor0b748912009-04-14 21:18:50 +0000529 Record.push_back(D->getBitWidth()? 1 : 0);
530 if (D->getBitWidth())
Douglas Gregorc9490c02009-04-16 22:23:12 +0000531 Writer.AddStmt(D->getBitWidth());
Douglas Gregor8c700062009-04-13 21:20:57 +0000532 Code = pch::DECL_FIELD;
533}
534
Douglas Gregor2cf26342009-04-09 22:27:44 +0000535void PCHDeclWriter::VisitVarDecl(VarDecl *D) {
536 VisitValueDecl(D);
Douglas Gregor3a2f7e42009-04-13 22:18:37 +0000537 Record.push_back(D->getStorageClass()); // FIXME: stable encoding
Douglas Gregor2cf26342009-04-09 22:27:44 +0000538 Record.push_back(D->isThreadSpecified());
539 Record.push_back(D->hasCXXDirectInitializer());
540 Record.push_back(D->isDeclaredInCondition());
541 Writer.AddDeclRef(D->getPreviousDeclaration(), Record);
542 Writer.AddSourceLocation(D->getTypeSpecStartLoc(), Record);
Douglas Gregor0b748912009-04-14 21:18:50 +0000543 Record.push_back(D->getInit()? 1 : 0);
544 if (D->getInit())
Douglas Gregorc9490c02009-04-16 22:23:12 +0000545 Writer.AddStmt(D->getInit());
Douglas Gregor2cf26342009-04-09 22:27:44 +0000546 Code = pch::DECL_VAR;
547}
548
Douglas Gregor3a2f7e42009-04-13 22:18:37 +0000549void PCHDeclWriter::VisitParmVarDecl(ParmVarDecl *D) {
550 VisitVarDecl(D);
551 Record.push_back(D->getObjCDeclQualifier()); // FIXME: stable encoding
Douglas Gregor6a2bfb22009-04-15 18:43:11 +0000552 // FIXME: emit default argument (C++)
Douglas Gregor3a2f7e42009-04-13 22:18:37 +0000553 // FIXME: why isn't the "default argument" just stored as the initializer
554 // in VarDecl?
555 Code = pch::DECL_PARM_VAR;
556}
557
558void PCHDeclWriter::VisitOriginalParmVarDecl(OriginalParmVarDecl *D) {
559 VisitParmVarDecl(D);
560 Writer.AddTypeRef(D->getOriginalType(), Record);
561 Code = pch::DECL_ORIGINAL_PARM_VAR;
562}
563
Douglas Gregor1028bc62009-04-13 22:49:25 +0000564void PCHDeclWriter::VisitFileScopeAsmDecl(FileScopeAsmDecl *D) {
565 VisitDecl(D);
Douglas Gregorc9490c02009-04-16 22:23:12 +0000566 Writer.AddStmt(D->getAsmString());
Douglas Gregor1028bc62009-04-13 22:49:25 +0000567 Code = pch::DECL_FILE_SCOPE_ASM;
568}
569
570void PCHDeclWriter::VisitBlockDecl(BlockDecl *D) {
571 VisitDecl(D);
Douglas Gregor84af7c22009-04-17 19:21:43 +0000572 Writer.AddStmt(D->getBody());
Douglas Gregor1028bc62009-04-13 22:49:25 +0000573 Record.push_back(D->param_size());
574 for (FunctionDecl::param_iterator P = D->param_begin(), PEnd = D->param_end();
575 P != PEnd; ++P)
576 Writer.AddDeclRef(*P, Record);
577 Code = pch::DECL_BLOCK;
578}
579
Douglas Gregor2cf26342009-04-09 22:27:44 +0000580/// \brief Emit the DeclContext part of a declaration context decl.
581///
582/// \param LexicalOffset the offset at which the DECL_CONTEXT_LEXICAL
583/// block for this declaration context is stored. May be 0 to indicate
584/// that there are no declarations stored within this context.
585///
586/// \param VisibleOffset the offset at which the DECL_CONTEXT_VISIBLE
587/// block for this declaration context is stored. May be 0 to indicate
588/// that there are no declarations visible from this context. Note
589/// that this value will not be emitted for non-primary declaration
590/// contexts.
591void PCHDeclWriter::VisitDeclContext(DeclContext *DC, uint64_t LexicalOffset,
592 uint64_t VisibleOffset) {
593 Record.push_back(LexicalOffset);
Douglas Gregor0af2ca42009-04-22 19:09:20 +0000594 Record.push_back(VisibleOffset);
Douglas Gregor2cf26342009-04-09 22:27:44 +0000595}
596
597//===----------------------------------------------------------------------===//
Douglas Gregor0b748912009-04-14 21:18:50 +0000598// Statement/expression serialization
599//===----------------------------------------------------------------------===//
600namespace {
601 class VISIBILITY_HIDDEN PCHStmtWriter
602 : public StmtVisitor<PCHStmtWriter, void> {
603
604 PCHWriter &Writer;
605 PCHWriter::RecordData &Record;
606
607 public:
608 pch::StmtCode Code;
609
610 PCHStmtWriter(PCHWriter &Writer, PCHWriter::RecordData &Record)
611 : Writer(Writer), Record(Record) { }
612
Douglas Gregor025452f2009-04-17 00:04:06 +0000613 void VisitStmt(Stmt *S);
614 void VisitNullStmt(NullStmt *S);
615 void VisitCompoundStmt(CompoundStmt *S);
616 void VisitSwitchCase(SwitchCase *S);
617 void VisitCaseStmt(CaseStmt *S);
618 void VisitDefaultStmt(DefaultStmt *S);
Douglas Gregor1de05fe2009-04-17 18:18:49 +0000619 void VisitLabelStmt(LabelStmt *S);
Douglas Gregor025452f2009-04-17 00:04:06 +0000620 void VisitIfStmt(IfStmt *S);
621 void VisitSwitchStmt(SwitchStmt *S);
Douglas Gregord921cf92009-04-17 00:16:09 +0000622 void VisitWhileStmt(WhileStmt *S);
Douglas Gregor67d82492009-04-17 00:29:51 +0000623 void VisitDoStmt(DoStmt *S);
624 void VisitForStmt(ForStmt *S);
Douglas Gregor1de05fe2009-04-17 18:18:49 +0000625 void VisitGotoStmt(GotoStmt *S);
Douglas Gregor7d5c2f22009-04-17 18:58:21 +0000626 void VisitIndirectGotoStmt(IndirectGotoStmt *S);
Douglas Gregord921cf92009-04-17 00:16:09 +0000627 void VisitContinueStmt(ContinueStmt *S);
Douglas Gregor025452f2009-04-17 00:04:06 +0000628 void VisitBreakStmt(BreakStmt *S);
Douglas Gregor0de9d882009-04-17 16:34:57 +0000629 void VisitReturnStmt(ReturnStmt *S);
Douglas Gregor84f21702009-04-17 16:55:36 +0000630 void VisitDeclStmt(DeclStmt *S);
Douglas Gregorcd7d5a92009-04-17 20:57:14 +0000631 void VisitAsmStmt(AsmStmt *S);
Douglas Gregor0b748912009-04-14 21:18:50 +0000632 void VisitExpr(Expr *E);
Douglas Gregor17fc2232009-04-14 21:55:33 +0000633 void VisitPredefinedExpr(PredefinedExpr *E);
Douglas Gregor0b748912009-04-14 21:18:50 +0000634 void VisitDeclRefExpr(DeclRefExpr *E);
635 void VisitIntegerLiteral(IntegerLiteral *E);
Douglas Gregor17fc2232009-04-14 21:55:33 +0000636 void VisitFloatingLiteral(FloatingLiteral *E);
Douglas Gregorcb2ca732009-04-15 22:19:53 +0000637 void VisitImaginaryLiteral(ImaginaryLiteral *E);
Douglas Gregor673ecd62009-04-15 16:35:07 +0000638 void VisitStringLiteral(StringLiteral *E);
Douglas Gregor0b748912009-04-14 21:18:50 +0000639 void VisitCharacterLiteral(CharacterLiteral *E);
Douglas Gregorc04db4f2009-04-14 23:59:37 +0000640 void VisitParenExpr(ParenExpr *E);
Douglas Gregor0b0b77f2009-04-15 15:58:59 +0000641 void VisitUnaryOperator(UnaryOperator *E);
642 void VisitSizeOfAlignOfExpr(SizeOfAlignOfExpr *E);
Douglas Gregorcb2ca732009-04-15 22:19:53 +0000643 void VisitArraySubscriptExpr(ArraySubscriptExpr *E);
Douglas Gregor1f0d0132009-04-15 17:43:59 +0000644 void VisitCallExpr(CallExpr *E);
645 void VisitMemberExpr(MemberExpr *E);
Douglas Gregor087fd532009-04-14 23:32:43 +0000646 void VisitCastExpr(CastExpr *E);
Douglas Gregordb600c32009-04-15 00:25:59 +0000647 void VisitBinaryOperator(BinaryOperator *E);
Douglas Gregorad90e962009-04-15 22:40:36 +0000648 void VisitCompoundAssignOperator(CompoundAssignOperator *E);
649 void VisitConditionalOperator(ConditionalOperator *E);
Douglas Gregor087fd532009-04-14 23:32:43 +0000650 void VisitImplicitCastExpr(ImplicitCastExpr *E);
Douglas Gregordb600c32009-04-15 00:25:59 +0000651 void VisitExplicitCastExpr(ExplicitCastExpr *E);
652 void VisitCStyleCastExpr(CStyleCastExpr *E);
Douglas Gregorba6d7e72009-04-16 02:33:48 +0000653 void VisitCompoundLiteralExpr(CompoundLiteralExpr *E);
Douglas Gregord3c98a02009-04-15 23:02:49 +0000654 void VisitExtVectorElementExpr(ExtVectorElementExpr *E);
Douglas Gregord077d752009-04-16 00:55:48 +0000655 void VisitInitListExpr(InitListExpr *E);
656 void VisitDesignatedInitExpr(DesignatedInitExpr *E);
657 void VisitImplicitValueInitExpr(ImplicitValueInitExpr *E);
Douglas Gregord3c98a02009-04-15 23:02:49 +0000658 void VisitVAArgExpr(VAArgExpr *E);
Douglas Gregor7d5c2f22009-04-17 18:58:21 +0000659 void VisitAddrLabelExpr(AddrLabelExpr *E);
Douglas Gregor6a2dd552009-04-17 19:05:30 +0000660 void VisitStmtExpr(StmtExpr *E);
Douglas Gregor44cae0c2009-04-15 23:33:31 +0000661 void VisitTypesCompatibleExpr(TypesCompatibleExpr *E);
662 void VisitChooseExpr(ChooseExpr *E);
663 void VisitGNUNullExpr(GNUNullExpr *E);
Douglas Gregor94cd5d12009-04-16 00:01:45 +0000664 void VisitShuffleVectorExpr(ShuffleVectorExpr *E);
Douglas Gregor84af7c22009-04-17 19:21:43 +0000665 void VisitBlockExpr(BlockExpr *E);
Douglas Gregor94cd5d12009-04-16 00:01:45 +0000666 void VisitBlockDeclRefExpr(BlockDeclRefExpr *E);
Chris Lattner4dcf151a2009-04-22 05:57:30 +0000667
668 // Objective-C
Chris Lattner3a57a372009-04-22 06:29:42 +0000669 void VisitObjCStringLiteral(ObjCStringLiteral *E);
Chris Lattner4dcf151a2009-04-22 05:57:30 +0000670 void VisitObjCEncodeExpr(ObjCEncodeExpr *E);
Chris Lattner3a57a372009-04-22 06:29:42 +0000671 void VisitObjCSelectorExpr(ObjCSelectorExpr *E);
672 void VisitObjCProtocolExpr(ObjCProtocolExpr *E);
Douglas Gregor0b748912009-04-14 21:18:50 +0000673 };
674}
675
Douglas Gregor025452f2009-04-17 00:04:06 +0000676void PCHStmtWriter::VisitStmt(Stmt *S) {
677}
678
679void PCHStmtWriter::VisitNullStmt(NullStmt *S) {
680 VisitStmt(S);
681 Writer.AddSourceLocation(S->getSemiLoc(), Record);
682 Code = pch::STMT_NULL;
683}
684
685void PCHStmtWriter::VisitCompoundStmt(CompoundStmt *S) {
686 VisitStmt(S);
687 Record.push_back(S->size());
688 for (CompoundStmt::body_iterator CS = S->body_begin(), CSEnd = S->body_end();
689 CS != CSEnd; ++CS)
690 Writer.WriteSubStmt(*CS);
691 Writer.AddSourceLocation(S->getLBracLoc(), Record);
692 Writer.AddSourceLocation(S->getRBracLoc(), Record);
693 Code = pch::STMT_COMPOUND;
694}
695
696void PCHStmtWriter::VisitSwitchCase(SwitchCase *S) {
697 VisitStmt(S);
698 Record.push_back(Writer.RecordSwitchCaseID(S));
699}
700
701void PCHStmtWriter::VisitCaseStmt(CaseStmt *S) {
702 VisitSwitchCase(S);
703 Writer.WriteSubStmt(S->getLHS());
704 Writer.WriteSubStmt(S->getRHS());
705 Writer.WriteSubStmt(S->getSubStmt());
706 Writer.AddSourceLocation(S->getCaseLoc(), Record);
707 Code = pch::STMT_CASE;
708}
709
710void PCHStmtWriter::VisitDefaultStmt(DefaultStmt *S) {
711 VisitSwitchCase(S);
712 Writer.WriteSubStmt(S->getSubStmt());
713 Writer.AddSourceLocation(S->getDefaultLoc(), Record);
714 Code = pch::STMT_DEFAULT;
715}
716
Douglas Gregor1de05fe2009-04-17 18:18:49 +0000717void PCHStmtWriter::VisitLabelStmt(LabelStmt *S) {
718 VisitStmt(S);
719 Writer.AddIdentifierRef(S->getID(), Record);
720 Writer.WriteSubStmt(S->getSubStmt());
721 Writer.AddSourceLocation(S->getIdentLoc(), Record);
722 Record.push_back(Writer.GetLabelID(S));
723 Code = pch::STMT_LABEL;
724}
725
Douglas Gregor025452f2009-04-17 00:04:06 +0000726void PCHStmtWriter::VisitIfStmt(IfStmt *S) {
727 VisitStmt(S);
728 Writer.WriteSubStmt(S->getCond());
729 Writer.WriteSubStmt(S->getThen());
730 Writer.WriteSubStmt(S->getElse());
731 Writer.AddSourceLocation(S->getIfLoc(), Record);
732 Code = pch::STMT_IF;
733}
734
735void PCHStmtWriter::VisitSwitchStmt(SwitchStmt *S) {
736 VisitStmt(S);
737 Writer.WriteSubStmt(S->getCond());
738 Writer.WriteSubStmt(S->getBody());
739 Writer.AddSourceLocation(S->getSwitchLoc(), Record);
740 for (SwitchCase *SC = S->getSwitchCaseList(); SC;
741 SC = SC->getNextSwitchCase())
742 Record.push_back(Writer.getSwitchCaseID(SC));
743 Code = pch::STMT_SWITCH;
744}
745
Douglas Gregord921cf92009-04-17 00:16:09 +0000746void PCHStmtWriter::VisitWhileStmt(WhileStmt *S) {
747 VisitStmt(S);
748 Writer.WriteSubStmt(S->getCond());
749 Writer.WriteSubStmt(S->getBody());
750 Writer.AddSourceLocation(S->getWhileLoc(), Record);
751 Code = pch::STMT_WHILE;
752}
753
Douglas Gregor67d82492009-04-17 00:29:51 +0000754void PCHStmtWriter::VisitDoStmt(DoStmt *S) {
755 VisitStmt(S);
756 Writer.WriteSubStmt(S->getCond());
757 Writer.WriteSubStmt(S->getBody());
758 Writer.AddSourceLocation(S->getDoLoc(), Record);
759 Code = pch::STMT_DO;
760}
761
762void PCHStmtWriter::VisitForStmt(ForStmt *S) {
763 VisitStmt(S);
764 Writer.WriteSubStmt(S->getInit());
765 Writer.WriteSubStmt(S->getCond());
766 Writer.WriteSubStmt(S->getInc());
767 Writer.WriteSubStmt(S->getBody());
768 Writer.AddSourceLocation(S->getForLoc(), Record);
769 Code = pch::STMT_FOR;
770}
771
Douglas Gregor1de05fe2009-04-17 18:18:49 +0000772void PCHStmtWriter::VisitGotoStmt(GotoStmt *S) {
773 VisitStmt(S);
774 Record.push_back(Writer.GetLabelID(S->getLabel()));
775 Writer.AddSourceLocation(S->getGotoLoc(), Record);
776 Writer.AddSourceLocation(S->getLabelLoc(), Record);
777 Code = pch::STMT_GOTO;
778}
779
Douglas Gregor7d5c2f22009-04-17 18:58:21 +0000780void PCHStmtWriter::VisitIndirectGotoStmt(IndirectGotoStmt *S) {
781 VisitStmt(S);
Chris Lattnerad56d682009-04-19 01:04:21 +0000782 Writer.AddSourceLocation(S->getGotoLoc(), Record);
Douglas Gregor7d5c2f22009-04-17 18:58:21 +0000783 Writer.WriteSubStmt(S->getTarget());
784 Code = pch::STMT_INDIRECT_GOTO;
785}
786
Douglas Gregord921cf92009-04-17 00:16:09 +0000787void PCHStmtWriter::VisitContinueStmt(ContinueStmt *S) {
788 VisitStmt(S);
789 Writer.AddSourceLocation(S->getContinueLoc(), Record);
790 Code = pch::STMT_CONTINUE;
791}
792
Douglas Gregor025452f2009-04-17 00:04:06 +0000793void PCHStmtWriter::VisitBreakStmt(BreakStmt *S) {
794 VisitStmt(S);
795 Writer.AddSourceLocation(S->getBreakLoc(), Record);
796 Code = pch::STMT_BREAK;
797}
798
Douglas Gregor0de9d882009-04-17 16:34:57 +0000799void PCHStmtWriter::VisitReturnStmt(ReturnStmt *S) {
800 VisitStmt(S);
801 Writer.WriteSubStmt(S->getRetValue());
802 Writer.AddSourceLocation(S->getReturnLoc(), Record);
803 Code = pch::STMT_RETURN;
804}
805
Douglas Gregor84f21702009-04-17 16:55:36 +0000806void PCHStmtWriter::VisitDeclStmt(DeclStmt *S) {
807 VisitStmt(S);
808 Writer.AddSourceLocation(S->getStartLoc(), Record);
809 Writer.AddSourceLocation(S->getEndLoc(), Record);
810 DeclGroupRef DG = S->getDeclGroup();
811 for (DeclGroupRef::iterator D = DG.begin(), DEnd = DG.end(); D != DEnd; ++D)
812 Writer.AddDeclRef(*D, Record);
813 Code = pch::STMT_DECL;
814}
815
Douglas Gregorcd7d5a92009-04-17 20:57:14 +0000816void PCHStmtWriter::VisitAsmStmt(AsmStmt *S) {
817 VisitStmt(S);
818 Record.push_back(S->getNumOutputs());
819 Record.push_back(S->getNumInputs());
820 Record.push_back(S->getNumClobbers());
821 Writer.AddSourceLocation(S->getAsmLoc(), Record);
822 Writer.AddSourceLocation(S->getRParenLoc(), Record);
823 Record.push_back(S->isVolatile());
824 Record.push_back(S->isSimple());
825 Writer.WriteSubStmt(S->getAsmString());
826
827 // Outputs
828 for (unsigned I = 0, N = S->getNumOutputs(); I != N; ++I) {
829 Writer.AddString(S->getOutputName(I), Record);
830 Writer.WriteSubStmt(S->getOutputConstraintLiteral(I));
831 Writer.WriteSubStmt(S->getOutputExpr(I));
832 }
833
834 // Inputs
835 for (unsigned I = 0, N = S->getNumInputs(); I != N; ++I) {
836 Writer.AddString(S->getInputName(I), Record);
837 Writer.WriteSubStmt(S->getInputConstraintLiteral(I));
838 Writer.WriteSubStmt(S->getInputExpr(I));
839 }
840
841 // Clobbers
842 for (unsigned I = 0, N = S->getNumClobbers(); I != N; ++I)
843 Writer.WriteSubStmt(S->getClobber(I));
844
845 Code = pch::STMT_ASM;
846}
847
Douglas Gregor0b748912009-04-14 21:18:50 +0000848void PCHStmtWriter::VisitExpr(Expr *E) {
Douglas Gregor025452f2009-04-17 00:04:06 +0000849 VisitStmt(E);
Douglas Gregor0b748912009-04-14 21:18:50 +0000850 Writer.AddTypeRef(E->getType(), Record);
851 Record.push_back(E->isTypeDependent());
852 Record.push_back(E->isValueDependent());
853}
854
Douglas Gregor17fc2232009-04-14 21:55:33 +0000855void PCHStmtWriter::VisitPredefinedExpr(PredefinedExpr *E) {
856 VisitExpr(E);
857 Writer.AddSourceLocation(E->getLocation(), Record);
858 Record.push_back(E->getIdentType()); // FIXME: stable encoding
859 Code = pch::EXPR_PREDEFINED;
860}
861
Douglas Gregor0b748912009-04-14 21:18:50 +0000862void PCHStmtWriter::VisitDeclRefExpr(DeclRefExpr *E) {
863 VisitExpr(E);
864 Writer.AddDeclRef(E->getDecl(), Record);
865 Writer.AddSourceLocation(E->getLocation(), Record);
866 Code = pch::EXPR_DECL_REF;
867}
868
869void PCHStmtWriter::VisitIntegerLiteral(IntegerLiteral *E) {
870 VisitExpr(E);
871 Writer.AddSourceLocation(E->getLocation(), Record);
872 Writer.AddAPInt(E->getValue(), Record);
873 Code = pch::EXPR_INTEGER_LITERAL;
874}
875
Douglas Gregor17fc2232009-04-14 21:55:33 +0000876void PCHStmtWriter::VisitFloatingLiteral(FloatingLiteral *E) {
877 VisitExpr(E);
878 Writer.AddAPFloat(E->getValue(), Record);
879 Record.push_back(E->isExact());
880 Writer.AddSourceLocation(E->getLocation(), Record);
881 Code = pch::EXPR_FLOATING_LITERAL;
882}
883
Douglas Gregorcb2ca732009-04-15 22:19:53 +0000884void PCHStmtWriter::VisitImaginaryLiteral(ImaginaryLiteral *E) {
885 VisitExpr(E);
Douglas Gregorc9490c02009-04-16 22:23:12 +0000886 Writer.WriteSubStmt(E->getSubExpr());
Douglas Gregorcb2ca732009-04-15 22:19:53 +0000887 Code = pch::EXPR_IMAGINARY_LITERAL;
888}
889
Douglas Gregor673ecd62009-04-15 16:35:07 +0000890void PCHStmtWriter::VisitStringLiteral(StringLiteral *E) {
891 VisitExpr(E);
892 Record.push_back(E->getByteLength());
893 Record.push_back(E->getNumConcatenated());
894 Record.push_back(E->isWide());
895 // FIXME: String data should be stored as a blob at the end of the
896 // StringLiteral. However, we can't do so now because we have no
897 // provision for coping with abbreviations when we're jumping around
898 // the PCH file during deserialization.
899 Record.insert(Record.end(),
900 E->getStrData(), E->getStrData() + E->getByteLength());
901 for (unsigned I = 0, N = E->getNumConcatenated(); I != N; ++I)
902 Writer.AddSourceLocation(E->getStrTokenLoc(I), Record);
903 Code = pch::EXPR_STRING_LITERAL;
904}
905
Douglas Gregor0b748912009-04-14 21:18:50 +0000906void PCHStmtWriter::VisitCharacterLiteral(CharacterLiteral *E) {
907 VisitExpr(E);
908 Record.push_back(E->getValue());
909 Writer.AddSourceLocation(E->getLoc(), Record);
910 Record.push_back(E->isWide());
911 Code = pch::EXPR_CHARACTER_LITERAL;
912}
913
Douglas Gregorc04db4f2009-04-14 23:59:37 +0000914void PCHStmtWriter::VisitParenExpr(ParenExpr *E) {
915 VisitExpr(E);
916 Writer.AddSourceLocation(E->getLParen(), Record);
917 Writer.AddSourceLocation(E->getRParen(), Record);
Douglas Gregorc9490c02009-04-16 22:23:12 +0000918 Writer.WriteSubStmt(E->getSubExpr());
Douglas Gregorc04db4f2009-04-14 23:59:37 +0000919 Code = pch::EXPR_PAREN;
920}
921
Douglas Gregor0b0b77f2009-04-15 15:58:59 +0000922void PCHStmtWriter::VisitUnaryOperator(UnaryOperator *E) {
923 VisitExpr(E);
Douglas Gregorc9490c02009-04-16 22:23:12 +0000924 Writer.WriteSubStmt(E->getSubExpr());
Douglas Gregor0b0b77f2009-04-15 15:58:59 +0000925 Record.push_back(E->getOpcode()); // FIXME: stable encoding
926 Writer.AddSourceLocation(E->getOperatorLoc(), Record);
927 Code = pch::EXPR_UNARY_OPERATOR;
928}
929
930void PCHStmtWriter::VisitSizeOfAlignOfExpr(SizeOfAlignOfExpr *E) {
931 VisitExpr(E);
932 Record.push_back(E->isSizeOf());
933 if (E->isArgumentType())
934 Writer.AddTypeRef(E->getArgumentType(), Record);
935 else {
936 Record.push_back(0);
Douglas Gregorc9490c02009-04-16 22:23:12 +0000937 Writer.WriteSubStmt(E->getArgumentExpr());
Douglas Gregor0b0b77f2009-04-15 15:58:59 +0000938 }
939 Writer.AddSourceLocation(E->getOperatorLoc(), Record);
940 Writer.AddSourceLocation(E->getRParenLoc(), Record);
941 Code = pch::EXPR_SIZEOF_ALIGN_OF;
942}
943
Douglas Gregorcb2ca732009-04-15 22:19:53 +0000944void PCHStmtWriter::VisitArraySubscriptExpr(ArraySubscriptExpr *E) {
945 VisitExpr(E);
Douglas Gregorc9490c02009-04-16 22:23:12 +0000946 Writer.WriteSubStmt(E->getLHS());
947 Writer.WriteSubStmt(E->getRHS());
Douglas Gregorcb2ca732009-04-15 22:19:53 +0000948 Writer.AddSourceLocation(E->getRBracketLoc(), Record);
949 Code = pch::EXPR_ARRAY_SUBSCRIPT;
950}
951
Douglas Gregor1f0d0132009-04-15 17:43:59 +0000952void PCHStmtWriter::VisitCallExpr(CallExpr *E) {
953 VisitExpr(E);
954 Record.push_back(E->getNumArgs());
955 Writer.AddSourceLocation(E->getRParenLoc(), Record);
Douglas Gregorc9490c02009-04-16 22:23:12 +0000956 Writer.WriteSubStmt(E->getCallee());
Douglas Gregor1f0d0132009-04-15 17:43:59 +0000957 for (CallExpr::arg_iterator Arg = E->arg_begin(), ArgEnd = E->arg_end();
958 Arg != ArgEnd; ++Arg)
Douglas Gregorc9490c02009-04-16 22:23:12 +0000959 Writer.WriteSubStmt(*Arg);
Douglas Gregor1f0d0132009-04-15 17:43:59 +0000960 Code = pch::EXPR_CALL;
961}
962
963void PCHStmtWriter::VisitMemberExpr(MemberExpr *E) {
964 VisitExpr(E);
Douglas Gregorc9490c02009-04-16 22:23:12 +0000965 Writer.WriteSubStmt(E->getBase());
Douglas Gregor1f0d0132009-04-15 17:43:59 +0000966 Writer.AddDeclRef(E->getMemberDecl(), Record);
967 Writer.AddSourceLocation(E->getMemberLoc(), Record);
968 Record.push_back(E->isArrow());
969 Code = pch::EXPR_MEMBER;
970}
971
Douglas Gregor087fd532009-04-14 23:32:43 +0000972void PCHStmtWriter::VisitCastExpr(CastExpr *E) {
973 VisitExpr(E);
Douglas Gregorc9490c02009-04-16 22:23:12 +0000974 Writer.WriteSubStmt(E->getSubExpr());
Douglas Gregor087fd532009-04-14 23:32:43 +0000975}
976
Douglas Gregordb600c32009-04-15 00:25:59 +0000977void PCHStmtWriter::VisitBinaryOperator(BinaryOperator *E) {
978 VisitExpr(E);
Douglas Gregorc9490c02009-04-16 22:23:12 +0000979 Writer.WriteSubStmt(E->getLHS());
980 Writer.WriteSubStmt(E->getRHS());
Douglas Gregordb600c32009-04-15 00:25:59 +0000981 Record.push_back(E->getOpcode()); // FIXME: stable encoding
982 Writer.AddSourceLocation(E->getOperatorLoc(), Record);
983 Code = pch::EXPR_BINARY_OPERATOR;
984}
985
Douglas Gregorad90e962009-04-15 22:40:36 +0000986void PCHStmtWriter::VisitCompoundAssignOperator(CompoundAssignOperator *E) {
987 VisitBinaryOperator(E);
988 Writer.AddTypeRef(E->getComputationLHSType(), Record);
989 Writer.AddTypeRef(E->getComputationResultType(), Record);
990 Code = pch::EXPR_COMPOUND_ASSIGN_OPERATOR;
991}
992
993void PCHStmtWriter::VisitConditionalOperator(ConditionalOperator *E) {
994 VisitExpr(E);
Douglas Gregorc9490c02009-04-16 22:23:12 +0000995 Writer.WriteSubStmt(E->getCond());
996 Writer.WriteSubStmt(E->getLHS());
997 Writer.WriteSubStmt(E->getRHS());
Douglas Gregorad90e962009-04-15 22:40:36 +0000998 Code = pch::EXPR_CONDITIONAL_OPERATOR;
999}
1000
Douglas Gregor087fd532009-04-14 23:32:43 +00001001void PCHStmtWriter::VisitImplicitCastExpr(ImplicitCastExpr *E) {
1002 VisitCastExpr(E);
1003 Record.push_back(E->isLvalueCast());
1004 Code = pch::EXPR_IMPLICIT_CAST;
1005}
1006
Douglas Gregordb600c32009-04-15 00:25:59 +00001007void PCHStmtWriter::VisitExplicitCastExpr(ExplicitCastExpr *E) {
1008 VisitCastExpr(E);
1009 Writer.AddTypeRef(E->getTypeAsWritten(), Record);
1010}
1011
1012void PCHStmtWriter::VisitCStyleCastExpr(CStyleCastExpr *E) {
1013 VisitExplicitCastExpr(E);
1014 Writer.AddSourceLocation(E->getLParenLoc(), Record);
1015 Writer.AddSourceLocation(E->getRParenLoc(), Record);
1016 Code = pch::EXPR_CSTYLE_CAST;
1017}
1018
Douglas Gregorba6d7e72009-04-16 02:33:48 +00001019void PCHStmtWriter::VisitCompoundLiteralExpr(CompoundLiteralExpr *E) {
1020 VisitExpr(E);
1021 Writer.AddSourceLocation(E->getLParenLoc(), Record);
Douglas Gregorc9490c02009-04-16 22:23:12 +00001022 Writer.WriteSubStmt(E->getInitializer());
Douglas Gregorba6d7e72009-04-16 02:33:48 +00001023 Record.push_back(E->isFileScope());
1024 Code = pch::EXPR_COMPOUND_LITERAL;
1025}
1026
Douglas Gregord3c98a02009-04-15 23:02:49 +00001027void PCHStmtWriter::VisitExtVectorElementExpr(ExtVectorElementExpr *E) {
1028 VisitExpr(E);
Douglas Gregorc9490c02009-04-16 22:23:12 +00001029 Writer.WriteSubStmt(E->getBase());
Douglas Gregord3c98a02009-04-15 23:02:49 +00001030 Writer.AddIdentifierRef(&E->getAccessor(), Record);
1031 Writer.AddSourceLocation(E->getAccessorLoc(), Record);
1032 Code = pch::EXPR_EXT_VECTOR_ELEMENT;
1033}
1034
Douglas Gregord077d752009-04-16 00:55:48 +00001035void PCHStmtWriter::VisitInitListExpr(InitListExpr *E) {
1036 VisitExpr(E);
1037 Record.push_back(E->getNumInits());
1038 for (unsigned I = 0, N = E->getNumInits(); I != N; ++I)
Douglas Gregorc9490c02009-04-16 22:23:12 +00001039 Writer.WriteSubStmt(E->getInit(I));
1040 Writer.WriteSubStmt(E->getSyntacticForm());
Douglas Gregord077d752009-04-16 00:55:48 +00001041 Writer.AddSourceLocation(E->getLBraceLoc(), Record);
1042 Writer.AddSourceLocation(E->getRBraceLoc(), Record);
1043 Writer.AddDeclRef(E->getInitializedFieldInUnion(), Record);
1044 Record.push_back(E->hadArrayRangeDesignator());
1045 Code = pch::EXPR_INIT_LIST;
1046}
1047
1048void PCHStmtWriter::VisitDesignatedInitExpr(DesignatedInitExpr *E) {
1049 VisitExpr(E);
1050 Record.push_back(E->getNumSubExprs());
1051 for (unsigned I = 0, N = E->getNumSubExprs(); I != N; ++I)
Douglas Gregorc9490c02009-04-16 22:23:12 +00001052 Writer.WriteSubStmt(E->getSubExpr(I));
Douglas Gregord077d752009-04-16 00:55:48 +00001053 Writer.AddSourceLocation(E->getEqualOrColonLoc(), Record);
1054 Record.push_back(E->usesGNUSyntax());
1055 for (DesignatedInitExpr::designators_iterator D = E->designators_begin(),
1056 DEnd = E->designators_end();
1057 D != DEnd; ++D) {
1058 if (D->isFieldDesignator()) {
1059 if (FieldDecl *Field = D->getField()) {
1060 Record.push_back(pch::DESIG_FIELD_DECL);
1061 Writer.AddDeclRef(Field, Record);
1062 } else {
1063 Record.push_back(pch::DESIG_FIELD_NAME);
1064 Writer.AddIdentifierRef(D->getFieldName(), Record);
1065 }
1066 Writer.AddSourceLocation(D->getDotLoc(), Record);
1067 Writer.AddSourceLocation(D->getFieldLoc(), Record);
1068 } else if (D->isArrayDesignator()) {
1069 Record.push_back(pch::DESIG_ARRAY);
1070 Record.push_back(D->getFirstExprIndex());
1071 Writer.AddSourceLocation(D->getLBracketLoc(), Record);
1072 Writer.AddSourceLocation(D->getRBracketLoc(), Record);
1073 } else {
1074 assert(D->isArrayRangeDesignator() && "Unknown designator");
1075 Record.push_back(pch::DESIG_ARRAY_RANGE);
1076 Record.push_back(D->getFirstExprIndex());
1077 Writer.AddSourceLocation(D->getLBracketLoc(), Record);
1078 Writer.AddSourceLocation(D->getEllipsisLoc(), Record);
1079 Writer.AddSourceLocation(D->getRBracketLoc(), Record);
1080 }
1081 }
1082 Code = pch::EXPR_DESIGNATED_INIT;
1083}
1084
1085void PCHStmtWriter::VisitImplicitValueInitExpr(ImplicitValueInitExpr *E) {
1086 VisitExpr(E);
1087 Code = pch::EXPR_IMPLICIT_VALUE_INIT;
1088}
1089
Douglas Gregord3c98a02009-04-15 23:02:49 +00001090void PCHStmtWriter::VisitVAArgExpr(VAArgExpr *E) {
1091 VisitExpr(E);
Douglas Gregorc9490c02009-04-16 22:23:12 +00001092 Writer.WriteSubStmt(E->getSubExpr());
Douglas Gregord3c98a02009-04-15 23:02:49 +00001093 Writer.AddSourceLocation(E->getBuiltinLoc(), Record);
1094 Writer.AddSourceLocation(E->getRParenLoc(), Record);
1095 Code = pch::EXPR_VA_ARG;
1096}
1097
Douglas Gregor7d5c2f22009-04-17 18:58:21 +00001098void PCHStmtWriter::VisitAddrLabelExpr(AddrLabelExpr *E) {
1099 VisitExpr(E);
1100 Writer.AddSourceLocation(E->getAmpAmpLoc(), Record);
1101 Writer.AddSourceLocation(E->getLabelLoc(), Record);
1102 Record.push_back(Writer.GetLabelID(E->getLabel()));
1103 Code = pch::EXPR_ADDR_LABEL;
1104}
1105
Douglas Gregor6a2dd552009-04-17 19:05:30 +00001106void PCHStmtWriter::VisitStmtExpr(StmtExpr *E) {
1107 VisitExpr(E);
1108 Writer.WriteSubStmt(E->getSubStmt());
1109 Writer.AddSourceLocation(E->getLParenLoc(), Record);
1110 Writer.AddSourceLocation(E->getRParenLoc(), Record);
1111 Code = pch::EXPR_STMT;
1112}
1113
Douglas Gregor44cae0c2009-04-15 23:33:31 +00001114void PCHStmtWriter::VisitTypesCompatibleExpr(TypesCompatibleExpr *E) {
1115 VisitExpr(E);
1116 Writer.AddTypeRef(E->getArgType1(), Record);
1117 Writer.AddTypeRef(E->getArgType2(), Record);
1118 Writer.AddSourceLocation(E->getBuiltinLoc(), Record);
1119 Writer.AddSourceLocation(E->getRParenLoc(), Record);
1120 Code = pch::EXPR_TYPES_COMPATIBLE;
1121}
1122
1123void PCHStmtWriter::VisitChooseExpr(ChooseExpr *E) {
1124 VisitExpr(E);
Douglas Gregorc9490c02009-04-16 22:23:12 +00001125 Writer.WriteSubStmt(E->getCond());
1126 Writer.WriteSubStmt(E->getLHS());
1127 Writer.WriteSubStmt(E->getRHS());
Douglas Gregor44cae0c2009-04-15 23:33:31 +00001128 Writer.AddSourceLocation(E->getBuiltinLoc(), Record);
1129 Writer.AddSourceLocation(E->getRParenLoc(), Record);
1130 Code = pch::EXPR_CHOOSE;
1131}
1132
1133void PCHStmtWriter::VisitGNUNullExpr(GNUNullExpr *E) {
1134 VisitExpr(E);
1135 Writer.AddSourceLocation(E->getTokenLocation(), Record);
1136 Code = pch::EXPR_GNU_NULL;
1137}
1138
Douglas Gregor94cd5d12009-04-16 00:01:45 +00001139void PCHStmtWriter::VisitShuffleVectorExpr(ShuffleVectorExpr *E) {
1140 VisitExpr(E);
1141 Record.push_back(E->getNumSubExprs());
1142 for (unsigned I = 0, N = E->getNumSubExprs(); I != N; ++I)
Douglas Gregorc9490c02009-04-16 22:23:12 +00001143 Writer.WriteSubStmt(E->getExpr(I));
Douglas Gregor94cd5d12009-04-16 00:01:45 +00001144 Writer.AddSourceLocation(E->getBuiltinLoc(), Record);
1145 Writer.AddSourceLocation(E->getRParenLoc(), Record);
1146 Code = pch::EXPR_SHUFFLE_VECTOR;
1147}
1148
Douglas Gregor84af7c22009-04-17 19:21:43 +00001149void PCHStmtWriter::VisitBlockExpr(BlockExpr *E) {
1150 VisitExpr(E);
1151 Writer.AddDeclRef(E->getBlockDecl(), Record);
1152 Record.push_back(E->hasBlockDeclRefExprs());
1153 Code = pch::EXPR_BLOCK;
1154}
1155
Douglas Gregor94cd5d12009-04-16 00:01:45 +00001156void PCHStmtWriter::VisitBlockDeclRefExpr(BlockDeclRefExpr *E) {
1157 VisitExpr(E);
1158 Writer.AddDeclRef(E->getDecl(), Record);
1159 Writer.AddSourceLocation(E->getLocation(), Record);
1160 Record.push_back(E->isByRef());
1161 Code = pch::EXPR_BLOCK_DECL_REF;
1162}
1163
Douglas Gregor0b748912009-04-14 21:18:50 +00001164//===----------------------------------------------------------------------===//
Chris Lattner4dcf151a2009-04-22 05:57:30 +00001165// Objective-C Expressions and Statements.
1166//===----------------------------------------------------------------------===//
1167
Chris Lattner3a57a372009-04-22 06:29:42 +00001168void PCHStmtWriter::VisitObjCStringLiteral(ObjCStringLiteral *E) {
1169 VisitExpr(E);
1170 Writer.WriteSubStmt(E->getString());
1171 Writer.AddSourceLocation(E->getAtLoc(), Record);
1172 Code = pch::EXPR_OBJC_STRING_LITERAL;
1173}
1174
Chris Lattner4dcf151a2009-04-22 05:57:30 +00001175void PCHStmtWriter::VisitObjCEncodeExpr(ObjCEncodeExpr *E) {
1176 VisitExpr(E);
1177 Writer.AddTypeRef(E->getEncodedType(), Record);
1178 Writer.AddSourceLocation(E->getAtLoc(), Record);
1179 Writer.AddSourceLocation(E->getRParenLoc(), Record);
1180 Code = pch::EXPR_OBJC_ENCODE;
1181}
1182
Chris Lattner3a57a372009-04-22 06:29:42 +00001183void PCHStmtWriter::VisitObjCSelectorExpr(ObjCSelectorExpr *E) {
1184 VisitExpr(E);
Steve Naroff90cd1bb2009-04-23 10:39:46 +00001185 Writer.AddSelectorRef(E->getSelector(), Record);
Chris Lattner3a57a372009-04-22 06:29:42 +00001186 Writer.AddSourceLocation(E->getAtLoc(), Record);
1187 Writer.AddSourceLocation(E->getRParenLoc(), Record);
1188 Code = pch::EXPR_OBJC_SELECTOR_EXPR;
1189}
1190
1191void PCHStmtWriter::VisitObjCProtocolExpr(ObjCProtocolExpr *E) {
1192 VisitExpr(E);
1193 Writer.AddDeclRef(E->getProtocol(), Record);
1194 Writer.AddSourceLocation(E->getAtLoc(), Record);
1195 Writer.AddSourceLocation(E->getRParenLoc(), Record);
1196 Code = pch::EXPR_OBJC_PROTOCOL_EXPR;
1197}
1198
Chris Lattner4dcf151a2009-04-22 05:57:30 +00001199
1200//===----------------------------------------------------------------------===//
Douglas Gregor2cf26342009-04-09 22:27:44 +00001201// PCHWriter Implementation
1202//===----------------------------------------------------------------------===//
1203
Douglas Gregor2bec0412009-04-10 21:16:55 +00001204/// \brief Write the target triple (e.g., i686-apple-darwin9).
1205void PCHWriter::WriteTargetTriple(const TargetInfo &Target) {
1206 using namespace llvm;
1207 BitCodeAbbrev *Abbrev = new BitCodeAbbrev();
1208 Abbrev->Add(BitCodeAbbrevOp(pch::TARGET_TRIPLE));
1209 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // Triple name
Douglas Gregorc9490c02009-04-16 22:23:12 +00001210 unsigned TripleAbbrev = Stream.EmitAbbrev(Abbrev);
Douglas Gregor2bec0412009-04-10 21:16:55 +00001211
1212 RecordData Record;
1213 Record.push_back(pch::TARGET_TRIPLE);
1214 const char *Triple = Target.getTargetTriple();
Douglas Gregorc9490c02009-04-16 22:23:12 +00001215 Stream.EmitRecordWithBlob(TripleAbbrev, Record, Triple, strlen(Triple));
Douglas Gregor2bec0412009-04-10 21:16:55 +00001216}
1217
1218/// \brief Write the LangOptions structure.
Douglas Gregor0a0428e2009-04-10 20:39:37 +00001219void PCHWriter::WriteLanguageOptions(const LangOptions &LangOpts) {
1220 RecordData Record;
1221 Record.push_back(LangOpts.Trigraphs);
1222 Record.push_back(LangOpts.BCPLComment); // BCPL-style '//' comments.
1223 Record.push_back(LangOpts.DollarIdents); // '$' allowed in identifiers.
1224 Record.push_back(LangOpts.AsmPreprocessor); // Preprocessor in asm mode.
1225 Record.push_back(LangOpts.GNUMode); // True in gnu99 mode false in c99 mode (etc)
1226 Record.push_back(LangOpts.ImplicitInt); // C89 implicit 'int'.
1227 Record.push_back(LangOpts.Digraphs); // C94, C99 and C++
1228 Record.push_back(LangOpts.HexFloats); // C99 Hexadecimal float constants.
1229 Record.push_back(LangOpts.C99); // C99 Support
1230 Record.push_back(LangOpts.Microsoft); // Microsoft extensions.
1231 Record.push_back(LangOpts.CPlusPlus); // C++ Support
1232 Record.push_back(LangOpts.CPlusPlus0x); // C++0x Support
1233 Record.push_back(LangOpts.NoExtensions); // All extensions are disabled, strict mode.
1234 Record.push_back(LangOpts.CXXOperatorNames); // Treat C++ operator names as keywords.
1235
1236 Record.push_back(LangOpts.ObjC1); // Objective-C 1 support enabled.
1237 Record.push_back(LangOpts.ObjC2); // Objective-C 2 support enabled.
1238 Record.push_back(LangOpts.ObjCNonFragileABI); // Objective-C modern abi enabled
1239
1240 Record.push_back(LangOpts.PascalStrings); // Allow Pascal strings
1241 Record.push_back(LangOpts.Boolean); // Allow bool/true/false
1242 Record.push_back(LangOpts.WritableStrings); // Allow writable strings
1243 Record.push_back(LangOpts.LaxVectorConversions);
1244 Record.push_back(LangOpts.Exceptions); // Support exception handling.
1245
1246 Record.push_back(LangOpts.NeXTRuntime); // Use NeXT runtime.
1247 Record.push_back(LangOpts.Freestanding); // Freestanding implementation
1248 Record.push_back(LangOpts.NoBuiltin); // Do not use builtin functions (-fno-builtin)
1249
1250 Record.push_back(LangOpts.ThreadsafeStatics); // Whether static initializers are protected
1251 // by locks.
1252 Record.push_back(LangOpts.Blocks); // block extension to C
1253 Record.push_back(LangOpts.EmitAllDecls); // Emit all declarations, even if
1254 // they are unused.
1255 Record.push_back(LangOpts.MathErrno); // Math functions must respect errno
1256 // (modulo the platform support).
1257
1258 Record.push_back(LangOpts.OverflowChecking); // Extension to call a handler function when
1259 // signed integer arithmetic overflows.
1260
1261 Record.push_back(LangOpts.HeinousExtensions); // Extensions that we really don't like and
1262 // may be ripped out at any time.
1263
1264 Record.push_back(LangOpts.Optimize); // Whether __OPTIMIZE__ should be defined.
1265 Record.push_back(LangOpts.OptimizeSize); // Whether __OPTIMIZE_SIZE__ should be
1266 // defined.
1267 Record.push_back(LangOpts.Static); // Should __STATIC__ be defined (as
1268 // opposed to __DYNAMIC__).
1269 Record.push_back(LangOpts.PICLevel); // The value for __PIC__, if non-zero.
1270
1271 Record.push_back(LangOpts.GNUInline); // Should GNU inline semantics be
1272 // used (instead of C99 semantics).
1273 Record.push_back(LangOpts.NoInline); // Should __NO_INLINE__ be defined.
1274 Record.push_back(LangOpts.getGCMode());
1275 Record.push_back(LangOpts.getVisibilityMode());
1276 Record.push_back(LangOpts.InstantiationDepth);
Douglas Gregorc9490c02009-04-16 22:23:12 +00001277 Stream.EmitRecord(pch::LANGUAGE_OPTIONS, Record);
Douglas Gregor0a0428e2009-04-10 20:39:37 +00001278}
1279
Douglas Gregor14f79002009-04-10 03:52:48 +00001280//===----------------------------------------------------------------------===//
1281// Source Manager Serialization
1282//===----------------------------------------------------------------------===//
1283
1284/// \brief Create an abbreviation for the SLocEntry that refers to a
1285/// file.
Douglas Gregorc9490c02009-04-16 22:23:12 +00001286static unsigned CreateSLocFileAbbrev(llvm::BitstreamWriter &Stream) {
Douglas Gregor14f79002009-04-10 03:52:48 +00001287 using namespace llvm;
1288 BitCodeAbbrev *Abbrev = new BitCodeAbbrev();
1289 Abbrev->Add(BitCodeAbbrevOp(pch::SM_SLOC_FILE_ENTRY));
1290 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // Offset
1291 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // Include location
1292 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 2)); // Characteristic
1293 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // Line directives
Douglas Gregor14f79002009-04-10 03:52:48 +00001294 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // File name
Douglas Gregorc9490c02009-04-16 22:23:12 +00001295 return Stream.EmitAbbrev(Abbrev);
Douglas Gregor14f79002009-04-10 03:52:48 +00001296}
1297
1298/// \brief Create an abbreviation for the SLocEntry that refers to a
1299/// buffer.
Douglas Gregorc9490c02009-04-16 22:23:12 +00001300static unsigned CreateSLocBufferAbbrev(llvm::BitstreamWriter &Stream) {
Douglas Gregor14f79002009-04-10 03:52:48 +00001301 using namespace llvm;
1302 BitCodeAbbrev *Abbrev = new BitCodeAbbrev();
1303 Abbrev->Add(BitCodeAbbrevOp(pch::SM_SLOC_BUFFER_ENTRY));
1304 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // Offset
1305 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // Include location
1306 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 2)); // Characteristic
1307 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // Line directives
1308 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // Buffer name blob
Douglas Gregorc9490c02009-04-16 22:23:12 +00001309 return Stream.EmitAbbrev(Abbrev);
Douglas Gregor14f79002009-04-10 03:52:48 +00001310}
1311
1312/// \brief Create an abbreviation for the SLocEntry that refers to a
1313/// buffer's blob.
Douglas Gregorc9490c02009-04-16 22:23:12 +00001314static unsigned CreateSLocBufferBlobAbbrev(llvm::BitstreamWriter &Stream) {
Douglas Gregor14f79002009-04-10 03:52:48 +00001315 using namespace llvm;
1316 BitCodeAbbrev *Abbrev = new BitCodeAbbrev();
1317 Abbrev->Add(BitCodeAbbrevOp(pch::SM_SLOC_BUFFER_BLOB));
1318 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // Blob
Douglas Gregorc9490c02009-04-16 22:23:12 +00001319 return Stream.EmitAbbrev(Abbrev);
Douglas Gregor14f79002009-04-10 03:52:48 +00001320}
1321
1322/// \brief Create an abbreviation for the SLocEntry that refers to an
1323/// buffer.
Douglas Gregorc9490c02009-04-16 22:23:12 +00001324static unsigned CreateSLocInstantiationAbbrev(llvm::BitstreamWriter &Stream) {
Douglas Gregor14f79002009-04-10 03:52:48 +00001325 using namespace llvm;
1326 BitCodeAbbrev *Abbrev = new BitCodeAbbrev();
1327 Abbrev->Add(BitCodeAbbrevOp(pch::SM_SLOC_INSTANTIATION_ENTRY));
1328 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // Offset
1329 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // Spelling location
1330 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // Start location
1331 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // End location
Douglas Gregorf60e9912009-04-15 18:05:10 +00001332 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // Token length
Douglas Gregorc9490c02009-04-16 22:23:12 +00001333 return Stream.EmitAbbrev(Abbrev);
Douglas Gregor14f79002009-04-10 03:52:48 +00001334}
1335
1336/// \brief Writes the block containing the serialized form of the
1337/// source manager.
1338///
1339/// TODO: We should probably use an on-disk hash table (stored in a
1340/// blob), indexed based on the file name, so that we only create
1341/// entries for files that we actually need. In the common case (no
1342/// errors), we probably won't have to create file entries for any of
1343/// the files in the AST.
1344void PCHWriter::WriteSourceManagerBlock(SourceManager &SourceMgr) {
Chris Lattnerf04ad692009-04-10 17:16:57 +00001345 // Enter the source manager block.
Douglas Gregorc9490c02009-04-16 22:23:12 +00001346 Stream.EnterSubblock(pch::SOURCE_MANAGER_BLOCK_ID, 3);
Douglas Gregor14f79002009-04-10 03:52:48 +00001347
1348 // Abbreviations for the various kinds of source-location entries.
1349 int SLocFileAbbrv = -1;
1350 int SLocBufferAbbrv = -1;
1351 int SLocBufferBlobAbbrv = -1;
1352 int SLocInstantiationAbbrv = -1;
1353
1354 // Write out the source location entry table. We skip the first
1355 // entry, which is always the same dummy entry.
1356 RecordData Record;
1357 for (SourceManager::sloc_entry_iterator
1358 SLoc = SourceMgr.sloc_entry_begin() + 1,
1359 SLocEnd = SourceMgr.sloc_entry_end();
1360 SLoc != SLocEnd; ++SLoc) {
1361 // Figure out which record code to use.
1362 unsigned Code;
1363 if (SLoc->isFile()) {
1364 if (SLoc->getFile().getContentCache()->Entry)
1365 Code = pch::SM_SLOC_FILE_ENTRY;
1366 else
1367 Code = pch::SM_SLOC_BUFFER_ENTRY;
1368 } else
1369 Code = pch::SM_SLOC_INSTANTIATION_ENTRY;
1370 Record.push_back(Code);
1371
1372 Record.push_back(SLoc->getOffset());
1373 if (SLoc->isFile()) {
1374 const SrcMgr::FileInfo &File = SLoc->getFile();
1375 Record.push_back(File.getIncludeLoc().getRawEncoding());
1376 Record.push_back(File.getFileCharacteristic()); // FIXME: stable encoding
Douglas Gregorbd945002009-04-13 16:31:14 +00001377 Record.push_back(File.hasLineDirectives());
Douglas Gregor14f79002009-04-10 03:52:48 +00001378
1379 const SrcMgr::ContentCache *Content = File.getContentCache();
1380 if (Content->Entry) {
1381 // The source location entry is a file. The blob associated
1382 // with this entry is the file name.
1383 if (SLocFileAbbrv == -1)
Douglas Gregorc9490c02009-04-16 22:23:12 +00001384 SLocFileAbbrv = CreateSLocFileAbbrev(Stream);
1385 Stream.EmitRecordWithBlob(SLocFileAbbrv, Record,
Douglas Gregor14f79002009-04-10 03:52:48 +00001386 Content->Entry->getName(),
1387 strlen(Content->Entry->getName()));
1388 } else {
1389 // The source location entry is a buffer. The blob associated
1390 // with this entry contains the contents of the buffer.
1391 if (SLocBufferAbbrv == -1) {
Douglas Gregorc9490c02009-04-16 22:23:12 +00001392 SLocBufferAbbrv = CreateSLocBufferAbbrev(Stream);
1393 SLocBufferBlobAbbrv = CreateSLocBufferBlobAbbrev(Stream);
Douglas Gregor14f79002009-04-10 03:52:48 +00001394 }
1395
1396 // We add one to the size so that we capture the trailing NULL
1397 // that is required by llvm::MemoryBuffer::getMemBuffer (on
1398 // the reader side).
1399 const llvm::MemoryBuffer *Buffer = Content->getBuffer();
1400 const char *Name = Buffer->getBufferIdentifier();
Douglas Gregorc9490c02009-04-16 22:23:12 +00001401 Stream.EmitRecordWithBlob(SLocBufferAbbrv, Record, Name, strlen(Name) + 1);
Douglas Gregor14f79002009-04-10 03:52:48 +00001402 Record.clear();
1403 Record.push_back(pch::SM_SLOC_BUFFER_BLOB);
Douglas Gregorc9490c02009-04-16 22:23:12 +00001404 Stream.EmitRecordWithBlob(SLocBufferBlobAbbrv, Record,
Douglas Gregor14f79002009-04-10 03:52:48 +00001405 Buffer->getBufferStart(),
1406 Buffer->getBufferSize() + 1);
1407 }
1408 } else {
1409 // The source location entry is an instantiation.
1410 const SrcMgr::InstantiationInfo &Inst = SLoc->getInstantiation();
1411 Record.push_back(Inst.getSpellingLoc().getRawEncoding());
1412 Record.push_back(Inst.getInstantiationLocStart().getRawEncoding());
1413 Record.push_back(Inst.getInstantiationLocEnd().getRawEncoding());
1414
Douglas Gregorf60e9912009-04-15 18:05:10 +00001415 // Compute the token length for this macro expansion.
1416 unsigned NextOffset = SourceMgr.getNextOffset();
1417 SourceManager::sloc_entry_iterator NextSLoc = SLoc;
1418 if (++NextSLoc != SLocEnd)
1419 NextOffset = NextSLoc->getOffset();
1420 Record.push_back(NextOffset - SLoc->getOffset() - 1);
1421
Douglas Gregor14f79002009-04-10 03:52:48 +00001422 if (SLocInstantiationAbbrv == -1)
Douglas Gregorc9490c02009-04-16 22:23:12 +00001423 SLocInstantiationAbbrv = CreateSLocInstantiationAbbrev(Stream);
1424 Stream.EmitRecordWithAbbrev(SLocInstantiationAbbrv, Record);
Douglas Gregor14f79002009-04-10 03:52:48 +00001425 }
1426
1427 Record.clear();
1428 }
1429
Douglas Gregorbd945002009-04-13 16:31:14 +00001430 // Write the line table.
1431 if (SourceMgr.hasLineTable()) {
1432 LineTableInfo &LineTable = SourceMgr.getLineTable();
1433
1434 // Emit the file names
1435 Record.push_back(LineTable.getNumFilenames());
1436 for (unsigned I = 0, N = LineTable.getNumFilenames(); I != N; ++I) {
1437 // Emit the file name
1438 const char *Filename = LineTable.getFilename(I);
1439 unsigned FilenameLen = Filename? strlen(Filename) : 0;
1440 Record.push_back(FilenameLen);
1441 if (FilenameLen)
1442 Record.insert(Record.end(), Filename, Filename + FilenameLen);
1443 }
1444
1445 // Emit the line entries
1446 for (LineTableInfo::iterator L = LineTable.begin(), LEnd = LineTable.end();
1447 L != LEnd; ++L) {
1448 // Emit the file ID
1449 Record.push_back(L->first);
1450
1451 // Emit the line entries
1452 Record.push_back(L->second.size());
1453 for (std::vector<LineEntry>::iterator LE = L->second.begin(),
1454 LEEnd = L->second.end();
1455 LE != LEEnd; ++LE) {
1456 Record.push_back(LE->FileOffset);
1457 Record.push_back(LE->LineNo);
1458 Record.push_back(LE->FilenameID);
1459 Record.push_back((unsigned)LE->FileKind);
1460 Record.push_back(LE->IncludeOffset);
1461 }
Douglas Gregorc9490c02009-04-16 22:23:12 +00001462 Stream.EmitRecord(pch::SM_LINE_TABLE, Record);
Douglas Gregorbd945002009-04-13 16:31:14 +00001463 }
1464 }
1465
Douglas Gregorc9490c02009-04-16 22:23:12 +00001466 Stream.ExitBlock();
Douglas Gregor14f79002009-04-10 03:52:48 +00001467}
1468
Chris Lattner0b1fb982009-04-10 17:15:23 +00001469/// \brief Writes the block containing the serialized form of the
1470/// preprocessor.
1471///
Chris Lattnerdf961c22009-04-10 18:08:30 +00001472void PCHWriter::WritePreprocessor(const Preprocessor &PP) {
Chris Lattnerf04ad692009-04-10 17:16:57 +00001473 // Enter the preprocessor block.
Douglas Gregor668c1a42009-04-21 22:25:48 +00001474 Stream.EnterSubblock(pch::PREPROCESSOR_BLOCK_ID, 2);
Chris Lattnerf04ad692009-04-10 17:16:57 +00001475
Chris Lattner7c5d24e2009-04-10 18:00:12 +00001476 // If the PCH file contains __DATE__ or __TIME__ emit a warning about this.
1477 // FIXME: use diagnostics subsystem for localization etc.
1478 if (PP.SawDateOrTime())
1479 fprintf(stderr, "warning: precompiled header used __DATE__ or __TIME__.\n");
Chris Lattnerf04ad692009-04-10 17:16:57 +00001480
Chris Lattner7c5d24e2009-04-10 18:00:12 +00001481 RecordData Record;
Chris Lattnerf04ad692009-04-10 17:16:57 +00001482
Chris Lattnerc1f9d822009-04-13 01:29:17 +00001483 // If the preprocessor __COUNTER__ value has been bumped, remember it.
1484 if (PP.getCounterValue() != 0) {
1485 Record.push_back(PP.getCounterValue());
Douglas Gregorc9490c02009-04-16 22:23:12 +00001486 Stream.EmitRecord(pch::PP_COUNTER_VALUE, Record);
Chris Lattnerc1f9d822009-04-13 01:29:17 +00001487 Record.clear();
1488 }
1489
Chris Lattner7c5d24e2009-04-10 18:00:12 +00001490 // Loop over all the macro definitions that are live at the end of the file,
1491 // emitting each to the PP section.
Chris Lattner7c5d24e2009-04-10 18:00:12 +00001492 for (Preprocessor::macro_iterator I = PP.macro_begin(), E = PP.macro_end();
1493 I != E; ++I) {
Chris Lattner42d42b52009-04-10 21:41:48 +00001494 // FIXME: This emits macros in hash table order, we should do it in a stable
1495 // order so that output is reproducible.
Chris Lattner7c5d24e2009-04-10 18:00:12 +00001496 MacroInfo *MI = I->second;
1497
1498 // Don't emit builtin macros like __LINE__ to the PCH file unless they have
1499 // been redefined by the header (in which case they are not isBuiltinMacro).
1500 if (MI->isBuiltinMacro())
1501 continue;
1502
Douglas Gregor37e26842009-04-21 23:56:24 +00001503 // FIXME: Remove this identifier reference?
Chris Lattner7356a312009-04-11 21:15:38 +00001504 AddIdentifierRef(I->first, Record);
Douglas Gregor37e26842009-04-21 23:56:24 +00001505 MacroOffsets[I->first] = Stream.GetCurrentBitNo();
Chris Lattner7c5d24e2009-04-10 18:00:12 +00001506 Record.push_back(MI->getDefinitionLoc().getRawEncoding());
1507 Record.push_back(MI->isUsed());
1508
1509 unsigned Code;
1510 if (MI->isObjectLike()) {
1511 Code = pch::PP_MACRO_OBJECT_LIKE;
1512 } else {
1513 Code = pch::PP_MACRO_FUNCTION_LIKE;
1514
1515 Record.push_back(MI->isC99Varargs());
1516 Record.push_back(MI->isGNUVarargs());
1517 Record.push_back(MI->getNumArgs());
1518 for (MacroInfo::arg_iterator I = MI->arg_begin(), E = MI->arg_end();
1519 I != E; ++I)
Chris Lattner7356a312009-04-11 21:15:38 +00001520 AddIdentifierRef(*I, Record);
Chris Lattner7c5d24e2009-04-10 18:00:12 +00001521 }
Douglas Gregorc9490c02009-04-16 22:23:12 +00001522 Stream.EmitRecord(Code, Record);
Chris Lattner7c5d24e2009-04-10 18:00:12 +00001523 Record.clear();
1524
Chris Lattnerdf961c22009-04-10 18:08:30 +00001525 // Emit the tokens array.
1526 for (unsigned TokNo = 0, e = MI->getNumTokens(); TokNo != e; ++TokNo) {
1527 // Note that we know that the preprocessor does not have any annotation
1528 // tokens in it because they are created by the parser, and thus can't be
1529 // in a macro definition.
1530 const Token &Tok = MI->getReplacementToken(TokNo);
1531
1532 Record.push_back(Tok.getLocation().getRawEncoding());
1533 Record.push_back(Tok.getLength());
1534
Chris Lattnerdf961c22009-04-10 18:08:30 +00001535 // FIXME: When reading literal tokens, reconstruct the literal pointer if
1536 // it is needed.
Chris Lattner7356a312009-04-11 21:15:38 +00001537 AddIdentifierRef(Tok.getIdentifierInfo(), Record);
Chris Lattnerdf961c22009-04-10 18:08:30 +00001538
1539 // FIXME: Should translate token kind to a stable encoding.
1540 Record.push_back(Tok.getKind());
1541 // FIXME: Should translate token flags to a stable encoding.
1542 Record.push_back(Tok.getFlags());
1543
Douglas Gregorc9490c02009-04-16 22:23:12 +00001544 Stream.EmitRecord(pch::PP_TOKEN, Record);
Chris Lattnerdf961c22009-04-10 18:08:30 +00001545 Record.clear();
1546 }
Douglas Gregor37e26842009-04-21 23:56:24 +00001547 ++NumMacros;
Chris Lattner7c5d24e2009-04-10 18:00:12 +00001548 }
1549
Douglas Gregorc9490c02009-04-16 22:23:12 +00001550 Stream.ExitBlock();
Chris Lattner0b1fb982009-04-10 17:15:23 +00001551}
1552
1553
Douglas Gregor2cf26342009-04-09 22:27:44 +00001554/// \brief Write the representation of a type to the PCH stream.
1555void PCHWriter::WriteType(const Type *T) {
Douglas Gregor8038d512009-04-10 17:25:41 +00001556 pch::TypeID &ID = TypeIDs[T];
Chris Lattnerf04ad692009-04-10 17:16:57 +00001557 if (ID == 0) // we haven't seen this type before.
Douglas Gregor2cf26342009-04-09 22:27:44 +00001558 ID = NextTypeID++;
1559
1560 // Record the offset for this type.
1561 if (TypeOffsets.size() == ID - pch::NUM_PREDEF_TYPE_IDS)
Douglas Gregorc9490c02009-04-16 22:23:12 +00001562 TypeOffsets.push_back(Stream.GetCurrentBitNo());
Douglas Gregor2cf26342009-04-09 22:27:44 +00001563 else if (TypeOffsets.size() < ID - pch::NUM_PREDEF_TYPE_IDS) {
1564 TypeOffsets.resize(ID + 1 - pch::NUM_PREDEF_TYPE_IDS);
Douglas Gregorc9490c02009-04-16 22:23:12 +00001565 TypeOffsets[ID - pch::NUM_PREDEF_TYPE_IDS] = Stream.GetCurrentBitNo();
Douglas Gregor2cf26342009-04-09 22:27:44 +00001566 }
1567
1568 RecordData Record;
1569
1570 // Emit the type's representation.
1571 PCHTypeWriter W(*this, Record);
1572 switch (T->getTypeClass()) {
1573 // For all of the concrete, non-dependent types, call the
1574 // appropriate visitor function.
1575#define TYPE(Class, Base) \
1576 case Type::Class: W.Visit##Class##Type(cast<Class##Type>(T)); break;
1577#define ABSTRACT_TYPE(Class, Base)
1578#define DEPENDENT_TYPE(Class, Base)
1579#include "clang/AST/TypeNodes.def"
1580
1581 // For all of the dependent type nodes (which only occur in C++
1582 // templates), produce an error.
1583#define TYPE(Class, Base)
1584#define DEPENDENT_TYPE(Class, Base) case Type::Class:
1585#include "clang/AST/TypeNodes.def"
1586 assert(false && "Cannot serialize dependent type nodes");
1587 break;
1588 }
1589
1590 // Emit the serialized record.
Douglas Gregorc9490c02009-04-16 22:23:12 +00001591 Stream.EmitRecord(W.Code, Record);
Douglas Gregor0b748912009-04-14 21:18:50 +00001592
1593 // Flush any expressions that were written as part of this type.
Douglas Gregorc9490c02009-04-16 22:23:12 +00001594 FlushStmts();
Douglas Gregor2cf26342009-04-09 22:27:44 +00001595}
1596
1597/// \brief Write a block containing all of the types.
1598void PCHWriter::WriteTypesBlock(ASTContext &Context) {
Chris Lattnerf04ad692009-04-10 17:16:57 +00001599 // Enter the types block.
Douglas Gregorc9490c02009-04-16 22:23:12 +00001600 Stream.EnterSubblock(pch::TYPES_BLOCK_ID, 2);
Douglas Gregor2cf26342009-04-09 22:27:44 +00001601
1602 // Emit all of the types in the ASTContext
1603 for (std::vector<Type*>::const_iterator T = Context.getTypes().begin(),
1604 TEnd = Context.getTypes().end();
1605 T != TEnd; ++T) {
1606 // Builtin types are never serialized.
1607 if (isa<BuiltinType>(*T))
1608 continue;
1609
1610 WriteType(*T);
1611 }
1612
1613 // Exit the types block
Douglas Gregorc9490c02009-04-16 22:23:12 +00001614 Stream.ExitBlock();
Douglas Gregor2cf26342009-04-09 22:27:44 +00001615}
1616
1617/// \brief Write the block containing all of the declaration IDs
1618/// lexically declared within the given DeclContext.
1619///
1620/// \returns the offset of the DECL_CONTEXT_LEXICAL block within the
1621/// bistream, or 0 if no block was written.
1622uint64_t PCHWriter::WriteDeclContextLexicalBlock(ASTContext &Context,
1623 DeclContext *DC) {
Douglas Gregor8038d512009-04-10 17:25:41 +00001624 if (DC->decls_empty(Context))
Douglas Gregor2cf26342009-04-09 22:27:44 +00001625 return 0;
1626
Douglas Gregorc9490c02009-04-16 22:23:12 +00001627 uint64_t Offset = Stream.GetCurrentBitNo();
Douglas Gregor2cf26342009-04-09 22:27:44 +00001628 RecordData Record;
1629 for (DeclContext::decl_iterator D = DC->decls_begin(Context),
1630 DEnd = DC->decls_end(Context);
1631 D != DEnd; ++D)
1632 AddDeclRef(*D, Record);
1633
Douglas Gregor25123082009-04-22 22:34:57 +00001634 ++NumLexicalDeclContexts;
Douglas Gregorc9490c02009-04-16 22:23:12 +00001635 Stream.EmitRecord(pch::DECL_CONTEXT_LEXICAL, Record);
Douglas Gregor2cf26342009-04-09 22:27:44 +00001636 return Offset;
1637}
1638
1639/// \brief Write the block containing all of the declaration IDs
1640/// visible from the given DeclContext.
1641///
1642/// \returns the offset of the DECL_CONTEXT_VISIBLE block within the
1643/// bistream, or 0 if no block was written.
1644uint64_t PCHWriter::WriteDeclContextVisibleBlock(ASTContext &Context,
1645 DeclContext *DC) {
1646 if (DC->getPrimaryContext() != DC)
1647 return 0;
1648
Douglas Gregoraff22df2009-04-21 22:32:33 +00001649 // Since there is no name lookup into functions or methods, and we
1650 // perform name lookup for the translation unit via the
1651 // IdentifierInfo chains, don't bother to build a
1652 // visible-declarations table for these entities.
1653 if (DC->isFunctionOrMethod() || DC->isTranslationUnit())
Douglas Gregor58f06992009-04-18 15:49:20 +00001654 return 0;
1655
Douglas Gregor2cf26342009-04-09 22:27:44 +00001656 // Force the DeclContext to build a its name-lookup table.
1657 DC->lookup(Context, DeclarationName());
1658
1659 // Serialize the contents of the mapping used for lookup. Note that,
1660 // although we have two very different code paths, the serialized
1661 // representation is the same for both cases: a declaration name,
1662 // followed by a size, followed by references to the visible
1663 // declarations that have that name.
Douglas Gregorc9490c02009-04-16 22:23:12 +00001664 uint64_t Offset = Stream.GetCurrentBitNo();
Douglas Gregor2cf26342009-04-09 22:27:44 +00001665 RecordData Record;
1666 StoredDeclsMap *Map = static_cast<StoredDeclsMap*>(DC->getLookupPtr());
Douglas Gregor8c700062009-04-13 21:20:57 +00001667 if (!Map)
1668 return 0;
1669
Douglas Gregor2cf26342009-04-09 22:27:44 +00001670 for (StoredDeclsMap::iterator D = Map->begin(), DEnd = Map->end();
1671 D != DEnd; ++D) {
1672 AddDeclarationName(D->first, Record);
1673 DeclContext::lookup_result Result = D->second.getLookupResult(Context);
1674 Record.push_back(Result.second - Result.first);
1675 for(; Result.first != Result.second; ++Result.first)
1676 AddDeclRef(*Result.first, Record);
1677 }
1678
1679 if (Record.size() == 0)
1680 return 0;
1681
Douglas Gregorc9490c02009-04-16 22:23:12 +00001682 Stream.EmitRecord(pch::DECL_CONTEXT_VISIBLE, Record);
Douglas Gregor25123082009-04-22 22:34:57 +00001683 ++NumVisibleDeclContexts;
Douglas Gregor2cf26342009-04-09 22:27:44 +00001684 return Offset;
1685}
1686
1687/// \brief Write a block containing all of the declarations.
1688void PCHWriter::WriteDeclsBlock(ASTContext &Context) {
Chris Lattnerf04ad692009-04-10 17:16:57 +00001689 // Enter the declarations block.
Douglas Gregorc9490c02009-04-16 22:23:12 +00001690 Stream.EnterSubblock(pch::DECLS_BLOCK_ID, 2);
Douglas Gregor2cf26342009-04-09 22:27:44 +00001691
1692 // Emit all of the declarations.
1693 RecordData Record;
Douglas Gregor72971342009-04-18 00:02:19 +00001694 PCHDeclWriter W(*this, Context, Record);
Douglas Gregor2cf26342009-04-09 22:27:44 +00001695 while (!DeclsToEmit.empty()) {
1696 // Pull the next declaration off the queue
1697 Decl *D = DeclsToEmit.front();
1698 DeclsToEmit.pop();
1699
1700 // If this declaration is also a DeclContext, write blocks for the
1701 // declarations that lexically stored inside its context and those
1702 // declarations that are visible from its context. These blocks
1703 // are written before the declaration itself so that we can put
1704 // their offsets into the record for the declaration.
1705 uint64_t LexicalOffset = 0;
1706 uint64_t VisibleOffset = 0;
1707 DeclContext *DC = dyn_cast<DeclContext>(D);
1708 if (DC) {
1709 LexicalOffset = WriteDeclContextLexicalBlock(Context, DC);
1710 VisibleOffset = WriteDeclContextVisibleBlock(Context, DC);
1711 }
1712
1713 // Determine the ID for this declaration
Douglas Gregor8038d512009-04-10 17:25:41 +00001714 pch::DeclID ID = DeclIDs[D];
Douglas Gregor2cf26342009-04-09 22:27:44 +00001715 if (ID == 0)
1716 ID = DeclIDs.size();
1717
1718 unsigned Index = ID - 1;
1719
1720 // Record the offset for this declaration
1721 if (DeclOffsets.size() == Index)
Douglas Gregorc9490c02009-04-16 22:23:12 +00001722 DeclOffsets.push_back(Stream.GetCurrentBitNo());
Douglas Gregor2cf26342009-04-09 22:27:44 +00001723 else if (DeclOffsets.size() < Index) {
1724 DeclOffsets.resize(Index+1);
Douglas Gregorc9490c02009-04-16 22:23:12 +00001725 DeclOffsets[Index] = Stream.GetCurrentBitNo();
Douglas Gregor2cf26342009-04-09 22:27:44 +00001726 }
1727
1728 // Build and emit a record for this declaration
1729 Record.clear();
1730 W.Code = (pch::DeclCode)0;
1731 W.Visit(D);
1732 if (DC) W.VisitDeclContext(DC, LexicalOffset, VisibleOffset);
Douglas Gregor70e5a142009-04-22 23:20:34 +00001733
1734 if (!W.Code) {
1735 fprintf(stderr, "Cannot serialize declaration of kind %s\n",
1736 D->getDeclKindName());
1737 assert(false && "Unhandled declaration kind while generating PCH");
1738 exit(-1);
1739 }
Douglas Gregorc9490c02009-04-16 22:23:12 +00001740 Stream.EmitRecord(W.Code, Record);
Douglas Gregorfdd01722009-04-14 00:24:19 +00001741
Douglas Gregor68a2eb02009-04-15 21:30:51 +00001742 // If the declaration had any attributes, write them now.
1743 if (D->hasAttrs())
1744 WriteAttributeRecord(D->getAttrs());
1745
Douglas Gregor0b748912009-04-14 21:18:50 +00001746 // Flush any expressions that were written as part of this declaration.
Douglas Gregorc9490c02009-04-16 22:23:12 +00001747 FlushStmts();
Douglas Gregor0b748912009-04-14 21:18:50 +00001748
Douglas Gregorfdd01722009-04-14 00:24:19 +00001749 // Note external declarations so that we can add them to a record
1750 // in the PCH file later.
1751 if (isa<FileScopeAsmDecl>(D))
1752 ExternalDefinitions.push_back(ID);
Douglas Gregor2cf26342009-04-09 22:27:44 +00001753 }
1754
1755 // Exit the declarations block
Douglas Gregorc9490c02009-04-16 22:23:12 +00001756 Stream.ExitBlock();
Douglas Gregor2cf26342009-04-09 22:27:44 +00001757}
1758
Douglas Gregor3251ceb2009-04-20 20:36:09 +00001759namespace {
1760class VISIBILITY_HIDDEN PCHIdentifierTableTrait {
1761 PCHWriter &Writer;
Douglas Gregor37e26842009-04-21 23:56:24 +00001762 Preprocessor &PP;
Douglas Gregor3251ceb2009-04-20 20:36:09 +00001763
1764public:
1765 typedef const IdentifierInfo* key_type;
1766 typedef key_type key_type_ref;
1767
1768 typedef pch::IdentID data_type;
1769 typedef data_type data_type_ref;
1770
Douglas Gregor37e26842009-04-21 23:56:24 +00001771 PCHIdentifierTableTrait(PCHWriter &Writer, Preprocessor &PP)
1772 : Writer(Writer), PP(PP) { }
Douglas Gregor3251ceb2009-04-20 20:36:09 +00001773
1774 static unsigned ComputeHash(const IdentifierInfo* II) {
1775 return clang::BernsteinHash(II->getName());
1776 }
1777
Douglas Gregor37e26842009-04-21 23:56:24 +00001778 std::pair<unsigned,unsigned>
Douglas Gregor3251ceb2009-04-20 20:36:09 +00001779 EmitKeyDataLength(llvm::raw_ostream& Out, const IdentifierInfo* II,
1780 pch::IdentID ID) {
1781 unsigned KeyLen = strlen(II->getName()) + 1;
1782 clang::io::Emit16(Out, KeyLen);
Douglas Gregor668c1a42009-04-21 22:25:48 +00001783 unsigned DataLen = 4 + 4; // 4 bytes for token ID, builtin, flags
1784 // 4 bytes for the persistent ID
Douglas Gregor37e26842009-04-21 23:56:24 +00001785 if (II->hasMacroDefinition() &&
1786 !PP.getMacroInfo(const_cast<IdentifierInfo *>(II))->isBuiltinMacro())
1787 DataLen += 8;
Douglas Gregor3251ceb2009-04-20 20:36:09 +00001788 for (IdentifierResolver::iterator D = IdentifierResolver::begin(II),
1789 DEnd = IdentifierResolver::end();
1790 D != DEnd; ++D)
1791 DataLen += sizeof(pch::DeclID);
Douglas Gregor668c1a42009-04-21 22:25:48 +00001792 clang::io::Emit16(Out, DataLen);
Douglas Gregor3251ceb2009-04-20 20:36:09 +00001793 return std::make_pair(KeyLen, DataLen);
1794 }
1795
1796 void EmitKey(llvm::raw_ostream& Out, const IdentifierInfo* II,
1797 unsigned KeyLen) {
1798 // Record the location of the key data. This is used when generating
1799 // the mapping from persistent IDs to strings.
1800 Writer.SetIdentifierOffset(II, Out.tell());
1801 Out.write(II->getName(), KeyLen);
1802 }
1803
1804 void EmitData(llvm::raw_ostream& Out, const IdentifierInfo* II,
1805 pch::IdentID ID, unsigned) {
1806 uint32_t Bits = 0;
Douglas Gregor37e26842009-04-21 23:56:24 +00001807 bool hasMacroDefinition =
1808 II->hasMacroDefinition() &&
1809 !PP.getMacroInfo(const_cast<IdentifierInfo *>(II))->isBuiltinMacro();
Douglas Gregor3251ceb2009-04-20 20:36:09 +00001810 Bits = Bits | (uint32_t)II->getTokenID();
Douglas Gregor2deaea32009-04-22 18:49:13 +00001811 Bits = (Bits << 10) | (uint32_t)II->getObjCOrBuiltinID();
1812 Bits = (Bits << 1) | hasMacroDefinition;
Douglas Gregor3251ceb2009-04-20 20:36:09 +00001813 Bits = (Bits << 1) | II->isExtensionToken();
1814 Bits = (Bits << 1) | II->isPoisoned();
1815 Bits = (Bits << 1) | II->isCPlusPlusOperatorKeyword();
1816 clang::io::Emit32(Out, Bits);
1817 clang::io::Emit32(Out, ID);
1818
Douglas Gregor37e26842009-04-21 23:56:24 +00001819 if (hasMacroDefinition)
1820 clang::io::Emit64(Out, Writer.getMacroOffset(II));
1821
Douglas Gregor668c1a42009-04-21 22:25:48 +00001822 // Emit the declaration IDs in reverse order, because the
1823 // IdentifierResolver provides the declarations as they would be
1824 // visible (e.g., the function "stat" would come before the struct
1825 // "stat"), but IdentifierResolver::AddDeclToIdentifierChain()
1826 // adds declarations to the end of the list (so we need to see the
1827 // struct "status" before the function "status").
1828 llvm::SmallVector<Decl *, 16> Decls(IdentifierResolver::begin(II),
1829 IdentifierResolver::end());
1830 for (llvm::SmallVector<Decl *, 16>::reverse_iterator D = Decls.rbegin(),
1831 DEnd = Decls.rend();
Douglas Gregor3251ceb2009-04-20 20:36:09 +00001832 D != DEnd; ++D)
Douglas Gregor668c1a42009-04-21 22:25:48 +00001833 clang::io::Emit32(Out, Writer.getDeclID(*D));
Douglas Gregor3251ceb2009-04-20 20:36:09 +00001834 }
1835};
1836} // end anonymous namespace
1837
Douglas Gregorafaf3082009-04-11 00:14:32 +00001838/// \brief Write the identifier table into the PCH file.
1839///
1840/// The identifier table consists of a blob containing string data
1841/// (the actual identifiers themselves) and a separate "offsets" index
1842/// that maps identifier IDs to locations within the blob.
Douglas Gregor37e26842009-04-21 23:56:24 +00001843void PCHWriter::WriteIdentifierTable(Preprocessor &PP) {
Douglas Gregorafaf3082009-04-11 00:14:32 +00001844 using namespace llvm;
1845
1846 // Create and write out the blob that contains the identifier
1847 // strings.
Douglas Gregor3251ceb2009-04-20 20:36:09 +00001848 IdentifierOffsets.resize(IdentifierIDs.size());
Douglas Gregorafaf3082009-04-11 00:14:32 +00001849 {
Douglas Gregor3251ceb2009-04-20 20:36:09 +00001850 OnDiskChainedHashTableGenerator<PCHIdentifierTableTrait> Generator;
1851
1852 // Create the on-disk hash table representation.
Douglas Gregorafaf3082009-04-11 00:14:32 +00001853 for (llvm::DenseMap<const IdentifierInfo *, pch::IdentID>::iterator
1854 ID = IdentifierIDs.begin(), IDEnd = IdentifierIDs.end();
1855 ID != IDEnd; ++ID) {
1856 assert(ID->first && "NULL identifier in identifier table");
Douglas Gregor3251ceb2009-04-20 20:36:09 +00001857 Generator.insert(ID->first, ID->second);
1858 }
Douglas Gregorafaf3082009-04-11 00:14:32 +00001859
Douglas Gregor3251ceb2009-04-20 20:36:09 +00001860 // Create the on-disk hash table in a buffer.
1861 llvm::SmallVector<char, 4096> IdentifierTable;
Douglas Gregor668c1a42009-04-21 22:25:48 +00001862 uint32_t BucketOffset;
Douglas Gregor3251ceb2009-04-20 20:36:09 +00001863 {
Douglas Gregor37e26842009-04-21 23:56:24 +00001864 PCHIdentifierTableTrait Trait(*this, PP);
Douglas Gregor3251ceb2009-04-20 20:36:09 +00001865 llvm::raw_svector_ostream Out(IdentifierTable);
Douglas Gregor668c1a42009-04-21 22:25:48 +00001866 BucketOffset = Generator.Emit(Out, Trait);
Douglas Gregorafaf3082009-04-11 00:14:32 +00001867 }
1868
1869 // Create a blob abbreviation
1870 BitCodeAbbrev *Abbrev = new BitCodeAbbrev();
1871 Abbrev->Add(BitCodeAbbrevOp(pch::IDENTIFIER_TABLE));
Douglas Gregor668c1a42009-04-21 22:25:48 +00001872 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32));
Douglas Gregor3251ceb2009-04-20 20:36:09 +00001873 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob));
Douglas Gregorc9490c02009-04-16 22:23:12 +00001874 unsigned IDTableAbbrev = Stream.EmitAbbrev(Abbrev);
Douglas Gregorafaf3082009-04-11 00:14:32 +00001875
1876 // Write the identifier table
1877 RecordData Record;
1878 Record.push_back(pch::IDENTIFIER_TABLE);
Douglas Gregor668c1a42009-04-21 22:25:48 +00001879 Record.push_back(BucketOffset);
Douglas Gregor3251ceb2009-04-20 20:36:09 +00001880 Stream.EmitRecordWithBlob(IDTableAbbrev, Record,
1881 &IdentifierTable.front(),
1882 IdentifierTable.size());
Douglas Gregorafaf3082009-04-11 00:14:32 +00001883 }
1884
1885 // Write the offsets table for identifier IDs.
Douglas Gregor3251ceb2009-04-20 20:36:09 +00001886 Stream.EmitRecord(pch::IDENTIFIER_OFFSET, IdentifierOffsets);
Douglas Gregorafaf3082009-04-11 00:14:32 +00001887}
1888
Steve Naroff90cd1bb2009-04-23 10:39:46 +00001889void PCHWriter::WriteSelectorTable() {
1890 Stream.EnterSubblock(pch::SELECTOR_BLOCK_ID, 3);
1891 RecordData Record;
1892 Record.push_back(pch::SELECTOR_TABLE);
1893 Record.push_back(SelectorIDs.size());
1894
1895 // Create the on-disk representation.
1896 for (unsigned selIdx = 0; selIdx < SelVector.size(); selIdx++) {
1897 assert(SelVector[selIdx].getAsOpaquePtr() && "NULL Selector found");
1898 Record.push_back(SelVector[selIdx].getNumArgs());
1899 if (SelVector[selIdx].getNumArgs())
1900 for (unsigned i = 0; i < SelVector[selIdx].getNumArgs(); i++)
1901 AddIdentifierRef(SelVector[selIdx].getIdentifierInfoForSlot(i), Record);
1902 else
1903 AddIdentifierRef(SelVector[selIdx].getIdentifierInfoForSlot(0), Record);
1904 }
1905 Stream.EmitRecord(pch::SELECTOR_TABLE, Record);
1906 Stream.ExitBlock();
1907}
1908
Douglas Gregor68a2eb02009-04-15 21:30:51 +00001909/// \brief Write a record containing the given attributes.
1910void PCHWriter::WriteAttributeRecord(const Attr *Attr) {
1911 RecordData Record;
1912 for (; Attr; Attr = Attr->getNext()) {
1913 Record.push_back(Attr->getKind()); // FIXME: stable encoding
1914 Record.push_back(Attr->isInherited());
1915 switch (Attr->getKind()) {
1916 case Attr::Alias:
1917 AddString(cast<AliasAttr>(Attr)->getAliasee(), Record);
1918 break;
1919
1920 case Attr::Aligned:
1921 Record.push_back(cast<AlignedAttr>(Attr)->getAlignment());
1922 break;
1923
1924 case Attr::AlwaysInline:
1925 break;
1926
1927 case Attr::AnalyzerNoReturn:
1928 break;
1929
1930 case Attr::Annotate:
1931 AddString(cast<AnnotateAttr>(Attr)->getAnnotation(), Record);
1932 break;
1933
1934 case Attr::AsmLabel:
1935 AddString(cast<AsmLabelAttr>(Attr)->getLabel(), Record);
1936 break;
1937
1938 case Attr::Blocks:
1939 Record.push_back(cast<BlocksAttr>(Attr)->getType()); // FIXME: stable
1940 break;
1941
1942 case Attr::Cleanup:
1943 AddDeclRef(cast<CleanupAttr>(Attr)->getFunctionDecl(), Record);
1944 break;
1945
1946 case Attr::Const:
1947 break;
1948
1949 case Attr::Constructor:
1950 Record.push_back(cast<ConstructorAttr>(Attr)->getPriority());
1951 break;
1952
1953 case Attr::DLLExport:
1954 case Attr::DLLImport:
1955 case Attr::Deprecated:
1956 break;
1957
1958 case Attr::Destructor:
1959 Record.push_back(cast<DestructorAttr>(Attr)->getPriority());
1960 break;
1961
1962 case Attr::FastCall:
1963 break;
1964
1965 case Attr::Format: {
1966 const FormatAttr *Format = cast<FormatAttr>(Attr);
1967 AddString(Format->getType(), Record);
1968 Record.push_back(Format->getFormatIdx());
1969 Record.push_back(Format->getFirstArg());
1970 break;
1971 }
1972
Chris Lattnercf2a7212009-04-20 19:12:28 +00001973 case Attr::GNUInline:
Douglas Gregor68a2eb02009-04-15 21:30:51 +00001974 case Attr::IBOutletKind:
1975 case Attr::NoReturn:
1976 case Attr::NoThrow:
1977 case Attr::Nodebug:
1978 case Attr::Noinline:
1979 break;
1980
1981 case Attr::NonNull: {
1982 const NonNullAttr *NonNull = cast<NonNullAttr>(Attr);
1983 Record.push_back(NonNull->size());
1984 Record.insert(Record.end(), NonNull->begin(), NonNull->end());
1985 break;
1986 }
1987
1988 case Attr::ObjCException:
1989 case Attr::ObjCNSObject:
1990 case Attr::Overloadable:
1991 break;
1992
1993 case Attr::Packed:
1994 Record.push_back(cast<PackedAttr>(Attr)->getAlignment());
1995 break;
1996
1997 case Attr::Pure:
1998 break;
1999
2000 case Attr::Regparm:
2001 Record.push_back(cast<RegparmAttr>(Attr)->getNumParams());
2002 break;
2003
2004 case Attr::Section:
2005 AddString(cast<SectionAttr>(Attr)->getName(), Record);
2006 break;
2007
2008 case Attr::StdCall:
2009 case Attr::TransparentUnion:
2010 case Attr::Unavailable:
2011 case Attr::Unused:
2012 case Attr::Used:
2013 break;
2014
2015 case Attr::Visibility:
2016 // FIXME: stable encoding
2017 Record.push_back(cast<VisibilityAttr>(Attr)->getVisibility());
2018 break;
2019
2020 case Attr::WarnUnusedResult:
2021 case Attr::Weak:
2022 case Attr::WeakImport:
2023 break;
2024 }
2025 }
2026
Douglas Gregorc9490c02009-04-16 22:23:12 +00002027 Stream.EmitRecord(pch::DECL_ATTR, Record);
Douglas Gregor68a2eb02009-04-15 21:30:51 +00002028}
2029
2030void PCHWriter::AddString(const std::string &Str, RecordData &Record) {
2031 Record.push_back(Str.size());
2032 Record.insert(Record.end(), Str.begin(), Str.end());
2033}
2034
Douglas Gregor3251ceb2009-04-20 20:36:09 +00002035/// \brief Note that the identifier II occurs at the given offset
2036/// within the identifier table.
2037void PCHWriter::SetIdentifierOffset(const IdentifierInfo *II, uint32_t Offset) {
2038 IdentifierOffsets[IdentifierIDs[II] - 1] = (Offset << 1) | 0x01;
2039}
2040
Douglas Gregorc9490c02009-04-16 22:23:12 +00002041PCHWriter::PCHWriter(llvm::BitstreamWriter &Stream)
Douglas Gregor37e26842009-04-21 23:56:24 +00002042 : Stream(Stream), NextTypeID(pch::NUM_PREDEF_TYPE_IDS),
Douglas Gregor25123082009-04-22 22:34:57 +00002043 NumStatements(0), NumMacros(0), NumLexicalDeclContexts(0),
2044 NumVisibleDeclContexts(0) { }
Douglas Gregor2cf26342009-04-09 22:27:44 +00002045
Douglas Gregore7785042009-04-20 15:53:59 +00002046void PCHWriter::WritePCH(Sema &SemaRef) {
2047 ASTContext &Context = SemaRef.Context;
2048 Preprocessor &PP = SemaRef.PP;
2049
Douglas Gregor2cf26342009-04-09 22:27:44 +00002050 // Emit the file header.
Douglas Gregorc9490c02009-04-16 22:23:12 +00002051 Stream.Emit((unsigned)'C', 8);
2052 Stream.Emit((unsigned)'P', 8);
2053 Stream.Emit((unsigned)'C', 8);
2054 Stream.Emit((unsigned)'H', 8);
Douglas Gregor2cf26342009-04-09 22:27:44 +00002055
2056 // The translation unit is the first declaration we'll emit.
2057 DeclIDs[Context.getTranslationUnitDecl()] = 1;
2058 DeclsToEmit.push(Context.getTranslationUnitDecl());
2059
Douglas Gregor2deaea32009-04-22 18:49:13 +00002060 // Make sure that we emit IdentifierInfos (and any attached
2061 // declarations) for builtins.
2062 {
2063 IdentifierTable &Table = PP.getIdentifierTable();
2064 llvm::SmallVector<const char *, 32> BuiltinNames;
2065 Context.BuiltinInfo.GetBuiltinNames(BuiltinNames,
2066 Context.getLangOptions().NoBuiltin);
2067 for (unsigned I = 0, N = BuiltinNames.size(); I != N; ++I)
2068 getIdentifierRef(&Table.get(BuiltinNames[I]));
2069 }
2070
Douglas Gregor4c0e86b2009-04-22 22:02:47 +00002071 // Build a record containing all of the tentative definitions in
2072 // this header file. Generally, this record will be empty.
2073 RecordData TentativeDefinitions;
2074 for (llvm::DenseMap<DeclarationName, VarDecl *>::iterator
2075 TD = SemaRef.TentativeDefinitions.begin(),
2076 TDEnd = SemaRef.TentativeDefinitions.end();
2077 TD != TDEnd; ++TD)
2078 AddDeclRef(TD->second, TentativeDefinitions);
2079
Douglas Gregor14c22f22009-04-22 22:18:58 +00002080 // Build a record containing all of the locally-scoped external
2081 // declarations in this header file. Generally, this record will be
2082 // empty.
2083 RecordData LocallyScopedExternalDecls;
2084 for (llvm::DenseMap<DeclarationName, NamedDecl *>::iterator
2085 TD = SemaRef.LocallyScopedExternalDecls.begin(),
2086 TDEnd = SemaRef.LocallyScopedExternalDecls.end();
2087 TD != TDEnd; ++TD)
2088 AddDeclRef(TD->second, LocallyScopedExternalDecls);
2089
Douglas Gregor2cf26342009-04-09 22:27:44 +00002090 // Write the remaining PCH contents.
Douglas Gregorad1de002009-04-18 05:55:16 +00002091 RecordData Record;
Douglas Gregorc9490c02009-04-16 22:23:12 +00002092 Stream.EnterSubblock(pch::PCH_BLOCK_ID, 3);
Douglas Gregor2bec0412009-04-10 21:16:55 +00002093 WriteTargetTriple(Context.Target);
Douglas Gregor0a0428e2009-04-10 20:39:37 +00002094 WriteLanguageOptions(Context.getLangOptions());
Douglas Gregor14f79002009-04-10 03:52:48 +00002095 WriteSourceManagerBlock(Context.getSourceManager());
Chris Lattner0b1fb982009-04-10 17:15:23 +00002096 WritePreprocessor(PP);
Douglas Gregor2cf26342009-04-09 22:27:44 +00002097 WriteTypesBlock(Context);
2098 WriteDeclsBlock(Context);
Steve Naroff90cd1bb2009-04-23 10:39:46 +00002099 WriteSelectorTable();
Douglas Gregor37e26842009-04-21 23:56:24 +00002100 WriteIdentifierTable(PP);
Douglas Gregorc9490c02009-04-16 22:23:12 +00002101 Stream.EmitRecord(pch::TYPE_OFFSET, TypeOffsets);
2102 Stream.EmitRecord(pch::DECL_OFFSET, DeclOffsets);
Douglas Gregorad1de002009-04-18 05:55:16 +00002103
2104 // Write the record of special types.
2105 Record.clear();
2106 AddTypeRef(Context.getBuiltinVaListType(), Record);
2107 Stream.EmitRecord(pch::SPECIAL_TYPES, Record);
2108
Douglas Gregor4c0e86b2009-04-22 22:02:47 +00002109 // Write the record containing external, unnamed definitions.
Douglas Gregorfdd01722009-04-14 00:24:19 +00002110 if (!ExternalDefinitions.empty())
Douglas Gregorc9490c02009-04-16 22:23:12 +00002111 Stream.EmitRecord(pch::EXTERNAL_DEFINITIONS, ExternalDefinitions);
Douglas Gregor4c0e86b2009-04-22 22:02:47 +00002112
2113 // Write the record containing tentative definitions.
2114 if (!TentativeDefinitions.empty())
2115 Stream.EmitRecord(pch::TENTATIVE_DEFINITIONS, TentativeDefinitions);
Douglas Gregor14c22f22009-04-22 22:18:58 +00002116
2117 // Write the record containing locally-scoped external definitions.
2118 if (!LocallyScopedExternalDecls.empty())
2119 Stream.EmitRecord(pch::LOCALLY_SCOPED_EXTERNAL_DECLS,
2120 LocallyScopedExternalDecls);
Douglas Gregor3e1af842009-04-17 22:13:46 +00002121
2122 // Some simple statistics
Douglas Gregorad1de002009-04-18 05:55:16 +00002123 Record.clear();
Douglas Gregor3e1af842009-04-17 22:13:46 +00002124 Record.push_back(NumStatements);
Douglas Gregor37e26842009-04-21 23:56:24 +00002125 Record.push_back(NumMacros);
Douglas Gregor25123082009-04-22 22:34:57 +00002126 Record.push_back(NumLexicalDeclContexts);
2127 Record.push_back(NumVisibleDeclContexts);
Douglas Gregor3e1af842009-04-17 22:13:46 +00002128 Stream.EmitRecord(pch::STATISTICS, Record);
Douglas Gregorc9490c02009-04-16 22:23:12 +00002129 Stream.ExitBlock();
Douglas Gregor2cf26342009-04-09 22:27:44 +00002130}
2131
2132void PCHWriter::AddSourceLocation(SourceLocation Loc, RecordData &Record) {
2133 Record.push_back(Loc.getRawEncoding());
2134}
2135
2136void PCHWriter::AddAPInt(const llvm::APInt &Value, RecordData &Record) {
2137 Record.push_back(Value.getBitWidth());
2138 unsigned N = Value.getNumWords();
2139 const uint64_t* Words = Value.getRawData();
2140 for (unsigned I = 0; I != N; ++I)
2141 Record.push_back(Words[I]);
2142}
2143
Douglas Gregor0a2b45e2009-04-13 18:14:40 +00002144void PCHWriter::AddAPSInt(const llvm::APSInt &Value, RecordData &Record) {
2145 Record.push_back(Value.isUnsigned());
2146 AddAPInt(Value, Record);
2147}
2148
Douglas Gregor17fc2232009-04-14 21:55:33 +00002149void PCHWriter::AddAPFloat(const llvm::APFloat &Value, RecordData &Record) {
2150 AddAPInt(Value.bitcastToAPInt(), Record);
2151}
2152
Douglas Gregor2cf26342009-04-09 22:27:44 +00002153void PCHWriter::AddIdentifierRef(const IdentifierInfo *II, RecordData &Record) {
Douglas Gregor2deaea32009-04-22 18:49:13 +00002154 Record.push_back(getIdentifierRef(II));
2155}
2156
2157pch::IdentID PCHWriter::getIdentifierRef(const IdentifierInfo *II) {
2158 if (II == 0)
2159 return 0;
Douglas Gregorafaf3082009-04-11 00:14:32 +00002160
2161 pch::IdentID &ID = IdentifierIDs[II];
2162 if (ID == 0)
2163 ID = IdentifierIDs.size();
Douglas Gregor2deaea32009-04-22 18:49:13 +00002164 return ID;
Douglas Gregor2cf26342009-04-09 22:27:44 +00002165}
2166
Steve Naroff90cd1bb2009-04-23 10:39:46 +00002167void PCHWriter::AddSelectorRef(const Selector SelRef, RecordData &Record) {
2168 if (SelRef.getAsOpaquePtr() == 0) {
2169 Record.push_back(0);
2170 return;
2171 }
2172
2173 pch::SelectorID &SID = SelectorIDs[SelRef];
2174 if (SID == 0) {
2175 SID = SelectorIDs.size();
2176 SelVector.push_back(SelRef);
2177 }
2178 Record.push_back(SID);
2179}
2180
Douglas Gregor2cf26342009-04-09 22:27:44 +00002181void PCHWriter::AddTypeRef(QualType T, RecordData &Record) {
2182 if (T.isNull()) {
2183 Record.push_back(pch::PREDEF_TYPE_NULL_ID);
2184 return;
2185 }
2186
2187 if (const BuiltinType *BT = dyn_cast<BuiltinType>(T.getTypePtr())) {
Douglas Gregore1d918e2009-04-10 23:10:45 +00002188 pch::TypeID ID = 0;
Douglas Gregor2cf26342009-04-09 22:27:44 +00002189 switch (BT->getKind()) {
2190 case BuiltinType::Void: ID = pch::PREDEF_TYPE_VOID_ID; break;
2191 case BuiltinType::Bool: ID = pch::PREDEF_TYPE_BOOL_ID; break;
2192 case BuiltinType::Char_U: ID = pch::PREDEF_TYPE_CHAR_U_ID; break;
2193 case BuiltinType::UChar: ID = pch::PREDEF_TYPE_UCHAR_ID; break;
2194 case BuiltinType::UShort: ID = pch::PREDEF_TYPE_USHORT_ID; break;
2195 case BuiltinType::UInt: ID = pch::PREDEF_TYPE_UINT_ID; break;
2196 case BuiltinType::ULong: ID = pch::PREDEF_TYPE_ULONG_ID; break;
2197 case BuiltinType::ULongLong: ID = pch::PREDEF_TYPE_ULONGLONG_ID; break;
2198 case BuiltinType::Char_S: ID = pch::PREDEF_TYPE_CHAR_S_ID; break;
2199 case BuiltinType::SChar: ID = pch::PREDEF_TYPE_SCHAR_ID; break;
2200 case BuiltinType::WChar: ID = pch::PREDEF_TYPE_WCHAR_ID; break;
2201 case BuiltinType::Short: ID = pch::PREDEF_TYPE_SHORT_ID; break;
2202 case BuiltinType::Int: ID = pch::PREDEF_TYPE_INT_ID; break;
2203 case BuiltinType::Long: ID = pch::PREDEF_TYPE_LONG_ID; break;
2204 case BuiltinType::LongLong: ID = pch::PREDEF_TYPE_LONGLONG_ID; break;
2205 case BuiltinType::Float: ID = pch::PREDEF_TYPE_FLOAT_ID; break;
2206 case BuiltinType::Double: ID = pch::PREDEF_TYPE_DOUBLE_ID; break;
2207 case BuiltinType::LongDouble: ID = pch::PREDEF_TYPE_LONGDOUBLE_ID; break;
2208 case BuiltinType::Overload: ID = pch::PREDEF_TYPE_OVERLOAD_ID; break;
2209 case BuiltinType::Dependent: ID = pch::PREDEF_TYPE_DEPENDENT_ID; break;
2210 }
2211
2212 Record.push_back((ID << 3) | T.getCVRQualifiers());
2213 return;
2214 }
2215
Douglas Gregor8038d512009-04-10 17:25:41 +00002216 pch::TypeID &ID = TypeIDs[T.getTypePtr()];
Douglas Gregor2cf26342009-04-09 22:27:44 +00002217 if (ID == 0) // we haven't seen this type before
2218 ID = NextTypeID++;
2219
2220 // Encode the type qualifiers in the type reference.
2221 Record.push_back((ID << 3) | T.getCVRQualifiers());
2222}
2223
2224void PCHWriter::AddDeclRef(const Decl *D, RecordData &Record) {
2225 if (D == 0) {
2226 Record.push_back(0);
2227 return;
2228 }
2229
Douglas Gregor8038d512009-04-10 17:25:41 +00002230 pch::DeclID &ID = DeclIDs[D];
Douglas Gregor2cf26342009-04-09 22:27:44 +00002231 if (ID == 0) {
2232 // We haven't seen this declaration before. Give it a new ID and
2233 // enqueue it in the list of declarations to emit.
2234 ID = DeclIDs.size();
2235 DeclsToEmit.push(const_cast<Decl *>(D));
2236 }
2237
2238 Record.push_back(ID);
2239}
2240
Douglas Gregor3251ceb2009-04-20 20:36:09 +00002241pch::DeclID PCHWriter::getDeclID(const Decl *D) {
2242 if (D == 0)
2243 return 0;
2244
2245 assert(DeclIDs.find(D) != DeclIDs.end() && "Declaration not emitted!");
2246 return DeclIDs[D];
2247}
2248
Douglas Gregor2cf26342009-04-09 22:27:44 +00002249void PCHWriter::AddDeclarationName(DeclarationName Name, RecordData &Record) {
2250 Record.push_back(Name.getNameKind());
2251 switch (Name.getNameKind()) {
2252 case DeclarationName::Identifier:
2253 AddIdentifierRef(Name.getAsIdentifierInfo(), Record);
2254 break;
2255
2256 case DeclarationName::ObjCZeroArgSelector:
2257 case DeclarationName::ObjCOneArgSelector:
2258 case DeclarationName::ObjCMultiArgSelector:
Steve Naroff90cd1bb2009-04-23 10:39:46 +00002259 AddSelectorRef(Name.getObjCSelector(), Record);
Douglas Gregor2cf26342009-04-09 22:27:44 +00002260 break;
2261
2262 case DeclarationName::CXXConstructorName:
2263 case DeclarationName::CXXDestructorName:
2264 case DeclarationName::CXXConversionFunctionName:
2265 AddTypeRef(Name.getCXXNameType(), Record);
2266 break;
2267
2268 case DeclarationName::CXXOperatorName:
2269 Record.push_back(Name.getCXXOverloadedOperator());
2270 break;
2271
2272 case DeclarationName::CXXUsingDirective:
2273 // No extra data to emit
2274 break;
2275 }
2276}
Douglas Gregor0b748912009-04-14 21:18:50 +00002277
Douglas Gregorc9490c02009-04-16 22:23:12 +00002278/// \brief Write the given substatement or subexpression to the
2279/// bitstream.
2280void PCHWriter::WriteSubStmt(Stmt *S) {
Douglas Gregor087fd532009-04-14 23:32:43 +00002281 RecordData Record;
2282 PCHStmtWriter Writer(*this, Record);
Douglas Gregor3e1af842009-04-17 22:13:46 +00002283 ++NumStatements;
Douglas Gregor087fd532009-04-14 23:32:43 +00002284
Douglas Gregorc9490c02009-04-16 22:23:12 +00002285 if (!S) {
2286 Stream.EmitRecord(pch::STMT_NULL_PTR, Record);
Douglas Gregor087fd532009-04-14 23:32:43 +00002287 return;
2288 }
2289
Douglas Gregorc9490c02009-04-16 22:23:12 +00002290 Writer.Code = pch::STMT_NULL_PTR;
2291 Writer.Visit(S);
2292 assert(Writer.Code != pch::STMT_NULL_PTR &&
Douglas Gregor087fd532009-04-14 23:32:43 +00002293 "Unhandled expression writing PCH file");
Douglas Gregorc9490c02009-04-16 22:23:12 +00002294 Stream.EmitRecord(Writer.Code, Record);
Douglas Gregor087fd532009-04-14 23:32:43 +00002295}
2296
Douglas Gregorc9490c02009-04-16 22:23:12 +00002297/// \brief Flush all of the statements that have been added to the
2298/// queue via AddStmt().
2299void PCHWriter::FlushStmts() {
Douglas Gregor0b748912009-04-14 21:18:50 +00002300 RecordData Record;
2301 PCHStmtWriter Writer(*this, Record);
Douglas Gregor0b748912009-04-14 21:18:50 +00002302
Douglas Gregorc9490c02009-04-16 22:23:12 +00002303 for (unsigned I = 0, N = StmtsToEmit.size(); I != N; ++I) {
Douglas Gregor3e1af842009-04-17 22:13:46 +00002304 ++NumStatements;
Douglas Gregorc9490c02009-04-16 22:23:12 +00002305 Stmt *S = StmtsToEmit[I];
Douglas Gregor087fd532009-04-14 23:32:43 +00002306
Douglas Gregorc9490c02009-04-16 22:23:12 +00002307 if (!S) {
2308 Stream.EmitRecord(pch::STMT_NULL_PTR, Record);
Douglas Gregor0b748912009-04-14 21:18:50 +00002309 continue;
2310 }
2311
Douglas Gregorc9490c02009-04-16 22:23:12 +00002312 Writer.Code = pch::STMT_NULL_PTR;
2313 Writer.Visit(S);
2314 assert(Writer.Code != pch::STMT_NULL_PTR &&
Douglas Gregor0b748912009-04-14 21:18:50 +00002315 "Unhandled expression writing PCH file");
Douglas Gregorc9490c02009-04-16 22:23:12 +00002316 Stream.EmitRecord(Writer.Code, Record);
Douglas Gregor087fd532009-04-14 23:32:43 +00002317
Douglas Gregorc9490c02009-04-16 22:23:12 +00002318 assert(N == StmtsToEmit.size() &&
2319 "Substatement writen via AddStmt rather than WriteSubStmt!");
Douglas Gregor087fd532009-04-14 23:32:43 +00002320
2321 // Note that we are at the end of a full expression. Any
2322 // expression records that follow this one are part of a different
2323 // expression.
2324 Record.clear();
Douglas Gregorc9490c02009-04-16 22:23:12 +00002325 Stream.EmitRecord(pch::STMT_STOP, Record);
Douglas Gregor0b748912009-04-14 21:18:50 +00002326 }
Douglas Gregor087fd532009-04-14 23:32:43 +00002327
Douglas Gregorc9490c02009-04-16 22:23:12 +00002328 StmtsToEmit.clear();
Douglas Gregor0de9d882009-04-17 16:34:57 +00002329 SwitchCaseIDs.clear();
Douglas Gregor0b748912009-04-14 21:18:50 +00002330}
Douglas Gregor025452f2009-04-17 00:04:06 +00002331
2332unsigned PCHWriter::RecordSwitchCaseID(SwitchCase *S) {
2333 assert(SwitchCaseIDs.find(S) == SwitchCaseIDs.end() &&
2334 "SwitchCase recorded twice");
2335 unsigned NextID = SwitchCaseIDs.size();
2336 SwitchCaseIDs[S] = NextID;
2337 return NextID;
2338}
2339
2340unsigned PCHWriter::getSwitchCaseID(SwitchCase *S) {
2341 assert(SwitchCaseIDs.find(S) != SwitchCaseIDs.end() &&
2342 "SwitchCase hasn't been seen yet");
2343 return SwitchCaseIDs[S];
2344}
Douglas Gregor1de05fe2009-04-17 18:18:49 +00002345
2346/// \brief Retrieve the ID for the given label statement, which may
2347/// or may not have been emitted yet.
2348unsigned PCHWriter::GetLabelID(LabelStmt *S) {
2349 std::map<LabelStmt *, unsigned>::iterator Pos = LabelIDs.find(S);
2350 if (Pos != LabelIDs.end())
2351 return Pos->second;
2352
2353 unsigned NextID = LabelIDs.size();
2354 LabelIDs[S] = NextID;
2355 return NextID;
2356}