blob: 27862ae59cb9060c11e79ecc3bf69ed69b49c952 [file] [log] [blame]
Sebastian Redl4ee2ad02010-08-18 23:56:31 +00001//===--- ASTWriter.cpp - AST File Writer ----------------------------------===//
Douglas Gregor2cf26342009-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 Redla4232eb2010-08-18 23:56:21 +000010// This file defines the ASTWriter class, which writes AST files.
Douglas Gregor2cf26342009-04-09 22:27:44 +000011//
12//===----------------------------------------------------------------------===//
13
Sebastian Redl7faa2ec2010-08-18 23:56:37 +000014#include "clang/Serialization/ASTWriter.h"
Argyrios Kyrtzidis0eca89e2010-08-20 16:03:52 +000015#include "ASTCommon.h"
Douglas Gregore737f502010-08-12 20:07:10 +000016#include "clang/Sema/Sema.h"
17#include "clang/Sema/IdentifierResolver.h"
Douglas Gregor2cf26342009-04-09 22:27:44 +000018#include "clang/AST/ASTContext.h"
19#include "clang/AST/Decl.h"
20#include "clang/AST/DeclContextInternals.h"
John McCall2a7fb272010-08-25 05:32:35 +000021#include "clang/AST/DeclTemplate.h"
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +000022#include "clang/AST/DeclFriend.h"
Douglas Gregor0b748912009-04-14 21:18:50 +000023#include "clang/AST/Expr.h"
John McCall7a1fad32010-08-24 07:32:53 +000024#include "clang/AST/ExprCXX.h"
Douglas Gregor2cf26342009-04-09 22:27:44 +000025#include "clang/AST/Type.h"
John McCalla1ee0c52009-10-16 21:56:05 +000026#include "clang/AST/TypeLocVisitor.h"
Sebastian Redl6ab7cd82010-08-18 23:57:17 +000027#include "clang/Serialization/ASTReader.h"
Chris Lattner7c5d24e2009-04-10 18:00:12 +000028#include "clang/Lex/MacroInfo.h"
Douglas Gregor6a5a23f2010-03-19 21:51:54 +000029#include "clang/Lex/PreprocessingRecord.h"
Chris Lattner7c5d24e2009-04-10 18:00:12 +000030#include "clang/Lex/Preprocessor.h"
Steve Naroff83d63c72009-04-24 20:03:17 +000031#include "clang/Lex/HeaderSearch.h"
Douglas Gregor14f79002009-04-10 03:52:48 +000032#include "clang/Basic/FileManager.h"
Douglas Gregor3251ceb2009-04-20 20:36:09 +000033#include "clang/Basic/OnDiskHashTable.h"
Douglas Gregor14f79002009-04-10 03:52:48 +000034#include "clang/Basic/SourceManager.h"
Douglas Gregorbd945002009-04-13 16:31:14 +000035#include "clang/Basic/SourceManagerInternals.h"
Douglas Gregor2bec0412009-04-10 21:16:55 +000036#include "clang/Basic/TargetInfo.h"
Douglas Gregorab41e632009-04-27 22:23:34 +000037#include "clang/Basic/Version.h"
Douglas Gregor17fc2232009-04-14 21:55:33 +000038#include "llvm/ADT/APFloat.h"
39#include "llvm/ADT/APInt.h"
Daniel Dunbar2596e422009-10-17 23:52:28 +000040#include "llvm/ADT/StringExtras.h"
Douglas Gregor2cf26342009-04-09 22:27:44 +000041#include "llvm/Bitcode/BitstreamWriter.h"
Douglas Gregor14f79002009-04-10 03:52:48 +000042#include "llvm/Support/MemoryBuffer.h"
Douglas Gregorb64c1932009-05-12 01:31:05 +000043#include "llvm/System/Path.h"
Chris Lattner3c304bd2009-04-11 18:40:46 +000044#include <cstdio>
Douglas Gregor2cf26342009-04-09 22:27:44 +000045using namespace clang;
Sebastian Redl8538e8d2010-08-18 23:57:32 +000046using namespace clang::serialization;
Douglas Gregor2cf26342009-04-09 22:27:44 +000047
Sebastian Redlade50002010-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 Gregor2cf26342009-04-09 22:27:44 +000057//===----------------------------------------------------------------------===//
58// Type serialization
59//===----------------------------------------------------------------------===//
Chris Lattner12b1c762009-04-27 06:16:06 +000060
Douglas Gregor2cf26342009-04-09 22:27:44 +000061namespace {
Sebastian Redl3397c552010-08-18 23:56:27 +000062 class ASTTypeWriter {
Sebastian Redla4232eb2010-08-18 23:56:21 +000063 ASTWriter &Writer;
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +000064 ASTWriter::RecordDataImpl &Record;
Douglas Gregor2cf26342009-04-09 22:27:44 +000065
66 public:
67 /// \brief Type code that corresponds to the record generated.
Sebastian Redl8538e8d2010-08-18 23:57:32 +000068 TypeCode Code;
Douglas Gregor2cf26342009-04-09 22:27:44 +000069
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +000070 ASTTypeWriter(ASTWriter &Writer, ASTWriter::RecordDataImpl &Record)
Sebastian Redl8538e8d2010-08-18 23:57:32 +000071 : Writer(Writer), Record(Record), Code(TYPE_EXT_QUAL) { }
Douglas Gregor2cf26342009-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 Gregor2cf26342009-04-09 22:27:44 +000079#include "clang/AST/TypeNodes.def"
80 };
81}
82
Sebastian Redl3397c552010-08-18 23:56:27 +000083void ASTTypeWriter::VisitBuiltinType(const BuiltinType *T) {
Douglas Gregor2cf26342009-04-09 22:27:44 +000084 assert(false && "Built-in types are never serialized");
85}
86
Sebastian Redl3397c552010-08-18 23:56:27 +000087void ASTTypeWriter::VisitComplexType(const ComplexType *T) {
Douglas Gregor2cf26342009-04-09 22:27:44 +000088 Writer.AddTypeRef(T->getElementType(), Record);
Sebastian Redl8538e8d2010-08-18 23:57:32 +000089 Code = TYPE_COMPLEX;
Douglas Gregor2cf26342009-04-09 22:27:44 +000090}
91
Sebastian Redl3397c552010-08-18 23:56:27 +000092void ASTTypeWriter::VisitPointerType(const PointerType *T) {
Douglas Gregor2cf26342009-04-09 22:27:44 +000093 Writer.AddTypeRef(T->getPointeeType(), Record);
Sebastian Redl8538e8d2010-08-18 23:57:32 +000094 Code = TYPE_POINTER;
Douglas Gregor2cf26342009-04-09 22:27:44 +000095}
96
Sebastian Redl3397c552010-08-18 23:56:27 +000097void ASTTypeWriter::VisitBlockPointerType(const BlockPointerType *T) {
Mike Stump1eb44332009-09-09 15:08:12 +000098 Writer.AddTypeRef(T->getPointeeType(), Record);
Sebastian Redl8538e8d2010-08-18 23:57:32 +000099 Code = TYPE_BLOCK_POINTER;
Douglas Gregor2cf26342009-04-09 22:27:44 +0000100}
101
Sebastian Redl3397c552010-08-18 23:56:27 +0000102void ASTTypeWriter::VisitLValueReferenceType(const LValueReferenceType *T) {
Douglas Gregor2cf26342009-04-09 22:27:44 +0000103 Writer.AddTypeRef(T->getPointeeType(), Record);
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000104 Code = TYPE_LVALUE_REFERENCE;
Douglas Gregor2cf26342009-04-09 22:27:44 +0000105}
106
Sebastian Redl3397c552010-08-18 23:56:27 +0000107void ASTTypeWriter::VisitRValueReferenceType(const RValueReferenceType *T) {
Douglas Gregor2cf26342009-04-09 22:27:44 +0000108 Writer.AddTypeRef(T->getPointeeType(), Record);
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000109 Code = TYPE_RVALUE_REFERENCE;
Douglas Gregor2cf26342009-04-09 22:27:44 +0000110}
111
Sebastian Redl3397c552010-08-18 23:56:27 +0000112void ASTTypeWriter::VisitMemberPointerType(const MemberPointerType *T) {
Mike Stump1eb44332009-09-09 15:08:12 +0000113 Writer.AddTypeRef(T->getPointeeType(), Record);
114 Writer.AddTypeRef(QualType(T->getClass(), 0), Record);
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000115 Code = TYPE_MEMBER_POINTER;
Douglas Gregor2cf26342009-04-09 22:27:44 +0000116}
117
Sebastian Redl3397c552010-08-18 23:56:27 +0000118void ASTTypeWriter::VisitArrayType(const ArrayType *T) {
Douglas Gregor2cf26342009-04-09 22:27:44 +0000119 Writer.AddTypeRef(T->getElementType(), Record);
120 Record.push_back(T->getSizeModifier()); // FIXME: stable values
John McCall0953e762009-09-24 19:53:00 +0000121 Record.push_back(T->getIndexTypeCVRQualifiers()); // FIXME: stable values
Douglas Gregor2cf26342009-04-09 22:27:44 +0000122}
123
Sebastian Redl3397c552010-08-18 23:56:27 +0000124void ASTTypeWriter::VisitConstantArrayType(const ConstantArrayType *T) {
Douglas Gregor2cf26342009-04-09 22:27:44 +0000125 VisitArrayType(T);
126 Writer.AddAPInt(T->getSize(), Record);
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000127 Code = TYPE_CONSTANT_ARRAY;
Douglas Gregor2cf26342009-04-09 22:27:44 +0000128}
129
Sebastian Redl3397c552010-08-18 23:56:27 +0000130void ASTTypeWriter::VisitIncompleteArrayType(const IncompleteArrayType *T) {
Douglas Gregor2cf26342009-04-09 22:27:44 +0000131 VisitArrayType(T);
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000132 Code = TYPE_INCOMPLETE_ARRAY;
Douglas Gregor2cf26342009-04-09 22:27:44 +0000133}
134
Sebastian Redl3397c552010-08-18 23:56:27 +0000135void ASTTypeWriter::VisitVariableArrayType(const VariableArrayType *T) {
Douglas Gregor2cf26342009-04-09 22:27:44 +0000136 VisitArrayType(T);
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +0000137 Writer.AddSourceLocation(T->getLBracketLoc(), Record);
138 Writer.AddSourceLocation(T->getRBracketLoc(), Record);
Douglas Gregorc9490c02009-04-16 22:23:12 +0000139 Writer.AddStmt(T->getSizeExpr());
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000140 Code = TYPE_VARIABLE_ARRAY;
Douglas Gregor2cf26342009-04-09 22:27:44 +0000141}
142
Sebastian Redl3397c552010-08-18 23:56:27 +0000143void ASTTypeWriter::VisitVectorType(const VectorType *T) {
Douglas Gregor2cf26342009-04-09 22:27:44 +0000144 Writer.AddTypeRef(T->getElementType(), Record);
145 Record.push_back(T->getNumElements());
Bob Wilsone86d78c2010-11-10 21:56:12 +0000146 Record.push_back(T->getVectorKind());
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000147 Code = TYPE_VECTOR;
Douglas Gregor2cf26342009-04-09 22:27:44 +0000148}
149
Sebastian Redl3397c552010-08-18 23:56:27 +0000150void ASTTypeWriter::VisitExtVectorType(const ExtVectorType *T) {
Douglas Gregor2cf26342009-04-09 22:27:44 +0000151 VisitVectorType(T);
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000152 Code = TYPE_EXT_VECTOR;
Douglas Gregor2cf26342009-04-09 22:27:44 +0000153}
154
Sebastian Redl3397c552010-08-18 23:56:27 +0000155void ASTTypeWriter::VisitFunctionType(const FunctionType *T) {
Douglas Gregor2cf26342009-04-09 22:27:44 +0000156 Writer.AddTypeRef(T->getResultType(), Record);
Rafael Espindola264ba482010-03-30 20:24:48 +0000157 FunctionType::ExtInfo C = T->getExtInfo();
158 Record.push_back(C.getNoReturn());
Rafael Espindola425ef722010-03-30 22:15:11 +0000159 Record.push_back(C.getRegParm());
Douglas Gregorab8bbf42010-01-18 17:14:39 +0000160 // FIXME: need to stabilize encoding of calling convention...
Rafael Espindola264ba482010-03-30 20:24:48 +0000161 Record.push_back(C.getCC());
Douglas Gregor2cf26342009-04-09 22:27:44 +0000162}
163
Sebastian Redl3397c552010-08-18 23:56:27 +0000164void ASTTypeWriter::VisitFunctionNoProtoType(const FunctionNoProtoType *T) {
Douglas Gregor2cf26342009-04-09 22:27:44 +0000165 VisitFunctionType(T);
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000166 Code = TYPE_FUNCTION_NO_PROTO;
Douglas Gregor2cf26342009-04-09 22:27:44 +0000167}
168
Sebastian Redl3397c552010-08-18 23:56:27 +0000169void ASTTypeWriter::VisitFunctionProtoType(const FunctionProtoType *T) {
Douglas Gregor2cf26342009-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 Redl465226e2009-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 Redl8538e8d2010-08-18 23:57:32 +0000181 Code = TYPE_FUNCTION_PROTO;
Douglas Gregor2cf26342009-04-09 22:27:44 +0000182}
183
Sebastian Redl3397c552010-08-18 23:56:27 +0000184void ASTTypeWriter::VisitUnresolvedUsingType(const UnresolvedUsingType *T) {
John McCalled976492009-12-04 22:46:56 +0000185 Writer.AddDeclRef(T->getDecl(), Record);
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000186 Code = TYPE_UNRESOLVED_USING;
John McCalled976492009-12-04 22:46:56 +0000187}
John McCalled976492009-12-04 22:46:56 +0000188
Sebastian Redl3397c552010-08-18 23:56:27 +0000189void ASTTypeWriter::VisitTypedefType(const TypedefType *T) {
Douglas Gregor2cf26342009-04-09 22:27:44 +0000190 Writer.AddDeclRef(T->getDecl(), Record);
Argyrios Kyrtzidis9763e222010-07-02 11:55:11 +0000191 assert(!T->isCanonicalUnqualified() && "Invalid typedef ?");
192 Writer.AddTypeRef(T->getCanonicalTypeInternal(), Record);
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000193 Code = TYPE_TYPEDEF;
Douglas Gregor2cf26342009-04-09 22:27:44 +0000194}
195
Sebastian Redl3397c552010-08-18 23:56:27 +0000196void ASTTypeWriter::VisitTypeOfExprType(const TypeOfExprType *T) {
Douglas Gregorc9490c02009-04-16 22:23:12 +0000197 Writer.AddStmt(T->getUnderlyingExpr());
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000198 Code = TYPE_TYPEOF_EXPR;
Douglas Gregor2cf26342009-04-09 22:27:44 +0000199}
200
Sebastian Redl3397c552010-08-18 23:56:27 +0000201void ASTTypeWriter::VisitTypeOfType(const TypeOfType *T) {
Douglas Gregor2cf26342009-04-09 22:27:44 +0000202 Writer.AddTypeRef(T->getUnderlyingType(), Record);
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000203 Code = TYPE_TYPEOF;
Douglas Gregor2cf26342009-04-09 22:27:44 +0000204}
205
Sebastian Redl3397c552010-08-18 23:56:27 +0000206void ASTTypeWriter::VisitDecltypeType(const DecltypeType *T) {
Anders Carlsson395b4752009-06-24 19:06:50 +0000207 Writer.AddStmt(T->getUnderlyingExpr());
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000208 Code = TYPE_DECLTYPE;
Anders Carlsson395b4752009-06-24 19:06:50 +0000209}
210
Sebastian Redl3397c552010-08-18 23:56:27 +0000211void ASTTypeWriter::VisitTagType(const TagType *T) {
Argyrios Kyrtzidisbe191102010-07-08 13:09:53 +0000212 Record.push_back(T->isDependentType());
Douglas Gregor2cf26342009-04-09 22:27:44 +0000213 Writer.AddDeclRef(T->getDecl(), Record);
Mike Stump1eb44332009-09-09 15:08:12 +0000214 assert(!T->isBeingDefined() &&
Douglas Gregor2cf26342009-04-09 22:27:44 +0000215 "Cannot serialize in the middle of a type definition");
216}
217
Sebastian Redl3397c552010-08-18 23:56:27 +0000218void ASTTypeWriter::VisitRecordType(const RecordType *T) {
Douglas Gregor2cf26342009-04-09 22:27:44 +0000219 VisitTagType(T);
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000220 Code = TYPE_RECORD;
Douglas Gregor2cf26342009-04-09 22:27:44 +0000221}
222
Sebastian Redl3397c552010-08-18 23:56:27 +0000223void ASTTypeWriter::VisitEnumType(const EnumType *T) {
Douglas Gregor2cf26342009-04-09 22:27:44 +0000224 VisitTagType(T);
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000225 Code = TYPE_ENUM;
Douglas Gregor2cf26342009-04-09 22:27:44 +0000226}
227
Mike Stump1eb44332009-09-09 15:08:12 +0000228void
Sebastian Redl3397c552010-08-18 23:56:27 +0000229ASTTypeWriter::VisitSubstTemplateTypeParmType(
John McCall49a832b2009-10-18 09:09:24 +0000230 const SubstTemplateTypeParmType *T) {
231 Writer.AddTypeRef(QualType(T->getReplacedParameter(), 0), Record);
232 Writer.AddTypeRef(T->getReplacementType(), Record);
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000233 Code = TYPE_SUBST_TEMPLATE_TYPE_PARM;
John McCall49a832b2009-10-18 09:09:24 +0000234}
235
236void
Sebastian Redl3397c552010-08-18 23:56:27 +0000237ASTTypeWriter::VisitTemplateSpecializationType(
Douglas Gregor2cf26342009-04-09 22:27:44 +0000238 const TemplateSpecializationType *T) {
Argyrios Kyrtzidisbe191102010-07-08 13:09:53 +0000239 Record.push_back(T->isDependentType());
Argyrios Kyrtzidis90b715e2010-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 Kyrtzidis9763e222010-07-02 11:55:11 +0000245 Writer.AddTypeRef(T->isCanonicalUnqualified() ? QualType()
246 : T->getCanonicalTypeInternal(),
247 Record);
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000248 Code = TYPE_TEMPLATE_SPECIALIZATION;
Argyrios Kyrtzidis90b715e2010-06-19 19:28:53 +0000249}
250
251void
Sebastian Redl3397c552010-08-18 23:56:27 +0000252ASTTypeWriter::VisitDependentSizedArrayType(const DependentSizedArrayType *T) {
Argyrios Kyrtzidisae8b17f2010-06-30 08:49:25 +0000253 VisitArrayType(T);
254 Writer.AddStmt(T->getSizeExpr());
255 Writer.AddSourceRange(T->getBracketsRange(), Record);
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000256 Code = TYPE_DEPENDENT_SIZED_ARRAY;
Argyrios Kyrtzidis90b715e2010-06-19 19:28:53 +0000257}
258
259void
Sebastian Redl3397c552010-08-18 23:56:27 +0000260ASTTypeWriter::VisitDependentSizedExtVectorType(
Argyrios Kyrtzidis90b715e2010-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 Redl3397c552010-08-18 23:56:27 +0000267ASTTypeWriter::VisitTemplateTypeParmType(const TemplateTypeParmType *T) {
Argyrios Kyrtzidis90b715e2010-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 Redl8538e8d2010-08-18 23:57:32 +0000272 Code = TYPE_TEMPLATE_TYPE_PARM;
Argyrios Kyrtzidis90b715e2010-06-19 19:28:53 +0000273}
274
275void
Sebastian Redl3397c552010-08-18 23:56:27 +0000276ASTTypeWriter::VisitDependentNameType(const DependentNameType *T) {
Argyrios Kyrtzidis8dfbd8b2010-06-24 08:57:31 +0000277 Record.push_back(T->getKeyword());
278 Writer.AddNestedNameSpecifier(T->getQualifier(), Record);
279 Writer.AddIdentifierRef(T->getIdentifier(), Record);
Argyrios Kyrtzidisf48d45e2010-07-02 11:55:24 +0000280 Writer.AddTypeRef(T->isCanonicalUnqualified() ? QualType()
281 : T->getCanonicalTypeInternal(),
282 Record);
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000283 Code = TYPE_DEPENDENT_NAME;
Argyrios Kyrtzidis90b715e2010-06-19 19:28:53 +0000284}
285
286void
Sebastian Redl3397c552010-08-18 23:56:27 +0000287ASTTypeWriter::VisitDependentTemplateSpecializationType(
Argyrios Kyrtzidis90b715e2010-06-19 19:28:53 +0000288 const DependentTemplateSpecializationType *T) {
Argyrios Kyrtzidis3acad622010-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 Redl8538e8d2010-08-18 23:57:32 +0000296 Code = TYPE_DEPENDENT_TEMPLATE_SPECIALIZATION;
Douglas Gregor2cf26342009-04-09 22:27:44 +0000297}
298
Sebastian Redl3397c552010-08-18 23:56:27 +0000299void ASTTypeWriter::VisitElaboratedType(const ElaboratedType *T) {
Abramo Bagnara465d41b2010-05-11 21:36:43 +0000300 Record.push_back(T->getKeyword());
Argyrios Kyrtzidis3acad622010-06-25 16:24:58 +0000301 Writer.AddNestedNameSpecifier(T->getQualifier(), Record);
302 Writer.AddTypeRef(T->getNamedType(), Record);
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000303 Code = TYPE_ELABORATED;
Douglas Gregor2cf26342009-04-09 22:27:44 +0000304}
305
Sebastian Redl3397c552010-08-18 23:56:27 +0000306void ASTTypeWriter::VisitInjectedClassNameType(const InjectedClassNameType *T) {
John McCall3cb0ebd2010-03-10 03:28:59 +0000307 Writer.AddDeclRef(T->getDecl(), Record);
John McCall31f17ec2010-04-27 00:57:59 +0000308 Writer.AddTypeRef(T->getInjectedSpecializationType(), Record);
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000309 Code = TYPE_INJECTED_CLASS_NAME;
John McCall3cb0ebd2010-03-10 03:28:59 +0000310}
311
Sebastian Redl3397c552010-08-18 23:56:27 +0000312void ASTTypeWriter::VisitObjCInterfaceType(const ObjCInterfaceType *T) {
Douglas Gregordeacbdc2010-08-11 12:19:30 +0000313 Writer.AddDeclRef(T->getDecl(), Record);
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000314 Code = TYPE_OBJC_INTERFACE;
John McCallc12c5bb2010-05-15 11:32:37 +0000315}
316
Sebastian Redl3397c552010-08-18 23:56:27 +0000317void ASTTypeWriter::VisitObjCObjectType(const ObjCObjectType *T) {
John McCallc12c5bb2010-05-15 11:32:37 +0000318 Writer.AddTypeRef(T->getBaseType(), Record);
Douglas Gregor2cf26342009-04-09 22:27:44 +0000319 Record.push_back(T->getNumProtocols());
John McCallc12c5bb2010-05-15 11:32:37 +0000320 for (ObjCObjectType::qual_iterator I = T->qual_begin(),
Steve Naroff446ee4e2009-05-27 16:21:00 +0000321 E = T->qual_end(); I != E; ++I)
322 Writer.AddDeclRef(*I, Record);
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000323 Code = TYPE_OBJC_OBJECT;
Douglas Gregor2cf26342009-04-09 22:27:44 +0000324}
325
Steve Naroffd1b3c2d2009-06-17 22:40:22 +0000326void
Sebastian Redl3397c552010-08-18 23:56:27 +0000327ASTTypeWriter::VisitObjCObjectPointerType(const ObjCObjectPointerType *T) {
Mike Stump1eb44332009-09-09 15:08:12 +0000328 Writer.AddTypeRef(T->getPointeeType(), Record);
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000329 Code = TYPE_OBJC_OBJECT_POINTER;
Douglas Gregor2cf26342009-04-09 22:27:44 +0000330}
331
John McCalla1ee0c52009-10-16 21:56:05 +0000332namespace {
333
334class TypeLocWriter : public TypeLocVisitor<TypeLocWriter> {
Sebastian Redla4232eb2010-08-18 23:56:21 +0000335 ASTWriter &Writer;
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +0000336 ASTWriter::RecordDataImpl &Record;
John McCalla1ee0c52009-10-16 21:56:05 +0000337
338public:
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +0000339 TypeLocWriter(ASTWriter &Writer, ASTWriter::RecordDataImpl &Record)
John McCalla1ee0c52009-10-16 21:56:05 +0000340 : Writer(Writer), Record(Record) { }
341
John McCall51bd8032009-10-18 01:05:36 +0000342#define ABSTRACT_TYPELOC(CLASS, PARENT)
John McCalla1ee0c52009-10-16 21:56:05 +0000343#define TYPELOC(CLASS, PARENT) \
John McCall51bd8032009-10-18 01:05:36 +0000344 void Visit##CLASS##TypeLoc(CLASS##TypeLoc TyLoc);
John McCalla1ee0c52009-10-16 21:56:05 +0000345#include "clang/AST/TypeLocNodes.def"
346
John McCall51bd8032009-10-18 01:05:36 +0000347 void VisitArrayTypeLoc(ArrayTypeLoc TyLoc);
348 void VisitFunctionTypeLoc(FunctionTypeLoc TyLoc);
John McCalla1ee0c52009-10-16 21:56:05 +0000349};
350
351}
352
John McCall51bd8032009-10-18 01:05:36 +0000353void TypeLocWriter::VisitQualifiedTypeLoc(QualifiedTypeLoc TL) {
354 // nothing to do
John McCalla1ee0c52009-10-16 21:56:05 +0000355}
John McCall51bd8032009-10-18 01:05:36 +0000356void TypeLocWriter::VisitBuiltinTypeLoc(BuiltinTypeLoc TL) {
Douglas Gregorddf889a2010-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 McCalla1ee0c52009-10-16 21:56:05 +0000364}
John McCall51bd8032009-10-18 01:05:36 +0000365void TypeLocWriter::VisitComplexTypeLoc(ComplexTypeLoc TL) {
366 Writer.AddSourceLocation(TL.getNameLoc(), Record);
John McCalla1ee0c52009-10-16 21:56:05 +0000367}
John McCall51bd8032009-10-18 01:05:36 +0000368void TypeLocWriter::VisitPointerTypeLoc(PointerTypeLoc TL) {
369 Writer.AddSourceLocation(TL.getStarLoc(), Record);
John McCalla1ee0c52009-10-16 21:56:05 +0000370}
John McCall51bd8032009-10-18 01:05:36 +0000371void TypeLocWriter::VisitBlockPointerTypeLoc(BlockPointerTypeLoc TL) {
372 Writer.AddSourceLocation(TL.getCaretLoc(), Record);
John McCalla1ee0c52009-10-16 21:56:05 +0000373}
John McCall51bd8032009-10-18 01:05:36 +0000374void TypeLocWriter::VisitLValueReferenceTypeLoc(LValueReferenceTypeLoc TL) {
375 Writer.AddSourceLocation(TL.getAmpLoc(), Record);
John McCalla1ee0c52009-10-16 21:56:05 +0000376}
John McCall51bd8032009-10-18 01:05:36 +0000377void TypeLocWriter::VisitRValueReferenceTypeLoc(RValueReferenceTypeLoc TL) {
378 Writer.AddSourceLocation(TL.getAmpAmpLoc(), Record);
John McCalla1ee0c52009-10-16 21:56:05 +0000379}
John McCall51bd8032009-10-18 01:05:36 +0000380void TypeLocWriter::VisitMemberPointerTypeLoc(MemberPointerTypeLoc TL) {
381 Writer.AddSourceLocation(TL.getStarLoc(), Record);
John McCalla1ee0c52009-10-16 21:56:05 +0000382}
John McCall51bd8032009-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 McCalla1ee0c52009-10-16 21:56:05 +0000389}
John McCall51bd8032009-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 Gregordab60ad2010-10-01 18:44:50 +0000416 Record.push_back(TL.getTrailingReturn());
John McCall51bd8032009-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 McCalled976492009-12-04 22:46:56 +0000426void TypeLocWriter::VisitUnresolvedUsingTypeLoc(UnresolvedUsingTypeLoc TL) {
427 Writer.AddSourceLocation(TL.getNameLoc(), Record);
428}
John McCall51bd8032009-10-18 01:05:36 +0000429void TypeLocWriter::VisitTypedefTypeLoc(TypedefTypeLoc TL) {
430 Writer.AddSourceLocation(TL.getNameLoc(), Record);
431}
432void TypeLocWriter::VisitTypeOfExprTypeLoc(TypeOfExprTypeLoc TL) {
John McCallcfb708c2010-01-13 20:03:27 +0000433 Writer.AddSourceLocation(TL.getTypeofLoc(), Record);
434 Writer.AddSourceLocation(TL.getLParenLoc(), Record);
435 Writer.AddSourceLocation(TL.getRParenLoc(), Record);
John McCall51bd8032009-10-18 01:05:36 +0000436}
437void TypeLocWriter::VisitTypeOfTypeLoc(TypeOfTypeLoc TL) {
John McCallcfb708c2010-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 McCall51bd8032009-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 McCall51bd8032009-10-18 01:05:36 +0000452void TypeLocWriter::VisitTemplateTypeParmTypeLoc(TemplateTypeParmTypeLoc TL) {
453 Writer.AddSourceLocation(TL.getNameLoc(), Record);
454}
John McCall49a832b2009-10-18 09:09:24 +0000455void TypeLocWriter::VisitSubstTemplateTypeParmTypeLoc(
456 SubstTemplateTypeParmTypeLoc TL) {
457 Writer.AddSourceLocation(TL.getNameLoc(), Record);
458}
John McCall51bd8032009-10-18 01:05:36 +0000459void TypeLocWriter::VisitTemplateSpecializationTypeLoc(
460 TemplateSpecializationTypeLoc TL) {
John McCall833ca992009-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 Kyrtzidis44f8c372010-06-22 09:54:59 +0000465 Writer.AddTemplateArgumentLocInfo(TL.getArgLoc(i).getArgument().getKind(),
466 TL.getArgLoc(i).getLocInfo(), Record);
John McCall51bd8032009-10-18 01:05:36 +0000467}
Abramo Bagnara465d41b2010-05-11 21:36:43 +0000468void TypeLocWriter::VisitElaboratedTypeLoc(ElaboratedTypeLoc TL) {
Abramo Bagnarae4da7a02010-05-19 21:37:53 +0000469 Writer.AddSourceLocation(TL.getKeywordLoc(), Record);
470 Writer.AddSourceRange(TL.getQualifierRange(), Record);
John McCall51bd8032009-10-18 01:05:36 +0000471}
John McCall3cb0ebd2010-03-10 03:28:59 +0000472void TypeLocWriter::VisitInjectedClassNameTypeLoc(InjectedClassNameTypeLoc TL) {
473 Writer.AddSourceLocation(TL.getNameLoc(), Record);
474}
Douglas Gregor4714c122010-03-31 17:34:00 +0000475void TypeLocWriter::VisitDependentNameTypeLoc(DependentNameTypeLoc TL) {
Abramo Bagnarae4da7a02010-05-19 21:37:53 +0000476 Writer.AddSourceLocation(TL.getKeywordLoc(), Record);
477 Writer.AddSourceRange(TL.getQualifierRange(), Record);
John McCall51bd8032009-10-18 01:05:36 +0000478 Writer.AddSourceLocation(TL.getNameLoc(), Record);
479}
John McCall33500952010-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 Kyrtzidis44f8c372010-06-22 09:54:59 +0000488 Writer.AddTemplateArgumentLocInfo(TL.getArgLoc(I).getArgument().getKind(),
489 TL.getArgLoc(I).getLocInfo(), Record);
John McCall33500952010-06-11 00:33:02 +0000490}
John McCall51bd8032009-10-18 01:05:36 +0000491void TypeLocWriter::VisitObjCInterfaceTypeLoc(ObjCInterfaceTypeLoc TL) {
492 Writer.AddSourceLocation(TL.getNameLoc(), Record);
John McCallc12c5bb2010-05-15 11:32:37 +0000493}
494void TypeLocWriter::VisitObjCObjectTypeLoc(ObjCObjectTypeLoc TL) {
495 Record.push_back(TL.hasBaseTypeAsWritten());
John McCall51bd8032009-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 McCalla1ee0c52009-10-16 21:56:05 +0000500}
John McCall54e14c42009-10-22 22:37:11 +0000501void TypeLocWriter::VisitObjCObjectPointerTypeLoc(ObjCObjectPointerTypeLoc TL) {
502 Writer.AddSourceLocation(TL.getStarLoc(), Record);
John McCall54e14c42009-10-22 22:37:11 +0000503}
John McCalla1ee0c52009-10-16 21:56:05 +0000504
Chris Lattner4dcf151a2009-04-22 05:57:30 +0000505//===----------------------------------------------------------------------===//
Sebastian Redla4232eb2010-08-18 23:56:21 +0000506// ASTWriter Implementation
Douglas Gregor2cf26342009-04-09 22:27:44 +0000507//===----------------------------------------------------------------------===//
508
Chris Lattnerb145b1e2009-04-26 22:26:21 +0000509static void EmitBlockID(unsigned ID, const char *Name,
510 llvm::BitstreamWriter &Stream,
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +0000511 ASTWriter::RecordDataImpl &Record) {
Chris Lattnerb145b1e2009-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 Kyrtzidis89eaf3a2010-10-24 17:26:40 +0000526 ASTWriter::RecordDataImpl &Record) {
Chris Lattnerb145b1e2009-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 Lattner0558df22009-04-27 00:49:53 +0000532}
533
534static void AddStmtsExprs(llvm::BitstreamWriter &Stream,
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +0000535 ASTWriter::RecordDataImpl &Record) {
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000536#define RECORD(X) EmitRecordID(X, #X, Stream, Record)
Chris Lattner0558df22009-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 Lattner0558df22009-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 Weinigeb7f9612010-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 Lattner0558df22009-04-27 00:49:53 +0000611#undef RECORD
Chris Lattnerb145b1e2009-04-26 22:26:21 +0000612}
Mike Stump1eb44332009-09-09 15:08:12 +0000613
Sebastian Redla4232eb2010-08-18 23:56:21 +0000614void ASTWriter::WriteBlockInfoBlock() {
Chris Lattnerb145b1e2009-04-26 22:26:21 +0000615 RecordData Record;
616 Stream.EnterSubblock(llvm::bitc::BLOCKINFO_BLOCK_ID, 3);
Mike Stump1eb44332009-09-09 15:08:12 +0000617
Sebastian Redl8538e8d2010-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 Stump1eb44332009-09-09 15:08:12 +0000620
Sebastian Redl3397c552010-08-18 23:56:27 +0000621 // AST Top-Level Block.
Sebastian Redlf29f0a22010-08-18 23:57:22 +0000622 BLOCK(AST_BLOCK);
Zhongxing Xu51e774d2009-06-03 09:23:28 +0000623 RECORD(ORIGINAL_FILE_NAME);
Chris Lattnerb145b1e2009-04-26 22:26:21 +0000624 RECORD(TYPE_OFFSET);
625 RECORD(DECL_OFFSET);
626 RECORD(LANGUAGE_OPTIONS);
Douglas Gregorab41e632009-04-27 22:23:34 +0000627 RECORD(METADATA);
Chris Lattnerb145b1e2009-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 Kyrtzidis49b96d12010-08-13 18:42:17 +0000634 RECORD(UNUSED_FILESCOPED_DECLS);
Chris Lattnerb145b1e2009-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 Gregor7f94b0b2009-04-27 06:38:32 +0000639 RECORD(SOURCE_LOCATION_OFFSETS);
640 RECORD(SOURCE_LOCATION_PRELOADS);
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000641 RECORD(STAT_CACHE);
Douglas Gregorb81c1702009-04-27 20:06:05 +0000642 RECORD(EXT_VECTOR_DECLS);
Ted Kremenek5b4ec632010-01-22 20:59:36 +0000643 RECORD(VERSION_CONTROL_BRANCH_REVISION);
Douglas Gregor6a5a23f2010-03-19 21:51:54 +0000644 RECORD(MACRO_DEFINITION_OFFSETS);
Sebastian Redla93e3b52010-07-08 22:01:51 +0000645 RECORD(CHAINED_METADATA);
Fariborz Jahanian32019832010-07-23 19:11:11 +0000646 RECORD(REFERENCED_SELECTOR_POOL);
Michael J. Spencer20249a12010-10-21 03:16:25 +0000647
Chris Lattnerb145b1e2009-04-26 22:26:21 +0000648 // SourceManager Block.
Chris Lattner2f4efd12009-04-27 00:40:25 +0000649 BLOCK(SOURCE_MANAGER_BLOCK);
Chris Lattnerb145b1e2009-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 Stump1eb44332009-09-09 15:08:12 +0000655
Chris Lattnerb145b1e2009-04-26 22:26:21 +0000656 // Preprocessor Block.
Chris Lattner2f4efd12009-04-27 00:40:25 +0000657 BLOCK(PREPROCESSOR_BLOCK);
Chris Lattnerb145b1e2009-04-26 22:26:21 +0000658 RECORD(PP_MACRO_OBJECT_LIKE);
659 RECORD(PP_MACRO_FUNCTION_LIKE);
660 RECORD(PP_TOKEN);
Douglas Gregor6a5a23f2010-03-19 21:51:54 +0000661 RECORD(PP_MACRO_INSTANTIATION);
662 RECORD(PP_MACRO_DEFINITION);
Michael J. Spencer20249a12010-10-21 03:16:25 +0000663
Douglas Gregor61d60ee2009-10-17 00:13:19 +0000664 // Decls and Types block.
665 BLOCK(DECLTYPES_BLOCK);
Chris Lattnerb145b1e2009-04-26 22:26:21 +0000666 RECORD(TYPE_EXT_QUAL);
Chris Lattnerb145b1e2009-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 McCalla53d2cb2010-05-16 02:12:35 +0000686 RECORD(TYPE_OBJC_OBJECT);
Steve Naroffd1b3c2d2009-06-17 22:40:22 +0000687 RECORD(TYPE_OBJC_OBJECT_POINTER);
Chris Lattner0ff8cda2009-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 Lattnerb145b1e2009-04-26 22:26:21 +0000707 RECORD(DECL_FIELD);
708 RECORD(DECL_VAR);
Chris Lattner0ff8cda2009-04-26 22:32:16 +0000709 RECORD(DECL_IMPLICIT_PARAM);
Chris Lattnerb145b1e2009-04-26 22:26:21 +0000710 RECORD(DECL_PARM_VAR);
Chris Lattner0ff8cda2009-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 Gregor61d60ee2009-10-17 00:13:19 +0000715 // Statements and Exprs can occur in the Decls and Types block.
Chris Lattner0558df22009-04-27 00:49:53 +0000716 AddStmtsExprs(Stream, Record);
Chris Lattnerb145b1e2009-04-26 22:26:21 +0000717#undef RECORD
718#undef BLOCK
719 Stream.ExitBlock();
720}
721
Douglas Gregore650c8c2009-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 Stump1eb44332009-09-09 15:08:12 +0000724///
Douglas Gregore650c8c2009-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 Stump1eb44332009-09-09 15:08:12 +0000732static const char *
Douglas Gregore650c8c2009-07-07 00:12:59 +0000733adjustFilenameForRelocatablePCH(const char *Filename, const char *isysroot) {
734 assert(Filename && "No file name to adjust?");
Mike Stump1eb44332009-09-09 15:08:12 +0000735
Douglas Gregore650c8c2009-07-07 00:12:59 +0000736 if (!isysroot)
737 return Filename;
Mike Stump1eb44332009-09-09 15:08:12 +0000738
Douglas Gregore650c8c2009-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 Stump1eb44332009-09-09 15:08:12 +0000744
Douglas Gregore650c8c2009-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 Stump1eb44332009-09-09 15:08:12 +0000748
Douglas Gregore650c8c2009-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 Stump1eb44332009-09-09 15:08:12 +0000754
Douglas Gregore650c8c2009-07-07 00:12:59 +0000755 return Filename + Pos;
756}
Chris Lattnerb145b1e2009-04-26 22:26:21 +0000757
Sebastian Redl3397c552010-08-18 23:56:27 +0000758/// \brief Write the AST metadata (e.g., i686-apple-darwin9).
Sebastian Redla4232eb2010-08-18 23:56:21 +0000759void ASTWriter::WriteMetadata(ASTContext &Context, const char *isysroot) {
Douglas Gregor2bec0412009-04-10 21:16:55 +0000760 using namespace llvm;
Douglas Gregorb64c1932009-05-12 01:31:05 +0000761
Douglas Gregore650c8c2009-07-07 00:12:59 +0000762 // Metadata
763 const TargetInfo &Target = Context.Target;
764 BitCodeAbbrev *MetaAbbrev = new BitCodeAbbrev();
Sebastian Redl77f46032010-07-09 21:00:24 +0000765 MetaAbbrev->Add(BitCodeAbbrevOp(
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000766 Chain ? CHAINED_METADATA : METADATA));
Sebastian Redl3397c552010-08-18 23:56:27 +0000767 MetaAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 16)); // AST major
768 MetaAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 16)); // AST minor
Douglas Gregore650c8c2009-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 Redl77f46032010-07-09 21:00:24 +0000772 // Target triple or chained PCH name
773 MetaAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob));
Douglas Gregore650c8c2009-07-07 00:12:59 +0000774 unsigned MetaAbbrevCode = Stream.EmitAbbrev(MetaAbbrev);
Mike Stump1eb44332009-09-09 15:08:12 +0000775
Douglas Gregore650c8c2009-07-07 00:12:59 +0000776 RecordData Record;
Sebastian Redl8538e8d2010-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 Gregore650c8c2009-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 Redl77f46032010-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 Stump1eb44332009-09-09 15:08:12 +0000786
Douglas Gregorb64c1932009-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 Redl8538e8d2010-08-18 23:57:32 +0000791 FileAbbrev->Add(BitCodeAbbrevOp(ORIGINAL_FILE_NAME));
Douglas Gregorb64c1932009-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 Stump1eb44332009-09-09 15:08:12 +0000796
Kovarththanan Rajaratnam11a18f12010-03-14 07:06:50 +0000797 MainFilePath.makeAbsolute();
Douglas Gregorb64c1932009-05-12 01:31:05 +0000798
Kovarththanan Rajaratnamaba54a92010-03-14 07:15:57 +0000799 const char *MainFileNameStr = MainFilePath.c_str();
Mike Stump1eb44332009-09-09 15:08:12 +0000800 MainFileNameStr = adjustFilenameForRelocatablePCH(MainFileNameStr,
Douglas Gregore650c8c2009-07-07 00:12:59 +0000801 isysroot);
Douglas Gregorb64c1932009-05-12 01:31:05 +0000802 RecordData Record;
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000803 Record.push_back(ORIGINAL_FILE_NAME);
Daniel Dunbarec312a12009-08-24 09:31:37 +0000804 Stream.EmitRecordWithBlob(FileAbbrevCode, Record, MainFileNameStr);
Douglas Gregorb64c1932009-05-12 01:31:05 +0000805 }
Kovarththanan Rajaratnam11a18f12010-03-14 07:06:50 +0000806
Ted Kremenekf7a96a32010-01-22 22:12:47 +0000807 // Repository branch/version information.
808 BitCodeAbbrev *RepoAbbrev = new BitCodeAbbrev();
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000809 RepoAbbrev->Add(BitCodeAbbrevOp(VERSION_CONTROL_BRANCH_REVISION));
Ted Kremenekf7a96a32010-01-22 22:12:47 +0000810 RepoAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // SVN branch/tag
811 unsigned RepoAbbrevCode = Stream.EmitAbbrev(RepoAbbrev);
Douglas Gregor445e23e2009-10-05 21:07:28 +0000812 Record.clear();
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000813 Record.push_back(VERSION_CONTROL_BRANCH_REVISION);
Ted Kremenekf7a96a32010-01-22 22:12:47 +0000814 Stream.EmitRecordWithBlob(RepoAbbrevCode, Record,
815 getClangFullRepositoryVersion());
Douglas Gregor2bec0412009-04-10 21:16:55 +0000816}
817
818/// \brief Write the LangOptions structure.
Sebastian Redla4232eb2010-08-18 23:56:21 +0000819void ASTWriter::WriteLanguageOptions(const LangOptions &LangOpts) {
Douglas Gregor0a0428e2009-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 Carrutheb5d7b72010-04-17 20:17:31 +0000826 Record.push_back(LangOpts.GNUKeywords); // Allow GNU-extension keywords
Douglas Gregor0a0428e2009-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. Spencerdae4ac42010-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 Gregor0a0428e2009-04-10 20:39:37 +0000834 Record.push_back(LangOpts.CPlusPlus); // C++ Support
835 Record.push_back(LangOpts.CPlusPlus0x); // C++0x Support
Douglas Gregor0a0428e2009-04-10 20:39:37 +0000836 Record.push_back(LangOpts.CXXOperatorNames); // Treat C++ operator names as keywords.
Mike Stump1eb44332009-09-09 15:08:12 +0000837
Douglas Gregor0a0428e2009-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 Rajaratnam11a18f12010-03-14 07:06:50 +0000840 Record.push_back(LangOpts.ObjCNonFragileABI); // Objective-C
Fariborz Jahanian412e7982010-02-09 19:31:38 +0000841 // modern abi enabled.
Kovarththanan Rajaratnam11a18f12010-03-14 07:06:50 +0000842 Record.push_back(LangOpts.ObjCNonFragileABI2); // Objective-C enhanced
Fariborz Jahanian412e7982010-02-09 19:31:38 +0000843 // modern abi enabled.
Fariborz Jahanian4c9d8d02010-04-22 21:01:59 +0000844 Record.push_back(LangOpts.NoConstantCFStrings); // non cfstring generation enabled..
Mike Stump1eb44332009-09-09 15:08:12 +0000845
Douglas Gregor0a0428e2009-04-10 20:39:37 +0000846 Record.push_back(LangOpts.PascalStrings); // Allow Pascal strings
Douglas Gregor0a0428e2009-04-10 20:39:37 +0000847 Record.push_back(LangOpts.WritableStrings); // Allow writable strings
848 Record.push_back(LangOpts.LaxVectorConversions);
Nate Begemanb9e7e632009-06-25 23:01:11 +0000849 Record.push_back(LangOpts.AltiVec);
Douglas Gregor0a0428e2009-04-10 20:39:37 +0000850 Record.push_back(LangOpts.Exceptions); // Support exception handling.
Daniel Dunbar73482882010-02-10 18:48:44 +0000851 Record.push_back(LangOpts.SjLjExceptions);
Douglas Gregor0a0428e2009-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 Lattnerea5ce472009-04-27 07:35:58 +0000857 // Whether static initializers are protected by locks.
858 Record.push_back(LangOpts.ThreadsafeStatics);
Douglas Gregor972d9542009-09-03 14:36:33 +0000859 Record.push_back(LangOpts.POSIXThreads);
Douglas Gregor0a0428e2009-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 Lattnera4d71452010-06-26 21:25:03 +0000866 Record.push_back(LangOpts.getSignedOverflowBehavior());
867 Record.push_back(LangOpts.HeinousExtensions);
Douglas Gregor0a0428e2009-04-10 20:39:37 +0000868
869 Record.push_back(LangOpts.Optimize); // Whether __OPTIMIZE__ should be defined.
Mike Stump1eb44332009-09-09 15:08:12 +0000870 Record.push_back(LangOpts.OptimizeSize); // Whether __OPTIMIZE_SIZE__ should be
Douglas Gregor0a0428e2009-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 Carlssona33d9b42009-05-13 19:49:53 +0000879 Record.push_back(LangOpts.AccessControl); // Whether C++ access control should
880 // be enabled.
Eli Friedman15b91762009-06-05 07:05:05 +0000881 Record.push_back(LangOpts.CharIsSigned); // Whether char is a signed or
882 // unsigned type
John Thompsona6fda122009-11-05 20:14:16 +0000883 Record.push_back(LangOpts.ShortWChar); // force wchar_t to be unsigned short
Douglas Gregor0a0428e2009-04-10 20:39:37 +0000884 Record.push_back(LangOpts.getGCMode());
885 Record.push_back(LangOpts.getVisibilityMode());
Daniel Dunbarab8e2812009-09-21 04:16:19 +0000886 Record.push_back(LangOpts.getStackProtectorMode());
Douglas Gregor0a0428e2009-04-10 20:39:37 +0000887 Record.push_back(LangOpts.InstantiationDepth);
Nate Begemanb9e7e632009-06-25 23:01:11 +0000888 Record.push_back(LangOpts.OpenCL);
Mike Stump9c276ae2009-12-12 01:27:46 +0000889 Record.push_back(LangOpts.CatchUndefined);
Anders Carlsson92f58222009-08-22 22:30:33 +0000890 Record.push_back(LangOpts.ElideConstructors);
Douglas Gregora0068fc2010-07-09 17:35:33 +0000891 Record.push_back(LangOpts.SpellChecking);
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000892 Stream.EmitRecord(LANGUAGE_OPTIONS, Record);
Douglas Gregor0a0428e2009-04-10 20:39:37 +0000893}
894
Douglas Gregor14f79002009-04-10 03:52:48 +0000895//===----------------------------------------------------------------------===//
Douglas Gregor4fed3f42009-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 Redl3397c552010-08-18 23:56:27 +0000901class ASTStatCacheTrait {
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000902public:
903 typedef const char * key_type;
904 typedef key_type key_type_ref;
Mike Stump1eb44332009-09-09 15:08:12 +0000905
Douglas Gregor4fed3f42009-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 Dunbar2596e422009-10-17 23:52:28 +0000910 return llvm::HashString(path);
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000911 }
Mike Stump1eb44332009-09-09 15:08:12 +0000912
913 std::pair<unsigned,unsigned>
Douglas Gregor4fed3f42009-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 Stump1eb44332009-09-09 15:08:12 +0000924
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000925 void EmitKey(llvm::raw_ostream& Out, const char *path, unsigned KeyLen) {
926 Out.write(path, KeyLen);
927 }
Mike Stump1eb44332009-09-09 15:08:12 +0000928
Douglas Gregor4fed3f42009-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 Stump1eb44332009-09-09 15:08:12 +0000933
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000934 // Result of stat()
935 Emit8(Out, Data.first? 1 : 0);
Mike Stump1eb44332009-09-09 15:08:12 +0000936
Douglas Gregor4fed3f42009-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 Redl3397c552010-08-18 23:56:27 +0000950/// \brief Write the stat() system call cache to the AST file.
Sebastian Redla4232eb2010-08-18 23:56:21 +0000951void ASTWriter::WriteStatCache(MemorizeStatCalls &StatCalls) {
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000952 // Build the on-disk hash table containing information about every
953 // stat() call.
Sebastian Redl3397c552010-08-18 23:56:27 +0000954 OnDiskChainedHashTableGenerator<ASTStatCacheTrait> Generator;
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000955 unsigned NumStatEntries = 0;
Mike Stump1eb44332009-09-09 15:08:12 +0000956 for (MemorizeStatCalls::iterator Stat = StatCalls.begin(),
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000957 StatEnd = StatCalls.end();
Douglas Gregore650c8c2009-07-07 00:12:59 +0000958 Stat != StatEnd; ++Stat, ++NumStatEntries) {
959 const char *Filename = Stat->first();
Douglas Gregore650c8c2009-07-07 00:12:59 +0000960 Generator.insert(Filename, Stat->second);
961 }
Mike Stump1eb44332009-09-09 15:08:12 +0000962
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000963 // Create the on-disk hash table in a buffer.
Mike Stump1eb44332009-09-09 15:08:12 +0000964 llvm::SmallString<4096> StatCacheData;
Douglas Gregor4fed3f42009-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 Redl8538e8d2010-08-18 23:57:32 +0000976 Abbrev->Add(BitCodeAbbrevOp(STAT_CACHE));
Douglas Gregor4fed3f42009-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 Redl8538e8d2010-08-18 23:57:32 +0000984 Record.push_back(STAT_CACHE);
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000985 Record.push_back(BucketOffset);
986 Record.push_back(NumStatEntries);
Daniel Dunbarec312a12009-08-24 09:31:37 +0000987 Stream.EmitRecordWithBlob(StatCacheAbbrev, Record, StatCacheData.str());
Douglas Gregor4fed3f42009-04-27 18:38:38 +0000988}
989
990//===----------------------------------------------------------------------===//
Douglas Gregor14f79002009-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 Gregorc9490c02009-04-16 22:23:12 +0000996static unsigned CreateSLocFileAbbrev(llvm::BitstreamWriter &Stream) {
Douglas Gregor14f79002009-04-10 03:52:48 +0000997 using namespace llvm;
998 BitCodeAbbrev *Abbrev = new BitCodeAbbrev();
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000999 Abbrev->Add(BitCodeAbbrevOp(SM_SLOC_FILE_ENTRY));
Douglas Gregor14f79002009-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 Gregor2d52be52010-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 Gregor12fab312010-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 Gregor14f79002009-04-10 03:52:48 +00001012 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // File name
Douglas Gregorc9490c02009-04-16 22:23:12 +00001013 return Stream.EmitAbbrev(Abbrev);
Douglas Gregor14f79002009-04-10 03:52:48 +00001014}
1015
1016/// \brief Create an abbreviation for the SLocEntry that refers to a
1017/// buffer.
Douglas Gregorc9490c02009-04-16 22:23:12 +00001018static unsigned CreateSLocBufferAbbrev(llvm::BitstreamWriter &Stream) {
Douglas Gregor14f79002009-04-10 03:52:48 +00001019 using namespace llvm;
1020 BitCodeAbbrev *Abbrev = new BitCodeAbbrev();
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001021 Abbrev->Add(BitCodeAbbrevOp(SM_SLOC_BUFFER_ENTRY));
Douglas Gregor14f79002009-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 Gregorc9490c02009-04-16 22:23:12 +00001027 return Stream.EmitAbbrev(Abbrev);
Douglas Gregor14f79002009-04-10 03:52:48 +00001028}
1029
1030/// \brief Create an abbreviation for the SLocEntry that refers to a
1031/// buffer's blob.
Douglas Gregorc9490c02009-04-16 22:23:12 +00001032static unsigned CreateSLocBufferBlobAbbrev(llvm::BitstreamWriter &Stream) {
Douglas Gregor14f79002009-04-10 03:52:48 +00001033 using namespace llvm;
1034 BitCodeAbbrev *Abbrev = new BitCodeAbbrev();
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001035 Abbrev->Add(BitCodeAbbrevOp(SM_SLOC_BUFFER_BLOB));
Douglas Gregor14f79002009-04-10 03:52:48 +00001036 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // Blob
Douglas Gregorc9490c02009-04-16 22:23:12 +00001037 return Stream.EmitAbbrev(Abbrev);
Douglas Gregor14f79002009-04-10 03:52:48 +00001038}
1039
1040/// \brief Create an abbreviation for the SLocEntry that refers to an
1041/// buffer.
Douglas Gregorc9490c02009-04-16 22:23:12 +00001042static unsigned CreateSLocInstantiationAbbrev(llvm::BitstreamWriter &Stream) {
Douglas Gregor14f79002009-04-10 03:52:48 +00001043 using namespace llvm;
1044 BitCodeAbbrev *Abbrev = new BitCodeAbbrev();
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001045 Abbrev->Add(BitCodeAbbrevOp(SM_SLOC_INSTANTIATION_ENTRY));
Douglas Gregor14f79002009-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 Gregorf60e9912009-04-15 18:05:10 +00001050 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // Token length
Douglas Gregorc9490c02009-04-16 22:23:12 +00001051 return Stream.EmitAbbrev(Abbrev);
Douglas Gregor14f79002009-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 Redla4232eb2010-08-18 23:56:21 +00001062void ASTWriter::WriteSourceManagerBlock(SourceManager &SourceMgr,
Douglas Gregore650c8c2009-07-07 00:12:59 +00001063 const Preprocessor &PP,
1064 const char *isysroot) {
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001065 RecordData Record;
1066
Chris Lattnerf04ad692009-04-10 17:16:57 +00001067 // Enter the source manager block.
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001068 Stream.EnterSubblock(SOURCE_MANAGER_BLOCK_ID, 3);
Douglas Gregor14f79002009-04-10 03:52:48 +00001069
1070 // Abbreviations for the various kinds of source-location entries.
Chris Lattner828e18c2009-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 Gregor14f79002009-04-10 03:52:48 +00001075
Douglas Gregorbd945002009-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 Gregore650c8c2009-07-07 00:12:59 +00001085 Filename = adjustFilenameForRelocatablePCH(Filename, isysroot);
Douglas Gregorbd945002009-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 Stump1eb44332009-09-09 15:08:12 +00001091
Douglas Gregorbd945002009-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 Stump1eb44332009-09-09 15:08:12 +00001097
Douglas Gregorbd945002009-04-13 16:31:14 +00001098 // Emit the line entries
1099 Record.push_back(L->second.size());
Mike Stump1eb44332009-09-09 15:08:12 +00001100 for (std::vector<LineEntry>::iterator LE = L->second.begin(),
Douglas Gregorbd945002009-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 Gregorbd945002009-04-13 16:31:14 +00001109 }
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001110 Stream.EmitRecord(SM_LINE_TABLE, Record);
Douglas Gregorbd945002009-04-13 16:31:14 +00001111 }
1112
Douglas Gregor7f94b0b2009-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 Lattner090d9b52009-04-27 19:01:47 +00001115 std::vector<uint32_t> SLocEntryOffsets;
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001116 RecordData PreloadSLocs;
Sebastian Redl0fa7d0b2010-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 Gregorbdfe48a2009-10-16 22:46:09 +00001121 // Get this source location entry.
1122 const SrcMgr::SLocEntry *SLoc = &SourceMgr.getSLocEntry(I);
Kovarththanan Rajaratnam11a18f12010-03-14 07:06:50 +00001123
Douglas Gregor7f94b0b2009-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 Redl8538e8d2010-08-18 23:57:32 +00001131 Code = SM_SLOC_FILE_ENTRY;
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001132 else
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001133 Code = SM_SLOC_BUFFER_ENTRY;
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001134 } else
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001135 Code = SM_SLOC_INSTANTIATION_ENTRY;
Douglas Gregor7f94b0b2009-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 Stump1eb44332009-09-09 15:08:12 +00001150
Douglas Gregor2d52be52010-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 Gregor12fab312010-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 Gregore650c8c2009-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 Rajaratnam11a18f12010-03-14 07:06:50 +00001168 FilePath.makeAbsolute();
Kovarththanan Rajaratnamaba54a92010-03-14 07:15:57 +00001169 Filename = FilePath.c_str();
Mike Stump1eb44332009-09-09 15:08:12 +00001170
Douglas Gregore650c8c2009-07-07 00:12:59 +00001171 Filename = adjustFilenameForRelocatablePCH(Filename, isysroot);
Daniel Dunbarec312a12009-08-24 09:31:37 +00001172 Stream.EmitRecordWithBlob(SLocFileAbbrv, Record, Filename);
Douglas Gregor7f94b0b2009-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 Redl0fa7d0b2010-07-22 17:01:13 +00001177 PreloadSLocs.push_back(BaseSLocID + SLocEntryOffsets.size());
Douglas Gregor7f94b0b2009-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 Gregor36c35ba2010-03-16 00:35:39 +00001185 const llvm::MemoryBuffer *Buffer
Chris Lattnere127a0d2010-04-20 20:35:58 +00001186 = Content->getBuffer(PP.getDiagnostics(), PP.getSourceManager());
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001187 const char *Name = Buffer->getBufferIdentifier();
Daniel Dunbarec312a12009-08-24 09:31:37 +00001188 Stream.EmitRecordWithBlob(SLocBufferAbbrv, Record,
1189 llvm::StringRef(Name, strlen(Name) + 1));
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001190 Record.clear();
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001191 Record.push_back(SM_SLOC_BUFFER_BLOB);
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001192 Stream.EmitRecordWithBlob(SLocBufferBlobAbbrv, Record,
Daniel Dunbarec312a12009-08-24 09:31:37 +00001193 llvm::StringRef(Buffer->getBufferStart(),
1194 Buffer->getBufferSize() + 1));
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001195
1196 if (strcmp(Name, "<built-in>") == 0)
Sebastian Redl0fa7d0b2010-07-22 17:01:13 +00001197 PreloadSLocs.push_back(BaseSLocID + SLocEntryOffsets.size());
Douglas Gregor7f94b0b2009-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 Gregorbdfe48a2009-10-16 22:46:09 +00001208 if (I + 1 != N)
1209 NextOffset = SourceMgr.getSLocEntry(I + 1).getOffset();
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001210 Record.push_back(NextOffset - SLoc->getOffset() - 1);
1211 Stream.EmitRecordWithAbbrev(SLocInstantiationAbbrv, Record);
1212 }
1213 }
1214
Douglas Gregorc9490c02009-04-16 22:23:12 +00001215 Stream.ExitBlock();
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001216
1217 if (SLocEntryOffsets.empty())
1218 return;
1219
Sebastian Redl3397c552010-08-18 23:56:27 +00001220 // Write the source-location offsets table into the AST block. This
Douglas Gregor7f94b0b2009-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 Redl8538e8d2010-08-18 23:57:32 +00001224 Abbrev->Add(BitCodeAbbrevOp(SOURCE_LOCATION_OFFSETS));
Douglas Gregor7f94b0b2009-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 Stump1eb44332009-09-09 15:08:12 +00001229
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001230 Record.clear();
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001231 Record.push_back(SOURCE_LOCATION_OFFSETS);
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001232 Record.push_back(SLocEntryOffsets.size());
Sebastian Redl8db9fae2010-09-22 20:19:08 +00001233 unsigned BaseOffset = Chain ? Chain->getNextSLocOffset() : 0;
1234 Record.push_back(SourceMgr.getNextOffset() - BaseOffset);
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001235 Stream.EmitRecordWithBlob(SLocOffsetsAbbrev, Record,
Sebastian Redlade50002010-07-30 17:03:48 +00001236 (const char *)data(SLocEntryOffsets),
Chris Lattner090d9b52009-04-27 19:01:47 +00001237 SLocEntryOffsets.size()*sizeof(SLocEntryOffsets[0]));
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001238
Sebastian Redl3397c552010-08-18 23:56:27 +00001239 // Write the source location entry preloads array, telling the AST
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001240 // reader which source locations entries it should load eagerly.
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001241 Stream.EmitRecord(SOURCE_LOCATION_PRELOADS, PreloadSLocs);
Douglas Gregor14f79002009-04-10 03:52:48 +00001242}
1243
Douglas Gregor4fed3f42009-04-27 18:38:38 +00001244//===----------------------------------------------------------------------===//
1245// Preprocessor Serialization
1246//===----------------------------------------------------------------------===//
1247
Chris Lattner0b1fb982009-04-10 17:15:23 +00001248/// \brief Writes the block containing the serialized form of the
1249/// preprocessor.
1250///
Sebastian Redla4232eb2010-08-18 23:56:21 +00001251void ASTWriter::WritePreprocessor(const Preprocessor &PP) {
Chris Lattner7c5d24e2009-04-10 18:00:12 +00001252 RecordData Record;
Chris Lattnerf04ad692009-04-10 17:16:57 +00001253
Chris Lattnerc1f9d822009-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 Redl8538e8d2010-08-18 23:57:32 +00001257 Stream.EmitRecord(PP_COUNTER_VALUE, Record);
Chris Lattnerc1f9d822009-04-13 01:29:17 +00001258 Record.clear();
Douglas Gregor2eafc1b2009-04-26 00:07:37 +00001259 }
1260
1261 // Enter the preprocessor block.
Douglas Gregorecdcb882010-10-20 22:00:55 +00001262 Stream.EnterSubblock(PREPROCESSOR_BLOCK_ID, 3);
Mike Stump1eb44332009-09-09 15:08:12 +00001263
Sebastian Redl3397c552010-08-18 23:56:27 +00001264 // If the AST file contains __DATE__ or __TIME__ emit a warning about this.
Douglas Gregor2eafc1b2009-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 Stump1eb44332009-09-09 15:08:12 +00001268
Douglas Gregorecdcb882010-10-20 22:00:55 +00001269
Chris Lattner7c5d24e2009-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 Gregor6a5a23f2010-03-19 21:51:54 +00001272 PreprocessingRecord *PPRec = PP.getPreprocessingRecord();
Douglas Gregorecdcb882010-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. Spencer20249a12010-10-21 03:16:25 +00001285 InclusionAbbrev = Stream.EmitAbbrev(Abbrev);
Douglas Gregorecdcb882010-10-20 22:00:55 +00001286 }
Michael J. Spencer20249a12010-10-21 03:16:25 +00001287
Chris Lattner7c5d24e2009-04-10 18:00:12 +00001288 for (Preprocessor::macro_iterator I = PP.macro_begin(), E = PP.macro_end();
1289 I != E; ++I) {
Chris Lattner42d42b52009-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 Lattner7c5d24e2009-04-10 18:00:12 +00001292 MacroInfo *MI = I->second;
1293
Sebastian Redl3397c552010-08-18 23:56:27 +00001294 // Don't emit builtin macros like __LINE__ to the AST file unless they have
Chris Lattner7c5d24e2009-04-10 18:00:12 +00001295 // been redefined by the header (in which case they are not isBuiltinMacro).
Sebastian Redl3397c552010-08-18 23:56:27 +00001296 // Also skip macros from a AST file if we're chaining.
Douglas Gregoree9b0ba2010-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. Spencer20249a12010-10-21 03:16:25 +00001302 if (MI->isBuiltinMacro() ||
Douglas Gregoree9b0ba2010-10-01 01:03:07 +00001303 (Chain && I->first->isFromAST() && MI->isFromAST()))
Chris Lattner7c5d24e2009-04-10 18:00:12 +00001304 continue;
1305
Chris Lattner7356a312009-04-11 21:15:38 +00001306 AddIdentifierRef(I->first, Record);
Douglas Gregor37e26842009-04-21 23:56:24 +00001307 MacroOffsets[I->first] = Stream.GetCurrentBitNo();
Chris Lattner7c5d24e2009-04-10 18:00:12 +00001308 Record.push_back(MI->getDefinitionLoc().getRawEncoding());
1309 Record.push_back(MI->isUsed());
Mike Stump1eb44332009-09-09 15:08:12 +00001310
Chris Lattner7c5d24e2009-04-10 18:00:12 +00001311 unsigned Code;
1312 if (MI->isObjectLike()) {
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001313 Code = PP_MACRO_OBJECT_LIKE;
Chris Lattner7c5d24e2009-04-10 18:00:12 +00001314 } else {
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001315 Code = PP_MACRO_FUNCTION_LIKE;
Mike Stump1eb44332009-09-09 15:08:12 +00001316
Chris Lattner7c5d24e2009-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 Lattner7356a312009-04-11 21:15:38 +00001322 AddIdentifierRef(*I, Record);
Chris Lattner7c5d24e2009-04-10 18:00:12 +00001323 }
Michael J. Spencer20249a12010-10-21 03:16:25 +00001324
Douglas Gregor6a5a23f2010-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. Spencer20249a12010-10-21 03:16:25 +00001329
Douglas Gregorc9490c02009-04-16 22:23:12 +00001330 Stream.EmitRecord(Code, Record);
Chris Lattner7c5d24e2009-04-10 18:00:12 +00001331 Record.clear();
1332
Chris Lattnerdf961c22009-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 Stump1eb44332009-09-09 15:08:12 +00001339
Chris Lattnerdf961c22009-04-10 18:08:30 +00001340 Record.push_back(Tok.getLocation().getRawEncoding());
1341 Record.push_back(Tok.getLength());
1342
Chris Lattnerdf961c22009-04-10 18:08:30 +00001343 // FIXME: When reading literal tokens, reconstruct the literal pointer if
1344 // it is needed.
Chris Lattner7356a312009-04-11 21:15:38 +00001345 AddIdentifierRef(Tok.getIdentifierInfo(), Record);
Mike Stump1eb44332009-09-09 15:08:12 +00001346
Chris Lattnerdf961c22009-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 Stump1eb44332009-09-09 15:08:12 +00001351
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001352 Stream.EmitRecord(PP_TOKEN, Record);
Chris Lattnerdf961c22009-04-10 18:08:30 +00001353 Record.clear();
1354 }
Douglas Gregor37e26842009-04-21 23:56:24 +00001355 ++NumMacros;
Chris Lattner7c5d24e2009-04-10 18:00:12 +00001356 }
Michael J. Spencer20249a12010-10-21 03:16:25 +00001357
Douglas Gregor6a5a23f2010-03-19 21:51:54 +00001358 // If the preprocessor has a preprocessing record, emit it.
1359 unsigned NumPreprocessingRecords = 0;
1360 if (PPRec) {
Sebastian Redl196f5572010-09-27 23:20:01 +00001361 unsigned IndexBase = Chain ? PPRec->getNumPreallocatedEntities() : 0;
Sebastian Redlb57a6242010-09-27 22:18:47 +00001362 for (PreprocessingRecord::iterator E = PPRec->begin(Chain),
1363 EEnd = PPRec->end(Chain);
Douglas Gregor6a5a23f2010-03-19 21:51:54 +00001364 E != EEnd; ++E) {
1365 Record.clear();
Michael J. Spencer20249a12010-10-21 03:16:25 +00001366
Douglas Gregor6a5a23f2010-03-19 21:51:54 +00001367 if (MacroInstantiation *MI = dyn_cast<MacroInstantiation>(*E)) {
Sebastian Redlb57a6242010-09-27 22:18:47 +00001368 Record.push_back(IndexBase + NumPreprocessingRecords++);
Douglas Gregor6a5a23f2010-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 Redl8538e8d2010-08-18 23:57:32 +00001373 Stream.EmitRecord(PP_MACRO_INSTANTIATION, Record);
Douglas Gregor6a5a23f2010-03-19 21:51:54 +00001374 continue;
1375 }
Michael J. Spencer20249a12010-10-21 03:16:25 +00001376
Douglas Gregor6a5a23f2010-03-19 21:51:54 +00001377 if (MacroDefinition *MD = dyn_cast<MacroDefinition>(*E)) {
1378 // Record this macro definition's location.
Sebastian Redlf73c93f2010-09-15 19:54:06 +00001379 MacroID ID = getMacroDefinitionID(MD);
Michael J. Spencer20249a12010-10-21 03:16:25 +00001380
Douglas Gregor77424bc2010-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. Spencer20249a12010-10-21 03:16:25 +00001384
Douglas Gregor77424bc2010-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. Spencer20249a12010-10-21 03:16:25 +00001389
1390 MacroDefinitionOffsets[Position] = Stream.GetCurrentBitNo();
Douglas Gregor6a5a23f2010-03-19 21:51:54 +00001391 } else
1392 MacroDefinitionOffsets.push_back(Stream.GetCurrentBitNo());
Michael J. Spencer20249a12010-10-21 03:16:25 +00001393
Sebastian Redlb57a6242010-09-27 22:18:47 +00001394 Record.push_back(IndexBase + NumPreprocessingRecords++);
Douglas Gregor6a5a23f2010-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 Redl8538e8d2010-08-18 23:57:32 +00001400 Stream.EmitRecord(PP_MACRO_DEFINITION, Record);
Douglas Gregor6a5a23f2010-03-19 21:51:54 +00001401 continue;
1402 }
Michael J. Spencer20249a12010-10-21 03:16:25 +00001403
Douglas Gregorecdcb882010-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 Gregor6a5a23f2010-03-19 21:51:54 +00001418 }
1419 }
Michael J. Spencer20249a12010-10-21 03:16:25 +00001420
Douglas Gregorc9490c02009-04-16 22:23:12 +00001421 Stream.ExitBlock();
Michael J. Spencer20249a12010-10-21 03:16:25 +00001422
Douglas Gregor6a5a23f2010-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 Redl8538e8d2010-08-18 23:57:32 +00001428 Abbrev->Add(BitCodeAbbrevOp(MACRO_DEFINITION_OFFSETS));
Douglas Gregor6a5a23f2010-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. Spencer20249a12010-10-21 03:16:25 +00001433
Douglas Gregor6a5a23f2010-03-19 21:51:54 +00001434 Record.clear();
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001435 Record.push_back(MACRO_DEFINITION_OFFSETS);
Douglas Gregor6a5a23f2010-03-19 21:51:54 +00001436 Record.push_back(NumPreprocessingRecords);
1437 Record.push_back(MacroDefinitionOffsets.size());
1438 Stream.EmitRecordWithBlob(MacroDefOffsetAbbrev, Record,
Sebastian Redlade50002010-07-30 17:03:48 +00001439 (const char *)data(MacroDefinitionOffsets),
Douglas Gregor6a5a23f2010-03-19 21:51:54 +00001440 MacroDefinitionOffsets.size() * sizeof(uint32_t));
1441 }
Chris Lattner0b1fb982009-04-10 17:15:23 +00001442}
1443
Argyrios Kyrtzidisf41d3be2010-11-05 22:10:18 +00001444void ASTWriter::WriteUserDiagnosticMappings(const Diagnostic &Diag) {
1445 RecordData Record;
1446 for (unsigned i = 0; i != diag::DIAG_UPPER_LIMIT; ++i) {
1447 diag::Mapping Map = Diag.getDiagnosticMappingInfo(i);
1448 if (Map & 0x8) { // user mapping.
1449 Record.push_back(i);
1450 Record.push_back(Map & 0x7);
1451 }
1452 }
1453
Argyrios Kyrtzidis60f76842010-11-05 22:20:49 +00001454 if (!Record.empty())
1455 Stream.EmitRecord(DIAG_USER_MAPPINGS, Record);
Argyrios Kyrtzidisf41d3be2010-11-05 22:10:18 +00001456}
1457
Douglas Gregor4fed3f42009-04-27 18:38:38 +00001458//===----------------------------------------------------------------------===//
1459// Type Serialization
1460//===----------------------------------------------------------------------===//
Chris Lattner0b1fb982009-04-10 17:15:23 +00001461
Sebastian Redl3397c552010-08-18 23:56:27 +00001462/// \brief Write the representation of a type to the AST stream.
Sebastian Redla4232eb2010-08-18 23:56:21 +00001463void ASTWriter::WriteType(QualType T) {
Argyrios Kyrtzidis01b81c42010-08-20 16:04:04 +00001464 TypeIdx &Idx = TypeIdxs[T];
Argyrios Kyrtzidisc8e5d512010-08-20 16:03:59 +00001465 if (Idx.getIndex() == 0) // we haven't seen this type before.
1466 Idx = TypeIdx(NextTypeID++);
Mike Stump1eb44332009-09-09 15:08:12 +00001467
Douglas Gregor97475832010-10-05 18:37:06 +00001468 assert(Idx.getIndex() >= FirstTypeID && "Re-writing a type from a prior AST");
Douglas Gregor55f48de2010-10-04 18:21:45 +00001469
Douglas Gregor2cf26342009-04-09 22:27:44 +00001470 // Record the offset for this type.
Argyrios Kyrtzidisc8e5d512010-08-20 16:03:59 +00001471 unsigned Index = Idx.getIndex() - FirstTypeID;
Sebastian Redl681d7232010-07-27 00:17:23 +00001472 if (TypeOffsets.size() == Index)
Douglas Gregorc9490c02009-04-16 22:23:12 +00001473 TypeOffsets.push_back(Stream.GetCurrentBitNo());
Sebastian Redl681d7232010-07-27 00:17:23 +00001474 else if (TypeOffsets.size() < Index) {
1475 TypeOffsets.resize(Index + 1);
1476 TypeOffsets[Index] = Stream.GetCurrentBitNo();
Douglas Gregor2cf26342009-04-09 22:27:44 +00001477 }
1478
1479 RecordData Record;
Mike Stump1eb44332009-09-09 15:08:12 +00001480
Douglas Gregor2cf26342009-04-09 22:27:44 +00001481 // Emit the type's representation.
Sebastian Redl3397c552010-08-18 23:56:27 +00001482 ASTTypeWriter W(*this, Record);
John McCall0953e762009-09-24 19:53:00 +00001483
Douglas Gregora4923eb2009-11-16 21:35:15 +00001484 if (T.hasLocalNonFastQualifiers()) {
1485 Qualifiers Qs = T.getLocalQualifiers();
1486 AddTypeRef(T.getLocalUnqualifiedType(), Record);
John McCall0953e762009-09-24 19:53:00 +00001487 Record.push_back(Qs.getAsOpaqueValue());
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001488 W.Code = TYPE_EXT_QUAL;
John McCall0953e762009-09-24 19:53:00 +00001489 } else {
1490 switch (T->getTypeClass()) {
1491 // For all of the concrete, non-dependent types, call the
1492 // appropriate visitor function.
Douglas Gregor2cf26342009-04-09 22:27:44 +00001493#define TYPE(Class, Base) \
Mike Stumpb7166332010-01-20 02:03:14 +00001494 case Type::Class: W.Visit##Class##Type(cast<Class##Type>(T)); break;
Douglas Gregor2cf26342009-04-09 22:27:44 +00001495#define ABSTRACT_TYPE(Class, Base)
Douglas Gregor2cf26342009-04-09 22:27:44 +00001496#include "clang/AST/TypeNodes.def"
John McCall0953e762009-09-24 19:53:00 +00001497 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00001498 }
1499
1500 // Emit the serialized record.
Douglas Gregorc9490c02009-04-16 22:23:12 +00001501 Stream.EmitRecord(W.Code, Record);
Douglas Gregor0b748912009-04-14 21:18:50 +00001502
1503 // Flush any expressions that were written as part of this type.
Douglas Gregorc9490c02009-04-16 22:23:12 +00001504 FlushStmts();
Douglas Gregor2cf26342009-04-09 22:27:44 +00001505}
1506
Douglas Gregor4fed3f42009-04-27 18:38:38 +00001507//===----------------------------------------------------------------------===//
1508// Declaration Serialization
1509//===----------------------------------------------------------------------===//
1510
Douglas Gregor2cf26342009-04-09 22:27:44 +00001511/// \brief Write the block containing all of the declaration IDs
1512/// lexically declared within the given DeclContext.
1513///
1514/// \returns the offset of the DECL_CONTEXT_LEXICAL block within the
1515/// bistream, or 0 if no block was written.
Sebastian Redla4232eb2010-08-18 23:56:21 +00001516uint64_t ASTWriter::WriteDeclContextLexicalBlock(ASTContext &Context,
Douglas Gregor2cf26342009-04-09 22:27:44 +00001517 DeclContext *DC) {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001518 if (DC->decls_empty())
Douglas Gregor2cf26342009-04-09 22:27:44 +00001519 return 0;
1520
Douglas Gregorc9490c02009-04-16 22:23:12 +00001521 uint64_t Offset = Stream.GetCurrentBitNo();
Douglas Gregor2cf26342009-04-09 22:27:44 +00001522 RecordData Record;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001523 Record.push_back(DECL_CONTEXT_LEXICAL);
Argyrios Kyrtzidiseb5e9982010-10-14 20:14:34 +00001524 llvm::SmallVector<KindDeclIDPair, 64> Decls;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00001525 for (DeclContext::decl_iterator D = DC->decls_begin(), DEnd = DC->decls_end();
1526 D != DEnd; ++D)
Argyrios Kyrtzidiseb5e9982010-10-14 20:14:34 +00001527 Decls.push_back(std::make_pair((*D)->getKind(), GetDeclRef(*D)));
Douglas Gregor2cf26342009-04-09 22:27:44 +00001528
Douglas Gregor25123082009-04-22 22:34:57 +00001529 ++NumLexicalDeclContexts;
Sebastian Redl681d7232010-07-27 00:17:23 +00001530 Stream.EmitRecordWithBlob(DeclContextLexicalAbbrev, Record,
Argyrios Kyrtzidiseb5e9982010-10-14 20:14:34 +00001531 reinterpret_cast<char*>(Decls.data()),
1532 Decls.size() * sizeof(KindDeclIDPair));
Douglas Gregor2cf26342009-04-09 22:27:44 +00001533 return Offset;
1534}
1535
Sebastian Redla4232eb2010-08-18 23:56:21 +00001536void ASTWriter::WriteTypeDeclOffsets() {
Sebastian Redl1476ed42010-07-16 16:36:56 +00001537 using namespace llvm;
1538 RecordData Record;
1539
1540 // Write the type offsets array
1541 BitCodeAbbrev *Abbrev = new BitCodeAbbrev();
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001542 Abbrev->Add(BitCodeAbbrevOp(TYPE_OFFSET));
Sebastian Redl1476ed42010-07-16 16:36:56 +00001543 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // # of types
1544 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // types block
1545 unsigned TypeOffsetAbbrev = Stream.EmitAbbrev(Abbrev);
1546 Record.clear();
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001547 Record.push_back(TYPE_OFFSET);
Sebastian Redl1476ed42010-07-16 16:36:56 +00001548 Record.push_back(TypeOffsets.size());
1549 Stream.EmitRecordWithBlob(TypeOffsetAbbrev, Record,
Sebastian Redlade50002010-07-30 17:03:48 +00001550 (const char *)data(TypeOffsets),
Sebastian Redl1476ed42010-07-16 16:36:56 +00001551 TypeOffsets.size() * sizeof(TypeOffsets[0]));
1552
1553 // Write the declaration offsets array
1554 Abbrev = new BitCodeAbbrev();
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001555 Abbrev->Add(BitCodeAbbrevOp(DECL_OFFSET));
Sebastian Redl1476ed42010-07-16 16:36:56 +00001556 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // # of declarations
1557 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // declarations block
1558 unsigned DeclOffsetAbbrev = Stream.EmitAbbrev(Abbrev);
1559 Record.clear();
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001560 Record.push_back(DECL_OFFSET);
Sebastian Redl1476ed42010-07-16 16:36:56 +00001561 Record.push_back(DeclOffsets.size());
1562 Stream.EmitRecordWithBlob(DeclOffsetAbbrev, Record,
Sebastian Redlade50002010-07-30 17:03:48 +00001563 (const char *)data(DeclOffsets),
Sebastian Redl1476ed42010-07-16 16:36:56 +00001564 DeclOffsets.size() * sizeof(DeclOffsets[0]));
1565}
1566
Douglas Gregor4fed3f42009-04-27 18:38:38 +00001567//===----------------------------------------------------------------------===//
1568// Global Method Pool and Selector Serialization
1569//===----------------------------------------------------------------------===//
1570
Douglas Gregor3251ceb2009-04-20 20:36:09 +00001571namespace {
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001572// Trait used for the on-disk hash table used in the method pool.
Sebastian Redl3397c552010-08-18 23:56:27 +00001573class ASTMethodPoolTrait {
Sebastian Redla4232eb2010-08-18 23:56:21 +00001574 ASTWriter &Writer;
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001575
1576public:
1577 typedef Selector key_type;
1578 typedef key_type key_type_ref;
Mike Stump1eb44332009-09-09 15:08:12 +00001579
Sebastian Redl5d050072010-08-04 17:20:04 +00001580 struct data_type {
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001581 SelectorID ID;
Sebastian Redl5d050072010-08-04 17:20:04 +00001582 ObjCMethodList Instance, Factory;
1583 };
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001584 typedef const data_type& data_type_ref;
1585
Sebastian Redl3397c552010-08-18 23:56:27 +00001586 explicit ASTMethodPoolTrait(ASTWriter &Writer) : Writer(Writer) { }
Mike Stump1eb44332009-09-09 15:08:12 +00001587
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001588 static unsigned ComputeHash(Selector Sel) {
Argyrios Kyrtzidis0eca89e2010-08-20 16:03:52 +00001589 return serialization::ComputeHash(Sel);
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001590 }
Mike Stump1eb44332009-09-09 15:08:12 +00001591
1592 std::pair<unsigned,unsigned>
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001593 EmitKeyDataLength(llvm::raw_ostream& Out, Selector Sel,
1594 data_type_ref Methods) {
1595 unsigned KeyLen = 2 + (Sel.getNumArgs()? Sel.getNumArgs() * 4 : 4);
1596 clang::io::Emit16(Out, KeyLen);
Sebastian Redl5d050072010-08-04 17:20:04 +00001597 unsigned DataLen = 4 + 2 + 2; // 2 bytes for each of the method counts
1598 for (const ObjCMethodList *Method = &Methods.Instance; Method;
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001599 Method = Method->Next)
1600 if (Method->Method)
1601 DataLen += 4;
Sebastian Redl5d050072010-08-04 17:20:04 +00001602 for (const ObjCMethodList *Method = &Methods.Factory; Method;
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001603 Method = Method->Next)
1604 if (Method->Method)
1605 DataLen += 4;
1606 clang::io::Emit16(Out, DataLen);
1607 return std::make_pair(KeyLen, DataLen);
1608 }
Mike Stump1eb44332009-09-09 15:08:12 +00001609
Douglas Gregor83941df2009-04-25 17:48:32 +00001610 void EmitKey(llvm::raw_ostream& Out, Selector Sel, unsigned) {
Mike Stump1eb44332009-09-09 15:08:12 +00001611 uint64_t Start = Out.tell();
Douglas Gregor83941df2009-04-25 17:48:32 +00001612 assert((Start >> 32) == 0 && "Selector key offset too large");
1613 Writer.SetSelectorOffset(Sel, Start);
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001614 unsigned N = Sel.getNumArgs();
1615 clang::io::Emit16(Out, N);
1616 if (N == 0)
1617 N = 1;
1618 for (unsigned I = 0; I != N; ++I)
Mike Stump1eb44332009-09-09 15:08:12 +00001619 clang::io::Emit32(Out,
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001620 Writer.getIdentifierRef(Sel.getIdentifierInfoForSlot(I)));
1621 }
Mike Stump1eb44332009-09-09 15:08:12 +00001622
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001623 void EmitData(llvm::raw_ostream& Out, key_type_ref,
Douglas Gregora67e58c2009-04-24 21:49:02 +00001624 data_type_ref Methods, unsigned DataLen) {
1625 uint64_t Start = Out.tell(); (void)Start;
Sebastian Redl5d050072010-08-04 17:20:04 +00001626 clang::io::Emit32(Out, Methods.ID);
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001627 unsigned NumInstanceMethods = 0;
Sebastian Redl5d050072010-08-04 17:20:04 +00001628 for (const ObjCMethodList *Method = &Methods.Instance; Method;
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001629 Method = Method->Next)
1630 if (Method->Method)
1631 ++NumInstanceMethods;
1632
1633 unsigned NumFactoryMethods = 0;
Sebastian Redl5d050072010-08-04 17:20:04 +00001634 for (const ObjCMethodList *Method = &Methods.Factory; Method;
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001635 Method = Method->Next)
1636 if (Method->Method)
1637 ++NumFactoryMethods;
1638
1639 clang::io::Emit16(Out, NumInstanceMethods);
1640 clang::io::Emit16(Out, NumFactoryMethods);
Sebastian Redl5d050072010-08-04 17:20:04 +00001641 for (const ObjCMethodList *Method = &Methods.Instance; Method;
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001642 Method = Method->Next)
1643 if (Method->Method)
1644 clang::io::Emit32(Out, Writer.getDeclID(Method->Method));
Sebastian Redl5d050072010-08-04 17:20:04 +00001645 for (const ObjCMethodList *Method = &Methods.Factory; Method;
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001646 Method = Method->Next)
1647 if (Method->Method)
1648 clang::io::Emit32(Out, Writer.getDeclID(Method->Method));
Douglas Gregora67e58c2009-04-24 21:49:02 +00001649
1650 assert(Out.tell() - Start == DataLen && "Data length is wrong");
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001651 }
1652};
1653} // end anonymous namespace
1654
Sebastian Redl059612d2010-08-03 21:58:15 +00001655/// \brief Write ObjC data: selectors and the method pool.
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001656///
1657/// The method pool contains both instance and factory methods, stored
Sebastian Redl059612d2010-08-03 21:58:15 +00001658/// in an on-disk hash table indexed by the selector. The hash table also
1659/// contains an empty entry for every other selector known to Sema.
Sebastian Redla4232eb2010-08-18 23:56:21 +00001660void ASTWriter::WriteSelectors(Sema &SemaRef) {
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001661 using namespace llvm;
1662
Sebastian Redl059612d2010-08-03 21:58:15 +00001663 // Do we have to do anything at all?
Sebastian Redl5d050072010-08-04 17:20:04 +00001664 if (SemaRef.MethodPool.empty() && SelectorIDs.empty())
Sebastian Redl059612d2010-08-03 21:58:15 +00001665 return;
Sebastian Redle58aa892010-08-04 18:21:41 +00001666 unsigned NumTableEntries = 0;
Sebastian Redl059612d2010-08-03 21:58:15 +00001667 // Create and write out the blob that contains selectors and the method pool.
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001668 {
Sebastian Redl3397c552010-08-18 23:56:27 +00001669 OnDiskChainedHashTableGenerator<ASTMethodPoolTrait> Generator;
Argyrios Kyrtzidis5d267682010-08-20 16:04:27 +00001670 ASTMethodPoolTrait Trait(*this);
Mike Stump1eb44332009-09-09 15:08:12 +00001671
Sebastian Redl059612d2010-08-03 21:58:15 +00001672 // Create the on-disk hash table representation. We walk through every
1673 // selector we've seen and look it up in the method pool.
Sebastian Redle58aa892010-08-04 18:21:41 +00001674 SelectorOffsets.resize(NextSelectorID - FirstSelectorID);
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001675 for (llvm::DenseMap<Selector, SelectorID>::iterator
Sebastian Redl5d050072010-08-04 17:20:04 +00001676 I = SelectorIDs.begin(), E = SelectorIDs.end();
1677 I != E; ++I) {
1678 Selector S = I->first;
Sebastian Redl059612d2010-08-03 21:58:15 +00001679 Sema::GlobalMethodPool::iterator F = SemaRef.MethodPool.find(S);
Sebastian Redl3397c552010-08-18 23:56:27 +00001680 ASTMethodPoolTrait::data_type Data = {
Sebastian Redl5d050072010-08-04 17:20:04 +00001681 I->second,
1682 ObjCMethodList(),
1683 ObjCMethodList()
1684 };
1685 if (F != SemaRef.MethodPool.end()) {
1686 Data.Instance = F->second.first;
1687 Data.Factory = F->second.second;
1688 }
Sebastian Redl3397c552010-08-18 23:56:27 +00001689 // Only write this selector if it's not in an existing AST or something
Sebastian Redle58aa892010-08-04 18:21:41 +00001690 // changed.
1691 if (Chain && I->second < FirstSelectorID) {
1692 // Selector already exists. Did it change?
1693 bool changed = false;
1694 for (ObjCMethodList *M = &Data.Instance; !changed && M && M->Method;
1695 M = M->Next) {
1696 if (M->Method->getPCHLevel() == 0)
1697 changed = true;
1698 }
1699 for (ObjCMethodList *M = &Data.Factory; !changed && M && M->Method;
1700 M = M->Next) {
1701 if (M->Method->getPCHLevel() == 0)
1702 changed = true;
1703 }
1704 if (!changed)
1705 continue;
Sebastian Redlfa78dec2010-08-04 21:22:45 +00001706 } else if (Data.Instance.Method || Data.Factory.Method) {
1707 // A new method pool entry.
1708 ++NumTableEntries;
Sebastian Redle58aa892010-08-04 18:21:41 +00001709 }
Argyrios Kyrtzidis5d267682010-08-20 16:04:27 +00001710 Generator.insert(S, Data, Trait);
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001711 }
1712
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001713 // Create the on-disk hash table in a buffer.
Mike Stump1eb44332009-09-09 15:08:12 +00001714 llvm::SmallString<4096> MethodPool;
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001715 uint32_t BucketOffset;
1716 {
Sebastian Redl3397c552010-08-18 23:56:27 +00001717 ASTMethodPoolTrait Trait(*this);
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001718 llvm::raw_svector_ostream Out(MethodPool);
1719 // Make sure that no bucket is at offset 0
Douglas Gregora67e58c2009-04-24 21:49:02 +00001720 clang::io::Emit32(Out, 0);
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001721 BucketOffset = Generator.Emit(Out, Trait);
1722 }
1723
1724 // Create a blob abbreviation
1725 BitCodeAbbrev *Abbrev = new BitCodeAbbrev();
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001726 Abbrev->Add(BitCodeAbbrevOp(METHOD_POOL));
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001727 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32));
Douglas Gregor83941df2009-04-25 17:48:32 +00001728 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32));
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001729 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob));
1730 unsigned MethodPoolAbbrev = Stream.EmitAbbrev(Abbrev);
1731
Douglas Gregor83941df2009-04-25 17:48:32 +00001732 // Write the method pool
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001733 RecordData Record;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001734 Record.push_back(METHOD_POOL);
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001735 Record.push_back(BucketOffset);
Sebastian Redle58aa892010-08-04 18:21:41 +00001736 Record.push_back(NumTableEntries);
Daniel Dunbarec312a12009-08-24 09:31:37 +00001737 Stream.EmitRecordWithBlob(MethodPoolAbbrev, Record, MethodPool.str());
Douglas Gregor83941df2009-04-25 17:48:32 +00001738
1739 // Create a blob abbreviation for the selector table offsets.
1740 Abbrev = new BitCodeAbbrev();
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001741 Abbrev->Add(BitCodeAbbrevOp(SELECTOR_OFFSETS));
Douglas Gregor7c789c12010-10-29 22:39:52 +00001742 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // size
Douglas Gregor83941df2009-04-25 17:48:32 +00001743 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob));
1744 unsigned SelectorOffsetAbbrev = Stream.EmitAbbrev(Abbrev);
1745
1746 // Write the selector offsets table.
1747 Record.clear();
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001748 Record.push_back(SELECTOR_OFFSETS);
Douglas Gregor83941df2009-04-25 17:48:32 +00001749 Record.push_back(SelectorOffsets.size());
1750 Stream.EmitRecordWithBlob(SelectorOffsetAbbrev, Record,
Sebastian Redlade50002010-07-30 17:03:48 +00001751 (const char *)data(SelectorOffsets),
Douglas Gregor83941df2009-04-25 17:48:32 +00001752 SelectorOffsets.size() * 4);
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001753 }
1754}
1755
Sebastian Redl3397c552010-08-18 23:56:27 +00001756/// \brief Write the selectors referenced in @selector expression into AST file.
Sebastian Redla4232eb2010-08-18 23:56:21 +00001757void ASTWriter::WriteReferencedSelectorsPool(Sema &SemaRef) {
Fariborz Jahanian32019832010-07-23 19:11:11 +00001758 using namespace llvm;
1759 if (SemaRef.ReferencedSelectors.empty())
1760 return;
Sebastian Redl725cd962010-08-04 20:40:17 +00001761
Fariborz Jahanian32019832010-07-23 19:11:11 +00001762 RecordData Record;
Sebastian Redl725cd962010-08-04 20:40:17 +00001763
Sebastian Redl3397c552010-08-18 23:56:27 +00001764 // Note: this writes out all references even for a dependent AST. But it is
Sebastian Redla68340f2010-08-04 22:21:29 +00001765 // very tricky to fix, and given that @selector shouldn't really appear in
1766 // headers, probably not worth it. It's not a correctness issue.
Fariborz Jahanian32019832010-07-23 19:11:11 +00001767 for (DenseMap<Selector, SourceLocation>::iterator S =
1768 SemaRef.ReferencedSelectors.begin(),
1769 E = SemaRef.ReferencedSelectors.end(); S != E; ++S) {
1770 Selector Sel = (*S).first;
1771 SourceLocation Loc = (*S).second;
1772 AddSelectorRef(Sel, Record);
1773 AddSourceLocation(Loc, Record);
1774 }
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001775 Stream.EmitRecord(REFERENCED_SELECTOR_POOL, Record);
Fariborz Jahanian32019832010-07-23 19:11:11 +00001776}
1777
Douglas Gregor4fed3f42009-04-27 18:38:38 +00001778//===----------------------------------------------------------------------===//
1779// Identifier Table Serialization
1780//===----------------------------------------------------------------------===//
1781
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001782namespace {
Sebastian Redl3397c552010-08-18 23:56:27 +00001783class ASTIdentifierTableTrait {
Sebastian Redla4232eb2010-08-18 23:56:21 +00001784 ASTWriter &Writer;
Douglas Gregor37e26842009-04-21 23:56:24 +00001785 Preprocessor &PP;
Douglas Gregor3251ceb2009-04-20 20:36:09 +00001786
Douglas Gregora92193e2009-04-28 21:18:29 +00001787 /// \brief Determines whether this is an "interesting" identifier
1788 /// that needs a full IdentifierInfo structure written into the hash
1789 /// table.
1790 static bool isInterestingIdentifier(const IdentifierInfo *II) {
1791 return II->isPoisoned() ||
1792 II->isExtensionToken() ||
1793 II->hasMacroDefinition() ||
1794 II->getObjCOrBuiltinID() ||
1795 II->getFETokenInfo<void>();
1796 }
1797
Douglas Gregor3251ceb2009-04-20 20:36:09 +00001798public:
1799 typedef const IdentifierInfo* key_type;
1800 typedef key_type key_type_ref;
Mike Stump1eb44332009-09-09 15:08:12 +00001801
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001802 typedef IdentID data_type;
Douglas Gregor3251ceb2009-04-20 20:36:09 +00001803 typedef data_type data_type_ref;
Mike Stump1eb44332009-09-09 15:08:12 +00001804
Sebastian Redl3397c552010-08-18 23:56:27 +00001805 ASTIdentifierTableTrait(ASTWriter &Writer, Preprocessor &PP)
Douglas Gregor37e26842009-04-21 23:56:24 +00001806 : Writer(Writer), PP(PP) { }
Douglas Gregor3251ceb2009-04-20 20:36:09 +00001807
1808 static unsigned ComputeHash(const IdentifierInfo* II) {
Daniel Dunbar2596e422009-10-17 23:52:28 +00001809 return llvm::HashString(II->getName());
Douglas Gregor3251ceb2009-04-20 20:36:09 +00001810 }
Mike Stump1eb44332009-09-09 15:08:12 +00001811
1812 std::pair<unsigned,unsigned>
1813 EmitKeyDataLength(llvm::raw_ostream& Out, const IdentifierInfo* II,
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001814 IdentID ID) {
Daniel Dunbare013d682009-10-18 20:26:12 +00001815 unsigned KeyLen = II->getLength() + 1;
Douglas Gregora92193e2009-04-28 21:18:29 +00001816 unsigned DataLen = 4; // 4 bytes for the persistent ID << 1
1817 if (isInterestingIdentifier(II)) {
Douglas Gregor5998da52009-04-28 21:32:13 +00001818 DataLen += 2; // 2 bytes for builtin ID, flags
Mike Stump1eb44332009-09-09 15:08:12 +00001819 if (II->hasMacroDefinition() &&
Douglas Gregora92193e2009-04-28 21:18:29 +00001820 !PP.getMacroInfo(const_cast<IdentifierInfo *>(II))->isBuiltinMacro())
Douglas Gregor5998da52009-04-28 21:32:13 +00001821 DataLen += 4;
Douglas Gregora92193e2009-04-28 21:18:29 +00001822 for (IdentifierResolver::iterator D = IdentifierResolver::begin(II),
1823 DEnd = IdentifierResolver::end();
1824 D != DEnd; ++D)
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001825 DataLen += sizeof(DeclID);
Douglas Gregora92193e2009-04-28 21:18:29 +00001826 }
Douglas Gregor668c1a42009-04-21 22:25:48 +00001827 clang::io::Emit16(Out, DataLen);
Douglas Gregor02fc7512009-04-28 20:01:51 +00001828 // We emit the key length after the data length so that every
1829 // string is preceded by a 16-bit length. This matches the PTH
1830 // format for storing identifiers.
Douglas Gregord6595a42009-04-25 21:04:17 +00001831 clang::io::Emit16(Out, KeyLen);
Douglas Gregor3251ceb2009-04-20 20:36:09 +00001832 return std::make_pair(KeyLen, DataLen);
1833 }
Mike Stump1eb44332009-09-09 15:08:12 +00001834
1835 void EmitKey(llvm::raw_ostream& Out, const IdentifierInfo* II,
Douglas Gregor3251ceb2009-04-20 20:36:09 +00001836 unsigned KeyLen) {
1837 // Record the location of the key data. This is used when generating
1838 // the mapping from persistent IDs to strings.
1839 Writer.SetIdentifierOffset(II, Out.tell());
Daniel Dunbare013d682009-10-18 20:26:12 +00001840 Out.write(II->getNameStart(), KeyLen);
Douglas Gregor3251ceb2009-04-20 20:36:09 +00001841 }
Mike Stump1eb44332009-09-09 15:08:12 +00001842
1843 void EmitData(llvm::raw_ostream& Out, const IdentifierInfo* II,
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001844 IdentID ID, unsigned) {
Douglas Gregora92193e2009-04-28 21:18:29 +00001845 if (!isInterestingIdentifier(II)) {
1846 clang::io::Emit32(Out, ID << 1);
1847 return;
1848 }
Douglas Gregor5998da52009-04-28 21:32:13 +00001849
Douglas Gregora92193e2009-04-28 21:18:29 +00001850 clang::io::Emit32(Out, (ID << 1) | 0x01);
Douglas Gregor3251ceb2009-04-20 20:36:09 +00001851 uint32_t Bits = 0;
Mike Stump1eb44332009-09-09 15:08:12 +00001852 bool hasMacroDefinition =
1853 II->hasMacroDefinition() &&
Douglas Gregor37e26842009-04-21 23:56:24 +00001854 !PP.getMacroInfo(const_cast<IdentifierInfo *>(II))->isBuiltinMacro();
Douglas Gregor5998da52009-04-28 21:32:13 +00001855 Bits = (uint32_t)II->getObjCOrBuiltinID();
Daniel Dunbarb0b84382009-12-18 20:58:47 +00001856 Bits = (Bits << 1) | unsigned(hasMacroDefinition);
1857 Bits = (Bits << 1) | unsigned(II->isExtensionToken());
1858 Bits = (Bits << 1) | unsigned(II->isPoisoned());
Argyrios Kyrtzidis646395b2010-08-11 22:55:12 +00001859 Bits = (Bits << 1) | unsigned(II->hasRevertedTokenIDToIdentifier());
Daniel Dunbarb0b84382009-12-18 20:58:47 +00001860 Bits = (Bits << 1) | unsigned(II->isCPlusPlusOperatorKeyword());
Douglas Gregor5998da52009-04-28 21:32:13 +00001861 clang::io::Emit16(Out, Bits);
Douglas Gregor3251ceb2009-04-20 20:36:09 +00001862
Douglas Gregor37e26842009-04-21 23:56:24 +00001863 if (hasMacroDefinition)
Douglas Gregor5998da52009-04-28 21:32:13 +00001864 clang::io::Emit32(Out, Writer.getMacroOffset(II));
Douglas Gregor37e26842009-04-21 23:56:24 +00001865
Douglas Gregor668c1a42009-04-21 22:25:48 +00001866 // Emit the declaration IDs in reverse order, because the
1867 // IdentifierResolver provides the declarations as they would be
1868 // visible (e.g., the function "stat" would come before the struct
1869 // "stat"), but IdentifierResolver::AddDeclToIdentifierChain()
1870 // adds declarations to the end of the list (so we need to see the
1871 // struct "status" before the function "status").
Sebastian Redlf2f0f032010-07-23 23:49:55 +00001872 // Only emit declarations that aren't from a chained PCH, though.
Mike Stump1eb44332009-09-09 15:08:12 +00001873 llvm::SmallVector<Decl *, 16> Decls(IdentifierResolver::begin(II),
Douglas Gregor668c1a42009-04-21 22:25:48 +00001874 IdentifierResolver::end());
1875 for (llvm::SmallVector<Decl *, 16>::reverse_iterator D = Decls.rbegin(),
1876 DEnd = Decls.rend();
Douglas Gregor3251ceb2009-04-20 20:36:09 +00001877 D != DEnd; ++D)
Sebastian Redld8c5abb2010-08-02 18:30:12 +00001878 clang::io::Emit32(Out, Writer.getDeclID(*D));
Douglas Gregor3251ceb2009-04-20 20:36:09 +00001879 }
1880};
1881} // end anonymous namespace
1882
Sebastian Redl3397c552010-08-18 23:56:27 +00001883/// \brief Write the identifier table into the AST file.
Douglas Gregorafaf3082009-04-11 00:14:32 +00001884///
1885/// The identifier table consists of a blob containing string data
1886/// (the actual identifiers themselves) and a separate "offsets" index
1887/// that maps identifier IDs to locations within the blob.
Sebastian Redla4232eb2010-08-18 23:56:21 +00001888void ASTWriter::WriteIdentifierTable(Preprocessor &PP) {
Douglas Gregorafaf3082009-04-11 00:14:32 +00001889 using namespace llvm;
1890
1891 // Create and write out the blob that contains the identifier
1892 // strings.
Douglas Gregorafaf3082009-04-11 00:14:32 +00001893 {
Sebastian Redl3397c552010-08-18 23:56:27 +00001894 OnDiskChainedHashTableGenerator<ASTIdentifierTableTrait> Generator;
Argyrios Kyrtzidis5d267682010-08-20 16:04:27 +00001895 ASTIdentifierTableTrait Trait(*this, PP);
Mike Stump1eb44332009-09-09 15:08:12 +00001896
Douglas Gregor92b059e2009-04-28 20:33:11 +00001897 // Look for any identifiers that were named while processing the
1898 // headers, but are otherwise not needed. We add these to the hash
1899 // table to enable checking of the predefines buffer in the case
Sebastian Redl3397c552010-08-18 23:56:27 +00001900 // where the user adds new macro definitions when building the AST
Douglas Gregor92b059e2009-04-28 20:33:11 +00001901 // file.
1902 for (IdentifierTable::iterator ID = PP.getIdentifierTable().begin(),
1903 IDEnd = PP.getIdentifierTable().end();
1904 ID != IDEnd; ++ID)
1905 getIdentifierRef(ID->second);
1906
Sebastian Redlf2f0f032010-07-23 23:49:55 +00001907 // Create the on-disk hash table representation. We only store offsets
1908 // for identifiers that appear here for the first time.
1909 IdentifierOffsets.resize(NextIdentID - FirstIdentID);
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001910 for (llvm::DenseMap<const IdentifierInfo *, IdentID>::iterator
Douglas Gregorafaf3082009-04-11 00:14:32 +00001911 ID = IdentifierIDs.begin(), IDEnd = IdentifierIDs.end();
1912 ID != IDEnd; ++ID) {
1913 assert(ID->first && "NULL identifier in identifier table");
Sebastian Redl3c7f4132010-08-18 23:57:06 +00001914 if (!Chain || !ID->first->isFromAST())
Argyrios Kyrtzidis5d267682010-08-20 16:04:27 +00001915 Generator.insert(ID->first, ID->second, Trait);
Douglas Gregor3251ceb2009-04-20 20:36:09 +00001916 }
Douglas Gregorafaf3082009-04-11 00:14:32 +00001917
Douglas Gregor3251ceb2009-04-20 20:36:09 +00001918 // Create the on-disk hash table in a buffer.
Mike Stump1eb44332009-09-09 15:08:12 +00001919 llvm::SmallString<4096> IdentifierTable;
Douglas Gregor668c1a42009-04-21 22:25:48 +00001920 uint32_t BucketOffset;
Douglas Gregor3251ceb2009-04-20 20:36:09 +00001921 {
Sebastian Redl3397c552010-08-18 23:56:27 +00001922 ASTIdentifierTableTrait Trait(*this, PP);
Douglas Gregor3251ceb2009-04-20 20:36:09 +00001923 llvm::raw_svector_ostream Out(IdentifierTable);
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00001924 // Make sure that no bucket is at offset 0
Douglas Gregora67e58c2009-04-24 21:49:02 +00001925 clang::io::Emit32(Out, 0);
Douglas Gregor668c1a42009-04-21 22:25:48 +00001926 BucketOffset = Generator.Emit(Out, Trait);
Douglas Gregorafaf3082009-04-11 00:14:32 +00001927 }
1928
1929 // Create a blob abbreviation
1930 BitCodeAbbrev *Abbrev = new BitCodeAbbrev();
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001931 Abbrev->Add(BitCodeAbbrevOp(IDENTIFIER_TABLE));
Douglas Gregor668c1a42009-04-21 22:25:48 +00001932 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32));
Douglas Gregor3251ceb2009-04-20 20:36:09 +00001933 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob));
Douglas Gregorc9490c02009-04-16 22:23:12 +00001934 unsigned IDTableAbbrev = Stream.EmitAbbrev(Abbrev);
Douglas Gregorafaf3082009-04-11 00:14:32 +00001935
1936 // Write the identifier table
1937 RecordData Record;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001938 Record.push_back(IDENTIFIER_TABLE);
Douglas Gregor668c1a42009-04-21 22:25:48 +00001939 Record.push_back(BucketOffset);
Daniel Dunbarec312a12009-08-24 09:31:37 +00001940 Stream.EmitRecordWithBlob(IDTableAbbrev, Record, IdentifierTable.str());
Douglas Gregorafaf3082009-04-11 00:14:32 +00001941 }
1942
1943 // Write the offsets table for identifier IDs.
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00001944 BitCodeAbbrev *Abbrev = new BitCodeAbbrev();
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001945 Abbrev->Add(BitCodeAbbrevOp(IDENTIFIER_OFFSET));
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00001946 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // # of identifiers
1947 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob));
1948 unsigned IdentifierOffsetAbbrev = Stream.EmitAbbrev(Abbrev);
1949
1950 RecordData Record;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001951 Record.push_back(IDENTIFIER_OFFSET);
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00001952 Record.push_back(IdentifierOffsets.size());
1953 Stream.EmitRecordWithBlob(IdentifierOffsetAbbrev, Record,
Sebastian Redlade50002010-07-30 17:03:48 +00001954 (const char *)data(IdentifierOffsets),
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00001955 IdentifierOffsets.size() * sizeof(uint32_t));
Douglas Gregorafaf3082009-04-11 00:14:32 +00001956}
1957
Douglas Gregor4fed3f42009-04-27 18:38:38 +00001958//===----------------------------------------------------------------------===//
Argyrios Kyrtzidis5d267682010-08-20 16:04:27 +00001959// DeclContext's Name Lookup Table Serialization
1960//===----------------------------------------------------------------------===//
1961
1962namespace {
1963// Trait used for the on-disk hash table used in the method pool.
1964class ASTDeclContextNameLookupTrait {
1965 ASTWriter &Writer;
1966
1967public:
1968 typedef DeclarationName key_type;
1969 typedef key_type key_type_ref;
1970
1971 typedef DeclContext::lookup_result data_type;
1972 typedef const data_type& data_type_ref;
1973
1974 explicit ASTDeclContextNameLookupTrait(ASTWriter &Writer) : Writer(Writer) { }
1975
1976 unsigned ComputeHash(DeclarationName Name) {
1977 llvm::FoldingSetNodeID ID;
1978 ID.AddInteger(Name.getNameKind());
1979
1980 switch (Name.getNameKind()) {
1981 case DeclarationName::Identifier:
1982 ID.AddString(Name.getAsIdentifierInfo()->getName());
1983 break;
1984 case DeclarationName::ObjCZeroArgSelector:
1985 case DeclarationName::ObjCOneArgSelector:
1986 case DeclarationName::ObjCMultiArgSelector:
1987 ID.AddInteger(serialization::ComputeHash(Name.getObjCSelector()));
1988 break;
1989 case DeclarationName::CXXConstructorName:
1990 case DeclarationName::CXXDestructorName:
1991 case DeclarationName::CXXConversionFunctionName:
1992 ID.AddInteger(Writer.GetOrCreateTypeID(Name.getCXXNameType()));
1993 break;
1994 case DeclarationName::CXXOperatorName:
1995 ID.AddInteger(Name.getCXXOverloadedOperator());
1996 break;
1997 case DeclarationName::CXXLiteralOperatorName:
1998 ID.AddString(Name.getCXXLiteralIdentifier()->getName());
1999 case DeclarationName::CXXUsingDirective:
2000 break;
2001 }
2002
2003 return ID.ComputeHash();
2004 }
2005
2006 std::pair<unsigned,unsigned>
2007 EmitKeyDataLength(llvm::raw_ostream& Out, DeclarationName Name,
2008 data_type_ref Lookup) {
2009 unsigned KeyLen = 1;
2010 switch (Name.getNameKind()) {
2011 case DeclarationName::Identifier:
2012 case DeclarationName::ObjCZeroArgSelector:
2013 case DeclarationName::ObjCOneArgSelector:
2014 case DeclarationName::ObjCMultiArgSelector:
2015 case DeclarationName::CXXConstructorName:
2016 case DeclarationName::CXXDestructorName:
2017 case DeclarationName::CXXConversionFunctionName:
2018 case DeclarationName::CXXLiteralOperatorName:
2019 KeyLen += 4;
2020 break;
2021 case DeclarationName::CXXOperatorName:
2022 KeyLen += 1;
2023 break;
2024 case DeclarationName::CXXUsingDirective:
2025 break;
2026 }
2027 clang::io::Emit16(Out, KeyLen);
2028
2029 // 2 bytes for num of decls and 4 for each DeclID.
2030 unsigned DataLen = 2 + 4 * (Lookup.second - Lookup.first);
2031 clang::io::Emit16(Out, DataLen);
2032
2033 return std::make_pair(KeyLen, DataLen);
2034 }
2035
2036 void EmitKey(llvm::raw_ostream& Out, DeclarationName Name, unsigned) {
2037 using namespace clang::io;
2038
2039 assert(Name.getNameKind() < 0x100 && "Invalid name kind ?");
2040 Emit8(Out, Name.getNameKind());
2041 switch (Name.getNameKind()) {
2042 case DeclarationName::Identifier:
2043 Emit32(Out, Writer.getIdentifierRef(Name.getAsIdentifierInfo()));
2044 break;
2045 case DeclarationName::ObjCZeroArgSelector:
2046 case DeclarationName::ObjCOneArgSelector:
2047 case DeclarationName::ObjCMultiArgSelector:
2048 Emit32(Out, Writer.getSelectorRef(Name.getObjCSelector()));
2049 break;
2050 case DeclarationName::CXXConstructorName:
2051 case DeclarationName::CXXDestructorName:
2052 case DeclarationName::CXXConversionFunctionName:
2053 Emit32(Out, Writer.getTypeID(Name.getCXXNameType()));
2054 break;
2055 case DeclarationName::CXXOperatorName:
2056 assert(Name.getCXXOverloadedOperator() < 0x100 && "Invalid operator ?");
2057 Emit8(Out, Name.getCXXOverloadedOperator());
2058 break;
2059 case DeclarationName::CXXLiteralOperatorName:
2060 Emit32(Out, Writer.getIdentifierRef(Name.getCXXLiteralIdentifier()));
2061 break;
2062 case DeclarationName::CXXUsingDirective:
2063 break;
2064 }
2065 }
2066
2067 void EmitData(llvm::raw_ostream& Out, key_type_ref,
2068 data_type Lookup, unsigned DataLen) {
2069 uint64_t Start = Out.tell(); (void)Start;
2070 clang::io::Emit16(Out, Lookup.second - Lookup.first);
2071 for (; Lookup.first != Lookup.second; ++Lookup.first)
2072 clang::io::Emit32(Out, Writer.GetDeclRef(*Lookup.first));
2073
2074 assert(Out.tell() - Start == DataLen && "Data length is wrong");
2075 }
2076};
2077} // end anonymous namespace
2078
Argyrios Kyrtzidis074dcc82010-08-20 16:04:35 +00002079/// \brief Write the block containing all of the declaration IDs
2080/// visible from the given DeclContext.
2081///
2082/// \returns the offset of the DECL_CONTEXT_VISIBLE block within the
Sebastian Redl1d1e42b2010-08-24 00:50:09 +00002083/// bitstream, or 0 if no block was written.
Argyrios Kyrtzidis074dcc82010-08-20 16:04:35 +00002084uint64_t ASTWriter::WriteDeclContextVisibleBlock(ASTContext &Context,
2085 DeclContext *DC) {
2086 if (DC->getPrimaryContext() != DC)
2087 return 0;
2088
2089 // Since there is no name lookup into functions or methods, don't bother to
2090 // build a visible-declarations table for these entities.
2091 if (DC->isFunctionOrMethod())
2092 return 0;
2093
2094 // If not in C++, we perform name lookup for the translation unit via the
2095 // IdentifierInfo chains, don't bother to build a visible-declarations table.
2096 // FIXME: In C++ we need the visible declarations in order to "see" the
2097 // friend declarations, is there a way to do this without writing the table ?
2098 if (DC->isTranslationUnit() && !Context.getLangOptions().CPlusPlus)
2099 return 0;
2100
2101 // Force the DeclContext to build a its name-lookup table.
Argyrios Kyrtzidisa60786b2010-08-20 23:35:55 +00002102 if (DC->hasExternalVisibleStorage())
2103 DC->MaterializeVisibleDeclsFromExternalStorage();
2104 else
2105 DC->lookup(DeclarationName());
Argyrios Kyrtzidis074dcc82010-08-20 16:04:35 +00002106
2107 // Serialize the contents of the mapping used for lookup. Note that,
2108 // although we have two very different code paths, the serialized
2109 // representation is the same for both cases: a declaration name,
2110 // followed by a size, followed by references to the visible
2111 // declarations that have that name.
2112 uint64_t Offset = Stream.GetCurrentBitNo();
2113 StoredDeclsMap *Map = static_cast<StoredDeclsMap*>(DC->getLookupPtr());
2114 if (!Map || Map->empty())
2115 return 0;
2116
2117 OnDiskChainedHashTableGenerator<ASTDeclContextNameLookupTrait> Generator;
2118 ASTDeclContextNameLookupTrait Trait(*this);
2119
2120 // Create the on-disk hash table representation.
2121 for (StoredDeclsMap::iterator D = Map->begin(), DEnd = Map->end();
2122 D != DEnd; ++D) {
2123 DeclarationName Name = D->first;
2124 DeclContext::lookup_result Result = D->second.getLookupResult();
2125 Generator.insert(Name, Result, Trait);
2126 }
2127
2128 // Create the on-disk hash table in a buffer.
2129 llvm::SmallString<4096> LookupTable;
2130 uint32_t BucketOffset;
2131 {
2132 llvm::raw_svector_ostream Out(LookupTable);
2133 // Make sure that no bucket is at offset 0
2134 clang::io::Emit32(Out, 0);
2135 BucketOffset = Generator.Emit(Out, Trait);
2136 }
2137
2138 // Write the lookup table
2139 RecordData Record;
2140 Record.push_back(DECL_CONTEXT_VISIBLE);
2141 Record.push_back(BucketOffset);
2142 Stream.EmitRecordWithBlob(DeclContextVisibleLookupAbbrev, Record,
2143 LookupTable.str());
2144
2145 Stream.EmitRecord(DECL_CONTEXT_VISIBLE, Record);
2146 ++NumVisibleDeclContexts;
2147 return Offset;
2148}
2149
Sebastian Redl1d1e42b2010-08-24 00:50:09 +00002150/// \brief Write an UPDATE_VISIBLE block for the given context.
2151///
2152/// UPDATE_VISIBLE blocks contain the declarations that are added to an existing
2153/// DeclContext in a dependent AST file. As such, they only exist for the TU
2154/// (in C++) and for namespaces.
2155void ASTWriter::WriteDeclContextVisibleUpdate(const DeclContext *DC) {
Sebastian Redl1d1e42b2010-08-24 00:50:09 +00002156 // Make the context build its lookup table, but don't make it load external
2157 // decls.
2158 DC->lookup(DeclarationName());
2159
2160 StoredDeclsMap *Map = static_cast<StoredDeclsMap*>(DC->getLookupPtr());
2161 if (!Map || Map->empty())
2162 return;
2163
2164 OnDiskChainedHashTableGenerator<ASTDeclContextNameLookupTrait> Generator;
2165 ASTDeclContextNameLookupTrait Trait(*this);
2166
2167 // Create the hash table.
Sebastian Redl1d1e42b2010-08-24 00:50:09 +00002168 for (StoredDeclsMap::iterator D = Map->begin(), DEnd = Map->end();
2169 D != DEnd; ++D) {
2170 DeclarationName Name = D->first;
2171 DeclContext::lookup_result Result = D->second.getLookupResult();
Sebastian Redl5967d622010-08-24 00:50:16 +00002172 // For any name that appears in this table, the results are complete, i.e.
2173 // they overwrite results from previous PCHs. Merging is always a mess.
2174 Generator.insert(Name, Result, Trait);
Sebastian Redl1d1e42b2010-08-24 00:50:09 +00002175 }
2176
2177 // Create the on-disk hash table in a buffer.
2178 llvm::SmallString<4096> LookupTable;
2179 uint32_t BucketOffset;
2180 {
2181 llvm::raw_svector_ostream Out(LookupTable);
2182 // Make sure that no bucket is at offset 0
2183 clang::io::Emit32(Out, 0);
2184 BucketOffset = Generator.Emit(Out, Trait);
2185 }
2186
2187 // Write the lookup table
2188 RecordData Record;
2189 Record.push_back(UPDATE_VISIBLE);
2190 Record.push_back(getDeclID(cast<Decl>(DC)));
2191 Record.push_back(BucketOffset);
2192 Stream.EmitRecordWithBlob(UpdateVisibleAbbrev, Record, LookupTable.str());
2193}
2194
Argyrios Kyrtzidis5d267682010-08-20 16:04:27 +00002195//===----------------------------------------------------------------------===//
Douglas Gregor4fed3f42009-04-27 18:38:38 +00002196// General Serialization Routines
2197//===----------------------------------------------------------------------===//
2198
Douglas Gregor68a2eb02009-04-15 21:30:51 +00002199/// \brief Write a record containing the given attributes.
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00002200void ASTWriter::WriteAttributes(const AttrVec &Attrs, RecordDataImpl &Record) {
Argyrios Kyrtzidis4eb9fc02010-10-18 19:20:11 +00002201 Record.push_back(Attrs.size());
Sean Huntcf807c42010-08-18 23:23:40 +00002202 for (AttrVec::const_iterator i = Attrs.begin(), e = Attrs.end(); i != e; ++i){
2203 const Attr * A = *i;
2204 Record.push_back(A->getKind()); // FIXME: stable encoding, target attrs
2205 AddSourceLocation(A->getLocation(), Record);
2206 Record.push_back(A->isInherited());
Douglas Gregor68a2eb02009-04-15 21:30:51 +00002207
Sean Huntcf807c42010-08-18 23:23:40 +00002208#include "clang/Serialization/AttrPCHWrite.inc"
Daniel Dunbar4e9255f2010-05-27 02:25:39 +00002209
Douglas Gregor68a2eb02009-04-15 21:30:51 +00002210 }
Douglas Gregor68a2eb02009-04-15 21:30:51 +00002211}
2212
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00002213void ASTWriter::AddString(llvm::StringRef Str, RecordDataImpl &Record) {
Douglas Gregor68a2eb02009-04-15 21:30:51 +00002214 Record.push_back(Str.size());
2215 Record.insert(Record.end(), Str.begin(), Str.end());
2216}
2217
Douglas Gregor3251ceb2009-04-20 20:36:09 +00002218/// \brief Note that the identifier II occurs at the given offset
2219/// within the identifier table.
Sebastian Redla4232eb2010-08-18 23:56:21 +00002220void ASTWriter::SetIdentifierOffset(const IdentifierInfo *II, uint32_t Offset) {
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002221 IdentID ID = IdentifierIDs[II];
Sebastian Redl3397c552010-08-18 23:56:27 +00002222 // Only store offsets new to this AST file. Other identifier names are looked
Sebastian Redlf2f0f032010-07-23 23:49:55 +00002223 // up earlier in the chain and thus don't need an offset.
2224 if (ID >= FirstIdentID)
2225 IdentifierOffsets[ID - FirstIdentID] = Offset;
Douglas Gregor3251ceb2009-04-20 20:36:09 +00002226}
2227
Douglas Gregor83941df2009-04-25 17:48:32 +00002228/// \brief Note that the selector Sel occurs at the given offset
2229/// within the method pool/selector table.
Sebastian Redla4232eb2010-08-18 23:56:21 +00002230void ASTWriter::SetSelectorOffset(Selector Sel, uint32_t Offset) {
Douglas Gregor83941df2009-04-25 17:48:32 +00002231 unsigned ID = SelectorIDs[Sel];
2232 assert(ID && "Unknown selector");
Sebastian Redle58aa892010-08-04 18:21:41 +00002233 // Don't record offsets for selectors that are also available in a different
2234 // file.
2235 if (ID < FirstSelectorID)
2236 return;
2237 SelectorOffsets[ID - FirstSelectorID] = Offset;
Douglas Gregor83941df2009-04-25 17:48:32 +00002238}
2239
Sebastian Redla4232eb2010-08-18 23:56:21 +00002240ASTWriter::ASTWriter(llvm::BitstreamWriter &Stream)
Sebastian Redle58aa892010-08-04 18:21:41 +00002241 : Stream(Stream), Chain(0), FirstDeclID(1), NextDeclID(FirstDeclID),
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002242 FirstTypeID(NUM_PREDEF_TYPE_IDS), NextTypeID(FirstTypeID),
Sebastian Redle58aa892010-08-04 18:21:41 +00002243 FirstIdentID(1), NextIdentID(FirstIdentID), FirstSelectorID(1),
Douglas Gregor77424bc2010-10-02 19:29:26 +00002244 NextSelectorID(FirstSelectorID), FirstMacroID(1), NextMacroID(FirstMacroID),
2245 CollectedStmts(&StmtsToEmit),
Sebastian Redle58aa892010-08-04 18:21:41 +00002246 NumStatements(0), NumMacros(0), NumLexicalDeclContexts(0),
Douglas Gregor7c789c12010-10-29 22:39:52 +00002247 NumVisibleDeclContexts(0), FirstCXXBaseSpecifiersID(1),
2248 NextCXXBaseSpecifiersID(1)
2249{
Sebastian Redl30c514c2010-07-14 23:45:08 +00002250}
Douglas Gregor2cf26342009-04-09 22:27:44 +00002251
Sebastian Redla4232eb2010-08-18 23:56:21 +00002252void ASTWriter::WriteAST(Sema &SemaRef, MemorizeStatCalls *StatCalls,
Sebastian Redl30c514c2010-07-14 23:45:08 +00002253 const char *isysroot) {
Douglas Gregor2cf26342009-04-09 22:27:44 +00002254 // Emit the file header.
Douglas Gregorc9490c02009-04-16 22:23:12 +00002255 Stream.Emit((unsigned)'C', 8);
2256 Stream.Emit((unsigned)'P', 8);
2257 Stream.Emit((unsigned)'C', 8);
2258 Stream.Emit((unsigned)'H', 8);
Mike Stump1eb44332009-09-09 15:08:12 +00002259
Chris Lattnerb145b1e2009-04-26 22:26:21 +00002260 WriteBlockInfoBlock();
Douglas Gregor2cf26342009-04-09 22:27:44 +00002261
Sebastian Redl1dc13a12010-07-12 22:02:52 +00002262 if (Chain)
Sebastian Redla4232eb2010-08-18 23:56:21 +00002263 WriteASTChain(SemaRef, StatCalls, isysroot);
Sebastian Redl1dc13a12010-07-12 22:02:52 +00002264 else
Sebastian Redla4232eb2010-08-18 23:56:21 +00002265 WriteASTCore(SemaRef, StatCalls, isysroot);
Sebastian Redl1dc13a12010-07-12 22:02:52 +00002266}
2267
Sebastian Redla4232eb2010-08-18 23:56:21 +00002268void ASTWriter::WriteASTCore(Sema &SemaRef, MemorizeStatCalls *StatCalls,
Sebastian Redl1dc13a12010-07-12 22:02:52 +00002269 const char *isysroot) {
2270 using namespace llvm;
2271
2272 ASTContext &Context = SemaRef.Context;
2273 Preprocessor &PP = SemaRef.PP;
2274
Douglas Gregor2cf26342009-04-09 22:27:44 +00002275 // The translation unit is the first declaration we'll emit.
2276 DeclIDs[Context.getTranslationUnitDecl()] = 1;
Sebastian Redlf2f0f032010-07-23 23:49:55 +00002277 ++NextDeclID;
Douglas Gregor61d60ee2009-10-17 00:13:19 +00002278 DeclTypesToEmit.push(Context.getTranslationUnitDecl());
Douglas Gregor2cf26342009-04-09 22:27:44 +00002279
Douglas Gregor2deaea32009-04-22 18:49:13 +00002280 // Make sure that we emit IdentifierInfos (and any attached
2281 // declarations) for builtins.
2282 {
2283 IdentifierTable &Table = PP.getIdentifierTable();
2284 llvm::SmallVector<const char *, 32> BuiltinNames;
2285 Context.BuiltinInfo.GetBuiltinNames(BuiltinNames,
2286 Context.getLangOptions().NoBuiltin);
2287 for (unsigned I = 0, N = BuiltinNames.size(); I != N; ++I)
2288 getIdentifierRef(&Table.get(BuiltinNames[I]));
2289 }
2290
Chris Lattner63d65f82009-09-08 18:19:27 +00002291 // Build a record containing all of the tentative definitions in this file, in
Sebastian Redle9d12b62010-01-31 22:27:38 +00002292 // TentativeDefinitions order. Generally, this record will be empty for
Chris Lattner63d65f82009-09-08 18:19:27 +00002293 // headers.
Douglas Gregor4c0e86b2009-04-22 22:02:47 +00002294 RecordData TentativeDefinitions;
Sebastian Redle9d12b62010-01-31 22:27:38 +00002295 for (unsigned i = 0, e = SemaRef.TentativeDefinitions.size(); i != e; ++i) {
2296 AddDeclRef(SemaRef.TentativeDefinitions[i], TentativeDefinitions);
Chris Lattner63d65f82009-09-08 18:19:27 +00002297 }
Douglas Gregor4c0e86b2009-04-22 22:02:47 +00002298
Argyrios Kyrtzidis49b96d12010-08-13 18:42:17 +00002299 // Build a record containing all of the file scoped decls in this file.
2300 RecordData UnusedFileScopedDecls;
2301 for (unsigned i=0, e = SemaRef.UnusedFileScopedDecls.size(); i !=e; ++i)
2302 AddDeclRef(SemaRef.UnusedFileScopedDecls[i], UnusedFileScopedDecls);
Sebastian Redl40566802010-08-05 18:21:25 +00002303
Argyrios Kyrtzidis72b90572010-08-05 09:48:08 +00002304 RecordData WeakUndeclaredIdentifiers;
2305 if (!SemaRef.WeakUndeclaredIdentifiers.empty()) {
2306 WeakUndeclaredIdentifiers.push_back(
2307 SemaRef.WeakUndeclaredIdentifiers.size());
2308 for (llvm::DenseMap<IdentifierInfo*,Sema::WeakInfo>::iterator
2309 I = SemaRef.WeakUndeclaredIdentifiers.begin(),
2310 E = SemaRef.WeakUndeclaredIdentifiers.end(); I != E; ++I) {
2311 AddIdentifierRef(I->first, WeakUndeclaredIdentifiers);
2312 AddIdentifierRef(I->second.getAlias(), WeakUndeclaredIdentifiers);
2313 AddSourceLocation(I->second.getLocation(), WeakUndeclaredIdentifiers);
2314 WeakUndeclaredIdentifiers.push_back(I->second.getUsed());
2315 }
2316 }
Kovarththanan Rajaratnam11a18f12010-03-14 07:06:50 +00002317
Douglas Gregor14c22f22009-04-22 22:18:58 +00002318 // Build a record containing all of the locally-scoped external
2319 // declarations in this header file. Generally, this record will be
2320 // empty.
2321 RecordData LocallyScopedExternalDecls;
Sebastian Redl3397c552010-08-18 23:56:27 +00002322 // FIXME: This is filling in the AST file in densemap order which is
Chris Lattner63d65f82009-09-08 18:19:27 +00002323 // nondeterminstic!
Mike Stump1eb44332009-09-09 15:08:12 +00002324 for (llvm::DenseMap<DeclarationName, NamedDecl *>::iterator
Douglas Gregor14c22f22009-04-22 22:18:58 +00002325 TD = SemaRef.LocallyScopedExternalDecls.begin(),
2326 TDEnd = SemaRef.LocallyScopedExternalDecls.end();
2327 TD != TDEnd; ++TD)
2328 AddDeclRef(TD->second, LocallyScopedExternalDecls);
2329
Douglas Gregorb81c1702009-04-27 20:06:05 +00002330 // Build a record containing all of the ext_vector declarations.
2331 RecordData ExtVectorDecls;
2332 for (unsigned I = 0, N = SemaRef.ExtVectorDecls.size(); I != N; ++I)
2333 AddDeclRef(SemaRef.ExtVectorDecls[I], ExtVectorDecls);
2334
Argyrios Kyrtzidisd455add2010-07-06 15:37:04 +00002335 // Build a record containing all of the VTable uses information.
2336 RecordData VTableUses;
Argyrios Kyrtzidisbe4ebcd2010-08-03 17:29:52 +00002337 if (!SemaRef.VTableUses.empty()) {
2338 VTableUses.push_back(SemaRef.VTableUses.size());
2339 for (unsigned I = 0, N = SemaRef.VTableUses.size(); I != N; ++I) {
2340 AddDeclRef(SemaRef.VTableUses[I].first, VTableUses);
2341 AddSourceLocation(SemaRef.VTableUses[I].second, VTableUses);
2342 VTableUses.push_back(SemaRef.VTablesUsed[SemaRef.VTableUses[I].first]);
2343 }
Argyrios Kyrtzidisd455add2010-07-06 15:37:04 +00002344 }
2345
2346 // Build a record containing all of dynamic classes declarations.
2347 RecordData DynamicClasses;
2348 for (unsigned I = 0, N = SemaRef.DynamicClasses.size(); I != N; ++I)
2349 AddDeclRef(SemaRef.DynamicClasses[I], DynamicClasses);
2350
Argyrios Kyrtzidis0e036382010-08-05 09:48:16 +00002351 // Build a record containing all of pending implicit instantiations.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002352 RecordData PendingInstantiations;
Argyrios Kyrtzidis0e036382010-08-05 09:48:16 +00002353 for (std::deque<Sema::PendingImplicitInstantiation>::iterator
Chandler Carruth62c78d52010-08-25 08:44:16 +00002354 I = SemaRef.PendingInstantiations.begin(),
2355 N = SemaRef.PendingInstantiations.end(); I != N; ++I) {
2356 AddDeclRef(I->first, PendingInstantiations);
2357 AddSourceLocation(I->second, PendingInstantiations);
Argyrios Kyrtzidis0e036382010-08-05 09:48:16 +00002358 }
2359 assert(SemaRef.PendingLocalImplicitInstantiations.empty() &&
2360 "There are local ones at end of translation unit!");
2361
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00002362 // Build a record containing some declaration references.
2363 RecordData SemaDeclRefs;
2364 if (SemaRef.StdNamespace || SemaRef.StdBadAlloc) {
2365 AddDeclRef(SemaRef.getStdNamespace(), SemaDeclRefs);
2366 AddDeclRef(SemaRef.getStdBadAlloc(), SemaDeclRefs);
2367 }
2368
Sebastian Redl3397c552010-08-18 23:56:27 +00002369 // Write the remaining AST contents.
Douglas Gregorad1de002009-04-18 05:55:16 +00002370 RecordData Record;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002371 Stream.EnterSubblock(AST_BLOCK_ID, 5);
Sebastian Redl30c514c2010-07-14 23:45:08 +00002372 WriteMetadata(Context, isysroot);
Sebastian Redl1dc13a12010-07-12 22:02:52 +00002373 WriteLanguageOptions(Context.getLangOptions());
Douglas Gregore650c8c2009-07-07 00:12:59 +00002374 if (StatCalls && !isysroot)
Douglas Gregordd41ed52010-07-12 23:48:14 +00002375 WriteStatCache(*StatCalls);
Douglas Gregore650c8c2009-07-07 00:12:59 +00002376 WriteSourceManagerBlock(Context.getSourceManager(), PP, isysroot);
Steve Naroffc15cb2a2009-07-18 15:33:26 +00002377 // Write the record of special types.
2378 Record.clear();
Mike Stump1eb44332009-09-09 15:08:12 +00002379
Steve Naroffc15cb2a2009-07-18 15:33:26 +00002380 AddTypeRef(Context.getBuiltinVaListType(), Record);
2381 AddTypeRef(Context.getObjCIdType(), Record);
2382 AddTypeRef(Context.getObjCSelType(), Record);
2383 AddTypeRef(Context.getObjCProtoType(), Record);
2384 AddTypeRef(Context.getObjCClassType(), Record);
2385 AddTypeRef(Context.getRawCFConstantStringType(), Record);
2386 AddTypeRef(Context.getRawObjCFastEnumerationStateType(), Record);
2387 AddTypeRef(Context.getFILEType(), Record);
Mike Stump782fa302009-07-28 02:25:19 +00002388 AddTypeRef(Context.getjmp_bufType(), Record);
2389 AddTypeRef(Context.getsigjmp_bufType(), Record);
Douglas Gregord1571ac2009-08-21 00:27:50 +00002390 AddTypeRef(Context.ObjCIdRedefinitionType, Record);
2391 AddTypeRef(Context.ObjCClassRedefinitionType, Record);
Mike Stumpadaaad32009-10-20 02:12:22 +00002392 AddTypeRef(Context.getRawBlockdescriptorType(), Record);
Mike Stump083c25e2009-10-22 00:49:09 +00002393 AddTypeRef(Context.getRawBlockdescriptorExtendedType(), Record);
Fariborz Jahanian2bb5dda2010-04-23 17:41:07 +00002394 AddTypeRef(Context.ObjCSelRedefinitionType, Record);
2395 AddTypeRef(Context.getRawNSConstantStringType(), Record);
Argyrios Kyrtzidis00611382010-07-04 21:44:19 +00002396 Record.push_back(Context.isInt128Installed());
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002397 Stream.EmitRecord(SPECIAL_TYPES, Record);
Mike Stump1eb44332009-09-09 15:08:12 +00002398
Douglas Gregor366809a2009-04-26 03:49:13 +00002399 // Keep writing types and declarations until all types and
2400 // declarations have been written.
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002401 Stream.EnterSubblock(DECLTYPES_BLOCK_ID, 3);
Douglas Gregor61d60ee2009-10-17 00:13:19 +00002402 WriteDeclsBlockAbbrevs();
2403 while (!DeclTypesToEmit.empty()) {
2404 DeclOrType DOT = DeclTypesToEmit.front();
2405 DeclTypesToEmit.pop();
2406 if (DOT.isType())
2407 WriteType(DOT.getType());
2408 else
2409 WriteDecl(Context, DOT.getDecl());
2410 }
2411 Stream.ExitBlock();
Kovarththanan Rajaratnam11a18f12010-03-14 07:06:50 +00002412
Douglas Gregor813a97b2009-10-17 17:25:45 +00002413 WritePreprocessor(PP);
Sebastian Redl059612d2010-08-03 21:58:15 +00002414 WriteSelectors(SemaRef);
Fariborz Jahanian32019832010-07-23 19:11:11 +00002415 WriteReferencedSelectorsPool(SemaRef);
Douglas Gregor37e26842009-04-21 23:56:24 +00002416 WriteIdentifierTable(PP);
Douglas Gregor8f5dc7f2009-04-25 18:35:21 +00002417
Sebastian Redl1476ed42010-07-16 16:36:56 +00002418 WriteTypeDeclOffsets();
Argyrios Kyrtzidisf41d3be2010-11-05 22:10:18 +00002419 WriteUserDiagnosticMappings(Context.getDiagnostics());
Douglas Gregorad1de002009-04-18 05:55:16 +00002420
Douglas Gregor7c789c12010-10-29 22:39:52 +00002421 // Write the C++ base-specifier set offsets.
2422 if (!CXXBaseSpecifiersOffsets.empty()) {
2423 // Create a blob abbreviation for the C++ base specifiers offsets.
2424 using namespace llvm;
2425
2426 BitCodeAbbrev *Abbrev = new BitCodeAbbrev();
2427 Abbrev->Add(BitCodeAbbrevOp(CXX_BASE_SPECIFIER_OFFSETS));
2428 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // size
2429 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob));
2430 unsigned BaseSpecifierOffsetAbbrev = Stream.EmitAbbrev(Abbrev);
2431
2432 // Write the selector offsets table.
2433 Record.clear();
2434 Record.push_back(CXX_BASE_SPECIFIER_OFFSETS);
2435 Record.push_back(CXXBaseSpecifiersOffsets.size());
2436 Stream.EmitRecordWithBlob(BaseSpecifierOffsetAbbrev, Record,
2437 (const char *)CXXBaseSpecifiersOffsets.data(),
2438 CXXBaseSpecifiersOffsets.size() * sizeof(uint32_t));
2439 }
2440
Douglas Gregor4c0e86b2009-04-22 22:02:47 +00002441 // Write the record containing external, unnamed definitions.
Douglas Gregorfdd01722009-04-14 00:24:19 +00002442 if (!ExternalDefinitions.empty())
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002443 Stream.EmitRecord(EXTERNAL_DEFINITIONS, ExternalDefinitions);
Douglas Gregor4c0e86b2009-04-22 22:02:47 +00002444
2445 // Write the record containing tentative definitions.
2446 if (!TentativeDefinitions.empty())
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002447 Stream.EmitRecord(TENTATIVE_DEFINITIONS, TentativeDefinitions);
Douglas Gregor14c22f22009-04-22 22:18:58 +00002448
Argyrios Kyrtzidis49b96d12010-08-13 18:42:17 +00002449 // Write the record containing unused file scoped decls.
2450 if (!UnusedFileScopedDecls.empty())
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002451 Stream.EmitRecord(UNUSED_FILESCOPED_DECLS, UnusedFileScopedDecls);
Kovarththanan Rajaratnam11a18f12010-03-14 07:06:50 +00002452
Argyrios Kyrtzidis72b90572010-08-05 09:48:08 +00002453 // Write the record containing weak undeclared identifiers.
2454 if (!WeakUndeclaredIdentifiers.empty())
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002455 Stream.EmitRecord(WEAK_UNDECLARED_IDENTIFIERS,
Argyrios Kyrtzidis72b90572010-08-05 09:48:08 +00002456 WeakUndeclaredIdentifiers);
2457
Douglas Gregor14c22f22009-04-22 22:18:58 +00002458 // Write the record containing locally-scoped external definitions.
2459 if (!LocallyScopedExternalDecls.empty())
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002460 Stream.EmitRecord(LOCALLY_SCOPED_EXTERNAL_DECLS,
Douglas Gregor14c22f22009-04-22 22:18:58 +00002461 LocallyScopedExternalDecls);
Douglas Gregorb81c1702009-04-27 20:06:05 +00002462
2463 // Write the record containing ext_vector type names.
2464 if (!ExtVectorDecls.empty())
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002465 Stream.EmitRecord(EXT_VECTOR_DECLS, ExtVectorDecls);
Mike Stump1eb44332009-09-09 15:08:12 +00002466
Argyrios Kyrtzidisd455add2010-07-06 15:37:04 +00002467 // Write the record containing VTable uses information.
2468 if (!VTableUses.empty())
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002469 Stream.EmitRecord(VTABLE_USES, VTableUses);
Argyrios Kyrtzidisd455add2010-07-06 15:37:04 +00002470
2471 // Write the record containing dynamic classes declarations.
2472 if (!DynamicClasses.empty())
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002473 Stream.EmitRecord(DYNAMIC_CLASSES, DynamicClasses);
Argyrios Kyrtzidisd455add2010-07-06 15:37:04 +00002474
Argyrios Kyrtzidis0e036382010-08-05 09:48:16 +00002475 // Write the record containing pending implicit instantiations.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002476 if (!PendingInstantiations.empty())
2477 Stream.EmitRecord(PENDING_IMPLICIT_INSTANTIATIONS, PendingInstantiations);
Argyrios Kyrtzidis0e036382010-08-05 09:48:16 +00002478
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00002479 // Write the record containing declaration references of Sema.
2480 if (!SemaDeclRefs.empty())
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002481 Stream.EmitRecord(SEMA_DECL_REFS, SemaDeclRefs);
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00002482
Douglas Gregor3e1af842009-04-17 22:13:46 +00002483 // Some simple statistics
Douglas Gregorad1de002009-04-18 05:55:16 +00002484 Record.clear();
Douglas Gregor3e1af842009-04-17 22:13:46 +00002485 Record.push_back(NumStatements);
Douglas Gregor37e26842009-04-21 23:56:24 +00002486 Record.push_back(NumMacros);
Douglas Gregor25123082009-04-22 22:34:57 +00002487 Record.push_back(NumLexicalDeclContexts);
2488 Record.push_back(NumVisibleDeclContexts);
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002489 Stream.EmitRecord(STATISTICS, Record);
Douglas Gregorc9490c02009-04-16 22:23:12 +00002490 Stream.ExitBlock();
Douglas Gregor2cf26342009-04-09 22:27:44 +00002491}
2492
Sebastian Redla4232eb2010-08-18 23:56:21 +00002493void ASTWriter::WriteASTChain(Sema &SemaRef, MemorizeStatCalls *StatCalls,
Sebastian Redl30c514c2010-07-14 23:45:08 +00002494 const char *isysroot) {
Sebastian Redl1dc13a12010-07-12 22:02:52 +00002495 using namespace llvm;
2496
2497 ASTContext &Context = SemaRef.Context;
2498 Preprocessor &PP = SemaRef.PP;
Sebastian Redl1476ed42010-07-16 16:36:56 +00002499
Sebastian Redl1dc13a12010-07-12 22:02:52 +00002500 RecordData Record;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002501 Stream.EnterSubblock(AST_BLOCK_ID, 5);
Sebastian Redl30c514c2010-07-14 23:45:08 +00002502 WriteMetadata(Context, isysroot);
Sebastian Redl1476ed42010-07-16 16:36:56 +00002503 if (StatCalls && !isysroot)
2504 WriteStatCache(*StatCalls);
2505 // FIXME: Source manager block should only write new stuff, which could be
2506 // done by tracking the largest ID in the chain
2507 WriteSourceManagerBlock(Context.getSourceManager(), PP, isysroot);
Sebastian Redl1dc13a12010-07-12 22:02:52 +00002508
2509 // The special types are in the chained PCH.
2510
2511 // We don't start with the translation unit, but with its decls that
Sebastian Redl3c7f4132010-08-18 23:57:06 +00002512 // don't come from the chained PCH.
Sebastian Redl1dc13a12010-07-12 22:02:52 +00002513 const TranslationUnitDecl *TU = Context.getTranslationUnitDecl();
Argyrios Kyrtzidiseb5e9982010-10-14 20:14:34 +00002514 llvm::SmallVector<KindDeclIDPair, 64> NewGlobalDecls;
Sebastian Redl681d7232010-07-27 00:17:23 +00002515 for (DeclContext::decl_iterator I = TU->noload_decls_begin(),
2516 E = TU->noload_decls_end();
Sebastian Redl1dc13a12010-07-12 22:02:52 +00002517 I != E; ++I) {
Sebastian Redld692af72010-07-27 18:24:41 +00002518 if ((*I)->getPCHLevel() == 0)
Argyrios Kyrtzidiseb5e9982010-10-14 20:14:34 +00002519 NewGlobalDecls.push_back(std::make_pair((*I)->getKind(), GetDeclRef(*I)));
Sebastian Redl0b17c612010-08-13 00:28:03 +00002520 else if ((*I)->isChangedSinceDeserialization())
2521 (void)GetDeclRef(*I); // Make sure it's written, but don't record it.
Sebastian Redl1dc13a12010-07-12 22:02:52 +00002522 }
Sebastian Redl681d7232010-07-27 00:17:23 +00002523 // We also need to write a lexical updates block for the TU.
Sebastian Redld692af72010-07-27 18:24:41 +00002524 llvm::BitCodeAbbrev *Abv = new llvm::BitCodeAbbrev();
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002525 Abv->Add(llvm::BitCodeAbbrevOp(TU_UPDATE_LEXICAL));
Sebastian Redld692af72010-07-27 18:24:41 +00002526 Abv->Add(llvm::BitCodeAbbrevOp(llvm::BitCodeAbbrevOp::Blob));
2527 unsigned TuUpdateLexicalAbbrev = Stream.EmitAbbrev(Abv);
2528 Record.clear();
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002529 Record.push_back(TU_UPDATE_LEXICAL);
Sebastian Redld692af72010-07-27 18:24:41 +00002530 Stream.EmitRecordWithBlob(TuUpdateLexicalAbbrev, Record,
2531 reinterpret_cast<const char*>(NewGlobalDecls.data()),
Argyrios Kyrtzidiseb5e9982010-10-14 20:14:34 +00002532 NewGlobalDecls.size() * sizeof(KindDeclIDPair));
Argyrios Kyrtzidis100050b2010-10-28 07:38:51 +00002533 // And a visible updates block for the DeclContexts.
2534 Abv = new llvm::BitCodeAbbrev();
2535 Abv->Add(llvm::BitCodeAbbrevOp(UPDATE_VISIBLE));
2536 Abv->Add(llvm::BitCodeAbbrevOp(llvm::BitCodeAbbrevOp::VBR, 6));
2537 Abv->Add(llvm::BitCodeAbbrevOp(llvm::BitCodeAbbrevOp::Fixed, 32));
2538 Abv->Add(llvm::BitCodeAbbrevOp(llvm::BitCodeAbbrevOp::Blob));
2539 UpdateVisibleAbbrev = Stream.EmitAbbrev(Abv);
2540 WriteDeclContextVisibleUpdate(TU);
Sebastian Redl1dc13a12010-07-12 22:02:52 +00002541
Sebastian Redl083abdf2010-07-27 23:01:28 +00002542 // Build a record containing all of the new tentative definitions in this
2543 // file, in TentativeDefinitions order.
2544 RecordData TentativeDefinitions;
2545 for (unsigned i = 0, e = SemaRef.TentativeDefinitions.size(); i != e; ++i) {
2546 if (SemaRef.TentativeDefinitions[i]->getPCHLevel() == 0)
2547 AddDeclRef(SemaRef.TentativeDefinitions[i], TentativeDefinitions);
2548 }
2549
Argyrios Kyrtzidis49b96d12010-08-13 18:42:17 +00002550 // Build a record containing all of the file scoped decls in this file.
2551 RecordData UnusedFileScopedDecls;
2552 for (unsigned i=0, e = SemaRef.UnusedFileScopedDecls.size(); i !=e; ++i) {
2553 if (SemaRef.UnusedFileScopedDecls[i]->getPCHLevel() == 0)
2554 AddDeclRef(SemaRef.UnusedFileScopedDecls[i], UnusedFileScopedDecls);
Sebastian Redl083abdf2010-07-27 23:01:28 +00002555 }
2556
Sebastian Redl40566802010-08-05 18:21:25 +00002557 // We write the entire table, overwriting the tables from the chain.
2558 RecordData WeakUndeclaredIdentifiers;
2559 if (!SemaRef.WeakUndeclaredIdentifiers.empty()) {
2560 WeakUndeclaredIdentifiers.push_back(
2561 SemaRef.WeakUndeclaredIdentifiers.size());
2562 for (llvm::DenseMap<IdentifierInfo*,Sema::WeakInfo>::iterator
2563 I = SemaRef.WeakUndeclaredIdentifiers.begin(),
2564 E = SemaRef.WeakUndeclaredIdentifiers.end(); I != E; ++I) {
2565 AddIdentifierRef(I->first, WeakUndeclaredIdentifiers);
2566 AddIdentifierRef(I->second.getAlias(), WeakUndeclaredIdentifiers);
2567 AddSourceLocation(I->second.getLocation(), WeakUndeclaredIdentifiers);
2568 WeakUndeclaredIdentifiers.push_back(I->second.getUsed());
2569 }
2570 }
2571
Sebastian Redl083abdf2010-07-27 23:01:28 +00002572 // Build a record containing all of the locally-scoped external
2573 // declarations in this header file. Generally, this record will be
2574 // empty.
2575 RecordData LocallyScopedExternalDecls;
Sebastian Redl3397c552010-08-18 23:56:27 +00002576 // FIXME: This is filling in the AST file in densemap order which is
Sebastian Redl083abdf2010-07-27 23:01:28 +00002577 // nondeterminstic!
2578 for (llvm::DenseMap<DeclarationName, NamedDecl *>::iterator
2579 TD = SemaRef.LocallyScopedExternalDecls.begin(),
2580 TDEnd = SemaRef.LocallyScopedExternalDecls.end();
2581 TD != TDEnd; ++TD) {
2582 if (TD->second->getPCHLevel() == 0)
2583 AddDeclRef(TD->second, LocallyScopedExternalDecls);
2584 }
2585
2586 // Build a record containing all of the ext_vector declarations.
2587 RecordData ExtVectorDecls;
2588 for (unsigned I = 0, N = SemaRef.ExtVectorDecls.size(); I != N; ++I) {
2589 if (SemaRef.ExtVectorDecls[I]->getPCHLevel() == 0)
2590 AddDeclRef(SemaRef.ExtVectorDecls[I], ExtVectorDecls);
2591 }
2592
Sebastian Redl40566802010-08-05 18:21:25 +00002593 // Build a record containing all of the VTable uses information.
2594 // We write everything here, because it's too hard to determine whether
2595 // a use is new to this part.
2596 RecordData VTableUses;
2597 if (!SemaRef.VTableUses.empty()) {
2598 VTableUses.push_back(SemaRef.VTableUses.size());
2599 for (unsigned I = 0, N = SemaRef.VTableUses.size(); I != N; ++I) {
2600 AddDeclRef(SemaRef.VTableUses[I].first, VTableUses);
2601 AddSourceLocation(SemaRef.VTableUses[I].second, VTableUses);
2602 VTableUses.push_back(SemaRef.VTablesUsed[SemaRef.VTableUses[I].first]);
2603 }
2604 }
2605
2606 // Build a record containing all of dynamic classes declarations.
2607 RecordData DynamicClasses;
2608 for (unsigned I = 0, N = SemaRef.DynamicClasses.size(); I != N; ++I)
2609 if (SemaRef.DynamicClasses[I]->getPCHLevel() == 0)
2610 AddDeclRef(SemaRef.DynamicClasses[I], DynamicClasses);
2611
2612 // Build a record containing all of pending implicit instantiations.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002613 RecordData PendingInstantiations;
Sebastian Redl40566802010-08-05 18:21:25 +00002614 for (std::deque<Sema::PendingImplicitInstantiation>::iterator
Chandler Carruth62c78d52010-08-25 08:44:16 +00002615 I = SemaRef.PendingInstantiations.begin(),
2616 N = SemaRef.PendingInstantiations.end(); I != N; ++I) {
Sebastian Redl40566802010-08-05 18:21:25 +00002617 if (I->first->getPCHLevel() == 0) {
Chandler Carruth62c78d52010-08-25 08:44:16 +00002618 AddDeclRef(I->first, PendingInstantiations);
2619 AddSourceLocation(I->second, PendingInstantiations);
Sebastian Redl40566802010-08-05 18:21:25 +00002620 }
2621 }
2622 assert(SemaRef.PendingLocalImplicitInstantiations.empty() &&
2623 "There are local ones at end of translation unit!");
2624
2625 // Build a record containing some declaration references.
2626 // It's not worth the effort to avoid duplication here.
2627 RecordData SemaDeclRefs;
2628 if (SemaRef.StdNamespace || SemaRef.StdBadAlloc) {
2629 AddDeclRef(SemaRef.getStdNamespace(), SemaDeclRefs);
2630 AddDeclRef(SemaRef.getStdBadAlloc(), SemaDeclRefs);
2631 }
2632
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002633 Stream.EnterSubblock(DECLTYPES_BLOCK_ID, 3);
Sebastian Redl1dc13a12010-07-12 22:02:52 +00002634 WriteDeclsBlockAbbrevs();
Argyrios Kyrtzidisd3d07552010-10-28 07:38:45 +00002635 for (DeclsToRewriteTy::iterator
2636 I = DeclsToRewrite.begin(), E = DeclsToRewrite.end(); I != E; ++I)
2637 DeclTypesToEmit.push(const_cast<Decl*>(*I));
Sebastian Redl1dc13a12010-07-12 22:02:52 +00002638 while (!DeclTypesToEmit.empty()) {
2639 DeclOrType DOT = DeclTypesToEmit.front();
2640 DeclTypesToEmit.pop();
2641 if (DOT.isType())
2642 WriteType(DOT.getType());
2643 else
2644 WriteDecl(Context, DOT.getDecl());
2645 }
2646 Stream.ExitBlock();
2647
Sebastian Redl083abdf2010-07-27 23:01:28 +00002648 WritePreprocessor(PP);
Sebastian Redla68340f2010-08-04 22:21:29 +00002649 WriteSelectors(SemaRef);
2650 WriteReferencedSelectorsPool(SemaRef);
Sebastian Redlf2f0f032010-07-23 23:49:55 +00002651 WriteIdentifierTable(PP);
Sebastian Redl1476ed42010-07-16 16:36:56 +00002652 WriteTypeDeclOffsets();
Argyrios Kyrtzidisf41d3be2010-11-05 22:10:18 +00002653 // FIXME: For chained PCH only write the new mappings (we currently
2654 // write all of them again).
2655 WriteUserDiagnosticMappings(Context.getDiagnostics());
Sebastian Redl083abdf2010-07-27 23:01:28 +00002656
Argyrios Kyrtzidisa8650052010-08-03 17:30:10 +00002657 /// Build a record containing first declarations from a chained PCH and the
Sebastian Redl3397c552010-08-18 23:56:27 +00002658 /// most recent declarations in this AST that they point to.
Argyrios Kyrtzidisa8650052010-08-03 17:30:10 +00002659 RecordData FirstLatestDeclIDs;
2660 for (FirstLatestDeclMap::iterator
2661 I = FirstLatestDecls.begin(), E = FirstLatestDecls.end(); I != E; ++I) {
2662 assert(I->first->getPCHLevel() > I->second->getPCHLevel() &&
2663 "Expected first & second to be in different PCHs");
2664 AddDeclRef(I->first, FirstLatestDeclIDs);
2665 AddDeclRef(I->second, FirstLatestDeclIDs);
2666 }
2667 if (!FirstLatestDeclIDs.empty())
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002668 Stream.EmitRecord(REDECLS_UPDATE_LATEST, FirstLatestDeclIDs);
Argyrios Kyrtzidisa8650052010-08-03 17:30:10 +00002669
Sebastian Redl083abdf2010-07-27 23:01:28 +00002670 // Write the record containing external, unnamed definitions.
2671 if (!ExternalDefinitions.empty())
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002672 Stream.EmitRecord(EXTERNAL_DEFINITIONS, ExternalDefinitions);
Sebastian Redl083abdf2010-07-27 23:01:28 +00002673
2674 // Write the record containing tentative definitions.
2675 if (!TentativeDefinitions.empty())
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002676 Stream.EmitRecord(TENTATIVE_DEFINITIONS, TentativeDefinitions);
Sebastian Redl083abdf2010-07-27 23:01:28 +00002677
Argyrios Kyrtzidis49b96d12010-08-13 18:42:17 +00002678 // Write the record containing unused file scoped decls.
2679 if (!UnusedFileScopedDecls.empty())
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002680 Stream.EmitRecord(UNUSED_FILESCOPED_DECLS, UnusedFileScopedDecls);
Sebastian Redl083abdf2010-07-27 23:01:28 +00002681
Sebastian Redl40566802010-08-05 18:21:25 +00002682 // Write the record containing weak undeclared identifiers.
2683 if (!WeakUndeclaredIdentifiers.empty())
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002684 Stream.EmitRecord(WEAK_UNDECLARED_IDENTIFIERS,
Sebastian Redl40566802010-08-05 18:21:25 +00002685 WeakUndeclaredIdentifiers);
2686
Sebastian Redl083abdf2010-07-27 23:01:28 +00002687 // Write the record containing locally-scoped external definitions.
2688 if (!LocallyScopedExternalDecls.empty())
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002689 Stream.EmitRecord(LOCALLY_SCOPED_EXTERNAL_DECLS,
Sebastian Redl083abdf2010-07-27 23:01:28 +00002690 LocallyScopedExternalDecls);
2691
2692 // Write the record containing ext_vector type names.
2693 if (!ExtVectorDecls.empty())
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002694 Stream.EmitRecord(EXT_VECTOR_DECLS, ExtVectorDecls);
Sebastian Redl083abdf2010-07-27 23:01:28 +00002695
Sebastian Redl40566802010-08-05 18:21:25 +00002696 // Write the record containing VTable uses information.
2697 if (!VTableUses.empty())
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002698 Stream.EmitRecord(VTABLE_USES, VTableUses);
Sebastian Redl40566802010-08-05 18:21:25 +00002699
2700 // Write the record containing dynamic classes declarations.
2701 if (!DynamicClasses.empty())
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002702 Stream.EmitRecord(DYNAMIC_CLASSES, DynamicClasses);
Sebastian Redl40566802010-08-05 18:21:25 +00002703
2704 // Write the record containing pending implicit instantiations.
Chandler Carruth62c78d52010-08-25 08:44:16 +00002705 if (!PendingInstantiations.empty())
2706 Stream.EmitRecord(PENDING_IMPLICIT_INSTANTIATIONS, PendingInstantiations);
Sebastian Redl40566802010-08-05 18:21:25 +00002707
2708 // Write the record containing declaration references of Sema.
2709 if (!SemaDeclRefs.empty())
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002710 Stream.EmitRecord(SEMA_DECL_REFS, SemaDeclRefs);
Sebastian Redl083abdf2010-07-27 23:01:28 +00002711
Argyrios Kyrtzidis100050b2010-10-28 07:38:51 +00002712 // Write the updates to DeclContexts.
2713 for (llvm::SmallPtrSet<const DeclContext *, 16>::iterator
2714 I = UpdatedDeclContexts.begin(),
2715 E = UpdatedDeclContexts.end();
Sebastian Redl1d1e42b2010-08-24 00:50:09 +00002716 I != E; ++I)
2717 WriteDeclContextVisibleUpdate(*I);
2718
Argyrios Kyrtzidisaacdd022010-10-24 17:26:43 +00002719 WriteDeclUpdatesBlocks();
Argyrios Kyrtzidis7b903402010-10-24 17:26:36 +00002720
Sebastian Redl083abdf2010-07-27 23:01:28 +00002721 Record.clear();
2722 Record.push_back(NumStatements);
2723 Record.push_back(NumMacros);
2724 Record.push_back(NumLexicalDeclContexts);
2725 Record.push_back(NumVisibleDeclContexts);
Argyrios Kyrtzidisaacdd022010-10-24 17:26:43 +00002726 WriteDeclReplacementsBlock();
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002727 Stream.EmitRecord(STATISTICS, Record);
Sebastian Redl1dc13a12010-07-12 22:02:52 +00002728 Stream.ExitBlock();
2729}
2730
Argyrios Kyrtzidisaacdd022010-10-24 17:26:43 +00002731void ASTWriter::WriteDeclUpdatesBlocks() {
Argyrios Kyrtzidis7b903402010-10-24 17:26:36 +00002732 if (DeclUpdates.empty())
2733 return;
2734
2735 RecordData OffsetsRecord;
2736 Stream.EnterSubblock(DECL_UPDATES_BLOCK_ID, 3);
2737 for (DeclUpdateMap::iterator
2738 I = DeclUpdates.begin(), E = DeclUpdates.end(); I != E; ++I) {
2739 const Decl *D = I->first;
2740 UpdateRecord &URec = I->second;
2741
Argyrios Kyrtzidisba901b52010-10-24 17:26:46 +00002742 if (DeclsToRewrite.count(D))
2743 continue; // The decl will be written completely,no need to store updates.
2744
Argyrios Kyrtzidis7b903402010-10-24 17:26:36 +00002745 uint64_t Offset = Stream.GetCurrentBitNo();
2746 Stream.EmitRecord(DECL_UPDATES, URec);
2747
2748 OffsetsRecord.push_back(GetDeclRef(D));
2749 OffsetsRecord.push_back(Offset);
2750 }
2751 Stream.ExitBlock();
2752 Stream.EmitRecord(DECL_UPDATE_OFFSETS, OffsetsRecord);
2753}
2754
Argyrios Kyrtzidisaacdd022010-10-24 17:26:43 +00002755void ASTWriter::WriteDeclReplacementsBlock() {
Sebastian Redl0b17c612010-08-13 00:28:03 +00002756 if (ReplacedDecls.empty())
2757 return;
2758
2759 RecordData Record;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002760 for (llvm::SmallVector<std::pair<DeclID, uint64_t>, 16>::iterator
Sebastian Redl0b17c612010-08-13 00:28:03 +00002761 I = ReplacedDecls.begin(), E = ReplacedDecls.end(); I != E; ++I) {
2762 Record.push_back(I->first);
2763 Record.push_back(I->second);
2764 }
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002765 Stream.EmitRecord(DECL_REPLACEMENTS, Record);
Sebastian Redl0b17c612010-08-13 00:28:03 +00002766}
2767
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00002768void ASTWriter::AddSourceLocation(SourceLocation Loc, RecordDataImpl &Record) {
Douglas Gregor2cf26342009-04-09 22:27:44 +00002769 Record.push_back(Loc.getRawEncoding());
2770}
2771
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00002772void ASTWriter::AddSourceRange(SourceRange Range, RecordDataImpl &Record) {
Chris Lattner6ad9ac02010-05-07 21:43:38 +00002773 AddSourceLocation(Range.getBegin(), Record);
2774 AddSourceLocation(Range.getEnd(), Record);
2775}
2776
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00002777void ASTWriter::AddAPInt(const llvm::APInt &Value, RecordDataImpl &Record) {
Douglas Gregor2cf26342009-04-09 22:27:44 +00002778 Record.push_back(Value.getBitWidth());
Benjamin Kramer4ea884b2010-09-06 23:43:28 +00002779 const uint64_t *Words = Value.getRawData();
2780 Record.append(Words, Words + Value.getNumWords());
Douglas Gregor2cf26342009-04-09 22:27:44 +00002781}
2782
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00002783void ASTWriter::AddAPSInt(const llvm::APSInt &Value, RecordDataImpl &Record) {
Douglas Gregor0a2b45e2009-04-13 18:14:40 +00002784 Record.push_back(Value.isUnsigned());
2785 AddAPInt(Value, Record);
2786}
2787
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00002788void ASTWriter::AddAPFloat(const llvm::APFloat &Value, RecordDataImpl &Record) {
Douglas Gregor17fc2232009-04-14 21:55:33 +00002789 AddAPInt(Value.bitcastToAPInt(), Record);
2790}
2791
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00002792void ASTWriter::AddIdentifierRef(const IdentifierInfo *II, RecordDataImpl &Record) {
Douglas Gregor2deaea32009-04-22 18:49:13 +00002793 Record.push_back(getIdentifierRef(II));
2794}
2795
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002796IdentID ASTWriter::getIdentifierRef(const IdentifierInfo *II) {
Douglas Gregor2deaea32009-04-22 18:49:13 +00002797 if (II == 0)
2798 return 0;
Douglas Gregorafaf3082009-04-11 00:14:32 +00002799
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002800 IdentID &ID = IdentifierIDs[II];
Douglas Gregorafaf3082009-04-11 00:14:32 +00002801 if (ID == 0)
Sebastian Redlf2f0f032010-07-23 23:49:55 +00002802 ID = NextIdentID++;
Douglas Gregor2deaea32009-04-22 18:49:13 +00002803 return ID;
Douglas Gregor2cf26342009-04-09 22:27:44 +00002804}
2805
Sebastian Redlf73c93f2010-09-15 19:54:06 +00002806MacroID ASTWriter::getMacroDefinitionID(MacroDefinition *MD) {
Douglas Gregor6a5a23f2010-03-19 21:51:54 +00002807 if (MD == 0)
2808 return 0;
Sebastian Redlf73c93f2010-09-15 19:54:06 +00002809
2810 MacroID &ID = MacroDefinitions[MD];
Douglas Gregor6a5a23f2010-03-19 21:51:54 +00002811 if (ID == 0)
Douglas Gregor77424bc2010-10-02 19:29:26 +00002812 ID = NextMacroID++;
Douglas Gregor6a5a23f2010-03-19 21:51:54 +00002813 return ID;
2814}
2815
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00002816void ASTWriter::AddSelectorRef(const Selector SelRef, RecordDataImpl &Record) {
Sebastian Redl5d050072010-08-04 17:20:04 +00002817 Record.push_back(getSelectorRef(SelRef));
2818}
2819
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002820SelectorID ASTWriter::getSelectorRef(Selector Sel) {
Sebastian Redl5d050072010-08-04 17:20:04 +00002821 if (Sel.getAsOpaquePtr() == 0) {
2822 return 0;
Steve Naroff90cd1bb2009-04-23 10:39:46 +00002823 }
2824
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002825 SelectorID &SID = SelectorIDs[Sel];
Sebastian Redle58aa892010-08-04 18:21:41 +00002826 if (SID == 0 && Chain) {
2827 // This might trigger a ReadSelector callback, which will set the ID for
2828 // this selector.
2829 Chain->LoadSelector(Sel);
2830 }
Steve Naroff90cd1bb2009-04-23 10:39:46 +00002831 if (SID == 0) {
Sebastian Redle58aa892010-08-04 18:21:41 +00002832 SID = NextSelectorID++;
Steve Naroff90cd1bb2009-04-23 10:39:46 +00002833 }
Sebastian Redl5d050072010-08-04 17:20:04 +00002834 return SID;
Steve Naroff90cd1bb2009-04-23 10:39:46 +00002835}
2836
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00002837void ASTWriter::AddCXXTemporary(const CXXTemporary *Temp, RecordDataImpl &Record) {
Chris Lattnerd2598362010-05-10 00:25:06 +00002838 AddDeclRef(Temp->getDestructor(), Record);
2839}
2840
Douglas Gregor7c789c12010-10-29 22:39:52 +00002841void ASTWriter::AddCXXBaseSpecifiersRef(CXXBaseSpecifier const *Bases,
2842 CXXBaseSpecifier const *BasesEnd,
2843 RecordDataImpl &Record) {
2844 assert(Bases != BasesEnd && "Empty base-specifier sets are not recorded");
2845 CXXBaseSpecifiersToWrite.push_back(
2846 QueuedCXXBaseSpecifiers(NextCXXBaseSpecifiersID,
2847 Bases, BasesEnd));
2848 Record.push_back(NextCXXBaseSpecifiersID++);
2849}
2850
Sebastian Redla4232eb2010-08-18 23:56:21 +00002851void ASTWriter::AddTemplateArgumentLocInfo(TemplateArgument::ArgKind Kind,
Argyrios Kyrtzidis44f8c372010-06-22 09:54:59 +00002852 const TemplateArgumentLocInfo &Arg,
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00002853 RecordDataImpl &Record) {
Argyrios Kyrtzidis44f8c372010-06-22 09:54:59 +00002854 switch (Kind) {
John McCall833ca992009-10-29 08:12:44 +00002855 case TemplateArgument::Expression:
Argyrios Kyrtzidis44f8c372010-06-22 09:54:59 +00002856 AddStmt(Arg.getAsExpr());
John McCall833ca992009-10-29 08:12:44 +00002857 break;
2858 case TemplateArgument::Type:
Argyrios Kyrtzidis44f8c372010-06-22 09:54:59 +00002859 AddTypeSourceInfo(Arg.getAsTypeSourceInfo(), Record);
John McCall833ca992009-10-29 08:12:44 +00002860 break;
Douglas Gregor788cd062009-11-11 01:00:40 +00002861 case TemplateArgument::Template:
Argyrios Kyrtzidis17cfded2010-06-28 09:31:42 +00002862 AddSourceRange(Arg.getTemplateQualifierRange(), Record);
2863 AddSourceLocation(Arg.getTemplateNameLoc(), Record);
Douglas Gregor788cd062009-11-11 01:00:40 +00002864 break;
John McCall833ca992009-10-29 08:12:44 +00002865 case TemplateArgument::Null:
2866 case TemplateArgument::Integral:
2867 case TemplateArgument::Declaration:
2868 case TemplateArgument::Pack:
2869 break;
2870 }
2871}
2872
Sebastian Redla4232eb2010-08-18 23:56:21 +00002873void ASTWriter::AddTemplateArgumentLoc(const TemplateArgumentLoc &Arg,
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00002874 RecordDataImpl &Record) {
Argyrios Kyrtzidis44f8c372010-06-22 09:54:59 +00002875 AddTemplateArgument(Arg.getArgument(), Record);
Argyrios Kyrtzidis17cfded2010-06-28 09:31:42 +00002876
2877 if (Arg.getArgument().getKind() == TemplateArgument::Expression) {
2878 bool InfoHasSameExpr
2879 = Arg.getArgument().getAsExpr() == Arg.getLocInfo().getAsExpr();
2880 Record.push_back(InfoHasSameExpr);
2881 if (InfoHasSameExpr)
2882 return; // Avoid storing the same expr twice.
2883 }
Argyrios Kyrtzidis44f8c372010-06-22 09:54:59 +00002884 AddTemplateArgumentLocInfo(Arg.getArgument().getKind(), Arg.getLocInfo(),
2885 Record);
2886}
2887
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00002888void ASTWriter::AddTypeSourceInfo(TypeSourceInfo *TInfo, RecordDataImpl &Record) {
John McCalla93c9342009-12-07 02:54:59 +00002889 if (TInfo == 0) {
John McCalla1ee0c52009-10-16 21:56:05 +00002890 AddTypeRef(QualType(), Record);
2891 return;
2892 }
2893
John McCalla93c9342009-12-07 02:54:59 +00002894 AddTypeRef(TInfo->getType(), Record);
John McCalla1ee0c52009-10-16 21:56:05 +00002895 TypeLocWriter TLW(*this, Record);
John McCalla93c9342009-12-07 02:54:59 +00002896 for (TypeLoc TL = TInfo->getTypeLoc(); !TL.isNull(); TL = TL.getNextTypeLoc())
Kovarththanan Rajaratnam11a18f12010-03-14 07:06:50 +00002897 TLW.Visit(TL);
John McCalla1ee0c52009-10-16 21:56:05 +00002898}
2899
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00002900void ASTWriter::AddTypeRef(QualType T, RecordDataImpl &Record) {
Argyrios Kyrtzidis7fb35182010-08-20 16:04:14 +00002901 Record.push_back(GetOrCreateTypeID(T));
2902}
2903
2904TypeID ASTWriter::GetOrCreateTypeID(QualType T) {
Argyrios Kyrtzidiseb3f04e2010-08-20 16:04:20 +00002905 return MakeTypeID(T,
2906 std::bind1st(std::mem_fun(&ASTWriter::GetOrCreateTypeIdx), this));
2907}
Douglas Gregor2cf26342009-04-09 22:27:44 +00002908
Argyrios Kyrtzidis5d267682010-08-20 16:04:27 +00002909TypeID ASTWriter::getTypeID(QualType T) const {
Argyrios Kyrtzidiseb3f04e2010-08-20 16:04:20 +00002910 return MakeTypeID(T,
2911 std::bind1st(std::mem_fun(&ASTWriter::getTypeIdx), this));
Argyrios Kyrtzidis26fca902010-08-20 16:04:09 +00002912}
2913
2914TypeIdx ASTWriter::GetOrCreateTypeIdx(QualType T) {
2915 if (T.isNull())
2916 return TypeIdx();
2917 assert(!T.getLocalFastQualifiers());
2918
Argyrios Kyrtzidis01b81c42010-08-20 16:04:04 +00002919 TypeIdx &Idx = TypeIdxs[T];
Argyrios Kyrtzidisc8e5d512010-08-20 16:03:59 +00002920 if (Idx.getIndex() == 0) {
Douglas Gregor366809a2009-04-26 03:49:13 +00002921 // We haven't seen this type before. Assign it a new ID and put it
John McCall0953e762009-09-24 19:53:00 +00002922 // into the queue of types to emit.
Argyrios Kyrtzidisc8e5d512010-08-20 16:03:59 +00002923 Idx = TypeIdx(NextTypeID++);
Douglas Gregor61d60ee2009-10-17 00:13:19 +00002924 DeclTypesToEmit.push(T);
Douglas Gregor366809a2009-04-26 03:49:13 +00002925 }
Argyrios Kyrtzidis26fca902010-08-20 16:04:09 +00002926 return Idx;
2927}
Douglas Gregor2cf26342009-04-09 22:27:44 +00002928
Argyrios Kyrtzidis5d267682010-08-20 16:04:27 +00002929TypeIdx ASTWriter::getTypeIdx(QualType T) const {
Argyrios Kyrtzidis26fca902010-08-20 16:04:09 +00002930 if (T.isNull())
2931 return TypeIdx();
2932 assert(!T.getLocalFastQualifiers());
2933
Argyrios Kyrtzidis5d267682010-08-20 16:04:27 +00002934 TypeIdxMap::const_iterator I = TypeIdxs.find(T);
2935 assert(I != TypeIdxs.end() && "Type not emitted!");
2936 return I->second;
Douglas Gregor2cf26342009-04-09 22:27:44 +00002937}
2938
Argyrios Kyrtzidis7b903402010-10-24 17:26:36 +00002939void ASTWriter::AddDeclRef(const Decl *D, RecordDataImpl &Record) {
Sebastian Redl681d7232010-07-27 00:17:23 +00002940 Record.push_back(GetDeclRef(D));
2941}
2942
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002943DeclID ASTWriter::GetDeclRef(const Decl *D) {
Douglas Gregor2cf26342009-04-09 22:27:44 +00002944 if (D == 0) {
Sebastian Redl681d7232010-07-27 00:17:23 +00002945 return 0;
Douglas Gregor2cf26342009-04-09 22:27:44 +00002946 }
Douglas Gregor97475832010-10-05 18:37:06 +00002947 assert(!(reinterpret_cast<uintptr_t>(D) & 0x01) && "Invalid decl pointer");
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002948 DeclID &ID = DeclIDs[D];
Mike Stump1eb44332009-09-09 15:08:12 +00002949 if (ID == 0) {
Douglas Gregor2cf26342009-04-09 22:27:44 +00002950 // We haven't seen this declaration before. Give it a new ID and
2951 // enqueue it in the list of declarations to emit.
Sebastian Redlf2f0f032010-07-23 23:49:55 +00002952 ID = NextDeclID++;
Douglas Gregor61d60ee2009-10-17 00:13:19 +00002953 DeclTypesToEmit.push(const_cast<Decl *>(D));
Sebastian Redl0b17c612010-08-13 00:28:03 +00002954 } else if (ID < FirstDeclID && D->isChangedSinceDeserialization()) {
2955 // We don't add it to the replacement collection here, because we don't
2956 // have the offset yet.
2957 DeclTypesToEmit.push(const_cast<Decl *>(D));
2958 // Reset the flag, so that we don't add this decl multiple times.
2959 const_cast<Decl *>(D)->setChangedSinceDeserialization(false);
Douglas Gregor2cf26342009-04-09 22:27:44 +00002960 }
2961
Sebastian Redl681d7232010-07-27 00:17:23 +00002962 return ID;
Douglas Gregor2cf26342009-04-09 22:27:44 +00002963}
2964
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002965DeclID ASTWriter::getDeclID(const Decl *D) {
Douglas Gregor3251ceb2009-04-20 20:36:09 +00002966 if (D == 0)
2967 return 0;
2968
2969 assert(DeclIDs.find(D) != DeclIDs.end() && "Declaration not emitted!");
2970 return DeclIDs[D];
2971}
2972
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00002973void ASTWriter::AddDeclarationName(DeclarationName Name, RecordDataImpl &Record) {
Chris Lattnerea5ce472009-04-27 07:35:58 +00002974 // FIXME: Emit a stable enum for NameKind. 0 = Identifier etc.
Douglas Gregor2cf26342009-04-09 22:27:44 +00002975 Record.push_back(Name.getNameKind());
2976 switch (Name.getNameKind()) {
2977 case DeclarationName::Identifier:
2978 AddIdentifierRef(Name.getAsIdentifierInfo(), Record);
2979 break;
2980
2981 case DeclarationName::ObjCZeroArgSelector:
2982 case DeclarationName::ObjCOneArgSelector:
2983 case DeclarationName::ObjCMultiArgSelector:
Steve Naroff90cd1bb2009-04-23 10:39:46 +00002984 AddSelectorRef(Name.getObjCSelector(), Record);
Douglas Gregor2cf26342009-04-09 22:27:44 +00002985 break;
2986
2987 case DeclarationName::CXXConstructorName:
2988 case DeclarationName::CXXDestructorName:
2989 case DeclarationName::CXXConversionFunctionName:
2990 AddTypeRef(Name.getCXXNameType(), Record);
2991 break;
2992
2993 case DeclarationName::CXXOperatorName:
2994 Record.push_back(Name.getCXXOverloadedOperator());
2995 break;
2996
Sean Hunt3e518bd2009-11-29 07:34:05 +00002997 case DeclarationName::CXXLiteralOperatorName:
2998 AddIdentifierRef(Name.getCXXLiteralIdentifier(), Record);
2999 break;
3000
Douglas Gregor2cf26342009-04-09 22:27:44 +00003001 case DeclarationName::CXXUsingDirective:
3002 // No extra data to emit
3003 break;
3004 }
3005}
Chris Lattner6ad9ac02010-05-07 21:43:38 +00003006
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +00003007void ASTWriter::AddDeclarationNameLoc(const DeclarationNameLoc &DNLoc,
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00003008 DeclarationName Name, RecordDataImpl &Record) {
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +00003009 switch (Name.getNameKind()) {
3010 case DeclarationName::CXXConstructorName:
3011 case DeclarationName::CXXDestructorName:
3012 case DeclarationName::CXXConversionFunctionName:
3013 AddTypeSourceInfo(DNLoc.NamedType.TInfo, Record);
3014 break;
3015
3016 case DeclarationName::CXXOperatorName:
3017 AddSourceLocation(
3018 SourceLocation::getFromRawEncoding(DNLoc.CXXOperatorName.BeginOpNameLoc),
3019 Record);
3020 AddSourceLocation(
3021 SourceLocation::getFromRawEncoding(DNLoc.CXXOperatorName.EndOpNameLoc),
3022 Record);
3023 break;
3024
3025 case DeclarationName::CXXLiteralOperatorName:
3026 AddSourceLocation(
3027 SourceLocation::getFromRawEncoding(DNLoc.CXXLiteralOperatorName.OpNameLoc),
3028 Record);
3029 break;
3030
3031 case DeclarationName::Identifier:
3032 case DeclarationName::ObjCZeroArgSelector:
3033 case DeclarationName::ObjCOneArgSelector:
3034 case DeclarationName::ObjCMultiArgSelector:
3035 case DeclarationName::CXXUsingDirective:
3036 break;
3037 }
3038}
3039
3040void ASTWriter::AddDeclarationNameInfo(const DeclarationNameInfo &NameInfo,
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00003041 RecordDataImpl &Record) {
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +00003042 AddDeclarationName(NameInfo.getName(), Record);
3043 AddSourceLocation(NameInfo.getLoc(), Record);
3044 AddDeclarationNameLoc(NameInfo.getInfo(), NameInfo.getName(), Record);
3045}
3046
3047void ASTWriter::AddQualifierInfo(const QualifierInfo &Info,
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00003048 RecordDataImpl &Record) {
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +00003049 AddNestedNameSpecifier(Info.NNS, Record);
3050 AddSourceRange(Info.NNSRange, Record);
3051 Record.push_back(Info.NumTemplParamLists);
3052 for (unsigned i=0, e=Info.NumTemplParamLists; i != e; ++i)
3053 AddTemplateParameterList(Info.TemplParamLists[i], Record);
3054}
3055
Sebastian Redla4232eb2010-08-18 23:56:21 +00003056void ASTWriter::AddNestedNameSpecifier(NestedNameSpecifier *NNS,
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00003057 RecordDataImpl &Record) {
Chris Lattner6ad9ac02010-05-07 21:43:38 +00003058 // Nested name specifiers usually aren't too long. I think that 8 would
3059 // typically accomodate the vast majority.
3060 llvm::SmallVector<NestedNameSpecifier *, 8> NestedNames;
3061
3062 // Push each of the NNS's onto a stack for serialization in reverse order.
3063 while (NNS) {
3064 NestedNames.push_back(NNS);
3065 NNS = NNS->getPrefix();
3066 }
3067
3068 Record.push_back(NestedNames.size());
3069 while(!NestedNames.empty()) {
3070 NNS = NestedNames.pop_back_val();
3071 NestedNameSpecifier::SpecifierKind Kind = NNS->getKind();
3072 Record.push_back(Kind);
3073 switch (Kind) {
3074 case NestedNameSpecifier::Identifier:
3075 AddIdentifierRef(NNS->getAsIdentifier(), Record);
3076 break;
3077
3078 case NestedNameSpecifier::Namespace:
3079 AddDeclRef(NNS->getAsNamespace(), Record);
3080 break;
3081
3082 case NestedNameSpecifier::TypeSpec:
3083 case NestedNameSpecifier::TypeSpecWithTemplate:
3084 AddTypeRef(QualType(NNS->getAsType(), 0), Record);
3085 Record.push_back(Kind == NestedNameSpecifier::TypeSpecWithTemplate);
3086 break;
3087
3088 case NestedNameSpecifier::Global:
3089 // Don't need to write an associated value.
3090 break;
3091 }
3092 }
3093}
Argyrios Kyrtzidis90b715e2010-06-19 19:28:53 +00003094
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00003095void ASTWriter::AddTemplateName(TemplateName Name, RecordDataImpl &Record) {
Michael J. Spencer20249a12010-10-21 03:16:25 +00003096 TemplateName::NameKind Kind = Name.getKind();
Argyrios Kyrtzidis90b715e2010-06-19 19:28:53 +00003097 Record.push_back(Kind);
3098 switch (Kind) {
3099 case TemplateName::Template:
3100 AddDeclRef(Name.getAsTemplateDecl(), Record);
3101 break;
3102
3103 case TemplateName::OverloadedTemplate: {
3104 OverloadedTemplateStorage *OvT = Name.getAsOverloadedTemplate();
3105 Record.push_back(OvT->size());
3106 for (OverloadedTemplateStorage::iterator I = OvT->begin(), E = OvT->end();
3107 I != E; ++I)
3108 AddDeclRef(*I, Record);
3109 break;
3110 }
Michael J. Spencer20249a12010-10-21 03:16:25 +00003111
Argyrios Kyrtzidis90b715e2010-06-19 19:28:53 +00003112 case TemplateName::QualifiedTemplate: {
3113 QualifiedTemplateName *QualT = Name.getAsQualifiedTemplateName();
3114 AddNestedNameSpecifier(QualT->getQualifier(), Record);
3115 Record.push_back(QualT->hasTemplateKeyword());
3116 AddDeclRef(QualT->getTemplateDecl(), Record);
3117 break;
3118 }
Michael J. Spencer20249a12010-10-21 03:16:25 +00003119
Argyrios Kyrtzidis90b715e2010-06-19 19:28:53 +00003120 case TemplateName::DependentTemplate: {
3121 DependentTemplateName *DepT = Name.getAsDependentTemplateName();
3122 AddNestedNameSpecifier(DepT->getQualifier(), Record);
3123 Record.push_back(DepT->isIdentifier());
3124 if (DepT->isIdentifier())
3125 AddIdentifierRef(DepT->getIdentifier(), Record);
3126 else
3127 Record.push_back(DepT->getOperator());
3128 break;
3129 }
3130 }
3131}
3132
Michael J. Spencer20249a12010-10-21 03:16:25 +00003133void ASTWriter::AddTemplateArgument(const TemplateArgument &Arg,
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00003134 RecordDataImpl &Record) {
Argyrios Kyrtzidis90b715e2010-06-19 19:28:53 +00003135 Record.push_back(Arg.getKind());
3136 switch (Arg.getKind()) {
3137 case TemplateArgument::Null:
3138 break;
3139 case TemplateArgument::Type:
3140 AddTypeRef(Arg.getAsType(), Record);
3141 break;
3142 case TemplateArgument::Declaration:
3143 AddDeclRef(Arg.getAsDecl(), Record);
3144 break;
3145 case TemplateArgument::Integral:
3146 AddAPSInt(*Arg.getAsIntegral(), Record);
3147 AddTypeRef(Arg.getIntegralType(), Record);
3148 break;
3149 case TemplateArgument::Template:
3150 AddTemplateName(Arg.getAsTemplate(), Record);
3151 break;
3152 case TemplateArgument::Expression:
3153 AddStmt(Arg.getAsExpr());
3154 break;
3155 case TemplateArgument::Pack:
3156 Record.push_back(Arg.pack_size());
3157 for (TemplateArgument::pack_iterator I=Arg.pack_begin(), E=Arg.pack_end();
3158 I != E; ++I)
3159 AddTemplateArgument(*I, Record);
3160 break;
3161 }
3162}
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00003163
3164void
Sebastian Redla4232eb2010-08-18 23:56:21 +00003165ASTWriter::AddTemplateParameterList(const TemplateParameterList *TemplateParams,
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00003166 RecordDataImpl &Record) {
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00003167 assert(TemplateParams && "No TemplateParams!");
3168 AddSourceLocation(TemplateParams->getTemplateLoc(), Record);
3169 AddSourceLocation(TemplateParams->getLAngleLoc(), Record);
3170 AddSourceLocation(TemplateParams->getRAngleLoc(), Record);
3171 Record.push_back(TemplateParams->size());
3172 for (TemplateParameterList::const_iterator
3173 P = TemplateParams->begin(), PEnd = TemplateParams->end();
3174 P != PEnd; ++P)
3175 AddDeclRef(*P, Record);
3176}
3177
3178/// \brief Emit a template argument list.
3179void
Sebastian Redla4232eb2010-08-18 23:56:21 +00003180ASTWriter::AddTemplateArgumentList(const TemplateArgumentList *TemplateArgs,
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00003181 RecordDataImpl &Record) {
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00003182 assert(TemplateArgs && "No TemplateArgs!");
Douglas Gregor910f8002010-11-07 23:05:16 +00003183 Record.push_back(TemplateArgs->size());
3184 for (int i=0, e = TemplateArgs->size(); i != e; ++i)
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00003185 AddTemplateArgument(TemplateArgs->get(i), Record);
3186}
Argyrios Kyrtzidis37ffed32010-07-02 11:55:32 +00003187
3188
3189void
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00003190ASTWriter::AddUnresolvedSet(const UnresolvedSetImpl &Set, RecordDataImpl &Record) {
Argyrios Kyrtzidis37ffed32010-07-02 11:55:32 +00003191 Record.push_back(Set.size());
3192 for (UnresolvedSetImpl::const_iterator
3193 I = Set.begin(), E = Set.end(); I != E; ++I) {
3194 AddDeclRef(I.getDecl(), Record);
3195 Record.push_back(I.getAccess());
3196 }
3197}
Argyrios Kyrtzidis0745d0a2010-07-02 23:30:27 +00003198
Sebastian Redla4232eb2010-08-18 23:56:21 +00003199void ASTWriter::AddCXXBaseSpecifier(const CXXBaseSpecifier &Base,
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00003200 RecordDataImpl &Record) {
Argyrios Kyrtzidis0745d0a2010-07-02 23:30:27 +00003201 Record.push_back(Base.isVirtual());
3202 Record.push_back(Base.isBaseOfClass());
3203 Record.push_back(Base.getAccessSpecifierAsWritten());
Nick Lewycky56062202010-07-26 16:56:01 +00003204 AddTypeSourceInfo(Base.getTypeSourceInfo(), Record);
Argyrios Kyrtzidis0745d0a2010-07-02 23:30:27 +00003205 AddSourceRange(Base.getSourceRange(), Record);
3206}
Sebastian Redl30c514c2010-07-14 23:45:08 +00003207
Douglas Gregor7c789c12010-10-29 22:39:52 +00003208void ASTWriter::FlushCXXBaseSpecifiers() {
3209 RecordData Record;
3210 for (unsigned I = 0, N = CXXBaseSpecifiersToWrite.size(); I != N; ++I) {
3211 Record.clear();
3212
3213 // Record the offset of this base-specifier set.
3214 unsigned Index = CXXBaseSpecifiersToWrite[I].ID - FirstCXXBaseSpecifiersID;
3215 if (Index == CXXBaseSpecifiersOffsets.size())
3216 CXXBaseSpecifiersOffsets.push_back(Stream.GetCurrentBitNo());
3217 else {
3218 if (Index > CXXBaseSpecifiersOffsets.size())
3219 CXXBaseSpecifiersOffsets.resize(Index + 1);
3220 CXXBaseSpecifiersOffsets[Index] = Stream.GetCurrentBitNo();
3221 }
3222
3223 const CXXBaseSpecifier *B = CXXBaseSpecifiersToWrite[I].Bases,
3224 *BEnd = CXXBaseSpecifiersToWrite[I].BasesEnd;
3225 Record.push_back(BEnd - B);
3226 for (; B != BEnd; ++B)
3227 AddCXXBaseSpecifier(*B, Record);
3228 Stream.EmitRecord(serialization::DECL_CXX_BASE_SPECIFIERS, Record);
Douglas Gregoracec34b2010-10-30 04:28:16 +00003229
3230 // Flush any expressions that were written as part of the base specifiers.
3231 FlushStmts();
Douglas Gregor7c789c12010-10-29 22:39:52 +00003232 }
3233
3234 CXXBaseSpecifiersToWrite.clear();
3235}
3236
Sebastian Redla4232eb2010-08-18 23:56:21 +00003237void ASTWriter::AddCXXBaseOrMemberInitializers(
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00003238 const CXXBaseOrMemberInitializer * const *BaseOrMembers,
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00003239 unsigned NumBaseOrMembers, RecordDataImpl &Record) {
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00003240 Record.push_back(NumBaseOrMembers);
3241 for (unsigned i=0; i != NumBaseOrMembers; ++i) {
3242 const CXXBaseOrMemberInitializer *Init = BaseOrMembers[i];
3243
3244 Record.push_back(Init->isBaseInitializer());
3245 if (Init->isBaseInitializer()) {
3246 AddTypeSourceInfo(Init->getBaseClassInfo(), Record);
3247 Record.push_back(Init->isBaseVirtual());
3248 } else {
3249 AddDeclRef(Init->getMember(), Record);
3250 }
3251 AddSourceLocation(Init->getMemberLocation(), Record);
3252 AddStmt(Init->getInit());
3253 AddDeclRef(Init->getAnonUnionMember(), Record);
3254 AddSourceLocation(Init->getLParenLoc(), Record);
3255 AddSourceLocation(Init->getRParenLoc(), Record);
3256 Record.push_back(Init->isWritten());
3257 if (Init->isWritten()) {
3258 Record.push_back(Init->getSourceOrder());
3259 } else {
3260 Record.push_back(Init->getNumArrayIndices());
3261 for (unsigned i=0, e=Init->getNumArrayIndices(); i != e; ++i)
3262 AddDeclRef(Init->getArrayIndex(i), Record);
3263 }
3264 }
3265}
3266
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00003267void ASTWriter::AddCXXDefinitionData(const CXXRecordDecl *D, RecordDataImpl &Record) {
3268 assert(D->DefinitionData);
3269 struct CXXRecordDecl::DefinitionData &Data = *D->DefinitionData;
3270 Record.push_back(Data.UserDeclaredConstructor);
3271 Record.push_back(Data.UserDeclaredCopyConstructor);
3272 Record.push_back(Data.UserDeclaredCopyAssignment);
3273 Record.push_back(Data.UserDeclaredDestructor);
3274 Record.push_back(Data.Aggregate);
3275 Record.push_back(Data.PlainOldData);
3276 Record.push_back(Data.Empty);
3277 Record.push_back(Data.Polymorphic);
3278 Record.push_back(Data.Abstract);
3279 Record.push_back(Data.HasTrivialConstructor);
3280 Record.push_back(Data.HasTrivialCopyConstructor);
3281 Record.push_back(Data.HasTrivialCopyAssignment);
3282 Record.push_back(Data.HasTrivialDestructor);
3283 Record.push_back(Data.ComputedVisibleConversions);
3284 Record.push_back(Data.DeclaredDefaultConstructor);
3285 Record.push_back(Data.DeclaredCopyConstructor);
3286 Record.push_back(Data.DeclaredCopyAssignment);
3287 Record.push_back(Data.DeclaredDestructor);
3288
3289 Record.push_back(Data.NumBases);
Douglas Gregor7c789c12010-10-29 22:39:52 +00003290 if (Data.NumBases > 0)
3291 AddCXXBaseSpecifiersRef(Data.getBases(), Data.getBases() + Data.NumBases,
3292 Record);
3293
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00003294 // FIXME: Make VBases lazily computed when needed to avoid storing them.
3295 Record.push_back(Data.NumVBases);
Douglas Gregor7c789c12010-10-29 22:39:52 +00003296 if (Data.NumVBases > 0)
3297 AddCXXBaseSpecifiersRef(Data.getVBases(), Data.getVBases() + Data.NumVBases,
3298 Record);
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00003299
3300 AddUnresolvedSet(Data.Conversions, Record);
3301 AddUnresolvedSet(Data.VisibleConversions, Record);
3302 // Data.Definition is the owning decl, no need to write it.
3303 AddDeclRef(Data.FirstFriend, Record);
3304}
3305
Argyrios Kyrtzidis7b903402010-10-24 17:26:36 +00003306void ASTWriter::ReaderInitialized(ASTReader *Reader) {
Sebastian Redlffaab3e2010-07-30 00:29:29 +00003307 assert(Reader && "Cannot remove chain");
Argyrios Kyrtzidis7b903402010-10-24 17:26:36 +00003308 assert(!Chain && "Cannot replace chain");
Sebastian Redlffaab3e2010-07-30 00:29:29 +00003309 assert(FirstDeclID == NextDeclID &&
3310 FirstTypeID == NextTypeID &&
3311 FirstIdentID == NextIdentID &&
Sebastian Redle58aa892010-08-04 18:21:41 +00003312 FirstSelectorID == NextSelectorID &&
Douglas Gregor77424bc2010-10-02 19:29:26 +00003313 FirstMacroID == NextMacroID &&
Douglas Gregor7c789c12010-10-29 22:39:52 +00003314 FirstCXXBaseSpecifiersID == NextCXXBaseSpecifiersID &&
Sebastian Redlffaab3e2010-07-30 00:29:29 +00003315 "Setting chain after writing has started.");
3316 Chain = Reader;
Argyrios Kyrtzidis7b903402010-10-24 17:26:36 +00003317
3318 FirstDeclID += Chain->getTotalNumDecls();
3319 FirstTypeID += Chain->getTotalNumTypes();
3320 FirstIdentID += Chain->getTotalNumIdentifiers();
3321 FirstSelectorID += Chain->getTotalNumSelectors();
3322 FirstMacroID += Chain->getTotalNumMacroDefinitions();
Douglas Gregor7c789c12010-10-29 22:39:52 +00003323 FirstCXXBaseSpecifiersID += Chain->getTotalNumCXXBaseSpecifiers();
Argyrios Kyrtzidis7b903402010-10-24 17:26:36 +00003324 NextDeclID = FirstDeclID;
3325 NextTypeID = FirstTypeID;
3326 NextIdentID = FirstIdentID;
3327 NextSelectorID = FirstSelectorID;
3328 NextMacroID = FirstMacroID;
Douglas Gregor7c789c12010-10-29 22:39:52 +00003329 NextCXXBaseSpecifiersID = FirstCXXBaseSpecifiersID;
Sebastian Redlffaab3e2010-07-30 00:29:29 +00003330}
3331
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003332void ASTWriter::IdentifierRead(IdentID ID, IdentifierInfo *II) {
Sebastian Redlf2f0f032010-07-23 23:49:55 +00003333 IdentifierIDs[II] = ID;
3334}
3335
Argyrios Kyrtzidisc8e5d512010-08-20 16:03:59 +00003336void ASTWriter::TypeRead(TypeIdx Idx, QualType T) {
Douglas Gregor97475832010-10-05 18:37:06 +00003337 // Always take the highest-numbered type index. This copes with an interesting
3338 // case for chained AST writing where we schedule writing the type and then,
Michael J. Spencer20249a12010-10-21 03:16:25 +00003339 // later, deserialize the type from another AST. In this case, we want to
Douglas Gregor97475832010-10-05 18:37:06 +00003340 // keep the higher-numbered entry so that we can properly write it out to
3341 // the AST file.
3342 TypeIdx &StoredIdx = TypeIdxs[T];
3343 if (Idx.getIndex() >= StoredIdx.getIndex())
3344 StoredIdx = Idx;
Sebastian Redl30c514c2010-07-14 23:45:08 +00003345}
3346
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003347void ASTWriter::DeclRead(DeclID ID, const Decl *D) {
Sebastian Redl1476ed42010-07-16 16:36:56 +00003348 DeclIDs[D] = ID;
Sebastian Redl30c514c2010-07-14 23:45:08 +00003349}
Sebastian Redl5d050072010-08-04 17:20:04 +00003350
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003351void ASTWriter::SelectorRead(SelectorID ID, Selector S) {
Sebastian Redl5d050072010-08-04 17:20:04 +00003352 SelectorIDs[S] = ID;
3353}
Douglas Gregor77424bc2010-10-02 19:29:26 +00003354
Michael J. Spencer20249a12010-10-21 03:16:25 +00003355void ASTWriter::MacroDefinitionRead(serialization::MacroID ID,
Douglas Gregor77424bc2010-10-02 19:29:26 +00003356 MacroDefinition *MD) {
3357 MacroDefinitions[MD] = ID;
3358}
Argyrios Kyrtzidis565bf302010-10-24 17:26:50 +00003359
3360void ASTWriter::CompletedTagDefinition(const TagDecl *D) {
3361 assert(D->isDefinition());
3362 if (const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(D)) {
3363 // We are interested when a PCH decl is modified.
3364 if (RD->getPCHLevel() > 0) {
3365 // A forward reference was mutated into a definition. Rewrite it.
3366 // FIXME: This happens during template instantiation, should we
3367 // have created a new definition decl instead ?
Argyrios Kyrtzidisd3d07552010-10-28 07:38:45 +00003368 RewriteDecl(RD);
Argyrios Kyrtzidis565bf302010-10-24 17:26:50 +00003369 }
3370
3371 for (CXXRecordDecl::redecl_iterator
3372 I = RD->redecls_begin(), E = RD->redecls_end(); I != E; ++I) {
3373 CXXRecordDecl *Redecl = cast<CXXRecordDecl>(*I);
3374 if (Redecl == RD)
3375 continue;
3376
3377 // We are interested when a PCH decl is modified.
3378 if (Redecl->getPCHLevel() > 0) {
3379 UpdateRecord &Record = DeclUpdates[Redecl];
3380 Record.push_back(UPD_CXX_SET_DEFINITIONDATA);
3381 assert(Redecl->DefinitionData);
3382 assert(Redecl->DefinitionData->Definition == D);
3383 AddDeclRef(D, Record); // the DefinitionDecl
3384 }
3385 }
3386 }
3387}
Argyrios Kyrtzidis100050b2010-10-28 07:38:51 +00003388void ASTWriter::AddedVisibleDecl(const DeclContext *DC, const Decl *D) {
3389 // TU and namespaces are handled elsewhere.
3390 if (isa<TranslationUnitDecl>(DC) || isa<NamespaceDecl>(DC))
3391 return;
3392
3393 if (!(D->getPCHLevel() == 0 && cast<Decl>(DC)->getPCHLevel() > 0))
3394 return; // Not a source decl added to a DeclContext from PCH.
3395
3396 AddUpdatedDeclContext(DC);
3397}
Argyrios Kyrtzidisb6cc0e12010-10-24 17:26:54 +00003398
3399void ASTWriter::AddedCXXImplicitMember(const CXXRecordDecl *RD, const Decl *D) {
3400 assert(D->isImplicit());
3401 if (!(D->getPCHLevel() == 0 && RD->getPCHLevel() > 0))
3402 return; // Not a source member added to a class from PCH.
3403 if (!isa<CXXMethodDecl>(D))
3404 return; // We are interested in lazily declared implicit methods.
3405
3406 // A decl coming from PCH was modified.
3407 assert(RD->isDefinition());
3408 UpdateRecord &Record = DeclUpdates[RD];
3409 Record.push_back(UPD_CXX_ADDED_IMPLICIT_MEMBER);
3410 AddDeclRef(D, Record);
3411}
Argyrios Kyrtzidisbef1a7b2010-10-28 07:38:42 +00003412
3413void ASTWriter::AddedCXXTemplateSpecialization(const ClassTemplateDecl *TD,
3414 const ClassTemplateSpecializationDecl *D) {
Argyrios Kyrtzidis0f04f692010-10-28 07:38:47 +00003415 // The specializations set is kept in the canonical template.
3416 TD = TD->getCanonicalDecl();
Argyrios Kyrtzidisbef1a7b2010-10-28 07:38:42 +00003417 if (!(D->getPCHLevel() == 0 && TD->getPCHLevel() > 0))
3418 return; // Not a source specialization added to a template from PCH.
3419
3420 UpdateRecord &Record = DeclUpdates[TD];
3421 Record.push_back(UPD_CXX_ADDED_TEMPLATE_SPECIALIZATION);
3422 AddDeclRef(D, Record);
3423}