blob: 8a45ebce1b9dd81e4f4c0648ea33e861c06f098a [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
Mike Stump1eb44332009-09-09 15:08:12 +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"
Douglas Gregor0b748912009-04-14 21:18:50 +000020#include "clang/AST/Expr.h"
Douglas Gregor2cf26342009-04-09 22:27:44 +000021#include "clang/AST/Type.h"
John McCalla1ee0c52009-10-16 21:56:05 +000022#include "clang/AST/TypeLocVisitor.h"
Chris Lattner7c5d24e2009-04-10 18:00:12 +000023#include "clang/Lex/MacroInfo.h"
24#include "clang/Lex/Preprocessor.h"
Steve Naroff83d63c72009-04-24 20:03:17 +000025#include "clang/Lex/HeaderSearch.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 Gregorab41e632009-04-27 22:23:34 +000031#include "clang/Basic/Version.h"
Douglas Gregor17fc2232009-04-14 21:55:33 +000032#include "llvm/ADT/APFloat.h"
33#include "llvm/ADT/APInt.h"
Daniel Dunbar2596e422009-10-17 23:52:28 +000034#include "llvm/ADT/StringExtras.h"
Douglas Gregor2cf26342009-04-09 22:27:44 +000035#include "llvm/Bitcode/BitstreamWriter.h"
36#include "llvm/Support/Compiler.h"
Douglas Gregor14f79002009-04-10 03:52:48 +000037#include "llvm/Support/MemoryBuffer.h"
Douglas Gregorb64c1932009-05-12 01:31:05 +000038#include "llvm/System/Path.h"
Chris Lattner3c304bd2009-04-11 18:40:46 +000039#include <cstdio>
Douglas Gregor2cf26342009-04-09 22:27:44 +000040using namespace clang;
41
42//===----------------------------------------------------------------------===//
43// Type serialization
44//===----------------------------------------------------------------------===//
Chris Lattner12b1c762009-04-27 06:16:06 +000045
Douglas Gregor2cf26342009-04-09 22:27:44 +000046namespace {
47 class VISIBILITY_HIDDEN PCHTypeWriter {
48 PCHWriter &Writer;
49 PCHWriter::RecordData &Record;
50
51 public:
52 /// \brief Type code that corresponds to the record generated.
53 pch::TypeCode Code;
54
Mike Stump1eb44332009-09-09 15:08:12 +000055 PCHTypeWriter(PCHWriter &Writer, PCHWriter::RecordData &Record)
Douglas Gregor4fed3f42009-04-27 18:38:38 +000056 : Writer(Writer), Record(Record), Code(pch::TYPE_EXT_QUAL) { }
Douglas Gregor2cf26342009-04-09 22:27:44 +000057
58 void VisitArrayType(const ArrayType *T);
59 void VisitFunctionType(const FunctionType *T);
60 void VisitTagType(const TagType *T);
61
62#define TYPE(Class, Base) void Visit##Class##Type(const Class##Type *T);
63#define ABSTRACT_TYPE(Class, Base)
64#define DEPENDENT_TYPE(Class, Base)
65#include "clang/AST/TypeNodes.def"
66 };
67}
68
Douglas Gregor2cf26342009-04-09 22:27:44 +000069void PCHTypeWriter::VisitBuiltinType(const BuiltinType *T) {
70 assert(false && "Built-in types are never serialized");
71}
72
73void PCHTypeWriter::VisitFixedWidthIntType(const FixedWidthIntType *T) {
74 Record.push_back(T->getWidth());
75 Record.push_back(T->isSigned());
76 Code = pch::TYPE_FIXED_WIDTH_INT;
77}
78
79void PCHTypeWriter::VisitComplexType(const ComplexType *T) {
80 Writer.AddTypeRef(T->getElementType(), Record);
81 Code = pch::TYPE_COMPLEX;
82}
83
84void PCHTypeWriter::VisitPointerType(const PointerType *T) {
85 Writer.AddTypeRef(T->getPointeeType(), Record);
86 Code = pch::TYPE_POINTER;
87}
88
89void PCHTypeWriter::VisitBlockPointerType(const BlockPointerType *T) {
Mike Stump1eb44332009-09-09 15:08:12 +000090 Writer.AddTypeRef(T->getPointeeType(), Record);
Douglas Gregor2cf26342009-04-09 22:27:44 +000091 Code = pch::TYPE_BLOCK_POINTER;
92}
93
94void PCHTypeWriter::VisitLValueReferenceType(const LValueReferenceType *T) {
95 Writer.AddTypeRef(T->getPointeeType(), Record);
96 Code = pch::TYPE_LVALUE_REFERENCE;
97}
98
99void PCHTypeWriter::VisitRValueReferenceType(const RValueReferenceType *T) {
100 Writer.AddTypeRef(T->getPointeeType(), Record);
101 Code = pch::TYPE_RVALUE_REFERENCE;
102}
103
104void PCHTypeWriter::VisitMemberPointerType(const MemberPointerType *T) {
Mike Stump1eb44332009-09-09 15:08:12 +0000105 Writer.AddTypeRef(T->getPointeeType(), Record);
106 Writer.AddTypeRef(QualType(T->getClass(), 0), Record);
Douglas Gregor2cf26342009-04-09 22:27:44 +0000107 Code = pch::TYPE_MEMBER_POINTER;
108}
109
110void PCHTypeWriter::VisitArrayType(const ArrayType *T) {
111 Writer.AddTypeRef(T->getElementType(), Record);
112 Record.push_back(T->getSizeModifier()); // FIXME: stable values
John McCall0953e762009-09-24 19:53:00 +0000113 Record.push_back(T->getIndexTypeCVRQualifiers()); // FIXME: stable values
Douglas Gregor2cf26342009-04-09 22:27:44 +0000114}
115
116void PCHTypeWriter::VisitConstantArrayType(const ConstantArrayType *T) {
117 VisitArrayType(T);
118 Writer.AddAPInt(T->getSize(), Record);
119 Code = pch::TYPE_CONSTANT_ARRAY;
120}
121
122void PCHTypeWriter::VisitIncompleteArrayType(const IncompleteArrayType *T) {
123 VisitArrayType(T);
124 Code = pch::TYPE_INCOMPLETE_ARRAY;
125}
126
127void PCHTypeWriter::VisitVariableArrayType(const VariableArrayType *T) {
128 VisitArrayType(T);
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +0000129 Writer.AddSourceLocation(T->getLBracketLoc(), Record);
130 Writer.AddSourceLocation(T->getRBracketLoc(), Record);
Douglas Gregorc9490c02009-04-16 22:23:12 +0000131 Writer.AddStmt(T->getSizeExpr());
Douglas Gregor2cf26342009-04-09 22:27:44 +0000132 Code = pch::TYPE_VARIABLE_ARRAY;
133}
134
135void PCHTypeWriter::VisitVectorType(const VectorType *T) {
136 Writer.AddTypeRef(T->getElementType(), Record);
137 Record.push_back(T->getNumElements());
138 Code = pch::TYPE_VECTOR;
139}
140
141void PCHTypeWriter::VisitExtVectorType(const ExtVectorType *T) {
142 VisitVectorType(T);
143 Code = pch::TYPE_EXT_VECTOR;
144}
145
146void PCHTypeWriter::VisitFunctionType(const FunctionType *T) {
147 Writer.AddTypeRef(T->getResultType(), Record);
148}
149
150void PCHTypeWriter::VisitFunctionNoProtoType(const FunctionNoProtoType *T) {
151 VisitFunctionType(T);
152 Code = pch::TYPE_FUNCTION_NO_PROTO;
153}
154
155void PCHTypeWriter::VisitFunctionProtoType(const FunctionProtoType *T) {
156 VisitFunctionType(T);
157 Record.push_back(T->getNumArgs());
158 for (unsigned I = 0, N = T->getNumArgs(); I != N; ++I)
159 Writer.AddTypeRef(T->getArgType(I), Record);
160 Record.push_back(T->isVariadic());
161 Record.push_back(T->getTypeQuals());
Sebastian Redl465226e2009-05-27 22:11:52 +0000162 Record.push_back(T->hasExceptionSpec());
163 Record.push_back(T->hasAnyExceptionSpec());
164 Record.push_back(T->getNumExceptions());
165 for (unsigned I = 0, N = T->getNumExceptions(); I != N; ++I)
166 Writer.AddTypeRef(T->getExceptionType(I), Record);
Douglas Gregor2cf26342009-04-09 22:27:44 +0000167 Code = pch::TYPE_FUNCTION_PROTO;
168}
169
170void PCHTypeWriter::VisitTypedefType(const TypedefType *T) {
171 Writer.AddDeclRef(T->getDecl(), Record);
172 Code = pch::TYPE_TYPEDEF;
173}
174
175void PCHTypeWriter::VisitTypeOfExprType(const TypeOfExprType *T) {
Douglas Gregorc9490c02009-04-16 22:23:12 +0000176 Writer.AddStmt(T->getUnderlyingExpr());
Douglas Gregor2cf26342009-04-09 22:27:44 +0000177 Code = pch::TYPE_TYPEOF_EXPR;
178}
179
180void PCHTypeWriter::VisitTypeOfType(const TypeOfType *T) {
181 Writer.AddTypeRef(T->getUnderlyingType(), Record);
182 Code = pch::TYPE_TYPEOF;
183}
184
Anders Carlsson395b4752009-06-24 19:06:50 +0000185void PCHTypeWriter::VisitDecltypeType(const DecltypeType *T) {
186 Writer.AddStmt(T->getUnderlyingExpr());
187 Code = pch::TYPE_DECLTYPE;
188}
189
Douglas Gregor2cf26342009-04-09 22:27:44 +0000190void PCHTypeWriter::VisitTagType(const TagType *T) {
191 Writer.AddDeclRef(T->getDecl(), Record);
Mike Stump1eb44332009-09-09 15:08:12 +0000192 assert(!T->isBeingDefined() &&
Douglas Gregor2cf26342009-04-09 22:27:44 +0000193 "Cannot serialize in the middle of a type definition");
194}
195
196void PCHTypeWriter::VisitRecordType(const RecordType *T) {
197 VisitTagType(T);
198 Code = pch::TYPE_RECORD;
199}
200
201void PCHTypeWriter::VisitEnumType(const EnumType *T) {
202 VisitTagType(T);
203 Code = pch::TYPE_ENUM;
204}
205
John McCall7da24312009-09-05 00:15:47 +0000206void PCHTypeWriter::VisitElaboratedType(const ElaboratedType *T) {
207 Writer.AddTypeRef(T->getUnderlyingType(), Record);
208 Record.push_back(T->getTagKind());
209 Code = pch::TYPE_ELABORATED;
210}
211
Mike Stump1eb44332009-09-09 15:08:12 +0000212void
John McCall49a832b2009-10-18 09:09:24 +0000213PCHTypeWriter::VisitSubstTemplateTypeParmType(
214 const SubstTemplateTypeParmType *T) {
215 Writer.AddTypeRef(QualType(T->getReplacedParameter(), 0), Record);
216 Writer.AddTypeRef(T->getReplacementType(), Record);
217 Code = pch::TYPE_SUBST_TEMPLATE_TYPE_PARM;
218}
219
220void
Douglas Gregor2cf26342009-04-09 22:27:44 +0000221PCHTypeWriter::VisitTemplateSpecializationType(
222 const TemplateSpecializationType *T) {
Douglas Gregor6a2bfb22009-04-15 18:43:11 +0000223 // FIXME: Serialize this type (C++ only)
Douglas Gregor2cf26342009-04-09 22:27:44 +0000224 assert(false && "Cannot serialize template specialization types");
225}
226
227void PCHTypeWriter::VisitQualifiedNameType(const QualifiedNameType *T) {
Douglas Gregor6a2bfb22009-04-15 18:43:11 +0000228 // FIXME: Serialize this type (C++ only)
Douglas Gregor2cf26342009-04-09 22:27:44 +0000229 assert(false && "Cannot serialize qualified name types");
230}
231
232void PCHTypeWriter::VisitObjCInterfaceType(const ObjCInterfaceType *T) {
233 Writer.AddDeclRef(T->getDecl(), Record);
Douglas Gregor2cf26342009-04-09 22:27:44 +0000234 Record.push_back(T->getNumProtocols());
Steve Naroff446ee4e2009-05-27 16:21:00 +0000235 for (ObjCInterfaceType::qual_iterator I = T->qual_begin(),
236 E = T->qual_end(); I != E; ++I)
237 Writer.AddDeclRef(*I, Record);
Steve Naroffc15cb2a2009-07-18 15:33:26 +0000238 Code = pch::TYPE_OBJC_INTERFACE;
Douglas Gregor2cf26342009-04-09 22:27:44 +0000239}
240
Steve Naroffd1b3c2d2009-06-17 22:40:22 +0000241void
242PCHTypeWriter::VisitObjCObjectPointerType(const ObjCObjectPointerType *T) {
Mike Stump1eb44332009-09-09 15:08:12 +0000243 Writer.AddTypeRef(T->getPointeeType(), Record);
Douglas Gregor2cf26342009-04-09 22:27:44 +0000244 Record.push_back(T->getNumProtocols());
Steve Naroffd1b3c2d2009-06-17 22:40:22 +0000245 for (ObjCInterfaceType::qual_iterator I = T->qual_begin(),
Steve Naroff446ee4e2009-05-27 16:21:00 +0000246 E = T->qual_end(); I != E; ++I)
247 Writer.AddDeclRef(*I, Record);
Steve Naroffd1b3c2d2009-06-17 22:40:22 +0000248 Code = pch::TYPE_OBJC_OBJECT_POINTER;
Douglas Gregor2cf26342009-04-09 22:27:44 +0000249}
250
John McCalla1ee0c52009-10-16 21:56:05 +0000251namespace {
252
253class TypeLocWriter : public TypeLocVisitor<TypeLocWriter> {
254 PCHWriter &Writer;
255 PCHWriter::RecordData &Record;
256
257public:
258 TypeLocWriter(PCHWriter &Writer, PCHWriter::RecordData &Record)
259 : Writer(Writer), Record(Record) { }
260
John McCall51bd8032009-10-18 01:05:36 +0000261#define ABSTRACT_TYPELOC(CLASS, PARENT)
John McCalla1ee0c52009-10-16 21:56:05 +0000262#define TYPELOC(CLASS, PARENT) \
John McCall51bd8032009-10-18 01:05:36 +0000263 void Visit##CLASS##TypeLoc(CLASS##TypeLoc TyLoc);
John McCalla1ee0c52009-10-16 21:56:05 +0000264#include "clang/AST/TypeLocNodes.def"
265
John McCall51bd8032009-10-18 01:05:36 +0000266 void VisitArrayTypeLoc(ArrayTypeLoc TyLoc);
267 void VisitFunctionTypeLoc(FunctionTypeLoc TyLoc);
John McCalla1ee0c52009-10-16 21:56:05 +0000268};
269
270}
271
John McCall51bd8032009-10-18 01:05:36 +0000272void TypeLocWriter::VisitQualifiedTypeLoc(QualifiedTypeLoc TL) {
273 // nothing to do
John McCalla1ee0c52009-10-16 21:56:05 +0000274}
John McCall51bd8032009-10-18 01:05:36 +0000275void TypeLocWriter::VisitBuiltinTypeLoc(BuiltinTypeLoc TL) {
276 Writer.AddSourceLocation(TL.getNameLoc(), Record);
John McCalla1ee0c52009-10-16 21:56:05 +0000277}
John McCall51bd8032009-10-18 01:05:36 +0000278void TypeLocWriter::VisitFixedWidthIntTypeLoc(FixedWidthIntTypeLoc TL) {
279 Writer.AddSourceLocation(TL.getNameLoc(), Record);
John McCalla1ee0c52009-10-16 21:56:05 +0000280}
John McCall51bd8032009-10-18 01:05:36 +0000281void TypeLocWriter::VisitComplexTypeLoc(ComplexTypeLoc TL) {
282 Writer.AddSourceLocation(TL.getNameLoc(), Record);
John McCalla1ee0c52009-10-16 21:56:05 +0000283}
John McCall51bd8032009-10-18 01:05:36 +0000284void TypeLocWriter::VisitPointerTypeLoc(PointerTypeLoc TL) {
285 Writer.AddSourceLocation(TL.getStarLoc(), Record);
John McCalla1ee0c52009-10-16 21:56:05 +0000286}
John McCall51bd8032009-10-18 01:05:36 +0000287void TypeLocWriter::VisitBlockPointerTypeLoc(BlockPointerTypeLoc TL) {
288 Writer.AddSourceLocation(TL.getCaretLoc(), Record);
John McCalla1ee0c52009-10-16 21:56:05 +0000289}
John McCall51bd8032009-10-18 01:05:36 +0000290void TypeLocWriter::VisitLValueReferenceTypeLoc(LValueReferenceTypeLoc TL) {
291 Writer.AddSourceLocation(TL.getAmpLoc(), Record);
John McCalla1ee0c52009-10-16 21:56:05 +0000292}
John McCall51bd8032009-10-18 01:05:36 +0000293void TypeLocWriter::VisitRValueReferenceTypeLoc(RValueReferenceTypeLoc TL) {
294 Writer.AddSourceLocation(TL.getAmpAmpLoc(), Record);
John McCalla1ee0c52009-10-16 21:56:05 +0000295}
John McCall51bd8032009-10-18 01:05:36 +0000296void TypeLocWriter::VisitMemberPointerTypeLoc(MemberPointerTypeLoc TL) {
297 Writer.AddSourceLocation(TL.getStarLoc(), Record);
John McCalla1ee0c52009-10-16 21:56:05 +0000298}
John McCall51bd8032009-10-18 01:05:36 +0000299void TypeLocWriter::VisitArrayTypeLoc(ArrayTypeLoc TL) {
300 Writer.AddSourceLocation(TL.getLBracketLoc(), Record);
301 Writer.AddSourceLocation(TL.getRBracketLoc(), Record);
302 Record.push_back(TL.getSizeExpr() ? 1 : 0);
303 if (TL.getSizeExpr())
304 Writer.AddStmt(TL.getSizeExpr());
John McCalla1ee0c52009-10-16 21:56:05 +0000305}
John McCall51bd8032009-10-18 01:05:36 +0000306void TypeLocWriter::VisitConstantArrayTypeLoc(ConstantArrayTypeLoc TL) {
307 VisitArrayTypeLoc(TL);
308}
309void TypeLocWriter::VisitIncompleteArrayTypeLoc(IncompleteArrayTypeLoc TL) {
310 VisitArrayTypeLoc(TL);
311}
312void TypeLocWriter::VisitVariableArrayTypeLoc(VariableArrayTypeLoc TL) {
313 VisitArrayTypeLoc(TL);
314}
315void TypeLocWriter::VisitDependentSizedArrayTypeLoc(
316 DependentSizedArrayTypeLoc TL) {
317 VisitArrayTypeLoc(TL);
318}
319void TypeLocWriter::VisitDependentSizedExtVectorTypeLoc(
320 DependentSizedExtVectorTypeLoc TL) {
321 Writer.AddSourceLocation(TL.getNameLoc(), Record);
322}
323void TypeLocWriter::VisitVectorTypeLoc(VectorTypeLoc TL) {
324 Writer.AddSourceLocation(TL.getNameLoc(), Record);
325}
326void TypeLocWriter::VisitExtVectorTypeLoc(ExtVectorTypeLoc TL) {
327 Writer.AddSourceLocation(TL.getNameLoc(), Record);
328}
329void TypeLocWriter::VisitFunctionTypeLoc(FunctionTypeLoc TL) {
330 Writer.AddSourceLocation(TL.getLParenLoc(), Record);
331 Writer.AddSourceLocation(TL.getRParenLoc(), Record);
332 for (unsigned i = 0, e = TL.getNumArgs(); i != e; ++i)
333 Writer.AddDeclRef(TL.getArg(i), Record);
334}
335void TypeLocWriter::VisitFunctionProtoTypeLoc(FunctionProtoTypeLoc TL) {
336 VisitFunctionTypeLoc(TL);
337}
338void TypeLocWriter::VisitFunctionNoProtoTypeLoc(FunctionNoProtoTypeLoc TL) {
339 VisitFunctionTypeLoc(TL);
340}
341void TypeLocWriter::VisitTypedefTypeLoc(TypedefTypeLoc TL) {
342 Writer.AddSourceLocation(TL.getNameLoc(), Record);
343}
344void TypeLocWriter::VisitTypeOfExprTypeLoc(TypeOfExprTypeLoc TL) {
345 Writer.AddSourceLocation(TL.getNameLoc(), Record);
346}
347void TypeLocWriter::VisitTypeOfTypeLoc(TypeOfTypeLoc TL) {
348 Writer.AddSourceLocation(TL.getNameLoc(), Record);
349}
350void TypeLocWriter::VisitDecltypeTypeLoc(DecltypeTypeLoc TL) {
351 Writer.AddSourceLocation(TL.getNameLoc(), Record);
352}
353void TypeLocWriter::VisitRecordTypeLoc(RecordTypeLoc TL) {
354 Writer.AddSourceLocation(TL.getNameLoc(), Record);
355}
356void TypeLocWriter::VisitEnumTypeLoc(EnumTypeLoc TL) {
357 Writer.AddSourceLocation(TL.getNameLoc(), Record);
358}
359void TypeLocWriter::VisitElaboratedTypeLoc(ElaboratedTypeLoc TL) {
360 Writer.AddSourceLocation(TL.getNameLoc(), Record);
361}
362void TypeLocWriter::VisitTemplateTypeParmTypeLoc(TemplateTypeParmTypeLoc TL) {
363 Writer.AddSourceLocation(TL.getNameLoc(), Record);
364}
John McCall49a832b2009-10-18 09:09:24 +0000365void TypeLocWriter::VisitSubstTemplateTypeParmTypeLoc(
366 SubstTemplateTypeParmTypeLoc TL) {
367 Writer.AddSourceLocation(TL.getNameLoc(), Record);
368}
John McCall51bd8032009-10-18 01:05:36 +0000369void TypeLocWriter::VisitTemplateSpecializationTypeLoc(
370 TemplateSpecializationTypeLoc TL) {
John McCall833ca992009-10-29 08:12:44 +0000371 Writer.AddSourceLocation(TL.getTemplateNameLoc(), Record);
372 Writer.AddSourceLocation(TL.getLAngleLoc(), Record);
373 Writer.AddSourceLocation(TL.getRAngleLoc(), Record);
374 for (unsigned i = 0, e = TL.getNumArgs(); i != e; ++i)
375 Writer.AddTemplateArgumentLoc(TL.getArgLoc(i), Record);
John McCall51bd8032009-10-18 01:05:36 +0000376}
377void TypeLocWriter::VisitQualifiedNameTypeLoc(QualifiedNameTypeLoc TL) {
378 Writer.AddSourceLocation(TL.getNameLoc(), Record);
379}
380void TypeLocWriter::VisitTypenameTypeLoc(TypenameTypeLoc TL) {
381 Writer.AddSourceLocation(TL.getNameLoc(), Record);
382}
383void TypeLocWriter::VisitObjCInterfaceTypeLoc(ObjCInterfaceTypeLoc TL) {
384 Writer.AddSourceLocation(TL.getNameLoc(), Record);
John McCall51bd8032009-10-18 01:05:36 +0000385 Writer.AddSourceLocation(TL.getLAngleLoc(), Record);
386 Writer.AddSourceLocation(TL.getRAngleLoc(), Record);
387 for (unsigned i = 0, e = TL.getNumProtocols(); i != e; ++i)
388 Writer.AddSourceLocation(TL.getProtocolLoc(i), Record);
John McCalla1ee0c52009-10-16 21:56:05 +0000389}
John McCall54e14c42009-10-22 22:37:11 +0000390void TypeLocWriter::VisitObjCObjectPointerTypeLoc(ObjCObjectPointerTypeLoc TL) {
391 Writer.AddSourceLocation(TL.getStarLoc(), Record);
392 Writer.AddSourceLocation(TL.getLAngleLoc(), Record);
393 Writer.AddSourceLocation(TL.getRAngleLoc(), Record);
394 Record.push_back(TL.hasBaseTypeAsWritten());
395 Record.push_back(TL.hasProtocolsAsWritten());
396 if (TL.hasProtocolsAsWritten())
397 for (unsigned i = 0, e = TL.getNumProtocols(); i != e; ++i)
398 Writer.AddSourceLocation(TL.getProtocolLoc(i), Record);
399}
John McCalla1ee0c52009-10-16 21:56:05 +0000400
Chris Lattner4dcf151a2009-04-22 05:57:30 +0000401//===----------------------------------------------------------------------===//
Douglas Gregor2cf26342009-04-09 22:27:44 +0000402// PCHWriter Implementation
403//===----------------------------------------------------------------------===//
404
Chris Lattnerb145b1e2009-04-26 22:26:21 +0000405static void EmitBlockID(unsigned ID, const char *Name,
406 llvm::BitstreamWriter &Stream,
407 PCHWriter::RecordData &Record) {
408 Record.clear();
409 Record.push_back(ID);
410 Stream.EmitRecord(llvm::bitc::BLOCKINFO_CODE_SETBID, Record);
411
412 // Emit the block name if present.
413 if (Name == 0 || Name[0] == 0) return;
414 Record.clear();
415 while (*Name)
416 Record.push_back(*Name++);
417 Stream.EmitRecord(llvm::bitc::BLOCKINFO_CODE_BLOCKNAME, Record);
418}
419
420static void EmitRecordID(unsigned ID, const char *Name,
421 llvm::BitstreamWriter &Stream,
422 PCHWriter::RecordData &Record) {
423 Record.clear();
424 Record.push_back(ID);
425 while (*Name)
426 Record.push_back(*Name++);
427 Stream.EmitRecord(llvm::bitc::BLOCKINFO_CODE_SETRECORDNAME, Record);
Chris Lattner0558df22009-04-27 00:49:53 +0000428}
429
430static void AddStmtsExprs(llvm::BitstreamWriter &Stream,
431 PCHWriter::RecordData &Record) {
432#define RECORD(X) EmitRecordID(pch::X, #X, Stream, Record)
433 RECORD(STMT_STOP);
434 RECORD(STMT_NULL_PTR);
435 RECORD(STMT_NULL);
436 RECORD(STMT_COMPOUND);
437 RECORD(STMT_CASE);
438 RECORD(STMT_DEFAULT);
439 RECORD(STMT_LABEL);
440 RECORD(STMT_IF);
441 RECORD(STMT_SWITCH);
442 RECORD(STMT_WHILE);
443 RECORD(STMT_DO);
444 RECORD(STMT_FOR);
445 RECORD(STMT_GOTO);
446 RECORD(STMT_INDIRECT_GOTO);
447 RECORD(STMT_CONTINUE);
448 RECORD(STMT_BREAK);
449 RECORD(STMT_RETURN);
450 RECORD(STMT_DECL);
451 RECORD(STMT_ASM);
452 RECORD(EXPR_PREDEFINED);
453 RECORD(EXPR_DECL_REF);
454 RECORD(EXPR_INTEGER_LITERAL);
455 RECORD(EXPR_FLOATING_LITERAL);
456 RECORD(EXPR_IMAGINARY_LITERAL);
457 RECORD(EXPR_STRING_LITERAL);
458 RECORD(EXPR_CHARACTER_LITERAL);
459 RECORD(EXPR_PAREN);
460 RECORD(EXPR_UNARY_OPERATOR);
461 RECORD(EXPR_SIZEOF_ALIGN_OF);
462 RECORD(EXPR_ARRAY_SUBSCRIPT);
463 RECORD(EXPR_CALL);
464 RECORD(EXPR_MEMBER);
465 RECORD(EXPR_BINARY_OPERATOR);
466 RECORD(EXPR_COMPOUND_ASSIGN_OPERATOR);
467 RECORD(EXPR_CONDITIONAL_OPERATOR);
468 RECORD(EXPR_IMPLICIT_CAST);
469 RECORD(EXPR_CSTYLE_CAST);
470 RECORD(EXPR_COMPOUND_LITERAL);
471 RECORD(EXPR_EXT_VECTOR_ELEMENT);
472 RECORD(EXPR_INIT_LIST);
473 RECORD(EXPR_DESIGNATED_INIT);
474 RECORD(EXPR_IMPLICIT_VALUE_INIT);
475 RECORD(EXPR_VA_ARG);
476 RECORD(EXPR_ADDR_LABEL);
477 RECORD(EXPR_STMT);
478 RECORD(EXPR_TYPES_COMPATIBLE);
479 RECORD(EXPR_CHOOSE);
480 RECORD(EXPR_GNU_NULL);
481 RECORD(EXPR_SHUFFLE_VECTOR);
482 RECORD(EXPR_BLOCK);
483 RECORD(EXPR_BLOCK_DECL_REF);
484 RECORD(EXPR_OBJC_STRING_LITERAL);
485 RECORD(EXPR_OBJC_ENCODE);
486 RECORD(EXPR_OBJC_SELECTOR_EXPR);
487 RECORD(EXPR_OBJC_PROTOCOL_EXPR);
488 RECORD(EXPR_OBJC_IVAR_REF_EXPR);
489 RECORD(EXPR_OBJC_PROPERTY_REF_EXPR);
490 RECORD(EXPR_OBJC_KVC_REF_EXPR);
491 RECORD(EXPR_OBJC_MESSAGE_EXPR);
492 RECORD(EXPR_OBJC_SUPER_EXPR);
493 RECORD(STMT_OBJC_FOR_COLLECTION);
494 RECORD(STMT_OBJC_CATCH);
495 RECORD(STMT_OBJC_FINALLY);
496 RECORD(STMT_OBJC_AT_TRY);
497 RECORD(STMT_OBJC_AT_SYNCHRONIZED);
498 RECORD(STMT_OBJC_AT_THROW);
499#undef RECORD
Chris Lattnerb145b1e2009-04-26 22:26:21 +0000500}
Mike Stump1eb44332009-09-09 15:08:12 +0000501
Chris Lattnerb145b1e2009-04-26 22:26:21 +0000502void PCHWriter::WriteBlockInfoBlock() {
503 RecordData Record;
504 Stream.EnterSubblock(llvm::bitc::BLOCKINFO_BLOCK_ID, 3);
Mike Stump1eb44332009-09-09 15:08:12 +0000505
Chris Lattner2f4efd12009-04-27 00:40:25 +0000506#define BLOCK(X) EmitBlockID(pch::X ## _ID, #X, Stream, Record)
Chris Lattnerb145b1e2009-04-26 22:26:21 +0000507#define RECORD(X) EmitRecordID(pch::X, #X, Stream, Record)
Mike Stump1eb44332009-09-09 15:08:12 +0000508
Chris Lattnerb145b1e2009-04-26 22:26:21 +0000509 // PCH Top-Level Block.
Chris Lattner2f4efd12009-04-27 00:40:25 +0000510 BLOCK(PCH_BLOCK);
Zhongxing Xu51e774d2009-06-03 09:23:28 +0000511 RECORD(ORIGINAL_FILE_NAME);
Chris Lattnerb145b1e2009-04-26 22:26:21 +0000512 RECORD(TYPE_OFFSET);
513 RECORD(DECL_OFFSET);
514 RECORD(LANGUAGE_OPTIONS);
Douglas Gregorab41e632009-04-27 22:23:34 +0000515 RECORD(METADATA);
Chris Lattnerb145b1e2009-04-26 22:26:21 +0000516 RECORD(IDENTIFIER_OFFSET);
517 RECORD(IDENTIFIER_TABLE);
518 RECORD(EXTERNAL_DEFINITIONS);
519 RECORD(SPECIAL_TYPES);
520 RECORD(STATISTICS);
521 RECORD(TENTATIVE_DEFINITIONS);
522 RECORD(LOCALLY_SCOPED_EXTERNAL_DECLS);
523 RECORD(SELECTOR_OFFSETS);
524 RECORD(METHOD_POOL);
525 RECORD(PP_COUNTER_VALUE);
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000526 RECORD(SOURCE_LOCATION_OFFSETS);
527 RECORD(SOURCE_LOCATION_PRELOADS);
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000528 RECORD(STAT_CACHE);
Douglas Gregorb81c1702009-04-27 20:06:05 +0000529 RECORD(EXT_VECTOR_DECLS);
Douglas Gregor2e222532009-07-02 17:08:52 +0000530 RECORD(COMMENT_RANGES);
Douglas Gregor445e23e2009-10-05 21:07:28 +0000531 RECORD(SVN_BRANCH_REVISION);
532
Chris Lattnerb145b1e2009-04-26 22:26:21 +0000533 // SourceManager Block.
Chris Lattner2f4efd12009-04-27 00:40:25 +0000534 BLOCK(SOURCE_MANAGER_BLOCK);
Chris Lattnerb145b1e2009-04-26 22:26:21 +0000535 RECORD(SM_SLOC_FILE_ENTRY);
536 RECORD(SM_SLOC_BUFFER_ENTRY);
537 RECORD(SM_SLOC_BUFFER_BLOB);
538 RECORD(SM_SLOC_INSTANTIATION_ENTRY);
539 RECORD(SM_LINE_TABLE);
540 RECORD(SM_HEADER_FILE_INFO);
Mike Stump1eb44332009-09-09 15:08:12 +0000541
Chris Lattnerb145b1e2009-04-26 22:26:21 +0000542 // Preprocessor Block.
Chris Lattner2f4efd12009-04-27 00:40:25 +0000543 BLOCK(PREPROCESSOR_BLOCK);
Chris Lattnerb145b1e2009-04-26 22:26:21 +0000544 RECORD(PP_MACRO_OBJECT_LIKE);
545 RECORD(PP_MACRO_FUNCTION_LIKE);
546 RECORD(PP_TOKEN);
547
Douglas Gregor61d60ee2009-10-17 00:13:19 +0000548 // Decls and Types block.
549 BLOCK(DECLTYPES_BLOCK);
Chris Lattnerb145b1e2009-04-26 22:26:21 +0000550 RECORD(TYPE_EXT_QUAL);
551 RECORD(TYPE_FIXED_WIDTH_INT);
552 RECORD(TYPE_COMPLEX);
553 RECORD(TYPE_POINTER);
554 RECORD(TYPE_BLOCK_POINTER);
555 RECORD(TYPE_LVALUE_REFERENCE);
556 RECORD(TYPE_RVALUE_REFERENCE);
557 RECORD(TYPE_MEMBER_POINTER);
558 RECORD(TYPE_CONSTANT_ARRAY);
559 RECORD(TYPE_INCOMPLETE_ARRAY);
560 RECORD(TYPE_VARIABLE_ARRAY);
561 RECORD(TYPE_VECTOR);
562 RECORD(TYPE_EXT_VECTOR);
563 RECORD(TYPE_FUNCTION_PROTO);
564 RECORD(TYPE_FUNCTION_NO_PROTO);
565 RECORD(TYPE_TYPEDEF);
566 RECORD(TYPE_TYPEOF_EXPR);
567 RECORD(TYPE_TYPEOF);
568 RECORD(TYPE_RECORD);
569 RECORD(TYPE_ENUM);
570 RECORD(TYPE_OBJC_INTERFACE);
Steve Naroffd1b3c2d2009-06-17 22:40:22 +0000571 RECORD(TYPE_OBJC_OBJECT_POINTER);
Chris Lattner0ff8cda2009-04-26 22:32:16 +0000572 RECORD(DECL_ATTR);
573 RECORD(DECL_TRANSLATION_UNIT);
574 RECORD(DECL_TYPEDEF);
575 RECORD(DECL_ENUM);
576 RECORD(DECL_RECORD);
577 RECORD(DECL_ENUM_CONSTANT);
578 RECORD(DECL_FUNCTION);
579 RECORD(DECL_OBJC_METHOD);
580 RECORD(DECL_OBJC_INTERFACE);
581 RECORD(DECL_OBJC_PROTOCOL);
582 RECORD(DECL_OBJC_IVAR);
583 RECORD(DECL_OBJC_AT_DEFS_FIELD);
584 RECORD(DECL_OBJC_CLASS);
585 RECORD(DECL_OBJC_FORWARD_PROTOCOL);
586 RECORD(DECL_OBJC_CATEGORY);
587 RECORD(DECL_OBJC_CATEGORY_IMPL);
588 RECORD(DECL_OBJC_IMPLEMENTATION);
589 RECORD(DECL_OBJC_COMPATIBLE_ALIAS);
590 RECORD(DECL_OBJC_PROPERTY);
591 RECORD(DECL_OBJC_PROPERTY_IMPL);
Chris Lattnerb145b1e2009-04-26 22:26:21 +0000592 RECORD(DECL_FIELD);
593 RECORD(DECL_VAR);
Chris Lattner0ff8cda2009-04-26 22:32:16 +0000594 RECORD(DECL_IMPLICIT_PARAM);
Chris Lattnerb145b1e2009-04-26 22:26:21 +0000595 RECORD(DECL_PARM_VAR);
Chris Lattner0ff8cda2009-04-26 22:32:16 +0000596 RECORD(DECL_FILE_SCOPE_ASM);
597 RECORD(DECL_BLOCK);
598 RECORD(DECL_CONTEXT_LEXICAL);
599 RECORD(DECL_CONTEXT_VISIBLE);
Douglas Gregor61d60ee2009-10-17 00:13:19 +0000600 // Statements and Exprs can occur in the Decls and Types block.
Chris Lattner0558df22009-04-27 00:49:53 +0000601 AddStmtsExprs(Stream, Record);
Chris Lattnerb145b1e2009-04-26 22:26:21 +0000602#undef RECORD
603#undef BLOCK
604 Stream.ExitBlock();
605}
606
Douglas Gregore650c8c2009-07-07 00:12:59 +0000607/// \brief Adjusts the given filename to only write out the portion of the
608/// filename that is not part of the system root directory.
Mike Stump1eb44332009-09-09 15:08:12 +0000609///
Douglas Gregore650c8c2009-07-07 00:12:59 +0000610/// \param Filename the file name to adjust.
611///
612/// \param isysroot When non-NULL, the PCH file is a relocatable PCH file and
613/// the returned filename will be adjusted by this system root.
614///
615/// \returns either the original filename (if it needs no adjustment) or the
616/// adjusted filename (which points into the @p Filename parameter).
Mike Stump1eb44332009-09-09 15:08:12 +0000617static const char *
Douglas Gregore650c8c2009-07-07 00:12:59 +0000618adjustFilenameForRelocatablePCH(const char *Filename, const char *isysroot) {
619 assert(Filename && "No file name to adjust?");
Mike Stump1eb44332009-09-09 15:08:12 +0000620
Douglas Gregore650c8c2009-07-07 00:12:59 +0000621 if (!isysroot)
622 return Filename;
Mike Stump1eb44332009-09-09 15:08:12 +0000623
Douglas Gregore650c8c2009-07-07 00:12:59 +0000624 // Verify that the filename and the system root have the same prefix.
625 unsigned Pos = 0;
626 for (; Filename[Pos] && isysroot[Pos]; ++Pos)
627 if (Filename[Pos] != isysroot[Pos])
628 return Filename; // Prefixes don't match.
Mike Stump1eb44332009-09-09 15:08:12 +0000629
Douglas Gregore650c8c2009-07-07 00:12:59 +0000630 // We hit the end of the filename before we hit the end of the system root.
631 if (!Filename[Pos])
632 return Filename;
Mike Stump1eb44332009-09-09 15:08:12 +0000633
Douglas Gregore650c8c2009-07-07 00:12:59 +0000634 // If the file name has a '/' at the current position, skip over the '/'.
635 // We distinguish sysroot-based includes from absolute includes by the
636 // absence of '/' at the beginning of sysroot-based includes.
637 if (Filename[Pos] == '/')
638 ++Pos;
Mike Stump1eb44332009-09-09 15:08:12 +0000639
Douglas Gregore650c8c2009-07-07 00:12:59 +0000640 return Filename + Pos;
641}
Chris Lattnerb145b1e2009-04-26 22:26:21 +0000642
Douglas Gregorab41e632009-04-27 22:23:34 +0000643/// \brief Write the PCH metadata (e.g., i686-apple-darwin9).
Douglas Gregore650c8c2009-07-07 00:12:59 +0000644void PCHWriter::WriteMetadata(ASTContext &Context, const char *isysroot) {
Douglas Gregor2bec0412009-04-10 21:16:55 +0000645 using namespace llvm;
Douglas Gregorb64c1932009-05-12 01:31:05 +0000646
Douglas Gregore650c8c2009-07-07 00:12:59 +0000647 // Metadata
648 const TargetInfo &Target = Context.Target;
649 BitCodeAbbrev *MetaAbbrev = new BitCodeAbbrev();
650 MetaAbbrev->Add(BitCodeAbbrevOp(pch::METADATA));
651 MetaAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 16)); // PCH major
652 MetaAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 16)); // PCH minor
653 MetaAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 16)); // Clang major
654 MetaAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 16)); // Clang minor
655 MetaAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // Relocatable
656 MetaAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // Target triple
657 unsigned MetaAbbrevCode = Stream.EmitAbbrev(MetaAbbrev);
Mike Stump1eb44332009-09-09 15:08:12 +0000658
Douglas Gregore650c8c2009-07-07 00:12:59 +0000659 RecordData Record;
660 Record.push_back(pch::METADATA);
661 Record.push_back(pch::VERSION_MAJOR);
662 Record.push_back(pch::VERSION_MINOR);
663 Record.push_back(CLANG_VERSION_MAJOR);
664 Record.push_back(CLANG_VERSION_MINOR);
665 Record.push_back(isysroot != 0);
Daniel Dunbar1752ee42009-08-24 09:10:05 +0000666 const std::string &TripleStr = Target.getTriple().getTriple();
Daniel Dunbarec312a12009-08-24 09:31:37 +0000667 Stream.EmitRecordWithBlob(MetaAbbrevCode, Record, TripleStr);
Mike Stump1eb44332009-09-09 15:08:12 +0000668
Douglas Gregorb64c1932009-05-12 01:31:05 +0000669 // Original file name
670 SourceManager &SM = Context.getSourceManager();
671 if (const FileEntry *MainFile = SM.getFileEntryForID(SM.getMainFileID())) {
672 BitCodeAbbrev *FileAbbrev = new BitCodeAbbrev();
673 FileAbbrev->Add(BitCodeAbbrevOp(pch::ORIGINAL_FILE_NAME));
674 FileAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // File name
675 unsigned FileAbbrevCode = Stream.EmitAbbrev(FileAbbrev);
676
677 llvm::sys::Path MainFilePath(MainFile->getName());
678 std::string MainFileName;
Mike Stump1eb44332009-09-09 15:08:12 +0000679
Douglas Gregorb64c1932009-05-12 01:31:05 +0000680 if (!MainFilePath.isAbsolute()) {
681 llvm::sys::Path P = llvm::sys::Path::GetCurrentDirectory();
Chris Lattnerd57a7ef2009-08-23 22:45:33 +0000682 P.appendComponent(MainFilePath.str());
683 MainFileName = P.str();
Douglas Gregorb64c1932009-05-12 01:31:05 +0000684 } else {
Chris Lattnerd57a7ef2009-08-23 22:45:33 +0000685 MainFileName = MainFilePath.str();
Douglas Gregorb64c1932009-05-12 01:31:05 +0000686 }
687
Douglas Gregore650c8c2009-07-07 00:12:59 +0000688 const char *MainFileNameStr = MainFileName.c_str();
Mike Stump1eb44332009-09-09 15:08:12 +0000689 MainFileNameStr = adjustFilenameForRelocatablePCH(MainFileNameStr,
Douglas Gregore650c8c2009-07-07 00:12:59 +0000690 isysroot);
Douglas Gregorb64c1932009-05-12 01:31:05 +0000691 RecordData Record;
692 Record.push_back(pch::ORIGINAL_FILE_NAME);
Daniel Dunbarec312a12009-08-24 09:31:37 +0000693 Stream.EmitRecordWithBlob(FileAbbrevCode, Record, MainFileNameStr);
Douglas Gregorb64c1932009-05-12 01:31:05 +0000694 }
Douglas Gregor445e23e2009-10-05 21:07:28 +0000695
696 // Subversion branch/version information.
697 BitCodeAbbrev *SvnAbbrev = new BitCodeAbbrev();
698 SvnAbbrev->Add(BitCodeAbbrevOp(pch::SVN_BRANCH_REVISION));
699 SvnAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // SVN revision
700 SvnAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // SVN branch/tag
701 unsigned SvnAbbrevCode = Stream.EmitAbbrev(SvnAbbrev);
702 Record.clear();
703 Record.push_back(pch::SVN_BRANCH_REVISION);
704 Record.push_back(getClangSubversionRevision());
705 Stream.EmitRecordWithBlob(SvnAbbrevCode, Record, getClangSubversionPath());
Douglas Gregor2bec0412009-04-10 21:16:55 +0000706}
707
708/// \brief Write the LangOptions structure.
Douglas Gregor0a0428e2009-04-10 20:39:37 +0000709void PCHWriter::WriteLanguageOptions(const LangOptions &LangOpts) {
710 RecordData Record;
711 Record.push_back(LangOpts.Trigraphs);
712 Record.push_back(LangOpts.BCPLComment); // BCPL-style '//' comments.
713 Record.push_back(LangOpts.DollarIdents); // '$' allowed in identifiers.
714 Record.push_back(LangOpts.AsmPreprocessor); // Preprocessor in asm mode.
715 Record.push_back(LangOpts.GNUMode); // True in gnu99 mode false in c99 mode (etc)
716 Record.push_back(LangOpts.ImplicitInt); // C89 implicit 'int'.
717 Record.push_back(LangOpts.Digraphs); // C94, C99 and C++
718 Record.push_back(LangOpts.HexFloats); // C99 Hexadecimal float constants.
719 Record.push_back(LangOpts.C99); // C99 Support
720 Record.push_back(LangOpts.Microsoft); // Microsoft extensions.
721 Record.push_back(LangOpts.CPlusPlus); // C++ Support
722 Record.push_back(LangOpts.CPlusPlus0x); // C++0x Support
Douglas Gregor0a0428e2009-04-10 20:39:37 +0000723 Record.push_back(LangOpts.CXXOperatorNames); // Treat C++ operator names as keywords.
Mike Stump1eb44332009-09-09 15:08:12 +0000724
Douglas Gregor0a0428e2009-04-10 20:39:37 +0000725 Record.push_back(LangOpts.ObjC1); // Objective-C 1 support enabled.
726 Record.push_back(LangOpts.ObjC2); // Objective-C 2 support enabled.
727 Record.push_back(LangOpts.ObjCNonFragileABI); // Objective-C modern abi enabled
Mike Stump1eb44332009-09-09 15:08:12 +0000728
Douglas Gregor0a0428e2009-04-10 20:39:37 +0000729 Record.push_back(LangOpts.PascalStrings); // Allow Pascal strings
Douglas Gregor0a0428e2009-04-10 20:39:37 +0000730 Record.push_back(LangOpts.WritableStrings); // Allow writable strings
731 Record.push_back(LangOpts.LaxVectorConversions);
Nate Begemanb9e7e632009-06-25 23:01:11 +0000732 Record.push_back(LangOpts.AltiVec);
Douglas Gregor0a0428e2009-04-10 20:39:37 +0000733 Record.push_back(LangOpts.Exceptions); // Support exception handling.
734
735 Record.push_back(LangOpts.NeXTRuntime); // Use NeXT runtime.
736 Record.push_back(LangOpts.Freestanding); // Freestanding implementation
737 Record.push_back(LangOpts.NoBuiltin); // Do not use builtin functions (-fno-builtin)
738
Chris Lattnerea5ce472009-04-27 07:35:58 +0000739 // Whether static initializers are protected by locks.
740 Record.push_back(LangOpts.ThreadsafeStatics);
Douglas Gregor972d9542009-09-03 14:36:33 +0000741 Record.push_back(LangOpts.POSIXThreads);
Douglas Gregor0a0428e2009-04-10 20:39:37 +0000742 Record.push_back(LangOpts.Blocks); // block extension to C
743 Record.push_back(LangOpts.EmitAllDecls); // Emit all declarations, even if
744 // they are unused.
745 Record.push_back(LangOpts.MathErrno); // Math functions must respect errno
746 // (modulo the platform support).
747
748 Record.push_back(LangOpts.OverflowChecking); // Extension to call a handler function when
749 // signed integer arithmetic overflows.
750
751 Record.push_back(LangOpts.HeinousExtensions); // Extensions that we really don't like and
752 // may be ripped out at any time.
753
754 Record.push_back(LangOpts.Optimize); // Whether __OPTIMIZE__ should be defined.
Mike Stump1eb44332009-09-09 15:08:12 +0000755 Record.push_back(LangOpts.OptimizeSize); // Whether __OPTIMIZE_SIZE__ should be
Douglas Gregor0a0428e2009-04-10 20:39:37 +0000756 // defined.
757 Record.push_back(LangOpts.Static); // Should __STATIC__ be defined (as
758 // opposed to __DYNAMIC__).
759 Record.push_back(LangOpts.PICLevel); // The value for __PIC__, if non-zero.
760
761 Record.push_back(LangOpts.GNUInline); // Should GNU inline semantics be
762 // used (instead of C99 semantics).
763 Record.push_back(LangOpts.NoInline); // Should __NO_INLINE__ be defined.
Anders Carlssona33d9b42009-05-13 19:49:53 +0000764 Record.push_back(LangOpts.AccessControl); // Whether C++ access control should
765 // be enabled.
Eli Friedman15b91762009-06-05 07:05:05 +0000766 Record.push_back(LangOpts.CharIsSigned); // Whether char is a signed or
767 // unsigned type
John Thompsona6fda122009-11-05 20:14:16 +0000768 Record.push_back(LangOpts.ShortWChar); // force wchar_t to be unsigned short
Douglas Gregor0a0428e2009-04-10 20:39:37 +0000769 Record.push_back(LangOpts.getGCMode());
770 Record.push_back(LangOpts.getVisibilityMode());
Daniel Dunbarab8e2812009-09-21 04:16:19 +0000771 Record.push_back(LangOpts.getStackProtectorMode());
Douglas Gregor0a0428e2009-04-10 20:39:37 +0000772 Record.push_back(LangOpts.InstantiationDepth);
Nate Begemanb9e7e632009-06-25 23:01:11 +0000773 Record.push_back(LangOpts.OpenCL);
Anders Carlsson92f58222009-08-22 22:30:33 +0000774 Record.push_back(LangOpts.ElideConstructors);
Douglas Gregorc9490c02009-04-16 22:23:12 +0000775 Stream.EmitRecord(pch::LANGUAGE_OPTIONS, Record);
Douglas Gregor0a0428e2009-04-10 20:39:37 +0000776}
777
Douglas Gregor14f79002009-04-10 03:52:48 +0000778//===----------------------------------------------------------------------===//
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000779// stat cache Serialization
780//===----------------------------------------------------------------------===//
781
782namespace {
783// Trait used for the on-disk hash table of stat cache results.
784class VISIBILITY_HIDDEN PCHStatCacheTrait {
785public:
786 typedef const char * key_type;
787 typedef key_type key_type_ref;
Mike Stump1eb44332009-09-09 15:08:12 +0000788
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000789 typedef std::pair<int, struct stat> data_type;
790 typedef const data_type& data_type_ref;
791
792 static unsigned ComputeHash(const char *path) {
Daniel Dunbar2596e422009-10-17 23:52:28 +0000793 return llvm::HashString(path);
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000794 }
Mike Stump1eb44332009-09-09 15:08:12 +0000795
796 std::pair<unsigned,unsigned>
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000797 EmitKeyDataLength(llvm::raw_ostream& Out, const char *path,
798 data_type_ref Data) {
799 unsigned StrLen = strlen(path);
800 clang::io::Emit16(Out, StrLen);
801 unsigned DataLen = 1; // result value
802 if (Data.first == 0)
803 DataLen += 4 + 4 + 2 + 8 + 8;
804 clang::io::Emit8(Out, DataLen);
805 return std::make_pair(StrLen + 1, DataLen);
806 }
Mike Stump1eb44332009-09-09 15:08:12 +0000807
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000808 void EmitKey(llvm::raw_ostream& Out, const char *path, unsigned KeyLen) {
809 Out.write(path, KeyLen);
810 }
Mike Stump1eb44332009-09-09 15:08:12 +0000811
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000812 void EmitData(llvm::raw_ostream& Out, key_type_ref,
813 data_type_ref Data, unsigned DataLen) {
814 using namespace clang::io;
815 uint64_t Start = Out.tell(); (void)Start;
Mike Stump1eb44332009-09-09 15:08:12 +0000816
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000817 // Result of stat()
818 Emit8(Out, Data.first? 1 : 0);
Mike Stump1eb44332009-09-09 15:08:12 +0000819
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000820 if (Data.first == 0) {
821 Emit32(Out, (uint32_t) Data.second.st_ino);
822 Emit32(Out, (uint32_t) Data.second.st_dev);
823 Emit16(Out, (uint16_t) Data.second.st_mode);
824 Emit64(Out, (uint64_t) Data.second.st_mtime);
825 Emit64(Out, (uint64_t) Data.second.st_size);
826 }
827
828 assert(Out.tell() - Start == DataLen && "Wrong data length");
829 }
830};
831} // end anonymous namespace
832
833/// \brief Write the stat() system call cache to the PCH file.
Douglas Gregore650c8c2009-07-07 00:12:59 +0000834void PCHWriter::WriteStatCache(MemorizeStatCalls &StatCalls,
835 const char *isysroot) {
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000836 // Build the on-disk hash table containing information about every
837 // stat() call.
838 OnDiskChainedHashTableGenerator<PCHStatCacheTrait> Generator;
839 unsigned NumStatEntries = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000840 for (MemorizeStatCalls::iterator Stat = StatCalls.begin(),
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000841 StatEnd = StatCalls.end();
Douglas Gregore650c8c2009-07-07 00:12:59 +0000842 Stat != StatEnd; ++Stat, ++NumStatEntries) {
843 const char *Filename = Stat->first();
844 Filename = adjustFilenameForRelocatablePCH(Filename, isysroot);
845 Generator.insert(Filename, Stat->second);
846 }
Mike Stump1eb44332009-09-09 15:08:12 +0000847
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000848 // Create the on-disk hash table in a buffer.
Mike Stump1eb44332009-09-09 15:08:12 +0000849 llvm::SmallString<4096> StatCacheData;
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000850 uint32_t BucketOffset;
851 {
852 llvm::raw_svector_ostream Out(StatCacheData);
853 // Make sure that no bucket is at offset 0
854 clang::io::Emit32(Out, 0);
855 BucketOffset = Generator.Emit(Out);
856 }
857
858 // Create a blob abbreviation
859 using namespace llvm;
860 BitCodeAbbrev *Abbrev = new BitCodeAbbrev();
861 Abbrev->Add(BitCodeAbbrevOp(pch::STAT_CACHE));
862 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32));
863 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32));
864 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob));
865 unsigned StatCacheAbbrev = Stream.EmitAbbrev(Abbrev);
866
867 // Write the stat cache
868 RecordData Record;
869 Record.push_back(pch::STAT_CACHE);
870 Record.push_back(BucketOffset);
871 Record.push_back(NumStatEntries);
Daniel Dunbarec312a12009-08-24 09:31:37 +0000872 Stream.EmitRecordWithBlob(StatCacheAbbrev, Record, StatCacheData.str());
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000873}
874
875//===----------------------------------------------------------------------===//
Douglas Gregor14f79002009-04-10 03:52:48 +0000876// Source Manager Serialization
877//===----------------------------------------------------------------------===//
878
879/// \brief Create an abbreviation for the SLocEntry that refers to a
880/// file.
Douglas Gregorc9490c02009-04-16 22:23:12 +0000881static unsigned CreateSLocFileAbbrev(llvm::BitstreamWriter &Stream) {
Douglas Gregor14f79002009-04-10 03:52:48 +0000882 using namespace llvm;
883 BitCodeAbbrev *Abbrev = new BitCodeAbbrev();
884 Abbrev->Add(BitCodeAbbrevOp(pch::SM_SLOC_FILE_ENTRY));
885 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // Offset
886 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // Include location
887 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 2)); // Characteristic
888 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // Line directives
Douglas Gregor14f79002009-04-10 03:52:48 +0000889 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // File name
Douglas Gregorc9490c02009-04-16 22:23:12 +0000890 return Stream.EmitAbbrev(Abbrev);
Douglas Gregor14f79002009-04-10 03:52:48 +0000891}
892
893/// \brief Create an abbreviation for the SLocEntry that refers to a
894/// buffer.
Douglas Gregorc9490c02009-04-16 22:23:12 +0000895static unsigned CreateSLocBufferAbbrev(llvm::BitstreamWriter &Stream) {
Douglas Gregor14f79002009-04-10 03:52:48 +0000896 using namespace llvm;
897 BitCodeAbbrev *Abbrev = new BitCodeAbbrev();
898 Abbrev->Add(BitCodeAbbrevOp(pch::SM_SLOC_BUFFER_ENTRY));
899 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // Offset
900 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // Include location
901 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 2)); // Characteristic
902 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // Line directives
903 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // Buffer name blob
Douglas Gregorc9490c02009-04-16 22:23:12 +0000904 return Stream.EmitAbbrev(Abbrev);
Douglas Gregor14f79002009-04-10 03:52:48 +0000905}
906
907/// \brief Create an abbreviation for the SLocEntry that refers to a
908/// buffer's blob.
Douglas Gregorc9490c02009-04-16 22:23:12 +0000909static unsigned CreateSLocBufferBlobAbbrev(llvm::BitstreamWriter &Stream) {
Douglas Gregor14f79002009-04-10 03:52:48 +0000910 using namespace llvm;
911 BitCodeAbbrev *Abbrev = new BitCodeAbbrev();
912 Abbrev->Add(BitCodeAbbrevOp(pch::SM_SLOC_BUFFER_BLOB));
913 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // Blob
Douglas Gregorc9490c02009-04-16 22:23:12 +0000914 return Stream.EmitAbbrev(Abbrev);
Douglas Gregor14f79002009-04-10 03:52:48 +0000915}
916
917/// \brief Create an abbreviation for the SLocEntry that refers to an
918/// buffer.
Douglas Gregorc9490c02009-04-16 22:23:12 +0000919static unsigned CreateSLocInstantiationAbbrev(llvm::BitstreamWriter &Stream) {
Douglas Gregor14f79002009-04-10 03:52:48 +0000920 using namespace llvm;
921 BitCodeAbbrev *Abbrev = new BitCodeAbbrev();
922 Abbrev->Add(BitCodeAbbrevOp(pch::SM_SLOC_INSTANTIATION_ENTRY));
923 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // Offset
924 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // Spelling location
925 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // Start location
926 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // End location
Douglas Gregorf60e9912009-04-15 18:05:10 +0000927 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // Token length
Douglas Gregorc9490c02009-04-16 22:23:12 +0000928 return Stream.EmitAbbrev(Abbrev);
Douglas Gregor14f79002009-04-10 03:52:48 +0000929}
930
931/// \brief Writes the block containing the serialized form of the
932/// source manager.
933///
934/// TODO: We should probably use an on-disk hash table (stored in a
935/// blob), indexed based on the file name, so that we only create
936/// entries for files that we actually need. In the common case (no
937/// errors), we probably won't have to create file entries for any of
938/// the files in the AST.
Douglas Gregor2eafc1b2009-04-26 00:07:37 +0000939void PCHWriter::WriteSourceManagerBlock(SourceManager &SourceMgr,
Douglas Gregore650c8c2009-07-07 00:12:59 +0000940 const Preprocessor &PP,
941 const char *isysroot) {
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000942 RecordData Record;
943
Chris Lattnerf04ad692009-04-10 17:16:57 +0000944 // Enter the source manager block.
Douglas Gregorc9490c02009-04-16 22:23:12 +0000945 Stream.EnterSubblock(pch::SOURCE_MANAGER_BLOCK_ID, 3);
Douglas Gregor14f79002009-04-10 03:52:48 +0000946
947 // Abbreviations for the various kinds of source-location entries.
Chris Lattner828e18c2009-04-27 19:03:22 +0000948 unsigned SLocFileAbbrv = CreateSLocFileAbbrev(Stream);
949 unsigned SLocBufferAbbrv = CreateSLocBufferAbbrev(Stream);
950 unsigned SLocBufferBlobAbbrv = CreateSLocBufferBlobAbbrev(Stream);
951 unsigned SLocInstantiationAbbrv = CreateSLocInstantiationAbbrev(Stream);
Douglas Gregor14f79002009-04-10 03:52:48 +0000952
Douglas Gregorbd945002009-04-13 16:31:14 +0000953 // Write the line table.
954 if (SourceMgr.hasLineTable()) {
955 LineTableInfo &LineTable = SourceMgr.getLineTable();
956
957 // Emit the file names
958 Record.push_back(LineTable.getNumFilenames());
959 for (unsigned I = 0, N = LineTable.getNumFilenames(); I != N; ++I) {
960 // Emit the file name
961 const char *Filename = LineTable.getFilename(I);
Douglas Gregore650c8c2009-07-07 00:12:59 +0000962 Filename = adjustFilenameForRelocatablePCH(Filename, isysroot);
Douglas Gregorbd945002009-04-13 16:31:14 +0000963 unsigned FilenameLen = Filename? strlen(Filename) : 0;
964 Record.push_back(FilenameLen);
965 if (FilenameLen)
966 Record.insert(Record.end(), Filename, Filename + FilenameLen);
967 }
Mike Stump1eb44332009-09-09 15:08:12 +0000968
Douglas Gregorbd945002009-04-13 16:31:14 +0000969 // Emit the line entries
970 for (LineTableInfo::iterator L = LineTable.begin(), LEnd = LineTable.end();
971 L != LEnd; ++L) {
972 // Emit the file ID
973 Record.push_back(L->first);
Mike Stump1eb44332009-09-09 15:08:12 +0000974
Douglas Gregorbd945002009-04-13 16:31:14 +0000975 // Emit the line entries
976 Record.push_back(L->second.size());
Mike Stump1eb44332009-09-09 15:08:12 +0000977 for (std::vector<LineEntry>::iterator LE = L->second.begin(),
Douglas Gregorbd945002009-04-13 16:31:14 +0000978 LEEnd = L->second.end();
979 LE != LEEnd; ++LE) {
980 Record.push_back(LE->FileOffset);
981 Record.push_back(LE->LineNo);
982 Record.push_back(LE->FilenameID);
983 Record.push_back((unsigned)LE->FileKind);
984 Record.push_back(LE->IncludeOffset);
985 }
Douglas Gregorbd945002009-04-13 16:31:14 +0000986 }
Zhongxing Xu3d8216a2009-05-22 08:38:27 +0000987 Stream.EmitRecord(pch::SM_LINE_TABLE, Record);
Douglas Gregorbd945002009-04-13 16:31:14 +0000988 }
989
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000990 // Write out entries for all of the header files we know about.
Mike Stump1eb44332009-09-09 15:08:12 +0000991 HeaderSearch &HS = PP.getHeaderSearchInfo();
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000992 Record.clear();
Mike Stump1eb44332009-09-09 15:08:12 +0000993 for (HeaderSearch::header_file_iterator I = HS.header_file_begin(),
Douglas Gregor2eafc1b2009-04-26 00:07:37 +0000994 E = HS.header_file_end();
995 I != E; ++I) {
996 Record.push_back(I->isImport);
997 Record.push_back(I->DirInfo);
998 Record.push_back(I->NumIncludes);
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000999 AddIdentifierRef(I->ControllingMacro, Record);
Douglas Gregor2eafc1b2009-04-26 00:07:37 +00001000 Stream.EmitRecord(pch::SM_HEADER_FILE_INFO, Record);
1001 Record.clear();
1002 }
1003
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001004 // Write out the source location entry table. We skip the first
1005 // entry, which is always the same dummy entry.
Chris Lattner090d9b52009-04-27 19:01:47 +00001006 std::vector<uint32_t> SLocEntryOffsets;
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001007 RecordData PreloadSLocs;
1008 SLocEntryOffsets.reserve(SourceMgr.sloc_entry_size() - 1);
Douglas Gregorbdfe48a2009-10-16 22:46:09 +00001009 for (unsigned I = 1, N = SourceMgr.sloc_entry_size(); I != N; ++I) {
1010 // Get this source location entry.
1011 const SrcMgr::SLocEntry *SLoc = &SourceMgr.getSLocEntry(I);
1012
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001013 // Record the offset of this source-location entry.
1014 SLocEntryOffsets.push_back(Stream.GetCurrentBitNo());
1015
1016 // Figure out which record code to use.
1017 unsigned Code;
1018 if (SLoc->isFile()) {
1019 if (SLoc->getFile().getContentCache()->Entry)
1020 Code = pch::SM_SLOC_FILE_ENTRY;
1021 else
1022 Code = pch::SM_SLOC_BUFFER_ENTRY;
1023 } else
1024 Code = pch::SM_SLOC_INSTANTIATION_ENTRY;
1025 Record.clear();
1026 Record.push_back(Code);
1027
1028 Record.push_back(SLoc->getOffset());
1029 if (SLoc->isFile()) {
1030 const SrcMgr::FileInfo &File = SLoc->getFile();
1031 Record.push_back(File.getIncludeLoc().getRawEncoding());
1032 Record.push_back(File.getFileCharacteristic()); // FIXME: stable encoding
1033 Record.push_back(File.hasLineDirectives());
1034
1035 const SrcMgr::ContentCache *Content = File.getContentCache();
1036 if (Content->Entry) {
1037 // The source location entry is a file. The blob associated
1038 // with this entry is the file name.
Mike Stump1eb44332009-09-09 15:08:12 +00001039
Douglas Gregore650c8c2009-07-07 00:12:59 +00001040 // Turn the file name into an absolute path, if it isn't already.
1041 const char *Filename = Content->Entry->getName();
1042 llvm::sys::Path FilePath(Filename, strlen(Filename));
1043 std::string FilenameStr;
1044 if (!FilePath.isAbsolute()) {
1045 llvm::sys::Path P = llvm::sys::Path::GetCurrentDirectory();
Chris Lattnerd57a7ef2009-08-23 22:45:33 +00001046 P.appendComponent(FilePath.str());
1047 FilenameStr = P.str();
Douglas Gregore650c8c2009-07-07 00:12:59 +00001048 Filename = FilenameStr.c_str();
1049 }
Mike Stump1eb44332009-09-09 15:08:12 +00001050
Douglas Gregore650c8c2009-07-07 00:12:59 +00001051 Filename = adjustFilenameForRelocatablePCH(Filename, isysroot);
Daniel Dunbarec312a12009-08-24 09:31:37 +00001052 Stream.EmitRecordWithBlob(SLocFileAbbrv, Record, Filename);
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001053
1054 // FIXME: For now, preload all file source locations, so that
1055 // we get the appropriate File entries in the reader. This is
1056 // a temporary measure.
1057 PreloadSLocs.push_back(SLocEntryOffsets.size());
1058 } else {
1059 // The source location entry is a buffer. The blob associated
1060 // with this entry contains the contents of the buffer.
1061
1062 // We add one to the size so that we capture the trailing NULL
1063 // that is required by llvm::MemoryBuffer::getMemBuffer (on
1064 // the reader side).
1065 const llvm::MemoryBuffer *Buffer = Content->getBuffer();
1066 const char *Name = Buffer->getBufferIdentifier();
Daniel Dunbarec312a12009-08-24 09:31:37 +00001067 Stream.EmitRecordWithBlob(SLocBufferAbbrv, Record,
1068 llvm::StringRef(Name, strlen(Name) + 1));
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001069 Record.clear();
1070 Record.push_back(pch::SM_SLOC_BUFFER_BLOB);
1071 Stream.EmitRecordWithBlob(SLocBufferBlobAbbrv, Record,
Daniel Dunbarec312a12009-08-24 09:31:37 +00001072 llvm::StringRef(Buffer->getBufferStart(),
1073 Buffer->getBufferSize() + 1));
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001074
1075 if (strcmp(Name, "<built-in>") == 0)
1076 PreloadSLocs.push_back(SLocEntryOffsets.size());
1077 }
1078 } else {
1079 // The source location entry is an instantiation.
1080 const SrcMgr::InstantiationInfo &Inst = SLoc->getInstantiation();
1081 Record.push_back(Inst.getSpellingLoc().getRawEncoding());
1082 Record.push_back(Inst.getInstantiationLocStart().getRawEncoding());
1083 Record.push_back(Inst.getInstantiationLocEnd().getRawEncoding());
1084
1085 // Compute the token length for this macro expansion.
1086 unsigned NextOffset = SourceMgr.getNextOffset();
Douglas Gregorbdfe48a2009-10-16 22:46:09 +00001087 if (I + 1 != N)
1088 NextOffset = SourceMgr.getSLocEntry(I + 1).getOffset();
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001089 Record.push_back(NextOffset - SLoc->getOffset() - 1);
1090 Stream.EmitRecordWithAbbrev(SLocInstantiationAbbrv, Record);
1091 }
1092 }
1093
Douglas Gregorc9490c02009-04-16 22:23:12 +00001094 Stream.ExitBlock();
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001095
1096 if (SLocEntryOffsets.empty())
1097 return;
1098
1099 // Write the source-location offsets table into the PCH block. This
1100 // table is used for lazily loading source-location information.
1101 using namespace llvm;
1102 BitCodeAbbrev *Abbrev = new BitCodeAbbrev();
1103 Abbrev->Add(BitCodeAbbrevOp(pch::SOURCE_LOCATION_OFFSETS));
1104 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 16)); // # of slocs
1105 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 16)); // next offset
1106 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // offsets
1107 unsigned SLocOffsetsAbbrev = Stream.EmitAbbrev(Abbrev);
Mike Stump1eb44332009-09-09 15:08:12 +00001108
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001109 Record.clear();
1110 Record.push_back(pch::SOURCE_LOCATION_OFFSETS);
1111 Record.push_back(SLocEntryOffsets.size());
1112 Record.push_back(SourceMgr.getNextOffset());
1113 Stream.EmitRecordWithBlob(SLocOffsetsAbbrev, Record,
Mike Stump1eb44332009-09-09 15:08:12 +00001114 (const char *)&SLocEntryOffsets.front(),
Chris Lattner090d9b52009-04-27 19:01:47 +00001115 SLocEntryOffsets.size()*sizeof(SLocEntryOffsets[0]));
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001116
1117 // Write the source location entry preloads array, telling the PCH
1118 // reader which source locations entries it should load eagerly.
1119 Stream.EmitRecord(pch::SOURCE_LOCATION_PRELOADS, PreloadSLocs);
Douglas Gregor14f79002009-04-10 03:52:48 +00001120}
1121
Douglas Gregor4fed3f42009-04-27 18:38:38 +00001122//===----------------------------------------------------------------------===//
1123// Preprocessor Serialization
1124//===----------------------------------------------------------------------===//
1125
Chris Lattner0b1fb982009-04-10 17:15:23 +00001126/// \brief Writes the block containing the serialized form of the
1127/// preprocessor.
1128///
Chris Lattnerdf961c22009-04-10 18:08:30 +00001129void PCHWriter::WritePreprocessor(const Preprocessor &PP) {
Chris Lattner7c5d24e2009-04-10 18:00:12 +00001130 RecordData Record;
Chris Lattnerf04ad692009-04-10 17:16:57 +00001131
Chris Lattnerc1f9d822009-04-13 01:29:17 +00001132 // If the preprocessor __COUNTER__ value has been bumped, remember it.
1133 if (PP.getCounterValue() != 0) {
1134 Record.push_back(PP.getCounterValue());
Douglas Gregorc9490c02009-04-16 22:23:12 +00001135 Stream.EmitRecord(pch::PP_COUNTER_VALUE, Record);
Chris Lattnerc1f9d822009-04-13 01:29:17 +00001136 Record.clear();
Douglas Gregor2eafc1b2009-04-26 00:07:37 +00001137 }
1138
1139 // Enter the preprocessor block.
1140 Stream.EnterSubblock(pch::PREPROCESSOR_BLOCK_ID, 2);
Mike Stump1eb44332009-09-09 15:08:12 +00001141
Douglas Gregor2eafc1b2009-04-26 00:07:37 +00001142 // If the PCH file contains __DATE__ or __TIME__ emit a warning about this.
1143 // FIXME: use diagnostics subsystem for localization etc.
1144 if (PP.SawDateOrTime())
1145 fprintf(stderr, "warning: precompiled header used __DATE__ or __TIME__.\n");
Mike Stump1eb44332009-09-09 15:08:12 +00001146
Chris Lattner7c5d24e2009-04-10 18:00:12 +00001147 // Loop over all the macro definitions that are live at the end of the file,
1148 // emitting each to the PP section.
Douglas Gregor813a97b2009-10-17 17:25:45 +00001149 // FIXME: Make sure that this sees macros defined in included PCH files.
Chris Lattner7c5d24e2009-04-10 18:00:12 +00001150 for (Preprocessor::macro_iterator I = PP.macro_begin(), E = PP.macro_end();
1151 I != E; ++I) {
Chris Lattner42d42b52009-04-10 21:41:48 +00001152 // FIXME: This emits macros in hash table order, we should do it in a stable
1153 // order so that output is reproducible.
Chris Lattner7c5d24e2009-04-10 18:00:12 +00001154 MacroInfo *MI = I->second;
1155
1156 // Don't emit builtin macros like __LINE__ to the PCH file unless they have
1157 // been redefined by the header (in which case they are not isBuiltinMacro).
1158 if (MI->isBuiltinMacro())
1159 continue;
1160
Douglas Gregor37e26842009-04-21 23:56:24 +00001161 // FIXME: Remove this identifier reference?
Chris Lattner7356a312009-04-11 21:15:38 +00001162 AddIdentifierRef(I->first, Record);
Douglas Gregor37e26842009-04-21 23:56:24 +00001163 MacroOffsets[I->first] = Stream.GetCurrentBitNo();
Chris Lattner7c5d24e2009-04-10 18:00:12 +00001164 Record.push_back(MI->getDefinitionLoc().getRawEncoding());
1165 Record.push_back(MI->isUsed());
Mike Stump1eb44332009-09-09 15:08:12 +00001166
Chris Lattner7c5d24e2009-04-10 18:00:12 +00001167 unsigned Code;
1168 if (MI->isObjectLike()) {
1169 Code = pch::PP_MACRO_OBJECT_LIKE;
1170 } else {
1171 Code = pch::PP_MACRO_FUNCTION_LIKE;
Mike Stump1eb44332009-09-09 15:08:12 +00001172
Chris Lattner7c5d24e2009-04-10 18:00:12 +00001173 Record.push_back(MI->isC99Varargs());
1174 Record.push_back(MI->isGNUVarargs());
1175 Record.push_back(MI->getNumArgs());
1176 for (MacroInfo::arg_iterator I = MI->arg_begin(), E = MI->arg_end();
1177 I != E; ++I)
Chris Lattner7356a312009-04-11 21:15:38 +00001178 AddIdentifierRef(*I, Record);
Chris Lattner7c5d24e2009-04-10 18:00:12 +00001179 }
Douglas Gregorc9490c02009-04-16 22:23:12 +00001180 Stream.EmitRecord(Code, Record);
Chris Lattner7c5d24e2009-04-10 18:00:12 +00001181 Record.clear();
1182
Chris Lattnerdf961c22009-04-10 18:08:30 +00001183 // Emit the tokens array.
1184 for (unsigned TokNo = 0, e = MI->getNumTokens(); TokNo != e; ++TokNo) {
1185 // Note that we know that the preprocessor does not have any annotation
1186 // tokens in it because they are created by the parser, and thus can't be
1187 // in a macro definition.
1188 const Token &Tok = MI->getReplacementToken(TokNo);
Mike Stump1eb44332009-09-09 15:08:12 +00001189
Chris Lattnerdf961c22009-04-10 18:08:30 +00001190 Record.push_back(Tok.getLocation().getRawEncoding());
1191 Record.push_back(Tok.getLength());
1192
Chris Lattnerdf961c22009-04-10 18:08:30 +00001193 // FIXME: When reading literal tokens, reconstruct the literal pointer if
1194 // it is needed.
Chris Lattner7356a312009-04-11 21:15:38 +00001195 AddIdentifierRef(Tok.getIdentifierInfo(), Record);
Mike Stump1eb44332009-09-09 15:08:12 +00001196
Chris Lattnerdf961c22009-04-10 18:08:30 +00001197 // FIXME: Should translate token kind to a stable encoding.
1198 Record.push_back(Tok.getKind());
1199 // FIXME: Should translate token flags to a stable encoding.
1200 Record.push_back(Tok.getFlags());
Mike Stump1eb44332009-09-09 15:08:12 +00001201
Douglas Gregorc9490c02009-04-16 22:23:12 +00001202 Stream.EmitRecord(pch::PP_TOKEN, Record);
Chris Lattnerdf961c22009-04-10 18:08:30 +00001203 Record.clear();
1204 }
Douglas Gregor37e26842009-04-21 23:56:24 +00001205 ++NumMacros;
Chris Lattner7c5d24e2009-04-10 18:00:12 +00001206 }
Douglas Gregorc9490c02009-04-16 22:23:12 +00001207 Stream.ExitBlock();
Chris Lattner0b1fb982009-04-10 17:15:23 +00001208}
1209
Douglas Gregor2e222532009-07-02 17:08:52 +00001210void PCHWriter::WriteComments(ASTContext &Context) {
1211 using namespace llvm;
Mike Stump1eb44332009-09-09 15:08:12 +00001212
Douglas Gregor2e222532009-07-02 17:08:52 +00001213 if (Context.Comments.empty())
1214 return;
Mike Stump1eb44332009-09-09 15:08:12 +00001215
Douglas Gregor2e222532009-07-02 17:08:52 +00001216 BitCodeAbbrev *CommentAbbrev = new BitCodeAbbrev();
1217 CommentAbbrev->Add(BitCodeAbbrevOp(pch::COMMENT_RANGES));
1218 CommentAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob));
1219 unsigned CommentCode = Stream.EmitAbbrev(CommentAbbrev);
Mike Stump1eb44332009-09-09 15:08:12 +00001220
Douglas Gregor2e222532009-07-02 17:08:52 +00001221 RecordData Record;
1222 Record.push_back(pch::COMMENT_RANGES);
Mike Stump1eb44332009-09-09 15:08:12 +00001223 Stream.EmitRecordWithBlob(CommentCode, Record,
Douglas Gregor2e222532009-07-02 17:08:52 +00001224 (const char*)&Context.Comments[0],
1225 Context.Comments.size() * sizeof(SourceRange));
1226}
1227
Douglas Gregor4fed3f42009-04-27 18:38:38 +00001228//===----------------------------------------------------------------------===//
1229// Type Serialization
1230//===----------------------------------------------------------------------===//
Chris Lattner0b1fb982009-04-10 17:15:23 +00001231
Douglas Gregor2cf26342009-04-09 22:27:44 +00001232/// \brief Write the representation of a type to the PCH stream.
John McCall0953e762009-09-24 19:53:00 +00001233void PCHWriter::WriteType(QualType T) {
Douglas Gregor8038d512009-04-10 17:25:41 +00001234 pch::TypeID &ID = TypeIDs[T];
Chris Lattnerf04ad692009-04-10 17:16:57 +00001235 if (ID == 0) // we haven't seen this type before.
Douglas Gregor2cf26342009-04-09 22:27:44 +00001236 ID = NextTypeID++;
Mike Stump1eb44332009-09-09 15:08:12 +00001237
Douglas Gregor2cf26342009-04-09 22:27:44 +00001238 // Record the offset for this type.
1239 if (TypeOffsets.size() == ID - pch::NUM_PREDEF_TYPE_IDS)
Douglas Gregorc9490c02009-04-16 22:23:12 +00001240 TypeOffsets.push_back(Stream.GetCurrentBitNo());
Douglas Gregor2cf26342009-04-09 22:27:44 +00001241 else if (TypeOffsets.size() < ID - pch::NUM_PREDEF_TYPE_IDS) {
1242 TypeOffsets.resize(ID + 1 - pch::NUM_PREDEF_TYPE_IDS);
Douglas Gregorc9490c02009-04-16 22:23:12 +00001243 TypeOffsets[ID - pch::NUM_PREDEF_TYPE_IDS] = Stream.GetCurrentBitNo();
Douglas Gregor2cf26342009-04-09 22:27:44 +00001244 }
1245
1246 RecordData Record;
Mike Stump1eb44332009-09-09 15:08:12 +00001247
Douglas Gregor2cf26342009-04-09 22:27:44 +00001248 // Emit the type's representation.
1249 PCHTypeWriter W(*this, Record);
John McCall0953e762009-09-24 19:53:00 +00001250
Douglas Gregora4923eb2009-11-16 21:35:15 +00001251 if (T.hasLocalNonFastQualifiers()) {
1252 Qualifiers Qs = T.getLocalQualifiers();
1253 AddTypeRef(T.getLocalUnqualifiedType(), Record);
John McCall0953e762009-09-24 19:53:00 +00001254 Record.push_back(Qs.getAsOpaqueValue());
1255 W.Code = pch::TYPE_EXT_QUAL;
1256 } else {
1257 switch (T->getTypeClass()) {
1258 // For all of the concrete, non-dependent types, call the
1259 // appropriate visitor function.
Douglas Gregor2cf26342009-04-09 22:27:44 +00001260#define TYPE(Class, Base) \
John McCall0953e762009-09-24 19:53:00 +00001261 case Type::Class: W.Visit##Class##Type(cast<Class##Type>(T)); break;
Douglas Gregor2cf26342009-04-09 22:27:44 +00001262#define ABSTRACT_TYPE(Class, Base)
1263#define DEPENDENT_TYPE(Class, Base)
1264#include "clang/AST/TypeNodes.def"
1265
John McCall0953e762009-09-24 19:53:00 +00001266 // For all of the dependent type nodes (which only occur in C++
1267 // templates), produce an error.
Douglas Gregor2cf26342009-04-09 22:27:44 +00001268#define TYPE(Class, Base)
1269#define DEPENDENT_TYPE(Class, Base) case Type::Class:
1270#include "clang/AST/TypeNodes.def"
John McCall0953e762009-09-24 19:53:00 +00001271 assert(false && "Cannot serialize dependent type nodes");
1272 break;
1273 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00001274 }
1275
1276 // Emit the serialized record.
Douglas Gregorc9490c02009-04-16 22:23:12 +00001277 Stream.EmitRecord(W.Code, Record);
Douglas Gregor0b748912009-04-14 21:18:50 +00001278
1279 // Flush any expressions that were written as part of this type.
Douglas Gregorc9490c02009-04-16 22:23:12 +00001280 FlushStmts();
Douglas Gregor2cf26342009-04-09 22:27:44 +00001281}
1282
Douglas Gregor4fed3f42009-04-27 18:38:38 +00001283//===----------------------------------------------------------------------===//
1284// Declaration Serialization
1285//===----------------------------------------------------------------------===//
1286
Douglas Gregor2cf26342009-04-09 22:27:44 +00001287/// \brief Write the block containing all of the declaration IDs
1288/// lexically declared within the given DeclContext.
1289///
1290/// \returns the offset of the DECL_CONTEXT_LEXICAL block within the
1291/// bistream, or 0 if no block was written.
Mike Stump1eb44332009-09-09 15:08:12 +00001292uint64_t PCHWriter::WriteDeclContextLexicalBlock(ASTContext &Context,
Douglas Gregor2cf26342009-04-09 22:27:44 +00001293 DeclContext *DC) {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001294 if (DC->decls_empty())
Douglas Gregor2cf26342009-04-09 22:27:44 +00001295 return 0;
1296
Douglas Gregorc9490c02009-04-16 22:23:12 +00001297 uint64_t Offset = Stream.GetCurrentBitNo();
Douglas Gregor2cf26342009-04-09 22:27:44 +00001298 RecordData Record;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001299 for (DeclContext::decl_iterator D = DC->decls_begin(), DEnd = DC->decls_end();
1300 D != DEnd; ++D)
Douglas Gregor2cf26342009-04-09 22:27:44 +00001301 AddDeclRef(*D, Record);
1302
Douglas Gregor25123082009-04-22 22:34:57 +00001303 ++NumLexicalDeclContexts;
Douglas Gregorc9490c02009-04-16 22:23:12 +00001304 Stream.EmitRecord(pch::DECL_CONTEXT_LEXICAL, Record);
Douglas Gregor2cf26342009-04-09 22:27:44 +00001305 return Offset;
1306}
1307
1308/// \brief Write the block containing all of the declaration IDs
1309/// visible from the given DeclContext.
1310///
1311/// \returns the offset of the DECL_CONTEXT_VISIBLE block within the
1312/// bistream, or 0 if no block was written.
1313uint64_t PCHWriter::WriteDeclContextVisibleBlock(ASTContext &Context,
1314 DeclContext *DC) {
1315 if (DC->getPrimaryContext() != DC)
1316 return 0;
1317
Douglas Gregoraff22df2009-04-21 22:32:33 +00001318 // Since there is no name lookup into functions or methods, and we
1319 // perform name lookup for the translation unit via the
1320 // IdentifierInfo chains, don't bother to build a
1321 // visible-declarations table for these entities.
1322 if (DC->isFunctionOrMethod() || DC->isTranslationUnit())
Douglas Gregor58f06992009-04-18 15:49:20 +00001323 return 0;
1324
Douglas Gregor2cf26342009-04-09 22:27:44 +00001325 // Force the DeclContext to build a its name-lookup table.
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001326 DC->lookup(DeclarationName());
Douglas Gregor2cf26342009-04-09 22:27:44 +00001327
1328 // Serialize the contents of the mapping used for lookup. Note that,
1329 // although we have two very different code paths, the serialized
1330 // representation is the same for both cases: a declaration name,
1331 // followed by a size, followed by references to the visible
1332 // declarations that have that name.
Douglas Gregorc9490c02009-04-16 22:23:12 +00001333 uint64_t Offset = Stream.GetCurrentBitNo();
Douglas Gregor2cf26342009-04-09 22:27:44 +00001334 RecordData Record;
1335 StoredDeclsMap *Map = static_cast<StoredDeclsMap*>(DC->getLookupPtr());
Douglas Gregor8c700062009-04-13 21:20:57 +00001336 if (!Map)
1337 return 0;
1338
Douglas Gregor2cf26342009-04-09 22:27:44 +00001339 for (StoredDeclsMap::iterator D = Map->begin(), DEnd = Map->end();
1340 D != DEnd; ++D) {
1341 AddDeclarationName(D->first, Record);
1342 DeclContext::lookup_result Result = D->second.getLookupResult(Context);
1343 Record.push_back(Result.second - Result.first);
Mike Stump1eb44332009-09-09 15:08:12 +00001344 for (; Result.first != Result.second; ++Result.first)
Douglas Gregor2cf26342009-04-09 22:27:44 +00001345 AddDeclRef(*Result.first, Record);
1346 }
1347
1348 if (Record.size() == 0)
1349 return 0;
1350
Douglas Gregorc9490c02009-04-16 22:23:12 +00001351 Stream.EmitRecord(pch::DECL_CONTEXT_VISIBLE, Record);
Douglas Gregor25123082009-04-22 22:34:57 +00001352 ++NumVisibleDeclContexts;
Douglas Gregor2cf26342009-04-09 22:27:44 +00001353 return Offset;
1354}
1355
Douglas Gregor4fed3f42009-04-27 18:38:38 +00001356//===----------------------------------------------------------------------===//
1357// Global Method Pool and Selector Serialization
1358//===----------------------------------------------------------------------===//
1359
Douglas Gregor3251ceb2009-04-20 20:36:09 +00001360namespace {
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001361// Trait used for the on-disk hash table used in the method pool.
1362class VISIBILITY_HIDDEN PCHMethodPoolTrait {
1363 PCHWriter &Writer;
1364
1365public:
1366 typedef Selector key_type;
1367 typedef key_type key_type_ref;
Mike Stump1eb44332009-09-09 15:08:12 +00001368
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001369 typedef std::pair<ObjCMethodList, ObjCMethodList> data_type;
1370 typedef const data_type& data_type_ref;
1371
1372 explicit PCHMethodPoolTrait(PCHWriter &Writer) : Writer(Writer) { }
Mike Stump1eb44332009-09-09 15:08:12 +00001373
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001374 static unsigned ComputeHash(Selector Sel) {
1375 unsigned N = Sel.getNumArgs();
1376 if (N == 0)
1377 ++N;
1378 unsigned R = 5381;
1379 for (unsigned I = 0; I != N; ++I)
1380 if (IdentifierInfo *II = Sel.getIdentifierInfoForSlot(I))
Daniel Dunbar2596e422009-10-17 23:52:28 +00001381 R = llvm::HashString(II->getName(), R);
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001382 return R;
1383 }
Mike Stump1eb44332009-09-09 15:08:12 +00001384
1385 std::pair<unsigned,unsigned>
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001386 EmitKeyDataLength(llvm::raw_ostream& Out, Selector Sel,
1387 data_type_ref Methods) {
1388 unsigned KeyLen = 2 + (Sel.getNumArgs()? Sel.getNumArgs() * 4 : 4);
1389 clang::io::Emit16(Out, KeyLen);
1390 unsigned DataLen = 2 + 2; // 2 bytes for each of the method counts
Mike Stump1eb44332009-09-09 15:08:12 +00001391 for (const ObjCMethodList *Method = &Methods.first; Method;
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001392 Method = Method->Next)
1393 if (Method->Method)
1394 DataLen += 4;
Mike Stump1eb44332009-09-09 15:08:12 +00001395 for (const ObjCMethodList *Method = &Methods.second; Method;
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001396 Method = Method->Next)
1397 if (Method->Method)
1398 DataLen += 4;
1399 clang::io::Emit16(Out, DataLen);
1400 return std::make_pair(KeyLen, DataLen);
1401 }
Mike Stump1eb44332009-09-09 15:08:12 +00001402
Douglas Gregor83941df2009-04-25 17:48:32 +00001403 void EmitKey(llvm::raw_ostream& Out, Selector Sel, unsigned) {
Mike Stump1eb44332009-09-09 15:08:12 +00001404 uint64_t Start = Out.tell();
Douglas Gregor83941df2009-04-25 17:48:32 +00001405 assert((Start >> 32) == 0 && "Selector key offset too large");
1406 Writer.SetSelectorOffset(Sel, Start);
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001407 unsigned N = Sel.getNumArgs();
1408 clang::io::Emit16(Out, N);
1409 if (N == 0)
1410 N = 1;
1411 for (unsigned I = 0; I != N; ++I)
Mike Stump1eb44332009-09-09 15:08:12 +00001412 clang::io::Emit32(Out,
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001413 Writer.getIdentifierRef(Sel.getIdentifierInfoForSlot(I)));
1414 }
Mike Stump1eb44332009-09-09 15:08:12 +00001415
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001416 void EmitData(llvm::raw_ostream& Out, key_type_ref,
Douglas Gregora67e58c2009-04-24 21:49:02 +00001417 data_type_ref Methods, unsigned DataLen) {
1418 uint64_t Start = Out.tell(); (void)Start;
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001419 unsigned NumInstanceMethods = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001420 for (const ObjCMethodList *Method = &Methods.first; Method;
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001421 Method = Method->Next)
1422 if (Method->Method)
1423 ++NumInstanceMethods;
1424
1425 unsigned NumFactoryMethods = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001426 for (const ObjCMethodList *Method = &Methods.second; Method;
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001427 Method = Method->Next)
1428 if (Method->Method)
1429 ++NumFactoryMethods;
1430
1431 clang::io::Emit16(Out, NumInstanceMethods);
1432 clang::io::Emit16(Out, NumFactoryMethods);
Mike Stump1eb44332009-09-09 15:08:12 +00001433 for (const ObjCMethodList *Method = &Methods.first; Method;
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001434 Method = Method->Next)
1435 if (Method->Method)
1436 clang::io::Emit32(Out, Writer.getDeclID(Method->Method));
Mike Stump1eb44332009-09-09 15:08:12 +00001437 for (const ObjCMethodList *Method = &Methods.second; Method;
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001438 Method = Method->Next)
1439 if (Method->Method)
1440 clang::io::Emit32(Out, Writer.getDeclID(Method->Method));
Douglas Gregora67e58c2009-04-24 21:49:02 +00001441
1442 assert(Out.tell() - Start == DataLen && "Data length is wrong");
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001443 }
1444};
1445} // end anonymous namespace
1446
1447/// \brief Write the method pool into the PCH file.
1448///
1449/// The method pool contains both instance and factory methods, stored
1450/// in an on-disk hash table indexed by the selector.
1451void PCHWriter::WriteMethodPool(Sema &SemaRef) {
1452 using namespace llvm;
1453
1454 // Create and write out the blob that contains the instance and
1455 // factor method pools.
1456 bool Empty = true;
1457 {
1458 OnDiskChainedHashTableGenerator<PCHMethodPoolTrait> Generator;
Mike Stump1eb44332009-09-09 15:08:12 +00001459
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001460 // Create the on-disk hash table representation. Start by
1461 // iterating through the instance method pool.
1462 PCHMethodPoolTrait::key_type Key;
Douglas Gregor83941df2009-04-25 17:48:32 +00001463 unsigned NumSelectorsInMethodPool = 0;
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001464 for (llvm::DenseMap<Selector, ObjCMethodList>::iterator
Mike Stump1eb44332009-09-09 15:08:12 +00001465 Instance = SemaRef.InstanceMethodPool.begin(),
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001466 InstanceEnd = SemaRef.InstanceMethodPool.end();
1467 Instance != InstanceEnd; ++Instance) {
1468 // Check whether there is a factory method with the same
1469 // selector.
1470 llvm::DenseMap<Selector, ObjCMethodList>::iterator Factory
1471 = SemaRef.FactoryMethodPool.find(Instance->first);
1472
1473 if (Factory == SemaRef.FactoryMethodPool.end())
1474 Generator.insert(Instance->first,
Mike Stump1eb44332009-09-09 15:08:12 +00001475 std::make_pair(Instance->second,
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001476 ObjCMethodList()));
1477 else
1478 Generator.insert(Instance->first,
1479 std::make_pair(Instance->second, Factory->second));
1480
Douglas Gregor83941df2009-04-25 17:48:32 +00001481 ++NumSelectorsInMethodPool;
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001482 Empty = false;
1483 }
1484
1485 // Now iterate through the factory method pool, to pick up any
1486 // selectors that weren't already in the instance method pool.
1487 for (llvm::DenseMap<Selector, ObjCMethodList>::iterator
Mike Stump1eb44332009-09-09 15:08:12 +00001488 Factory = SemaRef.FactoryMethodPool.begin(),
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001489 FactoryEnd = SemaRef.FactoryMethodPool.end();
1490 Factory != FactoryEnd; ++Factory) {
1491 // Check whether there is an instance method with the same
1492 // selector. If so, there is no work to do here.
1493 llvm::DenseMap<Selector, ObjCMethodList>::iterator Instance
1494 = SemaRef.InstanceMethodPool.find(Factory->first);
1495
Douglas Gregor83941df2009-04-25 17:48:32 +00001496 if (Instance == SemaRef.InstanceMethodPool.end()) {
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001497 Generator.insert(Factory->first,
1498 std::make_pair(ObjCMethodList(), Factory->second));
Douglas Gregor83941df2009-04-25 17:48:32 +00001499 ++NumSelectorsInMethodPool;
1500 }
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001501
1502 Empty = false;
1503 }
1504
Douglas Gregor83941df2009-04-25 17:48:32 +00001505 if (Empty && SelectorOffsets.empty())
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001506 return;
1507
1508 // Create the on-disk hash table in a buffer.
Mike Stump1eb44332009-09-09 15:08:12 +00001509 llvm::SmallString<4096> MethodPool;
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001510 uint32_t BucketOffset;
Douglas Gregor83941df2009-04-25 17:48:32 +00001511 SelectorOffsets.resize(SelVector.size());
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001512 {
1513 PCHMethodPoolTrait Trait(*this);
1514 llvm::raw_svector_ostream Out(MethodPool);
1515 // Make sure that no bucket is at offset 0
Douglas Gregora67e58c2009-04-24 21:49:02 +00001516 clang::io::Emit32(Out, 0);
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001517 BucketOffset = Generator.Emit(Out, Trait);
Douglas Gregor83941df2009-04-25 17:48:32 +00001518
1519 // For every selector that we have seen but which was not
1520 // written into the hash table, write the selector itself and
1521 // record it's offset.
1522 for (unsigned I = 0, N = SelVector.size(); I != N; ++I)
1523 if (SelectorOffsets[I] == 0)
1524 Trait.EmitKey(Out, SelVector[I], 0);
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001525 }
1526
1527 // Create a blob abbreviation
1528 BitCodeAbbrev *Abbrev = new BitCodeAbbrev();
1529 Abbrev->Add(BitCodeAbbrevOp(pch::METHOD_POOL));
1530 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32));
Douglas Gregor83941df2009-04-25 17:48:32 +00001531 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32));
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001532 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob));
1533 unsigned MethodPoolAbbrev = Stream.EmitAbbrev(Abbrev);
1534
Douglas Gregor83941df2009-04-25 17:48:32 +00001535 // Write the method pool
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001536 RecordData Record;
1537 Record.push_back(pch::METHOD_POOL);
1538 Record.push_back(BucketOffset);
Douglas Gregor83941df2009-04-25 17:48:32 +00001539 Record.push_back(NumSelectorsInMethodPool);
Daniel Dunbarec312a12009-08-24 09:31:37 +00001540 Stream.EmitRecordWithBlob(MethodPoolAbbrev, Record, MethodPool.str());
Douglas Gregor83941df2009-04-25 17:48:32 +00001541
1542 // Create a blob abbreviation for the selector table offsets.
1543 Abbrev = new BitCodeAbbrev();
1544 Abbrev->Add(BitCodeAbbrevOp(pch::SELECTOR_OFFSETS));
1545 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // index
1546 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob));
1547 unsigned SelectorOffsetAbbrev = Stream.EmitAbbrev(Abbrev);
1548
1549 // Write the selector offsets table.
1550 Record.clear();
1551 Record.push_back(pch::SELECTOR_OFFSETS);
1552 Record.push_back(SelectorOffsets.size());
1553 Stream.EmitRecordWithBlob(SelectorOffsetAbbrev, Record,
1554 (const char *)&SelectorOffsets.front(),
1555 SelectorOffsets.size() * 4);
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001556 }
1557}
1558
Douglas Gregor4fed3f42009-04-27 18:38:38 +00001559//===----------------------------------------------------------------------===//
1560// Identifier Table Serialization
1561//===----------------------------------------------------------------------===//
1562
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001563namespace {
Douglas Gregor3251ceb2009-04-20 20:36:09 +00001564class VISIBILITY_HIDDEN PCHIdentifierTableTrait {
1565 PCHWriter &Writer;
Douglas Gregor37e26842009-04-21 23:56:24 +00001566 Preprocessor &PP;
Douglas Gregor3251ceb2009-04-20 20:36:09 +00001567
Douglas Gregora92193e2009-04-28 21:18:29 +00001568 /// \brief Determines whether this is an "interesting" identifier
1569 /// that needs a full IdentifierInfo structure written into the hash
1570 /// table.
1571 static bool isInterestingIdentifier(const IdentifierInfo *II) {
1572 return II->isPoisoned() ||
1573 II->isExtensionToken() ||
1574 II->hasMacroDefinition() ||
1575 II->getObjCOrBuiltinID() ||
1576 II->getFETokenInfo<void>();
1577 }
1578
Douglas Gregor3251ceb2009-04-20 20:36:09 +00001579public:
1580 typedef const IdentifierInfo* key_type;
1581 typedef key_type key_type_ref;
Mike Stump1eb44332009-09-09 15:08:12 +00001582
Douglas Gregor3251ceb2009-04-20 20:36:09 +00001583 typedef pch::IdentID data_type;
1584 typedef data_type data_type_ref;
Mike Stump1eb44332009-09-09 15:08:12 +00001585
1586 PCHIdentifierTableTrait(PCHWriter &Writer, Preprocessor &PP)
Douglas Gregor37e26842009-04-21 23:56:24 +00001587 : Writer(Writer), PP(PP) { }
Douglas Gregor3251ceb2009-04-20 20:36:09 +00001588
1589 static unsigned ComputeHash(const IdentifierInfo* II) {
Daniel Dunbar2596e422009-10-17 23:52:28 +00001590 return llvm::HashString(II->getName());
Douglas Gregor3251ceb2009-04-20 20:36:09 +00001591 }
Mike Stump1eb44332009-09-09 15:08:12 +00001592
1593 std::pair<unsigned,unsigned>
1594 EmitKeyDataLength(llvm::raw_ostream& Out, const IdentifierInfo* II,
Douglas Gregor3251ceb2009-04-20 20:36:09 +00001595 pch::IdentID ID) {
Daniel Dunbare013d682009-10-18 20:26:12 +00001596 unsigned KeyLen = II->getLength() + 1;
Douglas Gregora92193e2009-04-28 21:18:29 +00001597 unsigned DataLen = 4; // 4 bytes for the persistent ID << 1
1598 if (isInterestingIdentifier(II)) {
Douglas Gregor5998da52009-04-28 21:32:13 +00001599 DataLen += 2; // 2 bytes for builtin ID, flags
Mike Stump1eb44332009-09-09 15:08:12 +00001600 if (II->hasMacroDefinition() &&
Douglas Gregora92193e2009-04-28 21:18:29 +00001601 !PP.getMacroInfo(const_cast<IdentifierInfo *>(II))->isBuiltinMacro())
Douglas Gregor5998da52009-04-28 21:32:13 +00001602 DataLen += 4;
Douglas Gregora92193e2009-04-28 21:18:29 +00001603 for (IdentifierResolver::iterator D = IdentifierResolver::begin(II),
1604 DEnd = IdentifierResolver::end();
1605 D != DEnd; ++D)
1606 DataLen += sizeof(pch::DeclID);
1607 }
Douglas Gregor668c1a42009-04-21 22:25:48 +00001608 clang::io::Emit16(Out, DataLen);
Douglas Gregor02fc7512009-04-28 20:01:51 +00001609 // We emit the key length after the data length so that every
1610 // string is preceded by a 16-bit length. This matches the PTH
1611 // format for storing identifiers.
Douglas Gregord6595a42009-04-25 21:04:17 +00001612 clang::io::Emit16(Out, KeyLen);
Douglas Gregor3251ceb2009-04-20 20:36:09 +00001613 return std::make_pair(KeyLen, DataLen);
1614 }
Mike Stump1eb44332009-09-09 15:08:12 +00001615
1616 void EmitKey(llvm::raw_ostream& Out, const IdentifierInfo* II,
Douglas Gregor3251ceb2009-04-20 20:36:09 +00001617 unsigned KeyLen) {
1618 // Record the location of the key data. This is used when generating
1619 // the mapping from persistent IDs to strings.
1620 Writer.SetIdentifierOffset(II, Out.tell());
Daniel Dunbare013d682009-10-18 20:26:12 +00001621 Out.write(II->getNameStart(), KeyLen);
Douglas Gregor3251ceb2009-04-20 20:36:09 +00001622 }
Mike Stump1eb44332009-09-09 15:08:12 +00001623
1624 void EmitData(llvm::raw_ostream& Out, const IdentifierInfo* II,
Douglas Gregor3251ceb2009-04-20 20:36:09 +00001625 pch::IdentID ID, unsigned) {
Douglas Gregora92193e2009-04-28 21:18:29 +00001626 if (!isInterestingIdentifier(II)) {
1627 clang::io::Emit32(Out, ID << 1);
1628 return;
1629 }
Douglas Gregor5998da52009-04-28 21:32:13 +00001630
Douglas Gregora92193e2009-04-28 21:18:29 +00001631 clang::io::Emit32(Out, (ID << 1) | 0x01);
Douglas Gregor3251ceb2009-04-20 20:36:09 +00001632 uint32_t Bits = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001633 bool hasMacroDefinition =
1634 II->hasMacroDefinition() &&
Douglas Gregor37e26842009-04-21 23:56:24 +00001635 !PP.getMacroInfo(const_cast<IdentifierInfo *>(II))->isBuiltinMacro();
Douglas Gregor5998da52009-04-28 21:32:13 +00001636 Bits = (uint32_t)II->getObjCOrBuiltinID();
Douglas Gregor2deaea32009-04-22 18:49:13 +00001637 Bits = (Bits << 1) | hasMacroDefinition;
Douglas Gregor3251ceb2009-04-20 20:36:09 +00001638 Bits = (Bits << 1) | II->isExtensionToken();
1639 Bits = (Bits << 1) | II->isPoisoned();
1640 Bits = (Bits << 1) | II->isCPlusPlusOperatorKeyword();
Douglas Gregor5998da52009-04-28 21:32:13 +00001641 clang::io::Emit16(Out, Bits);
Douglas Gregor3251ceb2009-04-20 20:36:09 +00001642
Douglas Gregor37e26842009-04-21 23:56:24 +00001643 if (hasMacroDefinition)
Douglas Gregor5998da52009-04-28 21:32:13 +00001644 clang::io::Emit32(Out, Writer.getMacroOffset(II));
Douglas Gregor37e26842009-04-21 23:56:24 +00001645
Douglas Gregor668c1a42009-04-21 22:25:48 +00001646 // Emit the declaration IDs in reverse order, because the
1647 // IdentifierResolver provides the declarations as they would be
1648 // visible (e.g., the function "stat" would come before the struct
1649 // "stat"), but IdentifierResolver::AddDeclToIdentifierChain()
1650 // adds declarations to the end of the list (so we need to see the
1651 // struct "status" before the function "status").
Mike Stump1eb44332009-09-09 15:08:12 +00001652 llvm::SmallVector<Decl *, 16> Decls(IdentifierResolver::begin(II),
Douglas Gregor668c1a42009-04-21 22:25:48 +00001653 IdentifierResolver::end());
1654 for (llvm::SmallVector<Decl *, 16>::reverse_iterator D = Decls.rbegin(),
1655 DEnd = Decls.rend();
Douglas Gregor3251ceb2009-04-20 20:36:09 +00001656 D != DEnd; ++D)
Douglas Gregor668c1a42009-04-21 22:25:48 +00001657 clang::io::Emit32(Out, Writer.getDeclID(*D));
Douglas Gregor3251ceb2009-04-20 20:36:09 +00001658 }
1659};
1660} // end anonymous namespace
1661
Douglas Gregorafaf3082009-04-11 00:14:32 +00001662/// \brief Write the identifier table into the PCH file.
1663///
1664/// The identifier table consists of a blob containing string data
1665/// (the actual identifiers themselves) and a separate "offsets" index
1666/// that maps identifier IDs to locations within the blob.
Douglas Gregor37e26842009-04-21 23:56:24 +00001667void PCHWriter::WriteIdentifierTable(Preprocessor &PP) {
Douglas Gregorafaf3082009-04-11 00:14:32 +00001668 using namespace llvm;
1669
1670 // Create and write out the blob that contains the identifier
1671 // strings.
Douglas Gregorafaf3082009-04-11 00:14:32 +00001672 {
Douglas Gregor3251ceb2009-04-20 20:36:09 +00001673 OnDiskChainedHashTableGenerator<PCHIdentifierTableTrait> Generator;
Mike Stump1eb44332009-09-09 15:08:12 +00001674
Douglas Gregor92b059e2009-04-28 20:33:11 +00001675 // Look for any identifiers that were named while processing the
1676 // headers, but are otherwise not needed. We add these to the hash
1677 // table to enable checking of the predefines buffer in the case
1678 // where the user adds new macro definitions when building the PCH
1679 // file.
1680 for (IdentifierTable::iterator ID = PP.getIdentifierTable().begin(),
1681 IDEnd = PP.getIdentifierTable().end();
1682 ID != IDEnd; ++ID)
1683 getIdentifierRef(ID->second);
1684
Douglas Gregor3251ceb2009-04-20 20:36:09 +00001685 // Create the on-disk hash table representation.
Douglas Gregor92b059e2009-04-28 20:33:11 +00001686 IdentifierOffsets.resize(IdentifierIDs.size());
Douglas Gregorafaf3082009-04-11 00:14:32 +00001687 for (llvm::DenseMap<const IdentifierInfo *, pch::IdentID>::iterator
1688 ID = IdentifierIDs.begin(), IDEnd = IdentifierIDs.end();
1689 ID != IDEnd; ++ID) {
1690 assert(ID->first && "NULL identifier in identifier table");
Douglas Gregor02fc7512009-04-28 20:01:51 +00001691 Generator.insert(ID->first, ID->second);
Douglas Gregor3251ceb2009-04-20 20:36:09 +00001692 }
Douglas Gregorafaf3082009-04-11 00:14:32 +00001693
Douglas Gregor3251ceb2009-04-20 20:36:09 +00001694 // Create the on-disk hash table in a buffer.
Mike Stump1eb44332009-09-09 15:08:12 +00001695 llvm::SmallString<4096> IdentifierTable;
Douglas Gregor668c1a42009-04-21 22:25:48 +00001696 uint32_t BucketOffset;
Douglas Gregor3251ceb2009-04-20 20:36:09 +00001697 {
Douglas Gregor37e26842009-04-21 23:56:24 +00001698 PCHIdentifierTableTrait Trait(*this, PP);
Douglas Gregor3251ceb2009-04-20 20:36:09 +00001699 llvm::raw_svector_ostream Out(IdentifierTable);
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001700 // Make sure that no bucket is at offset 0
Douglas Gregora67e58c2009-04-24 21:49:02 +00001701 clang::io::Emit32(Out, 0);
Douglas Gregor668c1a42009-04-21 22:25:48 +00001702 BucketOffset = Generator.Emit(Out, Trait);
Douglas Gregorafaf3082009-04-11 00:14:32 +00001703 }
1704
1705 // Create a blob abbreviation
1706 BitCodeAbbrev *Abbrev = new BitCodeAbbrev();
1707 Abbrev->Add(BitCodeAbbrevOp(pch::IDENTIFIER_TABLE));
Douglas Gregor668c1a42009-04-21 22:25:48 +00001708 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32));
Douglas Gregor3251ceb2009-04-20 20:36:09 +00001709 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob));
Douglas Gregorc9490c02009-04-16 22:23:12 +00001710 unsigned IDTableAbbrev = Stream.EmitAbbrev(Abbrev);
Douglas Gregorafaf3082009-04-11 00:14:32 +00001711
1712 // Write the identifier table
1713 RecordData Record;
1714 Record.push_back(pch::IDENTIFIER_TABLE);
Douglas Gregor668c1a42009-04-21 22:25:48 +00001715 Record.push_back(BucketOffset);
Daniel Dunbarec312a12009-08-24 09:31:37 +00001716 Stream.EmitRecordWithBlob(IDTableAbbrev, Record, IdentifierTable.str());
Douglas Gregorafaf3082009-04-11 00:14:32 +00001717 }
1718
1719 // Write the offsets table for identifier IDs.
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00001720 BitCodeAbbrev *Abbrev = new BitCodeAbbrev();
1721 Abbrev->Add(BitCodeAbbrevOp(pch::IDENTIFIER_OFFSET));
1722 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // # of identifiers
1723 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob));
1724 unsigned IdentifierOffsetAbbrev = Stream.EmitAbbrev(Abbrev);
1725
1726 RecordData Record;
1727 Record.push_back(pch::IDENTIFIER_OFFSET);
1728 Record.push_back(IdentifierOffsets.size());
1729 Stream.EmitRecordWithBlob(IdentifierOffsetAbbrev, Record,
1730 (const char *)&IdentifierOffsets.front(),
1731 IdentifierOffsets.size() * sizeof(uint32_t));
Douglas Gregorafaf3082009-04-11 00:14:32 +00001732}
1733
Douglas Gregor4fed3f42009-04-27 18:38:38 +00001734//===----------------------------------------------------------------------===//
1735// General Serialization Routines
1736//===----------------------------------------------------------------------===//
1737
Douglas Gregor68a2eb02009-04-15 21:30:51 +00001738/// \brief Write a record containing the given attributes.
1739void PCHWriter::WriteAttributeRecord(const Attr *Attr) {
1740 RecordData Record;
1741 for (; Attr; Attr = Attr->getNext()) {
1742 Record.push_back(Attr->getKind()); // FIXME: stable encoding
1743 Record.push_back(Attr->isInherited());
1744 switch (Attr->getKind()) {
1745 case Attr::Alias:
1746 AddString(cast<AliasAttr>(Attr)->getAliasee(), Record);
1747 break;
1748
1749 case Attr::Aligned:
1750 Record.push_back(cast<AlignedAttr>(Attr)->getAlignment());
1751 break;
1752
1753 case Attr::AlwaysInline:
1754 break;
Mike Stump1eb44332009-09-09 15:08:12 +00001755
Douglas Gregor68a2eb02009-04-15 21:30:51 +00001756 case Attr::AnalyzerNoReturn:
1757 break;
1758
1759 case Attr::Annotate:
1760 AddString(cast<AnnotateAttr>(Attr)->getAnnotation(), Record);
1761 break;
1762
1763 case Attr::AsmLabel:
1764 AddString(cast<AsmLabelAttr>(Attr)->getLabel(), Record);
1765 break;
1766
1767 case Attr::Blocks:
1768 Record.push_back(cast<BlocksAttr>(Attr)->getType()); // FIXME: stable
1769 break;
1770
Eli Friedman8f4c59e2009-11-09 18:38:53 +00001771 case Attr::CDecl:
1772 break;
1773
Douglas Gregor68a2eb02009-04-15 21:30:51 +00001774 case Attr::Cleanup:
1775 AddDeclRef(cast<CleanupAttr>(Attr)->getFunctionDecl(), Record);
1776 break;
1777
1778 case Attr::Const:
1779 break;
1780
1781 case Attr::Constructor:
1782 Record.push_back(cast<ConstructorAttr>(Attr)->getPriority());
1783 break;
1784
1785 case Attr::DLLExport:
1786 case Attr::DLLImport:
1787 case Attr::Deprecated:
1788 break;
1789
1790 case Attr::Destructor:
1791 Record.push_back(cast<DestructorAttr>(Attr)->getPriority());
1792 break;
1793
1794 case Attr::FastCall:
1795 break;
1796
1797 case Attr::Format: {
1798 const FormatAttr *Format = cast<FormatAttr>(Attr);
1799 AddString(Format->getType(), Record);
1800 Record.push_back(Format->getFormatIdx());
1801 Record.push_back(Format->getFirstArg());
1802 break;
1803 }
1804
Fariborz Jahanian5b160922009-05-20 17:41:43 +00001805 case Attr::FormatArg: {
1806 const FormatArgAttr *Format = cast<FormatArgAttr>(Attr);
1807 Record.push_back(Format->getFormatIdx());
1808 break;
1809 }
1810
Fariborz Jahanian5b530052009-05-13 18:09:35 +00001811 case Attr::Sentinel : {
1812 const SentinelAttr *Sentinel = cast<SentinelAttr>(Attr);
1813 Record.push_back(Sentinel->getSentinel());
1814 Record.push_back(Sentinel->getNullPos());
1815 break;
1816 }
Mike Stump1eb44332009-09-09 15:08:12 +00001817
Chris Lattnercf2a7212009-04-20 19:12:28 +00001818 case Attr::GNUInline:
Douglas Gregor68a2eb02009-04-15 21:30:51 +00001819 case Attr::IBOutletKind:
Ryan Flynn76168e22009-08-09 20:07:29 +00001820 case Attr::Malloc:
Mike Stump1feade82009-08-26 22:31:08 +00001821 case Attr::NoDebug:
Douglas Gregor68a2eb02009-04-15 21:30:51 +00001822 case Attr::NoReturn:
1823 case Attr::NoThrow:
Mike Stump1feade82009-08-26 22:31:08 +00001824 case Attr::NoInline:
Douglas Gregor68a2eb02009-04-15 21:30:51 +00001825 break;
1826
1827 case Attr::NonNull: {
1828 const NonNullAttr *NonNull = cast<NonNullAttr>(Attr);
1829 Record.push_back(NonNull->size());
1830 Record.insert(Record.end(), NonNull->begin(), NonNull->end());
1831 break;
1832 }
1833
1834 case Attr::ObjCException:
1835 case Attr::ObjCNSObject:
Ted Kremenekb71368d2009-05-09 02:44:38 +00001836 case Attr::CFReturnsRetained:
1837 case Attr::NSReturnsRetained:
Douglas Gregor68a2eb02009-04-15 21:30:51 +00001838 case Attr::Overloadable:
1839 break;
1840
Anders Carlssona860e752009-08-08 18:23:56 +00001841 case Attr::PragmaPack:
1842 Record.push_back(cast<PragmaPackAttr>(Attr)->getAlignment());
Douglas Gregor68a2eb02009-04-15 21:30:51 +00001843 break;
1844
Anders Carlssona860e752009-08-08 18:23:56 +00001845 case Attr::Packed:
1846 break;
Mike Stump1eb44332009-09-09 15:08:12 +00001847
Douglas Gregor68a2eb02009-04-15 21:30:51 +00001848 case Attr::Pure:
1849 break;
1850
1851 case Attr::Regparm:
1852 Record.push_back(cast<RegparmAttr>(Attr)->getNumParams());
1853 break;
Mike Stump1eb44332009-09-09 15:08:12 +00001854
Nate Begeman6f3d8382009-06-26 06:32:41 +00001855 case Attr::ReqdWorkGroupSize:
1856 Record.push_back(cast<ReqdWorkGroupSizeAttr>(Attr)->getXDim());
1857 Record.push_back(cast<ReqdWorkGroupSizeAttr>(Attr)->getYDim());
1858 Record.push_back(cast<ReqdWorkGroupSizeAttr>(Attr)->getZDim());
1859 break;
Douglas Gregor68a2eb02009-04-15 21:30:51 +00001860
1861 case Attr::Section:
1862 AddString(cast<SectionAttr>(Attr)->getName(), Record);
1863 break;
1864
1865 case Attr::StdCall:
1866 case Attr::TransparentUnion:
1867 case Attr::Unavailable:
1868 case Attr::Unused:
1869 case Attr::Used:
1870 break;
1871
1872 case Attr::Visibility:
1873 // FIXME: stable encoding
Mike Stump1eb44332009-09-09 15:08:12 +00001874 Record.push_back(cast<VisibilityAttr>(Attr)->getVisibility());
Douglas Gregor68a2eb02009-04-15 21:30:51 +00001875 break;
1876
1877 case Attr::WarnUnusedResult:
1878 case Attr::Weak:
1879 case Attr::WeakImport:
1880 break;
1881 }
1882 }
1883
Douglas Gregorc9490c02009-04-16 22:23:12 +00001884 Stream.EmitRecord(pch::DECL_ATTR, Record);
Douglas Gregor68a2eb02009-04-15 21:30:51 +00001885}
1886
1887void PCHWriter::AddString(const std::string &Str, RecordData &Record) {
1888 Record.push_back(Str.size());
1889 Record.insert(Record.end(), Str.begin(), Str.end());
1890}
1891
Douglas Gregor3251ceb2009-04-20 20:36:09 +00001892/// \brief Note that the identifier II occurs at the given offset
1893/// within the identifier table.
1894void PCHWriter::SetIdentifierOffset(const IdentifierInfo *II, uint32_t Offset) {
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00001895 IdentifierOffsets[IdentifierIDs[II] - 1] = Offset;
Douglas Gregor3251ceb2009-04-20 20:36:09 +00001896}
1897
Douglas Gregor83941df2009-04-25 17:48:32 +00001898/// \brief Note that the selector Sel occurs at the given offset
1899/// within the method pool/selector table.
1900void PCHWriter::SetSelectorOffset(Selector Sel, uint32_t Offset) {
1901 unsigned ID = SelectorIDs[Sel];
1902 assert(ID && "Unknown selector");
1903 SelectorOffsets[ID - 1] = Offset;
1904}
1905
Mike Stump1eb44332009-09-09 15:08:12 +00001906PCHWriter::PCHWriter(llvm::BitstreamWriter &Stream)
1907 : Stream(Stream), NextTypeID(pch::NUM_PREDEF_TYPE_IDS),
Douglas Gregor25123082009-04-22 22:34:57 +00001908 NumStatements(0), NumMacros(0), NumLexicalDeclContexts(0),
1909 NumVisibleDeclContexts(0) { }
Douglas Gregor2cf26342009-04-09 22:27:44 +00001910
Douglas Gregore650c8c2009-07-07 00:12:59 +00001911void PCHWriter::WritePCH(Sema &SemaRef, MemorizeStatCalls *StatCalls,
1912 const char *isysroot) {
Douglas Gregor8f5dc7f2009-04-25 18:35:21 +00001913 using namespace llvm;
1914
Douglas Gregore7785042009-04-20 15:53:59 +00001915 ASTContext &Context = SemaRef.Context;
1916 Preprocessor &PP = SemaRef.PP;
1917
Douglas Gregor2cf26342009-04-09 22:27:44 +00001918 // Emit the file header.
Douglas Gregorc9490c02009-04-16 22:23:12 +00001919 Stream.Emit((unsigned)'C', 8);
1920 Stream.Emit((unsigned)'P', 8);
1921 Stream.Emit((unsigned)'C', 8);
1922 Stream.Emit((unsigned)'H', 8);
Mike Stump1eb44332009-09-09 15:08:12 +00001923
Chris Lattnerb145b1e2009-04-26 22:26:21 +00001924 WriteBlockInfoBlock();
Douglas Gregor2cf26342009-04-09 22:27:44 +00001925
1926 // The translation unit is the first declaration we'll emit.
1927 DeclIDs[Context.getTranslationUnitDecl()] = 1;
Douglas Gregor61d60ee2009-10-17 00:13:19 +00001928 DeclTypesToEmit.push(Context.getTranslationUnitDecl());
Douglas Gregor2cf26342009-04-09 22:27:44 +00001929
Douglas Gregor2deaea32009-04-22 18:49:13 +00001930 // Make sure that we emit IdentifierInfos (and any attached
1931 // declarations) for builtins.
1932 {
1933 IdentifierTable &Table = PP.getIdentifierTable();
1934 llvm::SmallVector<const char *, 32> BuiltinNames;
1935 Context.BuiltinInfo.GetBuiltinNames(BuiltinNames,
1936 Context.getLangOptions().NoBuiltin);
1937 for (unsigned I = 0, N = BuiltinNames.size(); I != N; ++I)
1938 getIdentifierRef(&Table.get(BuiltinNames[I]));
1939 }
1940
Chris Lattner63d65f82009-09-08 18:19:27 +00001941 // Build a record containing all of the tentative definitions in this file, in
1942 // TentativeDefinitionList order. Generally, this record will be empty for
1943 // headers.
Douglas Gregor4c0e86b2009-04-22 22:02:47 +00001944 RecordData TentativeDefinitions;
Chris Lattner63d65f82009-09-08 18:19:27 +00001945 for (unsigned i = 0, e = SemaRef.TentativeDefinitionList.size(); i != e; ++i){
1946 VarDecl *VD =
1947 SemaRef.TentativeDefinitions.lookup(SemaRef.TentativeDefinitionList[i]);
1948 if (VD) AddDeclRef(VD, TentativeDefinitions);
1949 }
Douglas Gregor4c0e86b2009-04-22 22:02:47 +00001950
Douglas Gregor14c22f22009-04-22 22:18:58 +00001951 // Build a record containing all of the locally-scoped external
1952 // declarations in this header file. Generally, this record will be
1953 // empty.
1954 RecordData LocallyScopedExternalDecls;
Chris Lattner63d65f82009-09-08 18:19:27 +00001955 // FIXME: This is filling in the PCH file in densemap order which is
1956 // nondeterminstic!
Mike Stump1eb44332009-09-09 15:08:12 +00001957 for (llvm::DenseMap<DeclarationName, NamedDecl *>::iterator
Douglas Gregor14c22f22009-04-22 22:18:58 +00001958 TD = SemaRef.LocallyScopedExternalDecls.begin(),
1959 TDEnd = SemaRef.LocallyScopedExternalDecls.end();
1960 TD != TDEnd; ++TD)
1961 AddDeclRef(TD->second, LocallyScopedExternalDecls);
1962
Douglas Gregorb81c1702009-04-27 20:06:05 +00001963 // Build a record containing all of the ext_vector declarations.
1964 RecordData ExtVectorDecls;
1965 for (unsigned I = 0, N = SemaRef.ExtVectorDecls.size(); I != N; ++I)
1966 AddDeclRef(SemaRef.ExtVectorDecls[I], ExtVectorDecls);
1967
Douglas Gregor2cf26342009-04-09 22:27:44 +00001968 // Write the remaining PCH contents.
Douglas Gregorad1de002009-04-18 05:55:16 +00001969 RecordData Record;
Douglas Gregor8f5dc7f2009-04-25 18:35:21 +00001970 Stream.EnterSubblock(pch::PCH_BLOCK_ID, 4);
Douglas Gregore650c8c2009-07-07 00:12:59 +00001971 WriteMetadata(Context, isysroot);
Douglas Gregor0a0428e2009-04-10 20:39:37 +00001972 WriteLanguageOptions(Context.getLangOptions());
Douglas Gregore650c8c2009-07-07 00:12:59 +00001973 if (StatCalls && !isysroot)
1974 WriteStatCache(*StatCalls, isysroot);
1975 WriteSourceManagerBlock(Context.getSourceManager(), PP, isysroot);
Mike Stump1eb44332009-09-09 15:08:12 +00001976 WriteComments(Context);
Steve Naroffc15cb2a2009-07-18 15:33:26 +00001977 // Write the record of special types.
1978 Record.clear();
Mike Stump1eb44332009-09-09 15:08:12 +00001979
Steve Naroffc15cb2a2009-07-18 15:33:26 +00001980 AddTypeRef(Context.getBuiltinVaListType(), Record);
1981 AddTypeRef(Context.getObjCIdType(), Record);
1982 AddTypeRef(Context.getObjCSelType(), Record);
1983 AddTypeRef(Context.getObjCProtoType(), Record);
1984 AddTypeRef(Context.getObjCClassType(), Record);
1985 AddTypeRef(Context.getRawCFConstantStringType(), Record);
1986 AddTypeRef(Context.getRawObjCFastEnumerationStateType(), Record);
1987 AddTypeRef(Context.getFILEType(), Record);
Mike Stump782fa302009-07-28 02:25:19 +00001988 AddTypeRef(Context.getjmp_bufType(), Record);
1989 AddTypeRef(Context.getsigjmp_bufType(), Record);
Douglas Gregord1571ac2009-08-21 00:27:50 +00001990 AddTypeRef(Context.ObjCIdRedefinitionType, Record);
1991 AddTypeRef(Context.ObjCClassRedefinitionType, Record);
Mike Stumpadaaad32009-10-20 02:12:22 +00001992 AddTypeRef(Context.getRawBlockdescriptorType(), Record);
Mike Stump083c25e2009-10-22 00:49:09 +00001993 AddTypeRef(Context.getRawBlockdescriptorExtendedType(), Record);
Steve Naroffc15cb2a2009-07-18 15:33:26 +00001994 Stream.EmitRecord(pch::SPECIAL_TYPES, Record);
Mike Stump1eb44332009-09-09 15:08:12 +00001995
Douglas Gregor366809a2009-04-26 03:49:13 +00001996 // Keep writing types and declarations until all types and
1997 // declarations have been written.
Douglas Gregor61d60ee2009-10-17 00:13:19 +00001998 Stream.EnterSubblock(pch::DECLTYPES_BLOCK_ID, 3);
1999 WriteDeclsBlockAbbrevs();
2000 while (!DeclTypesToEmit.empty()) {
2001 DeclOrType DOT = DeclTypesToEmit.front();
2002 DeclTypesToEmit.pop();
2003 if (DOT.isType())
2004 WriteType(DOT.getType());
2005 else
2006 WriteDecl(Context, DOT.getDecl());
2007 }
2008 Stream.ExitBlock();
2009
Douglas Gregor813a97b2009-10-17 17:25:45 +00002010 WritePreprocessor(PP);
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00002011 WriteMethodPool(SemaRef);
Douglas Gregor37e26842009-04-21 23:56:24 +00002012 WriteIdentifierTable(PP);
Douglas Gregor8f5dc7f2009-04-25 18:35:21 +00002013
2014 // Write the type offsets array
2015 BitCodeAbbrev *Abbrev = new BitCodeAbbrev();
2016 Abbrev->Add(BitCodeAbbrevOp(pch::TYPE_OFFSET));
2017 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // # of types
2018 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // types block
2019 unsigned TypeOffsetAbbrev = Stream.EmitAbbrev(Abbrev);
2020 Record.clear();
2021 Record.push_back(pch::TYPE_OFFSET);
2022 Record.push_back(TypeOffsets.size());
2023 Stream.EmitRecordWithBlob(TypeOffsetAbbrev, Record,
Mike Stump1eb44332009-09-09 15:08:12 +00002024 (const char *)&TypeOffsets.front(),
Chris Lattnerc732f5a2009-04-27 18:24:17 +00002025 TypeOffsets.size() * sizeof(TypeOffsets[0]));
Mike Stump1eb44332009-09-09 15:08:12 +00002026
Douglas Gregor8f5dc7f2009-04-25 18:35:21 +00002027 // Write the declaration offsets array
2028 Abbrev = new BitCodeAbbrev();
2029 Abbrev->Add(BitCodeAbbrevOp(pch::DECL_OFFSET));
2030 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // # of declarations
2031 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // declarations block
2032 unsigned DeclOffsetAbbrev = Stream.EmitAbbrev(Abbrev);
2033 Record.clear();
2034 Record.push_back(pch::DECL_OFFSET);
2035 Record.push_back(DeclOffsets.size());
2036 Stream.EmitRecordWithBlob(DeclOffsetAbbrev, Record,
Mike Stump1eb44332009-09-09 15:08:12 +00002037 (const char *)&DeclOffsets.front(),
Chris Lattnerc732f5a2009-04-27 18:24:17 +00002038 DeclOffsets.size() * sizeof(DeclOffsets[0]));
Douglas Gregorad1de002009-04-18 05:55:16 +00002039
Douglas Gregor4c0e86b2009-04-22 22:02:47 +00002040 // Write the record containing external, unnamed definitions.
Douglas Gregorfdd01722009-04-14 00:24:19 +00002041 if (!ExternalDefinitions.empty())
Douglas Gregorc9490c02009-04-16 22:23:12 +00002042 Stream.EmitRecord(pch::EXTERNAL_DEFINITIONS, ExternalDefinitions);
Douglas Gregor4c0e86b2009-04-22 22:02:47 +00002043
2044 // Write the record containing tentative definitions.
2045 if (!TentativeDefinitions.empty())
2046 Stream.EmitRecord(pch::TENTATIVE_DEFINITIONS, TentativeDefinitions);
Douglas Gregor14c22f22009-04-22 22:18:58 +00002047
2048 // Write the record containing locally-scoped external definitions.
2049 if (!LocallyScopedExternalDecls.empty())
Mike Stump1eb44332009-09-09 15:08:12 +00002050 Stream.EmitRecord(pch::LOCALLY_SCOPED_EXTERNAL_DECLS,
Douglas Gregor14c22f22009-04-22 22:18:58 +00002051 LocallyScopedExternalDecls);
Douglas Gregorb81c1702009-04-27 20:06:05 +00002052
2053 // Write the record containing ext_vector type names.
2054 if (!ExtVectorDecls.empty())
2055 Stream.EmitRecord(pch::EXT_VECTOR_DECLS, ExtVectorDecls);
Mike Stump1eb44332009-09-09 15:08:12 +00002056
Douglas Gregor3e1af842009-04-17 22:13:46 +00002057 // Some simple statistics
Douglas Gregorad1de002009-04-18 05:55:16 +00002058 Record.clear();
Douglas Gregor3e1af842009-04-17 22:13:46 +00002059 Record.push_back(NumStatements);
Douglas Gregor37e26842009-04-21 23:56:24 +00002060 Record.push_back(NumMacros);
Douglas Gregor25123082009-04-22 22:34:57 +00002061 Record.push_back(NumLexicalDeclContexts);
2062 Record.push_back(NumVisibleDeclContexts);
Douglas Gregor3e1af842009-04-17 22:13:46 +00002063 Stream.EmitRecord(pch::STATISTICS, Record);
Douglas Gregorc9490c02009-04-16 22:23:12 +00002064 Stream.ExitBlock();
Douglas Gregor2cf26342009-04-09 22:27:44 +00002065}
2066
2067void PCHWriter::AddSourceLocation(SourceLocation Loc, RecordData &Record) {
2068 Record.push_back(Loc.getRawEncoding());
2069}
2070
2071void PCHWriter::AddAPInt(const llvm::APInt &Value, RecordData &Record) {
2072 Record.push_back(Value.getBitWidth());
2073 unsigned N = Value.getNumWords();
2074 const uint64_t* Words = Value.getRawData();
2075 for (unsigned I = 0; I != N; ++I)
2076 Record.push_back(Words[I]);
2077}
2078
Douglas Gregor0a2b45e2009-04-13 18:14:40 +00002079void PCHWriter::AddAPSInt(const llvm::APSInt &Value, RecordData &Record) {
2080 Record.push_back(Value.isUnsigned());
2081 AddAPInt(Value, Record);
2082}
2083
Douglas Gregor17fc2232009-04-14 21:55:33 +00002084void PCHWriter::AddAPFloat(const llvm::APFloat &Value, RecordData &Record) {
2085 AddAPInt(Value.bitcastToAPInt(), Record);
2086}
2087
Douglas Gregor2cf26342009-04-09 22:27:44 +00002088void PCHWriter::AddIdentifierRef(const IdentifierInfo *II, RecordData &Record) {
Douglas Gregor2deaea32009-04-22 18:49:13 +00002089 Record.push_back(getIdentifierRef(II));
2090}
2091
2092pch::IdentID PCHWriter::getIdentifierRef(const IdentifierInfo *II) {
2093 if (II == 0)
2094 return 0;
Douglas Gregorafaf3082009-04-11 00:14:32 +00002095
2096 pch::IdentID &ID = IdentifierIDs[II];
2097 if (ID == 0)
2098 ID = IdentifierIDs.size();
Douglas Gregor2deaea32009-04-22 18:49:13 +00002099 return ID;
Douglas Gregor2cf26342009-04-09 22:27:44 +00002100}
2101
Steve Naroff90cd1bb2009-04-23 10:39:46 +00002102void PCHWriter::AddSelectorRef(const Selector SelRef, RecordData &Record) {
2103 if (SelRef.getAsOpaquePtr() == 0) {
2104 Record.push_back(0);
2105 return;
2106 }
2107
2108 pch::SelectorID &SID = SelectorIDs[SelRef];
2109 if (SID == 0) {
2110 SID = SelectorIDs.size();
2111 SelVector.push_back(SelRef);
2112 }
2113 Record.push_back(SID);
2114}
2115
John McCall833ca992009-10-29 08:12:44 +00002116void PCHWriter::AddTemplateArgumentLoc(const TemplateArgumentLoc &Arg,
2117 RecordData &Record) {
2118 switch (Arg.getArgument().getKind()) {
2119 case TemplateArgument::Expression:
2120 AddStmt(Arg.getLocInfo().getAsExpr());
2121 break;
2122 case TemplateArgument::Type:
2123 AddDeclaratorInfo(Arg.getLocInfo().getAsDeclaratorInfo(), Record);
2124 break;
Douglas Gregor788cd062009-11-11 01:00:40 +00002125 case TemplateArgument::Template:
2126 Record.push_back(
2127 Arg.getTemplateQualifierRange().getBegin().getRawEncoding());
2128 Record.push_back(Arg.getTemplateQualifierRange().getEnd().getRawEncoding());
2129 Record.push_back(Arg.getTemplateNameLoc().getRawEncoding());
2130 break;
John McCall833ca992009-10-29 08:12:44 +00002131 case TemplateArgument::Null:
2132 case TemplateArgument::Integral:
2133 case TemplateArgument::Declaration:
2134 case TemplateArgument::Pack:
2135 break;
2136 }
2137}
2138
John McCalla1ee0c52009-10-16 21:56:05 +00002139void PCHWriter::AddDeclaratorInfo(DeclaratorInfo *DInfo, RecordData &Record) {
2140 if (DInfo == 0) {
2141 AddTypeRef(QualType(), Record);
2142 return;
2143 }
2144
John McCall51bd8032009-10-18 01:05:36 +00002145 AddTypeRef(DInfo->getType(), Record);
John McCalla1ee0c52009-10-16 21:56:05 +00002146 TypeLocWriter TLW(*this, Record);
2147 for (TypeLoc TL = DInfo->getTypeLoc(); !TL.isNull(); TL = TL.getNextTypeLoc())
2148 TLW.Visit(TL);
2149}
2150
Douglas Gregor2cf26342009-04-09 22:27:44 +00002151void PCHWriter::AddTypeRef(QualType T, RecordData &Record) {
2152 if (T.isNull()) {
2153 Record.push_back(pch::PREDEF_TYPE_NULL_ID);
2154 return;
2155 }
2156
Douglas Gregora4923eb2009-11-16 21:35:15 +00002157 unsigned FastQuals = T.getLocalFastQualifiers();
John McCall0953e762009-09-24 19:53:00 +00002158 T.removeFastQualifiers();
2159
Douglas Gregora4923eb2009-11-16 21:35:15 +00002160 if (T.hasLocalNonFastQualifiers()) {
John McCall0953e762009-09-24 19:53:00 +00002161 pch::TypeID &ID = TypeIDs[T];
2162 if (ID == 0) {
2163 // We haven't seen these qualifiers applied to this type before.
2164 // Assign it a new ID. This is the only time we enqueue a
2165 // qualified type, and it has no CV qualifiers.
2166 ID = NextTypeID++;
Douglas Gregor61d60ee2009-10-17 00:13:19 +00002167 DeclTypesToEmit.push(T);
John McCall0953e762009-09-24 19:53:00 +00002168 }
2169
2170 // Encode the type qualifiers in the type reference.
2171 Record.push_back((ID << Qualifiers::FastWidth) | FastQuals);
2172 return;
2173 }
2174
Douglas Gregora4923eb2009-11-16 21:35:15 +00002175 assert(!T.hasLocalQualifiers());
John McCall0953e762009-09-24 19:53:00 +00002176
Douglas Gregor2cf26342009-04-09 22:27:44 +00002177 if (const BuiltinType *BT = dyn_cast<BuiltinType>(T.getTypePtr())) {
Douglas Gregore1d918e2009-04-10 23:10:45 +00002178 pch::TypeID ID = 0;
Douglas Gregor2cf26342009-04-09 22:27:44 +00002179 switch (BT->getKind()) {
2180 case BuiltinType::Void: ID = pch::PREDEF_TYPE_VOID_ID; break;
2181 case BuiltinType::Bool: ID = pch::PREDEF_TYPE_BOOL_ID; break;
2182 case BuiltinType::Char_U: ID = pch::PREDEF_TYPE_CHAR_U_ID; break;
2183 case BuiltinType::UChar: ID = pch::PREDEF_TYPE_UCHAR_ID; break;
2184 case BuiltinType::UShort: ID = pch::PREDEF_TYPE_USHORT_ID; break;
2185 case BuiltinType::UInt: ID = pch::PREDEF_TYPE_UINT_ID; break;
2186 case BuiltinType::ULong: ID = pch::PREDEF_TYPE_ULONG_ID; break;
2187 case BuiltinType::ULongLong: ID = pch::PREDEF_TYPE_ULONGLONG_ID; break;
Chris Lattner2df9ced2009-04-30 02:43:43 +00002188 case BuiltinType::UInt128: ID = pch::PREDEF_TYPE_UINT128_ID; break;
Douglas Gregor2cf26342009-04-09 22:27:44 +00002189 case BuiltinType::Char_S: ID = pch::PREDEF_TYPE_CHAR_S_ID; break;
2190 case BuiltinType::SChar: ID = pch::PREDEF_TYPE_SCHAR_ID; break;
2191 case BuiltinType::WChar: ID = pch::PREDEF_TYPE_WCHAR_ID; break;
2192 case BuiltinType::Short: ID = pch::PREDEF_TYPE_SHORT_ID; break;
2193 case BuiltinType::Int: ID = pch::PREDEF_TYPE_INT_ID; break;
2194 case BuiltinType::Long: ID = pch::PREDEF_TYPE_LONG_ID; break;
2195 case BuiltinType::LongLong: ID = pch::PREDEF_TYPE_LONGLONG_ID; break;
Chris Lattner2df9ced2009-04-30 02:43:43 +00002196 case BuiltinType::Int128: ID = pch::PREDEF_TYPE_INT128_ID; break;
Douglas Gregor2cf26342009-04-09 22:27:44 +00002197 case BuiltinType::Float: ID = pch::PREDEF_TYPE_FLOAT_ID; break;
2198 case BuiltinType::Double: ID = pch::PREDEF_TYPE_DOUBLE_ID; break;
2199 case BuiltinType::LongDouble: ID = pch::PREDEF_TYPE_LONGDOUBLE_ID; break;
Sebastian Redl6e8ed162009-05-10 18:38:11 +00002200 case BuiltinType::NullPtr: ID = pch::PREDEF_TYPE_NULLPTR_ID; break;
Alisdair Meredithf5c209d2009-07-14 06:30:34 +00002201 case BuiltinType::Char16: ID = pch::PREDEF_TYPE_CHAR16_ID; break;
2202 case BuiltinType::Char32: ID = pch::PREDEF_TYPE_CHAR32_ID; break;
Douglas Gregor2cf26342009-04-09 22:27:44 +00002203 case BuiltinType::Overload: ID = pch::PREDEF_TYPE_OVERLOAD_ID; break;
2204 case BuiltinType::Dependent: ID = pch::PREDEF_TYPE_DEPENDENT_ID; break;
Steve Naroffde2e22d2009-07-15 18:40:39 +00002205 case BuiltinType::ObjCId: ID = pch::PREDEF_TYPE_OBJC_ID; break;
2206 case BuiltinType::ObjCClass: ID = pch::PREDEF_TYPE_OBJC_CLASS; break;
Anders Carlssone89d1592009-06-26 18:41:36 +00002207 case BuiltinType::UndeducedAuto:
2208 assert(0 && "Should not see undeduced auto here");
2209 break;
Douglas Gregor2cf26342009-04-09 22:27:44 +00002210 }
2211
John McCall0953e762009-09-24 19:53:00 +00002212 Record.push_back((ID << Qualifiers::FastWidth) | FastQuals);
Douglas Gregor2cf26342009-04-09 22:27:44 +00002213 return;
2214 }
2215
John McCall0953e762009-09-24 19:53:00 +00002216 pch::TypeID &ID = TypeIDs[T];
Douglas Gregor366809a2009-04-26 03:49:13 +00002217 if (ID == 0) {
2218 // We haven't seen this type before. Assign it a new ID and put it
John McCall0953e762009-09-24 19:53:00 +00002219 // into the queue of types to emit.
Douglas Gregor2cf26342009-04-09 22:27:44 +00002220 ID = NextTypeID++;
Douglas Gregor61d60ee2009-10-17 00:13:19 +00002221 DeclTypesToEmit.push(T);
Douglas Gregor366809a2009-04-26 03:49:13 +00002222 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00002223
2224 // Encode the type qualifiers in the type reference.
John McCall0953e762009-09-24 19:53:00 +00002225 Record.push_back((ID << Qualifiers::FastWidth) | FastQuals);
Douglas Gregor2cf26342009-04-09 22:27:44 +00002226}
2227
2228void PCHWriter::AddDeclRef(const Decl *D, RecordData &Record) {
2229 if (D == 0) {
2230 Record.push_back(0);
2231 return;
2232 }
2233
Douglas Gregor8038d512009-04-10 17:25:41 +00002234 pch::DeclID &ID = DeclIDs[D];
Mike Stump1eb44332009-09-09 15:08:12 +00002235 if (ID == 0) {
Douglas Gregor2cf26342009-04-09 22:27:44 +00002236 // We haven't seen this declaration before. Give it a new ID and
2237 // enqueue it in the list of declarations to emit.
2238 ID = DeclIDs.size();
Douglas Gregor61d60ee2009-10-17 00:13:19 +00002239 DeclTypesToEmit.push(const_cast<Decl *>(D));
Douglas Gregor2cf26342009-04-09 22:27:44 +00002240 }
2241
2242 Record.push_back(ID);
2243}
2244
Douglas Gregor3251ceb2009-04-20 20:36:09 +00002245pch::DeclID PCHWriter::getDeclID(const Decl *D) {
2246 if (D == 0)
2247 return 0;
2248
2249 assert(DeclIDs.find(D) != DeclIDs.end() && "Declaration not emitted!");
2250 return DeclIDs[D];
2251}
2252
Douglas Gregor2cf26342009-04-09 22:27:44 +00002253void PCHWriter::AddDeclarationName(DeclarationName Name, RecordData &Record) {
Chris Lattnerea5ce472009-04-27 07:35:58 +00002254 // FIXME: Emit a stable enum for NameKind. 0 = Identifier etc.
Douglas Gregor2cf26342009-04-09 22:27:44 +00002255 Record.push_back(Name.getNameKind());
2256 switch (Name.getNameKind()) {
2257 case DeclarationName::Identifier:
2258 AddIdentifierRef(Name.getAsIdentifierInfo(), Record);
2259 break;
2260
2261 case DeclarationName::ObjCZeroArgSelector:
2262 case DeclarationName::ObjCOneArgSelector:
2263 case DeclarationName::ObjCMultiArgSelector:
Steve Naroff90cd1bb2009-04-23 10:39:46 +00002264 AddSelectorRef(Name.getObjCSelector(), Record);
Douglas Gregor2cf26342009-04-09 22:27:44 +00002265 break;
2266
2267 case DeclarationName::CXXConstructorName:
2268 case DeclarationName::CXXDestructorName:
2269 case DeclarationName::CXXConversionFunctionName:
2270 AddTypeRef(Name.getCXXNameType(), Record);
2271 break;
2272
2273 case DeclarationName::CXXOperatorName:
2274 Record.push_back(Name.getCXXOverloadedOperator());
2275 break;
2276
2277 case DeclarationName::CXXUsingDirective:
2278 // No extra data to emit
2279 break;
2280 }
2281}
Douglas Gregor0b748912009-04-14 21:18:50 +00002282