blob: 7636f02bdf0420fc41d1f6dc5b23af8ee2d8f296 [file] [log] [blame]
Sebastian Redld6522cf2010-08-18 23:56:31 +00001//===--- ASTWriter.cpp - AST File Writer ----------------------------------===//
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
Sebastian Redl55c0ad52010-08-18 23:56:21 +000010// This file defines the ASTWriter class, which writes AST files.
Douglas Gregoref84c4b2009-04-09 22:27:44 +000011//
12//===----------------------------------------------------------------------===//
13
Sebastian Redl1914c6f2010-08-18 23:56:37 +000014#include "clang/Serialization/ASTWriter.h"
Argyrios Kyrtzidis4bd97102010-08-20 16:03:52 +000015#include "ASTCommon.h"
Douglas Gregorc3a6ade2010-08-12 20:07:10 +000016#include "clang/Sema/Sema.h"
17#include "clang/Sema/IdentifierResolver.h"
Douglas Gregoref84c4b2009-04-09 22:27:44 +000018#include "clang/AST/ASTContext.h"
19#include "clang/AST/Decl.h"
20#include "clang/AST/DeclContextInternals.h"
John McCall19c1bfd2010-08-25 05:32:35 +000021#include "clang/AST/DeclTemplate.h"
Argyrios Kyrtzidiseb39d9a2010-10-24 17:26:40 +000022#include "clang/AST/DeclFriend.h"
Douglas Gregorfeb84b02009-04-14 21:18:50 +000023#include "clang/AST/Expr.h"
John McCallbfd822c2010-08-24 07:32:53 +000024#include "clang/AST/ExprCXX.h"
Douglas Gregoref84c4b2009-04-09 22:27:44 +000025#include "clang/AST/Type.h"
John McCall8f115c62009-10-16 21:56:05 +000026#include "clang/AST/TypeLocVisitor.h"
Sebastian Redlf5b13462010-08-18 23:57:17 +000027#include "clang/Serialization/ASTReader.h"
Chris Lattnerbaa52f42009-04-10 18:00:12 +000028#include "clang/Lex/MacroInfo.h"
Douglas Gregoraae92242010-03-19 21:51:54 +000029#include "clang/Lex/PreprocessingRecord.h"
Chris Lattnerbaa52f42009-04-10 18:00:12 +000030#include "clang/Lex/Preprocessor.h"
Steve Naroff3fa455a2009-04-24 20:03:17 +000031#include "clang/Lex/HeaderSearch.h"
Douglas Gregora7f71a92009-04-10 03:52:48 +000032#include "clang/Basic/FileManager.h"
Douglas Gregore84a9da2009-04-20 20:36:09 +000033#include "clang/Basic/OnDiskHashTable.h"
Douglas Gregora7f71a92009-04-10 03:52:48 +000034#include "clang/Basic/SourceManager.h"
Douglas Gregor4c7626e2009-04-13 16:31:14 +000035#include "clang/Basic/SourceManagerInternals.h"
Douglas Gregorbfbde532009-04-10 21:16:55 +000036#include "clang/Basic/TargetInfo.h"
Douglas Gregor7b71e632009-04-27 22:23:34 +000037#include "clang/Basic/Version.h"
Douglas Gregore0a3a512009-04-14 21:55:33 +000038#include "llvm/ADT/APFloat.h"
39#include "llvm/ADT/APInt.h"
Daniel Dunbarf8502d52009-10-17 23:52:28 +000040#include "llvm/ADT/StringExtras.h"
Douglas Gregoref84c4b2009-04-09 22:27:44 +000041#include "llvm/Bitcode/BitstreamWriter.h"
Douglas Gregora7f71a92009-04-10 03:52:48 +000042#include "llvm/Support/MemoryBuffer.h"
Douglas Gregor45fe0362009-05-12 01:31:05 +000043#include "llvm/System/Path.h"
Chris Lattner225dd6c2009-04-11 18:40:46 +000044#include <cstdio>
Douglas Gregoref84c4b2009-04-09 22:27:44 +000045using namespace clang;
Sebastian Redl539c5062010-08-18 23:57:32 +000046using namespace clang::serialization;
Douglas Gregoref84c4b2009-04-09 22:27:44 +000047
Sebastian Redl3df5a082010-07-30 17:03:48 +000048template <typename T, typename Allocator>
49T *data(std::vector<T, Allocator> &v) {
50 return v.empty() ? 0 : &v.front();
51}
52template <typename T, typename Allocator>
53const T *data(const std::vector<T, Allocator> &v) {
54 return v.empty() ? 0 : &v.front();
55}
56
Douglas Gregoref84c4b2009-04-09 22:27:44 +000057//===----------------------------------------------------------------------===//
58// Type serialization
59//===----------------------------------------------------------------------===//
Chris Lattner7099dbc2009-04-27 06:16:06 +000060
Douglas Gregoref84c4b2009-04-09 22:27:44 +000061namespace {
Sebastian Redl42a0f6a2010-08-18 23:56:27 +000062 class ASTTypeWriter {
Sebastian Redl55c0ad52010-08-18 23:56:21 +000063 ASTWriter &Writer;
Argyrios Kyrtzidiseb39d9a2010-10-24 17:26:40 +000064 ASTWriter::RecordDataImpl &Record;
Douglas Gregoref84c4b2009-04-09 22:27:44 +000065
66 public:
67 /// \brief Type code that corresponds to the record generated.
Sebastian Redl539c5062010-08-18 23:57:32 +000068 TypeCode Code;
Douglas Gregoref84c4b2009-04-09 22:27:44 +000069
Argyrios Kyrtzidiseb39d9a2010-10-24 17:26:40 +000070 ASTTypeWriter(ASTWriter &Writer, ASTWriter::RecordDataImpl &Record)
Sebastian Redl539c5062010-08-18 23:57:32 +000071 : Writer(Writer), Record(Record), Code(TYPE_EXT_QUAL) { }
Douglas Gregoref84c4b2009-04-09 22:27:44 +000072
73 void VisitArrayType(const ArrayType *T);
74 void VisitFunctionType(const FunctionType *T);
75 void VisitTagType(const TagType *T);
76
77#define TYPE(Class, Base) void Visit##Class##Type(const Class##Type *T);
78#define ABSTRACT_TYPE(Class, Base)
Douglas Gregoref84c4b2009-04-09 22:27:44 +000079#include "clang/AST/TypeNodes.def"
80 };
81}
82
Sebastian Redl42a0f6a2010-08-18 23:56:27 +000083void ASTTypeWriter::VisitBuiltinType(const BuiltinType *T) {
Douglas Gregoref84c4b2009-04-09 22:27:44 +000084 assert(false && "Built-in types are never serialized");
85}
86
Sebastian Redl42a0f6a2010-08-18 23:56:27 +000087void ASTTypeWriter::VisitComplexType(const ComplexType *T) {
Douglas Gregoref84c4b2009-04-09 22:27:44 +000088 Writer.AddTypeRef(T->getElementType(), Record);
Sebastian Redl539c5062010-08-18 23:57:32 +000089 Code = TYPE_COMPLEX;
Douglas Gregoref84c4b2009-04-09 22:27:44 +000090}
91
Sebastian Redl42a0f6a2010-08-18 23:56:27 +000092void ASTTypeWriter::VisitPointerType(const PointerType *T) {
Douglas Gregoref84c4b2009-04-09 22:27:44 +000093 Writer.AddTypeRef(T->getPointeeType(), Record);
Sebastian Redl539c5062010-08-18 23:57:32 +000094 Code = TYPE_POINTER;
Douglas Gregoref84c4b2009-04-09 22:27:44 +000095}
96
Sebastian Redl42a0f6a2010-08-18 23:56:27 +000097void ASTTypeWriter::VisitBlockPointerType(const BlockPointerType *T) {
Mike Stump11289f42009-09-09 15:08:12 +000098 Writer.AddTypeRef(T->getPointeeType(), Record);
Sebastian Redl539c5062010-08-18 23:57:32 +000099 Code = TYPE_BLOCK_POINTER;
Douglas Gregoref84c4b2009-04-09 22:27:44 +0000100}
101
Sebastian Redl42a0f6a2010-08-18 23:56:27 +0000102void ASTTypeWriter::VisitLValueReferenceType(const LValueReferenceType *T) {
Douglas Gregoref84c4b2009-04-09 22:27:44 +0000103 Writer.AddTypeRef(T->getPointeeType(), Record);
Sebastian Redl539c5062010-08-18 23:57:32 +0000104 Code = TYPE_LVALUE_REFERENCE;
Douglas Gregoref84c4b2009-04-09 22:27:44 +0000105}
106
Sebastian Redl42a0f6a2010-08-18 23:56:27 +0000107void ASTTypeWriter::VisitRValueReferenceType(const RValueReferenceType *T) {
Douglas Gregoref84c4b2009-04-09 22:27:44 +0000108 Writer.AddTypeRef(T->getPointeeType(), Record);
Sebastian Redl539c5062010-08-18 23:57:32 +0000109 Code = TYPE_RVALUE_REFERENCE;
Douglas Gregoref84c4b2009-04-09 22:27:44 +0000110}
111
Sebastian Redl42a0f6a2010-08-18 23:56:27 +0000112void ASTTypeWriter::VisitMemberPointerType(const MemberPointerType *T) {
Mike Stump11289f42009-09-09 15:08:12 +0000113 Writer.AddTypeRef(T->getPointeeType(), Record);
114 Writer.AddTypeRef(QualType(T->getClass(), 0), Record);
Sebastian Redl539c5062010-08-18 23:57:32 +0000115 Code = TYPE_MEMBER_POINTER;
Douglas Gregoref84c4b2009-04-09 22:27:44 +0000116}
117
Sebastian Redl42a0f6a2010-08-18 23:56:27 +0000118void ASTTypeWriter::VisitArrayType(const ArrayType *T) {
Douglas Gregoref84c4b2009-04-09 22:27:44 +0000119 Writer.AddTypeRef(T->getElementType(), Record);
120 Record.push_back(T->getSizeModifier()); // FIXME: stable values
John McCall8ccfcb52009-09-24 19:53:00 +0000121 Record.push_back(T->getIndexTypeCVRQualifiers()); // FIXME: stable values
Douglas Gregoref84c4b2009-04-09 22:27:44 +0000122}
123
Sebastian Redl42a0f6a2010-08-18 23:56:27 +0000124void ASTTypeWriter::VisitConstantArrayType(const ConstantArrayType *T) {
Douglas Gregoref84c4b2009-04-09 22:27:44 +0000125 VisitArrayType(T);
126 Writer.AddAPInt(T->getSize(), Record);
Sebastian Redl539c5062010-08-18 23:57:32 +0000127 Code = TYPE_CONSTANT_ARRAY;
Douglas Gregoref84c4b2009-04-09 22:27:44 +0000128}
129
Sebastian Redl42a0f6a2010-08-18 23:56:27 +0000130void ASTTypeWriter::VisitIncompleteArrayType(const IncompleteArrayType *T) {
Douglas Gregoref84c4b2009-04-09 22:27:44 +0000131 VisitArrayType(T);
Sebastian Redl539c5062010-08-18 23:57:32 +0000132 Code = TYPE_INCOMPLETE_ARRAY;
Douglas Gregoref84c4b2009-04-09 22:27:44 +0000133}
134
Sebastian Redl42a0f6a2010-08-18 23:56:27 +0000135void ASTTypeWriter::VisitVariableArrayType(const VariableArrayType *T) {
Douglas Gregoref84c4b2009-04-09 22:27:44 +0000136 VisitArrayType(T);
Douglas Gregor04318252009-07-06 15:59:29 +0000137 Writer.AddSourceLocation(T->getLBracketLoc(), Record);
138 Writer.AddSourceLocation(T->getRBracketLoc(), Record);
Douglas Gregor8f45df52009-04-16 22:23:12 +0000139 Writer.AddStmt(T->getSizeExpr());
Sebastian Redl539c5062010-08-18 23:57:32 +0000140 Code = TYPE_VARIABLE_ARRAY;
Douglas Gregoref84c4b2009-04-09 22:27:44 +0000141}
142
Sebastian Redl42a0f6a2010-08-18 23:56:27 +0000143void ASTTypeWriter::VisitVectorType(const VectorType *T) {
Douglas Gregoref84c4b2009-04-09 22:27:44 +0000144 Writer.AddTypeRef(T->getElementType(), Record);
145 Record.push_back(T->getNumElements());
Chris Lattner37141f42010-06-23 06:00:24 +0000146 Record.push_back(T->getAltiVecSpecific());
Sebastian Redl539c5062010-08-18 23:57:32 +0000147 Code = TYPE_VECTOR;
Douglas Gregoref84c4b2009-04-09 22:27:44 +0000148}
149
Sebastian Redl42a0f6a2010-08-18 23:56:27 +0000150void ASTTypeWriter::VisitExtVectorType(const ExtVectorType *T) {
Douglas Gregoref84c4b2009-04-09 22:27:44 +0000151 VisitVectorType(T);
Sebastian Redl539c5062010-08-18 23:57:32 +0000152 Code = TYPE_EXT_VECTOR;
Douglas Gregoref84c4b2009-04-09 22:27:44 +0000153}
154
Sebastian Redl42a0f6a2010-08-18 23:56:27 +0000155void ASTTypeWriter::VisitFunctionType(const FunctionType *T) {
Douglas Gregoref84c4b2009-04-09 22:27:44 +0000156 Writer.AddTypeRef(T->getResultType(), Record);
Rafael Espindolac50c27c2010-03-30 20:24:48 +0000157 FunctionType::ExtInfo C = T->getExtInfo();
158 Record.push_back(C.getNoReturn());
Rafael Espindola49b85ab2010-03-30 22:15:11 +0000159 Record.push_back(C.getRegParm());
Douglas Gregor8c940862010-01-18 17:14:39 +0000160 // FIXME: need to stabilize encoding of calling convention...
Rafael Espindolac50c27c2010-03-30 20:24:48 +0000161 Record.push_back(C.getCC());
Douglas Gregoref84c4b2009-04-09 22:27:44 +0000162}
163
Sebastian Redl42a0f6a2010-08-18 23:56:27 +0000164void ASTTypeWriter::VisitFunctionNoProtoType(const FunctionNoProtoType *T) {
Douglas Gregoref84c4b2009-04-09 22:27:44 +0000165 VisitFunctionType(T);
Sebastian Redl539c5062010-08-18 23:57:32 +0000166 Code = TYPE_FUNCTION_NO_PROTO;
Douglas Gregoref84c4b2009-04-09 22:27:44 +0000167}
168
Sebastian Redl42a0f6a2010-08-18 23:56:27 +0000169void ASTTypeWriter::VisitFunctionProtoType(const FunctionProtoType *T) {
Douglas Gregoref84c4b2009-04-09 22:27:44 +0000170 VisitFunctionType(T);
171 Record.push_back(T->getNumArgs());
172 for (unsigned I = 0, N = T->getNumArgs(); I != N; ++I)
173 Writer.AddTypeRef(T->getArgType(I), Record);
174 Record.push_back(T->isVariadic());
175 Record.push_back(T->getTypeQuals());
Sebastian Redl5068f77ac2009-05-27 22:11:52 +0000176 Record.push_back(T->hasExceptionSpec());
177 Record.push_back(T->hasAnyExceptionSpec());
178 Record.push_back(T->getNumExceptions());
179 for (unsigned I = 0, N = T->getNumExceptions(); I != N; ++I)
180 Writer.AddTypeRef(T->getExceptionType(I), Record);
Sebastian Redl539c5062010-08-18 23:57:32 +0000181 Code = TYPE_FUNCTION_PROTO;
Douglas Gregoref84c4b2009-04-09 22:27:44 +0000182}
183
Sebastian Redl42a0f6a2010-08-18 23:56:27 +0000184void ASTTypeWriter::VisitUnresolvedUsingType(const UnresolvedUsingType *T) {
John McCallb96ec562009-12-04 22:46:56 +0000185 Writer.AddDeclRef(T->getDecl(), Record);
Sebastian Redl539c5062010-08-18 23:57:32 +0000186 Code = TYPE_UNRESOLVED_USING;
John McCallb96ec562009-12-04 22:46:56 +0000187}
John McCallb96ec562009-12-04 22:46:56 +0000188
Sebastian Redl42a0f6a2010-08-18 23:56:27 +0000189void ASTTypeWriter::VisitTypedefType(const TypedefType *T) {
Douglas Gregoref84c4b2009-04-09 22:27:44 +0000190 Writer.AddDeclRef(T->getDecl(), Record);
Argyrios Kyrtzidis45a83f92010-07-02 11:55:11 +0000191 assert(!T->isCanonicalUnqualified() && "Invalid typedef ?");
192 Writer.AddTypeRef(T->getCanonicalTypeInternal(), Record);
Sebastian Redl539c5062010-08-18 23:57:32 +0000193 Code = TYPE_TYPEDEF;
Douglas Gregoref84c4b2009-04-09 22:27:44 +0000194}
195
Sebastian Redl42a0f6a2010-08-18 23:56:27 +0000196void ASTTypeWriter::VisitTypeOfExprType(const TypeOfExprType *T) {
Douglas Gregor8f45df52009-04-16 22:23:12 +0000197 Writer.AddStmt(T->getUnderlyingExpr());
Sebastian Redl539c5062010-08-18 23:57:32 +0000198 Code = TYPE_TYPEOF_EXPR;
Douglas Gregoref84c4b2009-04-09 22:27:44 +0000199}
200
Sebastian Redl42a0f6a2010-08-18 23:56:27 +0000201void ASTTypeWriter::VisitTypeOfType(const TypeOfType *T) {
Douglas Gregoref84c4b2009-04-09 22:27:44 +0000202 Writer.AddTypeRef(T->getUnderlyingType(), Record);
Sebastian Redl539c5062010-08-18 23:57:32 +0000203 Code = TYPE_TYPEOF;
Douglas Gregoref84c4b2009-04-09 22:27:44 +0000204}
205
Sebastian Redl42a0f6a2010-08-18 23:56:27 +0000206void ASTTypeWriter::VisitDecltypeType(const DecltypeType *T) {
Anders Carlsson81df7b82009-06-24 19:06:50 +0000207 Writer.AddStmt(T->getUnderlyingExpr());
Sebastian Redl539c5062010-08-18 23:57:32 +0000208 Code = TYPE_DECLTYPE;
Anders Carlsson81df7b82009-06-24 19:06:50 +0000209}
210
Sebastian Redl42a0f6a2010-08-18 23:56:27 +0000211void ASTTypeWriter::VisitTagType(const TagType *T) {
Argyrios Kyrtzidisa4ed1812010-07-08 13:09:53 +0000212 Record.push_back(T->isDependentType());
Douglas Gregoref84c4b2009-04-09 22:27:44 +0000213 Writer.AddDeclRef(T->getDecl(), Record);
Mike Stump11289f42009-09-09 15:08:12 +0000214 assert(!T->isBeingDefined() &&
Douglas Gregoref84c4b2009-04-09 22:27:44 +0000215 "Cannot serialize in the middle of a type definition");
216}
217
Sebastian Redl42a0f6a2010-08-18 23:56:27 +0000218void ASTTypeWriter::VisitRecordType(const RecordType *T) {
Douglas Gregoref84c4b2009-04-09 22:27:44 +0000219 VisitTagType(T);
Sebastian Redl539c5062010-08-18 23:57:32 +0000220 Code = TYPE_RECORD;
Douglas Gregoref84c4b2009-04-09 22:27:44 +0000221}
222
Sebastian Redl42a0f6a2010-08-18 23:56:27 +0000223void ASTTypeWriter::VisitEnumType(const EnumType *T) {
Douglas Gregoref84c4b2009-04-09 22:27:44 +0000224 VisitTagType(T);
Sebastian Redl539c5062010-08-18 23:57:32 +0000225 Code = TYPE_ENUM;
Douglas Gregoref84c4b2009-04-09 22:27:44 +0000226}
227
Mike Stump11289f42009-09-09 15:08:12 +0000228void
Sebastian Redl42a0f6a2010-08-18 23:56:27 +0000229ASTTypeWriter::VisitSubstTemplateTypeParmType(
John McCallcebee162009-10-18 09:09:24 +0000230 const SubstTemplateTypeParmType *T) {
231 Writer.AddTypeRef(QualType(T->getReplacedParameter(), 0), Record);
232 Writer.AddTypeRef(T->getReplacementType(), Record);
Sebastian Redl539c5062010-08-18 23:57:32 +0000233 Code = TYPE_SUBST_TEMPLATE_TYPE_PARM;
John McCallcebee162009-10-18 09:09:24 +0000234}
235
236void
Sebastian Redl42a0f6a2010-08-18 23:56:27 +0000237ASTTypeWriter::VisitTemplateSpecializationType(
Douglas Gregoref84c4b2009-04-09 22:27:44 +0000238 const TemplateSpecializationType *T) {
Argyrios Kyrtzidisa4ed1812010-07-08 13:09:53 +0000239 Record.push_back(T->isDependentType());
Argyrios Kyrtzidis106caf922010-06-19 19:28:53 +0000240 Writer.AddTemplateName(T->getTemplateName(), Record);
241 Record.push_back(T->getNumArgs());
242 for (TemplateSpecializationType::iterator ArgI = T->begin(), ArgE = T->end();
243 ArgI != ArgE; ++ArgI)
244 Writer.AddTemplateArgument(*ArgI, Record);
Argyrios Kyrtzidis45a83f92010-07-02 11:55:11 +0000245 Writer.AddTypeRef(T->isCanonicalUnqualified() ? QualType()
246 : T->getCanonicalTypeInternal(),
247 Record);
Sebastian Redl539c5062010-08-18 23:57:32 +0000248 Code = TYPE_TEMPLATE_SPECIALIZATION;
Argyrios Kyrtzidis106caf922010-06-19 19:28:53 +0000249}
250
251void
Sebastian Redl42a0f6a2010-08-18 23:56:27 +0000252ASTTypeWriter::VisitDependentSizedArrayType(const DependentSizedArrayType *T) {
Argyrios Kyrtzidis4a57bd02010-06-30 08:49:25 +0000253 VisitArrayType(T);
254 Writer.AddStmt(T->getSizeExpr());
255 Writer.AddSourceRange(T->getBracketsRange(), Record);
Sebastian Redl539c5062010-08-18 23:57:32 +0000256 Code = TYPE_DEPENDENT_SIZED_ARRAY;
Argyrios Kyrtzidis106caf922010-06-19 19:28:53 +0000257}
258
259void
Sebastian Redl42a0f6a2010-08-18 23:56:27 +0000260ASTTypeWriter::VisitDependentSizedExtVectorType(
Argyrios Kyrtzidis106caf922010-06-19 19:28:53 +0000261 const DependentSizedExtVectorType *T) {
262 // FIXME: Serialize this type (C++ only)
263 assert(false && "Cannot serialize dependent sized extended vector types");
264}
265
266void
Sebastian Redl42a0f6a2010-08-18 23:56:27 +0000267ASTTypeWriter::VisitTemplateTypeParmType(const TemplateTypeParmType *T) {
Argyrios Kyrtzidis106caf922010-06-19 19:28:53 +0000268 Record.push_back(T->getDepth());
269 Record.push_back(T->getIndex());
270 Record.push_back(T->isParameterPack());
271 Writer.AddIdentifierRef(T->getName(), Record);
Sebastian Redl539c5062010-08-18 23:57:32 +0000272 Code = TYPE_TEMPLATE_TYPE_PARM;
Argyrios Kyrtzidis106caf922010-06-19 19:28:53 +0000273}
274
275void
Sebastian Redl42a0f6a2010-08-18 23:56:27 +0000276ASTTypeWriter::VisitDependentNameType(const DependentNameType *T) {
Argyrios Kyrtzidisbfcacee2010-06-24 08:57:31 +0000277 Record.push_back(T->getKeyword());
278 Writer.AddNestedNameSpecifier(T->getQualifier(), Record);
279 Writer.AddIdentifierRef(T->getIdentifier(), Record);
Argyrios Kyrtzidise9290952010-07-02 11:55:24 +0000280 Writer.AddTypeRef(T->isCanonicalUnqualified() ? QualType()
281 : T->getCanonicalTypeInternal(),
282 Record);
Sebastian Redl539c5062010-08-18 23:57:32 +0000283 Code = TYPE_DEPENDENT_NAME;
Argyrios Kyrtzidis106caf922010-06-19 19:28:53 +0000284}
285
286void
Sebastian Redl42a0f6a2010-08-18 23:56:27 +0000287ASTTypeWriter::VisitDependentTemplateSpecializationType(
Argyrios Kyrtzidis106caf922010-06-19 19:28:53 +0000288 const DependentTemplateSpecializationType *T) {
Argyrios Kyrtzidisf0f7a792010-06-25 16:24:58 +0000289 Record.push_back(T->getKeyword());
290 Writer.AddNestedNameSpecifier(T->getQualifier(), Record);
291 Writer.AddIdentifierRef(T->getIdentifier(), Record);
292 Record.push_back(T->getNumArgs());
293 for (DependentTemplateSpecializationType::iterator
294 I = T->begin(), E = T->end(); I != E; ++I)
295 Writer.AddTemplateArgument(*I, Record);
Sebastian Redl539c5062010-08-18 23:57:32 +0000296 Code = TYPE_DEPENDENT_TEMPLATE_SPECIALIZATION;
Douglas Gregoref84c4b2009-04-09 22:27:44 +0000297}
298
Sebastian Redl42a0f6a2010-08-18 23:56:27 +0000299void ASTTypeWriter::VisitElaboratedType(const ElaboratedType *T) {
Abramo Bagnara6150c882010-05-11 21:36:43 +0000300 Record.push_back(T->getKeyword());
Argyrios Kyrtzidisf0f7a792010-06-25 16:24:58 +0000301 Writer.AddNestedNameSpecifier(T->getQualifier(), Record);
302 Writer.AddTypeRef(T->getNamedType(), Record);
Sebastian Redl539c5062010-08-18 23:57:32 +0000303 Code = TYPE_ELABORATED;
Douglas Gregoref84c4b2009-04-09 22:27:44 +0000304}
305
Sebastian Redl42a0f6a2010-08-18 23:56:27 +0000306void ASTTypeWriter::VisitInjectedClassNameType(const InjectedClassNameType *T) {
John McCalle78aac42010-03-10 03:28:59 +0000307 Writer.AddDeclRef(T->getDecl(), Record);
John McCall2408e322010-04-27 00:57:59 +0000308 Writer.AddTypeRef(T->getInjectedSpecializationType(), Record);
Sebastian Redl539c5062010-08-18 23:57:32 +0000309 Code = TYPE_INJECTED_CLASS_NAME;
John McCalle78aac42010-03-10 03:28:59 +0000310}
311
Sebastian Redl42a0f6a2010-08-18 23:56:27 +0000312void ASTTypeWriter::VisitObjCInterfaceType(const ObjCInterfaceType *T) {
Douglas Gregor1c283312010-08-11 12:19:30 +0000313 Writer.AddDeclRef(T->getDecl(), Record);
Sebastian Redl539c5062010-08-18 23:57:32 +0000314 Code = TYPE_OBJC_INTERFACE;
John McCall8b07ec22010-05-15 11:32:37 +0000315}
316
Sebastian Redl42a0f6a2010-08-18 23:56:27 +0000317void ASTTypeWriter::VisitObjCObjectType(const ObjCObjectType *T) {
John McCall8b07ec22010-05-15 11:32:37 +0000318 Writer.AddTypeRef(T->getBaseType(), Record);
Douglas Gregoref84c4b2009-04-09 22:27:44 +0000319 Record.push_back(T->getNumProtocols());
John McCall8b07ec22010-05-15 11:32:37 +0000320 for (ObjCObjectType::qual_iterator I = T->qual_begin(),
Steve Naroff4fc95aa2009-05-27 16:21:00 +0000321 E = T->qual_end(); I != E; ++I)
322 Writer.AddDeclRef(*I, Record);
Sebastian Redl539c5062010-08-18 23:57:32 +0000323 Code = TYPE_OBJC_OBJECT;
Douglas Gregoref84c4b2009-04-09 22:27:44 +0000324}
325
Steve Narofffb4330f2009-06-17 22:40:22 +0000326void
Sebastian Redl42a0f6a2010-08-18 23:56:27 +0000327ASTTypeWriter::VisitObjCObjectPointerType(const ObjCObjectPointerType *T) {
Mike Stump11289f42009-09-09 15:08:12 +0000328 Writer.AddTypeRef(T->getPointeeType(), Record);
Sebastian Redl539c5062010-08-18 23:57:32 +0000329 Code = TYPE_OBJC_OBJECT_POINTER;
Douglas Gregoref84c4b2009-04-09 22:27:44 +0000330}
331
John McCall8f115c62009-10-16 21:56:05 +0000332namespace {
333
334class TypeLocWriter : public TypeLocVisitor<TypeLocWriter> {
Sebastian Redl55c0ad52010-08-18 23:56:21 +0000335 ASTWriter &Writer;
Argyrios Kyrtzidiseb39d9a2010-10-24 17:26:40 +0000336 ASTWriter::RecordDataImpl &Record;
John McCall8f115c62009-10-16 21:56:05 +0000337
338public:
Argyrios Kyrtzidiseb39d9a2010-10-24 17:26:40 +0000339 TypeLocWriter(ASTWriter &Writer, ASTWriter::RecordDataImpl &Record)
John McCall8f115c62009-10-16 21:56:05 +0000340 : Writer(Writer), Record(Record) { }
341
John McCall17001972009-10-18 01:05:36 +0000342#define ABSTRACT_TYPELOC(CLASS, PARENT)
John McCall8f115c62009-10-16 21:56:05 +0000343#define TYPELOC(CLASS, PARENT) \
John McCall17001972009-10-18 01:05:36 +0000344 void Visit##CLASS##TypeLoc(CLASS##TypeLoc TyLoc);
John McCall8f115c62009-10-16 21:56:05 +0000345#include "clang/AST/TypeLocNodes.def"
346
John McCall17001972009-10-18 01:05:36 +0000347 void VisitArrayTypeLoc(ArrayTypeLoc TyLoc);
348 void VisitFunctionTypeLoc(FunctionTypeLoc TyLoc);
John McCall8f115c62009-10-16 21:56:05 +0000349};
350
351}
352
John McCall17001972009-10-18 01:05:36 +0000353void TypeLocWriter::VisitQualifiedTypeLoc(QualifiedTypeLoc TL) {
354 // nothing to do
John McCall8f115c62009-10-16 21:56:05 +0000355}
John McCall17001972009-10-18 01:05:36 +0000356void TypeLocWriter::VisitBuiltinTypeLoc(BuiltinTypeLoc TL) {
Douglas Gregorc9b7a592010-01-18 18:04:31 +0000357 Writer.AddSourceLocation(TL.getBuiltinLoc(), Record);
358 if (TL.needsExtraLocalData()) {
359 Record.push_back(TL.getWrittenTypeSpec());
360 Record.push_back(TL.getWrittenSignSpec());
361 Record.push_back(TL.getWrittenWidthSpec());
362 Record.push_back(TL.hasModeAttr());
363 }
John McCall8f115c62009-10-16 21:56:05 +0000364}
John McCall17001972009-10-18 01:05:36 +0000365void TypeLocWriter::VisitComplexTypeLoc(ComplexTypeLoc TL) {
366 Writer.AddSourceLocation(TL.getNameLoc(), Record);
John McCall8f115c62009-10-16 21:56:05 +0000367}
John McCall17001972009-10-18 01:05:36 +0000368void TypeLocWriter::VisitPointerTypeLoc(PointerTypeLoc TL) {
369 Writer.AddSourceLocation(TL.getStarLoc(), Record);
John McCall8f115c62009-10-16 21:56:05 +0000370}
John McCall17001972009-10-18 01:05:36 +0000371void TypeLocWriter::VisitBlockPointerTypeLoc(BlockPointerTypeLoc TL) {
372 Writer.AddSourceLocation(TL.getCaretLoc(), Record);
John McCall8f115c62009-10-16 21:56:05 +0000373}
John McCall17001972009-10-18 01:05:36 +0000374void TypeLocWriter::VisitLValueReferenceTypeLoc(LValueReferenceTypeLoc TL) {
375 Writer.AddSourceLocation(TL.getAmpLoc(), Record);
John McCall8f115c62009-10-16 21:56:05 +0000376}
John McCall17001972009-10-18 01:05:36 +0000377void TypeLocWriter::VisitRValueReferenceTypeLoc(RValueReferenceTypeLoc TL) {
378 Writer.AddSourceLocation(TL.getAmpAmpLoc(), Record);
John McCall8f115c62009-10-16 21:56:05 +0000379}
John McCall17001972009-10-18 01:05:36 +0000380void TypeLocWriter::VisitMemberPointerTypeLoc(MemberPointerTypeLoc TL) {
381 Writer.AddSourceLocation(TL.getStarLoc(), Record);
John McCall8f115c62009-10-16 21:56:05 +0000382}
John McCall17001972009-10-18 01:05:36 +0000383void TypeLocWriter::VisitArrayTypeLoc(ArrayTypeLoc TL) {
384 Writer.AddSourceLocation(TL.getLBracketLoc(), Record);
385 Writer.AddSourceLocation(TL.getRBracketLoc(), Record);
386 Record.push_back(TL.getSizeExpr() ? 1 : 0);
387 if (TL.getSizeExpr())
388 Writer.AddStmt(TL.getSizeExpr());
John McCall8f115c62009-10-16 21:56:05 +0000389}
John McCall17001972009-10-18 01:05:36 +0000390void TypeLocWriter::VisitConstantArrayTypeLoc(ConstantArrayTypeLoc TL) {
391 VisitArrayTypeLoc(TL);
392}
393void TypeLocWriter::VisitIncompleteArrayTypeLoc(IncompleteArrayTypeLoc TL) {
394 VisitArrayTypeLoc(TL);
395}
396void TypeLocWriter::VisitVariableArrayTypeLoc(VariableArrayTypeLoc TL) {
397 VisitArrayTypeLoc(TL);
398}
399void TypeLocWriter::VisitDependentSizedArrayTypeLoc(
400 DependentSizedArrayTypeLoc TL) {
401 VisitArrayTypeLoc(TL);
402}
403void TypeLocWriter::VisitDependentSizedExtVectorTypeLoc(
404 DependentSizedExtVectorTypeLoc TL) {
405 Writer.AddSourceLocation(TL.getNameLoc(), Record);
406}
407void TypeLocWriter::VisitVectorTypeLoc(VectorTypeLoc TL) {
408 Writer.AddSourceLocation(TL.getNameLoc(), Record);
409}
410void TypeLocWriter::VisitExtVectorTypeLoc(ExtVectorTypeLoc TL) {
411 Writer.AddSourceLocation(TL.getNameLoc(), Record);
412}
413void TypeLocWriter::VisitFunctionTypeLoc(FunctionTypeLoc TL) {
414 Writer.AddSourceLocation(TL.getLParenLoc(), Record);
415 Writer.AddSourceLocation(TL.getRParenLoc(), Record);
Douglas Gregor7fb25412010-10-01 18:44:50 +0000416 Record.push_back(TL.getTrailingReturn());
John McCall17001972009-10-18 01:05:36 +0000417 for (unsigned i = 0, e = TL.getNumArgs(); i != e; ++i)
418 Writer.AddDeclRef(TL.getArg(i), Record);
419}
420void TypeLocWriter::VisitFunctionProtoTypeLoc(FunctionProtoTypeLoc TL) {
421 VisitFunctionTypeLoc(TL);
422}
423void TypeLocWriter::VisitFunctionNoProtoTypeLoc(FunctionNoProtoTypeLoc TL) {
424 VisitFunctionTypeLoc(TL);
425}
John McCallb96ec562009-12-04 22:46:56 +0000426void TypeLocWriter::VisitUnresolvedUsingTypeLoc(UnresolvedUsingTypeLoc TL) {
427 Writer.AddSourceLocation(TL.getNameLoc(), Record);
428}
John McCall17001972009-10-18 01:05:36 +0000429void TypeLocWriter::VisitTypedefTypeLoc(TypedefTypeLoc TL) {
430 Writer.AddSourceLocation(TL.getNameLoc(), Record);
431}
432void TypeLocWriter::VisitTypeOfExprTypeLoc(TypeOfExprTypeLoc TL) {
John McCalle8595032010-01-13 20:03:27 +0000433 Writer.AddSourceLocation(TL.getTypeofLoc(), Record);
434 Writer.AddSourceLocation(TL.getLParenLoc(), Record);
435 Writer.AddSourceLocation(TL.getRParenLoc(), Record);
John McCall17001972009-10-18 01:05:36 +0000436}
437void TypeLocWriter::VisitTypeOfTypeLoc(TypeOfTypeLoc TL) {
John McCalle8595032010-01-13 20:03:27 +0000438 Writer.AddSourceLocation(TL.getTypeofLoc(), Record);
439 Writer.AddSourceLocation(TL.getLParenLoc(), Record);
440 Writer.AddSourceLocation(TL.getRParenLoc(), Record);
441 Writer.AddTypeSourceInfo(TL.getUnderlyingTInfo(), Record);
John McCall17001972009-10-18 01:05:36 +0000442}
443void TypeLocWriter::VisitDecltypeTypeLoc(DecltypeTypeLoc TL) {
444 Writer.AddSourceLocation(TL.getNameLoc(), Record);
445}
446void TypeLocWriter::VisitRecordTypeLoc(RecordTypeLoc TL) {
447 Writer.AddSourceLocation(TL.getNameLoc(), Record);
448}
449void TypeLocWriter::VisitEnumTypeLoc(EnumTypeLoc TL) {
450 Writer.AddSourceLocation(TL.getNameLoc(), Record);
451}
John McCall17001972009-10-18 01:05:36 +0000452void TypeLocWriter::VisitTemplateTypeParmTypeLoc(TemplateTypeParmTypeLoc TL) {
453 Writer.AddSourceLocation(TL.getNameLoc(), Record);
454}
John McCallcebee162009-10-18 09:09:24 +0000455void TypeLocWriter::VisitSubstTemplateTypeParmTypeLoc(
456 SubstTemplateTypeParmTypeLoc TL) {
457 Writer.AddSourceLocation(TL.getNameLoc(), Record);
458}
John McCall17001972009-10-18 01:05:36 +0000459void TypeLocWriter::VisitTemplateSpecializationTypeLoc(
460 TemplateSpecializationTypeLoc TL) {
John McCall0ad16662009-10-29 08:12:44 +0000461 Writer.AddSourceLocation(TL.getTemplateNameLoc(), Record);
462 Writer.AddSourceLocation(TL.getLAngleLoc(), Record);
463 Writer.AddSourceLocation(TL.getRAngleLoc(), Record);
464 for (unsigned i = 0, e = TL.getNumArgs(); i != e; ++i)
Argyrios Kyrtzidisae85e242010-06-22 09:54:59 +0000465 Writer.AddTemplateArgumentLocInfo(TL.getArgLoc(i).getArgument().getKind(),
466 TL.getArgLoc(i).getLocInfo(), Record);
John McCall17001972009-10-18 01:05:36 +0000467}
Abramo Bagnara6150c882010-05-11 21:36:43 +0000468void TypeLocWriter::VisitElaboratedTypeLoc(ElaboratedTypeLoc TL) {
Abramo Bagnarad7548482010-05-19 21:37:53 +0000469 Writer.AddSourceLocation(TL.getKeywordLoc(), Record);
470 Writer.AddSourceRange(TL.getQualifierRange(), Record);
John McCall17001972009-10-18 01:05:36 +0000471}
John McCalle78aac42010-03-10 03:28:59 +0000472void TypeLocWriter::VisitInjectedClassNameTypeLoc(InjectedClassNameTypeLoc TL) {
473 Writer.AddSourceLocation(TL.getNameLoc(), Record);
474}
Douglas Gregorc1d2d8a2010-03-31 17:34:00 +0000475void TypeLocWriter::VisitDependentNameTypeLoc(DependentNameTypeLoc TL) {
Abramo Bagnarad7548482010-05-19 21:37:53 +0000476 Writer.AddSourceLocation(TL.getKeywordLoc(), Record);
477 Writer.AddSourceRange(TL.getQualifierRange(), Record);
John McCall17001972009-10-18 01:05:36 +0000478 Writer.AddSourceLocation(TL.getNameLoc(), Record);
479}
John McCallc392f372010-06-11 00:33:02 +0000480void TypeLocWriter::VisitDependentTemplateSpecializationTypeLoc(
481 DependentTemplateSpecializationTypeLoc TL) {
482 Writer.AddSourceLocation(TL.getKeywordLoc(), Record);
483 Writer.AddSourceRange(TL.getQualifierRange(), Record);
484 Writer.AddSourceLocation(TL.getNameLoc(), Record);
485 Writer.AddSourceLocation(TL.getLAngleLoc(), Record);
486 Writer.AddSourceLocation(TL.getRAngleLoc(), Record);
487 for (unsigned I = 0, E = TL.getNumArgs(); I != E; ++I)
Argyrios Kyrtzidisae85e242010-06-22 09:54:59 +0000488 Writer.AddTemplateArgumentLocInfo(TL.getArgLoc(I).getArgument().getKind(),
489 TL.getArgLoc(I).getLocInfo(), Record);
John McCallc392f372010-06-11 00:33:02 +0000490}
John McCall17001972009-10-18 01:05:36 +0000491void TypeLocWriter::VisitObjCInterfaceTypeLoc(ObjCInterfaceTypeLoc TL) {
492 Writer.AddSourceLocation(TL.getNameLoc(), Record);
John McCall8b07ec22010-05-15 11:32:37 +0000493}
494void TypeLocWriter::VisitObjCObjectTypeLoc(ObjCObjectTypeLoc TL) {
495 Record.push_back(TL.hasBaseTypeAsWritten());
John McCall17001972009-10-18 01:05:36 +0000496 Writer.AddSourceLocation(TL.getLAngleLoc(), Record);
497 Writer.AddSourceLocation(TL.getRAngleLoc(), Record);
498 for (unsigned i = 0, e = TL.getNumProtocols(); i != e; ++i)
499 Writer.AddSourceLocation(TL.getProtocolLoc(i), Record);
John McCall8f115c62009-10-16 21:56:05 +0000500}
John McCallfc93cf92009-10-22 22:37:11 +0000501void TypeLocWriter::VisitObjCObjectPointerTypeLoc(ObjCObjectPointerTypeLoc TL) {
502 Writer.AddSourceLocation(TL.getStarLoc(), Record);
John McCallfc93cf92009-10-22 22:37:11 +0000503}
John McCall8f115c62009-10-16 21:56:05 +0000504
Chris Lattner19cea4e2009-04-22 05:57:30 +0000505//===----------------------------------------------------------------------===//
Sebastian Redl55c0ad52010-08-18 23:56:21 +0000506// ASTWriter Implementation
Douglas Gregoref84c4b2009-04-09 22:27:44 +0000507//===----------------------------------------------------------------------===//
508
Chris Lattner28fa4e62009-04-26 22:26:21 +0000509static void EmitBlockID(unsigned ID, const char *Name,
510 llvm::BitstreamWriter &Stream,
Argyrios Kyrtzidiseb39d9a2010-10-24 17:26:40 +0000511 ASTWriter::RecordDataImpl &Record) {
Chris Lattner28fa4e62009-04-26 22:26:21 +0000512 Record.clear();
513 Record.push_back(ID);
514 Stream.EmitRecord(llvm::bitc::BLOCKINFO_CODE_SETBID, Record);
515
516 // Emit the block name if present.
517 if (Name == 0 || Name[0] == 0) return;
518 Record.clear();
519 while (*Name)
520 Record.push_back(*Name++);
521 Stream.EmitRecord(llvm::bitc::BLOCKINFO_CODE_BLOCKNAME, Record);
522}
523
524static void EmitRecordID(unsigned ID, const char *Name,
525 llvm::BitstreamWriter &Stream,
Argyrios Kyrtzidiseb39d9a2010-10-24 17:26:40 +0000526 ASTWriter::RecordDataImpl &Record) {
Chris Lattner28fa4e62009-04-26 22:26:21 +0000527 Record.clear();
528 Record.push_back(ID);
529 while (*Name)
530 Record.push_back(*Name++);
531 Stream.EmitRecord(llvm::bitc::BLOCKINFO_CODE_SETRECORDNAME, Record);
Chris Lattnerccac3a62009-04-27 00:49:53 +0000532}
533
534static void AddStmtsExprs(llvm::BitstreamWriter &Stream,
Argyrios Kyrtzidiseb39d9a2010-10-24 17:26:40 +0000535 ASTWriter::RecordDataImpl &Record) {
Sebastian Redl539c5062010-08-18 23:57:32 +0000536#define RECORD(X) EmitRecordID(X, #X, Stream, Record)
Chris Lattnerccac3a62009-04-27 00:49:53 +0000537 RECORD(STMT_STOP);
538 RECORD(STMT_NULL_PTR);
539 RECORD(STMT_NULL);
540 RECORD(STMT_COMPOUND);
541 RECORD(STMT_CASE);
542 RECORD(STMT_DEFAULT);
543 RECORD(STMT_LABEL);
544 RECORD(STMT_IF);
545 RECORD(STMT_SWITCH);
546 RECORD(STMT_WHILE);
547 RECORD(STMT_DO);
548 RECORD(STMT_FOR);
549 RECORD(STMT_GOTO);
550 RECORD(STMT_INDIRECT_GOTO);
551 RECORD(STMT_CONTINUE);
552 RECORD(STMT_BREAK);
553 RECORD(STMT_RETURN);
554 RECORD(STMT_DECL);
555 RECORD(STMT_ASM);
556 RECORD(EXPR_PREDEFINED);
557 RECORD(EXPR_DECL_REF);
558 RECORD(EXPR_INTEGER_LITERAL);
559 RECORD(EXPR_FLOATING_LITERAL);
560 RECORD(EXPR_IMAGINARY_LITERAL);
561 RECORD(EXPR_STRING_LITERAL);
562 RECORD(EXPR_CHARACTER_LITERAL);
563 RECORD(EXPR_PAREN);
564 RECORD(EXPR_UNARY_OPERATOR);
565 RECORD(EXPR_SIZEOF_ALIGN_OF);
566 RECORD(EXPR_ARRAY_SUBSCRIPT);
567 RECORD(EXPR_CALL);
568 RECORD(EXPR_MEMBER);
569 RECORD(EXPR_BINARY_OPERATOR);
570 RECORD(EXPR_COMPOUND_ASSIGN_OPERATOR);
571 RECORD(EXPR_CONDITIONAL_OPERATOR);
572 RECORD(EXPR_IMPLICIT_CAST);
573 RECORD(EXPR_CSTYLE_CAST);
574 RECORD(EXPR_COMPOUND_LITERAL);
575 RECORD(EXPR_EXT_VECTOR_ELEMENT);
576 RECORD(EXPR_INIT_LIST);
577 RECORD(EXPR_DESIGNATED_INIT);
578 RECORD(EXPR_IMPLICIT_VALUE_INIT);
579 RECORD(EXPR_VA_ARG);
580 RECORD(EXPR_ADDR_LABEL);
581 RECORD(EXPR_STMT);
582 RECORD(EXPR_TYPES_COMPATIBLE);
583 RECORD(EXPR_CHOOSE);
584 RECORD(EXPR_GNU_NULL);
585 RECORD(EXPR_SHUFFLE_VECTOR);
586 RECORD(EXPR_BLOCK);
587 RECORD(EXPR_BLOCK_DECL_REF);
588 RECORD(EXPR_OBJC_STRING_LITERAL);
589 RECORD(EXPR_OBJC_ENCODE);
590 RECORD(EXPR_OBJC_SELECTOR_EXPR);
591 RECORD(EXPR_OBJC_PROTOCOL_EXPR);
592 RECORD(EXPR_OBJC_IVAR_REF_EXPR);
593 RECORD(EXPR_OBJC_PROPERTY_REF_EXPR);
594 RECORD(EXPR_OBJC_KVC_REF_EXPR);
595 RECORD(EXPR_OBJC_MESSAGE_EXPR);
Chris Lattnerccac3a62009-04-27 00:49:53 +0000596 RECORD(STMT_OBJC_FOR_COLLECTION);
597 RECORD(STMT_OBJC_CATCH);
598 RECORD(STMT_OBJC_FINALLY);
599 RECORD(STMT_OBJC_AT_TRY);
600 RECORD(STMT_OBJC_AT_SYNCHRONIZED);
601 RECORD(STMT_OBJC_AT_THROW);
Sam Weinige83b3ac2010-02-07 06:32:43 +0000602 RECORD(EXPR_CXX_OPERATOR_CALL);
603 RECORD(EXPR_CXX_CONSTRUCT);
604 RECORD(EXPR_CXX_STATIC_CAST);
605 RECORD(EXPR_CXX_DYNAMIC_CAST);
606 RECORD(EXPR_CXX_REINTERPRET_CAST);
607 RECORD(EXPR_CXX_CONST_CAST);
608 RECORD(EXPR_CXX_FUNCTIONAL_CAST);
609 RECORD(EXPR_CXX_BOOL_LITERAL);
610 RECORD(EXPR_CXX_NULL_PTR_LITERAL);
Chris Lattnerccac3a62009-04-27 00:49:53 +0000611#undef RECORD
Chris Lattner28fa4e62009-04-26 22:26:21 +0000612}
Mike Stump11289f42009-09-09 15:08:12 +0000613
Sebastian Redl55c0ad52010-08-18 23:56:21 +0000614void ASTWriter::WriteBlockInfoBlock() {
Chris Lattner28fa4e62009-04-26 22:26:21 +0000615 RecordData Record;
616 Stream.EnterSubblock(llvm::bitc::BLOCKINFO_BLOCK_ID, 3);
Mike Stump11289f42009-09-09 15:08:12 +0000617
Sebastian Redl539c5062010-08-18 23:57:32 +0000618#define BLOCK(X) EmitBlockID(X ## _ID, #X, Stream, Record)
619#define RECORD(X) EmitRecordID(X, #X, Stream, Record)
Mike Stump11289f42009-09-09 15:08:12 +0000620
Sebastian Redl42a0f6a2010-08-18 23:56:27 +0000621 // AST Top-Level Block.
Sebastian Redlf1642042010-08-18 23:57:22 +0000622 BLOCK(AST_BLOCK);
Zhongxing Xub027cdf2009-06-03 09:23:28 +0000623 RECORD(ORIGINAL_FILE_NAME);
Chris Lattner28fa4e62009-04-26 22:26:21 +0000624 RECORD(TYPE_OFFSET);
625 RECORD(DECL_OFFSET);
626 RECORD(LANGUAGE_OPTIONS);
Douglas Gregor7b71e632009-04-27 22:23:34 +0000627 RECORD(METADATA);
Chris Lattner28fa4e62009-04-26 22:26:21 +0000628 RECORD(IDENTIFIER_OFFSET);
629 RECORD(IDENTIFIER_TABLE);
630 RECORD(EXTERNAL_DEFINITIONS);
631 RECORD(SPECIAL_TYPES);
632 RECORD(STATISTICS);
633 RECORD(TENTATIVE_DEFINITIONS);
Argyrios Kyrtzidis35672e72010-08-13 18:42:17 +0000634 RECORD(UNUSED_FILESCOPED_DECLS);
Chris Lattner28fa4e62009-04-26 22:26:21 +0000635 RECORD(LOCALLY_SCOPED_EXTERNAL_DECLS);
636 RECORD(SELECTOR_OFFSETS);
637 RECORD(METHOD_POOL);
638 RECORD(PP_COUNTER_VALUE);
Douglas Gregor258ae542009-04-27 06:38:32 +0000639 RECORD(SOURCE_LOCATION_OFFSETS);
640 RECORD(SOURCE_LOCATION_PRELOADS);
Douglas Gregorc5046832009-04-27 18:38:38 +0000641 RECORD(STAT_CACHE);
Douglas Gregor61cac2b2009-04-27 20:06:05 +0000642 RECORD(EXT_VECTOR_DECLS);
Ted Kremenek17437132010-01-22 20:59:36 +0000643 RECORD(VERSION_CONTROL_BRANCH_REVISION);
Douglas Gregoraae92242010-03-19 21:51:54 +0000644 RECORD(MACRO_DEFINITION_OFFSETS);
Sebastian Redl595c5132010-07-08 22:01:51 +0000645 RECORD(CHAINED_METADATA);
Fariborz Jahanianc51609a2010-07-23 19:11:11 +0000646 RECORD(REFERENCED_SELECTOR_POOL);
Michael J. Spencer4c0ffa82010-10-21 03:16:25 +0000647
Chris Lattner28fa4e62009-04-26 22:26:21 +0000648 // SourceManager Block.
Chris Lattner64031982009-04-27 00:40:25 +0000649 BLOCK(SOURCE_MANAGER_BLOCK);
Chris Lattner28fa4e62009-04-26 22:26:21 +0000650 RECORD(SM_SLOC_FILE_ENTRY);
651 RECORD(SM_SLOC_BUFFER_ENTRY);
652 RECORD(SM_SLOC_BUFFER_BLOB);
653 RECORD(SM_SLOC_INSTANTIATION_ENTRY);
654 RECORD(SM_LINE_TABLE);
Mike Stump11289f42009-09-09 15:08:12 +0000655
Chris Lattner28fa4e62009-04-26 22:26:21 +0000656 // Preprocessor Block.
Chris Lattner64031982009-04-27 00:40:25 +0000657 BLOCK(PREPROCESSOR_BLOCK);
Chris Lattner28fa4e62009-04-26 22:26:21 +0000658 RECORD(PP_MACRO_OBJECT_LIKE);
659 RECORD(PP_MACRO_FUNCTION_LIKE);
660 RECORD(PP_TOKEN);
Douglas Gregoraae92242010-03-19 21:51:54 +0000661 RECORD(PP_MACRO_INSTANTIATION);
662 RECORD(PP_MACRO_DEFINITION);
Michael J. Spencer4c0ffa82010-10-21 03:16:25 +0000663
Douglas Gregor12bfa382009-10-17 00:13:19 +0000664 // Decls and Types block.
665 BLOCK(DECLTYPES_BLOCK);
Chris Lattner28fa4e62009-04-26 22:26:21 +0000666 RECORD(TYPE_EXT_QUAL);
Chris Lattner28fa4e62009-04-26 22:26:21 +0000667 RECORD(TYPE_COMPLEX);
668 RECORD(TYPE_POINTER);
669 RECORD(TYPE_BLOCK_POINTER);
670 RECORD(TYPE_LVALUE_REFERENCE);
671 RECORD(TYPE_RVALUE_REFERENCE);
672 RECORD(TYPE_MEMBER_POINTER);
673 RECORD(TYPE_CONSTANT_ARRAY);
674 RECORD(TYPE_INCOMPLETE_ARRAY);
675 RECORD(TYPE_VARIABLE_ARRAY);
676 RECORD(TYPE_VECTOR);
677 RECORD(TYPE_EXT_VECTOR);
678 RECORD(TYPE_FUNCTION_PROTO);
679 RECORD(TYPE_FUNCTION_NO_PROTO);
680 RECORD(TYPE_TYPEDEF);
681 RECORD(TYPE_TYPEOF_EXPR);
682 RECORD(TYPE_TYPEOF);
683 RECORD(TYPE_RECORD);
684 RECORD(TYPE_ENUM);
685 RECORD(TYPE_OBJC_INTERFACE);
John McCall94f619a2010-05-16 02:12:35 +0000686 RECORD(TYPE_OBJC_OBJECT);
Steve Narofffb4330f2009-06-17 22:40:22 +0000687 RECORD(TYPE_OBJC_OBJECT_POINTER);
Chris Lattnerdb397b62009-04-26 22:32:16 +0000688 RECORD(DECL_TRANSLATION_UNIT);
689 RECORD(DECL_TYPEDEF);
690 RECORD(DECL_ENUM);
691 RECORD(DECL_RECORD);
692 RECORD(DECL_ENUM_CONSTANT);
693 RECORD(DECL_FUNCTION);
694 RECORD(DECL_OBJC_METHOD);
695 RECORD(DECL_OBJC_INTERFACE);
696 RECORD(DECL_OBJC_PROTOCOL);
697 RECORD(DECL_OBJC_IVAR);
698 RECORD(DECL_OBJC_AT_DEFS_FIELD);
699 RECORD(DECL_OBJC_CLASS);
700 RECORD(DECL_OBJC_FORWARD_PROTOCOL);
701 RECORD(DECL_OBJC_CATEGORY);
702 RECORD(DECL_OBJC_CATEGORY_IMPL);
703 RECORD(DECL_OBJC_IMPLEMENTATION);
704 RECORD(DECL_OBJC_COMPATIBLE_ALIAS);
705 RECORD(DECL_OBJC_PROPERTY);
706 RECORD(DECL_OBJC_PROPERTY_IMPL);
Chris Lattner28fa4e62009-04-26 22:26:21 +0000707 RECORD(DECL_FIELD);
708 RECORD(DECL_VAR);
Chris Lattnerdb397b62009-04-26 22:32:16 +0000709 RECORD(DECL_IMPLICIT_PARAM);
Chris Lattner28fa4e62009-04-26 22:26:21 +0000710 RECORD(DECL_PARM_VAR);
Chris Lattnerdb397b62009-04-26 22:32:16 +0000711 RECORD(DECL_FILE_SCOPE_ASM);
712 RECORD(DECL_BLOCK);
713 RECORD(DECL_CONTEXT_LEXICAL);
714 RECORD(DECL_CONTEXT_VISIBLE);
Douglas Gregor12bfa382009-10-17 00:13:19 +0000715 // Statements and Exprs can occur in the Decls and Types block.
Chris Lattnerccac3a62009-04-27 00:49:53 +0000716 AddStmtsExprs(Stream, Record);
Chris Lattner28fa4e62009-04-26 22:26:21 +0000717#undef RECORD
718#undef BLOCK
719 Stream.ExitBlock();
720}
721
Douglas Gregor0086a5a2009-07-07 00:12:59 +0000722/// \brief Adjusts the given filename to only write out the portion of the
723/// filename that is not part of the system root directory.
Mike Stump11289f42009-09-09 15:08:12 +0000724///
Douglas Gregor0086a5a2009-07-07 00:12:59 +0000725/// \param Filename the file name to adjust.
726///
727/// \param isysroot When non-NULL, the PCH file is a relocatable PCH file and
728/// the returned filename will be adjusted by this system root.
729///
730/// \returns either the original filename (if it needs no adjustment) or the
731/// adjusted filename (which points into the @p Filename parameter).
Mike Stump11289f42009-09-09 15:08:12 +0000732static const char *
Douglas Gregor0086a5a2009-07-07 00:12:59 +0000733adjustFilenameForRelocatablePCH(const char *Filename, const char *isysroot) {
734 assert(Filename && "No file name to adjust?");
Mike Stump11289f42009-09-09 15:08:12 +0000735
Douglas Gregor0086a5a2009-07-07 00:12:59 +0000736 if (!isysroot)
737 return Filename;
Mike Stump11289f42009-09-09 15:08:12 +0000738
Douglas Gregor0086a5a2009-07-07 00:12:59 +0000739 // Verify that the filename and the system root have the same prefix.
740 unsigned Pos = 0;
741 for (; Filename[Pos] && isysroot[Pos]; ++Pos)
742 if (Filename[Pos] != isysroot[Pos])
743 return Filename; // Prefixes don't match.
Mike Stump11289f42009-09-09 15:08:12 +0000744
Douglas Gregor0086a5a2009-07-07 00:12:59 +0000745 // We hit the end of the filename before we hit the end of the system root.
746 if (!Filename[Pos])
747 return Filename;
Mike Stump11289f42009-09-09 15:08:12 +0000748
Douglas Gregor0086a5a2009-07-07 00:12:59 +0000749 // If the file name has a '/' at the current position, skip over the '/'.
750 // We distinguish sysroot-based includes from absolute includes by the
751 // absence of '/' at the beginning of sysroot-based includes.
752 if (Filename[Pos] == '/')
753 ++Pos;
Mike Stump11289f42009-09-09 15:08:12 +0000754
Douglas Gregor0086a5a2009-07-07 00:12:59 +0000755 return Filename + Pos;
756}
Chris Lattner28fa4e62009-04-26 22:26:21 +0000757
Sebastian Redl42a0f6a2010-08-18 23:56:27 +0000758/// \brief Write the AST metadata (e.g., i686-apple-darwin9).
Sebastian Redl55c0ad52010-08-18 23:56:21 +0000759void ASTWriter::WriteMetadata(ASTContext &Context, const char *isysroot) {
Douglas Gregorbfbde532009-04-10 21:16:55 +0000760 using namespace llvm;
Douglas Gregor45fe0362009-05-12 01:31:05 +0000761
Douglas Gregor0086a5a2009-07-07 00:12:59 +0000762 // Metadata
763 const TargetInfo &Target = Context.Target;
764 BitCodeAbbrev *MetaAbbrev = new BitCodeAbbrev();
Sebastian Redl4d3af3e2010-07-09 21:00:24 +0000765 MetaAbbrev->Add(BitCodeAbbrevOp(
Sebastian Redl539c5062010-08-18 23:57:32 +0000766 Chain ? CHAINED_METADATA : METADATA));
Sebastian Redl42a0f6a2010-08-18 23:56:27 +0000767 MetaAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 16)); // AST major
768 MetaAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 16)); // AST minor
Douglas Gregor0086a5a2009-07-07 00:12:59 +0000769 MetaAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 16)); // Clang major
770 MetaAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 16)); // Clang minor
771 MetaAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // Relocatable
Sebastian Redl4d3af3e2010-07-09 21:00:24 +0000772 // Target triple or chained PCH name
773 MetaAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob));
Douglas Gregor0086a5a2009-07-07 00:12:59 +0000774 unsigned MetaAbbrevCode = Stream.EmitAbbrev(MetaAbbrev);
Mike Stump11289f42009-09-09 15:08:12 +0000775
Douglas Gregor0086a5a2009-07-07 00:12:59 +0000776 RecordData Record;
Sebastian Redl539c5062010-08-18 23:57:32 +0000777 Record.push_back(Chain ? CHAINED_METADATA : METADATA);
778 Record.push_back(VERSION_MAJOR);
779 Record.push_back(VERSION_MINOR);
Douglas Gregor0086a5a2009-07-07 00:12:59 +0000780 Record.push_back(CLANG_VERSION_MAJOR);
781 Record.push_back(CLANG_VERSION_MINOR);
782 Record.push_back(isysroot != 0);
Sebastian Redl4d3af3e2010-07-09 21:00:24 +0000783 // FIXME: This writes the absolute path for chained headers.
784 const std::string &BlobStr = Chain ? Chain->getFileName() : Target.getTriple().getTriple();
785 Stream.EmitRecordWithBlob(MetaAbbrevCode, Record, BlobStr);
Mike Stump11289f42009-09-09 15:08:12 +0000786
Douglas Gregor45fe0362009-05-12 01:31:05 +0000787 // Original file name
788 SourceManager &SM = Context.getSourceManager();
789 if (const FileEntry *MainFile = SM.getFileEntryForID(SM.getMainFileID())) {
790 BitCodeAbbrev *FileAbbrev = new BitCodeAbbrev();
Sebastian Redl539c5062010-08-18 23:57:32 +0000791 FileAbbrev->Add(BitCodeAbbrevOp(ORIGINAL_FILE_NAME));
Douglas Gregor45fe0362009-05-12 01:31:05 +0000792 FileAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // File name
793 unsigned FileAbbrevCode = Stream.EmitAbbrev(FileAbbrev);
794
795 llvm::sys::Path MainFilePath(MainFile->getName());
Mike Stump11289f42009-09-09 15:08:12 +0000796
Kovarththanan Rajaratnama9c81a82010-03-14 07:06:50 +0000797 MainFilePath.makeAbsolute();
Douglas Gregor45fe0362009-05-12 01:31:05 +0000798
Kovarththanan Rajaratnamd16d38c2010-03-14 07:15:57 +0000799 const char *MainFileNameStr = MainFilePath.c_str();
Mike Stump11289f42009-09-09 15:08:12 +0000800 MainFileNameStr = adjustFilenameForRelocatablePCH(MainFileNameStr,
Douglas Gregor0086a5a2009-07-07 00:12:59 +0000801 isysroot);
Douglas Gregor45fe0362009-05-12 01:31:05 +0000802 RecordData Record;
Sebastian Redl539c5062010-08-18 23:57:32 +0000803 Record.push_back(ORIGINAL_FILE_NAME);
Daniel Dunbar8100d012009-08-24 09:31:37 +0000804 Stream.EmitRecordWithBlob(FileAbbrevCode, Record, MainFileNameStr);
Douglas Gregor45fe0362009-05-12 01:31:05 +0000805 }
Kovarththanan Rajaratnama9c81a82010-03-14 07:06:50 +0000806
Ted Kremenek18e066f2010-01-22 22:12:47 +0000807 // Repository branch/version information.
808 BitCodeAbbrev *RepoAbbrev = new BitCodeAbbrev();
Sebastian Redl539c5062010-08-18 23:57:32 +0000809 RepoAbbrev->Add(BitCodeAbbrevOp(VERSION_CONTROL_BRANCH_REVISION));
Ted Kremenek18e066f2010-01-22 22:12:47 +0000810 RepoAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // SVN branch/tag
811 unsigned RepoAbbrevCode = Stream.EmitAbbrev(RepoAbbrev);
Douglas Gregord54f3a12009-10-05 21:07:28 +0000812 Record.clear();
Sebastian Redl539c5062010-08-18 23:57:32 +0000813 Record.push_back(VERSION_CONTROL_BRANCH_REVISION);
Ted Kremenek18e066f2010-01-22 22:12:47 +0000814 Stream.EmitRecordWithBlob(RepoAbbrevCode, Record,
815 getClangFullRepositoryVersion());
Douglas Gregorbfbde532009-04-10 21:16:55 +0000816}
817
818/// \brief Write the LangOptions structure.
Sebastian Redl55c0ad52010-08-18 23:56:21 +0000819void ASTWriter::WriteLanguageOptions(const LangOptions &LangOpts) {
Douglas Gregor55abb232009-04-10 20:39:37 +0000820 RecordData Record;
821 Record.push_back(LangOpts.Trigraphs);
822 Record.push_back(LangOpts.BCPLComment); // BCPL-style '//' comments.
823 Record.push_back(LangOpts.DollarIdents); // '$' allowed in identifiers.
824 Record.push_back(LangOpts.AsmPreprocessor); // Preprocessor in asm mode.
825 Record.push_back(LangOpts.GNUMode); // True in gnu99 mode false in c99 mode (etc)
Chandler Carruthe03aa552010-04-17 20:17:31 +0000826 Record.push_back(LangOpts.GNUKeywords); // Allow GNU-extension keywords
Douglas Gregor55abb232009-04-10 20:39:37 +0000827 Record.push_back(LangOpts.ImplicitInt); // C89 implicit 'int'.
828 Record.push_back(LangOpts.Digraphs); // C94, C99 and C++
829 Record.push_back(LangOpts.HexFloats); // C99 Hexadecimal float constants.
830 Record.push_back(LangOpts.C99); // C99 Support
831 Record.push_back(LangOpts.Microsoft); // Microsoft extensions.
Michael J. Spencer4992ca4b2010-10-21 05:21:48 +0000832 // LangOpts.MSCVersion is ignored because all it does it set a macro, which is
833 // already saved elsewhere.
Douglas Gregor55abb232009-04-10 20:39:37 +0000834 Record.push_back(LangOpts.CPlusPlus); // C++ Support
835 Record.push_back(LangOpts.CPlusPlus0x); // C++0x Support
Douglas Gregor55abb232009-04-10 20:39:37 +0000836 Record.push_back(LangOpts.CXXOperatorNames); // Treat C++ operator names as keywords.
Mike Stump11289f42009-09-09 15:08:12 +0000837
Douglas Gregor55abb232009-04-10 20:39:37 +0000838 Record.push_back(LangOpts.ObjC1); // Objective-C 1 support enabled.
839 Record.push_back(LangOpts.ObjC2); // Objective-C 2 support enabled.
Kovarththanan Rajaratnama9c81a82010-03-14 07:06:50 +0000840 Record.push_back(LangOpts.ObjCNonFragileABI); // Objective-C
Fariborz Jahanian45878032010-02-09 19:31:38 +0000841 // modern abi enabled.
Kovarththanan Rajaratnama9c81a82010-03-14 07:06:50 +0000842 Record.push_back(LangOpts.ObjCNonFragileABI2); // Objective-C enhanced
Fariborz Jahanian45878032010-02-09 19:31:38 +0000843 // modern abi enabled.
Fariborz Jahanian62c56022010-04-22 21:01:59 +0000844 Record.push_back(LangOpts.NoConstantCFStrings); // non cfstring generation enabled..
Mike Stump11289f42009-09-09 15:08:12 +0000845
Douglas Gregor55abb232009-04-10 20:39:37 +0000846 Record.push_back(LangOpts.PascalStrings); // Allow Pascal strings
Douglas Gregor55abb232009-04-10 20:39:37 +0000847 Record.push_back(LangOpts.WritableStrings); // Allow writable strings
848 Record.push_back(LangOpts.LaxVectorConversions);
Nate Begemanf2911662009-06-25 23:01:11 +0000849 Record.push_back(LangOpts.AltiVec);
Douglas Gregor55abb232009-04-10 20:39:37 +0000850 Record.push_back(LangOpts.Exceptions); // Support exception handling.
Daniel Dunbar925152c2010-02-10 18:48:44 +0000851 Record.push_back(LangOpts.SjLjExceptions);
Douglas Gregor55abb232009-04-10 20:39:37 +0000852
853 Record.push_back(LangOpts.NeXTRuntime); // Use NeXT runtime.
854 Record.push_back(LangOpts.Freestanding); // Freestanding implementation
855 Record.push_back(LangOpts.NoBuiltin); // Do not use builtin functions (-fno-builtin)
856
Chris Lattner258172e2009-04-27 07:35:58 +0000857 // Whether static initializers are protected by locks.
858 Record.push_back(LangOpts.ThreadsafeStatics);
Douglas Gregorb3286fe2009-09-03 14:36:33 +0000859 Record.push_back(LangOpts.POSIXThreads);
Douglas Gregor55abb232009-04-10 20:39:37 +0000860 Record.push_back(LangOpts.Blocks); // block extension to C
861 Record.push_back(LangOpts.EmitAllDecls); // Emit all declarations, even if
862 // they are unused.
863 Record.push_back(LangOpts.MathErrno); // Math functions must respect errno
864 // (modulo the platform support).
865
Chris Lattner51924e512010-06-26 21:25:03 +0000866 Record.push_back(LangOpts.getSignedOverflowBehavior());
867 Record.push_back(LangOpts.HeinousExtensions);
Douglas Gregor55abb232009-04-10 20:39:37 +0000868
869 Record.push_back(LangOpts.Optimize); // Whether __OPTIMIZE__ should be defined.
Mike Stump11289f42009-09-09 15:08:12 +0000870 Record.push_back(LangOpts.OptimizeSize); // Whether __OPTIMIZE_SIZE__ should be
Douglas Gregor55abb232009-04-10 20:39:37 +0000871 // defined.
872 Record.push_back(LangOpts.Static); // Should __STATIC__ be defined (as
873 // opposed to __DYNAMIC__).
874 Record.push_back(LangOpts.PICLevel); // The value for __PIC__, if non-zero.
875
876 Record.push_back(LangOpts.GNUInline); // Should GNU inline semantics be
877 // used (instead of C99 semantics).
878 Record.push_back(LangOpts.NoInline); // Should __NO_INLINE__ be defined.
Anders Carlsson5879fbd2009-05-13 19:49:53 +0000879 Record.push_back(LangOpts.AccessControl); // Whether C++ access control should
880 // be enabled.
Eli Friedman9ffd4a92009-06-05 07:05:05 +0000881 Record.push_back(LangOpts.CharIsSigned); // Whether char is a signed or
882 // unsigned type
John Thompsoned4e2952009-11-05 20:14:16 +0000883 Record.push_back(LangOpts.ShortWChar); // force wchar_t to be unsigned short
Douglas Gregor55abb232009-04-10 20:39:37 +0000884 Record.push_back(LangOpts.getGCMode());
885 Record.push_back(LangOpts.getVisibilityMode());
Daniel Dunbar143021e2009-09-21 04:16:19 +0000886 Record.push_back(LangOpts.getStackProtectorMode());
Douglas Gregor55abb232009-04-10 20:39:37 +0000887 Record.push_back(LangOpts.InstantiationDepth);
Nate Begemanf2911662009-06-25 23:01:11 +0000888 Record.push_back(LangOpts.OpenCL);
Mike Stumpd9546382009-12-12 01:27:46 +0000889 Record.push_back(LangOpts.CatchUndefined);
Anders Carlsson9cedbef2009-08-22 22:30:33 +0000890 Record.push_back(LangOpts.ElideConstructors);
Douglas Gregor8ed0c0b2010-07-09 17:35:33 +0000891 Record.push_back(LangOpts.SpellChecking);
Sebastian Redl539c5062010-08-18 23:57:32 +0000892 Stream.EmitRecord(LANGUAGE_OPTIONS, Record);
Douglas Gregor55abb232009-04-10 20:39:37 +0000893}
894
Douglas Gregora7f71a92009-04-10 03:52:48 +0000895//===----------------------------------------------------------------------===//
Douglas Gregorc5046832009-04-27 18:38:38 +0000896// stat cache Serialization
897//===----------------------------------------------------------------------===//
898
899namespace {
900// Trait used for the on-disk hash table of stat cache results.
Sebastian Redl42a0f6a2010-08-18 23:56:27 +0000901class ASTStatCacheTrait {
Douglas Gregorc5046832009-04-27 18:38:38 +0000902public:
903 typedef const char * key_type;
904 typedef key_type key_type_ref;
Mike Stump11289f42009-09-09 15:08:12 +0000905
Douglas Gregorc5046832009-04-27 18:38:38 +0000906 typedef std::pair<int, struct stat> data_type;
907 typedef const data_type& data_type_ref;
908
909 static unsigned ComputeHash(const char *path) {
Daniel Dunbarf8502d52009-10-17 23:52:28 +0000910 return llvm::HashString(path);
Douglas Gregorc5046832009-04-27 18:38:38 +0000911 }
Mike Stump11289f42009-09-09 15:08:12 +0000912
913 std::pair<unsigned,unsigned>
Douglas Gregorc5046832009-04-27 18:38:38 +0000914 EmitKeyDataLength(llvm::raw_ostream& Out, const char *path,
915 data_type_ref Data) {
916 unsigned StrLen = strlen(path);
917 clang::io::Emit16(Out, StrLen);
918 unsigned DataLen = 1; // result value
919 if (Data.first == 0)
920 DataLen += 4 + 4 + 2 + 8 + 8;
921 clang::io::Emit8(Out, DataLen);
922 return std::make_pair(StrLen + 1, DataLen);
923 }
Mike Stump11289f42009-09-09 15:08:12 +0000924
Douglas Gregorc5046832009-04-27 18:38:38 +0000925 void EmitKey(llvm::raw_ostream& Out, const char *path, unsigned KeyLen) {
926 Out.write(path, KeyLen);
927 }
Mike Stump11289f42009-09-09 15:08:12 +0000928
Douglas Gregorc5046832009-04-27 18:38:38 +0000929 void EmitData(llvm::raw_ostream& Out, key_type_ref,
930 data_type_ref Data, unsigned DataLen) {
931 using namespace clang::io;
932 uint64_t Start = Out.tell(); (void)Start;
Mike Stump11289f42009-09-09 15:08:12 +0000933
Douglas Gregorc5046832009-04-27 18:38:38 +0000934 // Result of stat()
935 Emit8(Out, Data.first? 1 : 0);
Mike Stump11289f42009-09-09 15:08:12 +0000936
Douglas Gregorc5046832009-04-27 18:38:38 +0000937 if (Data.first == 0) {
938 Emit32(Out, (uint32_t) Data.second.st_ino);
939 Emit32(Out, (uint32_t) Data.second.st_dev);
940 Emit16(Out, (uint16_t) Data.second.st_mode);
941 Emit64(Out, (uint64_t) Data.second.st_mtime);
942 Emit64(Out, (uint64_t) Data.second.st_size);
943 }
944
945 assert(Out.tell() - Start == DataLen && "Wrong data length");
946 }
947};
948} // end anonymous namespace
949
Sebastian Redl42a0f6a2010-08-18 23:56:27 +0000950/// \brief Write the stat() system call cache to the AST file.
Sebastian Redl55c0ad52010-08-18 23:56:21 +0000951void ASTWriter::WriteStatCache(MemorizeStatCalls &StatCalls) {
Douglas Gregorc5046832009-04-27 18:38:38 +0000952 // Build the on-disk hash table containing information about every
953 // stat() call.
Sebastian Redl42a0f6a2010-08-18 23:56:27 +0000954 OnDiskChainedHashTableGenerator<ASTStatCacheTrait> Generator;
Douglas Gregorc5046832009-04-27 18:38:38 +0000955 unsigned NumStatEntries = 0;
Mike Stump11289f42009-09-09 15:08:12 +0000956 for (MemorizeStatCalls::iterator Stat = StatCalls.begin(),
Douglas Gregorc5046832009-04-27 18:38:38 +0000957 StatEnd = StatCalls.end();
Douglas Gregor0086a5a2009-07-07 00:12:59 +0000958 Stat != StatEnd; ++Stat, ++NumStatEntries) {
959 const char *Filename = Stat->first();
Douglas Gregor0086a5a2009-07-07 00:12:59 +0000960 Generator.insert(Filename, Stat->second);
961 }
Mike Stump11289f42009-09-09 15:08:12 +0000962
Douglas Gregorc5046832009-04-27 18:38:38 +0000963 // Create the on-disk hash table in a buffer.
Mike Stump11289f42009-09-09 15:08:12 +0000964 llvm::SmallString<4096> StatCacheData;
Douglas Gregorc5046832009-04-27 18:38:38 +0000965 uint32_t BucketOffset;
966 {
967 llvm::raw_svector_ostream Out(StatCacheData);
968 // Make sure that no bucket is at offset 0
969 clang::io::Emit32(Out, 0);
970 BucketOffset = Generator.Emit(Out);
971 }
972
973 // Create a blob abbreviation
974 using namespace llvm;
975 BitCodeAbbrev *Abbrev = new BitCodeAbbrev();
Sebastian Redl539c5062010-08-18 23:57:32 +0000976 Abbrev->Add(BitCodeAbbrevOp(STAT_CACHE));
Douglas Gregorc5046832009-04-27 18:38:38 +0000977 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32));
978 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32));
979 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob));
980 unsigned StatCacheAbbrev = Stream.EmitAbbrev(Abbrev);
981
982 // Write the stat cache
983 RecordData Record;
Sebastian Redl539c5062010-08-18 23:57:32 +0000984 Record.push_back(STAT_CACHE);
Douglas Gregorc5046832009-04-27 18:38:38 +0000985 Record.push_back(BucketOffset);
986 Record.push_back(NumStatEntries);
Daniel Dunbar8100d012009-08-24 09:31:37 +0000987 Stream.EmitRecordWithBlob(StatCacheAbbrev, Record, StatCacheData.str());
Douglas Gregorc5046832009-04-27 18:38:38 +0000988}
989
990//===----------------------------------------------------------------------===//
Douglas Gregora7f71a92009-04-10 03:52:48 +0000991// Source Manager Serialization
992//===----------------------------------------------------------------------===//
993
994/// \brief Create an abbreviation for the SLocEntry that refers to a
995/// file.
Douglas Gregor8f45df52009-04-16 22:23:12 +0000996static unsigned CreateSLocFileAbbrev(llvm::BitstreamWriter &Stream) {
Douglas Gregora7f71a92009-04-10 03:52:48 +0000997 using namespace llvm;
998 BitCodeAbbrev *Abbrev = new BitCodeAbbrev();
Sebastian Redl539c5062010-08-18 23:57:32 +0000999 Abbrev->Add(BitCodeAbbrevOp(SM_SLOC_FILE_ENTRY));
Douglas Gregora7f71a92009-04-10 03:52:48 +00001000 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // Offset
1001 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // Include location
1002 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 2)); // Characteristic
1003 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // Line directives
Douglas Gregorb41ca8f2010-03-21 22:49:54 +00001004 // FileEntry fields.
1005 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 12)); // Size
1006 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 32)); // Modification time
Douglas Gregor5712ebc2010-03-16 16:35:32 +00001007 // HeaderFileInfo fields.
1008 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // isImport
1009 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 2)); // DirInfo
1010 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // NumIncludes
1011 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // ControllingMacro
Douglas Gregora7f71a92009-04-10 03:52:48 +00001012 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // File name
Douglas Gregor8f45df52009-04-16 22:23:12 +00001013 return Stream.EmitAbbrev(Abbrev);
Douglas Gregora7f71a92009-04-10 03:52:48 +00001014}
1015
1016/// \brief Create an abbreviation for the SLocEntry that refers to a
1017/// buffer.
Douglas Gregor8f45df52009-04-16 22:23:12 +00001018static unsigned CreateSLocBufferAbbrev(llvm::BitstreamWriter &Stream) {
Douglas Gregora7f71a92009-04-10 03:52:48 +00001019 using namespace llvm;
1020 BitCodeAbbrev *Abbrev = new BitCodeAbbrev();
Sebastian Redl539c5062010-08-18 23:57:32 +00001021 Abbrev->Add(BitCodeAbbrevOp(SM_SLOC_BUFFER_ENTRY));
Douglas Gregora7f71a92009-04-10 03:52:48 +00001022 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // Offset
1023 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // Include location
1024 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 2)); // Characteristic
1025 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // Line directives
1026 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // Buffer name blob
Douglas Gregor8f45df52009-04-16 22:23:12 +00001027 return Stream.EmitAbbrev(Abbrev);
Douglas Gregora7f71a92009-04-10 03:52:48 +00001028}
1029
1030/// \brief Create an abbreviation for the SLocEntry that refers to a
1031/// buffer's blob.
Douglas Gregor8f45df52009-04-16 22:23:12 +00001032static unsigned CreateSLocBufferBlobAbbrev(llvm::BitstreamWriter &Stream) {
Douglas Gregora7f71a92009-04-10 03:52:48 +00001033 using namespace llvm;
1034 BitCodeAbbrev *Abbrev = new BitCodeAbbrev();
Sebastian Redl539c5062010-08-18 23:57:32 +00001035 Abbrev->Add(BitCodeAbbrevOp(SM_SLOC_BUFFER_BLOB));
Douglas Gregora7f71a92009-04-10 03:52:48 +00001036 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // Blob
Douglas Gregor8f45df52009-04-16 22:23:12 +00001037 return Stream.EmitAbbrev(Abbrev);
Douglas Gregora7f71a92009-04-10 03:52:48 +00001038}
1039
1040/// \brief Create an abbreviation for the SLocEntry that refers to an
1041/// buffer.
Douglas Gregor8f45df52009-04-16 22:23:12 +00001042static unsigned CreateSLocInstantiationAbbrev(llvm::BitstreamWriter &Stream) {
Douglas Gregora7f71a92009-04-10 03:52:48 +00001043 using namespace llvm;
1044 BitCodeAbbrev *Abbrev = new BitCodeAbbrev();
Sebastian Redl539c5062010-08-18 23:57:32 +00001045 Abbrev->Add(BitCodeAbbrevOp(SM_SLOC_INSTANTIATION_ENTRY));
Douglas Gregora7f71a92009-04-10 03:52:48 +00001046 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // Offset
1047 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // Spelling location
1048 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // Start location
1049 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // End location
Douglas Gregor83243272009-04-15 18:05:10 +00001050 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // Token length
Douglas Gregor8f45df52009-04-16 22:23:12 +00001051 return Stream.EmitAbbrev(Abbrev);
Douglas Gregora7f71a92009-04-10 03:52:48 +00001052}
1053
1054/// \brief Writes the block containing the serialized form of the
1055/// source manager.
1056///
1057/// TODO: We should probably use an on-disk hash table (stored in a
1058/// blob), indexed based on the file name, so that we only create
1059/// entries for files that we actually need. In the common case (no
1060/// errors), we probably won't have to create file entries for any of
1061/// the files in the AST.
Sebastian Redl55c0ad52010-08-18 23:56:21 +00001062void ASTWriter::WriteSourceManagerBlock(SourceManager &SourceMgr,
Douglas Gregor0086a5a2009-07-07 00:12:59 +00001063 const Preprocessor &PP,
1064 const char *isysroot) {
Douglas Gregor258ae542009-04-27 06:38:32 +00001065 RecordData Record;
1066
Chris Lattner0910e3b2009-04-10 17:16:57 +00001067 // Enter the source manager block.
Sebastian Redl539c5062010-08-18 23:57:32 +00001068 Stream.EnterSubblock(SOURCE_MANAGER_BLOCK_ID, 3);
Douglas Gregora7f71a92009-04-10 03:52:48 +00001069
1070 // Abbreviations for the various kinds of source-location entries.
Chris Lattnerc4976c732009-04-27 19:03:22 +00001071 unsigned SLocFileAbbrv = CreateSLocFileAbbrev(Stream);
1072 unsigned SLocBufferAbbrv = CreateSLocBufferAbbrev(Stream);
1073 unsigned SLocBufferBlobAbbrv = CreateSLocBufferBlobAbbrev(Stream);
1074 unsigned SLocInstantiationAbbrv = CreateSLocInstantiationAbbrev(Stream);
Douglas Gregora7f71a92009-04-10 03:52:48 +00001075
Douglas Gregor4c7626e2009-04-13 16:31:14 +00001076 // Write the line table.
1077 if (SourceMgr.hasLineTable()) {
1078 LineTableInfo &LineTable = SourceMgr.getLineTable();
1079
1080 // Emit the file names
1081 Record.push_back(LineTable.getNumFilenames());
1082 for (unsigned I = 0, N = LineTable.getNumFilenames(); I != N; ++I) {
1083 // Emit the file name
1084 const char *Filename = LineTable.getFilename(I);
Douglas Gregor0086a5a2009-07-07 00:12:59 +00001085 Filename = adjustFilenameForRelocatablePCH(Filename, isysroot);
Douglas Gregor4c7626e2009-04-13 16:31:14 +00001086 unsigned FilenameLen = Filename? strlen(Filename) : 0;
1087 Record.push_back(FilenameLen);
1088 if (FilenameLen)
1089 Record.insert(Record.end(), Filename, Filename + FilenameLen);
1090 }
Mike Stump11289f42009-09-09 15:08:12 +00001091
Douglas Gregor4c7626e2009-04-13 16:31:14 +00001092 // Emit the line entries
1093 for (LineTableInfo::iterator L = LineTable.begin(), LEnd = LineTable.end();
1094 L != LEnd; ++L) {
1095 // Emit the file ID
1096 Record.push_back(L->first);
Mike Stump11289f42009-09-09 15:08:12 +00001097
Douglas Gregor4c7626e2009-04-13 16:31:14 +00001098 // Emit the line entries
1099 Record.push_back(L->second.size());
Mike Stump11289f42009-09-09 15:08:12 +00001100 for (std::vector<LineEntry>::iterator LE = L->second.begin(),
Douglas Gregor4c7626e2009-04-13 16:31:14 +00001101 LEEnd = L->second.end();
1102 LE != LEEnd; ++LE) {
1103 Record.push_back(LE->FileOffset);
1104 Record.push_back(LE->LineNo);
1105 Record.push_back(LE->FilenameID);
1106 Record.push_back((unsigned)LE->FileKind);
1107 Record.push_back(LE->IncludeOffset);
1108 }
Douglas Gregor4c7626e2009-04-13 16:31:14 +00001109 }
Sebastian Redl539c5062010-08-18 23:57:32 +00001110 Stream.EmitRecord(SM_LINE_TABLE, Record);
Douglas Gregor4c7626e2009-04-13 16:31:14 +00001111 }
1112
Douglas Gregor258ae542009-04-27 06:38:32 +00001113 // Write out the source location entry table. We skip the first
1114 // entry, which is always the same dummy entry.
Chris Lattner12d61d32009-04-27 19:01:47 +00001115 std::vector<uint32_t> SLocEntryOffsets;
Douglas Gregor258ae542009-04-27 06:38:32 +00001116 RecordData PreloadSLocs;
Sebastian Redl5c415f32010-07-22 17:01:13 +00001117 unsigned BaseSLocID = Chain ? Chain->getTotalNumSLocs() : 0;
1118 SLocEntryOffsets.reserve(SourceMgr.sloc_entry_size() - 1 - BaseSLocID);
1119 for (unsigned I = BaseSLocID + 1, N = SourceMgr.sloc_entry_size();
1120 I != N; ++I) {
Douglas Gregor8655e882009-10-16 22:46:09 +00001121 // Get this source location entry.
1122 const SrcMgr::SLocEntry *SLoc = &SourceMgr.getSLocEntry(I);
Kovarththanan Rajaratnama9c81a82010-03-14 07:06:50 +00001123
Douglas Gregor258ae542009-04-27 06:38:32 +00001124 // Record the offset of this source-location entry.
1125 SLocEntryOffsets.push_back(Stream.GetCurrentBitNo());
1126
1127 // Figure out which record code to use.
1128 unsigned Code;
1129 if (SLoc->isFile()) {
1130 if (SLoc->getFile().getContentCache()->Entry)
Sebastian Redl539c5062010-08-18 23:57:32 +00001131 Code = SM_SLOC_FILE_ENTRY;
Douglas Gregor258ae542009-04-27 06:38:32 +00001132 else
Sebastian Redl539c5062010-08-18 23:57:32 +00001133 Code = SM_SLOC_BUFFER_ENTRY;
Douglas Gregor258ae542009-04-27 06:38:32 +00001134 } else
Sebastian Redl539c5062010-08-18 23:57:32 +00001135 Code = SM_SLOC_INSTANTIATION_ENTRY;
Douglas Gregor258ae542009-04-27 06:38:32 +00001136 Record.clear();
1137 Record.push_back(Code);
1138
1139 Record.push_back(SLoc->getOffset());
1140 if (SLoc->isFile()) {
1141 const SrcMgr::FileInfo &File = SLoc->getFile();
1142 Record.push_back(File.getIncludeLoc().getRawEncoding());
1143 Record.push_back(File.getFileCharacteristic()); // FIXME: stable encoding
1144 Record.push_back(File.hasLineDirectives());
1145
1146 const SrcMgr::ContentCache *Content = File.getContentCache();
1147 if (Content->Entry) {
1148 // The source location entry is a file. The blob associated
1149 // with this entry is the file name.
Mike Stump11289f42009-09-09 15:08:12 +00001150
Douglas Gregorb41ca8f2010-03-21 22:49:54 +00001151 // Emit size/modification time for this file.
1152 Record.push_back(Content->Entry->getSize());
1153 Record.push_back(Content->Entry->getModificationTime());
1154
Douglas Gregor5712ebc2010-03-16 16:35:32 +00001155 // Emit header-search information associated with this file.
1156 HeaderFileInfo HFI;
1157 HeaderSearch &HS = PP.getHeaderSearchInfo();
1158 if (Content->Entry->getUID() < HS.header_file_size())
1159 HFI = HS.header_file_begin()[Content->Entry->getUID()];
1160 Record.push_back(HFI.isImport);
1161 Record.push_back(HFI.DirInfo);
1162 Record.push_back(HFI.NumIncludes);
1163 AddIdentifierRef(HFI.ControllingMacro, Record);
1164
Douglas Gregor0086a5a2009-07-07 00:12:59 +00001165 // Turn the file name into an absolute path, if it isn't already.
1166 const char *Filename = Content->Entry->getName();
1167 llvm::sys::Path FilePath(Filename, strlen(Filename));
Kovarththanan Rajaratnama9c81a82010-03-14 07:06:50 +00001168 FilePath.makeAbsolute();
Kovarththanan Rajaratnamd16d38c2010-03-14 07:15:57 +00001169 Filename = FilePath.c_str();
Mike Stump11289f42009-09-09 15:08:12 +00001170
Douglas Gregor0086a5a2009-07-07 00:12:59 +00001171 Filename = adjustFilenameForRelocatablePCH(Filename, isysroot);
Daniel Dunbar8100d012009-08-24 09:31:37 +00001172 Stream.EmitRecordWithBlob(SLocFileAbbrv, Record, Filename);
Douglas Gregor258ae542009-04-27 06:38:32 +00001173
1174 // FIXME: For now, preload all file source locations, so that
1175 // we get the appropriate File entries in the reader. This is
1176 // a temporary measure.
Sebastian Redl5c415f32010-07-22 17:01:13 +00001177 PreloadSLocs.push_back(BaseSLocID + SLocEntryOffsets.size());
Douglas Gregor258ae542009-04-27 06:38:32 +00001178 } else {
1179 // The source location entry is a buffer. The blob associated
1180 // with this entry contains the contents of the buffer.
1181
1182 // We add one to the size so that we capture the trailing NULL
1183 // that is required by llvm::MemoryBuffer::getMemBuffer (on
1184 // the reader side).
Douglas Gregor874cc622010-03-16 00:35:39 +00001185 const llvm::MemoryBuffer *Buffer
Chris Lattnerfb24a3a2010-04-20 20:35:58 +00001186 = Content->getBuffer(PP.getDiagnostics(), PP.getSourceManager());
Douglas Gregor258ae542009-04-27 06:38:32 +00001187 const char *Name = Buffer->getBufferIdentifier();
Daniel Dunbar8100d012009-08-24 09:31:37 +00001188 Stream.EmitRecordWithBlob(SLocBufferAbbrv, Record,
1189 llvm::StringRef(Name, strlen(Name) + 1));
Douglas Gregor258ae542009-04-27 06:38:32 +00001190 Record.clear();
Sebastian Redl539c5062010-08-18 23:57:32 +00001191 Record.push_back(SM_SLOC_BUFFER_BLOB);
Douglas Gregor258ae542009-04-27 06:38:32 +00001192 Stream.EmitRecordWithBlob(SLocBufferBlobAbbrv, Record,
Daniel Dunbar8100d012009-08-24 09:31:37 +00001193 llvm::StringRef(Buffer->getBufferStart(),
1194 Buffer->getBufferSize() + 1));
Douglas Gregor258ae542009-04-27 06:38:32 +00001195
1196 if (strcmp(Name, "<built-in>") == 0)
Sebastian Redl5c415f32010-07-22 17:01:13 +00001197 PreloadSLocs.push_back(BaseSLocID + SLocEntryOffsets.size());
Douglas Gregor258ae542009-04-27 06:38:32 +00001198 }
1199 } else {
1200 // The source location entry is an instantiation.
1201 const SrcMgr::InstantiationInfo &Inst = SLoc->getInstantiation();
1202 Record.push_back(Inst.getSpellingLoc().getRawEncoding());
1203 Record.push_back(Inst.getInstantiationLocStart().getRawEncoding());
1204 Record.push_back(Inst.getInstantiationLocEnd().getRawEncoding());
1205
1206 // Compute the token length for this macro expansion.
1207 unsigned NextOffset = SourceMgr.getNextOffset();
Douglas Gregor8655e882009-10-16 22:46:09 +00001208 if (I + 1 != N)
1209 NextOffset = SourceMgr.getSLocEntry(I + 1).getOffset();
Douglas Gregor258ae542009-04-27 06:38:32 +00001210 Record.push_back(NextOffset - SLoc->getOffset() - 1);
1211 Stream.EmitRecordWithAbbrev(SLocInstantiationAbbrv, Record);
1212 }
1213 }
1214
Douglas Gregor8f45df52009-04-16 22:23:12 +00001215 Stream.ExitBlock();
Douglas Gregor258ae542009-04-27 06:38:32 +00001216
1217 if (SLocEntryOffsets.empty())
1218 return;
1219
Sebastian Redl42a0f6a2010-08-18 23:56:27 +00001220 // Write the source-location offsets table into the AST block. This
Douglas Gregor258ae542009-04-27 06:38:32 +00001221 // table is used for lazily loading source-location information.
1222 using namespace llvm;
1223 BitCodeAbbrev *Abbrev = new BitCodeAbbrev();
Sebastian Redl539c5062010-08-18 23:57:32 +00001224 Abbrev->Add(BitCodeAbbrevOp(SOURCE_LOCATION_OFFSETS));
Douglas Gregor258ae542009-04-27 06:38:32 +00001225 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 16)); // # of slocs
1226 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 16)); // next offset
1227 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // offsets
1228 unsigned SLocOffsetsAbbrev = Stream.EmitAbbrev(Abbrev);
Mike Stump11289f42009-09-09 15:08:12 +00001229
Douglas Gregor258ae542009-04-27 06:38:32 +00001230 Record.clear();
Sebastian Redl539c5062010-08-18 23:57:32 +00001231 Record.push_back(SOURCE_LOCATION_OFFSETS);
Douglas Gregor258ae542009-04-27 06:38:32 +00001232 Record.push_back(SLocEntryOffsets.size());
Sebastian Redlc1d035f2010-09-22 20:19:08 +00001233 unsigned BaseOffset = Chain ? Chain->getNextSLocOffset() : 0;
1234 Record.push_back(SourceMgr.getNextOffset() - BaseOffset);
Douglas Gregor258ae542009-04-27 06:38:32 +00001235 Stream.EmitRecordWithBlob(SLocOffsetsAbbrev, Record,
Sebastian Redl3df5a082010-07-30 17:03:48 +00001236 (const char *)data(SLocEntryOffsets),
Chris Lattner12d61d32009-04-27 19:01:47 +00001237 SLocEntryOffsets.size()*sizeof(SLocEntryOffsets[0]));
Douglas Gregor258ae542009-04-27 06:38:32 +00001238
Sebastian Redl42a0f6a2010-08-18 23:56:27 +00001239 // Write the source location entry preloads array, telling the AST
Douglas Gregor258ae542009-04-27 06:38:32 +00001240 // reader which source locations entries it should load eagerly.
Sebastian Redl539c5062010-08-18 23:57:32 +00001241 Stream.EmitRecord(SOURCE_LOCATION_PRELOADS, PreloadSLocs);
Douglas Gregora7f71a92009-04-10 03:52:48 +00001242}
1243
Douglas Gregorc5046832009-04-27 18:38:38 +00001244//===----------------------------------------------------------------------===//
1245// Preprocessor Serialization
1246//===----------------------------------------------------------------------===//
1247
Chris Lattnereeffaef2009-04-10 17:15:23 +00001248/// \brief Writes the block containing the serialized form of the
1249/// preprocessor.
1250///
Sebastian Redl55c0ad52010-08-18 23:56:21 +00001251void ASTWriter::WritePreprocessor(const Preprocessor &PP) {
Chris Lattnerbaa52f42009-04-10 18:00:12 +00001252 RecordData Record;
Chris Lattner0910e3b2009-04-10 17:16:57 +00001253
Chris Lattner0af3ba12009-04-13 01:29:17 +00001254 // If the preprocessor __COUNTER__ value has been bumped, remember it.
1255 if (PP.getCounterValue() != 0) {
1256 Record.push_back(PP.getCounterValue());
Sebastian Redl539c5062010-08-18 23:57:32 +00001257 Stream.EmitRecord(PP_COUNTER_VALUE, Record);
Chris Lattner0af3ba12009-04-13 01:29:17 +00001258 Record.clear();
Douglas Gregoreda6a892009-04-26 00:07:37 +00001259 }
1260
1261 // Enter the preprocessor block.
Douglas Gregor796d76a2010-10-20 22:00:55 +00001262 Stream.EnterSubblock(PREPROCESSOR_BLOCK_ID, 3);
Mike Stump11289f42009-09-09 15:08:12 +00001263
Sebastian Redl42a0f6a2010-08-18 23:56:27 +00001264 // If the AST file contains __DATE__ or __TIME__ emit a warning about this.
Douglas Gregoreda6a892009-04-26 00:07:37 +00001265 // FIXME: use diagnostics subsystem for localization etc.
1266 if (PP.SawDateOrTime())
1267 fprintf(stderr, "warning: precompiled header used __DATE__ or __TIME__.\n");
Mike Stump11289f42009-09-09 15:08:12 +00001268
Douglas Gregor796d76a2010-10-20 22:00:55 +00001269
Chris Lattnerbaa52f42009-04-10 18:00:12 +00001270 // Loop over all the macro definitions that are live at the end of the file,
1271 // emitting each to the PP section.
Douglas Gregoraae92242010-03-19 21:51:54 +00001272 PreprocessingRecord *PPRec = PP.getPreprocessingRecord();
Douglas Gregor796d76a2010-10-20 22:00:55 +00001273 unsigned InclusionAbbrev = 0;
1274 if (PPRec) {
1275 using namespace llvm;
1276 BitCodeAbbrev *Abbrev = new BitCodeAbbrev();
1277 Abbrev->Add(BitCodeAbbrevOp(PP_INCLUSION_DIRECTIVE));
1278 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // index
1279 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // start location
1280 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // end location
1281 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // filename length
1282 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // in quotes
1283 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 2)); // kind
1284 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob));
Michael J. Spencer4c0ffa82010-10-21 03:16:25 +00001285 InclusionAbbrev = Stream.EmitAbbrev(Abbrev);
Douglas Gregor796d76a2010-10-20 22:00:55 +00001286 }
Michael J. Spencer4c0ffa82010-10-21 03:16:25 +00001287
Chris Lattnerbaa52f42009-04-10 18:00:12 +00001288 for (Preprocessor::macro_iterator I = PP.macro_begin(), E = PP.macro_end();
1289 I != E; ++I) {
Chris Lattner34321bc2009-04-10 21:41:48 +00001290 // FIXME: This emits macros in hash table order, we should do it in a stable
1291 // order so that output is reproducible.
Chris Lattnerbaa52f42009-04-10 18:00:12 +00001292 MacroInfo *MI = I->second;
1293
Sebastian Redl42a0f6a2010-08-18 23:56:27 +00001294 // Don't emit builtin macros like __LINE__ to the AST file unless they have
Chris Lattnerbaa52f42009-04-10 18:00:12 +00001295 // been redefined by the header (in which case they are not isBuiltinMacro).
Sebastian Redl42a0f6a2010-08-18 23:56:27 +00001296 // Also skip macros from a AST file if we're chaining.
Douglas Gregoreb114da2010-10-01 01:03:07 +00001297
1298 // FIXME: There is a (probably minor) optimization we could do here, if
1299 // the macro comes from the original PCH but the identifier comes from a
1300 // chained PCH, by storing the offset into the original PCH rather than
1301 // writing the macro definition a second time.
Michael J. Spencer4c0ffa82010-10-21 03:16:25 +00001302 if (MI->isBuiltinMacro() ||
Douglas Gregoreb114da2010-10-01 01:03:07 +00001303 (Chain && I->first->isFromAST() && MI->isFromAST()))
Chris Lattnerbaa52f42009-04-10 18:00:12 +00001304 continue;
1305
Chris Lattnerc523d8e2009-04-11 21:15:38 +00001306 AddIdentifierRef(I->first, Record);
Douglas Gregorc3366a52009-04-21 23:56:24 +00001307 MacroOffsets[I->first] = Stream.GetCurrentBitNo();
Chris Lattnerbaa52f42009-04-10 18:00:12 +00001308 Record.push_back(MI->getDefinitionLoc().getRawEncoding());
1309 Record.push_back(MI->isUsed());
Mike Stump11289f42009-09-09 15:08:12 +00001310
Chris Lattnerbaa52f42009-04-10 18:00:12 +00001311 unsigned Code;
1312 if (MI->isObjectLike()) {
Sebastian Redl539c5062010-08-18 23:57:32 +00001313 Code = PP_MACRO_OBJECT_LIKE;
Chris Lattnerbaa52f42009-04-10 18:00:12 +00001314 } else {
Sebastian Redl539c5062010-08-18 23:57:32 +00001315 Code = PP_MACRO_FUNCTION_LIKE;
Mike Stump11289f42009-09-09 15:08:12 +00001316
Chris Lattnerbaa52f42009-04-10 18:00:12 +00001317 Record.push_back(MI->isC99Varargs());
1318 Record.push_back(MI->isGNUVarargs());
1319 Record.push_back(MI->getNumArgs());
1320 for (MacroInfo::arg_iterator I = MI->arg_begin(), E = MI->arg_end();
1321 I != E; ++I)
Chris Lattnerc523d8e2009-04-11 21:15:38 +00001322 AddIdentifierRef(*I, Record);
Chris Lattnerbaa52f42009-04-10 18:00:12 +00001323 }
Michael J. Spencer4c0ffa82010-10-21 03:16:25 +00001324
Douglas Gregoraae92242010-03-19 21:51:54 +00001325 // If we have a detailed preprocessing record, record the macro definition
1326 // ID that corresponds to this macro.
1327 if (PPRec)
1328 Record.push_back(getMacroDefinitionID(PPRec->findMacroDefinition(MI)));
Michael J. Spencer4c0ffa82010-10-21 03:16:25 +00001329
Douglas Gregor8f45df52009-04-16 22:23:12 +00001330 Stream.EmitRecord(Code, Record);
Chris Lattnerbaa52f42009-04-10 18:00:12 +00001331 Record.clear();
1332
Chris Lattner2199f5b2009-04-10 18:08:30 +00001333 // Emit the tokens array.
1334 for (unsigned TokNo = 0, e = MI->getNumTokens(); TokNo != e; ++TokNo) {
1335 // Note that we know that the preprocessor does not have any annotation
1336 // tokens in it because they are created by the parser, and thus can't be
1337 // in a macro definition.
1338 const Token &Tok = MI->getReplacementToken(TokNo);
Mike Stump11289f42009-09-09 15:08:12 +00001339
Chris Lattner2199f5b2009-04-10 18:08:30 +00001340 Record.push_back(Tok.getLocation().getRawEncoding());
1341 Record.push_back(Tok.getLength());
1342
Chris Lattner2199f5b2009-04-10 18:08:30 +00001343 // FIXME: When reading literal tokens, reconstruct the literal pointer if
1344 // it is needed.
Chris Lattnerc523d8e2009-04-11 21:15:38 +00001345 AddIdentifierRef(Tok.getIdentifierInfo(), Record);
Mike Stump11289f42009-09-09 15:08:12 +00001346
Chris Lattner2199f5b2009-04-10 18:08:30 +00001347 // FIXME: Should translate token kind to a stable encoding.
1348 Record.push_back(Tok.getKind());
1349 // FIXME: Should translate token flags to a stable encoding.
1350 Record.push_back(Tok.getFlags());
Mike Stump11289f42009-09-09 15:08:12 +00001351
Sebastian Redl539c5062010-08-18 23:57:32 +00001352 Stream.EmitRecord(PP_TOKEN, Record);
Chris Lattner2199f5b2009-04-10 18:08:30 +00001353 Record.clear();
1354 }
Douglas Gregorc3366a52009-04-21 23:56:24 +00001355 ++NumMacros;
Chris Lattnerbaa52f42009-04-10 18:00:12 +00001356 }
Michael J. Spencer4c0ffa82010-10-21 03:16:25 +00001357
Douglas Gregoraae92242010-03-19 21:51:54 +00001358 // If the preprocessor has a preprocessing record, emit it.
1359 unsigned NumPreprocessingRecords = 0;
1360 if (PPRec) {
Sebastian Redl7abd8d52010-09-27 23:20:01 +00001361 unsigned IndexBase = Chain ? PPRec->getNumPreallocatedEntities() : 0;
Sebastian Redl9609b4f2010-09-27 22:18:47 +00001362 for (PreprocessingRecord::iterator E = PPRec->begin(Chain),
1363 EEnd = PPRec->end(Chain);
Douglas Gregoraae92242010-03-19 21:51:54 +00001364 E != EEnd; ++E) {
1365 Record.clear();
Michael J. Spencer4c0ffa82010-10-21 03:16:25 +00001366
Douglas Gregoraae92242010-03-19 21:51:54 +00001367 if (MacroInstantiation *MI = dyn_cast<MacroInstantiation>(*E)) {
Sebastian Redl9609b4f2010-09-27 22:18:47 +00001368 Record.push_back(IndexBase + NumPreprocessingRecords++);
Douglas Gregoraae92242010-03-19 21:51:54 +00001369 AddSourceLocation(MI->getSourceRange().getBegin(), Record);
1370 AddSourceLocation(MI->getSourceRange().getEnd(), Record);
1371 AddIdentifierRef(MI->getName(), Record);
1372 Record.push_back(getMacroDefinitionID(MI->getDefinition()));
Sebastian Redl539c5062010-08-18 23:57:32 +00001373 Stream.EmitRecord(PP_MACRO_INSTANTIATION, Record);
Douglas Gregoraae92242010-03-19 21:51:54 +00001374 continue;
1375 }
Michael J. Spencer4c0ffa82010-10-21 03:16:25 +00001376
Douglas Gregoraae92242010-03-19 21:51:54 +00001377 if (MacroDefinition *MD = dyn_cast<MacroDefinition>(*E)) {
1378 // Record this macro definition's location.
Sebastian Redl50e26582010-09-15 19:54:06 +00001379 MacroID ID = getMacroDefinitionID(MD);
Michael J. Spencer4c0ffa82010-10-21 03:16:25 +00001380
Douglas Gregor91096292010-10-02 19:29:26 +00001381 // Don't write the macro definition if it is from another AST file.
1382 if (ID < FirstMacroID)
1383 continue;
Michael J. Spencer4c0ffa82010-10-21 03:16:25 +00001384
Douglas Gregor91096292010-10-02 19:29:26 +00001385 unsigned Position = ID - FirstMacroID;
1386 if (Position != MacroDefinitionOffsets.size()) {
1387 if (Position > MacroDefinitionOffsets.size())
1388 MacroDefinitionOffsets.resize(Position + 1);
Michael J. Spencer4c0ffa82010-10-21 03:16:25 +00001389
1390 MacroDefinitionOffsets[Position] = Stream.GetCurrentBitNo();
Douglas Gregoraae92242010-03-19 21:51:54 +00001391 } else
1392 MacroDefinitionOffsets.push_back(Stream.GetCurrentBitNo());
Michael J. Spencer4c0ffa82010-10-21 03:16:25 +00001393
Sebastian Redl9609b4f2010-09-27 22:18:47 +00001394 Record.push_back(IndexBase + NumPreprocessingRecords++);
Douglas Gregoraae92242010-03-19 21:51:54 +00001395 Record.push_back(ID);
1396 AddSourceLocation(MD->getSourceRange().getBegin(), Record);
1397 AddSourceLocation(MD->getSourceRange().getEnd(), Record);
1398 AddIdentifierRef(MD->getName(), Record);
1399 AddSourceLocation(MD->getLocation(), Record);
Sebastian Redl539c5062010-08-18 23:57:32 +00001400 Stream.EmitRecord(PP_MACRO_DEFINITION, Record);
Douglas Gregoraae92242010-03-19 21:51:54 +00001401 continue;
1402 }
Michael J. Spencer4c0ffa82010-10-21 03:16:25 +00001403
Douglas Gregor796d76a2010-10-20 22:00:55 +00001404 if (InclusionDirective *ID = dyn_cast<InclusionDirective>(*E)) {
1405 Record.push_back(PP_INCLUSION_DIRECTIVE);
1406 Record.push_back(IndexBase + NumPreprocessingRecords++);
1407 AddSourceLocation(ID->getSourceRange().getBegin(), Record);
1408 AddSourceLocation(ID->getSourceRange().getEnd(), Record);
1409 Record.push_back(ID->getFileName().size());
1410 Record.push_back(ID->wasInQuotes());
1411 Record.push_back(static_cast<unsigned>(ID->getKind()));
1412 llvm::SmallString<64> Buffer;
1413 Buffer += ID->getFileName();
1414 Buffer += ID->getFile()->getName();
1415 Stream.EmitRecordWithBlob(InclusionAbbrev, Record, Buffer);
1416 continue;
1417 }
Douglas Gregoraae92242010-03-19 21:51:54 +00001418 }
1419 }
Michael J. Spencer4c0ffa82010-10-21 03:16:25 +00001420
Douglas Gregor8f45df52009-04-16 22:23:12 +00001421 Stream.ExitBlock();
Michael J. Spencer4c0ffa82010-10-21 03:16:25 +00001422
Douglas Gregoraae92242010-03-19 21:51:54 +00001423 // Write the offsets table for the preprocessing record.
1424 if (NumPreprocessingRecords > 0) {
1425 // Write the offsets table for identifier IDs.
1426 using namespace llvm;
1427 BitCodeAbbrev *Abbrev = new BitCodeAbbrev();
Sebastian Redl539c5062010-08-18 23:57:32 +00001428 Abbrev->Add(BitCodeAbbrevOp(MACRO_DEFINITION_OFFSETS));
Douglas Gregoraae92242010-03-19 21:51:54 +00001429 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // # of records
1430 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // # of macro defs
1431 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob));
1432 unsigned MacroDefOffsetAbbrev = Stream.EmitAbbrev(Abbrev);
Michael J. Spencer4c0ffa82010-10-21 03:16:25 +00001433
Douglas Gregoraae92242010-03-19 21:51:54 +00001434 Record.clear();
Sebastian Redl539c5062010-08-18 23:57:32 +00001435 Record.push_back(MACRO_DEFINITION_OFFSETS);
Douglas Gregoraae92242010-03-19 21:51:54 +00001436 Record.push_back(NumPreprocessingRecords);
1437 Record.push_back(MacroDefinitionOffsets.size());
1438 Stream.EmitRecordWithBlob(MacroDefOffsetAbbrev, Record,
Sebastian Redl3df5a082010-07-30 17:03:48 +00001439 (const char *)data(MacroDefinitionOffsets),
Douglas Gregoraae92242010-03-19 21:51:54 +00001440 MacroDefinitionOffsets.size() * sizeof(uint32_t));
1441 }
Chris Lattnereeffaef2009-04-10 17:15:23 +00001442}
1443
Douglas Gregorc5046832009-04-27 18:38:38 +00001444//===----------------------------------------------------------------------===//
1445// Type Serialization
1446//===----------------------------------------------------------------------===//
Chris Lattnereeffaef2009-04-10 17:15:23 +00001447
Sebastian Redl42a0f6a2010-08-18 23:56:27 +00001448/// \brief Write the representation of a type to the AST stream.
Sebastian Redl55c0ad52010-08-18 23:56:21 +00001449void ASTWriter::WriteType(QualType T) {
Argyrios Kyrtzidisa7fbbb02010-08-20 16:04:04 +00001450 TypeIdx &Idx = TypeIdxs[T];
Argyrios Kyrtzidisbb5c7eae2010-08-20 16:03:59 +00001451 if (Idx.getIndex() == 0) // we haven't seen this type before.
1452 Idx = TypeIdx(NextTypeID++);
Mike Stump11289f42009-09-09 15:08:12 +00001453
Douglas Gregor9b3932c2010-10-05 18:37:06 +00001454 assert(Idx.getIndex() >= FirstTypeID && "Re-writing a type from a prior AST");
Douglas Gregordc72caa2010-10-04 18:21:45 +00001455
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001456 // Record the offset for this type.
Argyrios Kyrtzidisbb5c7eae2010-08-20 16:03:59 +00001457 unsigned Index = Idx.getIndex() - FirstTypeID;
Sebastian Redl66c5eef2010-07-27 00:17:23 +00001458 if (TypeOffsets.size() == Index)
Douglas Gregor8f45df52009-04-16 22:23:12 +00001459 TypeOffsets.push_back(Stream.GetCurrentBitNo());
Sebastian Redl66c5eef2010-07-27 00:17:23 +00001460 else if (TypeOffsets.size() < Index) {
1461 TypeOffsets.resize(Index + 1);
1462 TypeOffsets[Index] = Stream.GetCurrentBitNo();
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001463 }
1464
1465 RecordData Record;
Mike Stump11289f42009-09-09 15:08:12 +00001466
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001467 // Emit the type's representation.
Sebastian Redl42a0f6a2010-08-18 23:56:27 +00001468 ASTTypeWriter W(*this, Record);
John McCall8ccfcb52009-09-24 19:53:00 +00001469
Douglas Gregor1b8fe5b72009-11-16 21:35:15 +00001470 if (T.hasLocalNonFastQualifiers()) {
1471 Qualifiers Qs = T.getLocalQualifiers();
1472 AddTypeRef(T.getLocalUnqualifiedType(), Record);
John McCall8ccfcb52009-09-24 19:53:00 +00001473 Record.push_back(Qs.getAsOpaqueValue());
Sebastian Redl539c5062010-08-18 23:57:32 +00001474 W.Code = TYPE_EXT_QUAL;
John McCall8ccfcb52009-09-24 19:53:00 +00001475 } else {
1476 switch (T->getTypeClass()) {
1477 // For all of the concrete, non-dependent types, call the
1478 // appropriate visitor function.
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001479#define TYPE(Class, Base) \
Mike Stump281d6d72010-01-20 02:03:14 +00001480 case Type::Class: W.Visit##Class##Type(cast<Class##Type>(T)); break;
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001481#define ABSTRACT_TYPE(Class, Base)
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001482#include "clang/AST/TypeNodes.def"
John McCall8ccfcb52009-09-24 19:53:00 +00001483 }
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001484 }
1485
1486 // Emit the serialized record.
Douglas Gregor8f45df52009-04-16 22:23:12 +00001487 Stream.EmitRecord(W.Code, Record);
Douglas Gregorfeb84b02009-04-14 21:18:50 +00001488
1489 // Flush any expressions that were written as part of this type.
Douglas Gregor8f45df52009-04-16 22:23:12 +00001490 FlushStmts();
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001491}
1492
Douglas Gregorc5046832009-04-27 18:38:38 +00001493//===----------------------------------------------------------------------===//
1494// Declaration Serialization
1495//===----------------------------------------------------------------------===//
1496
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001497/// \brief Write the block containing all of the declaration IDs
1498/// lexically declared within the given DeclContext.
1499///
1500/// \returns the offset of the DECL_CONTEXT_LEXICAL block within the
1501/// bistream, or 0 if no block was written.
Sebastian Redl55c0ad52010-08-18 23:56:21 +00001502uint64_t ASTWriter::WriteDeclContextLexicalBlock(ASTContext &Context,
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001503 DeclContext *DC) {
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00001504 if (DC->decls_empty())
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001505 return 0;
1506
Douglas Gregor8f45df52009-04-16 22:23:12 +00001507 uint64_t Offset = Stream.GetCurrentBitNo();
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001508 RecordData Record;
Sebastian Redl539c5062010-08-18 23:57:32 +00001509 Record.push_back(DECL_CONTEXT_LEXICAL);
Argyrios Kyrtzidis0e88a562010-10-14 20:14:34 +00001510 llvm::SmallVector<KindDeclIDPair, 64> Decls;
Argyrios Kyrtzidiscfbfe782009-06-30 02:36:12 +00001511 for (DeclContext::decl_iterator D = DC->decls_begin(), DEnd = DC->decls_end();
1512 D != DEnd; ++D)
Argyrios Kyrtzidis0e88a562010-10-14 20:14:34 +00001513 Decls.push_back(std::make_pair((*D)->getKind(), GetDeclRef(*D)));
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001514
Douglas Gregora57c3ab2009-04-22 22:34:57 +00001515 ++NumLexicalDeclContexts;
Sebastian Redl66c5eef2010-07-27 00:17:23 +00001516 Stream.EmitRecordWithBlob(DeclContextLexicalAbbrev, Record,
Argyrios Kyrtzidis0e88a562010-10-14 20:14:34 +00001517 reinterpret_cast<char*>(Decls.data()),
1518 Decls.size() * sizeof(KindDeclIDPair));
Douglas Gregoref84c4b2009-04-09 22:27:44 +00001519 return Offset;
1520}
1521
Sebastian Redl55c0ad52010-08-18 23:56:21 +00001522void ASTWriter::WriteTypeDeclOffsets() {
Sebastian Redl1ea025b2010-07-16 16:36:56 +00001523 using namespace llvm;
1524 RecordData Record;
1525
1526 // Write the type offsets array
1527 BitCodeAbbrev *Abbrev = new BitCodeAbbrev();
Sebastian Redl539c5062010-08-18 23:57:32 +00001528 Abbrev->Add(BitCodeAbbrevOp(TYPE_OFFSET));
Sebastian Redl1ea025b2010-07-16 16:36:56 +00001529 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // # of types
1530 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // types block
1531 unsigned TypeOffsetAbbrev = Stream.EmitAbbrev(Abbrev);
1532 Record.clear();
Sebastian Redl539c5062010-08-18 23:57:32 +00001533 Record.push_back(TYPE_OFFSET);
Sebastian Redl1ea025b2010-07-16 16:36:56 +00001534 Record.push_back(TypeOffsets.size());
1535 Stream.EmitRecordWithBlob(TypeOffsetAbbrev, Record,
Sebastian Redl3df5a082010-07-30 17:03:48 +00001536 (const char *)data(TypeOffsets),
Sebastian Redl1ea025b2010-07-16 16:36:56 +00001537 TypeOffsets.size() * sizeof(TypeOffsets[0]));
1538
1539 // Write the declaration offsets array
1540 Abbrev = new BitCodeAbbrev();
Sebastian Redl539c5062010-08-18 23:57:32 +00001541 Abbrev->Add(BitCodeAbbrevOp(DECL_OFFSET));
Sebastian Redl1ea025b2010-07-16 16:36:56 +00001542 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // # of declarations
1543 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // declarations block
1544 unsigned DeclOffsetAbbrev = Stream.EmitAbbrev(Abbrev);
1545 Record.clear();
Sebastian Redl539c5062010-08-18 23:57:32 +00001546 Record.push_back(DECL_OFFSET);
Sebastian Redl1ea025b2010-07-16 16:36:56 +00001547 Record.push_back(DeclOffsets.size());
1548 Stream.EmitRecordWithBlob(DeclOffsetAbbrev, Record,
Sebastian Redl3df5a082010-07-30 17:03:48 +00001549 (const char *)data(DeclOffsets),
Sebastian Redl1ea025b2010-07-16 16:36:56 +00001550 DeclOffsets.size() * sizeof(DeclOffsets[0]));
1551}
1552
Douglas Gregorc5046832009-04-27 18:38:38 +00001553//===----------------------------------------------------------------------===//
1554// Global Method Pool and Selector Serialization
1555//===----------------------------------------------------------------------===//
1556
Douglas Gregore84a9da2009-04-20 20:36:09 +00001557namespace {
Douglas Gregorc78d3462009-04-24 21:10:55 +00001558// Trait used for the on-disk hash table used in the method pool.
Sebastian Redl42a0f6a2010-08-18 23:56:27 +00001559class ASTMethodPoolTrait {
Sebastian Redl55c0ad52010-08-18 23:56:21 +00001560 ASTWriter &Writer;
Douglas Gregorc78d3462009-04-24 21:10:55 +00001561
1562public:
1563 typedef Selector key_type;
1564 typedef key_type key_type_ref;
Mike Stump11289f42009-09-09 15:08:12 +00001565
Sebastian Redl834bb972010-08-04 17:20:04 +00001566 struct data_type {
Sebastian Redl539c5062010-08-18 23:57:32 +00001567 SelectorID ID;
Sebastian Redl834bb972010-08-04 17:20:04 +00001568 ObjCMethodList Instance, Factory;
1569 };
Douglas Gregorc78d3462009-04-24 21:10:55 +00001570 typedef const data_type& data_type_ref;
1571
Sebastian Redl42a0f6a2010-08-18 23:56:27 +00001572 explicit ASTMethodPoolTrait(ASTWriter &Writer) : Writer(Writer) { }
Mike Stump11289f42009-09-09 15:08:12 +00001573
Douglas Gregorc78d3462009-04-24 21:10:55 +00001574 static unsigned ComputeHash(Selector Sel) {
Argyrios Kyrtzidis4bd97102010-08-20 16:03:52 +00001575 return serialization::ComputeHash(Sel);
Douglas Gregorc78d3462009-04-24 21:10:55 +00001576 }
Mike Stump11289f42009-09-09 15:08:12 +00001577
1578 std::pair<unsigned,unsigned>
Douglas Gregorc78d3462009-04-24 21:10:55 +00001579 EmitKeyDataLength(llvm::raw_ostream& Out, Selector Sel,
1580 data_type_ref Methods) {
1581 unsigned KeyLen = 2 + (Sel.getNumArgs()? Sel.getNumArgs() * 4 : 4);
1582 clang::io::Emit16(Out, KeyLen);
Sebastian Redl834bb972010-08-04 17:20:04 +00001583 unsigned DataLen = 4 + 2 + 2; // 2 bytes for each of the method counts
1584 for (const ObjCMethodList *Method = &Methods.Instance; Method;
Douglas Gregorc78d3462009-04-24 21:10:55 +00001585 Method = Method->Next)
1586 if (Method->Method)
1587 DataLen += 4;
Sebastian Redl834bb972010-08-04 17:20:04 +00001588 for (const ObjCMethodList *Method = &Methods.Factory; Method;
Douglas Gregorc78d3462009-04-24 21:10:55 +00001589 Method = Method->Next)
1590 if (Method->Method)
1591 DataLen += 4;
1592 clang::io::Emit16(Out, DataLen);
1593 return std::make_pair(KeyLen, DataLen);
1594 }
Mike Stump11289f42009-09-09 15:08:12 +00001595
Douglas Gregor95c13f52009-04-25 17:48:32 +00001596 void EmitKey(llvm::raw_ostream& Out, Selector Sel, unsigned) {
Mike Stump11289f42009-09-09 15:08:12 +00001597 uint64_t Start = Out.tell();
Douglas Gregor95c13f52009-04-25 17:48:32 +00001598 assert((Start >> 32) == 0 && "Selector key offset too large");
1599 Writer.SetSelectorOffset(Sel, Start);
Douglas Gregorc78d3462009-04-24 21:10:55 +00001600 unsigned N = Sel.getNumArgs();
1601 clang::io::Emit16(Out, N);
1602 if (N == 0)
1603 N = 1;
1604 for (unsigned I = 0; I != N; ++I)
Mike Stump11289f42009-09-09 15:08:12 +00001605 clang::io::Emit32(Out,
Douglas Gregorc78d3462009-04-24 21:10:55 +00001606 Writer.getIdentifierRef(Sel.getIdentifierInfoForSlot(I)));
1607 }
Mike Stump11289f42009-09-09 15:08:12 +00001608
Douglas Gregorc78d3462009-04-24 21:10:55 +00001609 void EmitData(llvm::raw_ostream& Out, key_type_ref,
Douglas Gregor4647cfa2009-04-24 21:49:02 +00001610 data_type_ref Methods, unsigned DataLen) {
1611 uint64_t Start = Out.tell(); (void)Start;
Sebastian Redl834bb972010-08-04 17:20:04 +00001612 clang::io::Emit32(Out, Methods.ID);
Douglas Gregorc78d3462009-04-24 21:10:55 +00001613 unsigned NumInstanceMethods = 0;
Sebastian Redl834bb972010-08-04 17:20:04 +00001614 for (const ObjCMethodList *Method = &Methods.Instance; Method;
Douglas Gregorc78d3462009-04-24 21:10:55 +00001615 Method = Method->Next)
1616 if (Method->Method)
1617 ++NumInstanceMethods;
1618
1619 unsigned NumFactoryMethods = 0;
Sebastian Redl834bb972010-08-04 17:20:04 +00001620 for (const ObjCMethodList *Method = &Methods.Factory; Method;
Douglas Gregorc78d3462009-04-24 21:10:55 +00001621 Method = Method->Next)
1622 if (Method->Method)
1623 ++NumFactoryMethods;
1624
1625 clang::io::Emit16(Out, NumInstanceMethods);
1626 clang::io::Emit16(Out, NumFactoryMethods);
Sebastian Redl834bb972010-08-04 17:20:04 +00001627 for (const ObjCMethodList *Method = &Methods.Instance; Method;
Douglas Gregorc78d3462009-04-24 21:10:55 +00001628 Method = Method->Next)
1629 if (Method->Method)
1630 clang::io::Emit32(Out, Writer.getDeclID(Method->Method));
Sebastian Redl834bb972010-08-04 17:20:04 +00001631 for (const ObjCMethodList *Method = &Methods.Factory; Method;
Douglas Gregorc78d3462009-04-24 21:10:55 +00001632 Method = Method->Next)
1633 if (Method->Method)
1634 clang::io::Emit32(Out, Writer.getDeclID(Method->Method));
Douglas Gregor4647cfa2009-04-24 21:49:02 +00001635
1636 assert(Out.tell() - Start == DataLen && "Data length is wrong");
Douglas Gregorc78d3462009-04-24 21:10:55 +00001637 }
1638};
1639} // end anonymous namespace
1640
Sebastian Redla19a67f2010-08-03 21:58:15 +00001641/// \brief Write ObjC data: selectors and the method pool.
Douglas Gregorc78d3462009-04-24 21:10:55 +00001642///
1643/// The method pool contains both instance and factory methods, stored
Sebastian Redla19a67f2010-08-03 21:58:15 +00001644/// in an on-disk hash table indexed by the selector. The hash table also
1645/// contains an empty entry for every other selector known to Sema.
Sebastian Redl55c0ad52010-08-18 23:56:21 +00001646void ASTWriter::WriteSelectors(Sema &SemaRef) {
Douglas Gregorc78d3462009-04-24 21:10:55 +00001647 using namespace llvm;
1648
Sebastian Redla19a67f2010-08-03 21:58:15 +00001649 // Do we have to do anything at all?
Sebastian Redl834bb972010-08-04 17:20:04 +00001650 if (SemaRef.MethodPool.empty() && SelectorIDs.empty())
Sebastian Redla19a67f2010-08-03 21:58:15 +00001651 return;
Sebastian Redld95a56e2010-08-04 18:21:41 +00001652 unsigned NumTableEntries = 0;
Sebastian Redla19a67f2010-08-03 21:58:15 +00001653 // Create and write out the blob that contains selectors and the method pool.
Douglas Gregorc78d3462009-04-24 21:10:55 +00001654 {
Sebastian Redl42a0f6a2010-08-18 23:56:27 +00001655 OnDiskChainedHashTableGenerator<ASTMethodPoolTrait> Generator;
Argyrios Kyrtzidis07347322010-08-20 16:04:27 +00001656 ASTMethodPoolTrait Trait(*this);
Mike Stump11289f42009-09-09 15:08:12 +00001657
Sebastian Redla19a67f2010-08-03 21:58:15 +00001658 // Create the on-disk hash table representation. We walk through every
1659 // selector we've seen and look it up in the method pool.
Sebastian Redld95a56e2010-08-04 18:21:41 +00001660 SelectorOffsets.resize(NextSelectorID - FirstSelectorID);
Sebastian Redl539c5062010-08-18 23:57:32 +00001661 for (llvm::DenseMap<Selector, SelectorID>::iterator
Sebastian Redl834bb972010-08-04 17:20:04 +00001662 I = SelectorIDs.begin(), E = SelectorIDs.end();
1663 I != E; ++I) {
1664 Selector S = I->first;
Sebastian Redla19a67f2010-08-03 21:58:15 +00001665 Sema::GlobalMethodPool::iterator F = SemaRef.MethodPool.find(S);
Sebastian Redl42a0f6a2010-08-18 23:56:27 +00001666 ASTMethodPoolTrait::data_type Data = {
Sebastian Redl834bb972010-08-04 17:20:04 +00001667 I->second,
1668 ObjCMethodList(),
1669 ObjCMethodList()
1670 };
1671 if (F != SemaRef.MethodPool.end()) {
1672 Data.Instance = F->second.first;
1673 Data.Factory = F->second.second;
1674 }
Sebastian Redl42a0f6a2010-08-18 23:56:27 +00001675 // Only write this selector if it's not in an existing AST or something
Sebastian Redld95a56e2010-08-04 18:21:41 +00001676 // changed.
1677 if (Chain && I->second < FirstSelectorID) {
1678 // Selector already exists. Did it change?
1679 bool changed = false;
1680 for (ObjCMethodList *M = &Data.Instance; !changed && M && M->Method;
1681 M = M->Next) {
1682 if (M->Method->getPCHLevel() == 0)
1683 changed = true;
1684 }
1685 for (ObjCMethodList *M = &Data.Factory; !changed && M && M->Method;
1686 M = M->Next) {
1687 if (M->Method->getPCHLevel() == 0)
1688 changed = true;
1689 }
1690 if (!changed)
1691 continue;
Sebastian Redl6e1a2a02010-08-04 21:22:45 +00001692 } else if (Data.Instance.Method || Data.Factory.Method) {
1693 // A new method pool entry.
1694 ++NumTableEntries;
Sebastian Redld95a56e2010-08-04 18:21:41 +00001695 }
Argyrios Kyrtzidis07347322010-08-20 16:04:27 +00001696 Generator.insert(S, Data, Trait);
Douglas Gregorc78d3462009-04-24 21:10:55 +00001697 }
1698
Douglas Gregorc78d3462009-04-24 21:10:55 +00001699 // Create the on-disk hash table in a buffer.
Mike Stump11289f42009-09-09 15:08:12 +00001700 llvm::SmallString<4096> MethodPool;
Douglas Gregorc78d3462009-04-24 21:10:55 +00001701 uint32_t BucketOffset;
1702 {
Sebastian Redl42a0f6a2010-08-18 23:56:27 +00001703 ASTMethodPoolTrait Trait(*this);
Douglas Gregorc78d3462009-04-24 21:10:55 +00001704 llvm::raw_svector_ostream Out(MethodPool);
1705 // Make sure that no bucket is at offset 0
Douglas Gregor4647cfa2009-04-24 21:49:02 +00001706 clang::io::Emit32(Out, 0);
Douglas Gregorc78d3462009-04-24 21:10:55 +00001707 BucketOffset = Generator.Emit(Out, Trait);
1708 }
1709
1710 // Create a blob abbreviation
1711 BitCodeAbbrev *Abbrev = new BitCodeAbbrev();
Sebastian Redl539c5062010-08-18 23:57:32 +00001712 Abbrev->Add(BitCodeAbbrevOp(METHOD_POOL));
Douglas Gregorc78d3462009-04-24 21:10:55 +00001713 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32));
Douglas Gregor95c13f52009-04-25 17:48:32 +00001714 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32));
Douglas Gregorc78d3462009-04-24 21:10:55 +00001715 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob));
1716 unsigned MethodPoolAbbrev = Stream.EmitAbbrev(Abbrev);
1717
Douglas Gregor95c13f52009-04-25 17:48:32 +00001718 // Write the method pool
Douglas Gregorc78d3462009-04-24 21:10:55 +00001719 RecordData Record;
Sebastian Redl539c5062010-08-18 23:57:32 +00001720 Record.push_back(METHOD_POOL);
Douglas Gregorc78d3462009-04-24 21:10:55 +00001721 Record.push_back(BucketOffset);
Sebastian Redld95a56e2010-08-04 18:21:41 +00001722 Record.push_back(NumTableEntries);
Daniel Dunbar8100d012009-08-24 09:31:37 +00001723 Stream.EmitRecordWithBlob(MethodPoolAbbrev, Record, MethodPool.str());
Douglas Gregor95c13f52009-04-25 17:48:32 +00001724
1725 // Create a blob abbreviation for the selector table offsets.
1726 Abbrev = new BitCodeAbbrev();
Sebastian Redl539c5062010-08-18 23:57:32 +00001727 Abbrev->Add(BitCodeAbbrevOp(SELECTOR_OFFSETS));
Douglas Gregor95c13f52009-04-25 17:48:32 +00001728 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // index
1729 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob));
1730 unsigned SelectorOffsetAbbrev = Stream.EmitAbbrev(Abbrev);
1731
1732 // Write the selector offsets table.
1733 Record.clear();
Sebastian Redl539c5062010-08-18 23:57:32 +00001734 Record.push_back(SELECTOR_OFFSETS);
Douglas Gregor95c13f52009-04-25 17:48:32 +00001735 Record.push_back(SelectorOffsets.size());
1736 Stream.EmitRecordWithBlob(SelectorOffsetAbbrev, Record,
Sebastian Redl3df5a082010-07-30 17:03:48 +00001737 (const char *)data(SelectorOffsets),
Douglas Gregor95c13f52009-04-25 17:48:32 +00001738 SelectorOffsets.size() * 4);
Douglas Gregorc78d3462009-04-24 21:10:55 +00001739 }
1740}
1741
Sebastian Redl42a0f6a2010-08-18 23:56:27 +00001742/// \brief Write the selectors referenced in @selector expression into AST file.
Sebastian Redl55c0ad52010-08-18 23:56:21 +00001743void ASTWriter::WriteReferencedSelectorsPool(Sema &SemaRef) {
Fariborz Jahanianc51609a2010-07-23 19:11:11 +00001744 using namespace llvm;
1745 if (SemaRef.ReferencedSelectors.empty())
1746 return;
Sebastian Redlada023c2010-08-04 20:40:17 +00001747
Fariborz Jahanianc51609a2010-07-23 19:11:11 +00001748 RecordData Record;
Sebastian Redlada023c2010-08-04 20:40:17 +00001749
Sebastian Redl42a0f6a2010-08-18 23:56:27 +00001750 // Note: this writes out all references even for a dependent AST. But it is
Sebastian Redl51c79d82010-08-04 22:21:29 +00001751 // very tricky to fix, and given that @selector shouldn't really appear in
1752 // headers, probably not worth it. It's not a correctness issue.
Fariborz Jahanianc51609a2010-07-23 19:11:11 +00001753 for (DenseMap<Selector, SourceLocation>::iterator S =
1754 SemaRef.ReferencedSelectors.begin(),
1755 E = SemaRef.ReferencedSelectors.end(); S != E; ++S) {
1756 Selector Sel = (*S).first;
1757 SourceLocation Loc = (*S).second;
1758 AddSelectorRef(Sel, Record);
1759 AddSourceLocation(Loc, Record);
1760 }
Sebastian Redl539c5062010-08-18 23:57:32 +00001761 Stream.EmitRecord(REFERENCED_SELECTOR_POOL, Record);
Fariborz Jahanianc51609a2010-07-23 19:11:11 +00001762}
1763
Douglas Gregorc5046832009-04-27 18:38:38 +00001764//===----------------------------------------------------------------------===//
1765// Identifier Table Serialization
1766//===----------------------------------------------------------------------===//
1767
Douglas Gregorc78d3462009-04-24 21:10:55 +00001768namespace {
Sebastian Redl42a0f6a2010-08-18 23:56:27 +00001769class ASTIdentifierTableTrait {
Sebastian Redl55c0ad52010-08-18 23:56:21 +00001770 ASTWriter &Writer;
Douglas Gregorc3366a52009-04-21 23:56:24 +00001771 Preprocessor &PP;
Douglas Gregore84a9da2009-04-20 20:36:09 +00001772
Douglas Gregor1d583f22009-04-28 21:18:29 +00001773 /// \brief Determines whether this is an "interesting" identifier
1774 /// that needs a full IdentifierInfo structure written into the hash
1775 /// table.
1776 static bool isInterestingIdentifier(const IdentifierInfo *II) {
1777 return II->isPoisoned() ||
1778 II->isExtensionToken() ||
1779 II->hasMacroDefinition() ||
1780 II->getObjCOrBuiltinID() ||
1781 II->getFETokenInfo<void>();
1782 }
1783
Douglas Gregore84a9da2009-04-20 20:36:09 +00001784public:
1785 typedef const IdentifierInfo* key_type;
1786 typedef key_type key_type_ref;
Mike Stump11289f42009-09-09 15:08:12 +00001787
Sebastian Redl539c5062010-08-18 23:57:32 +00001788 typedef IdentID data_type;
Douglas Gregore84a9da2009-04-20 20:36:09 +00001789 typedef data_type data_type_ref;
Mike Stump11289f42009-09-09 15:08:12 +00001790
Sebastian Redl42a0f6a2010-08-18 23:56:27 +00001791 ASTIdentifierTableTrait(ASTWriter &Writer, Preprocessor &PP)
Douglas Gregorc3366a52009-04-21 23:56:24 +00001792 : Writer(Writer), PP(PP) { }
Douglas Gregore84a9da2009-04-20 20:36:09 +00001793
1794 static unsigned ComputeHash(const IdentifierInfo* II) {
Daniel Dunbarf8502d52009-10-17 23:52:28 +00001795 return llvm::HashString(II->getName());
Douglas Gregore84a9da2009-04-20 20:36:09 +00001796 }
Mike Stump11289f42009-09-09 15:08:12 +00001797
1798 std::pair<unsigned,unsigned>
1799 EmitKeyDataLength(llvm::raw_ostream& Out, const IdentifierInfo* II,
Sebastian Redl539c5062010-08-18 23:57:32 +00001800 IdentID ID) {
Daniel Dunbar2c422dc92009-10-18 20:26:12 +00001801 unsigned KeyLen = II->getLength() + 1;
Douglas Gregor1d583f22009-04-28 21:18:29 +00001802 unsigned DataLen = 4; // 4 bytes for the persistent ID << 1
1803 if (isInterestingIdentifier(II)) {
Douglas Gregorb9256522009-04-28 21:32:13 +00001804 DataLen += 2; // 2 bytes for builtin ID, flags
Mike Stump11289f42009-09-09 15:08:12 +00001805 if (II->hasMacroDefinition() &&
Douglas Gregor1d583f22009-04-28 21:18:29 +00001806 !PP.getMacroInfo(const_cast<IdentifierInfo *>(II))->isBuiltinMacro())
Douglas Gregorb9256522009-04-28 21:32:13 +00001807 DataLen += 4;
Douglas Gregor1d583f22009-04-28 21:18:29 +00001808 for (IdentifierResolver::iterator D = IdentifierResolver::begin(II),
1809 DEnd = IdentifierResolver::end();
1810 D != DEnd; ++D)
Sebastian Redl539c5062010-08-18 23:57:32 +00001811 DataLen += sizeof(DeclID);
Douglas Gregor1d583f22009-04-28 21:18:29 +00001812 }
Douglas Gregora868bbd2009-04-21 22:25:48 +00001813 clang::io::Emit16(Out, DataLen);
Douglas Gregorab4df582009-04-28 20:01:51 +00001814 // We emit the key length after the data length so that every
1815 // string is preceded by a 16-bit length. This matches the PTH
1816 // format for storing identifiers.
Douglas Gregor5287b4e2009-04-25 21:04:17 +00001817 clang::io::Emit16(Out, KeyLen);
Douglas Gregore84a9da2009-04-20 20:36:09 +00001818 return std::make_pair(KeyLen, DataLen);
1819 }
Mike Stump11289f42009-09-09 15:08:12 +00001820
1821 void EmitKey(llvm::raw_ostream& Out, const IdentifierInfo* II,
Douglas Gregore84a9da2009-04-20 20:36:09 +00001822 unsigned KeyLen) {
1823 // Record the location of the key data. This is used when generating
1824 // the mapping from persistent IDs to strings.
1825 Writer.SetIdentifierOffset(II, Out.tell());
Daniel Dunbar2c422dc92009-10-18 20:26:12 +00001826 Out.write(II->getNameStart(), KeyLen);
Douglas Gregore84a9da2009-04-20 20:36:09 +00001827 }
Mike Stump11289f42009-09-09 15:08:12 +00001828
1829 void EmitData(llvm::raw_ostream& Out, const IdentifierInfo* II,
Sebastian Redl539c5062010-08-18 23:57:32 +00001830 IdentID ID, unsigned) {
Douglas Gregor1d583f22009-04-28 21:18:29 +00001831 if (!isInterestingIdentifier(II)) {
1832 clang::io::Emit32(Out, ID << 1);
1833 return;
1834 }
Douglas Gregorb9256522009-04-28 21:32:13 +00001835
Douglas Gregor1d583f22009-04-28 21:18:29 +00001836 clang::io::Emit32(Out, (ID << 1) | 0x01);
Douglas Gregore84a9da2009-04-20 20:36:09 +00001837 uint32_t Bits = 0;
Mike Stump11289f42009-09-09 15:08:12 +00001838 bool hasMacroDefinition =
1839 II->hasMacroDefinition() &&
Douglas Gregorc3366a52009-04-21 23:56:24 +00001840 !PP.getMacroInfo(const_cast<IdentifierInfo *>(II))->isBuiltinMacro();
Douglas Gregorb9256522009-04-28 21:32:13 +00001841 Bits = (uint32_t)II->getObjCOrBuiltinID();
Daniel Dunbar91b640a2009-12-18 20:58:47 +00001842 Bits = (Bits << 1) | unsigned(hasMacroDefinition);
1843 Bits = (Bits << 1) | unsigned(II->isExtensionToken());
1844 Bits = (Bits << 1) | unsigned(II->isPoisoned());
Argyrios Kyrtzidis3084a612010-08-11 22:55:12 +00001845 Bits = (Bits << 1) | unsigned(II->hasRevertedTokenIDToIdentifier());
Daniel Dunbar91b640a2009-12-18 20:58:47 +00001846 Bits = (Bits << 1) | unsigned(II->isCPlusPlusOperatorKeyword());
Douglas Gregorb9256522009-04-28 21:32:13 +00001847 clang::io::Emit16(Out, Bits);
Douglas Gregore84a9da2009-04-20 20:36:09 +00001848
Douglas Gregorc3366a52009-04-21 23:56:24 +00001849 if (hasMacroDefinition)
Douglas Gregorb9256522009-04-28 21:32:13 +00001850 clang::io::Emit32(Out, Writer.getMacroOffset(II));
Douglas Gregorc3366a52009-04-21 23:56:24 +00001851
Douglas Gregora868bbd2009-04-21 22:25:48 +00001852 // Emit the declaration IDs in reverse order, because the
1853 // IdentifierResolver provides the declarations as they would be
1854 // visible (e.g., the function "stat" would come before the struct
1855 // "stat"), but IdentifierResolver::AddDeclToIdentifierChain()
1856 // adds declarations to the end of the list (so we need to see the
1857 // struct "status" before the function "status").
Sebastian Redlff4a2952010-07-23 23:49:55 +00001858 // Only emit declarations that aren't from a chained PCH, though.
Mike Stump11289f42009-09-09 15:08:12 +00001859 llvm::SmallVector<Decl *, 16> Decls(IdentifierResolver::begin(II),
Douglas Gregora868bbd2009-04-21 22:25:48 +00001860 IdentifierResolver::end());
1861 for (llvm::SmallVector<Decl *, 16>::reverse_iterator D = Decls.rbegin(),
1862 DEnd = Decls.rend();
Douglas Gregore84a9da2009-04-20 20:36:09 +00001863 D != DEnd; ++D)
Sebastian Redl78f51772010-08-02 18:30:12 +00001864 clang::io::Emit32(Out, Writer.getDeclID(*D));
Douglas Gregore84a9da2009-04-20 20:36:09 +00001865 }
1866};
1867} // end anonymous namespace
1868
Sebastian Redl42a0f6a2010-08-18 23:56:27 +00001869/// \brief Write the identifier table into the AST file.
Douglas Gregor3ed42cb2009-04-11 00:14:32 +00001870///
1871/// The identifier table consists of a blob containing string data
1872/// (the actual identifiers themselves) and a separate "offsets" index
1873/// that maps identifier IDs to locations within the blob.
Sebastian Redl55c0ad52010-08-18 23:56:21 +00001874void ASTWriter::WriteIdentifierTable(Preprocessor &PP) {
Douglas Gregor3ed42cb2009-04-11 00:14:32 +00001875 using namespace llvm;
1876
1877 // Create and write out the blob that contains the identifier
1878 // strings.
Douglas Gregor3ed42cb2009-04-11 00:14:32 +00001879 {
Sebastian Redl42a0f6a2010-08-18 23:56:27 +00001880 OnDiskChainedHashTableGenerator<ASTIdentifierTableTrait> Generator;
Argyrios Kyrtzidis07347322010-08-20 16:04:27 +00001881 ASTIdentifierTableTrait Trait(*this, PP);
Mike Stump11289f42009-09-09 15:08:12 +00001882
Douglas Gregore6648fb2009-04-28 20:33:11 +00001883 // Look for any identifiers that were named while processing the
1884 // headers, but are otherwise not needed. We add these to the hash
1885 // table to enable checking of the predefines buffer in the case
Sebastian Redl42a0f6a2010-08-18 23:56:27 +00001886 // where the user adds new macro definitions when building the AST
Douglas Gregore6648fb2009-04-28 20:33:11 +00001887 // file.
1888 for (IdentifierTable::iterator ID = PP.getIdentifierTable().begin(),
1889 IDEnd = PP.getIdentifierTable().end();
1890 ID != IDEnd; ++ID)
1891 getIdentifierRef(ID->second);
1892
Sebastian Redlff4a2952010-07-23 23:49:55 +00001893 // Create the on-disk hash table representation. We only store offsets
1894 // for identifiers that appear here for the first time.
1895 IdentifierOffsets.resize(NextIdentID - FirstIdentID);
Sebastian Redl539c5062010-08-18 23:57:32 +00001896 for (llvm::DenseMap<const IdentifierInfo *, IdentID>::iterator
Douglas Gregor3ed42cb2009-04-11 00:14:32 +00001897 ID = IdentifierIDs.begin(), IDEnd = IdentifierIDs.end();
1898 ID != IDEnd; ++ID) {
1899 assert(ID->first && "NULL identifier in identifier table");
Sebastian Redld44cd6a2010-08-18 23:57:06 +00001900 if (!Chain || !ID->first->isFromAST())
Argyrios Kyrtzidis07347322010-08-20 16:04:27 +00001901 Generator.insert(ID->first, ID->second, Trait);
Douglas Gregore84a9da2009-04-20 20:36:09 +00001902 }
Douglas Gregor3ed42cb2009-04-11 00:14:32 +00001903
Douglas Gregore84a9da2009-04-20 20:36:09 +00001904 // Create the on-disk hash table in a buffer.
Mike Stump11289f42009-09-09 15:08:12 +00001905 llvm::SmallString<4096> IdentifierTable;
Douglas Gregora868bbd2009-04-21 22:25:48 +00001906 uint32_t BucketOffset;
Douglas Gregore84a9da2009-04-20 20:36:09 +00001907 {
Sebastian Redl42a0f6a2010-08-18 23:56:27 +00001908 ASTIdentifierTableTrait Trait(*this, PP);
Douglas Gregore84a9da2009-04-20 20:36:09 +00001909 llvm::raw_svector_ostream Out(IdentifierTable);
Douglas Gregorc78d3462009-04-24 21:10:55 +00001910 // Make sure that no bucket is at offset 0
Douglas Gregor4647cfa2009-04-24 21:49:02 +00001911 clang::io::Emit32(Out, 0);
Douglas Gregora868bbd2009-04-21 22:25:48 +00001912 BucketOffset = Generator.Emit(Out, Trait);
Douglas Gregor3ed42cb2009-04-11 00:14:32 +00001913 }
1914
1915 // Create a blob abbreviation
1916 BitCodeAbbrev *Abbrev = new BitCodeAbbrev();
Sebastian Redl539c5062010-08-18 23:57:32 +00001917 Abbrev->Add(BitCodeAbbrevOp(IDENTIFIER_TABLE));
Douglas Gregora868bbd2009-04-21 22:25:48 +00001918 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32));
Douglas Gregore84a9da2009-04-20 20:36:09 +00001919 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob));
Douglas Gregor8f45df52009-04-16 22:23:12 +00001920 unsigned IDTableAbbrev = Stream.EmitAbbrev(Abbrev);
Douglas Gregor3ed42cb2009-04-11 00:14:32 +00001921
1922 // Write the identifier table
1923 RecordData Record;
Sebastian Redl539c5062010-08-18 23:57:32 +00001924 Record.push_back(IDENTIFIER_TABLE);
Douglas Gregora868bbd2009-04-21 22:25:48 +00001925 Record.push_back(BucketOffset);
Daniel Dunbar8100d012009-08-24 09:31:37 +00001926 Stream.EmitRecordWithBlob(IDTableAbbrev, Record, IdentifierTable.str());
Douglas Gregor3ed42cb2009-04-11 00:14:32 +00001927 }
1928
1929 // Write the offsets table for identifier IDs.
Douglas Gregor0e149972009-04-25 19:10:14 +00001930 BitCodeAbbrev *Abbrev = new BitCodeAbbrev();
Sebastian Redl539c5062010-08-18 23:57:32 +00001931 Abbrev->Add(BitCodeAbbrevOp(IDENTIFIER_OFFSET));
Douglas Gregor0e149972009-04-25 19:10:14 +00001932 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // # of identifiers
1933 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob));
1934 unsigned IdentifierOffsetAbbrev = Stream.EmitAbbrev(Abbrev);
1935
1936 RecordData Record;
Sebastian Redl539c5062010-08-18 23:57:32 +00001937 Record.push_back(IDENTIFIER_OFFSET);
Douglas Gregor0e149972009-04-25 19:10:14 +00001938 Record.push_back(IdentifierOffsets.size());
1939 Stream.EmitRecordWithBlob(IdentifierOffsetAbbrev, Record,
Sebastian Redl3df5a082010-07-30 17:03:48 +00001940 (const char *)data(IdentifierOffsets),
Douglas Gregor0e149972009-04-25 19:10:14 +00001941 IdentifierOffsets.size() * sizeof(uint32_t));
Douglas Gregor3ed42cb2009-04-11 00:14:32 +00001942}
1943
Douglas Gregorc5046832009-04-27 18:38:38 +00001944//===----------------------------------------------------------------------===//
Argyrios Kyrtzidis07347322010-08-20 16:04:27 +00001945// DeclContext's Name Lookup Table Serialization
1946//===----------------------------------------------------------------------===//
1947
1948namespace {
1949// Trait used for the on-disk hash table used in the method pool.
1950class ASTDeclContextNameLookupTrait {
1951 ASTWriter &Writer;
1952
1953public:
1954 typedef DeclarationName key_type;
1955 typedef key_type key_type_ref;
1956
1957 typedef DeclContext::lookup_result data_type;
1958 typedef const data_type& data_type_ref;
1959
1960 explicit ASTDeclContextNameLookupTrait(ASTWriter &Writer) : Writer(Writer) { }
1961
1962 unsigned ComputeHash(DeclarationName Name) {
1963 llvm::FoldingSetNodeID ID;
1964 ID.AddInteger(Name.getNameKind());
1965
1966 switch (Name.getNameKind()) {
1967 case DeclarationName::Identifier:
1968 ID.AddString(Name.getAsIdentifierInfo()->getName());
1969 break;
1970 case DeclarationName::ObjCZeroArgSelector:
1971 case DeclarationName::ObjCOneArgSelector:
1972 case DeclarationName::ObjCMultiArgSelector:
1973 ID.AddInteger(serialization::ComputeHash(Name.getObjCSelector()));
1974 break;
1975 case DeclarationName::CXXConstructorName:
1976 case DeclarationName::CXXDestructorName:
1977 case DeclarationName::CXXConversionFunctionName:
1978 ID.AddInteger(Writer.GetOrCreateTypeID(Name.getCXXNameType()));
1979 break;
1980 case DeclarationName::CXXOperatorName:
1981 ID.AddInteger(Name.getCXXOverloadedOperator());
1982 break;
1983 case DeclarationName::CXXLiteralOperatorName:
1984 ID.AddString(Name.getCXXLiteralIdentifier()->getName());
1985 case DeclarationName::CXXUsingDirective:
1986 break;
1987 }
1988
1989 return ID.ComputeHash();
1990 }
1991
1992 std::pair<unsigned,unsigned>
1993 EmitKeyDataLength(llvm::raw_ostream& Out, DeclarationName Name,
1994 data_type_ref Lookup) {
1995 unsigned KeyLen = 1;
1996 switch (Name.getNameKind()) {
1997 case DeclarationName::Identifier:
1998 case DeclarationName::ObjCZeroArgSelector:
1999 case DeclarationName::ObjCOneArgSelector:
2000 case DeclarationName::ObjCMultiArgSelector:
2001 case DeclarationName::CXXConstructorName:
2002 case DeclarationName::CXXDestructorName:
2003 case DeclarationName::CXXConversionFunctionName:
2004 case DeclarationName::CXXLiteralOperatorName:
2005 KeyLen += 4;
2006 break;
2007 case DeclarationName::CXXOperatorName:
2008 KeyLen += 1;
2009 break;
2010 case DeclarationName::CXXUsingDirective:
2011 break;
2012 }
2013 clang::io::Emit16(Out, KeyLen);
2014
2015 // 2 bytes for num of decls and 4 for each DeclID.
2016 unsigned DataLen = 2 + 4 * (Lookup.second - Lookup.first);
2017 clang::io::Emit16(Out, DataLen);
2018
2019 return std::make_pair(KeyLen, DataLen);
2020 }
2021
2022 void EmitKey(llvm::raw_ostream& Out, DeclarationName Name, unsigned) {
2023 using namespace clang::io;
2024
2025 assert(Name.getNameKind() < 0x100 && "Invalid name kind ?");
2026 Emit8(Out, Name.getNameKind());
2027 switch (Name.getNameKind()) {
2028 case DeclarationName::Identifier:
2029 Emit32(Out, Writer.getIdentifierRef(Name.getAsIdentifierInfo()));
2030 break;
2031 case DeclarationName::ObjCZeroArgSelector:
2032 case DeclarationName::ObjCOneArgSelector:
2033 case DeclarationName::ObjCMultiArgSelector:
2034 Emit32(Out, Writer.getSelectorRef(Name.getObjCSelector()));
2035 break;
2036 case DeclarationName::CXXConstructorName:
2037 case DeclarationName::CXXDestructorName:
2038 case DeclarationName::CXXConversionFunctionName:
2039 Emit32(Out, Writer.getTypeID(Name.getCXXNameType()));
2040 break;
2041 case DeclarationName::CXXOperatorName:
2042 assert(Name.getCXXOverloadedOperator() < 0x100 && "Invalid operator ?");
2043 Emit8(Out, Name.getCXXOverloadedOperator());
2044 break;
2045 case DeclarationName::CXXLiteralOperatorName:
2046 Emit32(Out, Writer.getIdentifierRef(Name.getCXXLiteralIdentifier()));
2047 break;
2048 case DeclarationName::CXXUsingDirective:
2049 break;
2050 }
2051 }
2052
2053 void EmitData(llvm::raw_ostream& Out, key_type_ref,
2054 data_type Lookup, unsigned DataLen) {
2055 uint64_t Start = Out.tell(); (void)Start;
2056 clang::io::Emit16(Out, Lookup.second - Lookup.first);
2057 for (; Lookup.first != Lookup.second; ++Lookup.first)
2058 clang::io::Emit32(Out, Writer.GetDeclRef(*Lookup.first));
2059
2060 assert(Out.tell() - Start == DataLen && "Data length is wrong");
2061 }
2062};
2063} // end anonymous namespace
2064
Argyrios Kyrtzidisba88bfa2010-08-20 16:04:35 +00002065/// \brief Write the block containing all of the declaration IDs
2066/// visible from the given DeclContext.
2067///
2068/// \returns the offset of the DECL_CONTEXT_VISIBLE block within the
Sebastian Redla4071b42010-08-24 00:50:09 +00002069/// bitstream, or 0 if no block was written.
Argyrios Kyrtzidisba88bfa2010-08-20 16:04:35 +00002070uint64_t ASTWriter::WriteDeclContextVisibleBlock(ASTContext &Context,
2071 DeclContext *DC) {
2072 if (DC->getPrimaryContext() != DC)
2073 return 0;
2074
2075 // Since there is no name lookup into functions or methods, don't bother to
2076 // build a visible-declarations table for these entities.
2077 if (DC->isFunctionOrMethod())
2078 return 0;
2079
2080 // If not in C++, we perform name lookup for the translation unit via the
2081 // IdentifierInfo chains, don't bother to build a visible-declarations table.
2082 // FIXME: In C++ we need the visible declarations in order to "see" the
2083 // friend declarations, is there a way to do this without writing the table ?
2084 if (DC->isTranslationUnit() && !Context.getLangOptions().CPlusPlus)
2085 return 0;
2086
2087 // Force the DeclContext to build a its name-lookup table.
Argyrios Kyrtzidisd32ee892010-08-20 23:35:55 +00002088 if (DC->hasExternalVisibleStorage())
2089 DC->MaterializeVisibleDeclsFromExternalStorage();
2090 else
2091 DC->lookup(DeclarationName());
Argyrios Kyrtzidisba88bfa2010-08-20 16:04:35 +00002092
2093 // Serialize the contents of the mapping used for lookup. Note that,
2094 // although we have two very different code paths, the serialized
2095 // representation is the same for both cases: a declaration name,
2096 // followed by a size, followed by references to the visible
2097 // declarations that have that name.
2098 uint64_t Offset = Stream.GetCurrentBitNo();
2099 StoredDeclsMap *Map = static_cast<StoredDeclsMap*>(DC->getLookupPtr());
2100 if (!Map || Map->empty())
2101 return 0;
2102
2103 OnDiskChainedHashTableGenerator<ASTDeclContextNameLookupTrait> Generator;
2104 ASTDeclContextNameLookupTrait Trait(*this);
2105
2106 // Create the on-disk hash table representation.
2107 for (StoredDeclsMap::iterator D = Map->begin(), DEnd = Map->end();
2108 D != DEnd; ++D) {
2109 DeclarationName Name = D->first;
2110 DeclContext::lookup_result Result = D->second.getLookupResult();
2111 Generator.insert(Name, Result, Trait);
2112 }
2113
2114 // Create the on-disk hash table in a buffer.
2115 llvm::SmallString<4096> LookupTable;
2116 uint32_t BucketOffset;
2117 {
2118 llvm::raw_svector_ostream Out(LookupTable);
2119 // Make sure that no bucket is at offset 0
2120 clang::io::Emit32(Out, 0);
2121 BucketOffset = Generator.Emit(Out, Trait);
2122 }
2123
2124 // Write the lookup table
2125 RecordData Record;
2126 Record.push_back(DECL_CONTEXT_VISIBLE);
2127 Record.push_back(BucketOffset);
2128 Stream.EmitRecordWithBlob(DeclContextVisibleLookupAbbrev, Record,
2129 LookupTable.str());
2130
2131 Stream.EmitRecord(DECL_CONTEXT_VISIBLE, Record);
2132 ++NumVisibleDeclContexts;
2133 return Offset;
2134}
2135
Sebastian Redla4071b42010-08-24 00:50:09 +00002136/// \brief Write an UPDATE_VISIBLE block for the given context.
2137///
2138/// UPDATE_VISIBLE blocks contain the declarations that are added to an existing
2139/// DeclContext in a dependent AST file. As such, they only exist for the TU
2140/// (in C++) and for namespaces.
2141void ASTWriter::WriteDeclContextVisibleUpdate(const DeclContext *DC) {
2142 assert((DC->isTranslationUnit() || DC->isNamespace()) &&
2143 "Only TU and namespaces should have visible decl updates.");
2144
2145 // Make the context build its lookup table, but don't make it load external
2146 // decls.
2147 DC->lookup(DeclarationName());
2148
2149 StoredDeclsMap *Map = static_cast<StoredDeclsMap*>(DC->getLookupPtr());
2150 if (!Map || Map->empty())
2151 return;
2152
2153 OnDiskChainedHashTableGenerator<ASTDeclContextNameLookupTrait> Generator;
2154 ASTDeclContextNameLookupTrait Trait(*this);
2155
2156 // Create the hash table.
Sebastian Redla4071b42010-08-24 00:50:09 +00002157 for (StoredDeclsMap::iterator D = Map->begin(), DEnd = Map->end();
2158 D != DEnd; ++D) {
2159 DeclarationName Name = D->first;
2160 DeclContext::lookup_result Result = D->second.getLookupResult();
Sebastian Redl9617e7e2010-08-24 00:50:16 +00002161 // For any name that appears in this table, the results are complete, i.e.
2162 // they overwrite results from previous PCHs. Merging is always a mess.
2163 Generator.insert(Name, Result, Trait);
Sebastian Redla4071b42010-08-24 00:50:09 +00002164 }
2165
2166 // Create the on-disk hash table in a buffer.
2167 llvm::SmallString<4096> LookupTable;
2168 uint32_t BucketOffset;
2169 {
2170 llvm::raw_svector_ostream Out(LookupTable);
2171 // Make sure that no bucket is at offset 0
2172 clang::io::Emit32(Out, 0);
2173 BucketOffset = Generator.Emit(Out, Trait);
2174 }
2175
2176 // Write the lookup table
2177 RecordData Record;
2178 Record.push_back(UPDATE_VISIBLE);
2179 Record.push_back(getDeclID(cast<Decl>(DC)));
2180 Record.push_back(BucketOffset);
2181 Stream.EmitRecordWithBlob(UpdateVisibleAbbrev, Record, LookupTable.str());
2182}
2183
Sebastian Redl401b39a2010-08-24 22:50:24 +00002184/// \brief Write ADDITIONAL_TEMPLATE_SPECIALIZATIONS blocks for all templates
2185/// that have new specializations in the current AST file.
2186void ASTWriter::WriteAdditionalTemplateSpecializations() {
2187 RecordData Record;
2188 for (AdditionalTemplateSpecializationsMap::iterator
2189 I = AdditionalTemplateSpecializations.begin(),
2190 E = AdditionalTemplateSpecializations.end();
2191 I != E; ++I) {
2192 Record.clear();
2193 Record.push_back(I->first);
2194 Record.insert(Record.end(), I->second.begin(), I->second.end());
2195 Stream.EmitRecord(ADDITIONAL_TEMPLATE_SPECIALIZATIONS, Record);
2196 }
2197}
2198
Argyrios Kyrtzidis07347322010-08-20 16:04:27 +00002199//===----------------------------------------------------------------------===//
Douglas Gregorc5046832009-04-27 18:38:38 +00002200// General Serialization Routines
2201//===----------------------------------------------------------------------===//
2202
Douglas Gregorbc8a78d52009-04-15 21:30:51 +00002203/// \brief Write a record containing the given attributes.
Argyrios Kyrtzidiseb39d9a2010-10-24 17:26:40 +00002204void ASTWriter::WriteAttributes(const AttrVec &Attrs, RecordDataImpl &Record) {
Argyrios Kyrtzidis9beef8e2010-10-18 19:20:11 +00002205 Record.push_back(Attrs.size());
Alexis Huntdcfba7b2010-08-18 23:23:40 +00002206 for (AttrVec::const_iterator i = Attrs.begin(), e = Attrs.end(); i != e; ++i){
2207 const Attr * A = *i;
2208 Record.push_back(A->getKind()); // FIXME: stable encoding, target attrs
2209 AddSourceLocation(A->getLocation(), Record);
2210 Record.push_back(A->isInherited());
Douglas Gregorbc8a78d52009-04-15 21:30:51 +00002211
Alexis Huntdcfba7b2010-08-18 23:23:40 +00002212#include "clang/Serialization/AttrPCHWrite.inc"
Daniel Dunbarfc6507e2010-05-27 02:25:39 +00002213
Douglas Gregorbc8a78d52009-04-15 21:30:51 +00002214 }
Douglas Gregorbc8a78d52009-04-15 21:30:51 +00002215}
2216
Argyrios Kyrtzidiseb39d9a2010-10-24 17:26:40 +00002217void ASTWriter::AddString(llvm::StringRef Str, RecordDataImpl &Record) {
Douglas Gregorbc8a78d52009-04-15 21:30:51 +00002218 Record.push_back(Str.size());
2219 Record.insert(Record.end(), Str.begin(), Str.end());
2220}
2221
Douglas Gregore84a9da2009-04-20 20:36:09 +00002222/// \brief Note that the identifier II occurs at the given offset
2223/// within the identifier table.
Sebastian Redl55c0ad52010-08-18 23:56:21 +00002224void ASTWriter::SetIdentifierOffset(const IdentifierInfo *II, uint32_t Offset) {
Sebastian Redl539c5062010-08-18 23:57:32 +00002225 IdentID ID = IdentifierIDs[II];
Sebastian Redl42a0f6a2010-08-18 23:56:27 +00002226 // Only store offsets new to this AST file. Other identifier names are looked
Sebastian Redlff4a2952010-07-23 23:49:55 +00002227 // up earlier in the chain and thus don't need an offset.
2228 if (ID >= FirstIdentID)
2229 IdentifierOffsets[ID - FirstIdentID] = Offset;
Douglas Gregore84a9da2009-04-20 20:36:09 +00002230}
2231
Douglas Gregor95c13f52009-04-25 17:48:32 +00002232/// \brief Note that the selector Sel occurs at the given offset
2233/// within the method pool/selector table.
Sebastian Redl55c0ad52010-08-18 23:56:21 +00002234void ASTWriter::SetSelectorOffset(Selector Sel, uint32_t Offset) {
Douglas Gregor95c13f52009-04-25 17:48:32 +00002235 unsigned ID = SelectorIDs[Sel];
2236 assert(ID && "Unknown selector");
Sebastian Redld95a56e2010-08-04 18:21:41 +00002237 // Don't record offsets for selectors that are also available in a different
2238 // file.
2239 if (ID < FirstSelectorID)
2240 return;
2241 SelectorOffsets[ID - FirstSelectorID] = Offset;
Douglas Gregor95c13f52009-04-25 17:48:32 +00002242}
2243
Sebastian Redl55c0ad52010-08-18 23:56:21 +00002244ASTWriter::ASTWriter(llvm::BitstreamWriter &Stream)
Sebastian Redld95a56e2010-08-04 18:21:41 +00002245 : Stream(Stream), Chain(0), FirstDeclID(1), NextDeclID(FirstDeclID),
Sebastian Redl539c5062010-08-18 23:57:32 +00002246 FirstTypeID(NUM_PREDEF_TYPE_IDS), NextTypeID(FirstTypeID),
Sebastian Redld95a56e2010-08-04 18:21:41 +00002247 FirstIdentID(1), NextIdentID(FirstIdentID), FirstSelectorID(1),
Douglas Gregor91096292010-10-02 19:29:26 +00002248 NextSelectorID(FirstSelectorID), FirstMacroID(1), NextMacroID(FirstMacroID),
2249 CollectedStmts(&StmtsToEmit),
Sebastian Redld95a56e2010-08-04 18:21:41 +00002250 NumStatements(0), NumMacros(0), NumLexicalDeclContexts(0),
2251 NumVisibleDeclContexts(0) {
Sebastian Redl85b2a6a2010-07-14 23:45:08 +00002252}
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002253
Sebastian Redl55c0ad52010-08-18 23:56:21 +00002254void ASTWriter::WriteAST(Sema &SemaRef, MemorizeStatCalls *StatCalls,
Sebastian Redl85b2a6a2010-07-14 23:45:08 +00002255 const char *isysroot) {
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002256 // Emit the file header.
Douglas Gregor8f45df52009-04-16 22:23:12 +00002257 Stream.Emit((unsigned)'C', 8);
2258 Stream.Emit((unsigned)'P', 8);
2259 Stream.Emit((unsigned)'C', 8);
2260 Stream.Emit((unsigned)'H', 8);
Mike Stump11289f42009-09-09 15:08:12 +00002261
Chris Lattner28fa4e62009-04-26 22:26:21 +00002262 WriteBlockInfoBlock();
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002263
Sebastian Redl143413f2010-07-12 22:02:52 +00002264 if (Chain)
Sebastian Redl55c0ad52010-08-18 23:56:21 +00002265 WriteASTChain(SemaRef, StatCalls, isysroot);
Sebastian Redl143413f2010-07-12 22:02:52 +00002266 else
Sebastian Redl55c0ad52010-08-18 23:56:21 +00002267 WriteASTCore(SemaRef, StatCalls, isysroot);
Sebastian Redl143413f2010-07-12 22:02:52 +00002268}
2269
Sebastian Redl55c0ad52010-08-18 23:56:21 +00002270void ASTWriter::WriteASTCore(Sema &SemaRef, MemorizeStatCalls *StatCalls,
Sebastian Redl143413f2010-07-12 22:02:52 +00002271 const char *isysroot) {
2272 using namespace llvm;
2273
2274 ASTContext &Context = SemaRef.Context;
2275 Preprocessor &PP = SemaRef.PP;
2276
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002277 // The translation unit is the first declaration we'll emit.
2278 DeclIDs[Context.getTranslationUnitDecl()] = 1;
Sebastian Redlff4a2952010-07-23 23:49:55 +00002279 ++NextDeclID;
Douglas Gregor12bfa382009-10-17 00:13:19 +00002280 DeclTypesToEmit.push(Context.getTranslationUnitDecl());
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002281
Douglas Gregor4621c6a2009-04-22 18:49:13 +00002282 // Make sure that we emit IdentifierInfos (and any attached
2283 // declarations) for builtins.
2284 {
2285 IdentifierTable &Table = PP.getIdentifierTable();
2286 llvm::SmallVector<const char *, 32> BuiltinNames;
2287 Context.BuiltinInfo.GetBuiltinNames(BuiltinNames,
2288 Context.getLangOptions().NoBuiltin);
2289 for (unsigned I = 0, N = BuiltinNames.size(); I != N; ++I)
2290 getIdentifierRef(&Table.get(BuiltinNames[I]));
2291 }
2292
Chris Lattner0c797362009-09-08 18:19:27 +00002293 // Build a record containing all of the tentative definitions in this file, in
Sebastian Redl35351a92010-01-31 22:27:38 +00002294 // TentativeDefinitions order. Generally, this record will be empty for
Chris Lattner0c797362009-09-08 18:19:27 +00002295 // headers.
Douglas Gregord4df8652009-04-22 22:02:47 +00002296 RecordData TentativeDefinitions;
Sebastian Redl35351a92010-01-31 22:27:38 +00002297 for (unsigned i = 0, e = SemaRef.TentativeDefinitions.size(); i != e; ++i) {
2298 AddDeclRef(SemaRef.TentativeDefinitions[i], TentativeDefinitions);
Chris Lattner0c797362009-09-08 18:19:27 +00002299 }
Douglas Gregord4df8652009-04-22 22:02:47 +00002300
Argyrios Kyrtzidis35672e72010-08-13 18:42:17 +00002301 // Build a record containing all of the file scoped decls in this file.
2302 RecordData UnusedFileScopedDecls;
2303 for (unsigned i=0, e = SemaRef.UnusedFileScopedDecls.size(); i !=e; ++i)
2304 AddDeclRef(SemaRef.UnusedFileScopedDecls[i], UnusedFileScopedDecls);
Sebastian Redl08aca90252010-08-05 18:21:25 +00002305
Argyrios Kyrtzidisee1afa32010-08-05 09:48:08 +00002306 RecordData WeakUndeclaredIdentifiers;
2307 if (!SemaRef.WeakUndeclaredIdentifiers.empty()) {
2308 WeakUndeclaredIdentifiers.push_back(
2309 SemaRef.WeakUndeclaredIdentifiers.size());
2310 for (llvm::DenseMap<IdentifierInfo*,Sema::WeakInfo>::iterator
2311 I = SemaRef.WeakUndeclaredIdentifiers.begin(),
2312 E = SemaRef.WeakUndeclaredIdentifiers.end(); I != E; ++I) {
2313 AddIdentifierRef(I->first, WeakUndeclaredIdentifiers);
2314 AddIdentifierRef(I->second.getAlias(), WeakUndeclaredIdentifiers);
2315 AddSourceLocation(I->second.getLocation(), WeakUndeclaredIdentifiers);
2316 WeakUndeclaredIdentifiers.push_back(I->second.getUsed());
2317 }
2318 }
Kovarththanan Rajaratnama9c81a82010-03-14 07:06:50 +00002319
Douglas Gregoracfc76c2009-04-22 22:18:58 +00002320 // Build a record containing all of the locally-scoped external
2321 // declarations in this header file. Generally, this record will be
2322 // empty.
2323 RecordData LocallyScopedExternalDecls;
Sebastian Redl42a0f6a2010-08-18 23:56:27 +00002324 // FIXME: This is filling in the AST file in densemap order which is
Chris Lattner0c797362009-09-08 18:19:27 +00002325 // nondeterminstic!
Mike Stump11289f42009-09-09 15:08:12 +00002326 for (llvm::DenseMap<DeclarationName, NamedDecl *>::iterator
Douglas Gregoracfc76c2009-04-22 22:18:58 +00002327 TD = SemaRef.LocallyScopedExternalDecls.begin(),
2328 TDEnd = SemaRef.LocallyScopedExternalDecls.end();
2329 TD != TDEnd; ++TD)
2330 AddDeclRef(TD->second, LocallyScopedExternalDecls);
2331
Douglas Gregor61cac2b2009-04-27 20:06:05 +00002332 // Build a record containing all of the ext_vector declarations.
2333 RecordData ExtVectorDecls;
2334 for (unsigned I = 0, N = SemaRef.ExtVectorDecls.size(); I != N; ++I)
2335 AddDeclRef(SemaRef.ExtVectorDecls[I], ExtVectorDecls);
2336
Argyrios Kyrtzidisaf2eac22010-07-06 15:37:04 +00002337 // Build a record containing all of the VTable uses information.
2338 RecordData VTableUses;
Argyrios Kyrtzidisedee67f2010-08-03 17:29:52 +00002339 if (!SemaRef.VTableUses.empty()) {
2340 VTableUses.push_back(SemaRef.VTableUses.size());
2341 for (unsigned I = 0, N = SemaRef.VTableUses.size(); I != N; ++I) {
2342 AddDeclRef(SemaRef.VTableUses[I].first, VTableUses);
2343 AddSourceLocation(SemaRef.VTableUses[I].second, VTableUses);
2344 VTableUses.push_back(SemaRef.VTablesUsed[SemaRef.VTableUses[I].first]);
2345 }
Argyrios Kyrtzidisaf2eac22010-07-06 15:37:04 +00002346 }
2347
2348 // Build a record containing all of dynamic classes declarations.
2349 RecordData DynamicClasses;
2350 for (unsigned I = 0, N = SemaRef.DynamicClasses.size(); I != N; ++I)
2351 AddDeclRef(SemaRef.DynamicClasses[I], DynamicClasses);
2352
Argyrios Kyrtzidis7f76d112010-08-05 09:48:16 +00002353 // Build a record containing all of pending implicit instantiations.
Chandler Carruth54080172010-08-25 08:44:16 +00002354 RecordData PendingInstantiations;
Argyrios Kyrtzidis7f76d112010-08-05 09:48:16 +00002355 for (std::deque<Sema::PendingImplicitInstantiation>::iterator
Chandler Carruth54080172010-08-25 08:44:16 +00002356 I = SemaRef.PendingInstantiations.begin(),
2357 N = SemaRef.PendingInstantiations.end(); I != N; ++I) {
2358 AddDeclRef(I->first, PendingInstantiations);
2359 AddSourceLocation(I->second, PendingInstantiations);
Argyrios Kyrtzidis7f76d112010-08-05 09:48:16 +00002360 }
2361 assert(SemaRef.PendingLocalImplicitInstantiations.empty() &&
2362 "There are local ones at end of translation unit!");
2363
Argyrios Kyrtzidis2d688102010-08-02 07:14:54 +00002364 // Build a record containing some declaration references.
2365 RecordData SemaDeclRefs;
2366 if (SemaRef.StdNamespace || SemaRef.StdBadAlloc) {
2367 AddDeclRef(SemaRef.getStdNamespace(), SemaDeclRefs);
2368 AddDeclRef(SemaRef.getStdBadAlloc(), SemaDeclRefs);
2369 }
2370
Sebastian Redl42a0f6a2010-08-18 23:56:27 +00002371 // Write the remaining AST contents.
Douglas Gregor652d82a2009-04-18 05:55:16 +00002372 RecordData Record;
Sebastian Redl539c5062010-08-18 23:57:32 +00002373 Stream.EnterSubblock(AST_BLOCK_ID, 5);
Sebastian Redl85b2a6a2010-07-14 23:45:08 +00002374 WriteMetadata(Context, isysroot);
Sebastian Redl143413f2010-07-12 22:02:52 +00002375 WriteLanguageOptions(Context.getLangOptions());
Douglas Gregor0086a5a2009-07-07 00:12:59 +00002376 if (StatCalls && !isysroot)
Douglas Gregor11cfd942010-07-12 23:48:14 +00002377 WriteStatCache(*StatCalls);
Douglas Gregor0086a5a2009-07-07 00:12:59 +00002378 WriteSourceManagerBlock(Context.getSourceManager(), PP, isysroot);
Steve Naroffc277ad12009-07-18 15:33:26 +00002379 // Write the record of special types.
2380 Record.clear();
Mike Stump11289f42009-09-09 15:08:12 +00002381
Steve Naroffc277ad12009-07-18 15:33:26 +00002382 AddTypeRef(Context.getBuiltinVaListType(), Record);
2383 AddTypeRef(Context.getObjCIdType(), Record);
2384 AddTypeRef(Context.getObjCSelType(), Record);
2385 AddTypeRef(Context.getObjCProtoType(), Record);
2386 AddTypeRef(Context.getObjCClassType(), Record);
2387 AddTypeRef(Context.getRawCFConstantStringType(), Record);
2388 AddTypeRef(Context.getRawObjCFastEnumerationStateType(), Record);
2389 AddTypeRef(Context.getFILEType(), Record);
Mike Stumpa4de80b2009-07-28 02:25:19 +00002390 AddTypeRef(Context.getjmp_bufType(), Record);
2391 AddTypeRef(Context.getsigjmp_bufType(), Record);
Douglas Gregora8eed7d2009-08-21 00:27:50 +00002392 AddTypeRef(Context.ObjCIdRedefinitionType, Record);
2393 AddTypeRef(Context.ObjCClassRedefinitionType, Record);
Mike Stumpd0153282009-10-20 02:12:22 +00002394 AddTypeRef(Context.getRawBlockdescriptorType(), Record);
Mike Stumpe1b19ba2009-10-22 00:49:09 +00002395 AddTypeRef(Context.getRawBlockdescriptorExtendedType(), Record);
Fariborz Jahaniane804c282010-04-23 17:41:07 +00002396 AddTypeRef(Context.ObjCSelRedefinitionType, Record);
2397 AddTypeRef(Context.getRawNSConstantStringType(), Record);
Argyrios Kyrtzidise862cbc2010-07-04 21:44:19 +00002398 Record.push_back(Context.isInt128Installed());
Sebastian Redl539c5062010-08-18 23:57:32 +00002399 Stream.EmitRecord(SPECIAL_TYPES, Record);
Mike Stump11289f42009-09-09 15:08:12 +00002400
Douglas Gregor1970d882009-04-26 03:49:13 +00002401 // Keep writing types and declarations until all types and
2402 // declarations have been written.
Sebastian Redl539c5062010-08-18 23:57:32 +00002403 Stream.EnterSubblock(DECLTYPES_BLOCK_ID, 3);
Douglas Gregor12bfa382009-10-17 00:13:19 +00002404 WriteDeclsBlockAbbrevs();
2405 while (!DeclTypesToEmit.empty()) {
2406 DeclOrType DOT = DeclTypesToEmit.front();
2407 DeclTypesToEmit.pop();
2408 if (DOT.isType())
2409 WriteType(DOT.getType());
2410 else
2411 WriteDecl(Context, DOT.getDecl());
2412 }
2413 Stream.ExitBlock();
Kovarththanan Rajaratnama9c81a82010-03-14 07:06:50 +00002414
Douglas Gregor45053152009-10-17 17:25:45 +00002415 WritePreprocessor(PP);
Sebastian Redla19a67f2010-08-03 21:58:15 +00002416 WriteSelectors(SemaRef);
Fariborz Jahanianc51609a2010-07-23 19:11:11 +00002417 WriteReferencedSelectorsPool(SemaRef);
Douglas Gregorc3366a52009-04-21 23:56:24 +00002418 WriteIdentifierTable(PP);
Douglas Gregor745ed142009-04-25 18:35:21 +00002419
Sebastian Redl1ea025b2010-07-16 16:36:56 +00002420 WriteTypeDeclOffsets();
Douglas Gregor652d82a2009-04-18 05:55:16 +00002421
Douglas Gregord4df8652009-04-22 22:02:47 +00002422 // Write the record containing external, unnamed definitions.
Douglas Gregor1a0d0b92009-04-14 00:24:19 +00002423 if (!ExternalDefinitions.empty())
Sebastian Redl539c5062010-08-18 23:57:32 +00002424 Stream.EmitRecord(EXTERNAL_DEFINITIONS, ExternalDefinitions);
Douglas Gregord4df8652009-04-22 22:02:47 +00002425
2426 // Write the record containing tentative definitions.
2427 if (!TentativeDefinitions.empty())
Sebastian Redl539c5062010-08-18 23:57:32 +00002428 Stream.EmitRecord(TENTATIVE_DEFINITIONS, TentativeDefinitions);
Douglas Gregoracfc76c2009-04-22 22:18:58 +00002429
Argyrios Kyrtzidis35672e72010-08-13 18:42:17 +00002430 // Write the record containing unused file scoped decls.
2431 if (!UnusedFileScopedDecls.empty())
Sebastian Redl539c5062010-08-18 23:57:32 +00002432 Stream.EmitRecord(UNUSED_FILESCOPED_DECLS, UnusedFileScopedDecls);
Kovarththanan Rajaratnama9c81a82010-03-14 07:06:50 +00002433
Argyrios Kyrtzidisee1afa32010-08-05 09:48:08 +00002434 // Write the record containing weak undeclared identifiers.
2435 if (!WeakUndeclaredIdentifiers.empty())
Sebastian Redl539c5062010-08-18 23:57:32 +00002436 Stream.EmitRecord(WEAK_UNDECLARED_IDENTIFIERS,
Argyrios Kyrtzidisee1afa32010-08-05 09:48:08 +00002437 WeakUndeclaredIdentifiers);
2438
Douglas Gregoracfc76c2009-04-22 22:18:58 +00002439 // Write the record containing locally-scoped external definitions.
2440 if (!LocallyScopedExternalDecls.empty())
Sebastian Redl539c5062010-08-18 23:57:32 +00002441 Stream.EmitRecord(LOCALLY_SCOPED_EXTERNAL_DECLS,
Douglas Gregoracfc76c2009-04-22 22:18:58 +00002442 LocallyScopedExternalDecls);
Douglas Gregor61cac2b2009-04-27 20:06:05 +00002443
2444 // Write the record containing ext_vector type names.
2445 if (!ExtVectorDecls.empty())
Sebastian Redl539c5062010-08-18 23:57:32 +00002446 Stream.EmitRecord(EXT_VECTOR_DECLS, ExtVectorDecls);
Mike Stump11289f42009-09-09 15:08:12 +00002447
Argyrios Kyrtzidisaf2eac22010-07-06 15:37:04 +00002448 // Write the record containing VTable uses information.
2449 if (!VTableUses.empty())
Sebastian Redl539c5062010-08-18 23:57:32 +00002450 Stream.EmitRecord(VTABLE_USES, VTableUses);
Argyrios Kyrtzidisaf2eac22010-07-06 15:37:04 +00002451
2452 // Write the record containing dynamic classes declarations.
2453 if (!DynamicClasses.empty())
Sebastian Redl539c5062010-08-18 23:57:32 +00002454 Stream.EmitRecord(DYNAMIC_CLASSES, DynamicClasses);
Argyrios Kyrtzidisaf2eac22010-07-06 15:37:04 +00002455
Argyrios Kyrtzidis7f76d112010-08-05 09:48:16 +00002456 // Write the record containing pending implicit instantiations.
Chandler Carruth54080172010-08-25 08:44:16 +00002457 if (!PendingInstantiations.empty())
2458 Stream.EmitRecord(PENDING_IMPLICIT_INSTANTIATIONS, PendingInstantiations);
Argyrios Kyrtzidis7f76d112010-08-05 09:48:16 +00002459
Argyrios Kyrtzidis2d688102010-08-02 07:14:54 +00002460 // Write the record containing declaration references of Sema.
2461 if (!SemaDeclRefs.empty())
Sebastian Redl539c5062010-08-18 23:57:32 +00002462 Stream.EmitRecord(SEMA_DECL_REFS, SemaDeclRefs);
Argyrios Kyrtzidis2d688102010-08-02 07:14:54 +00002463
Douglas Gregor08f01292009-04-17 22:13:46 +00002464 // Some simple statistics
Douglas Gregor652d82a2009-04-18 05:55:16 +00002465 Record.clear();
Douglas Gregor08f01292009-04-17 22:13:46 +00002466 Record.push_back(NumStatements);
Douglas Gregorc3366a52009-04-21 23:56:24 +00002467 Record.push_back(NumMacros);
Douglas Gregora57c3ab2009-04-22 22:34:57 +00002468 Record.push_back(NumLexicalDeclContexts);
2469 Record.push_back(NumVisibleDeclContexts);
Sebastian Redl539c5062010-08-18 23:57:32 +00002470 Stream.EmitRecord(STATISTICS, Record);
Douglas Gregor8f45df52009-04-16 22:23:12 +00002471 Stream.ExitBlock();
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002472}
2473
Sebastian Redl55c0ad52010-08-18 23:56:21 +00002474void ASTWriter::WriteASTChain(Sema &SemaRef, MemorizeStatCalls *StatCalls,
Sebastian Redl85b2a6a2010-07-14 23:45:08 +00002475 const char *isysroot) {
Sebastian Redl143413f2010-07-12 22:02:52 +00002476 using namespace llvm;
2477
2478 ASTContext &Context = SemaRef.Context;
2479 Preprocessor &PP = SemaRef.PP;
Sebastian Redl1ea025b2010-07-16 16:36:56 +00002480
Sebastian Redl143413f2010-07-12 22:02:52 +00002481 RecordData Record;
Sebastian Redl539c5062010-08-18 23:57:32 +00002482 Stream.EnterSubblock(AST_BLOCK_ID, 5);
Sebastian Redl85b2a6a2010-07-14 23:45:08 +00002483 WriteMetadata(Context, isysroot);
Sebastian Redl1ea025b2010-07-16 16:36:56 +00002484 if (StatCalls && !isysroot)
2485 WriteStatCache(*StatCalls);
2486 // FIXME: Source manager block should only write new stuff, which could be
2487 // done by tracking the largest ID in the chain
2488 WriteSourceManagerBlock(Context.getSourceManager(), PP, isysroot);
Sebastian Redl143413f2010-07-12 22:02:52 +00002489
2490 // The special types are in the chained PCH.
2491
2492 // We don't start with the translation unit, but with its decls that
Sebastian Redld44cd6a2010-08-18 23:57:06 +00002493 // don't come from the chained PCH.
Sebastian Redl143413f2010-07-12 22:02:52 +00002494 const TranslationUnitDecl *TU = Context.getTranslationUnitDecl();
Argyrios Kyrtzidis0e88a562010-10-14 20:14:34 +00002495 llvm::SmallVector<KindDeclIDPair, 64> NewGlobalDecls;
Sebastian Redl66c5eef2010-07-27 00:17:23 +00002496 for (DeclContext::decl_iterator I = TU->noload_decls_begin(),
2497 E = TU->noload_decls_end();
Sebastian Redl143413f2010-07-12 22:02:52 +00002498 I != E; ++I) {
Sebastian Redl4b1f4902010-07-27 18:24:41 +00002499 if ((*I)->getPCHLevel() == 0)
Argyrios Kyrtzidis0e88a562010-10-14 20:14:34 +00002500 NewGlobalDecls.push_back(std::make_pair((*I)->getKind(), GetDeclRef(*I)));
Sebastian Redle7c1fe62010-08-13 00:28:03 +00002501 else if ((*I)->isChangedSinceDeserialization())
2502 (void)GetDeclRef(*I); // Make sure it's written, but don't record it.
Sebastian Redl143413f2010-07-12 22:02:52 +00002503 }
Sebastian Redl66c5eef2010-07-27 00:17:23 +00002504 // We also need to write a lexical updates block for the TU.
Sebastian Redl4b1f4902010-07-27 18:24:41 +00002505 llvm::BitCodeAbbrev *Abv = new llvm::BitCodeAbbrev();
Sebastian Redl539c5062010-08-18 23:57:32 +00002506 Abv->Add(llvm::BitCodeAbbrevOp(TU_UPDATE_LEXICAL));
Sebastian Redl4b1f4902010-07-27 18:24:41 +00002507 Abv->Add(llvm::BitCodeAbbrevOp(llvm::BitCodeAbbrevOp::Blob));
2508 unsigned TuUpdateLexicalAbbrev = Stream.EmitAbbrev(Abv);
2509 Record.clear();
Sebastian Redl539c5062010-08-18 23:57:32 +00002510 Record.push_back(TU_UPDATE_LEXICAL);
Sebastian Redl4b1f4902010-07-27 18:24:41 +00002511 Stream.EmitRecordWithBlob(TuUpdateLexicalAbbrev, Record,
2512 reinterpret_cast<const char*>(NewGlobalDecls.data()),
Argyrios Kyrtzidis0e88a562010-10-14 20:14:34 +00002513 NewGlobalDecls.size() * sizeof(KindDeclIDPair));
Sebastian Redla4071b42010-08-24 00:50:09 +00002514 // And in C++, a visible updates block for the TU.
2515 if (Context.getLangOptions().CPlusPlus) {
2516 Abv = new llvm::BitCodeAbbrev();
2517 Abv->Add(llvm::BitCodeAbbrevOp(UPDATE_VISIBLE));
2518 Abv->Add(llvm::BitCodeAbbrevOp(llvm::BitCodeAbbrevOp::VBR, 6));
2519 Abv->Add(llvm::BitCodeAbbrevOp(llvm::BitCodeAbbrevOp::Fixed, 32));
2520 Abv->Add(llvm::BitCodeAbbrevOp(llvm::BitCodeAbbrevOp::Blob));
2521 UpdateVisibleAbbrev = Stream.EmitAbbrev(Abv);
2522 WriteDeclContextVisibleUpdate(TU);
2523 }
Sebastian Redl143413f2010-07-12 22:02:52 +00002524
Sebastian Redl98912122010-07-27 23:01:28 +00002525 // Build a record containing all of the new tentative definitions in this
2526 // file, in TentativeDefinitions order.
2527 RecordData TentativeDefinitions;
2528 for (unsigned i = 0, e = SemaRef.TentativeDefinitions.size(); i != e; ++i) {
2529 if (SemaRef.TentativeDefinitions[i]->getPCHLevel() == 0)
2530 AddDeclRef(SemaRef.TentativeDefinitions[i], TentativeDefinitions);
2531 }
2532
Argyrios Kyrtzidis35672e72010-08-13 18:42:17 +00002533 // Build a record containing all of the file scoped decls in this file.
2534 RecordData UnusedFileScopedDecls;
2535 for (unsigned i=0, e = SemaRef.UnusedFileScopedDecls.size(); i !=e; ++i) {
2536 if (SemaRef.UnusedFileScopedDecls[i]->getPCHLevel() == 0)
2537 AddDeclRef(SemaRef.UnusedFileScopedDecls[i], UnusedFileScopedDecls);
Sebastian Redl98912122010-07-27 23:01:28 +00002538 }
2539
Sebastian Redl08aca90252010-08-05 18:21:25 +00002540 // We write the entire table, overwriting the tables from the chain.
2541 RecordData WeakUndeclaredIdentifiers;
2542 if (!SemaRef.WeakUndeclaredIdentifiers.empty()) {
2543 WeakUndeclaredIdentifiers.push_back(
2544 SemaRef.WeakUndeclaredIdentifiers.size());
2545 for (llvm::DenseMap<IdentifierInfo*,Sema::WeakInfo>::iterator
2546 I = SemaRef.WeakUndeclaredIdentifiers.begin(),
2547 E = SemaRef.WeakUndeclaredIdentifiers.end(); I != E; ++I) {
2548 AddIdentifierRef(I->first, WeakUndeclaredIdentifiers);
2549 AddIdentifierRef(I->second.getAlias(), WeakUndeclaredIdentifiers);
2550 AddSourceLocation(I->second.getLocation(), WeakUndeclaredIdentifiers);
2551 WeakUndeclaredIdentifiers.push_back(I->second.getUsed());
2552 }
2553 }
2554
Sebastian Redl98912122010-07-27 23:01:28 +00002555 // Build a record containing all of the locally-scoped external
2556 // declarations in this header file. Generally, this record will be
2557 // empty.
2558 RecordData LocallyScopedExternalDecls;
Sebastian Redl42a0f6a2010-08-18 23:56:27 +00002559 // FIXME: This is filling in the AST file in densemap order which is
Sebastian Redl98912122010-07-27 23:01:28 +00002560 // nondeterminstic!
2561 for (llvm::DenseMap<DeclarationName, NamedDecl *>::iterator
2562 TD = SemaRef.LocallyScopedExternalDecls.begin(),
2563 TDEnd = SemaRef.LocallyScopedExternalDecls.end();
2564 TD != TDEnd; ++TD) {
2565 if (TD->second->getPCHLevel() == 0)
2566 AddDeclRef(TD->second, LocallyScopedExternalDecls);
2567 }
2568
2569 // Build a record containing all of the ext_vector declarations.
2570 RecordData ExtVectorDecls;
2571 for (unsigned I = 0, N = SemaRef.ExtVectorDecls.size(); I != N; ++I) {
2572 if (SemaRef.ExtVectorDecls[I]->getPCHLevel() == 0)
2573 AddDeclRef(SemaRef.ExtVectorDecls[I], ExtVectorDecls);
2574 }
2575
Sebastian Redl08aca90252010-08-05 18:21:25 +00002576 // Build a record containing all of the VTable uses information.
2577 // We write everything here, because it's too hard to determine whether
2578 // a use is new to this part.
2579 RecordData VTableUses;
2580 if (!SemaRef.VTableUses.empty()) {
2581 VTableUses.push_back(SemaRef.VTableUses.size());
2582 for (unsigned I = 0, N = SemaRef.VTableUses.size(); I != N; ++I) {
2583 AddDeclRef(SemaRef.VTableUses[I].first, VTableUses);
2584 AddSourceLocation(SemaRef.VTableUses[I].second, VTableUses);
2585 VTableUses.push_back(SemaRef.VTablesUsed[SemaRef.VTableUses[I].first]);
2586 }
2587 }
2588
2589 // Build a record containing all of dynamic classes declarations.
2590 RecordData DynamicClasses;
2591 for (unsigned I = 0, N = SemaRef.DynamicClasses.size(); I != N; ++I)
2592 if (SemaRef.DynamicClasses[I]->getPCHLevel() == 0)
2593 AddDeclRef(SemaRef.DynamicClasses[I], DynamicClasses);
2594
2595 // Build a record containing all of pending implicit instantiations.
Chandler Carruth54080172010-08-25 08:44:16 +00002596 RecordData PendingInstantiations;
Sebastian Redl08aca90252010-08-05 18:21:25 +00002597 for (std::deque<Sema::PendingImplicitInstantiation>::iterator
Chandler Carruth54080172010-08-25 08:44:16 +00002598 I = SemaRef.PendingInstantiations.begin(),
2599 N = SemaRef.PendingInstantiations.end(); I != N; ++I) {
Sebastian Redl08aca90252010-08-05 18:21:25 +00002600 if (I->first->getPCHLevel() == 0) {
Chandler Carruth54080172010-08-25 08:44:16 +00002601 AddDeclRef(I->first, PendingInstantiations);
2602 AddSourceLocation(I->second, PendingInstantiations);
Sebastian Redl08aca90252010-08-05 18:21:25 +00002603 }
2604 }
2605 assert(SemaRef.PendingLocalImplicitInstantiations.empty() &&
2606 "There are local ones at end of translation unit!");
2607
2608 // Build a record containing some declaration references.
2609 // It's not worth the effort to avoid duplication here.
2610 RecordData SemaDeclRefs;
2611 if (SemaRef.StdNamespace || SemaRef.StdBadAlloc) {
2612 AddDeclRef(SemaRef.getStdNamespace(), SemaDeclRefs);
2613 AddDeclRef(SemaRef.getStdBadAlloc(), SemaDeclRefs);
2614 }
2615
Sebastian Redl539c5062010-08-18 23:57:32 +00002616 Stream.EnterSubblock(DECLTYPES_BLOCK_ID, 3);
Sebastian Redl143413f2010-07-12 22:02:52 +00002617 WriteDeclsBlockAbbrevs();
2618 while (!DeclTypesToEmit.empty()) {
2619 DeclOrType DOT = DeclTypesToEmit.front();
2620 DeclTypesToEmit.pop();
2621 if (DOT.isType())
2622 WriteType(DOT.getType());
2623 else
2624 WriteDecl(Context, DOT.getDecl());
2625 }
2626 Stream.ExitBlock();
2627
Sebastian Redl98912122010-07-27 23:01:28 +00002628 WritePreprocessor(PP);
Sebastian Redl51c79d82010-08-04 22:21:29 +00002629 WriteSelectors(SemaRef);
2630 WriteReferencedSelectorsPool(SemaRef);
Sebastian Redlff4a2952010-07-23 23:49:55 +00002631 WriteIdentifierTable(PP);
Sebastian Redl1ea025b2010-07-16 16:36:56 +00002632 WriteTypeDeclOffsets();
Sebastian Redl98912122010-07-27 23:01:28 +00002633
Argyrios Kyrtzidis839bbac2010-08-03 17:30:10 +00002634 /// Build a record containing first declarations from a chained PCH and the
Sebastian Redl42a0f6a2010-08-18 23:56:27 +00002635 /// most recent declarations in this AST that they point to.
Argyrios Kyrtzidis839bbac2010-08-03 17:30:10 +00002636 RecordData FirstLatestDeclIDs;
2637 for (FirstLatestDeclMap::iterator
2638 I = FirstLatestDecls.begin(), E = FirstLatestDecls.end(); I != E; ++I) {
2639 assert(I->first->getPCHLevel() > I->second->getPCHLevel() &&
2640 "Expected first & second to be in different PCHs");
2641 AddDeclRef(I->first, FirstLatestDeclIDs);
2642 AddDeclRef(I->second, FirstLatestDeclIDs);
2643 }
2644 if (!FirstLatestDeclIDs.empty())
Sebastian Redl539c5062010-08-18 23:57:32 +00002645 Stream.EmitRecord(REDECLS_UPDATE_LATEST, FirstLatestDeclIDs);
Argyrios Kyrtzidis839bbac2010-08-03 17:30:10 +00002646
Sebastian Redl98912122010-07-27 23:01:28 +00002647 // Write the record containing external, unnamed definitions.
2648 if (!ExternalDefinitions.empty())
Sebastian Redl539c5062010-08-18 23:57:32 +00002649 Stream.EmitRecord(EXTERNAL_DEFINITIONS, ExternalDefinitions);
Sebastian Redl98912122010-07-27 23:01:28 +00002650
2651 // Write the record containing tentative definitions.
2652 if (!TentativeDefinitions.empty())
Sebastian Redl539c5062010-08-18 23:57:32 +00002653 Stream.EmitRecord(TENTATIVE_DEFINITIONS, TentativeDefinitions);
Sebastian Redl98912122010-07-27 23:01:28 +00002654
Argyrios Kyrtzidis35672e72010-08-13 18:42:17 +00002655 // Write the record containing unused file scoped decls.
2656 if (!UnusedFileScopedDecls.empty())
Sebastian Redl539c5062010-08-18 23:57:32 +00002657 Stream.EmitRecord(UNUSED_FILESCOPED_DECLS, UnusedFileScopedDecls);
Sebastian Redl98912122010-07-27 23:01:28 +00002658
Sebastian Redl08aca90252010-08-05 18:21:25 +00002659 // Write the record containing weak undeclared identifiers.
2660 if (!WeakUndeclaredIdentifiers.empty())
Sebastian Redl539c5062010-08-18 23:57:32 +00002661 Stream.EmitRecord(WEAK_UNDECLARED_IDENTIFIERS,
Sebastian Redl08aca90252010-08-05 18:21:25 +00002662 WeakUndeclaredIdentifiers);
2663
Sebastian Redl98912122010-07-27 23:01:28 +00002664 // Write the record containing locally-scoped external definitions.
2665 if (!LocallyScopedExternalDecls.empty())
Sebastian Redl539c5062010-08-18 23:57:32 +00002666 Stream.EmitRecord(LOCALLY_SCOPED_EXTERNAL_DECLS,
Sebastian Redl98912122010-07-27 23:01:28 +00002667 LocallyScopedExternalDecls);
2668
2669 // Write the record containing ext_vector type names.
2670 if (!ExtVectorDecls.empty())
Sebastian Redl539c5062010-08-18 23:57:32 +00002671 Stream.EmitRecord(EXT_VECTOR_DECLS, ExtVectorDecls);
Sebastian Redl98912122010-07-27 23:01:28 +00002672
Sebastian Redl08aca90252010-08-05 18:21:25 +00002673 // Write the record containing VTable uses information.
2674 if (!VTableUses.empty())
Sebastian Redl539c5062010-08-18 23:57:32 +00002675 Stream.EmitRecord(VTABLE_USES, VTableUses);
Sebastian Redl08aca90252010-08-05 18:21:25 +00002676
2677 // Write the record containing dynamic classes declarations.
2678 if (!DynamicClasses.empty())
Sebastian Redl539c5062010-08-18 23:57:32 +00002679 Stream.EmitRecord(DYNAMIC_CLASSES, DynamicClasses);
Sebastian Redl08aca90252010-08-05 18:21:25 +00002680
2681 // Write the record containing pending implicit instantiations.
Chandler Carruth54080172010-08-25 08:44:16 +00002682 if (!PendingInstantiations.empty())
2683 Stream.EmitRecord(PENDING_IMPLICIT_INSTANTIATIONS, PendingInstantiations);
Sebastian Redl08aca90252010-08-05 18:21:25 +00002684
2685 // Write the record containing declaration references of Sema.
2686 if (!SemaDeclRefs.empty())
Sebastian Redl539c5062010-08-18 23:57:32 +00002687 Stream.EmitRecord(SEMA_DECL_REFS, SemaDeclRefs);
Sebastian Redl98912122010-07-27 23:01:28 +00002688
Sebastian Redla4071b42010-08-24 00:50:09 +00002689 // Write the updates to C++ namespaces.
2690 for (llvm::SmallPtrSet<const NamespaceDecl *, 16>::iterator
2691 I = UpdatedNamespaces.begin(),
2692 E = UpdatedNamespaces.end();
2693 I != E; ++I)
2694 WriteDeclContextVisibleUpdate(*I);
2695
Sebastian Redl401b39a2010-08-24 22:50:24 +00002696 // Write the updates to C++ template specialization lists.
2697 if (!AdditionalTemplateSpecializations.empty())
2698 WriteAdditionalTemplateSpecializations();
2699
Argyrios Kyrtzidis97bfda92010-10-24 17:26:43 +00002700 WriteDeclUpdatesBlocks();
Argyrios Kyrtzidis65ad5692010-10-24 17:26:36 +00002701
Sebastian Redl98912122010-07-27 23:01:28 +00002702 Record.clear();
2703 Record.push_back(NumStatements);
2704 Record.push_back(NumMacros);
2705 Record.push_back(NumLexicalDeclContexts);
2706 Record.push_back(NumVisibleDeclContexts);
Argyrios Kyrtzidis97bfda92010-10-24 17:26:43 +00002707 WriteDeclReplacementsBlock();
Sebastian Redl539c5062010-08-18 23:57:32 +00002708 Stream.EmitRecord(STATISTICS, Record);
Sebastian Redl143413f2010-07-12 22:02:52 +00002709 Stream.ExitBlock();
2710}
2711
Argyrios Kyrtzidis97bfda92010-10-24 17:26:43 +00002712void ASTWriter::WriteDeclUpdatesBlocks() {
Argyrios Kyrtzidis65ad5692010-10-24 17:26:36 +00002713 if (DeclUpdates.empty())
2714 return;
2715
2716 RecordData OffsetsRecord;
2717 Stream.EnterSubblock(DECL_UPDATES_BLOCK_ID, 3);
2718 for (DeclUpdateMap::iterator
2719 I = DeclUpdates.begin(), E = DeclUpdates.end(); I != E; ++I) {
2720 const Decl *D = I->first;
2721 UpdateRecord &URec = I->second;
2722
2723 uint64_t Offset = Stream.GetCurrentBitNo();
2724 Stream.EmitRecord(DECL_UPDATES, URec);
2725
2726 OffsetsRecord.push_back(GetDeclRef(D));
2727 OffsetsRecord.push_back(Offset);
2728 }
2729 Stream.ExitBlock();
2730 Stream.EmitRecord(DECL_UPDATE_OFFSETS, OffsetsRecord);
2731}
2732
Argyrios Kyrtzidis97bfda92010-10-24 17:26:43 +00002733void ASTWriter::WriteDeclReplacementsBlock() {
Sebastian Redle7c1fe62010-08-13 00:28:03 +00002734 if (ReplacedDecls.empty())
2735 return;
2736
2737 RecordData Record;
Sebastian Redl539c5062010-08-18 23:57:32 +00002738 for (llvm::SmallVector<std::pair<DeclID, uint64_t>, 16>::iterator
Sebastian Redle7c1fe62010-08-13 00:28:03 +00002739 I = ReplacedDecls.begin(), E = ReplacedDecls.end(); I != E; ++I) {
2740 Record.push_back(I->first);
2741 Record.push_back(I->second);
2742 }
Sebastian Redl539c5062010-08-18 23:57:32 +00002743 Stream.EmitRecord(DECL_REPLACEMENTS, Record);
Sebastian Redle7c1fe62010-08-13 00:28:03 +00002744}
2745
Argyrios Kyrtzidiseb39d9a2010-10-24 17:26:40 +00002746void ASTWriter::AddSourceLocation(SourceLocation Loc, RecordDataImpl &Record) {
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002747 Record.push_back(Loc.getRawEncoding());
2748}
2749
Argyrios Kyrtzidiseb39d9a2010-10-24 17:26:40 +00002750void ASTWriter::AddSourceRange(SourceRange Range, RecordDataImpl &Record) {
Chris Lattnerca025db2010-05-07 21:43:38 +00002751 AddSourceLocation(Range.getBegin(), Record);
2752 AddSourceLocation(Range.getEnd(), Record);
2753}
2754
Argyrios Kyrtzidiseb39d9a2010-10-24 17:26:40 +00002755void ASTWriter::AddAPInt(const llvm::APInt &Value, RecordDataImpl &Record) {
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002756 Record.push_back(Value.getBitWidth());
Benjamin Kramer25f9ea62010-09-06 23:43:28 +00002757 const uint64_t *Words = Value.getRawData();
2758 Record.append(Words, Words + Value.getNumWords());
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002759}
2760
Argyrios Kyrtzidiseb39d9a2010-10-24 17:26:40 +00002761void ASTWriter::AddAPSInt(const llvm::APSInt &Value, RecordDataImpl &Record) {
Douglas Gregor1daeb692009-04-13 18:14:40 +00002762 Record.push_back(Value.isUnsigned());
2763 AddAPInt(Value, Record);
2764}
2765
Argyrios Kyrtzidiseb39d9a2010-10-24 17:26:40 +00002766void ASTWriter::AddAPFloat(const llvm::APFloat &Value, RecordDataImpl &Record) {
Douglas Gregore0a3a512009-04-14 21:55:33 +00002767 AddAPInt(Value.bitcastToAPInt(), Record);
2768}
2769
Argyrios Kyrtzidiseb39d9a2010-10-24 17:26:40 +00002770void ASTWriter::AddIdentifierRef(const IdentifierInfo *II, RecordDataImpl &Record) {
Douglas Gregor4621c6a2009-04-22 18:49:13 +00002771 Record.push_back(getIdentifierRef(II));
2772}
2773
Sebastian Redl539c5062010-08-18 23:57:32 +00002774IdentID ASTWriter::getIdentifierRef(const IdentifierInfo *II) {
Douglas Gregor4621c6a2009-04-22 18:49:13 +00002775 if (II == 0)
2776 return 0;
Douglas Gregor3ed42cb2009-04-11 00:14:32 +00002777
Sebastian Redl539c5062010-08-18 23:57:32 +00002778 IdentID &ID = IdentifierIDs[II];
Douglas Gregor3ed42cb2009-04-11 00:14:32 +00002779 if (ID == 0)
Sebastian Redlff4a2952010-07-23 23:49:55 +00002780 ID = NextIdentID++;
Douglas Gregor4621c6a2009-04-22 18:49:13 +00002781 return ID;
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002782}
2783
Sebastian Redl50e26582010-09-15 19:54:06 +00002784MacroID ASTWriter::getMacroDefinitionID(MacroDefinition *MD) {
Douglas Gregoraae92242010-03-19 21:51:54 +00002785 if (MD == 0)
2786 return 0;
Sebastian Redl50e26582010-09-15 19:54:06 +00002787
2788 MacroID &ID = MacroDefinitions[MD];
Douglas Gregoraae92242010-03-19 21:51:54 +00002789 if (ID == 0)
Douglas Gregor91096292010-10-02 19:29:26 +00002790 ID = NextMacroID++;
Douglas Gregoraae92242010-03-19 21:51:54 +00002791 return ID;
2792}
2793
Argyrios Kyrtzidiseb39d9a2010-10-24 17:26:40 +00002794void ASTWriter::AddSelectorRef(const Selector SelRef, RecordDataImpl &Record) {
Sebastian Redl834bb972010-08-04 17:20:04 +00002795 Record.push_back(getSelectorRef(SelRef));
2796}
2797
Sebastian Redl539c5062010-08-18 23:57:32 +00002798SelectorID ASTWriter::getSelectorRef(Selector Sel) {
Sebastian Redl834bb972010-08-04 17:20:04 +00002799 if (Sel.getAsOpaquePtr() == 0) {
2800 return 0;
Steve Naroff2ddea052009-04-23 10:39:46 +00002801 }
2802
Sebastian Redl539c5062010-08-18 23:57:32 +00002803 SelectorID &SID = SelectorIDs[Sel];
Sebastian Redld95a56e2010-08-04 18:21:41 +00002804 if (SID == 0 && Chain) {
2805 // This might trigger a ReadSelector callback, which will set the ID for
2806 // this selector.
2807 Chain->LoadSelector(Sel);
2808 }
Steve Naroff2ddea052009-04-23 10:39:46 +00002809 if (SID == 0) {
Sebastian Redld95a56e2010-08-04 18:21:41 +00002810 SID = NextSelectorID++;
Steve Naroff2ddea052009-04-23 10:39:46 +00002811 }
Sebastian Redl834bb972010-08-04 17:20:04 +00002812 return SID;
Steve Naroff2ddea052009-04-23 10:39:46 +00002813}
2814
Argyrios Kyrtzidiseb39d9a2010-10-24 17:26:40 +00002815void ASTWriter::AddCXXTemporary(const CXXTemporary *Temp, RecordDataImpl &Record) {
Chris Lattnercba86142010-05-10 00:25:06 +00002816 AddDeclRef(Temp->getDestructor(), Record);
2817}
2818
Sebastian Redl55c0ad52010-08-18 23:56:21 +00002819void ASTWriter::AddTemplateArgumentLocInfo(TemplateArgument::ArgKind Kind,
Argyrios Kyrtzidisae85e242010-06-22 09:54:59 +00002820 const TemplateArgumentLocInfo &Arg,
Argyrios Kyrtzidiseb39d9a2010-10-24 17:26:40 +00002821 RecordDataImpl &Record) {
Argyrios Kyrtzidisae85e242010-06-22 09:54:59 +00002822 switch (Kind) {
John McCall0ad16662009-10-29 08:12:44 +00002823 case TemplateArgument::Expression:
Argyrios Kyrtzidisae85e242010-06-22 09:54:59 +00002824 AddStmt(Arg.getAsExpr());
John McCall0ad16662009-10-29 08:12:44 +00002825 break;
2826 case TemplateArgument::Type:
Argyrios Kyrtzidisae85e242010-06-22 09:54:59 +00002827 AddTypeSourceInfo(Arg.getAsTypeSourceInfo(), Record);
John McCall0ad16662009-10-29 08:12:44 +00002828 break;
Douglas Gregor9167f8b2009-11-11 01:00:40 +00002829 case TemplateArgument::Template:
Argyrios Kyrtzidisddf5f212010-06-28 09:31:42 +00002830 AddSourceRange(Arg.getTemplateQualifierRange(), Record);
2831 AddSourceLocation(Arg.getTemplateNameLoc(), Record);
Douglas Gregor9167f8b2009-11-11 01:00:40 +00002832 break;
John McCall0ad16662009-10-29 08:12:44 +00002833 case TemplateArgument::Null:
2834 case TemplateArgument::Integral:
2835 case TemplateArgument::Declaration:
2836 case TemplateArgument::Pack:
2837 break;
2838 }
2839}
2840
Sebastian Redl55c0ad52010-08-18 23:56:21 +00002841void ASTWriter::AddTemplateArgumentLoc(const TemplateArgumentLoc &Arg,
Argyrios Kyrtzidiseb39d9a2010-10-24 17:26:40 +00002842 RecordDataImpl &Record) {
Argyrios Kyrtzidisae85e242010-06-22 09:54:59 +00002843 AddTemplateArgument(Arg.getArgument(), Record);
Argyrios Kyrtzidisddf5f212010-06-28 09:31:42 +00002844
2845 if (Arg.getArgument().getKind() == TemplateArgument::Expression) {
2846 bool InfoHasSameExpr
2847 = Arg.getArgument().getAsExpr() == Arg.getLocInfo().getAsExpr();
2848 Record.push_back(InfoHasSameExpr);
2849 if (InfoHasSameExpr)
2850 return; // Avoid storing the same expr twice.
2851 }
Argyrios Kyrtzidisae85e242010-06-22 09:54:59 +00002852 AddTemplateArgumentLocInfo(Arg.getArgument().getKind(), Arg.getLocInfo(),
2853 Record);
2854}
2855
Argyrios Kyrtzidiseb39d9a2010-10-24 17:26:40 +00002856void ASTWriter::AddTypeSourceInfo(TypeSourceInfo *TInfo, RecordDataImpl &Record) {
John McCallbcd03502009-12-07 02:54:59 +00002857 if (TInfo == 0) {
John McCall8f115c62009-10-16 21:56:05 +00002858 AddTypeRef(QualType(), Record);
2859 return;
2860 }
2861
John McCallbcd03502009-12-07 02:54:59 +00002862 AddTypeRef(TInfo->getType(), Record);
John McCall8f115c62009-10-16 21:56:05 +00002863 TypeLocWriter TLW(*this, Record);
John McCallbcd03502009-12-07 02:54:59 +00002864 for (TypeLoc TL = TInfo->getTypeLoc(); !TL.isNull(); TL = TL.getNextTypeLoc())
Kovarththanan Rajaratnama9c81a82010-03-14 07:06:50 +00002865 TLW.Visit(TL);
John McCall8f115c62009-10-16 21:56:05 +00002866}
2867
Argyrios Kyrtzidiseb39d9a2010-10-24 17:26:40 +00002868void ASTWriter::AddTypeRef(QualType T, RecordDataImpl &Record) {
Argyrios Kyrtzidis9ab44ea2010-08-20 16:04:14 +00002869 Record.push_back(GetOrCreateTypeID(T));
2870}
2871
2872TypeID ASTWriter::GetOrCreateTypeID(QualType T) {
Argyrios Kyrtzidis082e4612010-08-20 16:04:20 +00002873 return MakeTypeID(T,
2874 std::bind1st(std::mem_fun(&ASTWriter::GetOrCreateTypeIdx), this));
2875}
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002876
Argyrios Kyrtzidis07347322010-08-20 16:04:27 +00002877TypeID ASTWriter::getTypeID(QualType T) const {
Argyrios Kyrtzidis082e4612010-08-20 16:04:20 +00002878 return MakeTypeID(T,
2879 std::bind1st(std::mem_fun(&ASTWriter::getTypeIdx), this));
Argyrios Kyrtzidise394f2c2010-08-20 16:04:09 +00002880}
2881
2882TypeIdx ASTWriter::GetOrCreateTypeIdx(QualType T) {
2883 if (T.isNull())
2884 return TypeIdx();
2885 assert(!T.getLocalFastQualifiers());
2886
Argyrios Kyrtzidisa7fbbb02010-08-20 16:04:04 +00002887 TypeIdx &Idx = TypeIdxs[T];
Argyrios Kyrtzidisbb5c7eae2010-08-20 16:03:59 +00002888 if (Idx.getIndex() == 0) {
Douglas Gregor1970d882009-04-26 03:49:13 +00002889 // We haven't seen this type before. Assign it a new ID and put it
John McCall8ccfcb52009-09-24 19:53:00 +00002890 // into the queue of types to emit.
Argyrios Kyrtzidisbb5c7eae2010-08-20 16:03:59 +00002891 Idx = TypeIdx(NextTypeID++);
Douglas Gregor12bfa382009-10-17 00:13:19 +00002892 DeclTypesToEmit.push(T);
Douglas Gregor1970d882009-04-26 03:49:13 +00002893 }
Argyrios Kyrtzidise394f2c2010-08-20 16:04:09 +00002894 return Idx;
2895}
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002896
Argyrios Kyrtzidis07347322010-08-20 16:04:27 +00002897TypeIdx ASTWriter::getTypeIdx(QualType T) const {
Argyrios Kyrtzidise394f2c2010-08-20 16:04:09 +00002898 if (T.isNull())
2899 return TypeIdx();
2900 assert(!T.getLocalFastQualifiers());
2901
Argyrios Kyrtzidis07347322010-08-20 16:04:27 +00002902 TypeIdxMap::const_iterator I = TypeIdxs.find(T);
2903 assert(I != TypeIdxs.end() && "Type not emitted!");
2904 return I->second;
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002905}
2906
Argyrios Kyrtzidis65ad5692010-10-24 17:26:36 +00002907void ASTWriter::AddDeclRef(const Decl *D, RecordDataImpl &Record) {
Sebastian Redl66c5eef2010-07-27 00:17:23 +00002908 Record.push_back(GetDeclRef(D));
2909}
2910
Sebastian Redl539c5062010-08-18 23:57:32 +00002911DeclID ASTWriter::GetDeclRef(const Decl *D) {
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002912 if (D == 0) {
Sebastian Redl66c5eef2010-07-27 00:17:23 +00002913 return 0;
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002914 }
Douglas Gregor9b3932c2010-10-05 18:37:06 +00002915 assert(!(reinterpret_cast<uintptr_t>(D) & 0x01) && "Invalid decl pointer");
Sebastian Redl539c5062010-08-18 23:57:32 +00002916 DeclID &ID = DeclIDs[D];
Mike Stump11289f42009-09-09 15:08:12 +00002917 if (ID == 0) {
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002918 // We haven't seen this declaration before. Give it a new ID and
2919 // enqueue it in the list of declarations to emit.
Sebastian Redlff4a2952010-07-23 23:49:55 +00002920 ID = NextDeclID++;
Douglas Gregor12bfa382009-10-17 00:13:19 +00002921 DeclTypesToEmit.push(const_cast<Decl *>(D));
Sebastian Redle7c1fe62010-08-13 00:28:03 +00002922 } else if (ID < FirstDeclID && D->isChangedSinceDeserialization()) {
2923 // We don't add it to the replacement collection here, because we don't
2924 // have the offset yet.
2925 DeclTypesToEmit.push(const_cast<Decl *>(D));
2926 // Reset the flag, so that we don't add this decl multiple times.
2927 const_cast<Decl *>(D)->setChangedSinceDeserialization(false);
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002928 }
2929
Sebastian Redl66c5eef2010-07-27 00:17:23 +00002930 return ID;
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002931}
2932
Sebastian Redl539c5062010-08-18 23:57:32 +00002933DeclID ASTWriter::getDeclID(const Decl *D) {
Douglas Gregore84a9da2009-04-20 20:36:09 +00002934 if (D == 0)
2935 return 0;
2936
2937 assert(DeclIDs.find(D) != DeclIDs.end() && "Declaration not emitted!");
2938 return DeclIDs[D];
2939}
2940
Argyrios Kyrtzidiseb39d9a2010-10-24 17:26:40 +00002941void ASTWriter::AddDeclarationName(DeclarationName Name, RecordDataImpl &Record) {
Chris Lattner258172e2009-04-27 07:35:58 +00002942 // FIXME: Emit a stable enum for NameKind. 0 = Identifier etc.
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002943 Record.push_back(Name.getNameKind());
2944 switch (Name.getNameKind()) {
2945 case DeclarationName::Identifier:
2946 AddIdentifierRef(Name.getAsIdentifierInfo(), Record);
2947 break;
2948
2949 case DeclarationName::ObjCZeroArgSelector:
2950 case DeclarationName::ObjCOneArgSelector:
2951 case DeclarationName::ObjCMultiArgSelector:
Steve Naroff2ddea052009-04-23 10:39:46 +00002952 AddSelectorRef(Name.getObjCSelector(), Record);
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002953 break;
2954
2955 case DeclarationName::CXXConstructorName:
2956 case DeclarationName::CXXDestructorName:
2957 case DeclarationName::CXXConversionFunctionName:
2958 AddTypeRef(Name.getCXXNameType(), Record);
2959 break;
2960
2961 case DeclarationName::CXXOperatorName:
2962 Record.push_back(Name.getCXXOverloadedOperator());
2963 break;
2964
Alexis Hunt3d221f22009-11-29 07:34:05 +00002965 case DeclarationName::CXXLiteralOperatorName:
2966 AddIdentifierRef(Name.getCXXLiteralIdentifier(), Record);
2967 break;
2968
Douglas Gregoref84c4b2009-04-09 22:27:44 +00002969 case DeclarationName::CXXUsingDirective:
2970 // No extra data to emit
2971 break;
2972 }
2973}
Chris Lattnerca025db2010-05-07 21:43:38 +00002974
Argyrios Kyrtzidis434383d2010-10-15 18:21:24 +00002975void ASTWriter::AddDeclarationNameLoc(const DeclarationNameLoc &DNLoc,
Argyrios Kyrtzidiseb39d9a2010-10-24 17:26:40 +00002976 DeclarationName Name, RecordDataImpl &Record) {
Argyrios Kyrtzidis434383d2010-10-15 18:21:24 +00002977 switch (Name.getNameKind()) {
2978 case DeclarationName::CXXConstructorName:
2979 case DeclarationName::CXXDestructorName:
2980 case DeclarationName::CXXConversionFunctionName:
2981 AddTypeSourceInfo(DNLoc.NamedType.TInfo, Record);
2982 break;
2983
2984 case DeclarationName::CXXOperatorName:
2985 AddSourceLocation(
2986 SourceLocation::getFromRawEncoding(DNLoc.CXXOperatorName.BeginOpNameLoc),
2987 Record);
2988 AddSourceLocation(
2989 SourceLocation::getFromRawEncoding(DNLoc.CXXOperatorName.EndOpNameLoc),
2990 Record);
2991 break;
2992
2993 case DeclarationName::CXXLiteralOperatorName:
2994 AddSourceLocation(
2995 SourceLocation::getFromRawEncoding(DNLoc.CXXLiteralOperatorName.OpNameLoc),
2996 Record);
2997 break;
2998
2999 case DeclarationName::Identifier:
3000 case DeclarationName::ObjCZeroArgSelector:
3001 case DeclarationName::ObjCOneArgSelector:
3002 case DeclarationName::ObjCMultiArgSelector:
3003 case DeclarationName::CXXUsingDirective:
3004 break;
3005 }
3006}
3007
3008void ASTWriter::AddDeclarationNameInfo(const DeclarationNameInfo &NameInfo,
Argyrios Kyrtzidiseb39d9a2010-10-24 17:26:40 +00003009 RecordDataImpl &Record) {
Argyrios Kyrtzidis434383d2010-10-15 18:21:24 +00003010 AddDeclarationName(NameInfo.getName(), Record);
3011 AddSourceLocation(NameInfo.getLoc(), Record);
3012 AddDeclarationNameLoc(NameInfo.getInfo(), NameInfo.getName(), Record);
3013}
3014
3015void ASTWriter::AddQualifierInfo(const QualifierInfo &Info,
Argyrios Kyrtzidiseb39d9a2010-10-24 17:26:40 +00003016 RecordDataImpl &Record) {
Argyrios Kyrtzidis434383d2010-10-15 18:21:24 +00003017 AddNestedNameSpecifier(Info.NNS, Record);
3018 AddSourceRange(Info.NNSRange, Record);
3019 Record.push_back(Info.NumTemplParamLists);
3020 for (unsigned i=0, e=Info.NumTemplParamLists; i != e; ++i)
3021 AddTemplateParameterList(Info.TemplParamLists[i], Record);
3022}
3023
Sebastian Redl55c0ad52010-08-18 23:56:21 +00003024void ASTWriter::AddNestedNameSpecifier(NestedNameSpecifier *NNS,
Argyrios Kyrtzidiseb39d9a2010-10-24 17:26:40 +00003025 RecordDataImpl &Record) {
Chris Lattnerca025db2010-05-07 21:43:38 +00003026 // Nested name specifiers usually aren't too long. I think that 8 would
3027 // typically accomodate the vast majority.
3028 llvm::SmallVector<NestedNameSpecifier *, 8> NestedNames;
3029
3030 // Push each of the NNS's onto a stack for serialization in reverse order.
3031 while (NNS) {
3032 NestedNames.push_back(NNS);
3033 NNS = NNS->getPrefix();
3034 }
3035
3036 Record.push_back(NestedNames.size());
3037 while(!NestedNames.empty()) {
3038 NNS = NestedNames.pop_back_val();
3039 NestedNameSpecifier::SpecifierKind Kind = NNS->getKind();
3040 Record.push_back(Kind);
3041 switch (Kind) {
3042 case NestedNameSpecifier::Identifier:
3043 AddIdentifierRef(NNS->getAsIdentifier(), Record);
3044 break;
3045
3046 case NestedNameSpecifier::Namespace:
3047 AddDeclRef(NNS->getAsNamespace(), Record);
3048 break;
3049
3050 case NestedNameSpecifier::TypeSpec:
3051 case NestedNameSpecifier::TypeSpecWithTemplate:
3052 AddTypeRef(QualType(NNS->getAsType(), 0), Record);
3053 Record.push_back(Kind == NestedNameSpecifier::TypeSpecWithTemplate);
3054 break;
3055
3056 case NestedNameSpecifier::Global:
3057 // Don't need to write an associated value.
3058 break;
3059 }
3060 }
3061}
Argyrios Kyrtzidis106caf922010-06-19 19:28:53 +00003062
Argyrios Kyrtzidiseb39d9a2010-10-24 17:26:40 +00003063void ASTWriter::AddTemplateName(TemplateName Name, RecordDataImpl &Record) {
Michael J. Spencer4c0ffa82010-10-21 03:16:25 +00003064 TemplateName::NameKind Kind = Name.getKind();
Argyrios Kyrtzidis106caf922010-06-19 19:28:53 +00003065 Record.push_back(Kind);
3066 switch (Kind) {
3067 case TemplateName::Template:
3068 AddDeclRef(Name.getAsTemplateDecl(), Record);
3069 break;
3070
3071 case TemplateName::OverloadedTemplate: {
3072 OverloadedTemplateStorage *OvT = Name.getAsOverloadedTemplate();
3073 Record.push_back(OvT->size());
3074 for (OverloadedTemplateStorage::iterator I = OvT->begin(), E = OvT->end();
3075 I != E; ++I)
3076 AddDeclRef(*I, Record);
3077 break;
3078 }
Michael J. Spencer4c0ffa82010-10-21 03:16:25 +00003079
Argyrios Kyrtzidis106caf922010-06-19 19:28:53 +00003080 case TemplateName::QualifiedTemplate: {
3081 QualifiedTemplateName *QualT = Name.getAsQualifiedTemplateName();
3082 AddNestedNameSpecifier(QualT->getQualifier(), Record);
3083 Record.push_back(QualT->hasTemplateKeyword());
3084 AddDeclRef(QualT->getTemplateDecl(), Record);
3085 break;
3086 }
Michael J. Spencer4c0ffa82010-10-21 03:16:25 +00003087
Argyrios Kyrtzidis106caf922010-06-19 19:28:53 +00003088 case TemplateName::DependentTemplate: {
3089 DependentTemplateName *DepT = Name.getAsDependentTemplateName();
3090 AddNestedNameSpecifier(DepT->getQualifier(), Record);
3091 Record.push_back(DepT->isIdentifier());
3092 if (DepT->isIdentifier())
3093 AddIdentifierRef(DepT->getIdentifier(), Record);
3094 else
3095 Record.push_back(DepT->getOperator());
3096 break;
3097 }
3098 }
3099}
3100
Michael J. Spencer4c0ffa82010-10-21 03:16:25 +00003101void ASTWriter::AddTemplateArgument(const TemplateArgument &Arg,
Argyrios Kyrtzidiseb39d9a2010-10-24 17:26:40 +00003102 RecordDataImpl &Record) {
Argyrios Kyrtzidis106caf922010-06-19 19:28:53 +00003103 Record.push_back(Arg.getKind());
3104 switch (Arg.getKind()) {
3105 case TemplateArgument::Null:
3106 break;
3107 case TemplateArgument::Type:
3108 AddTypeRef(Arg.getAsType(), Record);
3109 break;
3110 case TemplateArgument::Declaration:
3111 AddDeclRef(Arg.getAsDecl(), Record);
3112 break;
3113 case TemplateArgument::Integral:
3114 AddAPSInt(*Arg.getAsIntegral(), Record);
3115 AddTypeRef(Arg.getIntegralType(), Record);
3116 break;
3117 case TemplateArgument::Template:
3118 AddTemplateName(Arg.getAsTemplate(), Record);
3119 break;
3120 case TemplateArgument::Expression:
3121 AddStmt(Arg.getAsExpr());
3122 break;
3123 case TemplateArgument::Pack:
3124 Record.push_back(Arg.pack_size());
3125 for (TemplateArgument::pack_iterator I=Arg.pack_begin(), E=Arg.pack_end();
3126 I != E; ++I)
3127 AddTemplateArgument(*I, Record);
3128 break;
3129 }
3130}
Argyrios Kyrtzidis818c5db2010-06-23 13:48:30 +00003131
3132void
Sebastian Redl55c0ad52010-08-18 23:56:21 +00003133ASTWriter::AddTemplateParameterList(const TemplateParameterList *TemplateParams,
Argyrios Kyrtzidiseb39d9a2010-10-24 17:26:40 +00003134 RecordDataImpl &Record) {
Argyrios Kyrtzidis818c5db2010-06-23 13:48:30 +00003135 assert(TemplateParams && "No TemplateParams!");
3136 AddSourceLocation(TemplateParams->getTemplateLoc(), Record);
3137 AddSourceLocation(TemplateParams->getLAngleLoc(), Record);
3138 AddSourceLocation(TemplateParams->getRAngleLoc(), Record);
3139 Record.push_back(TemplateParams->size());
3140 for (TemplateParameterList::const_iterator
3141 P = TemplateParams->begin(), PEnd = TemplateParams->end();
3142 P != PEnd; ++P)
3143 AddDeclRef(*P, Record);
3144}
3145
3146/// \brief Emit a template argument list.
3147void
Sebastian Redl55c0ad52010-08-18 23:56:21 +00003148ASTWriter::AddTemplateArgumentList(const TemplateArgumentList *TemplateArgs,
Argyrios Kyrtzidiseb39d9a2010-10-24 17:26:40 +00003149 RecordDataImpl &Record) {
Argyrios Kyrtzidis818c5db2010-06-23 13:48:30 +00003150 assert(TemplateArgs && "No TemplateArgs!");
3151 Record.push_back(TemplateArgs->flat_size());
3152 for (int i=0, e = TemplateArgs->flat_size(); i != e; ++i)
3153 AddTemplateArgument(TemplateArgs->get(i), Record);
3154}
Argyrios Kyrtzidis2c2167a2010-07-02 11:55:32 +00003155
3156
3157void
Argyrios Kyrtzidiseb39d9a2010-10-24 17:26:40 +00003158ASTWriter::AddUnresolvedSet(const UnresolvedSetImpl &Set, RecordDataImpl &Record) {
Argyrios Kyrtzidis2c2167a2010-07-02 11:55:32 +00003159 Record.push_back(Set.size());
3160 for (UnresolvedSetImpl::const_iterator
3161 I = Set.begin(), E = Set.end(); I != E; ++I) {
3162 AddDeclRef(I.getDecl(), Record);
3163 Record.push_back(I.getAccess());
3164 }
3165}
Argyrios Kyrtzidis3701fcd2010-07-02 23:30:27 +00003166
Sebastian Redl55c0ad52010-08-18 23:56:21 +00003167void ASTWriter::AddCXXBaseSpecifier(const CXXBaseSpecifier &Base,
Argyrios Kyrtzidiseb39d9a2010-10-24 17:26:40 +00003168 RecordDataImpl &Record) {
Argyrios Kyrtzidis3701fcd2010-07-02 23:30:27 +00003169 Record.push_back(Base.isVirtual());
3170 Record.push_back(Base.isBaseOfClass());
3171 Record.push_back(Base.getAccessSpecifierAsWritten());
Nick Lewycky19b9f952010-07-26 16:56:01 +00003172 AddTypeSourceInfo(Base.getTypeSourceInfo(), Record);
Argyrios Kyrtzidis3701fcd2010-07-02 23:30:27 +00003173 AddSourceRange(Base.getSourceRange(), Record);
3174}
Sebastian Redl85b2a6a2010-07-14 23:45:08 +00003175
Sebastian Redl55c0ad52010-08-18 23:56:21 +00003176void ASTWriter::AddCXXBaseOrMemberInitializers(
Argyrios Kyrtzidis5b6a03f2010-08-09 10:54:12 +00003177 const CXXBaseOrMemberInitializer * const *BaseOrMembers,
Argyrios Kyrtzidiseb39d9a2010-10-24 17:26:40 +00003178 unsigned NumBaseOrMembers, RecordDataImpl &Record) {
Argyrios Kyrtzidis5b6a03f2010-08-09 10:54:12 +00003179 Record.push_back(NumBaseOrMembers);
3180 for (unsigned i=0; i != NumBaseOrMembers; ++i) {
3181 const CXXBaseOrMemberInitializer *Init = BaseOrMembers[i];
3182
3183 Record.push_back(Init->isBaseInitializer());
3184 if (Init->isBaseInitializer()) {
3185 AddTypeSourceInfo(Init->getBaseClassInfo(), Record);
3186 Record.push_back(Init->isBaseVirtual());
3187 } else {
3188 AddDeclRef(Init->getMember(), Record);
3189 }
3190 AddSourceLocation(Init->getMemberLocation(), Record);
3191 AddStmt(Init->getInit());
3192 AddDeclRef(Init->getAnonUnionMember(), Record);
3193 AddSourceLocation(Init->getLParenLoc(), Record);
3194 AddSourceLocation(Init->getRParenLoc(), Record);
3195 Record.push_back(Init->isWritten());
3196 if (Init->isWritten()) {
3197 Record.push_back(Init->getSourceOrder());
3198 } else {
3199 Record.push_back(Init->getNumArrayIndices());
3200 for (unsigned i=0, e=Init->getNumArrayIndices(); i != e; ++i)
3201 AddDeclRef(Init->getArrayIndex(i), Record);
3202 }
3203 }
3204}
3205
Argyrios Kyrtzidiseb39d9a2010-10-24 17:26:40 +00003206void ASTWriter::AddCXXDefinitionData(const CXXRecordDecl *D, RecordDataImpl &Record) {
3207 assert(D->DefinitionData);
3208 struct CXXRecordDecl::DefinitionData &Data = *D->DefinitionData;
3209 Record.push_back(Data.UserDeclaredConstructor);
3210 Record.push_back(Data.UserDeclaredCopyConstructor);
3211 Record.push_back(Data.UserDeclaredCopyAssignment);
3212 Record.push_back(Data.UserDeclaredDestructor);
3213 Record.push_back(Data.Aggregate);
3214 Record.push_back(Data.PlainOldData);
3215 Record.push_back(Data.Empty);
3216 Record.push_back(Data.Polymorphic);
3217 Record.push_back(Data.Abstract);
3218 Record.push_back(Data.HasTrivialConstructor);
3219 Record.push_back(Data.HasTrivialCopyConstructor);
3220 Record.push_back(Data.HasTrivialCopyAssignment);
3221 Record.push_back(Data.HasTrivialDestructor);
3222 Record.push_back(Data.ComputedVisibleConversions);
3223 Record.push_back(Data.DeclaredDefaultConstructor);
3224 Record.push_back(Data.DeclaredCopyConstructor);
3225 Record.push_back(Data.DeclaredCopyAssignment);
3226 Record.push_back(Data.DeclaredDestructor);
3227
3228 Record.push_back(Data.NumBases);
3229 for (unsigned i = 0; i != Data.NumBases; ++i)
3230 AddCXXBaseSpecifier(Data.Bases[i], Record);
3231
3232 // FIXME: Make VBases lazily computed when needed to avoid storing them.
3233 Record.push_back(Data.NumVBases);
3234 for (unsigned i = 0; i != Data.NumVBases; ++i)
3235 AddCXXBaseSpecifier(Data.VBases[i], Record);
3236
3237 AddUnresolvedSet(Data.Conversions, Record);
3238 AddUnresolvedSet(Data.VisibleConversions, Record);
3239 // Data.Definition is the owning decl, no need to write it.
3240 AddDeclRef(Data.FirstFriend, Record);
3241}
3242
Argyrios Kyrtzidis65ad5692010-10-24 17:26:36 +00003243void ASTWriter::ReaderInitialized(ASTReader *Reader) {
Sebastian Redl07a89a82010-07-30 00:29:29 +00003244 assert(Reader && "Cannot remove chain");
Argyrios Kyrtzidis65ad5692010-10-24 17:26:36 +00003245 assert(!Chain && "Cannot replace chain");
Sebastian Redl07a89a82010-07-30 00:29:29 +00003246 assert(FirstDeclID == NextDeclID &&
3247 FirstTypeID == NextTypeID &&
3248 FirstIdentID == NextIdentID &&
Sebastian Redld95a56e2010-08-04 18:21:41 +00003249 FirstSelectorID == NextSelectorID &&
Douglas Gregor91096292010-10-02 19:29:26 +00003250 FirstMacroID == NextMacroID &&
Sebastian Redl07a89a82010-07-30 00:29:29 +00003251 "Setting chain after writing has started.");
3252 Chain = Reader;
Argyrios Kyrtzidis65ad5692010-10-24 17:26:36 +00003253
3254 FirstDeclID += Chain->getTotalNumDecls();
3255 FirstTypeID += Chain->getTotalNumTypes();
3256 FirstIdentID += Chain->getTotalNumIdentifiers();
3257 FirstSelectorID += Chain->getTotalNumSelectors();
3258 FirstMacroID += Chain->getTotalNumMacroDefinitions();
3259 NextDeclID = FirstDeclID;
3260 NextTypeID = FirstTypeID;
3261 NextIdentID = FirstIdentID;
3262 NextSelectorID = FirstSelectorID;
3263 NextMacroID = FirstMacroID;
Sebastian Redl07a89a82010-07-30 00:29:29 +00003264}
3265
Sebastian Redl539c5062010-08-18 23:57:32 +00003266void ASTWriter::IdentifierRead(IdentID ID, IdentifierInfo *II) {
Sebastian Redlff4a2952010-07-23 23:49:55 +00003267 IdentifierIDs[II] = ID;
3268}
3269
Argyrios Kyrtzidisbb5c7eae2010-08-20 16:03:59 +00003270void ASTWriter::TypeRead(TypeIdx Idx, QualType T) {
Douglas Gregor9b3932c2010-10-05 18:37:06 +00003271 // Always take the highest-numbered type index. This copes with an interesting
3272 // case for chained AST writing where we schedule writing the type and then,
Michael J. Spencer4c0ffa82010-10-21 03:16:25 +00003273 // later, deserialize the type from another AST. In this case, we want to
Douglas Gregor9b3932c2010-10-05 18:37:06 +00003274 // keep the higher-numbered entry so that we can properly write it out to
3275 // the AST file.
3276 TypeIdx &StoredIdx = TypeIdxs[T];
3277 if (Idx.getIndex() >= StoredIdx.getIndex())
3278 StoredIdx = Idx;
Sebastian Redl85b2a6a2010-07-14 23:45:08 +00003279}
3280
Sebastian Redl539c5062010-08-18 23:57:32 +00003281void ASTWriter::DeclRead(DeclID ID, const Decl *D) {
Sebastian Redl1ea025b2010-07-16 16:36:56 +00003282 DeclIDs[D] = ID;
Sebastian Redl85b2a6a2010-07-14 23:45:08 +00003283}
Sebastian Redl834bb972010-08-04 17:20:04 +00003284
Sebastian Redl539c5062010-08-18 23:57:32 +00003285void ASTWriter::SelectorRead(SelectorID ID, Selector S) {
Sebastian Redl834bb972010-08-04 17:20:04 +00003286 SelectorIDs[S] = ID;
3287}
Douglas Gregor91096292010-10-02 19:29:26 +00003288
Michael J. Spencer4c0ffa82010-10-21 03:16:25 +00003289void ASTWriter::MacroDefinitionRead(serialization::MacroID ID,
Douglas Gregor91096292010-10-02 19:29:26 +00003290 MacroDefinition *MD) {
3291 MacroDefinitions[MD] = ID;
3292}