blob: b8ada04e5d8aac2f53316c89685e6b5d6900d3b6 [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 Gregor2cf26342009-04-09 22:27:44 +000016#include "clang/AST/ASTContext.h"
17#include "clang/AST/Decl.h"
18#include "clang/AST/DeclContextInternals.h"
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +000019#include "clang/AST/DeclFriend.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000020#include "clang/AST/DeclTemplate.h"
Douglas Gregor0b748912009-04-14 21:18:50 +000021#include "clang/AST/Expr.h"
John McCall7a1fad32010-08-24 07:32:53 +000022#include "clang/AST/ExprCXX.h"
Douglas Gregor2cf26342009-04-09 22:27:44 +000023#include "clang/AST/Type.h"
John McCalla1ee0c52009-10-16 21:56:05 +000024#include "clang/AST/TypeLocVisitor.h"
Douglas Gregor14f79002009-04-10 03:52:48 +000025#include "clang/Basic/FileManager.h"
Chris Lattner10e286a2010-11-23 19:19:34 +000026#include "clang/Basic/FileSystemStatCache.h"
Douglas Gregor3251ceb2009-04-20 20:36:09 +000027#include "clang/Basic/OnDiskHashTable.h"
Douglas Gregor14f79002009-04-10 03:52:48 +000028#include "clang/Basic/SourceManager.h"
Douglas Gregorbd945002009-04-13 16:31:14 +000029#include "clang/Basic/SourceManagerInternals.h"
Douglas Gregor2bec0412009-04-10 21:16:55 +000030#include "clang/Basic/TargetInfo.h"
Douglas Gregor57016dd2012-10-16 23:40:58 +000031#include "clang/Basic/TargetOptions.h"
Douglas Gregorab41e632009-04-27 22:23:34 +000032#include "clang/Basic/Version.h"
Douglas Gregor0a0d2b12011-03-23 00:50:03 +000033#include "clang/Basic/VersionTuple.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000034#include "clang/Lex/HeaderSearch.h"
35#include "clang/Lex/HeaderSearchOptions.h"
36#include "clang/Lex/MacroInfo.h"
37#include "clang/Lex/PreprocessingRecord.h"
38#include "clang/Lex/Preprocessor.h"
39#include "clang/Lex/PreprocessorOptions.h"
40#include "clang/Sema/IdentifierResolver.h"
41#include "clang/Sema/Sema.h"
42#include "clang/Serialization/ASTReader.h"
Douglas Gregor17fc2232009-04-14 21:55:33 +000043#include "llvm/ADT/APFloat.h"
44#include "llvm/ADT/APInt.h"
Argyrios Kyrtzidised3802e2013-03-06 18:12:47 +000045#include "llvm/ADT/Hashing.h"
Daniel Dunbar2596e422009-10-17 23:52:28 +000046#include "llvm/ADT/StringExtras.h"
Douglas Gregor2cf26342009-04-09 22:27:44 +000047#include "llvm/Bitcode/BitstreamWriter.h"
Michael J. Spencerfbfd1802010-12-21 16:45:57 +000048#include "llvm/Support/FileSystem.h"
Douglas Gregor14f79002009-04-10 03:52:48 +000049#include "llvm/Support/MemoryBuffer.h"
Michael J. Spencer03013fa2010-11-29 18:12:39 +000050#include "llvm/Support/Path.h"
Douglas Gregorf62d43d2011-07-19 16:10:42 +000051#include <algorithm>
Chris Lattner3c304bd2009-04-11 18:40:46 +000052#include <cstdio>
Douglas Gregorcfbf1c72011-02-10 17:09:37 +000053#include <string.h>
Douglas Gregorf62d43d2011-07-19 16:10:42 +000054#include <utility>
Douglas Gregor2cf26342009-04-09 22:27:44 +000055using namespace clang;
Sebastian Redl8538e8d2010-08-18 23:57:32 +000056using namespace clang::serialization;
Douglas Gregor2cf26342009-04-09 22:27:44 +000057
Sebastian Redlade50002010-07-30 17:03:48 +000058template <typename T, typename Allocator>
Chris Lattner5f9e2722011-07-23 10:55:15 +000059static StringRef data(const std::vector<T, Allocator> &v) {
60 if (v.empty()) return StringRef();
61 return StringRef(reinterpret_cast<const char*>(&v[0]),
Benjamin Kramer6e089c62011-04-24 17:44:50 +000062 sizeof(T) * v.size());
Sebastian Redlade50002010-07-30 17:03:48 +000063}
Benjamin Kramer6e089c62011-04-24 17:44:50 +000064
65template <typename T>
Chris Lattner5f9e2722011-07-23 10:55:15 +000066static StringRef data(const SmallVectorImpl<T> &v) {
67 return StringRef(reinterpret_cast<const char*>(v.data()),
Benjamin Kramer6e089c62011-04-24 17:44:50 +000068 sizeof(T) * v.size());
Sebastian Redlade50002010-07-30 17:03:48 +000069}
70
Douglas Gregor2cf26342009-04-09 22:27:44 +000071//===----------------------------------------------------------------------===//
72// Type serialization
73//===----------------------------------------------------------------------===//
Chris Lattner12b1c762009-04-27 06:16:06 +000074
Douglas Gregor2cf26342009-04-09 22:27:44 +000075namespace {
Sebastian Redl3397c552010-08-18 23:56:27 +000076 class ASTTypeWriter {
Sebastian Redla4232eb2010-08-18 23:56:21 +000077 ASTWriter &Writer;
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +000078 ASTWriter::RecordDataImpl &Record;
Douglas Gregor2cf26342009-04-09 22:27:44 +000079
80 public:
81 /// \brief Type code that corresponds to the record generated.
Sebastian Redl8538e8d2010-08-18 23:57:32 +000082 TypeCode Code;
Douglas Gregor2cf26342009-04-09 22:27:44 +000083
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +000084 ASTTypeWriter(ASTWriter &Writer, ASTWriter::RecordDataImpl &Record)
Sebastian Redl8538e8d2010-08-18 23:57:32 +000085 : Writer(Writer), Record(Record), Code(TYPE_EXT_QUAL) { }
Douglas Gregor2cf26342009-04-09 22:27:44 +000086
87 void VisitArrayType(const ArrayType *T);
88 void VisitFunctionType(const FunctionType *T);
89 void VisitTagType(const TagType *T);
90
91#define TYPE(Class, Base) void Visit##Class##Type(const Class##Type *T);
92#define ABSTRACT_TYPE(Class, Base)
Douglas Gregor2cf26342009-04-09 22:27:44 +000093#include "clang/AST/TypeNodes.def"
94 };
95}
96
Sebastian Redl3397c552010-08-18 23:56:27 +000097void ASTTypeWriter::VisitBuiltinType(const BuiltinType *T) {
David Blaikieb219cfc2011-09-23 05:06:16 +000098 llvm_unreachable("Built-in types are never serialized");
Douglas Gregor2cf26342009-04-09 22:27:44 +000099}
100
Sebastian Redl3397c552010-08-18 23:56:27 +0000101void ASTTypeWriter::VisitComplexType(const ComplexType *T) {
Douglas Gregor2cf26342009-04-09 22:27:44 +0000102 Writer.AddTypeRef(T->getElementType(), Record);
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000103 Code = TYPE_COMPLEX;
Douglas Gregor2cf26342009-04-09 22:27:44 +0000104}
105
Sebastian Redl3397c552010-08-18 23:56:27 +0000106void ASTTypeWriter::VisitPointerType(const PointerType *T) {
Douglas Gregor2cf26342009-04-09 22:27:44 +0000107 Writer.AddTypeRef(T->getPointeeType(), Record);
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000108 Code = TYPE_POINTER;
Douglas Gregor2cf26342009-04-09 22:27:44 +0000109}
110
Sebastian Redl3397c552010-08-18 23:56:27 +0000111void ASTTypeWriter::VisitBlockPointerType(const BlockPointerType *T) {
Mike Stump1eb44332009-09-09 15:08:12 +0000112 Writer.AddTypeRef(T->getPointeeType(), Record);
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000113 Code = TYPE_BLOCK_POINTER;
Douglas Gregor2cf26342009-04-09 22:27:44 +0000114}
115
Sebastian Redl3397c552010-08-18 23:56:27 +0000116void ASTTypeWriter::VisitLValueReferenceType(const LValueReferenceType *T) {
Richard Smithdf1550f2011-04-12 10:38:03 +0000117 Writer.AddTypeRef(T->getPointeeTypeAsWritten(), Record);
118 Record.push_back(T->isSpelledAsLValue());
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000119 Code = TYPE_LVALUE_REFERENCE;
Douglas Gregor2cf26342009-04-09 22:27:44 +0000120}
121
Sebastian Redl3397c552010-08-18 23:56:27 +0000122void ASTTypeWriter::VisitRValueReferenceType(const RValueReferenceType *T) {
Richard Smithdf1550f2011-04-12 10:38:03 +0000123 Writer.AddTypeRef(T->getPointeeTypeAsWritten(), Record);
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000124 Code = TYPE_RVALUE_REFERENCE;
Douglas Gregor2cf26342009-04-09 22:27:44 +0000125}
126
Sebastian Redl3397c552010-08-18 23:56:27 +0000127void ASTTypeWriter::VisitMemberPointerType(const MemberPointerType *T) {
Mike Stump1eb44332009-09-09 15:08:12 +0000128 Writer.AddTypeRef(T->getPointeeType(), Record);
129 Writer.AddTypeRef(QualType(T->getClass(), 0), Record);
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000130 Code = TYPE_MEMBER_POINTER;
Douglas Gregor2cf26342009-04-09 22:27:44 +0000131}
132
Sebastian Redl3397c552010-08-18 23:56:27 +0000133void ASTTypeWriter::VisitArrayType(const ArrayType *T) {
Douglas Gregor2cf26342009-04-09 22:27:44 +0000134 Writer.AddTypeRef(T->getElementType(), Record);
135 Record.push_back(T->getSizeModifier()); // FIXME: stable values
John McCall0953e762009-09-24 19:53:00 +0000136 Record.push_back(T->getIndexTypeCVRQualifiers()); // FIXME: stable values
Douglas Gregor2cf26342009-04-09 22:27:44 +0000137}
138
Sebastian Redl3397c552010-08-18 23:56:27 +0000139void ASTTypeWriter::VisitConstantArrayType(const ConstantArrayType *T) {
Douglas Gregor2cf26342009-04-09 22:27:44 +0000140 VisitArrayType(T);
141 Writer.AddAPInt(T->getSize(), Record);
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000142 Code = TYPE_CONSTANT_ARRAY;
Douglas Gregor2cf26342009-04-09 22:27:44 +0000143}
144
Sebastian Redl3397c552010-08-18 23:56:27 +0000145void ASTTypeWriter::VisitIncompleteArrayType(const IncompleteArrayType *T) {
Douglas Gregor2cf26342009-04-09 22:27:44 +0000146 VisitArrayType(T);
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000147 Code = TYPE_INCOMPLETE_ARRAY;
Douglas Gregor2cf26342009-04-09 22:27:44 +0000148}
149
Sebastian Redl3397c552010-08-18 23:56:27 +0000150void ASTTypeWriter::VisitVariableArrayType(const VariableArrayType *T) {
Douglas Gregor2cf26342009-04-09 22:27:44 +0000151 VisitArrayType(T);
Douglas Gregor7e7eb3d2009-07-06 15:59:29 +0000152 Writer.AddSourceLocation(T->getLBracketLoc(), Record);
153 Writer.AddSourceLocation(T->getRBracketLoc(), Record);
Douglas Gregorc9490c02009-04-16 22:23:12 +0000154 Writer.AddStmt(T->getSizeExpr());
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000155 Code = TYPE_VARIABLE_ARRAY;
Douglas Gregor2cf26342009-04-09 22:27:44 +0000156}
157
Sebastian Redl3397c552010-08-18 23:56:27 +0000158void ASTTypeWriter::VisitVectorType(const VectorType *T) {
Douglas Gregor2cf26342009-04-09 22:27:44 +0000159 Writer.AddTypeRef(T->getElementType(), Record);
160 Record.push_back(T->getNumElements());
Bob Wilsone86d78c2010-11-10 21:56:12 +0000161 Record.push_back(T->getVectorKind());
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000162 Code = TYPE_VECTOR;
Douglas Gregor2cf26342009-04-09 22:27:44 +0000163}
164
Sebastian Redl3397c552010-08-18 23:56:27 +0000165void ASTTypeWriter::VisitExtVectorType(const ExtVectorType *T) {
Douglas Gregor2cf26342009-04-09 22:27:44 +0000166 VisitVectorType(T);
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000167 Code = TYPE_EXT_VECTOR;
Douglas Gregor2cf26342009-04-09 22:27:44 +0000168}
169
Sebastian Redl3397c552010-08-18 23:56:27 +0000170void ASTTypeWriter::VisitFunctionType(const FunctionType *T) {
Douglas Gregor2cf26342009-04-09 22:27:44 +0000171 Writer.AddTypeRef(T->getResultType(), Record);
Rafael Espindola264ba482010-03-30 20:24:48 +0000172 FunctionType::ExtInfo C = T->getExtInfo();
173 Record.push_back(C.getNoReturn());
Eli Friedmana49218e2011-04-09 08:18:08 +0000174 Record.push_back(C.getHasRegParm());
Rafael Espindola425ef722010-03-30 22:15:11 +0000175 Record.push_back(C.getRegParm());
Douglas Gregorab8bbf42010-01-18 17:14:39 +0000176 // FIXME: need to stabilize encoding of calling convention...
Rafael Espindola264ba482010-03-30 20:24:48 +0000177 Record.push_back(C.getCC());
John McCallf85e1932011-06-15 23:02:42 +0000178 Record.push_back(C.getProducesResult());
Douglas Gregor2cf26342009-04-09 22:27:44 +0000179}
180
Sebastian Redl3397c552010-08-18 23:56:27 +0000181void ASTTypeWriter::VisitFunctionNoProtoType(const FunctionNoProtoType *T) {
Douglas Gregor2cf26342009-04-09 22:27:44 +0000182 VisitFunctionType(T);
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000183 Code = TYPE_FUNCTION_NO_PROTO;
Douglas Gregor2cf26342009-04-09 22:27:44 +0000184}
185
Sebastian Redl3397c552010-08-18 23:56:27 +0000186void ASTTypeWriter::VisitFunctionProtoType(const FunctionProtoType *T) {
Douglas Gregor2cf26342009-04-09 22:27:44 +0000187 VisitFunctionType(T);
188 Record.push_back(T->getNumArgs());
189 for (unsigned I = 0, N = T->getNumArgs(); I != N; ++I)
190 Writer.AddTypeRef(T->getArgType(I), Record);
191 Record.push_back(T->isVariadic());
Richard Smitheefb3d52012-02-10 09:58:53 +0000192 Record.push_back(T->hasTrailingReturn());
Douglas Gregor2cf26342009-04-09 22:27:44 +0000193 Record.push_back(T->getTypeQuals());
Douglas Gregorc938c162011-01-26 05:01:58 +0000194 Record.push_back(static_cast<unsigned>(T->getRefQualifier()));
Sebastian Redl60618fa2011-03-12 11:50:43 +0000195 Record.push_back(T->getExceptionSpecType());
196 if (T->getExceptionSpecType() == EST_Dynamic) {
197 Record.push_back(T->getNumExceptions());
198 for (unsigned I = 0, N = T->getNumExceptions(); I != N; ++I)
199 Writer.AddTypeRef(T->getExceptionType(I), Record);
200 } else if (T->getExceptionSpecType() == EST_ComputedNoexcept) {
201 Writer.AddStmt(T->getNoexceptExpr());
Richard Smith7bb698a2012-04-21 17:47:47 +0000202 } else if (T->getExceptionSpecType() == EST_Uninstantiated) {
203 Writer.AddDeclRef(T->getExceptionSpecDecl(), Record);
204 Writer.AddDeclRef(T->getExceptionSpecTemplate(), Record);
Richard Smithb9d0b762012-07-27 04:22:15 +0000205 } else if (T->getExceptionSpecType() == EST_Unevaluated) {
206 Writer.AddDeclRef(T->getExceptionSpecDecl(), Record);
Sebastian Redl60618fa2011-03-12 11:50:43 +0000207 }
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000208 Code = TYPE_FUNCTION_PROTO;
Douglas Gregor2cf26342009-04-09 22:27:44 +0000209}
210
Sebastian Redl3397c552010-08-18 23:56:27 +0000211void ASTTypeWriter::VisitUnresolvedUsingType(const UnresolvedUsingType *T) {
John McCalled976492009-12-04 22:46:56 +0000212 Writer.AddDeclRef(T->getDecl(), Record);
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000213 Code = TYPE_UNRESOLVED_USING;
John McCalled976492009-12-04 22:46:56 +0000214}
John McCalled976492009-12-04 22:46:56 +0000215
Sebastian Redl3397c552010-08-18 23:56:27 +0000216void ASTTypeWriter::VisitTypedefType(const TypedefType *T) {
Douglas Gregor2cf26342009-04-09 22:27:44 +0000217 Writer.AddDeclRef(T->getDecl(), Record);
Argyrios Kyrtzidis9763e222010-07-02 11:55:11 +0000218 assert(!T->isCanonicalUnqualified() && "Invalid typedef ?");
219 Writer.AddTypeRef(T->getCanonicalTypeInternal(), Record);
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000220 Code = TYPE_TYPEDEF;
Douglas Gregor2cf26342009-04-09 22:27:44 +0000221}
222
Sebastian Redl3397c552010-08-18 23:56:27 +0000223void ASTTypeWriter::VisitTypeOfExprType(const TypeOfExprType *T) {
Douglas Gregorc9490c02009-04-16 22:23:12 +0000224 Writer.AddStmt(T->getUnderlyingExpr());
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000225 Code = TYPE_TYPEOF_EXPR;
Douglas Gregor2cf26342009-04-09 22:27:44 +0000226}
227
Sebastian Redl3397c552010-08-18 23:56:27 +0000228void ASTTypeWriter::VisitTypeOfType(const TypeOfType *T) {
Douglas Gregor2cf26342009-04-09 22:27:44 +0000229 Writer.AddTypeRef(T->getUnderlyingType(), Record);
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000230 Code = TYPE_TYPEOF;
Douglas Gregor2cf26342009-04-09 22:27:44 +0000231}
232
Sebastian Redl3397c552010-08-18 23:56:27 +0000233void ASTTypeWriter::VisitDecltypeType(const DecltypeType *T) {
Douglas Gregorf8af9822012-02-12 18:42:33 +0000234 Writer.AddTypeRef(T->getUnderlyingType(), Record);
Anders Carlsson395b4752009-06-24 19:06:50 +0000235 Writer.AddStmt(T->getUnderlyingExpr());
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000236 Code = TYPE_DECLTYPE;
Anders Carlsson395b4752009-06-24 19:06:50 +0000237}
238
Sean Huntca63c202011-05-24 22:41:36 +0000239void ASTTypeWriter::VisitUnaryTransformType(const UnaryTransformType *T) {
240 Writer.AddTypeRef(T->getBaseType(), Record);
241 Writer.AddTypeRef(T->getUnderlyingType(), Record);
242 Record.push_back(T->getUTTKind());
243 Code = TYPE_UNARY_TRANSFORM;
244}
245
Richard Smith34b41d92011-02-20 03:19:35 +0000246void ASTTypeWriter::VisitAutoType(const AutoType *T) {
247 Writer.AddTypeRef(T->getDeducedType(), Record);
Richard Smitha2c36462013-04-26 16:15:35 +0000248 Record.push_back(T->isDecltypeAuto());
Richard Smithdc7a4f52013-04-30 13:56:41 +0000249 if (T->getDeducedType().isNull())
250 Record.push_back(T->isDependentType());
Richard Smith34b41d92011-02-20 03:19:35 +0000251 Code = TYPE_AUTO;
252}
253
Sebastian Redl3397c552010-08-18 23:56:27 +0000254void ASTTypeWriter::VisitTagType(const TagType *T) {
Argyrios Kyrtzidisbe191102010-07-08 13:09:53 +0000255 Record.push_back(T->isDependentType());
Douglas Gregor56ca8a92012-01-17 19:21:53 +0000256 Writer.AddDeclRef(T->getDecl()->getCanonicalDecl(), Record);
Mike Stump1eb44332009-09-09 15:08:12 +0000257 assert(!T->isBeingDefined() &&
Douglas Gregor2cf26342009-04-09 22:27:44 +0000258 "Cannot serialize in the middle of a type definition");
259}
260
Sebastian Redl3397c552010-08-18 23:56:27 +0000261void ASTTypeWriter::VisitRecordType(const RecordType *T) {
Douglas Gregor2cf26342009-04-09 22:27:44 +0000262 VisitTagType(T);
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000263 Code = TYPE_RECORD;
Douglas Gregor2cf26342009-04-09 22:27:44 +0000264}
265
Sebastian Redl3397c552010-08-18 23:56:27 +0000266void ASTTypeWriter::VisitEnumType(const EnumType *T) {
Douglas Gregor2cf26342009-04-09 22:27:44 +0000267 VisitTagType(T);
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000268 Code = TYPE_ENUM;
Douglas Gregor2cf26342009-04-09 22:27:44 +0000269}
270
John McCall9d156a72011-01-06 01:58:22 +0000271void ASTTypeWriter::VisitAttributedType(const AttributedType *T) {
272 Writer.AddTypeRef(T->getModifiedType(), Record);
273 Writer.AddTypeRef(T->getEquivalentType(), Record);
274 Record.push_back(T->getAttrKind());
275 Code = TYPE_ATTRIBUTED;
276}
277
Mike Stump1eb44332009-09-09 15:08:12 +0000278void
Sebastian Redl3397c552010-08-18 23:56:27 +0000279ASTTypeWriter::VisitSubstTemplateTypeParmType(
John McCall49a832b2009-10-18 09:09:24 +0000280 const SubstTemplateTypeParmType *T) {
281 Writer.AddTypeRef(QualType(T->getReplacedParameter(), 0), Record);
282 Writer.AddTypeRef(T->getReplacementType(), Record);
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000283 Code = TYPE_SUBST_TEMPLATE_TYPE_PARM;
John McCall49a832b2009-10-18 09:09:24 +0000284}
285
286void
Douglas Gregorc3069d62011-01-14 02:55:32 +0000287ASTTypeWriter::VisitSubstTemplateTypeParmPackType(
288 const SubstTemplateTypeParmPackType *T) {
289 Writer.AddTypeRef(QualType(T->getReplacedParameter(), 0), Record);
290 Writer.AddTemplateArgument(T->getArgumentPack(), Record);
291 Code = TYPE_SUBST_TEMPLATE_TYPE_PARM_PACK;
292}
293
294void
Sebastian Redl3397c552010-08-18 23:56:27 +0000295ASTTypeWriter::VisitTemplateSpecializationType(
Douglas Gregor2cf26342009-04-09 22:27:44 +0000296 const TemplateSpecializationType *T) {
Argyrios Kyrtzidisbe191102010-07-08 13:09:53 +0000297 Record.push_back(T->isDependentType());
Argyrios Kyrtzidis90b715e2010-06-19 19:28:53 +0000298 Writer.AddTemplateName(T->getTemplateName(), Record);
299 Record.push_back(T->getNumArgs());
300 for (TemplateSpecializationType::iterator ArgI = T->begin(), ArgE = T->end();
301 ArgI != ArgE; ++ArgI)
302 Writer.AddTemplateArgument(*ArgI, Record);
Richard Smith3e4c6c42011-05-05 21:57:07 +0000303 Writer.AddTypeRef(T->isTypeAlias() ? T->getAliasedType() :
304 T->isCanonicalUnqualified() ? QualType()
Argyrios Kyrtzidis9763e222010-07-02 11:55:11 +0000305 : T->getCanonicalTypeInternal(),
306 Record);
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000307 Code = TYPE_TEMPLATE_SPECIALIZATION;
Argyrios Kyrtzidis90b715e2010-06-19 19:28:53 +0000308}
309
310void
Sebastian Redl3397c552010-08-18 23:56:27 +0000311ASTTypeWriter::VisitDependentSizedArrayType(const DependentSizedArrayType *T) {
Argyrios Kyrtzidisae8b17f2010-06-30 08:49:25 +0000312 VisitArrayType(T);
313 Writer.AddStmt(T->getSizeExpr());
314 Writer.AddSourceRange(T->getBracketsRange(), Record);
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000315 Code = TYPE_DEPENDENT_SIZED_ARRAY;
Argyrios Kyrtzidis90b715e2010-06-19 19:28:53 +0000316}
317
318void
Sebastian Redl3397c552010-08-18 23:56:27 +0000319ASTTypeWriter::VisitDependentSizedExtVectorType(
Argyrios Kyrtzidis90b715e2010-06-19 19:28:53 +0000320 const DependentSizedExtVectorType *T) {
321 // FIXME: Serialize this type (C++ only)
David Blaikieb219cfc2011-09-23 05:06:16 +0000322 llvm_unreachable("Cannot serialize dependent sized extended vector types");
Argyrios Kyrtzidis90b715e2010-06-19 19:28:53 +0000323}
324
325void
Sebastian Redl3397c552010-08-18 23:56:27 +0000326ASTTypeWriter::VisitTemplateTypeParmType(const TemplateTypeParmType *T) {
Argyrios Kyrtzidis90b715e2010-06-19 19:28:53 +0000327 Record.push_back(T->getDepth());
328 Record.push_back(T->getIndex());
329 Record.push_back(T->isParameterPack());
Chandler Carruth4fb86f82011-05-01 00:51:33 +0000330 Writer.AddDeclRef(T->getDecl(), Record);
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000331 Code = TYPE_TEMPLATE_TYPE_PARM;
Argyrios Kyrtzidis90b715e2010-06-19 19:28:53 +0000332}
333
334void
Sebastian Redl3397c552010-08-18 23:56:27 +0000335ASTTypeWriter::VisitDependentNameType(const DependentNameType *T) {
Argyrios Kyrtzidis8dfbd8b2010-06-24 08:57:31 +0000336 Record.push_back(T->getKeyword());
337 Writer.AddNestedNameSpecifier(T->getQualifier(), Record);
338 Writer.AddIdentifierRef(T->getIdentifier(), Record);
Argyrios Kyrtzidisf48d45e2010-07-02 11:55:24 +0000339 Writer.AddTypeRef(T->isCanonicalUnqualified() ? QualType()
340 : T->getCanonicalTypeInternal(),
341 Record);
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000342 Code = TYPE_DEPENDENT_NAME;
Argyrios Kyrtzidis90b715e2010-06-19 19:28:53 +0000343}
344
345void
Sebastian Redl3397c552010-08-18 23:56:27 +0000346ASTTypeWriter::VisitDependentTemplateSpecializationType(
Argyrios Kyrtzidis90b715e2010-06-19 19:28:53 +0000347 const DependentTemplateSpecializationType *T) {
Argyrios Kyrtzidis3acad622010-06-25 16:24:58 +0000348 Record.push_back(T->getKeyword());
349 Writer.AddNestedNameSpecifier(T->getQualifier(), Record);
350 Writer.AddIdentifierRef(T->getIdentifier(), Record);
351 Record.push_back(T->getNumArgs());
352 for (DependentTemplateSpecializationType::iterator
353 I = T->begin(), E = T->end(); I != E; ++I)
354 Writer.AddTemplateArgument(*I, Record);
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000355 Code = TYPE_DEPENDENT_TEMPLATE_SPECIALIZATION;
Douglas Gregor2cf26342009-04-09 22:27:44 +0000356}
357
Douglas Gregor7536dd52010-12-20 02:24:11 +0000358void ASTTypeWriter::VisitPackExpansionType(const PackExpansionType *T) {
359 Writer.AddTypeRef(T->getPattern(), Record);
David Blaikiedc84cd52013-02-20 22:23:23 +0000360 if (Optional<unsigned> NumExpansions = T->getNumExpansions())
Douglas Gregorcded4f62011-01-14 17:04:44 +0000361 Record.push_back(*NumExpansions + 1);
362 else
363 Record.push_back(0);
Douglas Gregor7536dd52010-12-20 02:24:11 +0000364 Code = TYPE_PACK_EXPANSION;
365}
366
Abramo Bagnara075f8f12010-12-10 16:29:40 +0000367void ASTTypeWriter::VisitParenType(const ParenType *T) {
368 Writer.AddTypeRef(T->getInnerType(), Record);
369 Code = TYPE_PAREN;
370}
371
Sebastian Redl3397c552010-08-18 23:56:27 +0000372void ASTTypeWriter::VisitElaboratedType(const ElaboratedType *T) {
Abramo Bagnara465d41b2010-05-11 21:36:43 +0000373 Record.push_back(T->getKeyword());
Argyrios Kyrtzidis3acad622010-06-25 16:24:58 +0000374 Writer.AddNestedNameSpecifier(T->getQualifier(), Record);
375 Writer.AddTypeRef(T->getNamedType(), Record);
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000376 Code = TYPE_ELABORATED;
Douglas Gregor2cf26342009-04-09 22:27:44 +0000377}
378
Sebastian Redl3397c552010-08-18 23:56:27 +0000379void ASTTypeWriter::VisitInjectedClassNameType(const InjectedClassNameType *T) {
Douglas Gregora8e0b972012-03-26 15:52:37 +0000380 Writer.AddDeclRef(T->getDecl()->getCanonicalDecl(), Record);
John McCall31f17ec2010-04-27 00:57:59 +0000381 Writer.AddTypeRef(T->getInjectedSpecializationType(), Record);
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000382 Code = TYPE_INJECTED_CLASS_NAME;
John McCall3cb0ebd2010-03-10 03:28:59 +0000383}
384
Sebastian Redl3397c552010-08-18 23:56:27 +0000385void ASTTypeWriter::VisitObjCInterfaceType(const ObjCInterfaceType *T) {
Douglas Gregor56ca8a92012-01-17 19:21:53 +0000386 Writer.AddDeclRef(T->getDecl()->getCanonicalDecl(), Record);
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000387 Code = TYPE_OBJC_INTERFACE;
John McCallc12c5bb2010-05-15 11:32:37 +0000388}
389
Sebastian Redl3397c552010-08-18 23:56:27 +0000390void ASTTypeWriter::VisitObjCObjectType(const ObjCObjectType *T) {
John McCallc12c5bb2010-05-15 11:32:37 +0000391 Writer.AddTypeRef(T->getBaseType(), Record);
Douglas Gregor2cf26342009-04-09 22:27:44 +0000392 Record.push_back(T->getNumProtocols());
John McCallc12c5bb2010-05-15 11:32:37 +0000393 for (ObjCObjectType::qual_iterator I = T->qual_begin(),
Steve Naroff446ee4e2009-05-27 16:21:00 +0000394 E = T->qual_end(); I != E; ++I)
395 Writer.AddDeclRef(*I, Record);
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000396 Code = TYPE_OBJC_OBJECT;
Douglas Gregor2cf26342009-04-09 22:27:44 +0000397}
398
Steve Naroffd1b3c2d2009-06-17 22:40:22 +0000399void
Sebastian Redl3397c552010-08-18 23:56:27 +0000400ASTTypeWriter::VisitObjCObjectPointerType(const ObjCObjectPointerType *T) {
Mike Stump1eb44332009-09-09 15:08:12 +0000401 Writer.AddTypeRef(T->getPointeeType(), Record);
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000402 Code = TYPE_OBJC_OBJECT_POINTER;
Douglas Gregor2cf26342009-04-09 22:27:44 +0000403}
404
Eli Friedmanb001de72011-10-06 23:00:33 +0000405void
406ASTTypeWriter::VisitAtomicType(const AtomicType *T) {
407 Writer.AddTypeRef(T->getValueType(), Record);
408 Code = TYPE_ATOMIC;
409}
410
John McCalla1ee0c52009-10-16 21:56:05 +0000411namespace {
412
413class TypeLocWriter : public TypeLocVisitor<TypeLocWriter> {
Sebastian Redla4232eb2010-08-18 23:56:21 +0000414 ASTWriter &Writer;
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +0000415 ASTWriter::RecordDataImpl &Record;
John McCalla1ee0c52009-10-16 21:56:05 +0000416
417public:
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +0000418 TypeLocWriter(ASTWriter &Writer, ASTWriter::RecordDataImpl &Record)
John McCalla1ee0c52009-10-16 21:56:05 +0000419 : Writer(Writer), Record(Record) { }
420
John McCall51bd8032009-10-18 01:05:36 +0000421#define ABSTRACT_TYPELOC(CLASS, PARENT)
John McCalla1ee0c52009-10-16 21:56:05 +0000422#define TYPELOC(CLASS, PARENT) \
John McCall51bd8032009-10-18 01:05:36 +0000423 void Visit##CLASS##TypeLoc(CLASS##TypeLoc TyLoc);
John McCalla1ee0c52009-10-16 21:56:05 +0000424#include "clang/AST/TypeLocNodes.def"
425
John McCall51bd8032009-10-18 01:05:36 +0000426 void VisitArrayTypeLoc(ArrayTypeLoc TyLoc);
427 void VisitFunctionTypeLoc(FunctionTypeLoc TyLoc);
John McCalla1ee0c52009-10-16 21:56:05 +0000428};
429
430}
431
John McCall51bd8032009-10-18 01:05:36 +0000432void TypeLocWriter::VisitQualifiedTypeLoc(QualifiedTypeLoc TL) {
433 // nothing to do
John McCalla1ee0c52009-10-16 21:56:05 +0000434}
John McCall51bd8032009-10-18 01:05:36 +0000435void TypeLocWriter::VisitBuiltinTypeLoc(BuiltinTypeLoc TL) {
Douglas Gregorddf889a2010-01-18 18:04:31 +0000436 Writer.AddSourceLocation(TL.getBuiltinLoc(), Record);
437 if (TL.needsExtraLocalData()) {
438 Record.push_back(TL.getWrittenTypeSpec());
439 Record.push_back(TL.getWrittenSignSpec());
440 Record.push_back(TL.getWrittenWidthSpec());
441 Record.push_back(TL.hasModeAttr());
442 }
John McCalla1ee0c52009-10-16 21:56:05 +0000443}
John McCall51bd8032009-10-18 01:05:36 +0000444void TypeLocWriter::VisitComplexTypeLoc(ComplexTypeLoc TL) {
445 Writer.AddSourceLocation(TL.getNameLoc(), Record);
John McCalla1ee0c52009-10-16 21:56:05 +0000446}
John McCall51bd8032009-10-18 01:05:36 +0000447void TypeLocWriter::VisitPointerTypeLoc(PointerTypeLoc TL) {
448 Writer.AddSourceLocation(TL.getStarLoc(), Record);
John McCalla1ee0c52009-10-16 21:56:05 +0000449}
John McCall51bd8032009-10-18 01:05:36 +0000450void TypeLocWriter::VisitBlockPointerTypeLoc(BlockPointerTypeLoc TL) {
451 Writer.AddSourceLocation(TL.getCaretLoc(), Record);
John McCalla1ee0c52009-10-16 21:56:05 +0000452}
John McCall51bd8032009-10-18 01:05:36 +0000453void TypeLocWriter::VisitLValueReferenceTypeLoc(LValueReferenceTypeLoc TL) {
454 Writer.AddSourceLocation(TL.getAmpLoc(), Record);
John McCalla1ee0c52009-10-16 21:56:05 +0000455}
John McCall51bd8032009-10-18 01:05:36 +0000456void TypeLocWriter::VisitRValueReferenceTypeLoc(RValueReferenceTypeLoc TL) {
457 Writer.AddSourceLocation(TL.getAmpAmpLoc(), Record);
John McCalla1ee0c52009-10-16 21:56:05 +0000458}
John McCall51bd8032009-10-18 01:05:36 +0000459void TypeLocWriter::VisitMemberPointerTypeLoc(MemberPointerTypeLoc TL) {
460 Writer.AddSourceLocation(TL.getStarLoc(), Record);
Abramo Bagnarab6ab6c12011-03-05 14:42:21 +0000461 Writer.AddTypeSourceInfo(TL.getClassTInfo(), Record);
John McCalla1ee0c52009-10-16 21:56:05 +0000462}
John McCall51bd8032009-10-18 01:05:36 +0000463void TypeLocWriter::VisitArrayTypeLoc(ArrayTypeLoc TL) {
464 Writer.AddSourceLocation(TL.getLBracketLoc(), Record);
465 Writer.AddSourceLocation(TL.getRBracketLoc(), Record);
466 Record.push_back(TL.getSizeExpr() ? 1 : 0);
467 if (TL.getSizeExpr())
468 Writer.AddStmt(TL.getSizeExpr());
John McCalla1ee0c52009-10-16 21:56:05 +0000469}
John McCall51bd8032009-10-18 01:05:36 +0000470void TypeLocWriter::VisitConstantArrayTypeLoc(ConstantArrayTypeLoc TL) {
471 VisitArrayTypeLoc(TL);
472}
473void TypeLocWriter::VisitIncompleteArrayTypeLoc(IncompleteArrayTypeLoc TL) {
474 VisitArrayTypeLoc(TL);
475}
476void TypeLocWriter::VisitVariableArrayTypeLoc(VariableArrayTypeLoc TL) {
477 VisitArrayTypeLoc(TL);
478}
479void TypeLocWriter::VisitDependentSizedArrayTypeLoc(
480 DependentSizedArrayTypeLoc TL) {
481 VisitArrayTypeLoc(TL);
482}
483void TypeLocWriter::VisitDependentSizedExtVectorTypeLoc(
484 DependentSizedExtVectorTypeLoc TL) {
485 Writer.AddSourceLocation(TL.getNameLoc(), Record);
486}
487void TypeLocWriter::VisitVectorTypeLoc(VectorTypeLoc TL) {
488 Writer.AddSourceLocation(TL.getNameLoc(), Record);
489}
490void TypeLocWriter::VisitExtVectorTypeLoc(ExtVectorTypeLoc TL) {
491 Writer.AddSourceLocation(TL.getNameLoc(), Record);
492}
493void TypeLocWriter::VisitFunctionTypeLoc(FunctionTypeLoc TL) {
Abramo Bagnara796aa442011-03-12 11:17:06 +0000494 Writer.AddSourceLocation(TL.getLocalRangeBegin(), Record);
Abramo Bagnara59c0a812012-10-04 21:42:10 +0000495 Writer.AddSourceLocation(TL.getLParenLoc(), Record);
496 Writer.AddSourceLocation(TL.getRParenLoc(), Record);
Abramo Bagnara796aa442011-03-12 11:17:06 +0000497 Writer.AddSourceLocation(TL.getLocalRangeEnd(), Record);
John McCall51bd8032009-10-18 01:05:36 +0000498 for (unsigned i = 0, e = TL.getNumArgs(); i != e; ++i)
499 Writer.AddDeclRef(TL.getArg(i), Record);
500}
501void TypeLocWriter::VisitFunctionProtoTypeLoc(FunctionProtoTypeLoc TL) {
502 VisitFunctionTypeLoc(TL);
503}
504void TypeLocWriter::VisitFunctionNoProtoTypeLoc(FunctionNoProtoTypeLoc TL) {
505 VisitFunctionTypeLoc(TL);
506}
John McCalled976492009-12-04 22:46:56 +0000507void TypeLocWriter::VisitUnresolvedUsingTypeLoc(UnresolvedUsingTypeLoc TL) {
508 Writer.AddSourceLocation(TL.getNameLoc(), Record);
509}
John McCall51bd8032009-10-18 01:05:36 +0000510void TypeLocWriter::VisitTypedefTypeLoc(TypedefTypeLoc TL) {
511 Writer.AddSourceLocation(TL.getNameLoc(), Record);
512}
513void TypeLocWriter::VisitTypeOfExprTypeLoc(TypeOfExprTypeLoc TL) {
John McCallcfb708c2010-01-13 20:03:27 +0000514 Writer.AddSourceLocation(TL.getTypeofLoc(), Record);
515 Writer.AddSourceLocation(TL.getLParenLoc(), Record);
516 Writer.AddSourceLocation(TL.getRParenLoc(), Record);
John McCall51bd8032009-10-18 01:05:36 +0000517}
518void TypeLocWriter::VisitTypeOfTypeLoc(TypeOfTypeLoc TL) {
John McCallcfb708c2010-01-13 20:03:27 +0000519 Writer.AddSourceLocation(TL.getTypeofLoc(), Record);
520 Writer.AddSourceLocation(TL.getLParenLoc(), Record);
521 Writer.AddSourceLocation(TL.getRParenLoc(), Record);
522 Writer.AddTypeSourceInfo(TL.getUnderlyingTInfo(), Record);
John McCall51bd8032009-10-18 01:05:36 +0000523}
524void TypeLocWriter::VisitDecltypeTypeLoc(DecltypeTypeLoc TL) {
525 Writer.AddSourceLocation(TL.getNameLoc(), Record);
526}
Sean Huntca63c202011-05-24 22:41:36 +0000527void TypeLocWriter::VisitUnaryTransformTypeLoc(UnaryTransformTypeLoc TL) {
528 Writer.AddSourceLocation(TL.getKWLoc(), Record);
529 Writer.AddSourceLocation(TL.getLParenLoc(), Record);
530 Writer.AddSourceLocation(TL.getRParenLoc(), Record);
531 Writer.AddTypeSourceInfo(TL.getUnderlyingTInfo(), Record);
532}
Richard Smith34b41d92011-02-20 03:19:35 +0000533void TypeLocWriter::VisitAutoTypeLoc(AutoTypeLoc TL) {
534 Writer.AddSourceLocation(TL.getNameLoc(), Record);
535}
John McCall51bd8032009-10-18 01:05:36 +0000536void TypeLocWriter::VisitRecordTypeLoc(RecordTypeLoc TL) {
537 Writer.AddSourceLocation(TL.getNameLoc(), Record);
538}
539void TypeLocWriter::VisitEnumTypeLoc(EnumTypeLoc TL) {
540 Writer.AddSourceLocation(TL.getNameLoc(), Record);
541}
John McCall9d156a72011-01-06 01:58:22 +0000542void TypeLocWriter::VisitAttributedTypeLoc(AttributedTypeLoc TL) {
543 Writer.AddSourceLocation(TL.getAttrNameLoc(), Record);
544 if (TL.hasAttrOperand()) {
545 SourceRange range = TL.getAttrOperandParensRange();
546 Writer.AddSourceLocation(range.getBegin(), Record);
547 Writer.AddSourceLocation(range.getEnd(), Record);
548 }
549 if (TL.hasAttrExprOperand()) {
550 Expr *operand = TL.getAttrExprOperand();
551 Record.push_back(operand ? 1 : 0);
552 if (operand) Writer.AddStmt(operand);
553 } else if (TL.hasAttrEnumOperand()) {
554 Writer.AddSourceLocation(TL.getAttrEnumOperandLoc(), Record);
555 }
556}
John McCall51bd8032009-10-18 01:05:36 +0000557void TypeLocWriter::VisitTemplateTypeParmTypeLoc(TemplateTypeParmTypeLoc TL) {
558 Writer.AddSourceLocation(TL.getNameLoc(), Record);
559}
John McCall49a832b2009-10-18 09:09:24 +0000560void TypeLocWriter::VisitSubstTemplateTypeParmTypeLoc(
561 SubstTemplateTypeParmTypeLoc TL) {
562 Writer.AddSourceLocation(TL.getNameLoc(), Record);
563}
Douglas Gregorc3069d62011-01-14 02:55:32 +0000564void TypeLocWriter::VisitSubstTemplateTypeParmPackTypeLoc(
565 SubstTemplateTypeParmPackTypeLoc TL) {
566 Writer.AddSourceLocation(TL.getNameLoc(), Record);
567}
John McCall51bd8032009-10-18 01:05:36 +0000568void TypeLocWriter::VisitTemplateSpecializationTypeLoc(
569 TemplateSpecializationTypeLoc TL) {
Abramo Bagnara55d23c92012-02-06 14:41:24 +0000570 Writer.AddSourceLocation(TL.getTemplateKeywordLoc(), Record);
John McCall833ca992009-10-29 08:12:44 +0000571 Writer.AddSourceLocation(TL.getTemplateNameLoc(), Record);
572 Writer.AddSourceLocation(TL.getLAngleLoc(), Record);
573 Writer.AddSourceLocation(TL.getRAngleLoc(), Record);
574 for (unsigned i = 0, e = TL.getNumArgs(); i != e; ++i)
Argyrios Kyrtzidis44f8c372010-06-22 09:54:59 +0000575 Writer.AddTemplateArgumentLocInfo(TL.getArgLoc(i).getArgument().getKind(),
576 TL.getArgLoc(i).getLocInfo(), Record);
John McCall51bd8032009-10-18 01:05:36 +0000577}
Abramo Bagnara075f8f12010-12-10 16:29:40 +0000578void TypeLocWriter::VisitParenTypeLoc(ParenTypeLoc TL) {
579 Writer.AddSourceLocation(TL.getLParenLoc(), Record);
580 Writer.AddSourceLocation(TL.getRParenLoc(), Record);
581}
Abramo Bagnara465d41b2010-05-11 21:36:43 +0000582void TypeLocWriter::VisitElaboratedTypeLoc(ElaboratedTypeLoc TL) {
Abramo Bagnara38a42912012-02-06 19:09:27 +0000583 Writer.AddSourceLocation(TL.getElaboratedKeywordLoc(), Record);
Douglas Gregor9e876872011-03-01 18:12:44 +0000584 Writer.AddNestedNameSpecifierLoc(TL.getQualifierLoc(), Record);
John McCall51bd8032009-10-18 01:05:36 +0000585}
John McCall3cb0ebd2010-03-10 03:28:59 +0000586void TypeLocWriter::VisitInjectedClassNameTypeLoc(InjectedClassNameTypeLoc TL) {
587 Writer.AddSourceLocation(TL.getNameLoc(), Record);
588}
Douglas Gregor4714c122010-03-31 17:34:00 +0000589void TypeLocWriter::VisitDependentNameTypeLoc(DependentNameTypeLoc TL) {
Abramo Bagnara38a42912012-02-06 19:09:27 +0000590 Writer.AddSourceLocation(TL.getElaboratedKeywordLoc(), Record);
Douglas Gregor2494dd02011-03-01 01:34:45 +0000591 Writer.AddNestedNameSpecifierLoc(TL.getQualifierLoc(), Record);
John McCall51bd8032009-10-18 01:05:36 +0000592 Writer.AddSourceLocation(TL.getNameLoc(), Record);
593}
John McCall33500952010-06-11 00:33:02 +0000594void TypeLocWriter::VisitDependentTemplateSpecializationTypeLoc(
595 DependentTemplateSpecializationTypeLoc TL) {
Abramo Bagnara55d23c92012-02-06 14:41:24 +0000596 Writer.AddSourceLocation(TL.getElaboratedKeywordLoc(), Record);
Douglas Gregor94fdffa2011-03-01 20:11:18 +0000597 Writer.AddNestedNameSpecifierLoc(TL.getQualifierLoc(), Record);
Abramo Bagnara66581d42012-02-06 22:45:07 +0000598 Writer.AddSourceLocation(TL.getTemplateKeywordLoc(), Record);
Abramo Bagnara55d23c92012-02-06 14:41:24 +0000599 Writer.AddSourceLocation(TL.getTemplateNameLoc(), Record);
John McCall33500952010-06-11 00:33:02 +0000600 Writer.AddSourceLocation(TL.getLAngleLoc(), Record);
601 Writer.AddSourceLocation(TL.getRAngleLoc(), Record);
602 for (unsigned I = 0, E = TL.getNumArgs(); I != E; ++I)
Argyrios Kyrtzidis44f8c372010-06-22 09:54:59 +0000603 Writer.AddTemplateArgumentLocInfo(TL.getArgLoc(I).getArgument().getKind(),
604 TL.getArgLoc(I).getLocInfo(), Record);
John McCall33500952010-06-11 00:33:02 +0000605}
Douglas Gregor7536dd52010-12-20 02:24:11 +0000606void TypeLocWriter::VisitPackExpansionTypeLoc(PackExpansionTypeLoc TL) {
607 Writer.AddSourceLocation(TL.getEllipsisLoc(), Record);
608}
John McCall51bd8032009-10-18 01:05:36 +0000609void TypeLocWriter::VisitObjCInterfaceTypeLoc(ObjCInterfaceTypeLoc TL) {
610 Writer.AddSourceLocation(TL.getNameLoc(), Record);
John McCallc12c5bb2010-05-15 11:32:37 +0000611}
612void TypeLocWriter::VisitObjCObjectTypeLoc(ObjCObjectTypeLoc TL) {
613 Record.push_back(TL.hasBaseTypeAsWritten());
John McCall51bd8032009-10-18 01:05:36 +0000614 Writer.AddSourceLocation(TL.getLAngleLoc(), Record);
615 Writer.AddSourceLocation(TL.getRAngleLoc(), Record);
616 for (unsigned i = 0, e = TL.getNumProtocols(); i != e; ++i)
617 Writer.AddSourceLocation(TL.getProtocolLoc(i), Record);
John McCalla1ee0c52009-10-16 21:56:05 +0000618}
John McCall54e14c42009-10-22 22:37:11 +0000619void TypeLocWriter::VisitObjCObjectPointerTypeLoc(ObjCObjectPointerTypeLoc TL) {
620 Writer.AddSourceLocation(TL.getStarLoc(), Record);
John McCall54e14c42009-10-22 22:37:11 +0000621}
Eli Friedmanb001de72011-10-06 23:00:33 +0000622void TypeLocWriter::VisitAtomicTypeLoc(AtomicTypeLoc TL) {
623 Writer.AddSourceLocation(TL.getKWLoc(), Record);
624 Writer.AddSourceLocation(TL.getLParenLoc(), Record);
625 Writer.AddSourceLocation(TL.getRParenLoc(), Record);
626}
John McCalla1ee0c52009-10-16 21:56:05 +0000627
Chris Lattner4dcf151a2009-04-22 05:57:30 +0000628//===----------------------------------------------------------------------===//
Sebastian Redla4232eb2010-08-18 23:56:21 +0000629// ASTWriter Implementation
Douglas Gregor2cf26342009-04-09 22:27:44 +0000630//===----------------------------------------------------------------------===//
631
Chris Lattnerb145b1e2009-04-26 22:26:21 +0000632static void EmitBlockID(unsigned ID, const char *Name,
633 llvm::BitstreamWriter &Stream,
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +0000634 ASTWriter::RecordDataImpl &Record) {
Chris Lattnerb145b1e2009-04-26 22:26:21 +0000635 Record.clear();
636 Record.push_back(ID);
637 Stream.EmitRecord(llvm::bitc::BLOCKINFO_CODE_SETBID, Record);
638
639 // Emit the block name if present.
640 if (Name == 0 || Name[0] == 0) return;
641 Record.clear();
642 while (*Name)
643 Record.push_back(*Name++);
644 Stream.EmitRecord(llvm::bitc::BLOCKINFO_CODE_BLOCKNAME, Record);
645}
646
647static void EmitRecordID(unsigned ID, const char *Name,
648 llvm::BitstreamWriter &Stream,
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +0000649 ASTWriter::RecordDataImpl &Record) {
Chris Lattnerb145b1e2009-04-26 22:26:21 +0000650 Record.clear();
651 Record.push_back(ID);
652 while (*Name)
653 Record.push_back(*Name++);
654 Stream.EmitRecord(llvm::bitc::BLOCKINFO_CODE_SETRECORDNAME, Record);
Chris Lattner0558df22009-04-27 00:49:53 +0000655}
656
657static void AddStmtsExprs(llvm::BitstreamWriter &Stream,
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +0000658 ASTWriter::RecordDataImpl &Record) {
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000659#define RECORD(X) EmitRecordID(X, #X, Stream, Record)
Chris Lattner0558df22009-04-27 00:49:53 +0000660 RECORD(STMT_STOP);
661 RECORD(STMT_NULL_PTR);
662 RECORD(STMT_NULL);
663 RECORD(STMT_COMPOUND);
664 RECORD(STMT_CASE);
665 RECORD(STMT_DEFAULT);
666 RECORD(STMT_LABEL);
Richard Smith534986f2012-04-14 00:33:13 +0000667 RECORD(STMT_ATTRIBUTED);
Chris Lattner0558df22009-04-27 00:49:53 +0000668 RECORD(STMT_IF);
669 RECORD(STMT_SWITCH);
670 RECORD(STMT_WHILE);
671 RECORD(STMT_DO);
672 RECORD(STMT_FOR);
673 RECORD(STMT_GOTO);
674 RECORD(STMT_INDIRECT_GOTO);
675 RECORD(STMT_CONTINUE);
676 RECORD(STMT_BREAK);
677 RECORD(STMT_RETURN);
678 RECORD(STMT_DECL);
Chad Rosierdf5faf52012-08-25 00:11:56 +0000679 RECORD(STMT_GCCASM);
Chad Rosiercd518a02012-08-24 23:51:02 +0000680 RECORD(STMT_MSASM);
Chris Lattner0558df22009-04-27 00:49:53 +0000681 RECORD(EXPR_PREDEFINED);
682 RECORD(EXPR_DECL_REF);
683 RECORD(EXPR_INTEGER_LITERAL);
684 RECORD(EXPR_FLOATING_LITERAL);
685 RECORD(EXPR_IMAGINARY_LITERAL);
686 RECORD(EXPR_STRING_LITERAL);
687 RECORD(EXPR_CHARACTER_LITERAL);
688 RECORD(EXPR_PAREN);
689 RECORD(EXPR_UNARY_OPERATOR);
690 RECORD(EXPR_SIZEOF_ALIGN_OF);
691 RECORD(EXPR_ARRAY_SUBSCRIPT);
692 RECORD(EXPR_CALL);
693 RECORD(EXPR_MEMBER);
694 RECORD(EXPR_BINARY_OPERATOR);
695 RECORD(EXPR_COMPOUND_ASSIGN_OPERATOR);
696 RECORD(EXPR_CONDITIONAL_OPERATOR);
697 RECORD(EXPR_IMPLICIT_CAST);
698 RECORD(EXPR_CSTYLE_CAST);
699 RECORD(EXPR_COMPOUND_LITERAL);
700 RECORD(EXPR_EXT_VECTOR_ELEMENT);
701 RECORD(EXPR_INIT_LIST);
702 RECORD(EXPR_DESIGNATED_INIT);
703 RECORD(EXPR_IMPLICIT_VALUE_INIT);
704 RECORD(EXPR_VA_ARG);
705 RECORD(EXPR_ADDR_LABEL);
706 RECORD(EXPR_STMT);
Chris Lattner0558df22009-04-27 00:49:53 +0000707 RECORD(EXPR_CHOOSE);
708 RECORD(EXPR_GNU_NULL);
709 RECORD(EXPR_SHUFFLE_VECTOR);
710 RECORD(EXPR_BLOCK);
Peter Collingbournef111d932011-04-15 00:35:48 +0000711 RECORD(EXPR_GENERIC_SELECTION);
Chris Lattner0558df22009-04-27 00:49:53 +0000712 RECORD(EXPR_OBJC_STRING_LITERAL);
Patrick Beardeb382ec2012-04-19 00:25:12 +0000713 RECORD(EXPR_OBJC_BOXED_EXPRESSION);
Ted Kremenekebcb57a2012-03-06 20:05:56 +0000714 RECORD(EXPR_OBJC_ARRAY_LITERAL);
715 RECORD(EXPR_OBJC_DICTIONARY_LITERAL);
Chris Lattner0558df22009-04-27 00:49:53 +0000716 RECORD(EXPR_OBJC_ENCODE);
717 RECORD(EXPR_OBJC_SELECTOR_EXPR);
718 RECORD(EXPR_OBJC_PROTOCOL_EXPR);
719 RECORD(EXPR_OBJC_IVAR_REF_EXPR);
720 RECORD(EXPR_OBJC_PROPERTY_REF_EXPR);
721 RECORD(EXPR_OBJC_KVC_REF_EXPR);
722 RECORD(EXPR_OBJC_MESSAGE_EXPR);
Chris Lattner0558df22009-04-27 00:49:53 +0000723 RECORD(STMT_OBJC_FOR_COLLECTION);
724 RECORD(STMT_OBJC_CATCH);
725 RECORD(STMT_OBJC_FINALLY);
726 RECORD(STMT_OBJC_AT_TRY);
727 RECORD(STMT_OBJC_AT_SYNCHRONIZED);
728 RECORD(STMT_OBJC_AT_THROW);
Ted Kremenekebcb57a2012-03-06 20:05:56 +0000729 RECORD(EXPR_OBJC_BOOL_LITERAL);
Sam Weinigeb7f9612010-02-07 06:32:43 +0000730 RECORD(EXPR_CXX_OPERATOR_CALL);
731 RECORD(EXPR_CXX_CONSTRUCT);
732 RECORD(EXPR_CXX_STATIC_CAST);
733 RECORD(EXPR_CXX_DYNAMIC_CAST);
734 RECORD(EXPR_CXX_REINTERPRET_CAST);
735 RECORD(EXPR_CXX_CONST_CAST);
736 RECORD(EXPR_CXX_FUNCTIONAL_CAST);
Richard Smith9fcce652012-03-07 08:35:16 +0000737 RECORD(EXPR_USER_DEFINED_LITERAL);
Sam Weinigeb7f9612010-02-07 06:32:43 +0000738 RECORD(EXPR_CXX_BOOL_LITERAL);
739 RECORD(EXPR_CXX_NULL_PTR_LITERAL);
Douglas Gregorb6c2b3f2011-02-08 16:34:17 +0000740 RECORD(EXPR_CXX_TYPEID_EXPR);
741 RECORD(EXPR_CXX_TYPEID_TYPE);
742 RECORD(EXPR_CXX_UUIDOF_EXPR);
743 RECORD(EXPR_CXX_UUIDOF_TYPE);
744 RECORD(EXPR_CXX_THIS);
745 RECORD(EXPR_CXX_THROW);
746 RECORD(EXPR_CXX_DEFAULT_ARG);
747 RECORD(EXPR_CXX_BIND_TEMPORARY);
748 RECORD(EXPR_CXX_SCALAR_VALUE_INIT);
749 RECORD(EXPR_CXX_NEW);
750 RECORD(EXPR_CXX_DELETE);
751 RECORD(EXPR_CXX_PSEUDO_DESTRUCTOR);
752 RECORD(EXPR_EXPR_WITH_CLEANUPS);
753 RECORD(EXPR_CXX_DEPENDENT_SCOPE_MEMBER);
754 RECORD(EXPR_CXX_DEPENDENT_SCOPE_DECL_REF);
755 RECORD(EXPR_CXX_UNRESOLVED_CONSTRUCT);
756 RECORD(EXPR_CXX_UNRESOLVED_MEMBER);
757 RECORD(EXPR_CXX_UNRESOLVED_LOOKUP);
758 RECORD(EXPR_CXX_UNARY_TYPE_TRAIT);
759 RECORD(EXPR_CXX_NOEXCEPT);
760 RECORD(EXPR_OPAQUE_VALUE);
761 RECORD(EXPR_BINARY_TYPE_TRAIT);
762 RECORD(EXPR_PACK_EXPANSION);
763 RECORD(EXPR_SIZEOF_PACK);
764 RECORD(EXPR_SUBST_NON_TYPE_TEMPLATE_PARM_PACK);
Peter Collingbournee08ce652011-02-09 21:07:24 +0000765 RECORD(EXPR_CUDA_KERNEL_CALL);
Chris Lattner0558df22009-04-27 00:49:53 +0000766#undef RECORD
Chris Lattnerb145b1e2009-04-26 22:26:21 +0000767}
Mike Stump1eb44332009-09-09 15:08:12 +0000768
Sebastian Redla4232eb2010-08-18 23:56:21 +0000769void ASTWriter::WriteBlockInfoBlock() {
Chris Lattnerb145b1e2009-04-26 22:26:21 +0000770 RecordData Record;
771 Stream.EnterSubblock(llvm::bitc::BLOCKINFO_BLOCK_ID, 3);
Mike Stump1eb44332009-09-09 15:08:12 +0000772
Sebastian Redl8538e8d2010-08-18 23:57:32 +0000773#define BLOCK(X) EmitBlockID(X ## _ID, #X, Stream, Record)
774#define RECORD(X) EmitRecordID(X, #X, Stream, Record)
Mike Stump1eb44332009-09-09 15:08:12 +0000775
Douglas Gregor7ae467f2012-10-18 18:27:37 +0000776 // Control Block.
777 BLOCK(CONTROL_BLOCK);
778 RECORD(METADATA);
779 RECORD(IMPORTS);
780 RECORD(LANGUAGE_OPTIONS);
781 RECORD(TARGET_OPTIONS);
Douglas Gregor39c497b2012-10-18 18:36:53 +0000782 RECORD(ORIGINAL_FILE);
Douglas Gregor7ae467f2012-10-18 18:27:37 +0000783 RECORD(ORIGINAL_PCH_DIR);
Argyrios Kyrtzidis992d9172012-11-15 18:57:27 +0000784 RECORD(ORIGINAL_FILE_ID);
Douglas Gregora930dc92012-10-22 18:42:04 +0000785 RECORD(INPUT_FILE_OFFSETS);
Douglas Gregor5f3d8222012-10-24 15:17:15 +0000786 RECORD(DIAGNOSTIC_OPTIONS);
Douglas Gregor1b2c3c02012-10-24 15:49:58 +0000787 RECORD(FILE_SYSTEM_OPTIONS);
Douglas Gregorbbf38312012-10-24 16:50:34 +0000788 RECORD(HEADER_SEARCH_OPTIONS);
Douglas Gregora71a7d82012-10-24 20:05:57 +0000789 RECORD(PREPROCESSOR_OPTIONS);
790
Douglas Gregorc337fef2012-10-19 00:45:00 +0000791 BLOCK(INPUT_FILES_BLOCK);
792 RECORD(INPUT_FILE);
793
Douglas Gregor7ae467f2012-10-18 18:27:37 +0000794 // AST Top-Level Block.
795 BLOCK(AST_BLOCK);
Chris Lattnerb145b1e2009-04-26 22:26:21 +0000796 RECORD(TYPE_OFFSET);
797 RECORD(DECL_OFFSET);
Chris Lattnerb145b1e2009-04-26 22:26:21 +0000798 RECORD(IDENTIFIER_OFFSET);
799 RECORD(IDENTIFIER_TABLE);
800 RECORD(EXTERNAL_DEFINITIONS);
801 RECORD(SPECIAL_TYPES);
802 RECORD(STATISTICS);
803 RECORD(TENTATIVE_DEFINITIONS);
Argyrios Kyrtzidis49b96d12010-08-13 18:42:17 +0000804 RECORD(UNUSED_FILESCOPED_DECLS);
Richard Smith5ea6ef42013-01-10 23:43:47 +0000805 RECORD(LOCALLY_SCOPED_EXTERN_C_DECLS);
Chris Lattnerb145b1e2009-04-26 22:26:21 +0000806 RECORD(SELECTOR_OFFSETS);
807 RECORD(METHOD_POOL);
808 RECORD(PP_COUNTER_VALUE);
Douglas Gregor7f94b0b2009-04-27 06:38:32 +0000809 RECORD(SOURCE_LOCATION_OFFSETS);
810 RECORD(SOURCE_LOCATION_PRELOADS);
Douglas Gregorb81c1702009-04-27 20:06:05 +0000811 RECORD(EXT_VECTOR_DECLS);
Argyrios Kyrtzidise24692b2011-09-15 18:02:56 +0000812 RECORD(PPD_ENTITIES_OFFSETS);
Fariborz Jahanian32019832010-07-23 19:11:11 +0000813 RECORD(REFERENCED_SELECTOR_POOL);
Douglas Gregorb6c2b3f2011-02-08 16:34:17 +0000814 RECORD(TU_UPDATE_LEXICAL);
Douglas Gregor2171bf12012-01-15 16:58:34 +0000815 RECORD(LOCAL_REDECLARATIONS_MAP);
Douglas Gregorb6c2b3f2011-02-08 16:34:17 +0000816 RECORD(SEMA_DECL_REFS);
817 RECORD(WEAK_UNDECLARED_IDENTIFIERS);
818 RECORD(PENDING_IMPLICIT_INSTANTIATIONS);
819 RECORD(DECL_REPLACEMENTS);
820 RECORD(UPDATE_VISIBLE);
821 RECORD(DECL_UPDATE_OFFSETS);
822 RECORD(DECL_UPDATES);
823 RECORD(CXX_BASE_SPECIFIER_OFFSETS);
824 RECORD(DIAG_PRAGMA_MAPPINGS);
Peter Collingbourne84bccea2011-02-15 19:46:30 +0000825 RECORD(CUDA_SPECIAL_DECL_REFS);
Douglas Gregorcfbf1c72011-02-10 17:09:37 +0000826 RECORD(HEADER_SEARCH_TABLE);
Peter Collingbourne84bccea2011-02-15 19:46:30 +0000827 RECORD(FP_PRAGMA_OPTIONS);
828 RECORD(OPENCL_EXTENSIONS);
Sean Huntebcbe1d2011-05-04 23:29:54 +0000829 RECORD(DELEGATING_CTORS);
Douglas Gregord8bba9c2011-06-28 16:20:02 +0000830 RECORD(KNOWN_NAMESPACES);
Nick Lewyckycd0655b2013-02-01 08:13:20 +0000831 RECORD(UNDEFINED_BUT_USED);
Douglas Gregor837593f2011-08-04 16:39:39 +0000832 RECORD(MODULE_OFFSET_MAP);
833 RECORD(SOURCE_MANAGER_LINE_TABLE);
Douglas Gregorcff9f262012-01-27 01:47:08 +0000834 RECORD(OBJC_CATEGORIES_MAP);
Douglas Gregora1266512011-12-19 21:09:25 +0000835 RECORD(FILE_SORTED_DECLS);
836 RECORD(IMPORTED_MODULES);
Douglas Gregor2171bf12012-01-15 16:58:34 +0000837 RECORD(MERGED_DECLARATIONS);
838 RECORD(LOCAL_REDECLARATIONS);
Douglas Gregorcff9f262012-01-27 01:47:08 +0000839 RECORD(OBJC_CATEGORIES);
Douglas Gregora8235d62012-10-09 23:05:51 +0000840 RECORD(MACRO_OFFSET);
Argyrios Kyrtzidis9317ab92013-03-22 21:12:57 +0000841 RECORD(MACRO_TABLE);
Douglas Gregor2171bf12012-01-15 16:58:34 +0000842
Chris Lattnerb145b1e2009-04-26 22:26:21 +0000843 // SourceManager Block.
Chris Lattner2f4efd12009-04-27 00:40:25 +0000844 BLOCK(SOURCE_MANAGER_BLOCK);
Chris Lattnerb145b1e2009-04-26 22:26:21 +0000845 RECORD(SM_SLOC_FILE_ENTRY);
846 RECORD(SM_SLOC_BUFFER_ENTRY);
847 RECORD(SM_SLOC_BUFFER_BLOB);
Chandler Carruthf70d12d2011-07-15 07:25:21 +0000848 RECORD(SM_SLOC_EXPANSION_ENTRY);
Mike Stump1eb44332009-09-09 15:08:12 +0000849
Chris Lattnerb145b1e2009-04-26 22:26:21 +0000850 // Preprocessor Block.
Chris Lattner2f4efd12009-04-27 00:40:25 +0000851 BLOCK(PREPROCESSOR_BLOCK);
Chris Lattnerb145b1e2009-04-26 22:26:21 +0000852 RECORD(PP_MACRO_OBJECT_LIKE);
853 RECORD(PP_MACRO_FUNCTION_LIKE);
854 RECORD(PP_TOKEN);
Douglas Gregorb6c2b3f2011-02-08 16:34:17 +0000855
Douglas Gregor61d60ee2009-10-17 00:13:19 +0000856 // Decls and Types block.
857 BLOCK(DECLTYPES_BLOCK);
Chris Lattnerb145b1e2009-04-26 22:26:21 +0000858 RECORD(TYPE_EXT_QUAL);
Chris Lattnerb145b1e2009-04-26 22:26:21 +0000859 RECORD(TYPE_COMPLEX);
860 RECORD(TYPE_POINTER);
861 RECORD(TYPE_BLOCK_POINTER);
862 RECORD(TYPE_LVALUE_REFERENCE);
863 RECORD(TYPE_RVALUE_REFERENCE);
864 RECORD(TYPE_MEMBER_POINTER);
865 RECORD(TYPE_CONSTANT_ARRAY);
866 RECORD(TYPE_INCOMPLETE_ARRAY);
867 RECORD(TYPE_VARIABLE_ARRAY);
868 RECORD(TYPE_VECTOR);
869 RECORD(TYPE_EXT_VECTOR);
870 RECORD(TYPE_FUNCTION_PROTO);
871 RECORD(TYPE_FUNCTION_NO_PROTO);
872 RECORD(TYPE_TYPEDEF);
873 RECORD(TYPE_TYPEOF_EXPR);
874 RECORD(TYPE_TYPEOF);
875 RECORD(TYPE_RECORD);
876 RECORD(TYPE_ENUM);
877 RECORD(TYPE_OBJC_INTERFACE);
John McCalla53d2cb2010-05-16 02:12:35 +0000878 RECORD(TYPE_OBJC_OBJECT);
Steve Naroffd1b3c2d2009-06-17 22:40:22 +0000879 RECORD(TYPE_OBJC_OBJECT_POINTER);
Douglas Gregorb6c2b3f2011-02-08 16:34:17 +0000880 RECORD(TYPE_DECLTYPE);
881 RECORD(TYPE_ELABORATED);
882 RECORD(TYPE_SUBST_TEMPLATE_TYPE_PARM);
883 RECORD(TYPE_UNRESOLVED_USING);
884 RECORD(TYPE_INJECTED_CLASS_NAME);
885 RECORD(TYPE_OBJC_OBJECT);
886 RECORD(TYPE_TEMPLATE_TYPE_PARM);
887 RECORD(TYPE_TEMPLATE_SPECIALIZATION);
888 RECORD(TYPE_DEPENDENT_NAME);
889 RECORD(TYPE_DEPENDENT_TEMPLATE_SPECIALIZATION);
890 RECORD(TYPE_DEPENDENT_SIZED_ARRAY);
891 RECORD(TYPE_PAREN);
892 RECORD(TYPE_PACK_EXPANSION);
893 RECORD(TYPE_ATTRIBUTED);
894 RECORD(TYPE_SUBST_TEMPLATE_TYPE_PARM_PACK);
Eli Friedmanb001de72011-10-06 23:00:33 +0000895 RECORD(TYPE_ATOMIC);
Chris Lattner0ff8cda2009-04-26 22:32:16 +0000896 RECORD(DECL_TYPEDEF);
897 RECORD(DECL_ENUM);
898 RECORD(DECL_RECORD);
899 RECORD(DECL_ENUM_CONSTANT);
900 RECORD(DECL_FUNCTION);
901 RECORD(DECL_OBJC_METHOD);
902 RECORD(DECL_OBJC_INTERFACE);
903 RECORD(DECL_OBJC_PROTOCOL);
904 RECORD(DECL_OBJC_IVAR);
905 RECORD(DECL_OBJC_AT_DEFS_FIELD);
Chris Lattner0ff8cda2009-04-26 22:32:16 +0000906 RECORD(DECL_OBJC_CATEGORY);
907 RECORD(DECL_OBJC_CATEGORY_IMPL);
908 RECORD(DECL_OBJC_IMPLEMENTATION);
909 RECORD(DECL_OBJC_COMPATIBLE_ALIAS);
910 RECORD(DECL_OBJC_PROPERTY);
911 RECORD(DECL_OBJC_PROPERTY_IMPL);
Chris Lattnerb145b1e2009-04-26 22:26:21 +0000912 RECORD(DECL_FIELD);
John McCall76da55d2013-04-16 07:28:30 +0000913 RECORD(DECL_MS_PROPERTY);
Chris Lattnerb145b1e2009-04-26 22:26:21 +0000914 RECORD(DECL_VAR);
Chris Lattner0ff8cda2009-04-26 22:32:16 +0000915 RECORD(DECL_IMPLICIT_PARAM);
Chris Lattnerb145b1e2009-04-26 22:26:21 +0000916 RECORD(DECL_PARM_VAR);
Chris Lattner0ff8cda2009-04-26 22:32:16 +0000917 RECORD(DECL_FILE_SCOPE_ASM);
918 RECORD(DECL_BLOCK);
919 RECORD(DECL_CONTEXT_LEXICAL);
920 RECORD(DECL_CONTEXT_VISIBLE);
Douglas Gregorb6c2b3f2011-02-08 16:34:17 +0000921 RECORD(DECL_NAMESPACE);
922 RECORD(DECL_NAMESPACE_ALIAS);
923 RECORD(DECL_USING);
924 RECORD(DECL_USING_SHADOW);
925 RECORD(DECL_USING_DIRECTIVE);
926 RECORD(DECL_UNRESOLVED_USING_VALUE);
927 RECORD(DECL_UNRESOLVED_USING_TYPENAME);
928 RECORD(DECL_LINKAGE_SPEC);
929 RECORD(DECL_CXX_RECORD);
930 RECORD(DECL_CXX_METHOD);
931 RECORD(DECL_CXX_CONSTRUCTOR);
932 RECORD(DECL_CXX_DESTRUCTOR);
933 RECORD(DECL_CXX_CONVERSION);
934 RECORD(DECL_ACCESS_SPEC);
935 RECORD(DECL_FRIEND);
936 RECORD(DECL_FRIEND_TEMPLATE);
937 RECORD(DECL_CLASS_TEMPLATE);
938 RECORD(DECL_CLASS_TEMPLATE_SPECIALIZATION);
939 RECORD(DECL_CLASS_TEMPLATE_PARTIAL_SPECIALIZATION);
940 RECORD(DECL_FUNCTION_TEMPLATE);
941 RECORD(DECL_TEMPLATE_TYPE_PARM);
942 RECORD(DECL_NON_TYPE_TEMPLATE_PARM);
943 RECORD(DECL_TEMPLATE_TEMPLATE_PARM);
944 RECORD(DECL_STATIC_ASSERT);
945 RECORD(DECL_CXX_BASE_SPECIFIERS);
946 RECORD(DECL_INDIRECTFIELD);
947 RECORD(DECL_EXPANDED_NON_TYPE_TEMPLATE_PARM_PACK);
948
Douglas Gregora72d8c42011-06-03 02:27:19 +0000949 // Statements and Exprs can occur in the Decls and Types block.
950 AddStmtsExprs(Stream, Record);
951
Douglas Gregor4800a5c2011-02-08 21:58:10 +0000952 BLOCK(PREPROCESSOR_DETAIL_BLOCK);
Chandler Carruthf70d12d2011-07-15 07:25:21 +0000953 RECORD(PPD_MACRO_EXPANSION);
Douglas Gregor4800a5c2011-02-08 21:58:10 +0000954 RECORD(PPD_MACRO_DEFINITION);
955 RECORD(PPD_INCLUSION_DIRECTIVE);
956
Chris Lattnerb145b1e2009-04-26 22:26:21 +0000957#undef RECORD
958#undef BLOCK
959 Stream.ExitBlock();
960}
961
Douglas Gregore650c8c2009-07-07 00:12:59 +0000962/// \brief Adjusts the given filename to only write out the portion of the
963/// filename that is not part of the system root directory.
Mike Stump1eb44332009-09-09 15:08:12 +0000964///
Douglas Gregore650c8c2009-07-07 00:12:59 +0000965/// \param Filename the file name to adjust.
966///
967/// \param isysroot When non-NULL, the PCH file is a relocatable PCH file and
968/// the returned filename will be adjusted by this system root.
969///
970/// \returns either the original filename (if it needs no adjustment) or the
971/// adjusted filename (which points into the @p Filename parameter).
Mike Stump1eb44332009-09-09 15:08:12 +0000972static const char *
Douglas Gregor832d6202011-07-22 16:35:34 +0000973adjustFilenameForRelocatablePCH(const char *Filename, StringRef isysroot) {
Douglas Gregore650c8c2009-07-07 00:12:59 +0000974 assert(Filename && "No file name to adjust?");
Mike Stump1eb44332009-09-09 15:08:12 +0000975
Douglas Gregor832d6202011-07-22 16:35:34 +0000976 if (isysroot.empty())
Douglas Gregore650c8c2009-07-07 00:12:59 +0000977 return Filename;
Mike Stump1eb44332009-09-09 15:08:12 +0000978
Douglas Gregore650c8c2009-07-07 00:12:59 +0000979 // Verify that the filename and the system root have the same prefix.
980 unsigned Pos = 0;
Douglas Gregor832d6202011-07-22 16:35:34 +0000981 for (; Filename[Pos] && Pos < isysroot.size(); ++Pos)
Douglas Gregore650c8c2009-07-07 00:12:59 +0000982 if (Filename[Pos] != isysroot[Pos])
983 return Filename; // Prefixes don't match.
Mike Stump1eb44332009-09-09 15:08:12 +0000984
Douglas Gregore650c8c2009-07-07 00:12:59 +0000985 // We hit the end of the filename before we hit the end of the system root.
986 if (!Filename[Pos])
987 return Filename;
Mike Stump1eb44332009-09-09 15:08:12 +0000988
Douglas Gregore650c8c2009-07-07 00:12:59 +0000989 // If the file name has a '/' at the current position, skip over the '/'.
990 // We distinguish sysroot-based includes from absolute includes by the
991 // absence of '/' at the beginning of sysroot-based includes.
992 if (Filename[Pos] == '/')
993 ++Pos;
Mike Stump1eb44332009-09-09 15:08:12 +0000994
Douglas Gregore650c8c2009-07-07 00:12:59 +0000995 return Filename + Pos;
996}
Chris Lattnerb145b1e2009-04-26 22:26:21 +0000997
Douglas Gregor1d9d9892012-10-18 05:31:06 +0000998/// \brief Write the control block.
Douglas Gregorbbf38312012-10-24 16:50:34 +0000999void ASTWriter::WriteControlBlock(Preprocessor &PP, ASTContext &Context,
1000 StringRef isysroot,
Douglas Gregor1d9d9892012-10-18 05:31:06 +00001001 const std::string &OutputFile) {
Douglas Gregor2bec0412009-04-10 21:16:55 +00001002 using namespace llvm;
Douglas Gregor7ae467f2012-10-18 18:27:37 +00001003 Stream.EnterSubblock(CONTROL_BLOCK_ID, 5);
1004 RecordData Record;
Douglas Gregor1d9d9892012-10-18 05:31:06 +00001005
Douglas Gregore650c8c2009-07-07 00:12:59 +00001006 // Metadata
Douglas Gregor7ae467f2012-10-18 18:27:37 +00001007 BitCodeAbbrev *MetadataAbbrev = new BitCodeAbbrev();
1008 MetadataAbbrev->Add(BitCodeAbbrevOp(METADATA));
1009 MetadataAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 16)); // Major
1010 MetadataAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 16)); // Minor
1011 MetadataAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 16)); // Clang maj.
1012 MetadataAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 16)); // Clang min.
1013 MetadataAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // Relocatable
1014 MetadataAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // Errors
1015 MetadataAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // SVN branch/tag
1016 unsigned MetadataAbbrevCode = Stream.EmitAbbrev(MetadataAbbrev);
1017 Record.push_back(METADATA);
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001018 Record.push_back(VERSION_MAJOR);
1019 Record.push_back(VERSION_MINOR);
Douglas Gregore650c8c2009-07-07 00:12:59 +00001020 Record.push_back(CLANG_VERSION_MAJOR);
1021 Record.push_back(CLANG_VERSION_MINOR);
Douglas Gregor832d6202011-07-22 16:35:34 +00001022 Record.push_back(!isysroot.empty());
Argyrios Kyrtzidisbef35c92012-03-07 01:51:17 +00001023 Record.push_back(ASTHasCompilerErrors);
Douglas Gregor7ae467f2012-10-18 18:27:37 +00001024 Stream.EmitRecordWithBlob(MetadataAbbrevCode, Record,
1025 getClangFullRepositoryVersion());
Douglas Gregore95b9192011-08-17 21:07:30 +00001026
Douglas Gregor1d9d9892012-10-18 05:31:06 +00001027 // Imports
Douglas Gregore95b9192011-08-17 21:07:30 +00001028 if (Chain) {
Douglas Gregore95b9192011-08-17 21:07:30 +00001029 serialization::ModuleManager &Mgr = Chain->getModuleManager();
Dmitri Gribenkocfa88f82013-01-12 19:30:44 +00001030 SmallVector<char, 128> ModulePaths;
Douglas Gregore95b9192011-08-17 21:07:30 +00001031 Record.clear();
Douglas Gregor10bc00f2011-08-18 04:12:04 +00001032
1033 for (ModuleManager::ModuleIterator M = Mgr.begin(), MEnd = Mgr.end();
1034 M != MEnd; ++M) {
1035 // Skip modules that weren't directly imported.
1036 if (!(*M)->isDirectlyImported())
1037 continue;
1038
1039 Record.push_back((unsigned)(*M)->Kind); // FIXME: Stable encoding
Argyrios Kyrtzidis958bcaf2012-11-15 18:57:22 +00001040 AddSourceLocation((*M)->ImportLoc, Record);
Douglas Gregor677e15f2013-03-19 00:28:20 +00001041 Record.push_back((*M)->File->getSize());
1042 Record.push_back((*M)->File->getModificationTime());
Douglas Gregor10bc00f2011-08-18 04:12:04 +00001043 // FIXME: This writes the absolute path for AST files we depend on.
1044 const std::string &FileName = (*M)->FileName;
1045 Record.push_back(FileName.size());
1046 Record.append(FileName.begin(), FileName.end());
1047 }
Douglas Gregore95b9192011-08-17 21:07:30 +00001048 Stream.EmitRecord(IMPORTS, Record);
1049 }
Mike Stump1eb44332009-09-09 15:08:12 +00001050
Douglas Gregor1d9d9892012-10-18 05:31:06 +00001051 // Language options.
1052 Record.clear();
1053 const LangOptions &LangOpts = Context.getLangOpts();
1054#define LANGOPT(Name, Bits, Default, Description) \
1055 Record.push_back(LangOpts.Name);
1056#define ENUM_LANGOPT(Name, Type, Bits, Default, Description) \
1057 Record.push_back(static_cast<unsigned>(LangOpts.get##Name()));
1058#include "clang/Basic/LangOptions.def"
Will Dietz4f45bc02013-01-18 11:30:38 +00001059#define SANITIZER(NAME, ID) Record.push_back(LangOpts.Sanitize.ID);
1060#include "clang/Basic/Sanitizers.def"
Douglas Gregor1d9d9892012-10-18 05:31:06 +00001061
1062 Record.push_back((unsigned) LangOpts.ObjCRuntime.getKind());
1063 AddVersionTuple(LangOpts.ObjCRuntime.getVersion(), Record);
1064
1065 Record.push_back(LangOpts.CurrentModule.size());
1066 Record.append(LangOpts.CurrentModule.begin(), LangOpts.CurrentModule.end());
Dmitri Gribenko6ebf0912013-02-22 14:21:27 +00001067
1068 // Comment options.
1069 Record.push_back(LangOpts.CommentOpts.BlockCommandNames.size());
1070 for (CommentOptions::BlockCommandNamesTy::const_iterator
1071 I = LangOpts.CommentOpts.BlockCommandNames.begin(),
1072 IEnd = LangOpts.CommentOpts.BlockCommandNames.end();
1073 I != IEnd; ++I) {
1074 AddString(*I, Record);
1075 }
Dmitri Gribenko6fd7d302013-04-10 15:35:17 +00001076 Record.push_back(LangOpts.CommentOpts.ParseAllComments);
Dmitri Gribenko6ebf0912013-02-22 14:21:27 +00001077
Douglas Gregor1d9d9892012-10-18 05:31:06 +00001078 Stream.EmitRecord(LANGUAGE_OPTIONS, Record);
1079
Douglas Gregoree097c12012-10-18 17:58:09 +00001080 // Target options.
1081 Record.clear();
Douglas Gregor7ae467f2012-10-18 18:27:37 +00001082 const TargetInfo &Target = Context.getTargetInfo();
1083 const TargetOptions &TargetOpts = Target.getTargetOpts();
Douglas Gregoree097c12012-10-18 17:58:09 +00001084 AddString(TargetOpts.Triple, Record);
1085 AddString(TargetOpts.CPU, Record);
1086 AddString(TargetOpts.ABI, Record);
1087 AddString(TargetOpts.CXXABI, Record);
1088 AddString(TargetOpts.LinkerVersion, Record);
1089 Record.push_back(TargetOpts.FeaturesAsWritten.size());
1090 for (unsigned I = 0, N = TargetOpts.FeaturesAsWritten.size(); I != N; ++I) {
1091 AddString(TargetOpts.FeaturesAsWritten[I], Record);
1092 }
1093 Record.push_back(TargetOpts.Features.size());
1094 for (unsigned I = 0, N = TargetOpts.Features.size(); I != N; ++I) {
1095 AddString(TargetOpts.Features[I], Record);
1096 }
1097 Stream.EmitRecord(TARGET_OPTIONS, Record);
1098
Douglas Gregor5f3d8222012-10-24 15:17:15 +00001099 // Diagnostic options.
1100 Record.clear();
1101 const DiagnosticOptions &DiagOpts
1102 = Context.getDiagnostics().getDiagnosticOptions();
1103#define DIAGOPT(Name, Bits, Default) Record.push_back(DiagOpts.Name);
1104#define ENUM_DIAGOPT(Name, Type, Bits, Default) \
1105 Record.push_back(static_cast<unsigned>(DiagOpts.get##Name()));
1106#include "clang/Basic/DiagnosticOptions.def"
1107 Record.push_back(DiagOpts.Warnings.size());
1108 for (unsigned I = 0, N = DiagOpts.Warnings.size(); I != N; ++I)
1109 AddString(DiagOpts.Warnings[I], Record);
1110 // Note: we don't serialize the log or serialization file names, because they
1111 // are generally transient files and will almost always be overridden.
1112 Stream.EmitRecord(DIAGNOSTIC_OPTIONS, Record);
1113
Douglas Gregor1b2c3c02012-10-24 15:49:58 +00001114 // File system options.
1115 Record.clear();
1116 const FileSystemOptions &FSOpts
1117 = Context.getSourceManager().getFileManager().getFileSystemOptions();
1118 AddString(FSOpts.WorkingDir, Record);
1119 Stream.EmitRecord(FILE_SYSTEM_OPTIONS, Record);
1120
Douglas Gregorbbf38312012-10-24 16:50:34 +00001121 // Header search options.
1122 Record.clear();
1123 const HeaderSearchOptions &HSOpts
1124 = PP.getHeaderSearchInfo().getHeaderSearchOpts();
1125 AddString(HSOpts.Sysroot, Record);
1126
1127 // Include entries.
1128 Record.push_back(HSOpts.UserEntries.size());
1129 for (unsigned I = 0, N = HSOpts.UserEntries.size(); I != N; ++I) {
1130 const HeaderSearchOptions::Entry &Entry = HSOpts.UserEntries[I];
1131 AddString(Entry.Path, Record);
1132 Record.push_back(static_cast<unsigned>(Entry.Group));
Douglas Gregorbbf38312012-10-24 16:50:34 +00001133 Record.push_back(Entry.IsFramework);
1134 Record.push_back(Entry.IgnoreSysRoot);
Douglas Gregorbbf38312012-10-24 16:50:34 +00001135 }
1136
1137 // System header prefixes.
1138 Record.push_back(HSOpts.SystemHeaderPrefixes.size());
1139 for (unsigned I = 0, N = HSOpts.SystemHeaderPrefixes.size(); I != N; ++I) {
1140 AddString(HSOpts.SystemHeaderPrefixes[I].Prefix, Record);
1141 Record.push_back(HSOpts.SystemHeaderPrefixes[I].IsSystemHeader);
1142 }
1143
1144 AddString(HSOpts.ResourceDir, Record);
1145 AddString(HSOpts.ModuleCachePath, Record);
1146 Record.push_back(HSOpts.DisableModuleHash);
1147 Record.push_back(HSOpts.UseBuiltinIncludes);
1148 Record.push_back(HSOpts.UseStandardSystemIncludes);
1149 Record.push_back(HSOpts.UseStandardCXXIncludes);
1150 Record.push_back(HSOpts.UseLibcxx);
1151 Stream.EmitRecord(HEADER_SEARCH_OPTIONS, Record);
1152
Douglas Gregora71a7d82012-10-24 20:05:57 +00001153 // Preprocessor options.
1154 Record.clear();
1155 const PreprocessorOptions &PPOpts = PP.getPreprocessorOpts();
1156
1157 // Macro definitions.
1158 Record.push_back(PPOpts.Macros.size());
1159 for (unsigned I = 0, N = PPOpts.Macros.size(); I != N; ++I) {
1160 AddString(PPOpts.Macros[I].first, Record);
1161 Record.push_back(PPOpts.Macros[I].second);
1162 }
1163
1164 // Includes
1165 Record.push_back(PPOpts.Includes.size());
1166 for (unsigned I = 0, N = PPOpts.Includes.size(); I != N; ++I)
1167 AddString(PPOpts.Includes[I], Record);
1168
1169 // Macro includes
1170 Record.push_back(PPOpts.MacroIncludes.size());
1171 for (unsigned I = 0, N = PPOpts.MacroIncludes.size(); I != N; ++I)
1172 AddString(PPOpts.MacroIncludes[I], Record);
1173
Douglas Gregor4c0c7e82012-10-24 23:41:50 +00001174 Record.push_back(PPOpts.UsePredefines);
Argyrios Kyrtzidis65110ca2013-04-26 21:33:40 +00001175 // Detailed record is important since it is used for the module cache hash.
1176 Record.push_back(PPOpts.DetailedRecord);
Douglas Gregora71a7d82012-10-24 20:05:57 +00001177 AddString(PPOpts.ImplicitPCHInclude, Record);
1178 AddString(PPOpts.ImplicitPTHInclude, Record);
1179 Record.push_back(static_cast<unsigned>(PPOpts.ObjCXXARCStandardLibrary));
1180 Stream.EmitRecord(PREPROCESSOR_OPTIONS, Record);
1181
Douglas Gregor31d375f2011-05-06 21:43:30 +00001182 // Original file name and file ID
Douglas Gregorb64c1932009-05-12 01:31:05 +00001183 SourceManager &SM = Context.getSourceManager();
1184 if (const FileEntry *MainFile = SM.getFileEntryForID(SM.getMainFileID())) {
1185 BitCodeAbbrev *FileAbbrev = new BitCodeAbbrev();
Douglas Gregor39c497b2012-10-18 18:36:53 +00001186 FileAbbrev->Add(BitCodeAbbrevOp(ORIGINAL_FILE));
1187 FileAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // File ID
Douglas Gregorb64c1932009-05-12 01:31:05 +00001188 FileAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // File name
1189 unsigned FileAbbrevCode = Stream.EmitAbbrev(FileAbbrev);
1190
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00001191 SmallString<128> MainFilePath(MainFile->getName());
Mike Stump1eb44332009-09-09 15:08:12 +00001192
Michael J. Spencerfbfd1802010-12-21 16:45:57 +00001193 llvm::sys::fs::make_absolute(MainFilePath);
Douglas Gregorb64c1932009-05-12 01:31:05 +00001194
Kovarththanan Rajaratnamaba54a92010-03-14 07:15:57 +00001195 const char *MainFileNameStr = MainFilePath.c_str();
Mike Stump1eb44332009-09-09 15:08:12 +00001196 MainFileNameStr = adjustFilenameForRelocatablePCH(MainFileNameStr,
Douglas Gregore650c8c2009-07-07 00:12:59 +00001197 isysroot);
Douglas Gregora71a7d82012-10-24 20:05:57 +00001198 Record.clear();
Douglas Gregor39c497b2012-10-18 18:36:53 +00001199 Record.push_back(ORIGINAL_FILE);
Douglas Gregor31d375f2011-05-06 21:43:30 +00001200 Record.push_back(SM.getMainFileID().getOpaqueValue());
Douglas Gregor39c497b2012-10-18 18:36:53 +00001201 Stream.EmitRecordWithBlob(FileAbbrevCode, Record, MainFileNameStr);
Douglas Gregorb64c1932009-05-12 01:31:05 +00001202 }
Kovarththanan Rajaratnam11a18f12010-03-14 07:06:50 +00001203
Argyrios Kyrtzidis992d9172012-11-15 18:57:27 +00001204 Record.clear();
1205 Record.push_back(SM.getMainFileID().getOpaqueValue());
1206 Stream.EmitRecord(ORIGINAL_FILE_ID, Record);
1207
Argyrios Kyrtzidis8e3df4d2011-02-15 17:54:22 +00001208 // Original PCH directory
1209 if (!OutputFile.empty() && OutputFile != "-") {
1210 BitCodeAbbrev *Abbrev = new BitCodeAbbrev();
1211 Abbrev->Add(BitCodeAbbrevOp(ORIGINAL_PCH_DIR));
1212 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // File name
1213 unsigned AbbrevCode = Stream.EmitAbbrev(Abbrev);
1214
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00001215 SmallString<128> OutputPath(OutputFile);
Argyrios Kyrtzidis8e3df4d2011-02-15 17:54:22 +00001216
1217 llvm::sys::fs::make_absolute(OutputPath);
1218 StringRef origDir = llvm::sys::path::parent_path(OutputPath);
1219
1220 RecordData Record;
1221 Record.push_back(ORIGINAL_PCH_DIR);
1222 Stream.EmitRecordWithBlob(AbbrevCode, Record, origDir);
1223 }
1224
Douglas Gregor4a18c3b2013-03-15 22:15:07 +00001225 WriteInputFiles(Context.SourceMgr,
1226 PP.getHeaderSearchInfo().getHeaderSearchOpts(),
1227 isysroot);
Douglas Gregor745e6f12012-10-19 00:38:02 +00001228 Stream.ExitBlock();
1229}
1230
Douglas Gregor4a18c3b2013-03-15 22:15:07 +00001231namespace {
1232 /// \brief An input file.
1233 struct InputFileEntry {
1234 const FileEntry *File;
1235 bool IsSystemFile;
1236 bool BufferOverridden;
1237 };
1238}
1239
1240void ASTWriter::WriteInputFiles(SourceManager &SourceMgr,
1241 HeaderSearchOptions &HSOpts,
1242 StringRef isysroot) {
Douglas Gregor745e6f12012-10-19 00:38:02 +00001243 using namespace llvm;
1244 Stream.EnterSubblock(INPUT_FILES_BLOCK_ID, 4);
1245 RecordData Record;
1246
1247 // Create input-file abbreviation.
1248 BitCodeAbbrev *IFAbbrev = new BitCodeAbbrev();
1249 IFAbbrev->Add(BitCodeAbbrevOp(INPUT_FILE));
Douglas Gregora930dc92012-10-22 18:42:04 +00001250 IFAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // ID
Douglas Gregor745e6f12012-10-19 00:38:02 +00001251 IFAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 12)); // Size
1252 IFAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 32)); // Modification time
Douglas Gregora930dc92012-10-22 18:42:04 +00001253 IFAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // Overridden
Douglas Gregor745e6f12012-10-19 00:38:02 +00001254 IFAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // File name
1255 unsigned IFAbbrevCode = Stream.EmitAbbrev(IFAbbrev);
1256
Argyrios Kyrtzidis398253a2013-03-06 18:12:50 +00001257 // Get all ContentCache objects for files, sorted by whether the file is a
1258 // system one or not. System files go at the back, users files at the front.
Douglas Gregor4a18c3b2013-03-15 22:15:07 +00001259 std::deque<InputFileEntry> SortedFiles;
Douglas Gregor745e6f12012-10-19 00:38:02 +00001260 for (unsigned I = 1, N = SourceMgr.local_sloc_entry_size(); I != N; ++I) {
1261 // Get this source location entry.
1262 const SrcMgr::SLocEntry *SLoc = &SourceMgr.getLocalSLocEntry(I);
NAKAMURA Takumibacc2c52012-10-19 01:53:57 +00001263 assert(&SourceMgr.getSLocEntry(FileID::get(I)) == SLoc);
Douglas Gregor745e6f12012-10-19 00:38:02 +00001264
1265 // We only care about file entries that were not overridden.
1266 if (!SLoc->isFile())
1267 continue;
1268 const SrcMgr::ContentCache *Cache = SLoc->getFile().getContentCache();
Douglas Gregora930dc92012-10-22 18:42:04 +00001269 if (!Cache->OrigEntry)
Douglas Gregor745e6f12012-10-19 00:38:02 +00001270 continue;
1271
Douglas Gregor4a18c3b2013-03-15 22:15:07 +00001272 InputFileEntry Entry;
1273 Entry.File = Cache->OrigEntry;
1274 Entry.IsSystemFile = Cache->IsSystemFile;
1275 Entry.BufferOverridden = Cache->BufferOverridden;
Argyrios Kyrtzidis398253a2013-03-06 18:12:50 +00001276 if (Cache->IsSystemFile)
Douglas Gregor4a18c3b2013-03-15 22:15:07 +00001277 SortedFiles.push_back(Entry);
Argyrios Kyrtzidis398253a2013-03-06 18:12:50 +00001278 else
Douglas Gregor4a18c3b2013-03-15 22:15:07 +00001279 SortedFiles.push_front(Entry);
1280 }
1281
1282 // If we have an isysroot for a Darwin SDK, include its SDKSettings.plist in
1283 // the set of (non-system) input files. This is simple heuristic for
1284 // detecting whether the system headers may have changed, because it is too
1285 // expensive to stat() all of the system headers.
1286 FileManager &FileMgr = SourceMgr.getFileManager();
Douglas Gregor2bf383d2013-03-20 16:59:53 +00001287 if (!HSOpts.Sysroot.empty() && !Chain) {
Douglas Gregor4a18c3b2013-03-15 22:15:07 +00001288 llvm::SmallString<128> SDKSettingsFileName(HSOpts.Sysroot);
1289 llvm::sys::path::append(SDKSettingsFileName, "SDKSettings.plist");
1290 if (const FileEntry *SDKSettingsFile = FileMgr.getFile(SDKSettingsFileName)) {
1291 InputFileEntry Entry = { SDKSettingsFile, false, false };
1292 SortedFiles.push_front(Entry);
1293 }
Argyrios Kyrtzidis398253a2013-03-06 18:12:50 +00001294 }
1295
1296 unsigned UserFilesNum = 0;
1297 // Write out all of the input files.
1298 std::vector<uint32_t> InputFileOffsets;
Douglas Gregor4a18c3b2013-03-15 22:15:07 +00001299 for (std::deque<InputFileEntry>::iterator
Argyrios Kyrtzidis398253a2013-03-06 18:12:50 +00001300 I = SortedFiles.begin(), E = SortedFiles.end(); I != E; ++I) {
Douglas Gregor4a18c3b2013-03-15 22:15:07 +00001301 const InputFileEntry &Entry = *I;
Argyrios Kyrtzidis398253a2013-03-06 18:12:50 +00001302
Douglas Gregor4a18c3b2013-03-15 22:15:07 +00001303 uint32_t &InputFileID = InputFileIDs[Entry.File];
Argyrios Kyrtzidisa89b6182012-12-11 07:48:08 +00001304 if (InputFileID != 0)
1305 continue; // already recorded this file.
1306
Douglas Gregora930dc92012-10-22 18:42:04 +00001307 // Record this entry's offset.
1308 InputFileOffsets.push_back(Stream.GetCurrentBitNo());
Argyrios Kyrtzidisa89b6182012-12-11 07:48:08 +00001309
1310 InputFileID = InputFileOffsets.size();
Douglas Gregora930dc92012-10-22 18:42:04 +00001311
Douglas Gregor4a18c3b2013-03-15 22:15:07 +00001312 if (!Entry.IsSystemFile)
Argyrios Kyrtzidis398253a2013-03-06 18:12:50 +00001313 ++UserFilesNum;
1314
Douglas Gregor745e6f12012-10-19 00:38:02 +00001315 Record.clear();
1316 Record.push_back(INPUT_FILE);
Douglas Gregora930dc92012-10-22 18:42:04 +00001317 Record.push_back(InputFileOffsets.size());
Douglas Gregor745e6f12012-10-19 00:38:02 +00001318
1319 // Emit size/modification time for this file.
Douglas Gregor4a18c3b2013-03-15 22:15:07 +00001320 Record.push_back(Entry.File->getSize());
1321 Record.push_back(Entry.File->getModificationTime());
Douglas Gregor745e6f12012-10-19 00:38:02 +00001322
Douglas Gregora930dc92012-10-22 18:42:04 +00001323 // Whether this file was overridden.
Douglas Gregor4a18c3b2013-03-15 22:15:07 +00001324 Record.push_back(Entry.BufferOverridden);
Douglas Gregora930dc92012-10-22 18:42:04 +00001325
Douglas Gregor745e6f12012-10-19 00:38:02 +00001326 // Turn the file name into an absolute path, if it isn't already.
Douglas Gregor4a18c3b2013-03-15 22:15:07 +00001327 const char *Filename = Entry.File->getName();
Douglas Gregor745e6f12012-10-19 00:38:02 +00001328 SmallString<128> FilePath(Filename);
1329
1330 // Ask the file manager to fixup the relative path for us. This will
1331 // honor the working directory.
Douglas Gregor4a18c3b2013-03-15 22:15:07 +00001332 FileMgr.FixupRelativePath(FilePath);
Douglas Gregor745e6f12012-10-19 00:38:02 +00001333
1334 // FIXME: This call to make_absolute shouldn't be necessary, the
1335 // call to FixupRelativePath should always return an absolute path.
1336 llvm::sys::fs::make_absolute(FilePath);
1337 Filename = FilePath.c_str();
1338
1339 Filename = adjustFilenameForRelocatablePCH(Filename, isysroot);
1340
1341 Stream.EmitRecordWithBlob(IFAbbrevCode, Record, Filename);
1342 }
Douglas Gregor4a18c3b2013-03-15 22:15:07 +00001343
Douglas Gregor1d9d9892012-10-18 05:31:06 +00001344 Stream.ExitBlock();
Douglas Gregora930dc92012-10-22 18:42:04 +00001345
1346 // Create input file offsets abbreviation.
1347 BitCodeAbbrev *OffsetsAbbrev = new BitCodeAbbrev();
1348 OffsetsAbbrev->Add(BitCodeAbbrevOp(INPUT_FILE_OFFSETS));
1349 OffsetsAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // # input files
Argyrios Kyrtzidis398253a2013-03-06 18:12:50 +00001350 OffsetsAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // # non-system
1351 // input files
Douglas Gregora930dc92012-10-22 18:42:04 +00001352 OffsetsAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // Array
1353 unsigned OffsetsAbbrevCode = Stream.EmitAbbrev(OffsetsAbbrev);
1354
1355 // Write input file offsets.
1356 Record.clear();
1357 Record.push_back(INPUT_FILE_OFFSETS);
1358 Record.push_back(InputFileOffsets.size());
Argyrios Kyrtzidis398253a2013-03-06 18:12:50 +00001359 Record.push_back(UserFilesNum);
Douglas Gregora930dc92012-10-22 18:42:04 +00001360 Stream.EmitRecordWithBlob(OffsetsAbbrevCode, Record, data(InputFileOffsets));
Douglas Gregor0a0428e2009-04-10 20:39:37 +00001361}
1362
Douglas Gregor14f79002009-04-10 03:52:48 +00001363//===----------------------------------------------------------------------===//
1364// Source Manager Serialization
1365//===----------------------------------------------------------------------===//
1366
1367/// \brief Create an abbreviation for the SLocEntry that refers to a
1368/// file.
Douglas Gregorc9490c02009-04-16 22:23:12 +00001369static unsigned CreateSLocFileAbbrev(llvm::BitstreamWriter &Stream) {
Douglas Gregor14f79002009-04-10 03:52:48 +00001370 using namespace llvm;
1371 BitCodeAbbrev *Abbrev = new BitCodeAbbrev();
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001372 Abbrev->Add(BitCodeAbbrevOp(SM_SLOC_FILE_ENTRY));
Douglas Gregor14f79002009-04-10 03:52:48 +00001373 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // Offset
1374 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // Include location
1375 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 2)); // Characteristic
1376 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // Line directives
Douglas Gregor2d52be52010-03-21 22:49:54 +00001377 // FileEntry fields.
Douglas Gregora930dc92012-10-22 18:42:04 +00001378 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // Input File ID
Argyrios Kyrtzidisd9d2b672011-08-21 23:33:04 +00001379 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // NumCreatedFIDs
Argyrios Kyrtzidis10f3df52011-10-28 22:54:21 +00001380 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 24)); // FirstDeclIndex
1381 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // NumDecls
Douglas Gregorc9490c02009-04-16 22:23:12 +00001382 return Stream.EmitAbbrev(Abbrev);
Douglas Gregor14f79002009-04-10 03:52:48 +00001383}
1384
1385/// \brief Create an abbreviation for the SLocEntry that refers to a
1386/// buffer.
Douglas Gregorc9490c02009-04-16 22:23:12 +00001387static unsigned CreateSLocBufferAbbrev(llvm::BitstreamWriter &Stream) {
Douglas Gregor14f79002009-04-10 03:52:48 +00001388 using namespace llvm;
1389 BitCodeAbbrev *Abbrev = new BitCodeAbbrev();
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001390 Abbrev->Add(BitCodeAbbrevOp(SM_SLOC_BUFFER_ENTRY));
Douglas Gregor14f79002009-04-10 03:52:48 +00001391 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // Offset
1392 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // Include location
1393 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 2)); // Characteristic
1394 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // Line directives
1395 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // Buffer name blob
Douglas Gregorc9490c02009-04-16 22:23:12 +00001396 return Stream.EmitAbbrev(Abbrev);
Douglas Gregor14f79002009-04-10 03:52:48 +00001397}
1398
1399/// \brief Create an abbreviation for the SLocEntry that refers to a
1400/// buffer's blob.
Douglas Gregorc9490c02009-04-16 22:23:12 +00001401static unsigned CreateSLocBufferBlobAbbrev(llvm::BitstreamWriter &Stream) {
Douglas Gregor14f79002009-04-10 03:52:48 +00001402 using namespace llvm;
1403 BitCodeAbbrev *Abbrev = new BitCodeAbbrev();
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001404 Abbrev->Add(BitCodeAbbrevOp(SM_SLOC_BUFFER_BLOB));
Douglas Gregor14f79002009-04-10 03:52:48 +00001405 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // Blob
Douglas Gregorc9490c02009-04-16 22:23:12 +00001406 return Stream.EmitAbbrev(Abbrev);
Douglas Gregor14f79002009-04-10 03:52:48 +00001407}
1408
Chandler Carruthf70d12d2011-07-15 07:25:21 +00001409/// \brief Create an abbreviation for the SLocEntry that refers to a macro
1410/// expansion.
1411static unsigned CreateSLocExpansionAbbrev(llvm::BitstreamWriter &Stream) {
Douglas Gregor14f79002009-04-10 03:52:48 +00001412 using namespace llvm;
1413 BitCodeAbbrev *Abbrev = new BitCodeAbbrev();
Chandler Carruthf70d12d2011-07-15 07:25:21 +00001414 Abbrev->Add(BitCodeAbbrevOp(SM_SLOC_EXPANSION_ENTRY));
Douglas Gregor14f79002009-04-10 03:52:48 +00001415 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // Offset
1416 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // Spelling location
1417 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // Start location
1418 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // End location
Douglas Gregorf60e9912009-04-15 18:05:10 +00001419 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // Token length
Douglas Gregorc9490c02009-04-16 22:23:12 +00001420 return Stream.EmitAbbrev(Abbrev);
Douglas Gregor14f79002009-04-10 03:52:48 +00001421}
1422
Douglas Gregorcfbf1c72011-02-10 17:09:37 +00001423namespace {
1424 // Trait used for the on-disk hash table of header search information.
1425 class HeaderFileInfoTrait {
1426 ASTWriter &Writer;
Argyrios Kyrtzidis55ea75b2013-03-13 21:13:51 +00001427 const HeaderSearch &HS;
Douglas Gregorcfbf1c72011-02-10 17:09:37 +00001428
Douglas Gregorb4dc4852011-07-28 04:50:02 +00001429 // Keep track of the framework names we've used during serialization.
1430 SmallVector<char, 128> FrameworkStringData;
1431 llvm::StringMap<unsigned> FrameworkNameOffset;
1432
Douglas Gregorcfbf1c72011-02-10 17:09:37 +00001433 public:
Argyrios Kyrtzidis55ea75b2013-03-13 21:13:51 +00001434 HeaderFileInfoTrait(ASTWriter &Writer, const HeaderSearch &HS)
1435 : Writer(Writer), HS(HS) { }
Douglas Gregorcfbf1c72011-02-10 17:09:37 +00001436
Argyrios Kyrtzidised3802e2013-03-06 18:12:47 +00001437 struct key_type {
1438 const FileEntry *FE;
1439 const char *Filename;
1440 };
1441 typedef const key_type &key_type_ref;
Douglas Gregorcfbf1c72011-02-10 17:09:37 +00001442
1443 typedef HeaderFileInfo data_type;
1444 typedef const data_type &data_type_ref;
1445
Argyrios Kyrtzidised3802e2013-03-06 18:12:47 +00001446 static unsigned ComputeHash(key_type_ref key) {
1447 // The hash is based only on size/time of the file, so that the reader can
1448 // match even when symlinking or excess path elements ("foo/../", "../")
1449 // change the form of the name. However, complete path is still the key.
1450 return llvm::hash_combine(key.FE->getSize(),
1451 key.FE->getModificationTime());
Douglas Gregorcfbf1c72011-02-10 17:09:37 +00001452 }
1453
1454 std::pair<unsigned,unsigned>
Argyrios Kyrtzidised3802e2013-03-06 18:12:47 +00001455 EmitKeyDataLength(raw_ostream& Out, key_type_ref key, data_type_ref Data) {
1456 unsigned KeyLen = strlen(key.Filename) + 1 + 8 + 8;
1457 clang::io::Emit16(Out, KeyLen);
Douglas Gregorb4dc4852011-07-28 04:50:02 +00001458 unsigned DataLen = 1 + 2 + 4 + 4;
Argyrios Kyrtzidis55ea75b2013-03-13 21:13:51 +00001459 if (Data.isModuleHeader)
1460 DataLen += 4;
Douglas Gregorcfbf1c72011-02-10 17:09:37 +00001461 clang::io::Emit8(Out, DataLen);
Argyrios Kyrtzidised3802e2013-03-06 18:12:47 +00001462 return std::make_pair(KeyLen, DataLen);
Douglas Gregorcfbf1c72011-02-10 17:09:37 +00001463 }
1464
Argyrios Kyrtzidised3802e2013-03-06 18:12:47 +00001465 void EmitKey(raw_ostream& Out, key_type_ref key, unsigned KeyLen) {
1466 clang::io::Emit64(Out, key.FE->getSize());
1467 KeyLen -= 8;
1468 clang::io::Emit64(Out, key.FE->getModificationTime());
1469 KeyLen -= 8;
1470 Out.write(key.Filename, KeyLen);
Douglas Gregorcfbf1c72011-02-10 17:09:37 +00001471 }
1472
Argyrios Kyrtzidis55ea75b2013-03-13 21:13:51 +00001473 void EmitData(raw_ostream &Out, key_type_ref key,
Douglas Gregorcfbf1c72011-02-10 17:09:37 +00001474 data_type_ref Data, unsigned DataLen) {
1475 using namespace clang::io;
1476 uint64_t Start = Out.tell(); (void)Start;
1477
Douglas Gregorb4dc4852011-07-28 04:50:02 +00001478 unsigned char Flags = (Data.isImport << 5)
1479 | (Data.isPragmaOnce << 4)
1480 | (Data.DirInfo << 2)
1481 | (Data.Resolved << 1)
1482 | Data.IndexHeaderMapHeader;
Douglas Gregorcfbf1c72011-02-10 17:09:37 +00001483 Emit8(Out, (uint8_t)Flags);
1484 Emit16(Out, (uint16_t) Data.NumIncludes);
1485
1486 if (!Data.ControllingMacro)
1487 Emit32(Out, (uint32_t)Data.ControllingMacroID);
1488 else
1489 Emit32(Out, (uint32_t)Writer.getIdentifierRef(Data.ControllingMacro));
Douglas Gregorb4dc4852011-07-28 04:50:02 +00001490
1491 unsigned Offset = 0;
1492 if (!Data.Framework.empty()) {
1493 // If this header refers into a framework, save the framework name.
1494 llvm::StringMap<unsigned>::iterator Pos
1495 = FrameworkNameOffset.find(Data.Framework);
1496 if (Pos == FrameworkNameOffset.end()) {
1497 Offset = FrameworkStringData.size() + 1;
1498 FrameworkStringData.append(Data.Framework.begin(),
1499 Data.Framework.end());
1500 FrameworkStringData.push_back(0);
1501
1502 FrameworkNameOffset[Data.Framework] = Offset;
1503 } else
1504 Offset = Pos->second;
1505 }
1506 Emit32(Out, Offset);
Argyrios Kyrtzidis55ea75b2013-03-13 21:13:51 +00001507
1508 if (Data.isModuleHeader) {
1509 Module *Mod = HS.findModuleForHeader(key.FE);
1510 Emit32(Out, Writer.getExistingSubmoduleID(Mod));
1511 }
1512
Douglas Gregorcfbf1c72011-02-10 17:09:37 +00001513 assert(Out.tell() - Start == DataLen && "Wrong data length");
1514 }
Douglas Gregorb4dc4852011-07-28 04:50:02 +00001515
1516 const char *strings_begin() const { return FrameworkStringData.begin(); }
1517 const char *strings_end() const { return FrameworkStringData.end(); }
Douglas Gregorcfbf1c72011-02-10 17:09:37 +00001518 };
1519} // end anonymous namespace
1520
1521/// \brief Write the header search block for the list of files that
1522///
1523/// \param HS The header search structure to save.
Argyrios Kyrtzidis590ad932011-11-13 22:08:39 +00001524void ASTWriter::WriteHeaderSearch(const HeaderSearch &HS, StringRef isysroot) {
Chris Lattner5f9e2722011-07-23 10:55:15 +00001525 SmallVector<const FileEntry *, 16> FilesByUID;
Douglas Gregorcfbf1c72011-02-10 17:09:37 +00001526 HS.getFileMgr().GetUniqueIDMapping(FilesByUID);
1527
1528 if (FilesByUID.size() > HS.header_file_size())
1529 FilesByUID.resize(HS.header_file_size());
1530
Argyrios Kyrtzidis55ea75b2013-03-13 21:13:51 +00001531 HeaderFileInfoTrait GeneratorTrait(*this, HS);
Douglas Gregorcfbf1c72011-02-10 17:09:37 +00001532 OnDiskChainedHashTableGenerator<HeaderFileInfoTrait> Generator;
Chris Lattner5f9e2722011-07-23 10:55:15 +00001533 SmallVector<const char *, 4> SavedStrings;
Douglas Gregorcfbf1c72011-02-10 17:09:37 +00001534 unsigned NumHeaderSearchEntries = 0;
1535 for (unsigned UID = 0, LastUID = FilesByUID.size(); UID != LastUID; ++UID) {
1536 const FileEntry *File = FilesByUID[UID];
1537 if (!File)
1538 continue;
1539
Argyrios Kyrtzidis590ad932011-11-13 22:08:39 +00001540 // Use HeaderSearch's getFileInfo to make sure we get the HeaderFileInfo
1541 // from the external source if it was not provided already.
1542 const HeaderFileInfo &HFI = HS.getFileInfo(File);
Douglas Gregorcfbf1c72011-02-10 17:09:37 +00001543 if (HFI.External && Chain)
1544 continue;
1545
1546 // Turn the file name into an absolute path, if it isn't already.
1547 const char *Filename = File->getName();
1548 Filename = adjustFilenameForRelocatablePCH(Filename, isysroot);
1549
1550 // If we performed any translation on the file name at all, we need to
1551 // save this string, since the generator will refer to it later.
1552 if (Filename != File->getName()) {
1553 Filename = strdup(Filename);
1554 SavedStrings.push_back(Filename);
1555 }
1556
Argyrios Kyrtzidised3802e2013-03-06 18:12:47 +00001557 HeaderFileInfoTrait::key_type key = { File, Filename };
1558 Generator.insert(key, HFI, GeneratorTrait);
Douglas Gregorcfbf1c72011-02-10 17:09:37 +00001559 ++NumHeaderSearchEntries;
1560 }
1561
1562 // Create the on-disk hash table in a buffer.
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00001563 SmallString<4096> TableData;
Douglas Gregorcfbf1c72011-02-10 17:09:37 +00001564 uint32_t BucketOffset;
1565 {
1566 llvm::raw_svector_ostream Out(TableData);
1567 // Make sure that no bucket is at offset 0
1568 clang::io::Emit32(Out, 0);
1569 BucketOffset = Generator.Emit(Out, GeneratorTrait);
1570 }
1571
1572 // Create a blob abbreviation
1573 using namespace llvm;
1574 BitCodeAbbrev *Abbrev = new BitCodeAbbrev();
1575 Abbrev->Add(BitCodeAbbrevOp(HEADER_SEARCH_TABLE));
1576 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32));
1577 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32));
Douglas Gregorb4dc4852011-07-28 04:50:02 +00001578 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32));
Douglas Gregorcfbf1c72011-02-10 17:09:37 +00001579 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob));
1580 unsigned TableAbbrev = Stream.EmitAbbrev(Abbrev);
1581
Douglas Gregorb4dc4852011-07-28 04:50:02 +00001582 // Write the header search table
Douglas Gregorcfbf1c72011-02-10 17:09:37 +00001583 RecordData Record;
1584 Record.push_back(HEADER_SEARCH_TABLE);
1585 Record.push_back(BucketOffset);
1586 Record.push_back(NumHeaderSearchEntries);
Douglas Gregorb4dc4852011-07-28 04:50:02 +00001587 Record.push_back(TableData.size());
1588 TableData.append(GeneratorTrait.strings_begin(),GeneratorTrait.strings_end());
Douglas Gregorcfbf1c72011-02-10 17:09:37 +00001589 Stream.EmitRecordWithBlob(TableAbbrev, Record, TableData.str());
1590
1591 // Free all of the strings we had to duplicate.
1592 for (unsigned I = 0, N = SavedStrings.size(); I != N; ++I)
David Greene64444832013-01-15 22:09:43 +00001593 free(const_cast<char *>(SavedStrings[I]));
Douglas Gregorcfbf1c72011-02-10 17:09:37 +00001594}
1595
Douglas Gregor14f79002009-04-10 03:52:48 +00001596/// \brief Writes the block containing the serialized form of the
1597/// source manager.
1598///
1599/// TODO: We should probably use an on-disk hash table (stored in a
1600/// blob), indexed based on the file name, so that we only create
1601/// entries for files that we actually need. In the common case (no
1602/// errors), we probably won't have to create file entries for any of
1603/// the files in the AST.
Sebastian Redla4232eb2010-08-18 23:56:21 +00001604void ASTWriter::WriteSourceManagerBlock(SourceManager &SourceMgr,
Douglas Gregore650c8c2009-07-07 00:12:59 +00001605 const Preprocessor &PP,
Douglas Gregor832d6202011-07-22 16:35:34 +00001606 StringRef isysroot) {
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001607 RecordData Record;
1608
Chris Lattnerf04ad692009-04-10 17:16:57 +00001609 // Enter the source manager block.
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001610 Stream.EnterSubblock(SOURCE_MANAGER_BLOCK_ID, 3);
Douglas Gregor14f79002009-04-10 03:52:48 +00001611
1612 // Abbreviations for the various kinds of source-location entries.
Chris Lattner828e18c2009-04-27 19:03:22 +00001613 unsigned SLocFileAbbrv = CreateSLocFileAbbrev(Stream);
1614 unsigned SLocBufferAbbrv = CreateSLocBufferAbbrev(Stream);
1615 unsigned SLocBufferBlobAbbrv = CreateSLocBufferBlobAbbrev(Stream);
Chandler Carruthf70d12d2011-07-15 07:25:21 +00001616 unsigned SLocExpansionAbbrv = CreateSLocExpansionAbbrev(Stream);
Douglas Gregor14f79002009-04-10 03:52:48 +00001617
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001618 // Write out the source location entry table. We skip the first
1619 // entry, which is always the same dummy entry.
Chris Lattner090d9b52009-04-27 19:01:47 +00001620 std::vector<uint32_t> SLocEntryOffsets;
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001621 RecordData PreloadSLocs;
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001622 SLocEntryOffsets.reserve(SourceMgr.local_sloc_entry_size() - 1);
1623 for (unsigned I = 1, N = SourceMgr.local_sloc_entry_size();
Sebastian Redl0fa7d0b2010-07-22 17:01:13 +00001624 I != N; ++I) {
Douglas Gregorbdfe48a2009-10-16 22:46:09 +00001625 // Get this source location entry.
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001626 const SrcMgr::SLocEntry *SLoc = &SourceMgr.getLocalSLocEntry(I);
Argyrios Kyrtzidisa2ea4d92012-10-02 21:09:17 +00001627 FileID FID = FileID::get(I);
1628 assert(&SourceMgr.getSLocEntry(FID) == SLoc);
Kovarththanan Rajaratnam11a18f12010-03-14 07:06:50 +00001629
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001630 // Record the offset of this source-location entry.
1631 SLocEntryOffsets.push_back(Stream.GetCurrentBitNo());
1632
1633 // Figure out which record code to use.
1634 unsigned Code;
1635 if (SLoc->isFile()) {
Douglas Gregora081da52011-11-16 20:05:18 +00001636 const SrcMgr::ContentCache *Cache = SLoc->getFile().getContentCache();
1637 if (Cache->OrigEntry) {
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001638 Code = SM_SLOC_FILE_ENTRY;
Argyrios Kyrtzidis4cdb0e22011-06-02 20:01:46 +00001639 } else
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001640 Code = SM_SLOC_BUFFER_ENTRY;
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001641 } else
Chandler Carruthf70d12d2011-07-15 07:25:21 +00001642 Code = SM_SLOC_EXPANSION_ENTRY;
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001643 Record.clear();
1644 Record.push_back(Code);
1645
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001646 // Starting offset of this entry within this module, so skip the dummy.
1647 Record.push_back(SLoc->getOffset() - 2);
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001648 if (SLoc->isFile()) {
1649 const SrcMgr::FileInfo &File = SLoc->getFile();
1650 Record.push_back(File.getIncludeLoc().getRawEncoding());
1651 Record.push_back(File.getFileCharacteristic()); // FIXME: stable encoding
1652 Record.push_back(File.hasLineDirectives());
1653
1654 const SrcMgr::ContentCache *Content = File.getContentCache();
Argyrios Kyrtzidisb1c86492011-03-05 01:03:53 +00001655 if (Content->OrigEntry) {
1656 assert(Content->OrigEntry == Content->ContentsEntry &&
Douglas Gregora081da52011-11-16 20:05:18 +00001657 "Writing to AST an overridden file is not supported");
Argyrios Kyrtzidisb1c86492011-03-05 01:03:53 +00001658
Douglas Gregora930dc92012-10-22 18:42:04 +00001659 // The source location entry is a file. Emit input file ID.
1660 assert(InputFileIDs[Content->OrigEntry] != 0 && "Missed file entry");
1661 Record.push_back(InputFileIDs[Content->OrigEntry]);
Mike Stump1eb44332009-09-09 15:08:12 +00001662
Argyrios Kyrtzidisd9d2b672011-08-21 23:33:04 +00001663 Record.push_back(File.NumCreatedFIDs);
Argyrios Kyrtzidis10f3df52011-10-28 22:54:21 +00001664
Argyrios Kyrtzidisa2ea4d92012-10-02 21:09:17 +00001665 FileDeclIDsTy::iterator FDI = FileDeclIDs.find(FID);
Argyrios Kyrtzidis10f3df52011-10-28 22:54:21 +00001666 if (FDI != FileDeclIDs.end()) {
1667 Record.push_back(FDI->second->FirstDeclIndex);
1668 Record.push_back(FDI->second->DeclIDs.size());
1669 } else {
1670 Record.push_back(0);
1671 Record.push_back(0);
1672 }
Douglas Gregora081da52011-11-16 20:05:18 +00001673
Douglas Gregora930dc92012-10-22 18:42:04 +00001674 Stream.EmitRecordWithAbbrev(SLocFileAbbrv, Record);
Douglas Gregora081da52011-11-16 20:05:18 +00001675
1676 if (Content->BufferOverridden) {
1677 Record.clear();
1678 Record.push_back(SM_SLOC_BUFFER_BLOB);
1679 const llvm::MemoryBuffer *Buffer
1680 = Content->getBuffer(PP.getDiagnostics(), PP.getSourceManager());
1681 Stream.EmitRecordWithBlob(SLocBufferBlobAbbrv, Record,
1682 StringRef(Buffer->getBufferStart(),
1683 Buffer->getBufferSize() + 1));
1684 }
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001685 } else {
1686 // The source location entry is a buffer. The blob associated
1687 // with this entry contains the contents of the buffer.
1688
1689 // We add one to the size so that we capture the trailing NULL
1690 // that is required by llvm::MemoryBuffer::getMemBuffer (on
1691 // the reader side).
Douglas Gregor36c35ba2010-03-16 00:35:39 +00001692 const llvm::MemoryBuffer *Buffer
Chris Lattnere127a0d2010-04-20 20:35:58 +00001693 = Content->getBuffer(PP.getDiagnostics(), PP.getSourceManager());
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001694 const char *Name = Buffer->getBufferIdentifier();
Daniel Dunbarec312a12009-08-24 09:31:37 +00001695 Stream.EmitRecordWithBlob(SLocBufferAbbrv, Record,
Chris Lattner5f9e2722011-07-23 10:55:15 +00001696 StringRef(Name, strlen(Name) + 1));
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001697 Record.clear();
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001698 Record.push_back(SM_SLOC_BUFFER_BLOB);
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001699 Stream.EmitRecordWithBlob(SLocBufferBlobAbbrv, Record,
Chris Lattner5f9e2722011-07-23 10:55:15 +00001700 StringRef(Buffer->getBufferStart(),
Daniel Dunbarec312a12009-08-24 09:31:37 +00001701 Buffer->getBufferSize() + 1));
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001702
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001703 if (strcmp(Name, "<built-in>") == 0) {
1704 PreloadSLocs.push_back(SLocEntryOffsets.size());
1705 }
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001706 }
1707 } else {
Chandler Carruthf70d12d2011-07-15 07:25:21 +00001708 // The source location entry is a macro expansion.
Chandler Carruth17287622011-07-26 04:56:51 +00001709 const SrcMgr::ExpansionInfo &Expansion = SLoc->getExpansion();
Chandler Carruth78df8362011-07-26 04:41:47 +00001710 Record.push_back(Expansion.getSpellingLoc().getRawEncoding());
1711 Record.push_back(Expansion.getExpansionLocStart().getRawEncoding());
Argyrios Kyrtzidisd21683c2011-08-17 00:31:14 +00001712 Record.push_back(Expansion.isMacroArgExpansion() ? 0
1713 : Expansion.getExpansionLocEnd().getRawEncoding());
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001714
1715 // Compute the token length for this macro expansion.
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001716 unsigned NextOffset = SourceMgr.getNextLocalOffset();
Douglas Gregorbdfe48a2009-10-16 22:46:09 +00001717 if (I + 1 != N)
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001718 NextOffset = SourceMgr.getLocalSLocEntry(I + 1).getOffset();
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001719 Record.push_back(NextOffset - SLoc->getOffset() - 1);
Chandler Carruthf70d12d2011-07-15 07:25:21 +00001720 Stream.EmitRecordWithAbbrev(SLocExpansionAbbrv, Record);
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001721 }
1722 }
1723
Douglas Gregorc9490c02009-04-16 22:23:12 +00001724 Stream.ExitBlock();
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001725
1726 if (SLocEntryOffsets.empty())
1727 return;
1728
Sebastian Redl3397c552010-08-18 23:56:27 +00001729 // Write the source-location offsets table into the AST block. This
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001730 // table is used for lazily loading source-location information.
1731 using namespace llvm;
1732 BitCodeAbbrev *Abbrev = new BitCodeAbbrev();
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001733 Abbrev->Add(BitCodeAbbrevOp(SOURCE_LOCATION_OFFSETS));
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001734 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 16)); // # of slocs
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001735 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 16)); // total size
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001736 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // offsets
1737 unsigned SLocOffsetsAbbrev = Stream.EmitAbbrev(Abbrev);
Mike Stump1eb44332009-09-09 15:08:12 +00001738
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001739 Record.clear();
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001740 Record.push_back(SOURCE_LOCATION_OFFSETS);
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001741 Record.push_back(SLocEntryOffsets.size());
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001742 Record.push_back(SourceMgr.getNextLocalOffset() - 1); // skip dummy
Benjamin Kramer6e089c62011-04-24 17:44:50 +00001743 Stream.EmitRecordWithBlob(SLocOffsetsAbbrev, Record, data(SLocEntryOffsets));
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001744
Sebastian Redl3397c552010-08-18 23:56:27 +00001745 // Write the source location entry preloads array, telling the AST
Douglas Gregor7f94b0b2009-04-27 06:38:32 +00001746 // reader which source locations entries it should load eagerly.
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001747 Stream.EmitRecord(SOURCE_LOCATION_PRELOADS, PreloadSLocs);
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001748
1749 // Write the line table. It depends on remapping working, so it must come
1750 // after the source location offsets.
1751 if (SourceMgr.hasLineTable()) {
1752 LineTableInfo &LineTable = SourceMgr.getLineTable();
1753
1754 Record.clear();
1755 // Emit the file names
1756 Record.push_back(LineTable.getNumFilenames());
1757 for (unsigned I = 0, N = LineTable.getNumFilenames(); I != N; ++I) {
1758 // Emit the file name
1759 const char *Filename = LineTable.getFilename(I);
1760 Filename = adjustFilenameForRelocatablePCH(Filename, isysroot);
1761 unsigned FilenameLen = Filename? strlen(Filename) : 0;
1762 Record.push_back(FilenameLen);
1763 if (FilenameLen)
1764 Record.insert(Record.end(), Filename, Filename + FilenameLen);
1765 }
1766
1767 // Emit the line entries
1768 for (LineTableInfo::iterator L = LineTable.begin(), LEnd = LineTable.end();
1769 L != LEnd; ++L) {
1770 // Only emit entries for local files.
Douglas Gregor47d9de62012-06-08 16:40:28 +00001771 if (L->first.ID < 0)
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001772 continue;
1773
1774 // Emit the file ID
Douglas Gregor47d9de62012-06-08 16:40:28 +00001775 Record.push_back(L->first.ID);
Douglas Gregorf62d43d2011-07-19 16:10:42 +00001776
1777 // Emit the line entries
1778 Record.push_back(L->second.size());
1779 for (std::vector<LineEntry>::iterator LE = L->second.begin(),
1780 LEEnd = L->second.end();
1781 LE != LEEnd; ++LE) {
1782 Record.push_back(LE->FileOffset);
1783 Record.push_back(LE->LineNo);
1784 Record.push_back(LE->FilenameID);
1785 Record.push_back((unsigned)LE->FileKind);
1786 Record.push_back(LE->IncludeOffset);
1787 }
1788 }
1789 Stream.EmitRecord(SOURCE_MANAGER_LINE_TABLE, Record);
1790 }
Douglas Gregor14f79002009-04-10 03:52:48 +00001791}
1792
Douglas Gregor4fed3f42009-04-27 18:38:38 +00001793//===----------------------------------------------------------------------===//
1794// Preprocessor Serialization
1795//===----------------------------------------------------------------------===//
1796
Argyrios Kyrtzidis9317ab92013-03-22 21:12:57 +00001797namespace {
1798class ASTMacroTableTrait {
1799public:
1800 typedef IdentID key_type;
1801 typedef key_type key_type_ref;
1802
1803 struct Data {
1804 uint32_t MacroDirectivesOffset;
1805 };
1806
1807 typedef Data data_type;
1808 typedef const data_type &data_type_ref;
1809
1810 static unsigned ComputeHash(IdentID IdID) {
1811 return llvm::hash_value(IdID);
1812 }
1813
1814 std::pair<unsigned,unsigned>
1815 static EmitKeyDataLength(raw_ostream& Out,
1816 key_type_ref Key, data_type_ref Data) {
1817 unsigned KeyLen = 4; // IdentID.
1818 unsigned DataLen = 4; // MacroDirectivesOffset.
1819 return std::make_pair(KeyLen, DataLen);
1820 }
1821
1822 static void EmitKey(raw_ostream& Out, key_type_ref Key, unsigned KeyLen) {
1823 clang::io::Emit32(Out, Key);
1824 }
1825
1826 static void EmitData(raw_ostream& Out, key_type_ref Key, data_type_ref Data,
1827 unsigned) {
1828 clang::io::Emit32(Out, Data.MacroDirectivesOffset);
1829 }
1830};
1831} // end anonymous namespace
1832
1833static int compareMacroDirectives(const void *XPtr, const void *YPtr) {
1834 const std::pair<const IdentifierInfo *, MacroDirective *> &X =
1835 *(const std::pair<const IdentifierInfo *, MacroDirective *>*)XPtr;
1836 const std::pair<const IdentifierInfo *, MacroDirective *> &Y =
1837 *(const std::pair<const IdentifierInfo *, MacroDirective *>*)YPtr;
Douglas Gregor9c736102011-02-10 18:20:09 +00001838 return X.first->getName().compare(Y.first->getName());
1839}
1840
Argyrios Kyrtzidis9cc3ed42013-03-15 22:43:10 +00001841static bool shouldIgnoreMacro(MacroDirective *MD, bool IsModule,
1842 const Preprocessor &PP) {
Argyrios Kyrtzidisc56fff72013-03-26 17:17:01 +00001843 if (MacroInfo *MI = MD->getMacroInfo())
1844 if (MI->isBuiltinMacro())
1845 return true;
Argyrios Kyrtzidis9cc3ed42013-03-15 22:43:10 +00001846
1847 if (IsModule) {
1848 SourceLocation Loc = MD->getLocation();
1849 if (Loc.isInvalid())
1850 return true;
1851 if (PP.getSourceManager().getFileID(Loc) == PP.getPredefinesFileID())
1852 return true;
1853 }
1854
1855 return false;
1856}
1857
Chris Lattner0b1fb982009-04-10 17:15:23 +00001858/// \brief Writes the block containing the serialized form of the
1859/// preprocessor.
1860///
Douglas Gregor7143aab2011-09-01 17:04:32 +00001861void ASTWriter::WritePreprocessor(const Preprocessor &PP, bool IsModule) {
Argyrios Kyrtzidise24692b2011-09-15 18:02:56 +00001862 PreprocessingRecord *PPRec = PP.getPreprocessingRecord();
1863 if (PPRec)
1864 WritePreprocessorDetail(*PPRec);
1865
Chris Lattner7c5d24e2009-04-10 18:00:12 +00001866 RecordData Record;
Chris Lattnerf04ad692009-04-10 17:16:57 +00001867
Chris Lattnerc1f9d822009-04-13 01:29:17 +00001868 // If the preprocessor __COUNTER__ value has been bumped, remember it.
1869 if (PP.getCounterValue() != 0) {
1870 Record.push_back(PP.getCounterValue());
Sebastian Redl8538e8d2010-08-18 23:57:32 +00001871 Stream.EmitRecord(PP_COUNTER_VALUE, Record);
Chris Lattnerc1f9d822009-04-13 01:29:17 +00001872 Record.clear();
Douglas Gregor2eafc1b2009-04-26 00:07:37 +00001873 }
1874
1875 // Enter the preprocessor block.
Douglas Gregorecdcb882010-10-20 22:00:55 +00001876 Stream.EnterSubblock(PREPROCESSOR_BLOCK_ID, 3);
Mike Stump1eb44332009-09-09 15:08:12 +00001877
Sebastian Redl3397c552010-08-18 23:56:27 +00001878 // If the AST file contains __DATE__ or __TIME__ emit a warning about this.
Douglas Gregor2eafc1b2009-04-26 00:07:37 +00001879 // FIXME: use diagnostics subsystem for localization etc.
1880 if (PP.SawDateOrTime())
1881 fprintf(stderr, "warning: precompiled header used __DATE__ or __TIME__.\n");
Mike Stump1eb44332009-09-09 15:08:12 +00001882
Douglas Gregorecdcb882010-10-20 22:00:55 +00001883
Argyrios Kyrtzidis9317ab92013-03-22 21:12:57 +00001884 // Loop over all the macro directives that are live at the end of the file,
Chris Lattner7c5d24e2009-04-10 18:00:12 +00001885 // emitting each to the PP section.
Michael J. Spencer20249a12010-10-21 03:16:25 +00001886
Argyrios Kyrtzidis9317ab92013-03-22 21:12:57 +00001887 // Construct the list of macro directives that need to be serialized.
Argyrios Kyrtzidis9818a1d2013-02-20 00:54:57 +00001888 SmallVector<std::pair<const IdentifierInfo *, MacroDirective *>, 2>
Argyrios Kyrtzidis9317ab92013-03-22 21:12:57 +00001889 MacroDirectives;
1890 for (Preprocessor::macro_iterator
1891 I = PP.macro_begin(/*IncludeExternalMacros=*/false),
1892 E = PP.macro_end(/*IncludeExternalMacros=*/false);
Chris Lattner7c5d24e2009-04-10 18:00:12 +00001893 I != E; ++I) {
Argyrios Kyrtzidis9317ab92013-03-22 21:12:57 +00001894 MacroDirectives.push_back(std::make_pair(I->first, I->second));
Douglas Gregor9c736102011-02-10 18:20:09 +00001895 }
Alexander Kornienko4d7e0ce2012-09-25 17:18:14 +00001896
Douglas Gregor9c736102011-02-10 18:20:09 +00001897 // Sort the set of macro definitions that need to be serialized by the
1898 // name of the macro, to provide a stable ordering.
Argyrios Kyrtzidis9317ab92013-03-22 21:12:57 +00001899 llvm::array_pod_sort(MacroDirectives.begin(), MacroDirectives.end(),
1900 &compareMacroDirectives);
1901
1902 OnDiskChainedHashTableGenerator<ASTMacroTableTrait> Generator;
1903
1904 // Emit the macro directives as a list and associate the offset with the
1905 // identifier they belong to.
1906 for (unsigned I = 0, N = MacroDirectives.size(); I != N; ++I) {
1907 const IdentifierInfo *Name = MacroDirectives[I].first;
1908 uint64_t MacroDirectiveOffset = Stream.GetCurrentBitNo();
1909 MacroDirective *MD = MacroDirectives[I].second;
1910
1911 // If the macro or identifier need no updates, don't write the macro history
1912 // for this one.
Argyrios Kyrtzidisc56fff72013-03-26 17:17:01 +00001913 // FIXME: Chain the macro history instead of re-writing it.
1914 if (MD->isFromPCH() &&
Argyrios Kyrtzidis9317ab92013-03-22 21:12:57 +00001915 Name->isFromAST() && !Name->hasChangedSinceDeserialization())
1916 continue;
1917
1918 // Emit the macro directives in reverse source order.
1919 for (; MD; MD = MD->getPrevious()) {
Argyrios Kyrtzidisc56fff72013-03-26 17:17:01 +00001920 if (MD->isHidden())
1921 continue;
Argyrios Kyrtzidis9317ab92013-03-22 21:12:57 +00001922 if (shouldIgnoreMacro(MD, IsModule, PP))
1923 continue;
Argyrios Kyrtzidis9317ab92013-03-22 21:12:57 +00001924
Argyrios Kyrtzidis9317ab92013-03-22 21:12:57 +00001925 AddSourceLocation(MD->getLocation(), Record);
Argyrios Kyrtzidisc56fff72013-03-26 17:17:01 +00001926 Record.push_back(MD->getKind());
1927 if (DefMacroDirective *DefMD = dyn_cast<DefMacroDirective>(MD)) {
1928 MacroID InfoID = getMacroRef(DefMD->getInfo(), Name);
1929 Record.push_back(InfoID);
1930 Record.push_back(DefMD->isImported());
1931 Record.push_back(DefMD->isAmbiguous());
1932
1933 } else if (VisibilityMacroDirective *
1934 VisMD = dyn_cast<VisibilityMacroDirective>(MD)) {
1935 Record.push_back(VisMD->isPublic());
1936 }
Argyrios Kyrtzidis9317ab92013-03-22 21:12:57 +00001937 }
1938 if (Record.empty())
1939 continue;
1940
1941 Stream.EmitRecord(PP_MACRO_DIRECTIVE_HISTORY, Record);
1942 Record.clear();
1943
1944 IdentMacroDirectivesOffsetMap[Name] = MacroDirectiveOffset;
1945
1946 IdentID NameID = getIdentifierRef(Name);
1947 ASTMacroTableTrait::Data data;
1948 data.MacroDirectivesOffset = MacroDirectiveOffset;
1949 Generator.insert(NameID, data);
1950 }
Alexander Kornienko4d7e0ce2012-09-25 17:18:14 +00001951
Douglas Gregora8235d62012-10-09 23:05:51 +00001952 /// \brief Offsets of each of the macros into the bitstream, indexed by
1953 /// the local macro ID
1954 ///
1955 /// For each identifier that is associated with a macro, this map
1956 /// provides the offset into the bitstream where that macro is
1957 /// defined.
1958 std::vector<uint32_t> MacroOffsets;
1959
Argyrios Kyrtzidis9317ab92013-03-22 21:12:57 +00001960 for (unsigned I = 0, N = MacroInfosToEmit.size(); I != N; ++I) {
1961 const IdentifierInfo *Name = MacroInfosToEmit[I].Name;
1962 MacroInfo *MI = MacroInfosToEmit[I].MI;
1963 MacroID ID = MacroInfosToEmit[I].ID;
Douglas Gregoree9b0ba2010-10-01 01:03:07 +00001964
Argyrios Kyrtzidis9317ab92013-03-22 21:12:57 +00001965 if (ID < FirstMacroID) {
1966 assert(0 && "Loaded MacroInfo entered MacroInfosToEmit ?");
1967 continue;
Chris Lattnerdf961c22009-04-10 18:08:30 +00001968 }
Argyrios Kyrtzidis9317ab92013-03-22 21:12:57 +00001969
1970 // Record the local offset of this macro.
1971 unsigned Index = ID - FirstMacroID;
1972 if (Index == MacroOffsets.size())
1973 MacroOffsets.push_back(Stream.GetCurrentBitNo());
1974 else {
1975 if (Index > MacroOffsets.size())
1976 MacroOffsets.resize(Index + 1);
1977
1978 MacroOffsets[Index] = Stream.GetCurrentBitNo();
1979 }
1980
1981 AddIdentifierRef(Name, Record);
1982 Record.push_back(inferSubmoduleIDFromLocation(MI->getDefinitionLoc()));
1983 AddSourceLocation(MI->getDefinitionLoc(), Record);
1984 AddSourceLocation(MI->getDefinitionEndLoc(), Record);
1985 Record.push_back(MI->isUsed());
1986 unsigned Code;
1987 if (MI->isObjectLike()) {
1988 Code = PP_MACRO_OBJECT_LIKE;
1989 } else {
1990 Code = PP_MACRO_FUNCTION_LIKE;
1991
1992 Record.push_back(MI->isC99Varargs());
1993 Record.push_back(MI->isGNUVarargs());
1994 Record.push_back(MI->hasCommaPasting());
1995 Record.push_back(MI->getNumArgs());
1996 for (MacroInfo::arg_iterator I = MI->arg_begin(), E = MI->arg_end();
1997 I != E; ++I)
1998 AddIdentifierRef(*I, Record);
1999 }
2000
2001 // If we have a detailed preprocessing record, record the macro definition
2002 // ID that corresponds to this macro.
2003 if (PPRec)
2004 Record.push_back(MacroDefinitions[PPRec->findMacroDefinition(MI)]);
2005
2006 Stream.EmitRecord(Code, Record);
2007 Record.clear();
2008
2009 // Emit the tokens array.
2010 for (unsigned TokNo = 0, e = MI->getNumTokens(); TokNo != e; ++TokNo) {
2011 // Note that we know that the preprocessor does not have any annotation
2012 // tokens in it because they are created by the parser, and thus can't
2013 // be in a macro definition.
2014 const Token &Tok = MI->getReplacementToken(TokNo);
John McCallaeeacf72013-05-03 00:10:13 +00002015 AddToken(Tok, Record);
Argyrios Kyrtzidis9317ab92013-03-22 21:12:57 +00002016 Stream.EmitRecord(PP_TOKEN, Record);
2017 Record.clear();
2018 }
2019 ++NumMacros;
Chris Lattner7c5d24e2009-04-10 18:00:12 +00002020 }
Argyrios Kyrtzidis9317ab92013-03-22 21:12:57 +00002021
Douglas Gregor4800a5c2011-02-08 21:58:10 +00002022 Stream.ExitBlock();
Douglas Gregora8235d62012-10-09 23:05:51 +00002023
Argyrios Kyrtzidis9317ab92013-03-22 21:12:57 +00002024 // Create the on-disk hash table in a buffer.
2025 SmallString<4096> MacroTable;
2026 uint32_t BucketOffset;
2027 {
2028 llvm::raw_svector_ostream Out(MacroTable);
2029 // Make sure that no bucket is at offset 0
2030 clang::io::Emit32(Out, 0);
2031 BucketOffset = Generator.Emit(Out);
2032 }
2033
2034 // Write the macro table
2035 using namespace llvm;
2036 BitCodeAbbrev *Abbrev = new BitCodeAbbrev();
2037 Abbrev->Add(BitCodeAbbrevOp(MACRO_TABLE));
2038 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32));
2039 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob));
2040 unsigned MacroTableAbbrev = Stream.EmitAbbrev(Abbrev);
2041
2042 Record.push_back(MACRO_TABLE);
2043 Record.push_back(BucketOffset);
2044 Stream.EmitRecordWithBlob(MacroTableAbbrev, Record, MacroTable.str());
2045 Record.clear();
2046
Douglas Gregora8235d62012-10-09 23:05:51 +00002047 // Write the offsets table for macro IDs.
2048 using namespace llvm;
Argyrios Kyrtzidis9317ab92013-03-22 21:12:57 +00002049 Abbrev = new BitCodeAbbrev();
Douglas Gregora8235d62012-10-09 23:05:51 +00002050 Abbrev->Add(BitCodeAbbrevOp(MACRO_OFFSET));
2051 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // # of macros
2052 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // first ID
2053 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob));
2054
2055 unsigned MacroOffsetAbbrev = Stream.EmitAbbrev(Abbrev);
2056 Record.clear();
2057 Record.push_back(MACRO_OFFSET);
2058 Record.push_back(MacroOffsets.size());
2059 Record.push_back(FirstMacroID - NUM_PREDEF_MACRO_IDS);
2060 Stream.EmitRecordWithBlob(MacroOffsetAbbrev, Record,
2061 data(MacroOffsets));
Douglas Gregor4800a5c2011-02-08 21:58:10 +00002062}
2063
2064void ASTWriter::WritePreprocessorDetail(PreprocessingRecord &PPRec) {
Argyrios Kyrtzidisb6441ef2011-09-19 20:40:42 +00002065 if (PPRec.local_begin() == PPRec.local_end())
Douglas Gregor4800a5c2011-02-08 21:58:10 +00002066 return;
Argyrios Kyrtzidise24692b2011-09-15 18:02:56 +00002067
Argyrios Kyrtzidis2dbaca72011-09-19 20:40:25 +00002068 SmallVector<PPEntityOffset, 64> PreprocessedEntityOffsets;
Argyrios Kyrtzidise24692b2011-09-15 18:02:56 +00002069
Douglas Gregor4800a5c2011-02-08 21:58:10 +00002070 // Enter the preprocessor block.
2071 Stream.EnterSubblock(PREPROCESSOR_DETAIL_BLOCK_ID, 3);
Michael J. Spencer20249a12010-10-21 03:16:25 +00002072
Douglas Gregor6a5a23f2010-03-19 21:51:54 +00002073 // If the preprocessor has a preprocessing record, emit it.
2074 unsigned NumPreprocessingRecords = 0;
Douglas Gregor4800a5c2011-02-08 21:58:10 +00002075 using namespace llvm;
2076
2077 // Set up the abbreviation for
2078 unsigned InclusionAbbrev = 0;
2079 {
2080 BitCodeAbbrev *Abbrev = new BitCodeAbbrev();
2081 Abbrev->Add(BitCodeAbbrevOp(PPD_INCLUSION_DIRECTIVE));
Douglas Gregor4800a5c2011-02-08 21:58:10 +00002082 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // filename length
2083 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // in quotes
2084 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 2)); // kind
Argyrios Kyrtzidis8dd927c2012-10-02 16:10:46 +00002085 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // imported module
Douglas Gregor4800a5c2011-02-08 21:58:10 +00002086 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob));
2087 InclusionAbbrev = Stream.EmitAbbrev(Abbrev);
2088 }
2089
Douglas Gregor272b6bc2011-08-04 18:56:47 +00002090 unsigned FirstPreprocessorEntityID
2091 = (Chain ? PPRec.getNumLoadedPreprocessedEntities() : 0)
2092 + NUM_PREDEF_PP_ENTITY_IDS;
2093 unsigned NextPreprocessorEntityID = FirstPreprocessorEntityID;
Douglas Gregor4800a5c2011-02-08 21:58:10 +00002094 RecordData Record;
Argyrios Kyrtzidisb6441ef2011-09-19 20:40:42 +00002095 for (PreprocessingRecord::iterator E = PPRec.local_begin(),
2096 EEnd = PPRec.local_end();
Douglas Gregor7338a922011-08-04 17:06:18 +00002097 E != EEnd;
2098 (void)++E, ++NumPreprocessingRecords, ++NextPreprocessorEntityID) {
Douglas Gregor4800a5c2011-02-08 21:58:10 +00002099 Record.clear();
Michael J. Spencer20249a12010-10-21 03:16:25 +00002100
Argyrios Kyrtzidis2dbaca72011-09-19 20:40:25 +00002101 PreprocessedEntityOffsets.push_back(PPEntityOffset((*E)->getSourceRange(),
2102 Stream.GetCurrentBitNo()));
Argyrios Kyrtzidise24692b2011-09-15 18:02:56 +00002103
Douglas Gregor4800a5c2011-02-08 21:58:10 +00002104 if (MacroDefinition *MD = dyn_cast<MacroDefinition>(*E)) {
Argyrios Kyrtzidise24692b2011-09-15 18:02:56 +00002105 // Record this macro definition's ID.
2106 MacroDefinitions[MD] = NextPreprocessorEntityID;
Douglas Gregor4800a5c2011-02-08 21:58:10 +00002107
Douglas Gregor4800a5c2011-02-08 21:58:10 +00002108 AddIdentifierRef(MD->getName(), Record);
Douglas Gregor4800a5c2011-02-08 21:58:10 +00002109 Stream.EmitRecord(PPD_MACRO_DEFINITION, Record);
2110 continue;
Douglas Gregor6a5a23f2010-03-19 21:51:54 +00002111 }
Michael J. Spencer20249a12010-10-21 03:16:25 +00002112
Chandler Carruth9e5bb852011-07-14 08:20:46 +00002113 if (MacroExpansion *ME = dyn_cast<MacroExpansion>(*E)) {
Argyrios Kyrtzidis8f7c5402011-09-08 17:18:41 +00002114 Record.push_back(ME->isBuiltinMacro());
2115 if (ME->isBuiltinMacro())
2116 AddIdentifierRef(ME->getName(), Record);
2117 else
Argyrios Kyrtzidise24692b2011-09-15 18:02:56 +00002118 Record.push_back(MacroDefinitions[ME->getDefinition()]);
Chandler Carruthf70d12d2011-07-15 07:25:21 +00002119 Stream.EmitRecord(PPD_MACRO_EXPANSION, Record);
Douglas Gregor4800a5c2011-02-08 21:58:10 +00002120 continue;
2121 }
2122
2123 if (InclusionDirective *ID = dyn_cast<InclusionDirective>(*E)) {
2124 Record.push_back(PPD_INCLUSION_DIRECTIVE);
Douglas Gregor4800a5c2011-02-08 21:58:10 +00002125 Record.push_back(ID->getFileName().size());
2126 Record.push_back(ID->wasInQuotes());
2127 Record.push_back(static_cast<unsigned>(ID->getKind()));
Argyrios Kyrtzidis8dd927c2012-10-02 16:10:46 +00002128 Record.push_back(ID->importedModule());
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00002129 SmallString<64> Buffer;
Douglas Gregor4800a5c2011-02-08 21:58:10 +00002130 Buffer += ID->getFileName();
Argyrios Kyrtzidis29f98b42012-03-08 01:08:28 +00002131 // Check that the FileEntry is not null because it was not resolved and
2132 // we create a PCH even with compiler errors.
2133 if (ID->getFile())
2134 Buffer += ID->getFile()->getName();
Douglas Gregor4800a5c2011-02-08 21:58:10 +00002135 Stream.EmitRecordWithBlob(InclusionAbbrev, Record, Buffer);
2136 continue;
2137 }
2138
2139 llvm_unreachable("Unhandled PreprocessedEntity in ASTWriter");
2140 }
Douglas Gregorc9490c02009-04-16 22:23:12 +00002141 Stream.ExitBlock();
Michael J. Spencer20249a12010-10-21 03:16:25 +00002142
Douglas Gregor6a5a23f2010-03-19 21:51:54 +00002143 // Write the offsets table for the preprocessing record.
2144 if (NumPreprocessingRecords > 0) {
Argyrios Kyrtzidise24692b2011-09-15 18:02:56 +00002145 assert(PreprocessedEntityOffsets.size() == NumPreprocessingRecords);
2146
Douglas Gregor6a5a23f2010-03-19 21:51:54 +00002147 // Write the offsets table for identifier IDs.
2148 using namespace llvm;
2149 BitCodeAbbrev *Abbrev = new BitCodeAbbrev();
Argyrios Kyrtzidise24692b2011-09-15 18:02:56 +00002150 Abbrev->Add(BitCodeAbbrevOp(PPD_ENTITIES_OFFSETS));
Douglas Gregor272b6bc2011-08-04 18:56:47 +00002151 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // first pp entity
Douglas Gregor6a5a23f2010-03-19 21:51:54 +00002152 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob));
Argyrios Kyrtzidise24692b2011-09-15 18:02:56 +00002153 unsigned PPEOffsetAbbrev = Stream.EmitAbbrev(Abbrev);
Michael J. Spencer20249a12010-10-21 03:16:25 +00002154
Douglas Gregor6a5a23f2010-03-19 21:51:54 +00002155 Record.clear();
Argyrios Kyrtzidise24692b2011-09-15 18:02:56 +00002156 Record.push_back(PPD_ENTITIES_OFFSETS);
Douglas Gregor272b6bc2011-08-04 18:56:47 +00002157 Record.push_back(FirstPreprocessorEntityID - NUM_PREDEF_PP_ENTITY_IDS);
Argyrios Kyrtzidise24692b2011-09-15 18:02:56 +00002158 Stream.EmitRecordWithBlob(PPEOffsetAbbrev, Record,
2159 data(PreprocessedEntityOffsets));
Douglas Gregor6a5a23f2010-03-19 21:51:54 +00002160 }
Chris Lattner0b1fb982009-04-10 17:15:23 +00002161}
2162
Douglas Gregore209e502011-12-06 01:10:29 +00002163unsigned ASTWriter::getSubmoduleID(Module *Mod) {
2164 llvm::DenseMap<Module *, unsigned>::iterator Known = SubmoduleIDs.find(Mod);
2165 if (Known != SubmoduleIDs.end())
2166 return Known->second;
2167
2168 return SubmoduleIDs[Mod] = NextSubmoduleID++;
2169}
2170
Argyrios Kyrtzidis55ea75b2013-03-13 21:13:51 +00002171unsigned ASTWriter::getExistingSubmoduleID(Module *Mod) const {
2172 if (!Mod)
2173 return 0;
2174
2175 llvm::DenseMap<Module *, unsigned>::const_iterator
2176 Known = SubmoduleIDs.find(Mod);
2177 if (Known != SubmoduleIDs.end())
2178 return Known->second;
2179
2180 return 0;
2181}
2182
Douglas Gregor26ced122011-12-01 00:59:36 +00002183/// \brief Compute the number of modules within the given tree (including the
2184/// given module).
2185static unsigned getNumberOfModules(Module *Mod) {
2186 unsigned ChildModules = 0;
Douglas Gregorb7a78192012-01-04 23:32:19 +00002187 for (Module::submodule_iterator Sub = Mod->submodule_begin(),
2188 SubEnd = Mod->submodule_end();
Douglas Gregor26ced122011-12-01 00:59:36 +00002189 Sub != SubEnd; ++Sub)
Douglas Gregorb7a78192012-01-04 23:32:19 +00002190 ChildModules += getNumberOfModules(*Sub);
Douglas Gregor26ced122011-12-01 00:59:36 +00002191
2192 return ChildModules + 1;
2193}
2194
Douglas Gregor1a4761e2011-11-30 23:21:26 +00002195void ASTWriter::WriteSubmodules(Module *WritingModule) {
Douglas Gregor4bc8738d2011-12-05 16:35:23 +00002196 // Determine the dependencies of our module and each of it's submodules.
Douglas Gregor55988682011-12-05 16:33:54 +00002197 // FIXME: This feels like it belongs somewhere else, but there are no
2198 // other consumers of this information.
2199 SourceManager &SrcMgr = PP->getSourceManager();
2200 ModuleMap &ModMap = PP->getHeaderSearchInfo().getModuleMap();
2201 for (ASTContext::import_iterator I = Context->local_import_begin(),
2202 IEnd = Context->local_import_end();
2203 I != IEnd; ++I) {
Douglas Gregor55988682011-12-05 16:33:54 +00002204 if (Module *ImportedFrom
2205 = ModMap.inferModuleFromLocation(FullSourceLoc(I->getLocation(),
2206 SrcMgr))) {
2207 ImportedFrom->Imports.push_back(I->getImportedModule());
2208 }
2209 }
2210
Douglas Gregor392ed2b2011-11-30 17:33:56 +00002211 // Enter the submodule description block.
2212 Stream.EnterSubblock(SUBMODULE_BLOCK_ID, NUM_ALLOWED_ABBREVS_SIZE);
2213
2214 // Write the abbreviations needed for the submodules block.
2215 using namespace llvm;
2216 BitCodeAbbrev *Abbrev = new BitCodeAbbrev();
2217 Abbrev->Add(BitCodeAbbrevOp(SUBMODULE_DEFINITION));
Douglas Gregore209e502011-12-06 01:10:29 +00002218 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // ID
Douglas Gregor392ed2b2011-11-30 17:33:56 +00002219 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // Parent
2220 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // IsFramework
2221 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // IsExplicit
Douglas Gregora1f1fad2012-01-27 19:52:33 +00002222 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // IsSystem
2223 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // InferSubmodules...
Douglas Gregor1e123682011-12-05 22:27:44 +00002224 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // InferExplicit...
Douglas Gregor1e123682011-12-05 22:27:44 +00002225 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // InferExportWild...
Douglas Gregor63a72682013-03-20 00:22:05 +00002226 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // ConfigMacrosExh...
Douglas Gregor392ed2b2011-11-30 17:33:56 +00002227 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // Name
2228 unsigned DefinitionAbbrev = Stream.EmitAbbrev(Abbrev);
2229
2230 Abbrev = new BitCodeAbbrev();
Douglas Gregor77d029f2011-12-08 19:11:24 +00002231 Abbrev->Add(BitCodeAbbrevOp(SUBMODULE_UMBRELLA_HEADER));
Douglas Gregor392ed2b2011-11-30 17:33:56 +00002232 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // Name
2233 unsigned UmbrellaAbbrev = Stream.EmitAbbrev(Abbrev);
2234
2235 Abbrev = new BitCodeAbbrev();
2236 Abbrev->Add(BitCodeAbbrevOp(SUBMODULE_HEADER));
2237 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // Name
2238 unsigned HeaderAbbrev = Stream.EmitAbbrev(Abbrev);
Douglas Gregor77d029f2011-12-08 19:11:24 +00002239
2240 Abbrev = new BitCodeAbbrev();
Argyrios Kyrtzidisc7782d92012-10-05 00:22:33 +00002241 Abbrev->Add(BitCodeAbbrevOp(SUBMODULE_TOPHEADER));
2242 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // Name
2243 unsigned TopHeaderAbbrev = Stream.EmitAbbrev(Abbrev);
2244
2245 Abbrev = new BitCodeAbbrev();
Douglas Gregor77d029f2011-12-08 19:11:24 +00002246 Abbrev->Add(BitCodeAbbrevOp(SUBMODULE_UMBRELLA_DIR));
2247 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // Name
2248 unsigned UmbrellaDirAbbrev = Stream.EmitAbbrev(Abbrev);
2249
Douglas Gregor51f564f2011-12-31 04:05:44 +00002250 Abbrev = new BitCodeAbbrev();
2251 Abbrev->Add(BitCodeAbbrevOp(SUBMODULE_REQUIRES));
2252 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // Feature
2253 unsigned RequiresAbbrev = Stream.EmitAbbrev(Abbrev);
2254
Douglas Gregor2b49d1f2012-10-15 06:28:11 +00002255 Abbrev = new BitCodeAbbrev();
2256 Abbrev->Add(BitCodeAbbrevOp(SUBMODULE_EXCLUDED_HEADER));
2257 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // Name
2258 unsigned ExcludedHeaderAbbrev = Stream.EmitAbbrev(Abbrev);
2259
Douglas Gregorb6cbe512013-01-14 17:21:00 +00002260 Abbrev = new BitCodeAbbrev();
2261 Abbrev->Add(BitCodeAbbrevOp(SUBMODULE_LINK_LIBRARY));
2262 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // IsFramework
2263 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // Name
2264 unsigned LinkLibraryAbbrev = Stream.EmitAbbrev(Abbrev);
2265
Douglas Gregor63a72682013-03-20 00:22:05 +00002266 Abbrev = new BitCodeAbbrev();
2267 Abbrev->Add(BitCodeAbbrevOp(SUBMODULE_CONFIG_MACRO));
2268 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // Macro name
2269 unsigned ConfigMacroAbbrev = Stream.EmitAbbrev(Abbrev);
2270
Douglas Gregor906d66a2013-03-20 21:10:35 +00002271 Abbrev = new BitCodeAbbrev();
2272 Abbrev->Add(BitCodeAbbrevOp(SUBMODULE_CONFLICT));
2273 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // Other module
2274 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // Message
2275 unsigned ConflictAbbrev = Stream.EmitAbbrev(Abbrev);
2276
Douglas Gregor26ced122011-12-01 00:59:36 +00002277 // Write the submodule metadata block.
2278 RecordData Record;
2279 Record.push_back(getNumberOfModules(WritingModule));
2280 Record.push_back(FirstSubmoduleID - NUM_PREDEF_SUBMODULE_IDS);
2281 Stream.EmitRecord(SUBMODULE_METADATA, Record);
2282
Douglas Gregor392ed2b2011-11-30 17:33:56 +00002283 // Write all of the submodules.
Douglas Gregor1a4761e2011-11-30 23:21:26 +00002284 std::queue<Module *> Q;
Douglas Gregor392ed2b2011-11-30 17:33:56 +00002285 Q.push(WritingModule);
Douglas Gregor392ed2b2011-11-30 17:33:56 +00002286 while (!Q.empty()) {
Douglas Gregor1a4761e2011-11-30 23:21:26 +00002287 Module *Mod = Q.front();
Douglas Gregor392ed2b2011-11-30 17:33:56 +00002288 Q.pop();
Douglas Gregore209e502011-12-06 01:10:29 +00002289 unsigned ID = getSubmoduleID(Mod);
Douglas Gregor392ed2b2011-11-30 17:33:56 +00002290
2291 // Emit the definition of the block.
2292 Record.clear();
2293 Record.push_back(SUBMODULE_DEFINITION);
Douglas Gregore209e502011-12-06 01:10:29 +00002294 Record.push_back(ID);
Douglas Gregor392ed2b2011-11-30 17:33:56 +00002295 if (Mod->Parent) {
2296 assert(SubmoduleIDs[Mod->Parent] && "Submodule parent not written?");
2297 Record.push_back(SubmoduleIDs[Mod->Parent]);
2298 } else {
2299 Record.push_back(0);
2300 }
2301 Record.push_back(Mod->IsFramework);
2302 Record.push_back(Mod->IsExplicit);
Douglas Gregora1f1fad2012-01-27 19:52:33 +00002303 Record.push_back(Mod->IsSystem);
Douglas Gregor1e123682011-12-05 22:27:44 +00002304 Record.push_back(Mod->InferSubmodules);
2305 Record.push_back(Mod->InferExplicitSubmodules);
2306 Record.push_back(Mod->InferExportWildcard);
Douglas Gregor63a72682013-03-20 00:22:05 +00002307 Record.push_back(Mod->ConfigMacrosExhaustive);
Douglas Gregor392ed2b2011-11-30 17:33:56 +00002308 Stream.EmitRecordWithBlob(DefinitionAbbrev, Record, Mod->Name);
2309
Douglas Gregor51f564f2011-12-31 04:05:44 +00002310 // Emit the requirements.
2311 for (unsigned I = 0, N = Mod->Requires.size(); I != N; ++I) {
2312 Record.clear();
2313 Record.push_back(SUBMODULE_REQUIRES);
2314 Stream.EmitRecordWithBlob(RequiresAbbrev, Record,
2315 Mod->Requires[I].data(),
2316 Mod->Requires[I].size());
2317 }
2318
Douglas Gregor392ed2b2011-11-30 17:33:56 +00002319 // Emit the umbrella header, if there is one.
Douglas Gregor10694ce2011-12-08 17:39:04 +00002320 if (const FileEntry *UmbrellaHeader = Mod->getUmbrellaHeader()) {
Douglas Gregor392ed2b2011-11-30 17:33:56 +00002321 Record.clear();
Douglas Gregor77d029f2011-12-08 19:11:24 +00002322 Record.push_back(SUBMODULE_UMBRELLA_HEADER);
Douglas Gregor392ed2b2011-11-30 17:33:56 +00002323 Stream.EmitRecordWithBlob(UmbrellaAbbrev, Record,
Douglas Gregor10694ce2011-12-08 17:39:04 +00002324 UmbrellaHeader->getName());
Douglas Gregor77d029f2011-12-08 19:11:24 +00002325 } else if (const DirectoryEntry *UmbrellaDir = Mod->getUmbrellaDir()) {
2326 Record.clear();
2327 Record.push_back(SUBMODULE_UMBRELLA_DIR);
2328 Stream.EmitRecordWithBlob(UmbrellaDirAbbrev, Record,
2329 UmbrellaDir->getName());
Douglas Gregor392ed2b2011-11-30 17:33:56 +00002330 }
2331
2332 // Emit the headers.
2333 for (unsigned I = 0, N = Mod->Headers.size(); I != N; ++I) {
2334 Record.clear();
2335 Record.push_back(SUBMODULE_HEADER);
2336 Stream.EmitRecordWithBlob(HeaderAbbrev, Record,
2337 Mod->Headers[I]->getName());
2338 }
Douglas Gregor2b49d1f2012-10-15 06:28:11 +00002339 // Emit the excluded headers.
2340 for (unsigned I = 0, N = Mod->ExcludedHeaders.size(); I != N; ++I) {
2341 Record.clear();
2342 Record.push_back(SUBMODULE_EXCLUDED_HEADER);
2343 Stream.EmitRecordWithBlob(ExcludedHeaderAbbrev, Record,
2344 Mod->ExcludedHeaders[I]->getName());
2345 }
Argyrios Kyrtzidisc1d22392013-03-13 21:13:43 +00002346 ArrayRef<const FileEntry *>
2347 TopHeaders = Mod->getTopHeaders(PP->getFileManager());
2348 for (unsigned I = 0, N = TopHeaders.size(); I != N; ++I) {
Argyrios Kyrtzidisc7782d92012-10-05 00:22:33 +00002349 Record.clear();
2350 Record.push_back(SUBMODULE_TOPHEADER);
2351 Stream.EmitRecordWithBlob(TopHeaderAbbrev, Record,
Argyrios Kyrtzidisc1d22392013-03-13 21:13:43 +00002352 TopHeaders[I]->getName());
Argyrios Kyrtzidisc7782d92012-10-05 00:22:33 +00002353 }
Douglas Gregor55988682011-12-05 16:33:54 +00002354
2355 // Emit the imports.
2356 if (!Mod->Imports.empty()) {
2357 Record.clear();
2358 for (unsigned I = 0, N = Mod->Imports.size(); I != N; ++I) {
Douglas Gregorbab9f4a2011-12-12 23:17:57 +00002359 unsigned ImportedID = getSubmoduleID(Mod->Imports[I]);
Douglas Gregor55988682011-12-05 16:33:54 +00002360 assert(ImportedID && "Unknown submodule!");
2361 Record.push_back(ImportedID);
2362 }
2363 Stream.EmitRecord(SUBMODULE_IMPORTS, Record);
2364 }
2365
Douglas Gregoraf13bfc2011-12-02 18:58:38 +00002366 // Emit the exports.
2367 if (!Mod->Exports.empty()) {
2368 Record.clear();
2369 for (unsigned I = 0, N = Mod->Exports.size(); I != N; ++I) {
Douglas Gregorbab9f4a2011-12-12 23:17:57 +00002370 if (Module *Exported = Mod->Exports[I].getPointer()) {
2371 unsigned ExportedID = SubmoduleIDs[Exported];
2372 assert(ExportedID > 0 && "Unknown submodule ID?");
2373 Record.push_back(ExportedID);
2374 } else {
2375 Record.push_back(0);
2376 }
2377
Douglas Gregoraf13bfc2011-12-02 18:58:38 +00002378 Record.push_back(Mod->Exports[I].getInt());
2379 }
2380 Stream.EmitRecord(SUBMODULE_EXPORTS, Record);
2381 }
Douglas Gregorb6cbe512013-01-14 17:21:00 +00002382
2383 // Emit the link libraries.
2384 for (unsigned I = 0, N = Mod->LinkLibraries.size(); I != N; ++I) {
2385 Record.clear();
2386 Record.push_back(SUBMODULE_LINK_LIBRARY);
2387 Record.push_back(Mod->LinkLibraries[I].IsFramework);
2388 Stream.EmitRecordWithBlob(LinkLibraryAbbrev, Record,
2389 Mod->LinkLibraries[I].Library);
2390 }
2391
Douglas Gregor906d66a2013-03-20 21:10:35 +00002392 // Emit the conflicts.
2393 for (unsigned I = 0, N = Mod->Conflicts.size(); I != N; ++I) {
2394 Record.clear();
2395 Record.push_back(SUBMODULE_CONFLICT);
2396 unsigned OtherID = getSubmoduleID(Mod->Conflicts[I].Other);
2397 assert(OtherID && "Unknown submodule!");
2398 Record.push_back(OtherID);
2399 Stream.EmitRecordWithBlob(ConflictAbbrev, Record,
2400 Mod->Conflicts[I].Message);
2401 }
2402
Douglas Gregor63a72682013-03-20 00:22:05 +00002403 // Emit the configuration macros.
2404 for (unsigned I = 0, N = Mod->ConfigMacros.size(); I != N; ++I) {
2405 Record.clear();
2406 Record.push_back(SUBMODULE_CONFIG_MACRO);
2407 Stream.EmitRecordWithBlob(ConfigMacroAbbrev, Record,
2408 Mod->ConfigMacros[I]);
2409 }
2410
Douglas Gregor392ed2b2011-11-30 17:33:56 +00002411 // Queue up the submodules of this module.
Douglas Gregorb7a78192012-01-04 23:32:19 +00002412 for (Module::submodule_iterator Sub = Mod->submodule_begin(),
2413 SubEnd = Mod->submodule_end();
Douglas Gregor392ed2b2011-11-30 17:33:56 +00002414 Sub != SubEnd; ++Sub)
Douglas Gregorb7a78192012-01-04 23:32:19 +00002415 Q.push(*Sub);
Douglas Gregor392ed2b2011-11-30 17:33:56 +00002416 }
2417
2418 Stream.ExitBlock();
Douglas Gregore209e502011-12-06 01:10:29 +00002419
2420 assert((NextSubmoduleID - FirstSubmoduleID
2421 == getNumberOfModules(WritingModule)) && "Wrong # of submodules");
Douglas Gregor392ed2b2011-11-30 17:33:56 +00002422}
2423
Douglas Gregor185dbd72011-12-01 02:07:58 +00002424serialization::SubmoduleID
2425ASTWriter::inferSubmoduleIDFromLocation(SourceLocation Loc) {
Douglas Gregore209e502011-12-06 01:10:29 +00002426 if (Loc.isInvalid() || !WritingModule)
Douglas Gregor185dbd72011-12-01 02:07:58 +00002427 return 0; // No submodule
Douglas Gregor55988682011-12-05 16:33:54 +00002428
2429 // Find the module that owns this location.
Douglas Gregor185dbd72011-12-01 02:07:58 +00002430 ModuleMap &ModMap = PP->getHeaderSearchInfo().getModuleMap();
Douglas Gregor55988682011-12-05 16:33:54 +00002431 Module *OwningMod
2432 = ModMap.inferModuleFromLocation(FullSourceLoc(Loc,PP->getSourceManager()));
Douglas Gregor185dbd72011-12-01 02:07:58 +00002433 if (!OwningMod)
2434 return 0;
2435
Douglas Gregore209e502011-12-06 01:10:29 +00002436 // Check whether this submodule is part of our own module.
2437 if (WritingModule != OwningMod && !OwningMod->isSubModuleOf(WritingModule))
Douglas Gregor185dbd72011-12-01 02:07:58 +00002438 return 0;
2439
Douglas Gregore209e502011-12-06 01:10:29 +00002440 return getSubmoduleID(OwningMod);
Douglas Gregor185dbd72011-12-01 02:07:58 +00002441}
2442
Argyrios Kyrtzidisea744ab2013-03-27 17:17:23 +00002443void ASTWriter::WritePragmaDiagnosticMappings(const DiagnosticsEngine &Diag,
2444 bool isModule) {
2445 // Make sure set diagnostic pragmas don't affect the translation unit that
2446 // imports the module.
2447 // FIXME: Make diagnostic pragma sections work properly with modules.
2448 if (isModule)
2449 return;
2450
Argyrios Kyrtzidis33e15762012-10-30 00:27:21 +00002451 llvm::SmallDenseMap<const DiagnosticsEngine::DiagState *, unsigned, 64>
2452 DiagStateIDMap;
2453 unsigned CurrID = 0;
2454 DiagStateIDMap[&Diag.DiagStates.front()] = ++CurrID; // the command-line one.
Argyrios Kyrtzidisf41d3be2010-11-05 22:10:18 +00002455 RecordData Record;
David Blaikied6471f72011-09-25 23:23:43 +00002456 for (DiagnosticsEngine::DiagStatePointsTy::const_iterator
Argyrios Kyrtzidis3efd52c2011-01-14 20:54:07 +00002457 I = Diag.DiagStatePoints.begin(), E = Diag.DiagStatePoints.end();
2458 I != E; ++I) {
Argyrios Kyrtzidis33e15762012-10-30 00:27:21 +00002459 const DiagnosticsEngine::DiagStatePoint &point = *I;
Argyrios Kyrtzidis3efd52c2011-01-14 20:54:07 +00002460 if (point.Loc.isInvalid())
2461 continue;
2462
2463 Record.push_back(point.Loc.getRawEncoding());
Argyrios Kyrtzidis33e15762012-10-30 00:27:21 +00002464 unsigned &DiagStateID = DiagStateIDMap[point.State];
2465 Record.push_back(DiagStateID);
2466
2467 if (DiagStateID == 0) {
2468 DiagStateID = ++CurrID;
2469 for (DiagnosticsEngine::DiagState::const_iterator
2470 I = point.State->begin(), E = point.State->end(); I != E; ++I) {
2471 if (I->second.isPragma()) {
2472 Record.push_back(I->first);
2473 Record.push_back(I->second.getMapping());
2474 }
Argyrios Kyrtzidis3efd52c2011-01-14 20:54:07 +00002475 }
Argyrios Kyrtzidis33e15762012-10-30 00:27:21 +00002476 Record.push_back(-1); // mark the end of the diag/map pairs for this
2477 // location.
Argyrios Kyrtzidisf41d3be2010-11-05 22:10:18 +00002478 }
2479 }
2480
Argyrios Kyrtzidis60f76842010-11-05 22:20:49 +00002481 if (!Record.empty())
Argyrios Kyrtzidis3efd52c2011-01-14 20:54:07 +00002482 Stream.EmitRecord(DIAG_PRAGMA_MAPPINGS, Record);
Argyrios Kyrtzidisf41d3be2010-11-05 22:10:18 +00002483}
2484
Anders Carlssonc8505782011-03-06 18:41:18 +00002485void ASTWriter::WriteCXXBaseSpecifiersOffsets() {
2486 if (CXXBaseSpecifiersOffsets.empty())
2487 return;
2488
2489 RecordData Record;
2490
2491 // Create a blob abbreviation for the C++ base specifiers offsets.
2492 using namespace llvm;
2493
2494 BitCodeAbbrev *Abbrev = new BitCodeAbbrev();
2495 Abbrev->Add(BitCodeAbbrevOp(CXX_BASE_SPECIFIER_OFFSETS));
2496 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // size
2497 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob));
2498 unsigned BaseSpecifierOffsetAbbrev = Stream.EmitAbbrev(Abbrev);
2499
Douglas Gregore92b8a12011-08-04 00:01:48 +00002500 // Write the base specifier offsets table.
Anders Carlssonc8505782011-03-06 18:41:18 +00002501 Record.clear();
2502 Record.push_back(CXX_BASE_SPECIFIER_OFFSETS);
2503 Record.push_back(CXXBaseSpecifiersOffsets.size());
2504 Stream.EmitRecordWithBlob(BaseSpecifierOffsetAbbrev, Record,
Benjamin Kramer6e089c62011-04-24 17:44:50 +00002505 data(CXXBaseSpecifiersOffsets));
Anders Carlssonc8505782011-03-06 18:41:18 +00002506}
2507
Douglas Gregor4fed3f42009-04-27 18:38:38 +00002508//===----------------------------------------------------------------------===//
2509// Type Serialization
2510//===----------------------------------------------------------------------===//
Chris Lattner0b1fb982009-04-10 17:15:23 +00002511
Sebastian Redl3397c552010-08-18 23:56:27 +00002512/// \brief Write the representation of a type to the AST stream.
Sebastian Redla4232eb2010-08-18 23:56:21 +00002513void ASTWriter::WriteType(QualType T) {
Argyrios Kyrtzidis01b81c42010-08-20 16:04:04 +00002514 TypeIdx &Idx = TypeIdxs[T];
Argyrios Kyrtzidisc8e5d512010-08-20 16:03:59 +00002515 if (Idx.getIndex() == 0) // we haven't seen this type before.
2516 Idx = TypeIdx(NextTypeID++);
Mike Stump1eb44332009-09-09 15:08:12 +00002517
Douglas Gregor97475832010-10-05 18:37:06 +00002518 assert(Idx.getIndex() >= FirstTypeID && "Re-writing a type from a prior AST");
Douglas Gregor55f48de2010-10-04 18:21:45 +00002519
Douglas Gregor2cf26342009-04-09 22:27:44 +00002520 // Record the offset for this type.
Argyrios Kyrtzidisc8e5d512010-08-20 16:03:59 +00002521 unsigned Index = Idx.getIndex() - FirstTypeID;
Sebastian Redl681d7232010-07-27 00:17:23 +00002522 if (TypeOffsets.size() == Index)
Douglas Gregorc9490c02009-04-16 22:23:12 +00002523 TypeOffsets.push_back(Stream.GetCurrentBitNo());
Sebastian Redl681d7232010-07-27 00:17:23 +00002524 else if (TypeOffsets.size() < Index) {
2525 TypeOffsets.resize(Index + 1);
2526 TypeOffsets[Index] = Stream.GetCurrentBitNo();
Douglas Gregor2cf26342009-04-09 22:27:44 +00002527 }
2528
2529 RecordData Record;
Mike Stump1eb44332009-09-09 15:08:12 +00002530
Douglas Gregor2cf26342009-04-09 22:27:44 +00002531 // Emit the type's representation.
Sebastian Redl3397c552010-08-18 23:56:27 +00002532 ASTTypeWriter W(*this, Record);
John McCall0953e762009-09-24 19:53:00 +00002533
Douglas Gregora4923eb2009-11-16 21:35:15 +00002534 if (T.hasLocalNonFastQualifiers()) {
2535 Qualifiers Qs = T.getLocalQualifiers();
2536 AddTypeRef(T.getLocalUnqualifiedType(), Record);
John McCall0953e762009-09-24 19:53:00 +00002537 Record.push_back(Qs.getAsOpaqueValue());
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002538 W.Code = TYPE_EXT_QUAL;
John McCall0953e762009-09-24 19:53:00 +00002539 } else {
2540 switch (T->getTypeClass()) {
2541 // For all of the concrete, non-dependent types, call the
2542 // appropriate visitor function.
Douglas Gregor2cf26342009-04-09 22:27:44 +00002543#define TYPE(Class, Base) \
Mike Stumpb7166332010-01-20 02:03:14 +00002544 case Type::Class: W.Visit##Class##Type(cast<Class##Type>(T)); break;
Douglas Gregor2cf26342009-04-09 22:27:44 +00002545#define ABSTRACT_TYPE(Class, Base)
Douglas Gregor2cf26342009-04-09 22:27:44 +00002546#include "clang/AST/TypeNodes.def"
John McCall0953e762009-09-24 19:53:00 +00002547 }
Douglas Gregor2cf26342009-04-09 22:27:44 +00002548 }
2549
2550 // Emit the serialized record.
Douglas Gregorc9490c02009-04-16 22:23:12 +00002551 Stream.EmitRecord(W.Code, Record);
Douglas Gregor0b748912009-04-14 21:18:50 +00002552
2553 // Flush any expressions that were written as part of this type.
Douglas Gregorc9490c02009-04-16 22:23:12 +00002554 FlushStmts();
Douglas Gregor2cf26342009-04-09 22:27:44 +00002555}
2556
Douglas Gregor4fed3f42009-04-27 18:38:38 +00002557//===----------------------------------------------------------------------===//
2558// Declaration Serialization
2559//===----------------------------------------------------------------------===//
2560
Douglas Gregor2cf26342009-04-09 22:27:44 +00002561/// \brief Write the block containing all of the declaration IDs
2562/// lexically declared within the given DeclContext.
2563///
2564/// \returns the offset of the DECL_CONTEXT_LEXICAL block within the
2565/// bistream, or 0 if no block was written.
Sebastian Redla4232eb2010-08-18 23:56:21 +00002566uint64_t ASTWriter::WriteDeclContextLexicalBlock(ASTContext &Context,
Douglas Gregor2cf26342009-04-09 22:27:44 +00002567 DeclContext *DC) {
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002568 if (DC->decls_empty())
Douglas Gregor2cf26342009-04-09 22:27:44 +00002569 return 0;
2570
Douglas Gregorc9490c02009-04-16 22:23:12 +00002571 uint64_t Offset = Stream.GetCurrentBitNo();
Douglas Gregor2cf26342009-04-09 22:27:44 +00002572 RecordData Record;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002573 Record.push_back(DECL_CONTEXT_LEXICAL);
Chris Lattner5f9e2722011-07-23 10:55:15 +00002574 SmallVector<KindDeclIDPair, 64> Decls;
Argyrios Kyrtzidis17945a02009-06-30 02:36:12 +00002575 for (DeclContext::decl_iterator D = DC->decls_begin(), DEnd = DC->decls_end();
2576 D != DEnd; ++D)
Argyrios Kyrtzidiseb5e9982010-10-14 20:14:34 +00002577 Decls.push_back(std::make_pair((*D)->getKind(), GetDeclRef(*D)));
Douglas Gregor2cf26342009-04-09 22:27:44 +00002578
Douglas Gregor25123082009-04-22 22:34:57 +00002579 ++NumLexicalDeclContexts;
Benjamin Kramer6e089c62011-04-24 17:44:50 +00002580 Stream.EmitRecordWithBlob(DeclContextLexicalAbbrev, Record, data(Decls));
Douglas Gregor2cf26342009-04-09 22:27:44 +00002581 return Offset;
2582}
2583
Sebastian Redla4232eb2010-08-18 23:56:21 +00002584void ASTWriter::WriteTypeDeclOffsets() {
Sebastian Redl1476ed42010-07-16 16:36:56 +00002585 using namespace llvm;
2586 RecordData Record;
2587
2588 // Write the type offsets array
2589 BitCodeAbbrev *Abbrev = new BitCodeAbbrev();
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002590 Abbrev->Add(BitCodeAbbrevOp(TYPE_OFFSET));
Sebastian Redl1476ed42010-07-16 16:36:56 +00002591 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // # of types
Douglas Gregora119da02011-08-02 16:26:37 +00002592 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // base type index
Sebastian Redl1476ed42010-07-16 16:36:56 +00002593 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // types block
2594 unsigned TypeOffsetAbbrev = Stream.EmitAbbrev(Abbrev);
2595 Record.clear();
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002596 Record.push_back(TYPE_OFFSET);
Sebastian Redl1476ed42010-07-16 16:36:56 +00002597 Record.push_back(TypeOffsets.size());
Douglas Gregora119da02011-08-02 16:26:37 +00002598 Record.push_back(FirstTypeID - NUM_PREDEF_TYPE_IDS);
Benjamin Kramer6e089c62011-04-24 17:44:50 +00002599 Stream.EmitRecordWithBlob(TypeOffsetAbbrev, Record, data(TypeOffsets));
Sebastian Redl1476ed42010-07-16 16:36:56 +00002600
2601 // Write the declaration offsets array
2602 Abbrev = new BitCodeAbbrev();
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002603 Abbrev->Add(BitCodeAbbrevOp(DECL_OFFSET));
Sebastian Redl1476ed42010-07-16 16:36:56 +00002604 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // # of declarations
Douglas Gregor496c7092011-08-03 15:48:04 +00002605 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // base decl ID
Sebastian Redl1476ed42010-07-16 16:36:56 +00002606 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // declarations block
2607 unsigned DeclOffsetAbbrev = Stream.EmitAbbrev(Abbrev);
2608 Record.clear();
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002609 Record.push_back(DECL_OFFSET);
Sebastian Redl1476ed42010-07-16 16:36:56 +00002610 Record.push_back(DeclOffsets.size());
Douglas Gregor0a14e4b2011-08-03 16:05:40 +00002611 Record.push_back(FirstDeclID - NUM_PREDEF_DECL_IDS);
Benjamin Kramer6e089c62011-04-24 17:44:50 +00002612 Stream.EmitRecordWithBlob(DeclOffsetAbbrev, Record, data(DeclOffsets));
Sebastian Redl1476ed42010-07-16 16:36:56 +00002613}
2614
Argyrios Kyrtzidis10f3df52011-10-28 22:54:21 +00002615void ASTWriter::WriteFileDeclIDsMap() {
2616 using namespace llvm;
2617 RecordData Record;
2618
2619 // Join the vectors of DeclIDs from all files.
2620 SmallVector<DeclID, 256> FileSortedIDs;
2621 for (FileDeclIDsTy::iterator
2622 FI = FileDeclIDs.begin(), FE = FileDeclIDs.end(); FI != FE; ++FI) {
2623 DeclIDInFileInfo &Info = *FI->second;
2624 Info.FirstDeclIndex = FileSortedIDs.size();
2625 for (LocDeclIDsTy::iterator
2626 DI = Info.DeclIDs.begin(), DE = Info.DeclIDs.end(); DI != DE; ++DI)
2627 FileSortedIDs.push_back(DI->second);
2628 }
2629
2630 BitCodeAbbrev *Abbrev = new BitCodeAbbrev();
2631 Abbrev->Add(BitCodeAbbrevOp(FILE_SORTED_DECLS));
Argyrios Kyrtzidis2093e0b2012-10-02 21:09:13 +00002632 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32));
Argyrios Kyrtzidis10f3df52011-10-28 22:54:21 +00002633 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob));
2634 unsigned AbbrevCode = Stream.EmitAbbrev(Abbrev);
2635 Record.push_back(FILE_SORTED_DECLS);
Argyrios Kyrtzidis2093e0b2012-10-02 21:09:13 +00002636 Record.push_back(FileSortedIDs.size());
Argyrios Kyrtzidis10f3df52011-10-28 22:54:21 +00002637 Stream.EmitRecordWithBlob(AbbrevCode, Record, data(FileSortedIDs));
2638}
2639
Dmitri Gribenkoaa0cd852012-06-20 00:34:58 +00002640void ASTWriter::WriteComments() {
2641 Stream.EnterSubblock(COMMENTS_BLOCK_ID, 3);
Dmitri Gribenko811c8202012-07-06 18:19:34 +00002642 ArrayRef<RawComment *> RawComments = Context->Comments.getComments();
Dmitri Gribenkoaa0cd852012-06-20 00:34:58 +00002643 RecordData Record;
Dmitri Gribenko811c8202012-07-06 18:19:34 +00002644 for (ArrayRef<RawComment *>::iterator I = RawComments.begin(),
2645 E = RawComments.end();
Dmitri Gribenkoaa0cd852012-06-20 00:34:58 +00002646 I != E; ++I) {
2647 Record.clear();
Dmitri Gribenko811c8202012-07-06 18:19:34 +00002648 AddSourceRange((*I)->getSourceRange(), Record);
2649 Record.push_back((*I)->getKind());
2650 Record.push_back((*I)->isTrailingComment());
2651 Record.push_back((*I)->isAlmostTrailingComment());
Dmitri Gribenkoaa0cd852012-06-20 00:34:58 +00002652 Stream.EmitRecord(COMMENTS_RAW_COMMENT, Record);
2653 }
2654 Stream.ExitBlock();
2655}
2656
Douglas Gregor4fed3f42009-04-27 18:38:38 +00002657//===----------------------------------------------------------------------===//
2658// Global Method Pool and Selector Serialization
2659//===----------------------------------------------------------------------===//
2660
Douglas Gregor3251ceb2009-04-20 20:36:09 +00002661namespace {
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00002662// Trait used for the on-disk hash table used in the method pool.
Sebastian Redl3397c552010-08-18 23:56:27 +00002663class ASTMethodPoolTrait {
Sebastian Redla4232eb2010-08-18 23:56:21 +00002664 ASTWriter &Writer;
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00002665
2666public:
2667 typedef Selector key_type;
2668 typedef key_type key_type_ref;
Mike Stump1eb44332009-09-09 15:08:12 +00002669
Sebastian Redl5d050072010-08-04 17:20:04 +00002670 struct data_type {
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002671 SelectorID ID;
Sebastian Redl5d050072010-08-04 17:20:04 +00002672 ObjCMethodList Instance, Factory;
2673 };
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00002674 typedef const data_type& data_type_ref;
2675
Sebastian Redl3397c552010-08-18 23:56:27 +00002676 explicit ASTMethodPoolTrait(ASTWriter &Writer) : Writer(Writer) { }
Mike Stump1eb44332009-09-09 15:08:12 +00002677
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00002678 static unsigned ComputeHash(Selector Sel) {
Argyrios Kyrtzidis0eca89e2010-08-20 16:03:52 +00002679 return serialization::ComputeHash(Sel);
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00002680 }
Mike Stump1eb44332009-09-09 15:08:12 +00002681
2682 std::pair<unsigned,unsigned>
Chris Lattner5f9e2722011-07-23 10:55:15 +00002683 EmitKeyDataLength(raw_ostream& Out, Selector Sel,
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00002684 data_type_ref Methods) {
2685 unsigned KeyLen = 2 + (Sel.getNumArgs()? Sel.getNumArgs() * 4 : 4);
2686 clang::io::Emit16(Out, KeyLen);
Sebastian Redl5d050072010-08-04 17:20:04 +00002687 unsigned DataLen = 4 + 2 + 2; // 2 bytes for each of the method counts
2688 for (const ObjCMethodList *Method = &Methods.Instance; Method;
Argyrios Kyrtzidis2e3d8c02013-04-17 00:08:58 +00002689 Method = Method->getNext())
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00002690 if (Method->Method)
2691 DataLen += 4;
Sebastian Redl5d050072010-08-04 17:20:04 +00002692 for (const ObjCMethodList *Method = &Methods.Factory; Method;
Argyrios Kyrtzidis2e3d8c02013-04-17 00:08:58 +00002693 Method = Method->getNext())
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00002694 if (Method->Method)
2695 DataLen += 4;
2696 clang::io::Emit16(Out, DataLen);
2697 return std::make_pair(KeyLen, DataLen);
2698 }
Mike Stump1eb44332009-09-09 15:08:12 +00002699
Chris Lattner5f9e2722011-07-23 10:55:15 +00002700 void EmitKey(raw_ostream& Out, Selector Sel, unsigned) {
Mike Stump1eb44332009-09-09 15:08:12 +00002701 uint64_t Start = Out.tell();
Douglas Gregor83941df2009-04-25 17:48:32 +00002702 assert((Start >> 32) == 0 && "Selector key offset too large");
2703 Writer.SetSelectorOffset(Sel, Start);
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00002704 unsigned N = Sel.getNumArgs();
2705 clang::io::Emit16(Out, N);
2706 if (N == 0)
2707 N = 1;
2708 for (unsigned I = 0; I != N; ++I)
Mike Stump1eb44332009-09-09 15:08:12 +00002709 clang::io::Emit32(Out,
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00002710 Writer.getIdentifierRef(Sel.getIdentifierInfoForSlot(I)));
2711 }
Mike Stump1eb44332009-09-09 15:08:12 +00002712
Chris Lattner5f9e2722011-07-23 10:55:15 +00002713 void EmitData(raw_ostream& Out, key_type_ref,
Douglas Gregora67e58c2009-04-24 21:49:02 +00002714 data_type_ref Methods, unsigned DataLen) {
2715 uint64_t Start = Out.tell(); (void)Start;
Sebastian Redl5d050072010-08-04 17:20:04 +00002716 clang::io::Emit32(Out, Methods.ID);
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00002717 unsigned NumInstanceMethods = 0;
Sebastian Redl5d050072010-08-04 17:20:04 +00002718 for (const ObjCMethodList *Method = &Methods.Instance; Method;
Argyrios Kyrtzidis2e3d8c02013-04-17 00:08:58 +00002719 Method = Method->getNext())
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00002720 if (Method->Method)
2721 ++NumInstanceMethods;
2722
2723 unsigned NumFactoryMethods = 0;
Sebastian Redl5d050072010-08-04 17:20:04 +00002724 for (const ObjCMethodList *Method = &Methods.Factory; Method;
Argyrios Kyrtzidis2e3d8c02013-04-17 00:08:58 +00002725 Method = Method->getNext())
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00002726 if (Method->Method)
2727 ++NumFactoryMethods;
2728
Argyrios Kyrtzidis2e3d8c02013-04-17 00:08:58 +00002729 unsigned InstanceBits = Methods.Instance.getBits();
2730 assert(InstanceBits < 4);
2731 unsigned NumInstanceMethodsAndBits =
2732 (NumInstanceMethods << 2) | InstanceBits;
2733 unsigned FactoryBits = Methods.Factory.getBits();
2734 assert(FactoryBits < 4);
2735 unsigned NumFactoryMethodsAndBits = (NumFactoryMethods << 2) | FactoryBits;
2736 clang::io::Emit16(Out, NumInstanceMethodsAndBits);
2737 clang::io::Emit16(Out, NumFactoryMethodsAndBits);
Sebastian Redl5d050072010-08-04 17:20:04 +00002738 for (const ObjCMethodList *Method = &Methods.Instance; Method;
Argyrios Kyrtzidis2e3d8c02013-04-17 00:08:58 +00002739 Method = Method->getNext())
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00002740 if (Method->Method)
2741 clang::io::Emit32(Out, Writer.getDeclID(Method->Method));
Sebastian Redl5d050072010-08-04 17:20:04 +00002742 for (const ObjCMethodList *Method = &Methods.Factory; Method;
Argyrios Kyrtzidis2e3d8c02013-04-17 00:08:58 +00002743 Method = Method->getNext())
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00002744 if (Method->Method)
2745 clang::io::Emit32(Out, Writer.getDeclID(Method->Method));
Douglas Gregora67e58c2009-04-24 21:49:02 +00002746
2747 assert(Out.tell() - Start == DataLen && "Data length is wrong");
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00002748 }
2749};
2750} // end anonymous namespace
2751
Sebastian Redl059612d2010-08-03 21:58:15 +00002752/// \brief Write ObjC data: selectors and the method pool.
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00002753///
2754/// The method pool contains both instance and factory methods, stored
Sebastian Redl059612d2010-08-03 21:58:15 +00002755/// in an on-disk hash table indexed by the selector. The hash table also
2756/// contains an empty entry for every other selector known to Sema.
Sebastian Redla4232eb2010-08-18 23:56:21 +00002757void ASTWriter::WriteSelectors(Sema &SemaRef) {
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00002758 using namespace llvm;
2759
Sebastian Redl059612d2010-08-03 21:58:15 +00002760 // Do we have to do anything at all?
Sebastian Redl5d050072010-08-04 17:20:04 +00002761 if (SemaRef.MethodPool.empty() && SelectorIDs.empty())
Sebastian Redl059612d2010-08-03 21:58:15 +00002762 return;
Sebastian Redle58aa892010-08-04 18:21:41 +00002763 unsigned NumTableEntries = 0;
Sebastian Redl059612d2010-08-03 21:58:15 +00002764 // Create and write out the blob that contains selectors and the method pool.
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00002765 {
Sebastian Redl3397c552010-08-18 23:56:27 +00002766 OnDiskChainedHashTableGenerator<ASTMethodPoolTrait> Generator;
Argyrios Kyrtzidis5d267682010-08-20 16:04:27 +00002767 ASTMethodPoolTrait Trait(*this);
Mike Stump1eb44332009-09-09 15:08:12 +00002768
Sebastian Redl059612d2010-08-03 21:58:15 +00002769 // Create the on-disk hash table representation. We walk through every
2770 // selector we've seen and look it up in the method pool.
Sebastian Redle58aa892010-08-04 18:21:41 +00002771 SelectorOffsets.resize(NextSelectorID - FirstSelectorID);
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002772 for (llvm::DenseMap<Selector, SelectorID>::iterator
Sebastian Redl5d050072010-08-04 17:20:04 +00002773 I = SelectorIDs.begin(), E = SelectorIDs.end();
2774 I != E; ++I) {
2775 Selector S = I->first;
Sebastian Redl059612d2010-08-03 21:58:15 +00002776 Sema::GlobalMethodPool::iterator F = SemaRef.MethodPool.find(S);
Sebastian Redl3397c552010-08-18 23:56:27 +00002777 ASTMethodPoolTrait::data_type Data = {
Sebastian Redl5d050072010-08-04 17:20:04 +00002778 I->second,
2779 ObjCMethodList(),
2780 ObjCMethodList()
2781 };
2782 if (F != SemaRef.MethodPool.end()) {
2783 Data.Instance = F->second.first;
2784 Data.Factory = F->second.second;
2785 }
Sebastian Redl3397c552010-08-18 23:56:27 +00002786 // Only write this selector if it's not in an existing AST or something
Sebastian Redle58aa892010-08-04 18:21:41 +00002787 // changed.
2788 if (Chain && I->second < FirstSelectorID) {
2789 // Selector already exists. Did it change?
2790 bool changed = false;
2791 for (ObjCMethodList *M = &Data.Instance; !changed && M && M->Method;
Argyrios Kyrtzidis2e3d8c02013-04-17 00:08:58 +00002792 M = M->getNext()) {
Douglas Gregor919814d2011-09-09 23:01:35 +00002793 if (!M->Method->isFromASTFile())
Sebastian Redle58aa892010-08-04 18:21:41 +00002794 changed = true;
2795 }
2796 for (ObjCMethodList *M = &Data.Factory; !changed && M && M->Method;
Argyrios Kyrtzidis2e3d8c02013-04-17 00:08:58 +00002797 M = M->getNext()) {
Douglas Gregor919814d2011-09-09 23:01:35 +00002798 if (!M->Method->isFromASTFile())
Sebastian Redle58aa892010-08-04 18:21:41 +00002799 changed = true;
2800 }
2801 if (!changed)
2802 continue;
Sebastian Redlfa78dec2010-08-04 21:22:45 +00002803 } else if (Data.Instance.Method || Data.Factory.Method) {
2804 // A new method pool entry.
2805 ++NumTableEntries;
Sebastian Redle58aa892010-08-04 18:21:41 +00002806 }
Argyrios Kyrtzidis5d267682010-08-20 16:04:27 +00002807 Generator.insert(S, Data, Trait);
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00002808 }
2809
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00002810 // Create the on-disk hash table in a buffer.
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00002811 SmallString<4096> MethodPool;
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00002812 uint32_t BucketOffset;
2813 {
Sebastian Redl3397c552010-08-18 23:56:27 +00002814 ASTMethodPoolTrait Trait(*this);
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00002815 llvm::raw_svector_ostream Out(MethodPool);
2816 // Make sure that no bucket is at offset 0
Douglas Gregora67e58c2009-04-24 21:49:02 +00002817 clang::io::Emit32(Out, 0);
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00002818 BucketOffset = Generator.Emit(Out, Trait);
2819 }
2820
2821 // Create a blob abbreviation
2822 BitCodeAbbrev *Abbrev = new BitCodeAbbrev();
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002823 Abbrev->Add(BitCodeAbbrevOp(METHOD_POOL));
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00002824 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32));
Douglas Gregor83941df2009-04-25 17:48:32 +00002825 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32));
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00002826 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob));
2827 unsigned MethodPoolAbbrev = Stream.EmitAbbrev(Abbrev);
2828
Douglas Gregor83941df2009-04-25 17:48:32 +00002829 // Write the method pool
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00002830 RecordData Record;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002831 Record.push_back(METHOD_POOL);
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00002832 Record.push_back(BucketOffset);
Sebastian Redle58aa892010-08-04 18:21:41 +00002833 Record.push_back(NumTableEntries);
Daniel Dunbarec312a12009-08-24 09:31:37 +00002834 Stream.EmitRecordWithBlob(MethodPoolAbbrev, Record, MethodPool.str());
Douglas Gregor83941df2009-04-25 17:48:32 +00002835
2836 // Create a blob abbreviation for the selector table offsets.
2837 Abbrev = new BitCodeAbbrev();
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002838 Abbrev->Add(BitCodeAbbrevOp(SELECTOR_OFFSETS));
Douglas Gregor7c789c12010-10-29 22:39:52 +00002839 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // size
Douglas Gregorb18b1fd2011-08-03 23:28:44 +00002840 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // first ID
Douglas Gregor83941df2009-04-25 17:48:32 +00002841 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob));
2842 unsigned SelectorOffsetAbbrev = Stream.EmitAbbrev(Abbrev);
2843
2844 // Write the selector offsets table.
2845 Record.clear();
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002846 Record.push_back(SELECTOR_OFFSETS);
Douglas Gregor83941df2009-04-25 17:48:32 +00002847 Record.push_back(SelectorOffsets.size());
Douglas Gregorb18b1fd2011-08-03 23:28:44 +00002848 Record.push_back(FirstSelectorID - NUM_PREDEF_SELECTOR_IDS);
Douglas Gregor83941df2009-04-25 17:48:32 +00002849 Stream.EmitRecordWithBlob(SelectorOffsetAbbrev, Record,
Benjamin Kramer6e089c62011-04-24 17:44:50 +00002850 data(SelectorOffsets));
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00002851 }
2852}
2853
Sebastian Redl3397c552010-08-18 23:56:27 +00002854/// \brief Write the selectors referenced in @selector expression into AST file.
Sebastian Redla4232eb2010-08-18 23:56:21 +00002855void ASTWriter::WriteReferencedSelectorsPool(Sema &SemaRef) {
Fariborz Jahanian32019832010-07-23 19:11:11 +00002856 using namespace llvm;
2857 if (SemaRef.ReferencedSelectors.empty())
2858 return;
Sebastian Redl725cd962010-08-04 20:40:17 +00002859
Fariborz Jahanian32019832010-07-23 19:11:11 +00002860 RecordData Record;
Sebastian Redl725cd962010-08-04 20:40:17 +00002861
Sebastian Redl3397c552010-08-18 23:56:27 +00002862 // Note: this writes out all references even for a dependent AST. But it is
Sebastian Redla68340f2010-08-04 22:21:29 +00002863 // very tricky to fix, and given that @selector shouldn't really appear in
2864 // headers, probably not worth it. It's not a correctness issue.
Fariborz Jahanian32019832010-07-23 19:11:11 +00002865 for (DenseMap<Selector, SourceLocation>::iterator S =
2866 SemaRef.ReferencedSelectors.begin(),
2867 E = SemaRef.ReferencedSelectors.end(); S != E; ++S) {
2868 Selector Sel = (*S).first;
2869 SourceLocation Loc = (*S).second;
2870 AddSelectorRef(Sel, Record);
2871 AddSourceLocation(Loc, Record);
2872 }
Sebastian Redl8538e8d2010-08-18 23:57:32 +00002873 Stream.EmitRecord(REFERENCED_SELECTOR_POOL, Record);
Fariborz Jahanian32019832010-07-23 19:11:11 +00002874}
2875
Douglas Gregor4fed3f42009-04-27 18:38:38 +00002876//===----------------------------------------------------------------------===//
2877// Identifier Table Serialization
2878//===----------------------------------------------------------------------===//
2879
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00002880namespace {
Sebastian Redl3397c552010-08-18 23:56:27 +00002881class ASTIdentifierTableTrait {
Sebastian Redla4232eb2010-08-18 23:56:21 +00002882 ASTWriter &Writer;
Douglas Gregor37e26842009-04-21 23:56:24 +00002883 Preprocessor &PP;
Douglas Gregoreee242f2011-10-27 09:33:13 +00002884 IdentifierResolver &IdResolver;
Douglas Gregor7143aab2011-09-01 17:04:32 +00002885 bool IsModule;
2886
Douglas Gregora92193e2009-04-28 21:18:29 +00002887 /// \brief Determines whether this is an "interesting" identifier
2888 /// that needs a full IdentifierInfo structure written into the hash
2889 /// table.
Argyrios Kyrtzidis9818a1d2013-02-20 00:54:57 +00002890 bool isInterestingIdentifier(IdentifierInfo *II, MacroDirective *&Macro) {
Douglas Gregor7143aab2011-09-01 17:04:32 +00002891 if (II->isPoisoned() ||
2892 II->isExtensionToken() ||
2893 II->getObjCOrBuiltinID() ||
Douglas Gregoreee242f2011-10-27 09:33:13 +00002894 II->hasRevertedTokenIDToIdentifier() ||
Douglas Gregor7143aab2011-09-01 17:04:32 +00002895 II->getFETokenInfo<void>())
2896 return true;
2897
Alexander Kornienko4d7e0ce2012-09-25 17:18:14 +00002898 return hadMacroDefinition(II, Macro);
Douglas Gregorce835df2011-09-14 22:14:14 +00002899 }
Alexander Kornienko4d7e0ce2012-09-25 17:18:14 +00002900
Argyrios Kyrtzidis9818a1d2013-02-20 00:54:57 +00002901 bool hadMacroDefinition(IdentifierInfo *II, MacroDirective *&Macro) {
Alexander Kornienko4d7e0ce2012-09-25 17:18:14 +00002902 if (!II->hadMacroDefinition())
Douglas Gregor7143aab2011-09-01 17:04:32 +00002903 return false;
Alexander Kornienko4d7e0ce2012-09-25 17:18:14 +00002904
Argyrios Kyrtzidis9317ab92013-03-22 21:12:57 +00002905 if (Macro || (Macro = PP.getMacroDirectiveHistory(II))) {
2906 if (!IsModule)
2907 return !shouldIgnoreMacro(Macro, IsModule, PP);
2908 SubmoduleID ModID;
2909 if (getFirstPublicSubmoduleMacro(Macro, ModID))
2910 return true;
2911 }
Alexander Kornienko4d7e0ce2012-09-25 17:18:14 +00002912
2913 return false;
Douglas Gregora92193e2009-04-28 21:18:29 +00002914 }
2915
Argyrios Kyrtzidisc56fff72013-03-26 17:17:01 +00002916 DefMacroDirective *getFirstPublicSubmoduleMacro(MacroDirective *MD,
2917 SubmoduleID &ModID) {
2918 ModID = 0;
2919 if (DefMacroDirective *DefMD = getPublicSubmoduleMacro(MD, ModID))
2920 if (!shouldIgnoreMacro(DefMD, IsModule, PP))
2921 return DefMD;
Argyrios Kyrtzidis9317ab92013-03-22 21:12:57 +00002922 return 0;
2923 }
2924
Argyrios Kyrtzidisc56fff72013-03-26 17:17:01 +00002925 DefMacroDirective *getNextPublicSubmoduleMacro(DefMacroDirective *MD,
2926 SubmoduleID &ModID) {
2927 if (DefMacroDirective *
2928 DefMD = getPublicSubmoduleMacro(MD->getPrevious(), ModID))
2929 if (!shouldIgnoreMacro(DefMD, IsModule, PP))
2930 return DefMD;
2931 return 0;
2932 }
2933
2934 /// \brief Traverses the macro directives history and returns the latest
2935 /// macro that is public and not undefined in the same submodule.
2936 /// A macro that is defined in submodule A and undefined in submodule B,
2937 /// will still be considered as defined/exported from submodule A.
2938 DefMacroDirective *getPublicSubmoduleMacro(MacroDirective *MD,
2939 SubmoduleID &ModID) {
2940 if (!MD)
2941 return 0;
2942
Argyrios Kyrtzidisb2dbfd82013-04-03 05:11:33 +00002943 SubmoduleID OrigModID = ModID;
Argyrios Kyrtzidisc56fff72013-03-26 17:17:01 +00002944 bool isUndefined = false;
2945 Optional<bool> isPublic;
2946 for (; MD; MD = MD->getPrevious()) {
2947 if (MD->isHidden())
2948 continue;
2949
2950 SubmoduleID ThisModID = getSubmoduleID(MD);
2951 if (ThisModID == 0) {
2952 isUndefined = false;
2953 isPublic = Optional<bool>();
2954 continue;
2955 }
2956 if (ThisModID != ModID){
2957 ModID = ThisModID;
2958 isUndefined = false;
2959 isPublic = Optional<bool>();
2960 }
Argyrios Kyrtzidisb2dbfd82013-04-03 05:11:33 +00002961 // We are looking for a definition in a different submodule than the one
2962 // that we started with. If a submodule has re-definitions of the same
2963 // macro, only the last definition will be used as the "exported" one.
2964 if (ModID == OrigModID)
2965 continue;
Argyrios Kyrtzidisc56fff72013-03-26 17:17:01 +00002966
2967 if (DefMacroDirective *DefMD = dyn_cast<DefMacroDirective>(MD)) {
2968 if (!isUndefined && (!isPublic.hasValue() || isPublic.getValue()))
2969 return DefMD;
2970 continue;
2971 }
2972
2973 if (isa<UndefMacroDirective>(MD)) {
2974 isUndefined = true;
2975 continue;
2976 }
2977
2978 VisibilityMacroDirective *VisMD = cast<VisibilityMacroDirective>(MD);
2979 if (!isPublic.hasValue())
2980 isPublic = VisMD->isPublic();
Argyrios Kyrtzidis9317ab92013-03-22 21:12:57 +00002981 }
Argyrios Kyrtzidisc56fff72013-03-26 17:17:01 +00002982
Argyrios Kyrtzidis9317ab92013-03-22 21:12:57 +00002983 return 0;
2984 }
2985
2986 SubmoduleID getSubmoduleID(MacroDirective *MD) {
Argyrios Kyrtzidisc56fff72013-03-26 17:17:01 +00002987 if (DefMacroDirective *DefMD = dyn_cast<DefMacroDirective>(MD)) {
2988 MacroInfo *MI = DefMD->getInfo();
2989 if (unsigned ID = MI->getOwningModuleID())
2990 return ID;
2991 return Writer.inferSubmoduleIDFromLocation(MI->getDefinitionLoc());
2992 }
2993 return Writer.inferSubmoduleIDFromLocation(MD->getLocation());
Argyrios Kyrtzidis9317ab92013-03-22 21:12:57 +00002994 }
2995
Douglas Gregor3251ceb2009-04-20 20:36:09 +00002996public:
Douglas Gregor7143aab2011-09-01 17:04:32 +00002997 typedef IdentifierInfo* key_type;
Douglas Gregor3251ceb2009-04-20 20:36:09 +00002998 typedef key_type key_type_ref;
Mike Stump1eb44332009-09-09 15:08:12 +00002999
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003000 typedef IdentID data_type;
Douglas Gregor3251ceb2009-04-20 20:36:09 +00003001 typedef data_type data_type_ref;
Mike Stump1eb44332009-09-09 15:08:12 +00003002
Douglas Gregoreee242f2011-10-27 09:33:13 +00003003 ASTIdentifierTableTrait(ASTWriter &Writer, Preprocessor &PP,
3004 IdentifierResolver &IdResolver, bool IsModule)
3005 : Writer(Writer), PP(PP), IdResolver(IdResolver), IsModule(IsModule) { }
Douglas Gregor3251ceb2009-04-20 20:36:09 +00003006
3007 static unsigned ComputeHash(const IdentifierInfo* II) {
Daniel Dunbar2596e422009-10-17 23:52:28 +00003008 return llvm::HashString(II->getName());
Douglas Gregor3251ceb2009-04-20 20:36:09 +00003009 }
Mike Stump1eb44332009-09-09 15:08:12 +00003010
3011 std::pair<unsigned,unsigned>
Douglas Gregoreee242f2011-10-27 09:33:13 +00003012 EmitKeyDataLength(raw_ostream& Out, IdentifierInfo* II, IdentID ID) {
Daniel Dunbare013d682009-10-18 20:26:12 +00003013 unsigned KeyLen = II->getLength() + 1;
Douglas Gregora92193e2009-04-28 21:18:29 +00003014 unsigned DataLen = 4; // 4 bytes for the persistent ID << 1
Argyrios Kyrtzidis9818a1d2013-02-20 00:54:57 +00003015 MacroDirective *Macro = 0;
Douglas Gregor7143aab2011-09-01 17:04:32 +00003016 if (isInterestingIdentifier(II, Macro)) {
Alexander Kornienko4d7e0ce2012-09-25 17:18:14 +00003017 DataLen += 2; // 2 bytes for builtin ID
3018 DataLen += 2; // 2 bytes for flags
Argyrios Kyrtzidisdc1088f2013-01-19 03:14:56 +00003019 if (hadMacroDefinition(II, Macro)) {
Argyrios Kyrtzidis9317ab92013-03-22 21:12:57 +00003020 DataLen += 4; // MacroDirectives offset.
3021 if (IsModule) {
3022 SubmoduleID ModID;
Argyrios Kyrtzidisc56fff72013-03-26 17:17:01 +00003023 for (DefMacroDirective *
3024 DefMD = getFirstPublicSubmoduleMacro(Macro, ModID);
3025 DefMD; DefMD = getNextPublicSubmoduleMacro(DefMD, ModID)) {
Argyrios Kyrtzidis9317ab92013-03-22 21:12:57 +00003026 DataLen += 4; // MacroInfo ID.
3027 }
3028 DataLen += 4;
Argyrios Kyrtzidisdc1088f2013-01-19 03:14:56 +00003029 }
Argyrios Kyrtzidisdc1088f2013-01-19 03:14:56 +00003030 }
Alexander Kornienko4d7e0ce2012-09-25 17:18:14 +00003031
Douglas Gregoreee242f2011-10-27 09:33:13 +00003032 for (IdentifierResolver::iterator D = IdResolver.begin(II),
3033 DEnd = IdResolver.end();
Douglas Gregora92193e2009-04-28 21:18:29 +00003034 D != DEnd; ++D)
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003035 DataLen += sizeof(DeclID);
Douglas Gregora92193e2009-04-28 21:18:29 +00003036 }
Douglas Gregor668c1a42009-04-21 22:25:48 +00003037 clang::io::Emit16(Out, DataLen);
Douglas Gregor02fc7512009-04-28 20:01:51 +00003038 // We emit the key length after the data length so that every
3039 // string is preceded by a 16-bit length. This matches the PTH
3040 // format for storing identifiers.
Douglas Gregord6595a42009-04-25 21:04:17 +00003041 clang::io::Emit16(Out, KeyLen);
Douglas Gregor3251ceb2009-04-20 20:36:09 +00003042 return std::make_pair(KeyLen, DataLen);
3043 }
Mike Stump1eb44332009-09-09 15:08:12 +00003044
Chris Lattner5f9e2722011-07-23 10:55:15 +00003045 void EmitKey(raw_ostream& Out, const IdentifierInfo* II,
Douglas Gregor3251ceb2009-04-20 20:36:09 +00003046 unsigned KeyLen) {
3047 // Record the location of the key data. This is used when generating
3048 // the mapping from persistent IDs to strings.
3049 Writer.SetIdentifierOffset(II, Out.tell());
Daniel Dunbare013d682009-10-18 20:26:12 +00003050 Out.write(II->getNameStart(), KeyLen);
Douglas Gregor3251ceb2009-04-20 20:36:09 +00003051 }
Mike Stump1eb44332009-09-09 15:08:12 +00003052
Douglas Gregor7143aab2011-09-01 17:04:32 +00003053 void EmitData(raw_ostream& Out, IdentifierInfo* II,
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003054 IdentID ID, unsigned) {
Argyrios Kyrtzidis9818a1d2013-02-20 00:54:57 +00003055 MacroDirective *Macro = 0;
Douglas Gregor7143aab2011-09-01 17:04:32 +00003056 if (!isInterestingIdentifier(II, Macro)) {
Douglas Gregora92193e2009-04-28 21:18:29 +00003057 clang::io::Emit32(Out, ID << 1);
3058 return;
3059 }
Douglas Gregor5998da52009-04-28 21:32:13 +00003060
Douglas Gregora92193e2009-04-28 21:18:29 +00003061 clang::io::Emit32(Out, (ID << 1) | 0x01);
Alexander Kornienko4d7e0ce2012-09-25 17:18:14 +00003062 uint32_t Bits = (uint32_t)II->getObjCOrBuiltinID();
3063 assert((Bits & 0xffff) == Bits && "ObjCOrBuiltinID too big for ASTReader.");
3064 clang::io::Emit16(Out, Bits);
3065 Bits = 0;
3066 bool HadMacroDefinition = hadMacroDefinition(II, Macro);
Alexander Kornienko4d7e0ce2012-09-25 17:18:14 +00003067 Bits = (Bits << 1) | unsigned(HadMacroDefinition);
Argyrios Kyrtzidis9317ab92013-03-22 21:12:57 +00003068 Bits = (Bits << 1) | unsigned(IsModule);
Daniel Dunbarb0b84382009-12-18 20:58:47 +00003069 Bits = (Bits << 1) | unsigned(II->isExtensionToken());
3070 Bits = (Bits << 1) | unsigned(II->isPoisoned());
Argyrios Kyrtzidis646395b2010-08-11 22:55:12 +00003071 Bits = (Bits << 1) | unsigned(II->hasRevertedTokenIDToIdentifier());
Daniel Dunbarb0b84382009-12-18 20:58:47 +00003072 Bits = (Bits << 1) | unsigned(II->isCPlusPlusOperatorKeyword());
Douglas Gregor5998da52009-04-28 21:32:13 +00003073 clang::io::Emit16(Out, Bits);
Douglas Gregor3251ceb2009-04-20 20:36:09 +00003074
Alexander Kornienko4d7e0ce2012-09-25 17:18:14 +00003075 if (HadMacroDefinition) {
Argyrios Kyrtzidis9317ab92013-03-22 21:12:57 +00003076 clang::io::Emit32(Out, Writer.getMacroDirectivesOffset(II));
3077 if (IsModule) {
3078 // Write the IDs of macros coming from different submodules.
3079 SubmoduleID ModID;
Argyrios Kyrtzidisc56fff72013-03-26 17:17:01 +00003080 for (DefMacroDirective *
3081 DefMD = getFirstPublicSubmoduleMacro(Macro, ModID);
3082 DefMD; DefMD = getNextPublicSubmoduleMacro(DefMD, ModID)) {
3083 MacroID InfoID = Writer.getMacroID(DefMD->getInfo());
Argyrios Kyrtzidis9317ab92013-03-22 21:12:57 +00003084 assert(InfoID);
3085 clang::io::Emit32(Out, InfoID);
3086 }
3087 clang::io::Emit32(Out, 0);
Argyrios Kyrtzidisdc1088f2013-01-19 03:14:56 +00003088 }
Douglas Gregor13292642011-12-02 15:45:10 +00003089 }
Alexander Kornienko4d7e0ce2012-09-25 17:18:14 +00003090
Douglas Gregor668c1a42009-04-21 22:25:48 +00003091 // Emit the declaration IDs in reverse order, because the
3092 // IdentifierResolver provides the declarations as they would be
3093 // visible (e.g., the function "stat" would come before the struct
Douglas Gregoreee242f2011-10-27 09:33:13 +00003094 // "stat"), but the ASTReader adds declarations to the end of the list
3095 // (so we need to see the struct "status" before the function "status").
Sebastian Redlf2f0f032010-07-23 23:49:55 +00003096 // Only emit declarations that aren't from a chained PCH, though.
Douglas Gregoreee242f2011-10-27 09:33:13 +00003097 SmallVector<Decl *, 16> Decls(IdResolver.begin(II),
3098 IdResolver.end());
Chris Lattner5f9e2722011-07-23 10:55:15 +00003099 for (SmallVector<Decl *, 16>::reverse_iterator D = Decls.rbegin(),
Douglas Gregoreee242f2011-10-27 09:33:13 +00003100 DEnd = Decls.rend();
Douglas Gregor3251ceb2009-04-20 20:36:09 +00003101 D != DEnd; ++D)
Argyrios Kyrtzidis0532df02013-04-26 21:33:35 +00003102 clang::io::Emit32(Out, Writer.getDeclID(getMostRecentLocalDecl(*D)));
3103 }
3104
3105 /// \brief Returns the most recent local decl or the given decl if there are
3106 /// no local ones. The given decl is assumed to be the most recent one.
3107 Decl *getMostRecentLocalDecl(Decl *Orig) {
3108 // The only way a "from AST file" decl would be more recent from a local one
3109 // is if it came from a module.
3110 if (!PP.getLangOpts().Modules)
3111 return Orig;
3112
3113 // Look for a local in the decl chain.
3114 for (Decl *D = Orig; D; D = D->getPreviousDecl()) {
3115 if (!D->isFromASTFile())
3116 return D;
3117 // If we come up a decl from a (chained-)PCH stop since we won't find a
3118 // local one.
3119 if (D->getOwningModuleID() == 0)
3120 break;
3121 }
3122
3123 return Orig;
Douglas Gregor3251ceb2009-04-20 20:36:09 +00003124 }
3125};
3126} // end anonymous namespace
3127
Sebastian Redl3397c552010-08-18 23:56:27 +00003128/// \brief Write the identifier table into the AST file.
Douglas Gregorafaf3082009-04-11 00:14:32 +00003129///
3130/// The identifier table consists of a blob containing string data
3131/// (the actual identifiers themselves) and a separate "offsets" index
3132/// that maps identifier IDs to locations within the blob.
Douglas Gregoreee242f2011-10-27 09:33:13 +00003133void ASTWriter::WriteIdentifierTable(Preprocessor &PP,
3134 IdentifierResolver &IdResolver,
3135 bool IsModule) {
Douglas Gregorafaf3082009-04-11 00:14:32 +00003136 using namespace llvm;
3137
3138 // Create and write out the blob that contains the identifier
3139 // strings.
Douglas Gregorafaf3082009-04-11 00:14:32 +00003140 {
Sebastian Redl3397c552010-08-18 23:56:27 +00003141 OnDiskChainedHashTableGenerator<ASTIdentifierTableTrait> Generator;
Douglas Gregoreee242f2011-10-27 09:33:13 +00003142 ASTIdentifierTableTrait Trait(*this, PP, IdResolver, IsModule);
Mike Stump1eb44332009-09-09 15:08:12 +00003143
Douglas Gregor92b059e2009-04-28 20:33:11 +00003144 // Look for any identifiers that were named while processing the
3145 // headers, but are otherwise not needed. We add these to the hash
3146 // table to enable checking of the predefines buffer in the case
Sebastian Redl3397c552010-08-18 23:56:27 +00003147 // where the user adds new macro definitions when building the AST
Douglas Gregor92b059e2009-04-28 20:33:11 +00003148 // file.
3149 for (IdentifierTable::iterator ID = PP.getIdentifierTable().begin(),
3150 IDEnd = PP.getIdentifierTable().end();
3151 ID != IDEnd; ++ID)
3152 getIdentifierRef(ID->second);
3153
Sebastian Redlf2f0f032010-07-23 23:49:55 +00003154 // Create the on-disk hash table representation. We only store offsets
3155 // for identifiers that appear here for the first time.
3156 IdentifierOffsets.resize(NextIdentID - FirstIdentID);
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003157 for (llvm::DenseMap<const IdentifierInfo *, IdentID>::iterator
Douglas Gregorafaf3082009-04-11 00:14:32 +00003158 ID = IdentifierIDs.begin(), IDEnd = IdentifierIDs.end();
3159 ID != IDEnd; ++ID) {
3160 assert(ID->first && "NULL identifier in identifier table");
Douglas Gregoreee242f2011-10-27 09:33:13 +00003161 if (!Chain || !ID->first->isFromAST() ||
3162 ID->first->hasChangedSinceDeserialization())
Douglas Gregor2d1ece82013-02-08 21:30:59 +00003163 Generator.insert(const_cast<IdentifierInfo *>(ID->first), ID->second,
Douglas Gregor7143aab2011-09-01 17:04:32 +00003164 Trait);
Douglas Gregor3251ceb2009-04-20 20:36:09 +00003165 }
Douglas Gregorafaf3082009-04-11 00:14:32 +00003166
Douglas Gregor3251ceb2009-04-20 20:36:09 +00003167 // Create the on-disk hash table in a buffer.
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00003168 SmallString<4096> IdentifierTable;
Douglas Gregor668c1a42009-04-21 22:25:48 +00003169 uint32_t BucketOffset;
Douglas Gregor3251ceb2009-04-20 20:36:09 +00003170 {
Douglas Gregoreee242f2011-10-27 09:33:13 +00003171 ASTIdentifierTableTrait Trait(*this, PP, IdResolver, IsModule);
Douglas Gregor3251ceb2009-04-20 20:36:09 +00003172 llvm::raw_svector_ostream Out(IdentifierTable);
Douglas Gregorf0aaf7a2009-04-24 21:10:55 +00003173 // Make sure that no bucket is at offset 0
Douglas Gregora67e58c2009-04-24 21:49:02 +00003174 clang::io::Emit32(Out, 0);
Douglas Gregor668c1a42009-04-21 22:25:48 +00003175 BucketOffset = Generator.Emit(Out, Trait);
Douglas Gregorafaf3082009-04-11 00:14:32 +00003176 }
3177
3178 // Create a blob abbreviation
3179 BitCodeAbbrev *Abbrev = new BitCodeAbbrev();
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003180 Abbrev->Add(BitCodeAbbrevOp(IDENTIFIER_TABLE));
Douglas Gregor668c1a42009-04-21 22:25:48 +00003181 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32));
Douglas Gregor3251ceb2009-04-20 20:36:09 +00003182 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob));
Douglas Gregorc9490c02009-04-16 22:23:12 +00003183 unsigned IDTableAbbrev = Stream.EmitAbbrev(Abbrev);
Douglas Gregorafaf3082009-04-11 00:14:32 +00003184
3185 // Write the identifier table
3186 RecordData Record;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003187 Record.push_back(IDENTIFIER_TABLE);
Douglas Gregor668c1a42009-04-21 22:25:48 +00003188 Record.push_back(BucketOffset);
Daniel Dunbarec312a12009-08-24 09:31:37 +00003189 Stream.EmitRecordWithBlob(IDTableAbbrev, Record, IdentifierTable.str());
Douglas Gregorafaf3082009-04-11 00:14:32 +00003190 }
3191
3192 // Write the offsets table for identifier IDs.
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00003193 BitCodeAbbrev *Abbrev = new BitCodeAbbrev();
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003194 Abbrev->Add(BitCodeAbbrevOp(IDENTIFIER_OFFSET));
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00003195 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // # of identifiers
Douglas Gregor6ec60e02011-08-03 21:49:18 +00003196 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // first ID
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00003197 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob));
3198 unsigned IdentifierOffsetAbbrev = Stream.EmitAbbrev(Abbrev);
3199
Douglas Gregor2d1ece82013-02-08 21:30:59 +00003200#ifndef NDEBUG
3201 for (unsigned I = 0, N = IdentifierOffsets.size(); I != N; ++I)
3202 assert(IdentifierOffsets[I] && "Missing identifier offset?");
3203#endif
3204
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00003205 RecordData Record;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003206 Record.push_back(IDENTIFIER_OFFSET);
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00003207 Record.push_back(IdentifierOffsets.size());
Douglas Gregor6ec60e02011-08-03 21:49:18 +00003208 Record.push_back(FirstIdentID - NUM_PREDEF_IDENT_IDS);
Douglas Gregor2b3a5a82009-04-25 19:10:14 +00003209 Stream.EmitRecordWithBlob(IdentifierOffsetAbbrev, Record,
Benjamin Kramer6e089c62011-04-24 17:44:50 +00003210 data(IdentifierOffsets));
Douglas Gregorafaf3082009-04-11 00:14:32 +00003211}
3212
Douglas Gregor4fed3f42009-04-27 18:38:38 +00003213//===----------------------------------------------------------------------===//
Argyrios Kyrtzidis5d267682010-08-20 16:04:27 +00003214// DeclContext's Name Lookup Table Serialization
3215//===----------------------------------------------------------------------===//
3216
3217namespace {
3218// Trait used for the on-disk hash table used in the method pool.
3219class ASTDeclContextNameLookupTrait {
3220 ASTWriter &Writer;
3221
3222public:
3223 typedef DeclarationName key_type;
3224 typedef key_type key_type_ref;
3225
3226 typedef DeclContext::lookup_result data_type;
3227 typedef const data_type& data_type_ref;
3228
3229 explicit ASTDeclContextNameLookupTrait(ASTWriter &Writer) : Writer(Writer) { }
3230
3231 unsigned ComputeHash(DeclarationName Name) {
3232 llvm::FoldingSetNodeID ID;
3233 ID.AddInteger(Name.getNameKind());
3234
3235 switch (Name.getNameKind()) {
3236 case DeclarationName::Identifier:
3237 ID.AddString(Name.getAsIdentifierInfo()->getName());
3238 break;
3239 case DeclarationName::ObjCZeroArgSelector:
3240 case DeclarationName::ObjCOneArgSelector:
3241 case DeclarationName::ObjCMultiArgSelector:
3242 ID.AddInteger(serialization::ComputeHash(Name.getObjCSelector()));
3243 break;
3244 case DeclarationName::CXXConstructorName:
3245 case DeclarationName::CXXDestructorName:
3246 case DeclarationName::CXXConversionFunctionName:
Argyrios Kyrtzidis5d267682010-08-20 16:04:27 +00003247 break;
3248 case DeclarationName::CXXOperatorName:
3249 ID.AddInteger(Name.getCXXOverloadedOperator());
3250 break;
3251 case DeclarationName::CXXLiteralOperatorName:
3252 ID.AddString(Name.getCXXLiteralIdentifier()->getName());
3253 case DeclarationName::CXXUsingDirective:
3254 break;
3255 }
3256
3257 return ID.ComputeHash();
3258 }
3259
3260 std::pair<unsigned,unsigned>
Chris Lattner5f9e2722011-07-23 10:55:15 +00003261 EmitKeyDataLength(raw_ostream& Out, DeclarationName Name,
Argyrios Kyrtzidis5d267682010-08-20 16:04:27 +00003262 data_type_ref Lookup) {
3263 unsigned KeyLen = 1;
3264 switch (Name.getNameKind()) {
3265 case DeclarationName::Identifier:
3266 case DeclarationName::ObjCZeroArgSelector:
3267 case DeclarationName::ObjCOneArgSelector:
3268 case DeclarationName::ObjCMultiArgSelector:
Argyrios Kyrtzidis5d267682010-08-20 16:04:27 +00003269 case DeclarationName::CXXLiteralOperatorName:
3270 KeyLen += 4;
3271 break;
3272 case DeclarationName::CXXOperatorName:
3273 KeyLen += 1;
3274 break;
Douglas Gregore3605012011-08-02 18:32:54 +00003275 case DeclarationName::CXXConstructorName:
3276 case DeclarationName::CXXDestructorName:
3277 case DeclarationName::CXXConversionFunctionName:
Argyrios Kyrtzidis5d267682010-08-20 16:04:27 +00003278 case DeclarationName::CXXUsingDirective:
3279 break;
3280 }
3281 clang::io::Emit16(Out, KeyLen);
3282
3283 // 2 bytes for num of decls and 4 for each DeclID.
David Blaikie3bc93e32012-12-19 00:45:41 +00003284 unsigned DataLen = 2 + 4 * Lookup.size();
Argyrios Kyrtzidis5d267682010-08-20 16:04:27 +00003285 clang::io::Emit16(Out, DataLen);
3286
3287 return std::make_pair(KeyLen, DataLen);
3288 }
3289
Chris Lattner5f9e2722011-07-23 10:55:15 +00003290 void EmitKey(raw_ostream& Out, DeclarationName Name, unsigned) {
Argyrios Kyrtzidis5d267682010-08-20 16:04:27 +00003291 using namespace clang::io;
3292
Argyrios Kyrtzidis5d267682010-08-20 16:04:27 +00003293 Emit8(Out, Name.getNameKind());
3294 switch (Name.getNameKind()) {
3295 case DeclarationName::Identifier:
3296 Emit32(Out, Writer.getIdentifierRef(Name.getAsIdentifierInfo()));
Benjamin Kramer59313312012-09-19 13:40:40 +00003297 return;
Argyrios Kyrtzidis5d267682010-08-20 16:04:27 +00003298 case DeclarationName::ObjCZeroArgSelector:
3299 case DeclarationName::ObjCOneArgSelector:
3300 case DeclarationName::ObjCMultiArgSelector:
3301 Emit32(Out, Writer.getSelectorRef(Name.getObjCSelector()));
Benjamin Kramer59313312012-09-19 13:40:40 +00003302 return;
Argyrios Kyrtzidis5d267682010-08-20 16:04:27 +00003303 case DeclarationName::CXXOperatorName:
Benjamin Kramer59313312012-09-19 13:40:40 +00003304 assert(Name.getCXXOverloadedOperator() < NUM_OVERLOADED_OPERATORS &&
3305 "Invalid operator?");
Argyrios Kyrtzidis5d267682010-08-20 16:04:27 +00003306 Emit8(Out, Name.getCXXOverloadedOperator());
Benjamin Kramer59313312012-09-19 13:40:40 +00003307 return;
Argyrios Kyrtzidis5d267682010-08-20 16:04:27 +00003308 case DeclarationName::CXXLiteralOperatorName:
3309 Emit32(Out, Writer.getIdentifierRef(Name.getCXXLiteralIdentifier()));
Benjamin Kramer59313312012-09-19 13:40:40 +00003310 return;
Douglas Gregore3605012011-08-02 18:32:54 +00003311 case DeclarationName::CXXConstructorName:
3312 case DeclarationName::CXXDestructorName:
3313 case DeclarationName::CXXConversionFunctionName:
Argyrios Kyrtzidis5d267682010-08-20 16:04:27 +00003314 case DeclarationName::CXXUsingDirective:
Benjamin Kramer59313312012-09-19 13:40:40 +00003315 return;
Argyrios Kyrtzidis5d267682010-08-20 16:04:27 +00003316 }
Benjamin Kramer59313312012-09-19 13:40:40 +00003317
3318 llvm_unreachable("Invalid name kind?");
Argyrios Kyrtzidis5d267682010-08-20 16:04:27 +00003319 }
3320
Chris Lattner5f9e2722011-07-23 10:55:15 +00003321 void EmitData(raw_ostream& Out, key_type_ref,
Argyrios Kyrtzidis5d267682010-08-20 16:04:27 +00003322 data_type Lookup, unsigned DataLen) {
3323 uint64_t Start = Out.tell(); (void)Start;
David Blaikie3bc93e32012-12-19 00:45:41 +00003324 clang::io::Emit16(Out, Lookup.size());
3325 for (DeclContext::lookup_iterator I = Lookup.begin(), E = Lookup.end();
3326 I != E; ++I)
3327 clang::io::Emit32(Out, Writer.GetDeclRef(*I));
Argyrios Kyrtzidis5d267682010-08-20 16:04:27 +00003328
3329 assert(Out.tell() - Start == DataLen && "Data length is wrong");
3330 }
3331};
3332} // end anonymous namespace
3333
Argyrios Kyrtzidis074dcc82010-08-20 16:04:35 +00003334/// \brief Write the block containing all of the declaration IDs
3335/// visible from the given DeclContext.
3336///
3337/// \returns the offset of the DECL_CONTEXT_VISIBLE block within the
Sebastian Redl1d1e42b2010-08-24 00:50:09 +00003338/// bitstream, or 0 if no block was written.
Argyrios Kyrtzidis074dcc82010-08-20 16:04:35 +00003339uint64_t ASTWriter::WriteDeclContextVisibleBlock(ASTContext &Context,
3340 DeclContext *DC) {
3341 if (DC->getPrimaryContext() != DC)
3342 return 0;
3343
3344 // Since there is no name lookup into functions or methods, don't bother to
3345 // build a visible-declarations table for these entities.
3346 if (DC->isFunctionOrMethod())
3347 return 0;
3348
3349 // If not in C++, we perform name lookup for the translation unit via the
3350 // IdentifierInfo chains, don't bother to build a visible-declarations table.
David Blaikie4e4d0842012-03-11 07:00:24 +00003351 if (DC->isTranslationUnit() && !Context.getLangOpts().CPlusPlus)
Argyrios Kyrtzidis074dcc82010-08-20 16:04:35 +00003352 return 0;
3353
Argyrios Kyrtzidis074dcc82010-08-20 16:04:35 +00003354 // Serialize the contents of the mapping used for lookup. Note that,
3355 // although we have two very different code paths, the serialized
3356 // representation is the same for both cases: a declaration name,
3357 // followed by a size, followed by references to the visible
3358 // declarations that have that name.
3359 uint64_t Offset = Stream.GetCurrentBitNo();
Richard Smithc5d3e802012-03-16 06:12:59 +00003360 StoredDeclsMap *Map = DC->buildLookup();
Argyrios Kyrtzidis074dcc82010-08-20 16:04:35 +00003361 if (!Map || Map->empty())
3362 return 0;
3363
3364 OnDiskChainedHashTableGenerator<ASTDeclContextNameLookupTrait> Generator;
3365 ASTDeclContextNameLookupTrait Trait(*this);
3366
3367 // Create the on-disk hash table representation.
Douglas Gregore5a54b62011-08-30 20:49:19 +00003368 DeclarationName ConversionName;
Dmitri Gribenkocfa88f82013-01-12 19:30:44 +00003369 SmallVector<NamedDecl *, 4> ConversionDecls;
Argyrios Kyrtzidis074dcc82010-08-20 16:04:35 +00003370 for (StoredDeclsMap::iterator D = Map->begin(), DEnd = Map->end();
3371 D != DEnd; ++D) {
3372 DeclarationName Name = D->first;
3373 DeclContext::lookup_result Result = D->second.getLookupResult();
David Blaikie3bc93e32012-12-19 00:45:41 +00003374 if (!Result.empty()) {
Douglas Gregore5a54b62011-08-30 20:49:19 +00003375 if (Name.getNameKind() == DeclarationName::CXXConversionFunctionName) {
3376 // Hash all conversion function names to the same name. The actual
3377 // type information in conversion function name is not used in the
3378 // key (since such type information is not stable across different
3379 // modules), so the intended effect is to coalesce all of the conversion
3380 // functions under a single key.
3381 if (!ConversionName)
3382 ConversionName = Name;
David Blaikie3bc93e32012-12-19 00:45:41 +00003383 ConversionDecls.append(Result.begin(), Result.end());
Douglas Gregore5a54b62011-08-30 20:49:19 +00003384 continue;
3385 }
3386
Argyrios Kyrtzidis45118d82011-08-30 19:43:23 +00003387 Generator.insert(Name, Result, Trait);
Douglas Gregore5a54b62011-08-30 20:49:19 +00003388 }
Argyrios Kyrtzidis074dcc82010-08-20 16:04:35 +00003389 }
3390
Douglas Gregore5a54b62011-08-30 20:49:19 +00003391 // Add the conversion functions
3392 if (!ConversionDecls.empty()) {
3393 Generator.insert(ConversionName,
3394 DeclContext::lookup_result(ConversionDecls.begin(),
3395 ConversionDecls.end()),
3396 Trait);
3397 }
3398
Argyrios Kyrtzidis074dcc82010-08-20 16:04:35 +00003399 // Create the on-disk hash table in a buffer.
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00003400 SmallString<4096> LookupTable;
Argyrios Kyrtzidis074dcc82010-08-20 16:04:35 +00003401 uint32_t BucketOffset;
3402 {
3403 llvm::raw_svector_ostream Out(LookupTable);
3404 // Make sure that no bucket is at offset 0
3405 clang::io::Emit32(Out, 0);
3406 BucketOffset = Generator.Emit(Out, Trait);
3407 }
3408
3409 // Write the lookup table
3410 RecordData Record;
3411 Record.push_back(DECL_CONTEXT_VISIBLE);
3412 Record.push_back(BucketOffset);
3413 Stream.EmitRecordWithBlob(DeclContextVisibleLookupAbbrev, Record,
3414 LookupTable.str());
3415
3416 Stream.EmitRecord(DECL_CONTEXT_VISIBLE, Record);
3417 ++NumVisibleDeclContexts;
3418 return Offset;
3419}
3420
Sebastian Redl1d1e42b2010-08-24 00:50:09 +00003421/// \brief Write an UPDATE_VISIBLE block for the given context.
3422///
3423/// UPDATE_VISIBLE blocks contain the declarations that are added to an existing
3424/// DeclContext in a dependent AST file. As such, they only exist for the TU
Richard Smithc5d3e802012-03-16 06:12:59 +00003425/// (in C++), for namespaces, and for classes with forward-declared unscoped
3426/// enumeration members (in C++11).
Sebastian Redl1d1e42b2010-08-24 00:50:09 +00003427void ASTWriter::WriteDeclContextVisibleUpdate(const DeclContext *DC) {
Sebastian Redl1d1e42b2010-08-24 00:50:09 +00003428 StoredDeclsMap *Map = static_cast<StoredDeclsMap*>(DC->getLookupPtr());
3429 if (!Map || Map->empty())
3430 return;
3431
3432 OnDiskChainedHashTableGenerator<ASTDeclContextNameLookupTrait> Generator;
3433 ASTDeclContextNameLookupTrait Trait(*this);
3434
3435 // Create the hash table.
Sebastian Redl1d1e42b2010-08-24 00:50:09 +00003436 for (StoredDeclsMap::iterator D = Map->begin(), DEnd = Map->end();
3437 D != DEnd; ++D) {
3438 DeclarationName Name = D->first;
3439 DeclContext::lookup_result Result = D->second.getLookupResult();
Sebastian Redl5967d622010-08-24 00:50:16 +00003440 // For any name that appears in this table, the results are complete, i.e.
3441 // they overwrite results from previous PCHs. Merging is always a mess.
David Blaikie3bc93e32012-12-19 00:45:41 +00003442 if (!Result.empty())
Argyrios Kyrtzidis45118d82011-08-30 19:43:23 +00003443 Generator.insert(Name, Result, Trait);
Sebastian Redl1d1e42b2010-08-24 00:50:09 +00003444 }
3445
3446 // Create the on-disk hash table in a buffer.
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00003447 SmallString<4096> LookupTable;
Sebastian Redl1d1e42b2010-08-24 00:50:09 +00003448 uint32_t BucketOffset;
3449 {
3450 llvm::raw_svector_ostream Out(LookupTable);
3451 // Make sure that no bucket is at offset 0
3452 clang::io::Emit32(Out, 0);
3453 BucketOffset = Generator.Emit(Out, Trait);
3454 }
3455
3456 // Write the lookup table
3457 RecordData Record;
3458 Record.push_back(UPDATE_VISIBLE);
3459 Record.push_back(getDeclID(cast<Decl>(DC)));
3460 Record.push_back(BucketOffset);
3461 Stream.EmitRecordWithBlob(UpdateVisibleAbbrev, Record, LookupTable.str());
3462}
3463
Peter Collingbourne84bccea2011-02-15 19:46:30 +00003464/// \brief Write an FP_PRAGMA_OPTIONS block for the given FPOptions.
3465void ASTWriter::WriteFPPragmaOptions(const FPOptions &Opts) {
3466 RecordData Record;
3467 Record.push_back(Opts.fp_contract);
3468 Stream.EmitRecord(FP_PRAGMA_OPTIONS, Record);
3469}
3470
3471/// \brief Write an OPENCL_EXTENSIONS block for the given OpenCLOptions.
3472void ASTWriter::WriteOpenCLExtensions(Sema &SemaRef) {
David Blaikie4e4d0842012-03-11 07:00:24 +00003473 if (!SemaRef.Context.getLangOpts().OpenCL)
Peter Collingbourne84bccea2011-02-15 19:46:30 +00003474 return;
3475
3476 const OpenCLOptions &Opts = SemaRef.getOpenCLOptions();
3477 RecordData Record;
3478#define OPENCLEXT(nm) Record.push_back(Opts.nm);
3479#include "clang/Basic/OpenCLExtensions.def"
3480 Stream.EmitRecord(OPENCL_EXTENSIONS, Record);
3481}
3482
Douglas Gregor2171bf12012-01-15 16:58:34 +00003483void ASTWriter::WriteRedeclarations() {
3484 RecordData LocalRedeclChains;
3485 SmallVector<serialization::LocalRedeclarationsInfo, 2> LocalRedeclsMap;
3486
3487 for (unsigned I = 0, N = Redeclarations.size(); I != N; ++I) {
3488 Decl *First = Redeclarations[I];
3489 assert(First->getPreviousDecl() == 0 && "Not the first declaration?");
3490
3491 Decl *MostRecent = First->getMostRecentDecl();
3492
3493 // If we only have a single declaration, there is no point in storing
3494 // a redeclaration chain.
3495 if (First == MostRecent)
3496 continue;
3497
3498 unsigned Offset = LocalRedeclChains.size();
3499 unsigned Size = 0;
3500 LocalRedeclChains.push_back(0); // Placeholder for the size.
3501
3502 // Collect the set of local redeclarations of this declaration.
Douglas Gregoraa945902013-02-18 15:53:43 +00003503 for (Decl *Prev = MostRecent; Prev != First;
Douglas Gregor2171bf12012-01-15 16:58:34 +00003504 Prev = Prev->getPreviousDecl()) {
3505 if (!Prev->isFromASTFile()) {
3506 AddDeclRef(Prev, LocalRedeclChains);
3507 ++Size;
3508 }
3509 }
Douglas Gregoraa945902013-02-18 15:53:43 +00003510
3511 if (!First->isFromASTFile() && Chain) {
3512 Decl *FirstFromAST = MostRecent;
3513 for (Decl *Prev = MostRecent; Prev; Prev = Prev->getPreviousDecl()) {
3514 if (Prev->isFromASTFile())
3515 FirstFromAST = Prev;
3516 }
3517
3518 Chain->MergedDecls[FirstFromAST].push_back(getDeclID(First));
3519 }
3520
Douglas Gregor2171bf12012-01-15 16:58:34 +00003521 LocalRedeclChains[Offset] = Size;
3522
3523 // Reverse the set of local redeclarations, so that we store them in
3524 // order (since we found them in reverse order).
3525 std::reverse(LocalRedeclChains.end() - Size, LocalRedeclChains.end());
3526
Douglas Gregoraa945902013-02-18 15:53:43 +00003527 // Add the mapping from the first ID from the AST to the set of local
3528 // declarations.
Douglas Gregor2171bf12012-01-15 16:58:34 +00003529 LocalRedeclarationsInfo Info = { getDeclID(First), Offset };
3530 LocalRedeclsMap.push_back(Info);
3531
3532 assert(N == Redeclarations.size() &&
3533 "Deserialized a declaration we shouldn't have");
3534 }
3535
3536 if (LocalRedeclChains.empty())
3537 return;
3538
3539 // Sort the local redeclarations map by the first declaration ID,
3540 // since the reader will be performing binary searches on this information.
3541 llvm::array_pod_sort(LocalRedeclsMap.begin(), LocalRedeclsMap.end());
3542
3543 // Emit the local redeclarations map.
3544 using namespace llvm;
3545 llvm::BitCodeAbbrev *Abbrev = new BitCodeAbbrev();
3546 Abbrev->Add(BitCodeAbbrevOp(LOCAL_REDECLARATIONS_MAP));
3547 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // # of entries
3548 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob));
3549 unsigned AbbrevID = Stream.EmitAbbrev(Abbrev);
3550
3551 RecordData Record;
3552 Record.push_back(LOCAL_REDECLARATIONS_MAP);
3553 Record.push_back(LocalRedeclsMap.size());
3554 Stream.EmitRecordWithBlob(AbbrevID, Record,
3555 reinterpret_cast<char*>(LocalRedeclsMap.data()),
3556 LocalRedeclsMap.size() * sizeof(LocalRedeclarationsInfo));
3557
3558 // Emit the redeclaration chains.
3559 Stream.EmitRecord(LOCAL_REDECLARATIONS, LocalRedeclChains);
3560}
3561
Douglas Gregorcff9f262012-01-27 01:47:08 +00003562void ASTWriter::WriteObjCCategories() {
Dmitri Gribenkocfa88f82013-01-12 19:30:44 +00003563 SmallVector<ObjCCategoriesInfo, 2> CategoriesMap;
Douglas Gregorcff9f262012-01-27 01:47:08 +00003564 RecordData Categories;
3565
3566 for (unsigned I = 0, N = ObjCClassesWithCategories.size(); I != N; ++I) {
3567 unsigned Size = 0;
3568 unsigned StartIndex = Categories.size();
3569
3570 ObjCInterfaceDecl *Class = ObjCClassesWithCategories[I];
3571
3572 // Allocate space for the size.
3573 Categories.push_back(0);
3574
3575 // Add the categories.
Douglas Gregord3297242013-01-16 23:00:23 +00003576 for (ObjCInterfaceDecl::known_categories_iterator
3577 Cat = Class->known_categories_begin(),
3578 CatEnd = Class->known_categories_end();
3579 Cat != CatEnd; ++Cat, ++Size) {
3580 assert(getDeclID(*Cat) != 0 && "Bogus category");
3581 AddDeclRef(*Cat, Categories);
Douglas Gregorcff9f262012-01-27 01:47:08 +00003582 }
3583
3584 // Update the size.
3585 Categories[StartIndex] = Size;
3586
3587 // Record this interface -> category map.
3588 ObjCCategoriesInfo CatInfo = { getDeclID(Class), StartIndex };
3589 CategoriesMap.push_back(CatInfo);
3590 }
3591
3592 // Sort the categories map by the definition ID, since the reader will be
3593 // performing binary searches on this information.
3594 llvm::array_pod_sort(CategoriesMap.begin(), CategoriesMap.end());
3595
3596 // Emit the categories map.
3597 using namespace llvm;
3598 llvm::BitCodeAbbrev *Abbrev = new BitCodeAbbrev();
3599 Abbrev->Add(BitCodeAbbrevOp(OBJC_CATEGORIES_MAP));
3600 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // # of entries
3601 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob));
3602 unsigned AbbrevID = Stream.EmitAbbrev(Abbrev);
3603
3604 RecordData Record;
3605 Record.push_back(OBJC_CATEGORIES_MAP);
3606 Record.push_back(CategoriesMap.size());
3607 Stream.EmitRecordWithBlob(AbbrevID, Record,
3608 reinterpret_cast<char*>(CategoriesMap.data()),
3609 CategoriesMap.size() * sizeof(ObjCCategoriesInfo));
3610
3611 // Emit the category lists.
3612 Stream.EmitRecord(OBJC_CATEGORIES, Categories);
3613}
3614
Douglas Gregorc3cfd2a2011-12-22 21:40:42 +00003615void ASTWriter::WriteMergedDecls() {
3616 if (!Chain || Chain->MergedDecls.empty())
3617 return;
3618
3619 RecordData Record;
3620 for (ASTReader::MergedDeclsMap::iterator I = Chain->MergedDecls.begin(),
3621 IEnd = Chain->MergedDecls.end();
3622 I != IEnd; ++I) {
Douglas Gregorb6b60c12012-01-05 22:27:05 +00003623 DeclID CanonID = I->first->isFromASTFile()? I->first->getGlobalID()
Douglas Gregorc3cfd2a2011-12-22 21:40:42 +00003624 : getDeclID(I->first);
3625 assert(CanonID && "Merged declaration not known?");
3626
3627 Record.push_back(CanonID);
3628 Record.push_back(I->second.size());
3629 Record.append(I->second.begin(), I->second.end());
3630 }
3631 Stream.EmitRecord(MERGED_DECLARATIONS, Record);
3632}
3633
Argyrios Kyrtzidis5d267682010-08-20 16:04:27 +00003634//===----------------------------------------------------------------------===//
Douglas Gregor4fed3f42009-04-27 18:38:38 +00003635// General Serialization Routines
3636//===----------------------------------------------------------------------===//
3637
Douglas Gregor68a2eb02009-04-15 21:30:51 +00003638/// \brief Write a record containing the given attributes.
Alexander Kornienko49908902012-07-09 10:04:07 +00003639void ASTWriter::WriteAttributes(ArrayRef<const Attr*> Attrs,
3640 RecordDataImpl &Record) {
Argyrios Kyrtzidis4eb9fc02010-10-18 19:20:11 +00003641 Record.push_back(Attrs.size());
Alexander Kornienko49908902012-07-09 10:04:07 +00003642 for (ArrayRef<const Attr *>::iterator i = Attrs.begin(),
3643 e = Attrs.end(); i != e; ++i){
3644 const Attr *A = *i;
Sean Huntcf807c42010-08-18 23:23:40 +00003645 Record.push_back(A->getKind()); // FIXME: stable encoding, target attrs
Argyrios Kyrtzidis768d6ca2011-09-13 16:05:58 +00003646 AddSourceRange(A->getRange(), Record);
Douglas Gregor68a2eb02009-04-15 21:30:51 +00003647
Sean Huntcf807c42010-08-18 23:23:40 +00003648#include "clang/Serialization/AttrPCHWrite.inc"
Daniel Dunbar4e9255f2010-05-27 02:25:39 +00003649
Douglas Gregor68a2eb02009-04-15 21:30:51 +00003650 }
Douglas Gregor68a2eb02009-04-15 21:30:51 +00003651}
3652
John McCallaeeacf72013-05-03 00:10:13 +00003653void ASTWriter::AddToken(const Token &Tok, RecordDataImpl &Record) {
3654 AddSourceLocation(Tok.getLocation(), Record);
3655 Record.push_back(Tok.getLength());
3656
3657 // FIXME: When reading literal tokens, reconstruct the literal pointer
3658 // if it is needed.
3659 AddIdentifierRef(Tok.getIdentifierInfo(), Record);
3660 // FIXME: Should translate token kind to a stable encoding.
3661 Record.push_back(Tok.getKind());
3662 // FIXME: Should translate token flags to a stable encoding.
3663 Record.push_back(Tok.getFlags());
3664}
3665
Chris Lattner5f9e2722011-07-23 10:55:15 +00003666void ASTWriter::AddString(StringRef Str, RecordDataImpl &Record) {
Douglas Gregor68a2eb02009-04-15 21:30:51 +00003667 Record.push_back(Str.size());
3668 Record.insert(Record.end(), Str.begin(), Str.end());
3669}
3670
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00003671void ASTWriter::AddVersionTuple(const VersionTuple &Version,
3672 RecordDataImpl &Record) {
3673 Record.push_back(Version.getMajor());
David Blaikiedc84cd52013-02-20 22:23:23 +00003674 if (Optional<unsigned> Minor = Version.getMinor())
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00003675 Record.push_back(*Minor + 1);
3676 else
3677 Record.push_back(0);
David Blaikiedc84cd52013-02-20 22:23:23 +00003678 if (Optional<unsigned> Subminor = Version.getSubminor())
Douglas Gregor0a0d2b12011-03-23 00:50:03 +00003679 Record.push_back(*Subminor + 1);
3680 else
3681 Record.push_back(0);
3682}
3683
Douglas Gregor3251ceb2009-04-20 20:36:09 +00003684/// \brief Note that the identifier II occurs at the given offset
3685/// within the identifier table.
Sebastian Redla4232eb2010-08-18 23:56:21 +00003686void ASTWriter::SetIdentifierOffset(const IdentifierInfo *II, uint32_t Offset) {
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003687 IdentID ID = IdentifierIDs[II];
Sebastian Redl3397c552010-08-18 23:56:27 +00003688 // Only store offsets new to this AST file. Other identifier names are looked
Sebastian Redlf2f0f032010-07-23 23:49:55 +00003689 // up earlier in the chain and thus don't need an offset.
3690 if (ID >= FirstIdentID)
3691 IdentifierOffsets[ID - FirstIdentID] = Offset;
Douglas Gregor3251ceb2009-04-20 20:36:09 +00003692}
3693
Douglas Gregor83941df2009-04-25 17:48:32 +00003694/// \brief Note that the selector Sel occurs at the given offset
3695/// within the method pool/selector table.
Sebastian Redla4232eb2010-08-18 23:56:21 +00003696void ASTWriter::SetSelectorOffset(Selector Sel, uint32_t Offset) {
Douglas Gregor83941df2009-04-25 17:48:32 +00003697 unsigned ID = SelectorIDs[Sel];
3698 assert(ID && "Unknown selector");
Sebastian Redle58aa892010-08-04 18:21:41 +00003699 // Don't record offsets for selectors that are also available in a different
3700 // file.
3701 if (ID < FirstSelectorID)
3702 return;
3703 SelectorOffsets[ID - FirstSelectorID] = Offset;
Douglas Gregor83941df2009-04-25 17:48:32 +00003704}
3705
Sebastian Redla4232eb2010-08-18 23:56:21 +00003706ASTWriter::ASTWriter(llvm::BitstreamWriter &Stream)
Douglas Gregore209e502011-12-06 01:10:29 +00003707 : Stream(Stream), Context(0), PP(0), Chain(0), WritingModule(0),
Argyrios Kyrtzidis7518b372012-07-02 19:19:01 +00003708 WritingAST(false), DoneWritingDeclsAndTypes(false),
3709 ASTHasCompilerErrors(false),
Douglas Gregor0a14e4b2011-08-03 16:05:40 +00003710 FirstDeclID(NUM_PREDEF_DECL_IDS), NextDeclID(FirstDeclID),
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003711 FirstTypeID(NUM_PREDEF_TYPE_IDS), NextTypeID(FirstTypeID),
Douglas Gregora8235d62012-10-09 23:05:51 +00003712 FirstIdentID(NUM_PREDEF_IDENT_IDS), NextIdentID(FirstIdentID),
3713 FirstMacroID(NUM_PREDEF_MACRO_IDS), NextMacroID(FirstMacroID),
Douglas Gregor26ced122011-12-01 00:59:36 +00003714 FirstSubmoduleID(NUM_PREDEF_SUBMODULE_IDS),
3715 NextSubmoduleID(FirstSubmoduleID),
Douglas Gregorb18b1fd2011-08-03 23:28:44 +00003716 FirstSelectorID(NUM_PREDEF_SELECTOR_IDS), NextSelectorID(FirstSelectorID),
Douglas Gregor77424bc2010-10-02 19:29:26 +00003717 CollectedStmts(&StmtsToEmit),
Sebastian Redle58aa892010-08-04 18:21:41 +00003718 NumStatements(0), NumMacros(0), NumLexicalDeclContexts(0),
Douglas Gregora72d8c42011-06-03 02:27:19 +00003719 NumVisibleDeclContexts(0),
Douglas Gregore92b8a12011-08-04 00:01:48 +00003720 NextCXXBaseSpecifiersID(1),
Jonathan D. Turner953c5642011-06-03 23:11:16 +00003721 DeclParmVarAbbrev(0), DeclContextLexicalAbbrev(0),
Douglas Gregora72d8c42011-06-03 02:27:19 +00003722 DeclContextVisibleLookupAbbrev(0), UpdateVisibleAbbrev(0),
3723 DeclRefExprAbbrev(0), CharacterLiteralAbbrev(0),
3724 DeclRecordAbbrev(0), IntegerLiteralAbbrev(0),
Jonathan D. Turner953c5642011-06-03 23:11:16 +00003725 DeclTypedefAbbrev(0),
3726 DeclVarAbbrev(0), DeclFieldAbbrev(0),
3727 DeclEnumAbbrev(0), DeclObjCIvarAbbrev(0)
Douglas Gregor7c789c12010-10-29 22:39:52 +00003728{
Sebastian Redl30c514c2010-07-14 23:45:08 +00003729}
Douglas Gregor2cf26342009-04-09 22:27:44 +00003730
Argyrios Kyrtzidis10f3df52011-10-28 22:54:21 +00003731ASTWriter::~ASTWriter() {
3732 for (FileDeclIDsTy::iterator
3733 I = FileDeclIDs.begin(), E = FileDeclIDs.end(); I != E; ++I)
3734 delete I->second;
3735}
3736
Argyrios Kyrtzidis4182ed62012-10-31 20:59:50 +00003737void ASTWriter::WriteAST(Sema &SemaRef,
Argyrios Kyrtzidis8e3df4d2011-02-15 17:54:22 +00003738 const std::string &OutputFile,
Argyrios Kyrtzidisbef35c92012-03-07 01:51:17 +00003739 Module *WritingModule, StringRef isysroot,
3740 bool hasErrors) {
Douglas Gregor61c5e342011-09-17 00:05:03 +00003741 WritingAST = true;
3742
Argyrios Kyrtzidisbef35c92012-03-07 01:51:17 +00003743 ASTHasCompilerErrors = hasErrors;
3744
Douglas Gregor2cf26342009-04-09 22:27:44 +00003745 // Emit the file header.
Douglas Gregorc9490c02009-04-16 22:23:12 +00003746 Stream.Emit((unsigned)'C', 8);
3747 Stream.Emit((unsigned)'P', 8);
3748 Stream.Emit((unsigned)'C', 8);
3749 Stream.Emit((unsigned)'H', 8);
Mike Stump1eb44332009-09-09 15:08:12 +00003750
Chris Lattnerb145b1e2009-04-26 22:26:21 +00003751 WriteBlockInfoBlock();
Douglas Gregor2cf26342009-04-09 22:27:44 +00003752
Douglas Gregor3b8043b2011-08-09 15:13:55 +00003753 Context = &SemaRef.Context;
Douglas Gregor185dbd72011-12-01 02:07:58 +00003754 PP = &SemaRef.PP;
Douglas Gregore209e502011-12-06 01:10:29 +00003755 this->WritingModule = WritingModule;
Argyrios Kyrtzidis4182ed62012-10-31 20:59:50 +00003756 WriteASTCore(SemaRef, isysroot, OutputFile, WritingModule);
Douglas Gregor3b8043b2011-08-09 15:13:55 +00003757 Context = 0;
Douglas Gregor185dbd72011-12-01 02:07:58 +00003758 PP = 0;
Douglas Gregore209e502011-12-06 01:10:29 +00003759 this->WritingModule = 0;
Douglas Gregor61c5e342011-09-17 00:05:03 +00003760
3761 WritingAST = false;
Sebastian Redl1dc13a12010-07-12 22:02:52 +00003762}
3763
Douglas Gregora2ee20a2011-07-27 21:45:57 +00003764template<typename Vector>
3765static void AddLazyVectorDecls(ASTWriter &Writer, Vector &Vec,
3766 ASTWriter::RecordData &Record) {
3767 for (typename Vector::iterator I = Vec.begin(0, true), E = Vec.end();
3768 I != E; ++I) {
3769 Writer.AddDeclRef(*I, Record);
3770 }
3771}
3772
Argyrios Kyrtzidis4182ed62012-10-31 20:59:50 +00003773void ASTWriter::WriteASTCore(Sema &SemaRef,
Douglas Gregor832d6202011-07-22 16:35:34 +00003774 StringRef isysroot,
Douglas Gregora8cc6ce2011-11-30 04:39:39 +00003775 const std::string &OutputFile,
Douglas Gregor1a4761e2011-11-30 23:21:26 +00003776 Module *WritingModule) {
Sebastian Redl1dc13a12010-07-12 22:02:52 +00003777 using namespace llvm;
3778
Argyrios Kyrtzidis975d3532013-03-14 04:44:56 +00003779 bool isModule = WritingModule != 0;
3780
Douglas Gregorecc2c092011-12-01 22:20:10 +00003781 // Make sure that the AST reader knows to finalize itself.
3782 if (Chain)
3783 Chain->finalizeForWriting();
3784
Sebastian Redl1dc13a12010-07-12 22:02:52 +00003785 ASTContext &Context = SemaRef.Context;
3786 Preprocessor &PP = SemaRef.PP;
3787
Douglas Gregor6bf2b9f2011-08-12 00:15:20 +00003788 // Set up predefined declaration IDs.
3789 DeclIDs[Context.getTranslationUnitDecl()] = PREDEF_DECL_TRANSLATION_UNIT_ID;
Douglas Gregor4dfd02a2011-08-12 05:46:01 +00003790 if (Context.ObjCIdDecl)
3791 DeclIDs[Context.ObjCIdDecl] = PREDEF_DECL_OBJC_ID_ID;
Douglas Gregor7a27ea52011-08-12 06:17:30 +00003792 if (Context.ObjCSelDecl)
3793 DeclIDs[Context.ObjCSelDecl] = PREDEF_DECL_OBJC_SEL_ID;
Douglas Gregor79d67262011-08-12 05:59:41 +00003794 if (Context.ObjCClassDecl)
3795 DeclIDs[Context.ObjCClassDecl] = PREDEF_DECL_OBJC_CLASS_ID;
Douglas Gregora6ea10e2012-01-17 18:09:05 +00003796 if (Context.ObjCProtocolClassDecl)
3797 DeclIDs[Context.ObjCProtocolClassDecl] = PREDEF_DECL_OBJC_PROTOCOL_ID;
Douglas Gregor772eeae2011-08-12 06:49:56 +00003798 if (Context.Int128Decl)
3799 DeclIDs[Context.Int128Decl] = PREDEF_DECL_INT_128_ID;
3800 if (Context.UInt128Decl)
3801 DeclIDs[Context.UInt128Decl] = PREDEF_DECL_UNSIGNED_INT_128_ID;
Douglas Gregore97179c2011-09-08 01:46:34 +00003802 if (Context.ObjCInstanceTypeDecl)
3803 DeclIDs[Context.ObjCInstanceTypeDecl] = PREDEF_DECL_OBJC_INSTANCETYPE_ID;
Meador Ingec5613b22012-06-16 03:34:49 +00003804 if (Context.BuiltinVaListDecl)
3805 DeclIDs[Context.getBuiltinVaListDecl()] = PREDEF_DECL_BUILTIN_VA_LIST_ID;
3806
Douglas Gregorb7c324f2011-08-12 01:39:19 +00003807 if (!Chain) {
3808 // Make sure that we emit IdentifierInfos (and any attached
3809 // declarations) for builtins. We don't need to do this when we're
3810 // emitting chained PCH files, because all of the builtins will be
3811 // in the original PCH file.
3812 // FIXME: Modules won't like this at all.
Douglas Gregor2deaea32009-04-22 18:49:13 +00003813 IdentifierTable &Table = PP.getIdentifierTable();
Chris Lattner5f9e2722011-07-23 10:55:15 +00003814 SmallVector<const char *, 32> BuiltinNames;
Douglas Gregor2deaea32009-04-22 18:49:13 +00003815 Context.BuiltinInfo.GetBuiltinNames(BuiltinNames,
David Blaikie4e4d0842012-03-11 07:00:24 +00003816 Context.getLangOpts().NoBuiltin);
Douglas Gregor2deaea32009-04-22 18:49:13 +00003817 for (unsigned I = 0, N = BuiltinNames.size(); I != N; ++I)
3818 getIdentifierRef(&Table.get(BuiltinNames[I]));
3819 }
3820
Douglas Gregoreee242f2011-10-27 09:33:13 +00003821 // If there are any out-of-date identifiers, bring them up to date.
3822 if (ExternalPreprocessorSource *ExtSource = PP.getExternalSource()) {
Douglas Gregor589dae72013-01-07 16:56:53 +00003823 // Find out-of-date identifiers.
3824 SmallVector<IdentifierInfo *, 4> OutOfDate;
Douglas Gregoreee242f2011-10-27 09:33:13 +00003825 for (IdentifierTable::iterator ID = PP.getIdentifierTable().begin(),
3826 IDEnd = PP.getIdentifierTable().end();
Douglas Gregor589dae72013-01-07 16:56:53 +00003827 ID != IDEnd; ++ID) {
Douglas Gregoreee242f2011-10-27 09:33:13 +00003828 if (ID->second->isOutOfDate())
Douglas Gregor589dae72013-01-07 16:56:53 +00003829 OutOfDate.push_back(ID->second);
3830 }
3831
3832 // Update the out-of-date identifiers.
3833 for (unsigned I = 0, N = OutOfDate.size(); I != N; ++I) {
3834 ExtSource->updateOutOfDateIdentifier(*OutOfDate[I]);
3835 }
Douglas Gregoreee242f2011-10-27 09:33:13 +00003836 }
3837
Chris Lattner63d65f82009-09-08 18:19:27 +00003838 // Build a record containing all of the tentative definitions in this file, in
Sebastian Redle9d12b62010-01-31 22:27:38 +00003839 // TentativeDefinitions order. Generally, this record will be empty for
Chris Lattner63d65f82009-09-08 18:19:27 +00003840 // headers.
Douglas Gregor4c0e86b2009-04-22 22:02:47 +00003841 RecordData TentativeDefinitions;
Douglas Gregora2ee20a2011-07-27 21:45:57 +00003842 AddLazyVectorDecls(*this, SemaRef.TentativeDefinitions, TentativeDefinitions);
Douglas Gregora8623202011-07-27 20:58:46 +00003843
Argyrios Kyrtzidis49b96d12010-08-13 18:42:17 +00003844 // Build a record containing all of the file scoped decls in this file.
3845 RecordData UnusedFileScopedDecls;
Argyrios Kyrtzidisfaf01f02013-03-14 04:45:00 +00003846 if (!isModule)
3847 AddLazyVectorDecls(*this, SemaRef.UnusedFileScopedDecls,
3848 UnusedFileScopedDecls);
Sebastian Redl40566802010-08-05 18:21:25 +00003849
Douglas Gregorb7c324f2011-08-12 01:39:19 +00003850 // Build a record containing all of the delegating constructors we still need
3851 // to resolve.
Sean Huntebcbe1d2011-05-04 23:29:54 +00003852 RecordData DelegatingCtorDecls;
Argyrios Kyrtzidis975d3532013-03-14 04:44:56 +00003853 if (!isModule)
3854 AddLazyVectorDecls(*this, SemaRef.DelegatingCtorDecls, DelegatingCtorDecls);
Sean Huntebcbe1d2011-05-04 23:29:54 +00003855
Douglas Gregorb7c324f2011-08-12 01:39:19 +00003856 // Write the set of weak, undeclared identifiers. We always write the
3857 // entire table, since later PCH files in a PCH chain are only interested in
3858 // the results at the end of the chain.
Argyrios Kyrtzidis72b90572010-08-05 09:48:08 +00003859 RecordData WeakUndeclaredIdentifiers;
3860 if (!SemaRef.WeakUndeclaredIdentifiers.empty()) {
Douglas Gregor31e37b22011-07-28 18:09:57 +00003861 for (llvm::DenseMap<IdentifierInfo*,WeakInfo>::iterator
Argyrios Kyrtzidis72b90572010-08-05 09:48:08 +00003862 I = SemaRef.WeakUndeclaredIdentifiers.begin(),
3863 E = SemaRef.WeakUndeclaredIdentifiers.end(); I != E; ++I) {
3864 AddIdentifierRef(I->first, WeakUndeclaredIdentifiers);
3865 AddIdentifierRef(I->second.getAlias(), WeakUndeclaredIdentifiers);
3866 AddSourceLocation(I->second.getLocation(), WeakUndeclaredIdentifiers);
3867 WeakUndeclaredIdentifiers.push_back(I->second.getUsed());
3868 }
3869 }
Kovarththanan Rajaratnam11a18f12010-03-14 07:06:50 +00003870
Richard Smith5ea6ef42013-01-10 23:43:47 +00003871 // Build a record containing all of the locally-scoped extern "C"
Douglas Gregor14c22f22009-04-22 22:18:58 +00003872 // declarations in this header file. Generally, this record will be
3873 // empty.
Richard Smith5ea6ef42013-01-10 23:43:47 +00003874 RecordData LocallyScopedExternCDecls;
Sebastian Redl3397c552010-08-18 23:56:27 +00003875 // FIXME: This is filling in the AST file in densemap order which is
Chris Lattner63d65f82009-09-08 18:19:27 +00003876 // nondeterminstic!
Mike Stump1eb44332009-09-09 15:08:12 +00003877 for (llvm::DenseMap<DeclarationName, NamedDecl *>::iterator
Richard Smith5ea6ef42013-01-10 23:43:47 +00003878 TD = SemaRef.LocallyScopedExternCDecls.begin(),
3879 TDEnd = SemaRef.LocallyScopedExternCDecls.end();
Douglas Gregorec12ce22011-07-28 14:20:37 +00003880 TD != TDEnd; ++TD) {
Douglas Gregor919814d2011-09-09 23:01:35 +00003881 if (!TD->second->isFromASTFile())
Richard Smith5ea6ef42013-01-10 23:43:47 +00003882 AddDeclRef(TD->second, LocallyScopedExternCDecls);
Douglas Gregorec12ce22011-07-28 14:20:37 +00003883 }
3884
Douglas Gregorb81c1702009-04-27 20:06:05 +00003885 // Build a record containing all of the ext_vector declarations.
3886 RecordData ExtVectorDecls;
Douglas Gregord58a0a52011-07-28 00:39:29 +00003887 AddLazyVectorDecls(*this, SemaRef.ExtVectorDecls, ExtVectorDecls);
Douglas Gregorb81c1702009-04-27 20:06:05 +00003888
Argyrios Kyrtzidisd455add2010-07-06 15:37:04 +00003889 // Build a record containing all of the VTable uses information.
3890 RecordData VTableUses;
Argyrios Kyrtzidisbe4ebcd2010-08-03 17:29:52 +00003891 if (!SemaRef.VTableUses.empty()) {
Argyrios Kyrtzidisbe4ebcd2010-08-03 17:29:52 +00003892 for (unsigned I = 0, N = SemaRef.VTableUses.size(); I != N; ++I) {
3893 AddDeclRef(SemaRef.VTableUses[I].first, VTableUses);
3894 AddSourceLocation(SemaRef.VTableUses[I].second, VTableUses);
3895 VTableUses.push_back(SemaRef.VTablesUsed[SemaRef.VTableUses[I].first]);
3896 }
Argyrios Kyrtzidisd455add2010-07-06 15:37:04 +00003897 }
3898
3899 // Build a record containing all of dynamic classes declarations.
3900 RecordData DynamicClasses;
Douglas Gregora126f172011-07-28 00:53:40 +00003901 AddLazyVectorDecls(*this, SemaRef.DynamicClasses, DynamicClasses);
Argyrios Kyrtzidisd455add2010-07-06 15:37:04 +00003902
Argyrios Kyrtzidis0e036382010-08-05 09:48:16 +00003903 // Build a record containing all of pending implicit instantiations.
Chandler Carruth62c78d52010-08-25 08:44:16 +00003904 RecordData PendingInstantiations;
Argyrios Kyrtzidis0e036382010-08-05 09:48:16 +00003905 for (std::deque<Sema::PendingImplicitInstantiation>::iterator
Chandler Carruth62c78d52010-08-25 08:44:16 +00003906 I = SemaRef.PendingInstantiations.begin(),
3907 N = SemaRef.PendingInstantiations.end(); I != N; ++I) {
3908 AddDeclRef(I->first, PendingInstantiations);
3909 AddSourceLocation(I->second, PendingInstantiations);
Argyrios Kyrtzidis0e036382010-08-05 09:48:16 +00003910 }
3911 assert(SemaRef.PendingLocalImplicitInstantiations.empty() &&
3912 "There are local ones at end of translation unit!");
3913
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00003914 // Build a record containing some declaration references.
3915 RecordData SemaDeclRefs;
3916 if (SemaRef.StdNamespace || SemaRef.StdBadAlloc) {
3917 AddDeclRef(SemaRef.getStdNamespace(), SemaDeclRefs);
3918 AddDeclRef(SemaRef.getStdBadAlloc(), SemaDeclRefs);
3919 }
3920
Peter Collingbourne14b6ba72011-02-09 21:04:32 +00003921 RecordData CUDASpecialDeclRefs;
3922 if (Context.getcudaConfigureCallDecl()) {
3923 AddDeclRef(Context.getcudaConfigureCallDecl(), CUDASpecialDeclRefs);
3924 }
3925
Douglas Gregord8bba9c2011-06-28 16:20:02 +00003926 // Build a record containing all of the known namespaces.
3927 RecordData KnownNamespaces;
Nick Lewycky01a41142013-01-26 00:35:08 +00003928 for (llvm::MapVector<NamespaceDecl*, bool>::iterator
Douglas Gregord8bba9c2011-06-28 16:20:02 +00003929 I = SemaRef.KnownNamespaces.begin(),
3930 IEnd = SemaRef.KnownNamespaces.end();
3931 I != IEnd; ++I) {
3932 if (!I->second)
3933 AddDeclRef(I->first, KnownNamespaces);
3934 }
Douglas Gregor1d9d9892012-10-18 05:31:06 +00003935
Nick Lewyckycd0655b2013-02-01 08:13:20 +00003936 // Build a record of all used, undefined objects that require definitions.
3937 RecordData UndefinedButUsed;
Nick Lewycky995e26b2013-01-31 03:23:57 +00003938
3939 SmallVector<std::pair<NamedDecl *, SourceLocation>, 16> Undefined;
Nick Lewyckycd0655b2013-02-01 08:13:20 +00003940 SemaRef.getUndefinedButUsed(Undefined);
Nick Lewycky995e26b2013-01-31 03:23:57 +00003941 for (SmallVectorImpl<std::pair<NamedDecl *, SourceLocation> >::iterator
3942 I = Undefined.begin(), E = Undefined.end(); I != E; ++I) {
Nick Lewyckycd0655b2013-02-01 08:13:20 +00003943 AddDeclRef(I->first, UndefinedButUsed);
3944 AddSourceLocation(I->second, UndefinedButUsed);
Nick Lewycky01a41142013-01-26 00:35:08 +00003945 }
3946
Douglas Gregor1d9d9892012-10-18 05:31:06 +00003947 // Write the control block
Douglas Gregorbbf38312012-10-24 16:50:34 +00003948 WriteControlBlock(PP, Context, isysroot, OutputFile);
Douglas Gregor1d9d9892012-10-18 05:31:06 +00003949
Sebastian Redl3397c552010-08-18 23:56:27 +00003950 // Write the remaining AST contents.
Douglas Gregorad1de002009-04-18 05:55:16 +00003951 RecordData Record;
Sebastian Redl8538e8d2010-08-18 23:57:32 +00003952 Stream.EnterSubblock(AST_BLOCK_ID, 5);
Douglas Gregorb7c324f2011-08-12 01:39:19 +00003953
Argyrios Kyrtzidis5e24f2d2012-12-13 21:38:23 +00003954 // This is so that older clang versions, before the introduction
3955 // of the control block, can read and reject the newer PCH format.
3956 Record.clear();
3957 Record.push_back(VERSION_MAJOR);
3958 Stream.EmitRecord(METADATA_OLD_FORMAT, Record);
3959
Douglas Gregorb7c324f2011-08-12 01:39:19 +00003960 // Create a lexical update block containing all of the declarations in the
3961 // translation unit that do not come from other AST files.
3962 const TranslationUnitDecl *TU = Context.getTranslationUnitDecl();
3963 SmallVector<KindDeclIDPair, 64> NewGlobalDecls;
3964 for (DeclContext::decl_iterator I = TU->noload_decls_begin(),
3965 E = TU->noload_decls_end();
3966 I != E; ++I) {
Douglas Gregor919814d2011-09-09 23:01:35 +00003967 if (!(*I)->isFromASTFile())
Douglas Gregorb7c324f2011-08-12 01:39:19 +00003968 NewGlobalDecls.push_back(std::make_pair((*I)->getKind(), GetDeclRef(*I)));
Douglas Gregorb7c324f2011-08-12 01:39:19 +00003969 }
3970
3971 llvm::BitCodeAbbrev *Abv = new llvm::BitCodeAbbrev();
3972 Abv->Add(llvm::BitCodeAbbrevOp(TU_UPDATE_LEXICAL));
3973 Abv->Add(llvm::BitCodeAbbrevOp(llvm::BitCodeAbbrevOp::Blob));
3974 unsigned TuUpdateLexicalAbbrev = Stream.EmitAbbrev(Abv);
3975 Record.clear();
3976 Record.push_back(TU_UPDATE_LEXICAL);
3977 Stream.EmitRecordWithBlob(TuUpdateLexicalAbbrev, Record,
3978 data(NewGlobalDecls));
3979
3980 // And a visible updates block for the translation unit.
3981 Abv = new llvm::BitCodeAbbrev();
3982 Abv->Add(llvm::BitCodeAbbrevOp(UPDATE_VISIBLE));
3983 Abv->Add(llvm::BitCodeAbbrevOp(llvm::BitCodeAbbrevOp::VBR, 6));
3984 Abv->Add(llvm::BitCodeAbbrevOp(llvm::BitCodeAbbrevOp::Fixed, 32));
3985 Abv->Add(llvm::BitCodeAbbrevOp(llvm::BitCodeAbbrevOp::Blob));
3986 UpdateVisibleAbbrev = Stream.EmitAbbrev(Abv);
3987 WriteDeclContextVisibleUpdate(TU);
3988
3989 // If the translation unit has an anonymous namespace, and we don't already
3990 // have an update block for it, write it as an update block.
3991 if (NamespaceDecl *NS = TU->getAnonymousNamespace()) {
3992 ASTWriter::UpdateRecord &Record = DeclUpdates[TU];
3993 if (Record.empty()) {
3994 Record.push_back(UPD_CXX_ADDED_ANONYMOUS_NAMESPACE);
Douglas Gregor61c5e342011-09-17 00:05:03 +00003995 Record.push_back(reinterpret_cast<uint64_t>(NS));
Douglas Gregorb7c324f2011-08-12 01:39:19 +00003996 }
3997 }
Argyrios Kyrtzidis7518b372012-07-02 19:19:01 +00003998
3999 // Make sure visible decls, added to DeclContexts previously loaded from
4000 // an AST file, are registered for serialization.
4001 for (SmallVector<const Decl *, 16>::iterator
4002 I = UpdatingVisibleDecls.begin(),
4003 E = UpdatingVisibleDecls.end(); I != E; ++I) {
4004 GetDeclRef(*I);
4005 }
4006
Argyrios Kyrtzidis67bc4ba2011-11-14 04:52:24 +00004007 // Resolve any declaration pointers within the declaration updates block.
Douglas Gregor61c5e342011-09-17 00:05:03 +00004008 ResolveDeclUpdatesBlocks();
Douglas Gregor61c5e342011-09-17 00:05:03 +00004009
Douglas Gregora119da02011-08-02 16:26:37 +00004010 // Form the record of special types.
4011 RecordData SpecialTypes;
Douglas Gregora119da02011-08-02 16:26:37 +00004012 AddTypeRef(Context.getRawCFConstantStringType(), SpecialTypes);
Douglas Gregora119da02011-08-02 16:26:37 +00004013 AddTypeRef(Context.getFILEType(), SpecialTypes);
4014 AddTypeRef(Context.getjmp_bufType(), SpecialTypes);
4015 AddTypeRef(Context.getsigjmp_bufType(), SpecialTypes);
4016 AddTypeRef(Context.ObjCIdRedefinitionType, SpecialTypes);
4017 AddTypeRef(Context.ObjCClassRedefinitionType, SpecialTypes);
Douglas Gregora119da02011-08-02 16:26:37 +00004018 AddTypeRef(Context.ObjCSelRedefinitionType, SpecialTypes);
Rafael Espindolae2d4f4e2011-11-13 21:51:09 +00004019 AddTypeRef(Context.getucontext_tType(), SpecialTypes);
Douglas Gregor185dbd72011-12-01 02:07:58 +00004020
Douglas Gregor366809a2009-04-26 03:49:13 +00004021 // Keep writing types and declarations until all types and
4022 // declarations have been written.
Douglas Gregora72d8c42011-06-03 02:27:19 +00004023 Stream.EnterSubblock(DECLTYPES_BLOCK_ID, NUM_ALLOWED_ABBREVS_SIZE);
Douglas Gregor61d60ee2009-10-17 00:13:19 +00004024 WriteDeclsBlockAbbrevs();
Douglas Gregorb7c324f2011-08-12 01:39:19 +00004025 for (DeclsToRewriteTy::iterator I = DeclsToRewrite.begin(),
4026 E = DeclsToRewrite.end();
4027 I != E; ++I)
4028 DeclTypesToEmit.push(const_cast<Decl*>(*I));
Douglas Gregor61d60ee2009-10-17 00:13:19 +00004029 while (!DeclTypesToEmit.empty()) {
4030 DeclOrType DOT = DeclTypesToEmit.front();
4031 DeclTypesToEmit.pop();
4032 if (DOT.isType())
4033 WriteType(DOT.getType());
4034 else
4035 WriteDecl(Context, DOT.getDecl());
4036 }
4037 Stream.ExitBlock();
Kovarththanan Rajaratnam11a18f12010-03-14 07:06:50 +00004038
Argyrios Kyrtzidis7518b372012-07-02 19:19:01 +00004039 DoneWritingDeclsAndTypes = true;
4040
Argyrios Kyrtzidis10f3df52011-10-28 22:54:21 +00004041 WriteFileDeclIDsMap();
4042 WriteSourceManagerBlock(Context.getSourceManager(), PP, isysroot);
Dmitri Gribenkoaa0cd852012-06-20 00:34:58 +00004043 WriteComments();
Argyrios Kyrtzidis10f3df52011-10-28 22:54:21 +00004044
4045 if (Chain) {
4046 // Write the mapping information describing our module dependencies and how
4047 // each of those modules were mapped into our own offset/ID space, so that
4048 // the reader can build the appropriate mapping to its own offset/ID space.
4049 // The map consists solely of a blob with the following format:
4050 // *(module-name-len:i16 module-name:len*i8
4051 // source-location-offset:i32
4052 // identifier-id:i32
4053 // preprocessed-entity-id:i32
4054 // macro-definition-id:i32
Douglas Gregor26ced122011-12-01 00:59:36 +00004055 // submodule-id:i32
Argyrios Kyrtzidis10f3df52011-10-28 22:54:21 +00004056 // selector-id:i32
4057 // declaration-id:i32
4058 // c++-base-specifiers-id:i32
4059 // type-id:i32)
4060 //
4061 llvm::BitCodeAbbrev *Abbrev = new BitCodeAbbrev();
4062 Abbrev->Add(BitCodeAbbrevOp(MODULE_OFFSET_MAP));
4063 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob));
4064 unsigned ModuleOffsetMapAbbrev = Stream.EmitAbbrev(Abbrev);
Dylan Noblesmithf7ccbad2012-02-05 02:13:05 +00004065 SmallString<2048> Buffer;
Argyrios Kyrtzidis10f3df52011-10-28 22:54:21 +00004066 {
4067 llvm::raw_svector_ostream Out(Buffer);
4068 for (ModuleManager::ModuleConstIterator M = Chain->ModuleMgr.begin(),
Douglas Gregoraf13bfc2011-12-02 18:58:38 +00004069 MEnd = Chain->ModuleMgr.end();
Argyrios Kyrtzidis10f3df52011-10-28 22:54:21 +00004070 M != MEnd; ++M) {
4071 StringRef FileName = (*M)->FileName;
4072 io::Emit16(Out, FileName.size());
4073 Out.write(FileName.data(), FileName.size());
4074 io::Emit32(Out, (*M)->SLocEntryBaseOffset);
4075 io::Emit32(Out, (*M)->BaseIdentifierID);
Douglas Gregora8235d62012-10-09 23:05:51 +00004076 io::Emit32(Out, (*M)->BaseMacroID);
Argyrios Kyrtzidis10f3df52011-10-28 22:54:21 +00004077 io::Emit32(Out, (*M)->BasePreprocessedEntityID);
Douglas Gregor26ced122011-12-01 00:59:36 +00004078 io::Emit32(Out, (*M)->BaseSubmoduleID);
Argyrios Kyrtzidis10f3df52011-10-28 22:54:21 +00004079 io::Emit32(Out, (*M)->BaseSelectorID);
4080 io::Emit32(Out, (*M)->BaseDeclID);
4081 io::Emit32(Out, (*M)->BaseTypeIndex);
4082 }
4083 }
4084 Record.clear();
4085 Record.push_back(MODULE_OFFSET_MAP);
4086 Stream.EmitRecordWithBlob(ModuleOffsetMapAbbrev, Record,
4087 Buffer.data(), Buffer.size());
4088 }
Argyrios Kyrtzidis975d3532013-03-14 04:44:56 +00004089 WritePreprocessor(PP, isModule);
Douglas Gregorcfbf1c72011-02-10 17:09:37 +00004090 WriteHeaderSearch(PP.getHeaderSearchInfo(), isysroot);
Sebastian Redl059612d2010-08-03 21:58:15 +00004091 WriteSelectors(SemaRef);
Fariborz Jahanian32019832010-07-23 19:11:11 +00004092 WriteReferencedSelectorsPool(SemaRef);
Argyrios Kyrtzidis975d3532013-03-14 04:44:56 +00004093 WriteIdentifierTable(PP, SemaRef.IdResolver, isModule);
Peter Collingbourne84bccea2011-02-15 19:46:30 +00004094 WriteFPPragmaOptions(SemaRef.getFPOptions());
4095 WriteOpenCLExtensions(SemaRef);
Douglas Gregor8f5dc7f2009-04-25 18:35:21 +00004096
Sebastian Redl1476ed42010-07-16 16:36:56 +00004097 WriteTypeDeclOffsets();
Argyrios Kyrtzidisea744ab2013-03-27 17:17:23 +00004098 WritePragmaDiagnosticMappings(Context.getDiagnostics(), isModule);
Douglas Gregorad1de002009-04-18 05:55:16 +00004099
Anders Carlssonc8505782011-03-06 18:41:18 +00004100 WriteCXXBaseSpecifiersOffsets();
Douglas Gregor7c789c12010-10-29 22:39:52 +00004101
Douglas Gregore209e502011-12-06 01:10:29 +00004102 // If we're emitting a module, write out the submodule information.
4103 if (WritingModule)
4104 WriteSubmodules(WritingModule);
4105
Douglas Gregora119da02011-08-02 16:26:37 +00004106 Stream.EmitRecord(SPECIAL_TYPES, SpecialTypes);
4107
Douglas Gregor4c0e86b2009-04-22 22:02:47 +00004108 // Write the record containing external, unnamed definitions.
Douglas Gregorfdd01722009-04-14 00:24:19 +00004109 if (!ExternalDefinitions.empty())
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004110 Stream.EmitRecord(EXTERNAL_DEFINITIONS, ExternalDefinitions);
Douglas Gregor4c0e86b2009-04-22 22:02:47 +00004111
4112 // Write the record containing tentative definitions.
4113 if (!TentativeDefinitions.empty())
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004114 Stream.EmitRecord(TENTATIVE_DEFINITIONS, TentativeDefinitions);
Douglas Gregor14c22f22009-04-22 22:18:58 +00004115
Argyrios Kyrtzidis49b96d12010-08-13 18:42:17 +00004116 // Write the record containing unused file scoped decls.
4117 if (!UnusedFileScopedDecls.empty())
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004118 Stream.EmitRecord(UNUSED_FILESCOPED_DECLS, UnusedFileScopedDecls);
Kovarththanan Rajaratnam11a18f12010-03-14 07:06:50 +00004119
Argyrios Kyrtzidis72b90572010-08-05 09:48:08 +00004120 // Write the record containing weak undeclared identifiers.
4121 if (!WeakUndeclaredIdentifiers.empty())
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004122 Stream.EmitRecord(WEAK_UNDECLARED_IDENTIFIERS,
Argyrios Kyrtzidis72b90572010-08-05 09:48:08 +00004123 WeakUndeclaredIdentifiers);
4124
Richard Smith5ea6ef42013-01-10 23:43:47 +00004125 // Write the record containing locally-scoped extern "C" definitions.
4126 if (!LocallyScopedExternCDecls.empty())
4127 Stream.EmitRecord(LOCALLY_SCOPED_EXTERN_C_DECLS,
4128 LocallyScopedExternCDecls);
Douglas Gregorb81c1702009-04-27 20:06:05 +00004129
4130 // Write the record containing ext_vector type names.
4131 if (!ExtVectorDecls.empty())
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004132 Stream.EmitRecord(EXT_VECTOR_DECLS, ExtVectorDecls);
Mike Stump1eb44332009-09-09 15:08:12 +00004133
Argyrios Kyrtzidisd455add2010-07-06 15:37:04 +00004134 // Write the record containing VTable uses information.
4135 if (!VTableUses.empty())
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004136 Stream.EmitRecord(VTABLE_USES, VTableUses);
Argyrios Kyrtzidisd455add2010-07-06 15:37:04 +00004137
4138 // Write the record containing dynamic classes declarations.
4139 if (!DynamicClasses.empty())
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004140 Stream.EmitRecord(DYNAMIC_CLASSES, DynamicClasses);
Argyrios Kyrtzidisd455add2010-07-06 15:37:04 +00004141
Argyrios Kyrtzidis0e036382010-08-05 09:48:16 +00004142 // Write the record containing pending implicit instantiations.
Chandler Carruth62c78d52010-08-25 08:44:16 +00004143 if (!PendingInstantiations.empty())
4144 Stream.EmitRecord(PENDING_IMPLICIT_INSTANTIATIONS, PendingInstantiations);
Argyrios Kyrtzidis0e036382010-08-05 09:48:16 +00004145
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00004146 // Write the record containing declaration references of Sema.
4147 if (!SemaDeclRefs.empty())
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004148 Stream.EmitRecord(SEMA_DECL_REFS, SemaDeclRefs);
Argyrios Kyrtzidis76c38d32010-08-02 07:14:54 +00004149
Peter Collingbourne14b6ba72011-02-09 21:04:32 +00004150 // Write the record containing CUDA-specific declaration references.
4151 if (!CUDASpecialDeclRefs.empty())
4152 Stream.EmitRecord(CUDA_SPECIAL_DECL_REFS, CUDASpecialDeclRefs);
Sean Huntebcbe1d2011-05-04 23:29:54 +00004153
4154 // Write the delegating constructors.
4155 if (!DelegatingCtorDecls.empty())
4156 Stream.EmitRecord(DELEGATING_CTORS, DelegatingCtorDecls);
Peter Collingbourne14b6ba72011-02-09 21:04:32 +00004157
Douglas Gregord8bba9c2011-06-28 16:20:02 +00004158 // Write the known namespaces.
4159 if (!KnownNamespaces.empty())
4160 Stream.EmitRecord(KNOWN_NAMESPACES, KnownNamespaces);
Nick Lewycky01a41142013-01-26 00:35:08 +00004161
Nick Lewyckycd0655b2013-02-01 08:13:20 +00004162 // Write the undefined internal functions and variables, and inline functions.
4163 if (!UndefinedButUsed.empty())
4164 Stream.EmitRecord(UNDEFINED_BUT_USED, UndefinedButUsed);
Douglas Gregord8bba9c2011-06-28 16:20:02 +00004165
Douglas Gregorb7c324f2011-08-12 01:39:19 +00004166 // Write the visible updates to DeclContexts.
4167 for (llvm::SmallPtrSet<const DeclContext *, 16>::iterator
4168 I = UpdatedDeclContexts.begin(),
4169 E = UpdatedDeclContexts.end();
4170 I != E; ++I)
4171 WriteDeclContextVisibleUpdate(*I);
4172
Douglas Gregorc5e0f9b2011-12-03 01:15:29 +00004173 if (!WritingModule) {
4174 // Write the submodules that were imported, if any.
4175 RecordData ImportedModules;
4176 for (ASTContext::import_iterator I = Context.local_import_begin(),
4177 IEnd = Context.local_import_end();
4178 I != IEnd; ++I) {
4179 assert(SubmoduleIDs.find(I->getImportedModule()) != SubmoduleIDs.end());
4180 ImportedModules.push_back(SubmoduleIDs[I->getImportedModule()]);
4181 }
4182 if (!ImportedModules.empty()) {
4183 // Sort module IDs.
4184 llvm::array_pod_sort(ImportedModules.begin(), ImportedModules.end());
4185
4186 // Unique module IDs.
4187 ImportedModules.erase(std::unique(ImportedModules.begin(),
4188 ImportedModules.end()),
4189 ImportedModules.end());
4190
4191 Stream.EmitRecord(IMPORTED_MODULES, ImportedModules);
4192 }
Douglas Gregorf6137e42011-12-03 00:59:55 +00004193 }
Douglas Gregora8235d62012-10-09 23:05:51 +00004194
Douglas Gregor6bf2b9f2011-08-12 00:15:20 +00004195 WriteDeclUpdatesBlocks();
Douglas Gregorb7c324f2011-08-12 01:39:19 +00004196 WriteDeclReplacementsBlock();
Douglas Gregor2171bf12012-01-15 16:58:34 +00004197 WriteRedeclarations();
Douglas Gregoraa945902013-02-18 15:53:43 +00004198 WriteMergedDecls();
Douglas Gregorcff9f262012-01-27 01:47:08 +00004199 WriteObjCCategories();
Douglas Gregora1be2782011-12-17 23:38:30 +00004200
Douglas Gregor3e1af842009-04-17 22:13:46 +00004201 // Some simple statistics
Douglas Gregorad1de002009-04-18 05:55:16 +00004202 Record.clear();
Douglas Gregor3e1af842009-04-17 22:13:46 +00004203 Record.push_back(NumStatements);
Douglas Gregor37e26842009-04-21 23:56:24 +00004204 Record.push_back(NumMacros);
Douglas Gregor25123082009-04-22 22:34:57 +00004205 Record.push_back(NumLexicalDeclContexts);
4206 Record.push_back(NumVisibleDeclContexts);
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004207 Stream.EmitRecord(STATISTICS, Record);
Douglas Gregorc9490c02009-04-16 22:23:12 +00004208 Stream.ExitBlock();
Douglas Gregor2cf26342009-04-09 22:27:44 +00004209}
4210
Douglas Gregor61c5e342011-09-17 00:05:03 +00004211/// \brief Go through the declaration update blocks and resolve declaration
4212/// pointers into declaration IDs.
4213void ASTWriter::ResolveDeclUpdatesBlocks() {
4214 for (DeclUpdateMap::iterator
4215 I = DeclUpdates.begin(), E = DeclUpdates.end(); I != E; ++I) {
4216 const Decl *D = I->first;
4217 UpdateRecord &URec = I->second;
4218
Argyrios Kyrtzidisad834d52011-11-12 21:07:46 +00004219 if (isRewritten(D))
Douglas Gregor61c5e342011-09-17 00:05:03 +00004220 continue; // The decl will be written completely
4221
4222 unsigned Idx = 0, N = URec.size();
4223 while (Idx < N) {
4224 switch ((DeclUpdateKind)URec[Idx++]) {
Douglas Gregor61c5e342011-09-17 00:05:03 +00004225 case UPD_CXX_ADDED_IMPLICIT_MEMBER:
4226 case UPD_CXX_ADDED_TEMPLATE_SPECIALIZATION:
4227 case UPD_CXX_ADDED_ANONYMOUS_NAMESPACE:
4228 URec[Idx] = GetDeclRef(reinterpret_cast<Decl *>(URec[Idx]));
4229 ++Idx;
4230 break;
4231
4232 case UPD_CXX_INSTANTIATED_STATIC_DATA_MEMBER:
4233 ++Idx;
4234 break;
4235 }
4236 }
4237 }
4238}
4239
Argyrios Kyrtzidisaacdd022010-10-24 17:26:43 +00004240void ASTWriter::WriteDeclUpdatesBlocks() {
Argyrios Kyrtzidis7b903402010-10-24 17:26:36 +00004241 if (DeclUpdates.empty())
4242 return;
4243
4244 RecordData OffsetsRecord;
Douglas Gregora72d8c42011-06-03 02:27:19 +00004245 Stream.EnterSubblock(DECL_UPDATES_BLOCK_ID, NUM_ALLOWED_ABBREVS_SIZE);
Argyrios Kyrtzidis7b903402010-10-24 17:26:36 +00004246 for (DeclUpdateMap::iterator
4247 I = DeclUpdates.begin(), E = DeclUpdates.end(); I != E; ++I) {
4248 const Decl *D = I->first;
4249 UpdateRecord &URec = I->second;
4250
Argyrios Kyrtzidisad834d52011-11-12 21:07:46 +00004251 if (isRewritten(D))
Argyrios Kyrtzidisba901b52010-10-24 17:26:46 +00004252 continue; // The decl will be written completely,no need to store updates.
4253
Argyrios Kyrtzidis7b903402010-10-24 17:26:36 +00004254 uint64_t Offset = Stream.GetCurrentBitNo();
4255 Stream.EmitRecord(DECL_UPDATES, URec);
4256
4257 OffsetsRecord.push_back(GetDeclRef(D));
4258 OffsetsRecord.push_back(Offset);
4259 }
4260 Stream.ExitBlock();
4261 Stream.EmitRecord(DECL_UPDATE_OFFSETS, OffsetsRecord);
4262}
4263
Argyrios Kyrtzidisaacdd022010-10-24 17:26:43 +00004264void ASTWriter::WriteDeclReplacementsBlock() {
Sebastian Redl0b17c612010-08-13 00:28:03 +00004265 if (ReplacedDecls.empty())
4266 return;
4267
4268 RecordData Record;
Argyrios Kyrtzidisef23b602011-10-31 07:20:15 +00004269 for (SmallVector<ReplacedDeclInfo, 16>::iterator
Sebastian Redl0b17c612010-08-13 00:28:03 +00004270 I = ReplacedDecls.begin(), E = ReplacedDecls.end(); I != E; ++I) {
Argyrios Kyrtzidisef23b602011-10-31 07:20:15 +00004271 Record.push_back(I->ID);
4272 Record.push_back(I->Offset);
4273 Record.push_back(I->Loc);
Sebastian Redl0b17c612010-08-13 00:28:03 +00004274 }
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004275 Stream.EmitRecord(DECL_REPLACEMENTS, Record);
Sebastian Redl0b17c612010-08-13 00:28:03 +00004276}
4277
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00004278void ASTWriter::AddSourceLocation(SourceLocation Loc, RecordDataImpl &Record) {
Douglas Gregor2cf26342009-04-09 22:27:44 +00004279 Record.push_back(Loc.getRawEncoding());
4280}
4281
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00004282void ASTWriter::AddSourceRange(SourceRange Range, RecordDataImpl &Record) {
Chris Lattner6ad9ac02010-05-07 21:43:38 +00004283 AddSourceLocation(Range.getBegin(), Record);
4284 AddSourceLocation(Range.getEnd(), Record);
4285}
4286
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00004287void ASTWriter::AddAPInt(const llvm::APInt &Value, RecordDataImpl &Record) {
Douglas Gregor2cf26342009-04-09 22:27:44 +00004288 Record.push_back(Value.getBitWidth());
Benjamin Kramer4ea884b2010-09-06 23:43:28 +00004289 const uint64_t *Words = Value.getRawData();
4290 Record.append(Words, Words + Value.getNumWords());
Douglas Gregor2cf26342009-04-09 22:27:44 +00004291}
4292
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00004293void ASTWriter::AddAPSInt(const llvm::APSInt &Value, RecordDataImpl &Record) {
Douglas Gregor0a2b45e2009-04-13 18:14:40 +00004294 Record.push_back(Value.isUnsigned());
4295 AddAPInt(Value, Record);
4296}
4297
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00004298void ASTWriter::AddAPFloat(const llvm::APFloat &Value, RecordDataImpl &Record) {
Douglas Gregor17fc2232009-04-14 21:55:33 +00004299 AddAPInt(Value.bitcastToAPInt(), Record);
4300}
4301
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00004302void ASTWriter::AddIdentifierRef(const IdentifierInfo *II, RecordDataImpl &Record) {
Douglas Gregor2deaea32009-04-22 18:49:13 +00004303 Record.push_back(getIdentifierRef(II));
4304}
4305
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004306IdentID ASTWriter::getIdentifierRef(const IdentifierInfo *II) {
Douglas Gregor2deaea32009-04-22 18:49:13 +00004307 if (II == 0)
4308 return 0;
Douglas Gregorafaf3082009-04-11 00:14:32 +00004309
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004310 IdentID &ID = IdentifierIDs[II];
Douglas Gregorafaf3082009-04-11 00:14:32 +00004311 if (ID == 0)
Sebastian Redlf2f0f032010-07-23 23:49:55 +00004312 ID = NextIdentID++;
Douglas Gregor2deaea32009-04-22 18:49:13 +00004313 return ID;
Douglas Gregor2cf26342009-04-09 22:27:44 +00004314}
4315
Argyrios Kyrtzidis9317ab92013-03-22 21:12:57 +00004316MacroID ASTWriter::getMacroRef(MacroInfo *MI, const IdentifierInfo *Name) {
Douglas Gregora8235d62012-10-09 23:05:51 +00004317 // Don't emit builtin macros like __LINE__ to the AST file unless they
4318 // have been redefined by the header (in which case they are not
4319 // isBuiltinMacro).
Argyrios Kyrtzidis9317ab92013-03-22 21:12:57 +00004320 if (MI == 0 || MI->isBuiltinMacro())
Douglas Gregora8235d62012-10-09 23:05:51 +00004321 return 0;
4322
Argyrios Kyrtzidis9317ab92013-03-22 21:12:57 +00004323 MacroID &ID = MacroIDs[MI];
4324 if (ID == 0) {
Douglas Gregora8235d62012-10-09 23:05:51 +00004325 ID = NextMacroID++;
Argyrios Kyrtzidis9317ab92013-03-22 21:12:57 +00004326 MacroInfoToEmitData Info = { Name, MI, ID };
4327 MacroInfosToEmit.push_back(Info);
4328 }
Douglas Gregora8235d62012-10-09 23:05:51 +00004329 return ID;
4330}
4331
Argyrios Kyrtzidis9317ab92013-03-22 21:12:57 +00004332MacroID ASTWriter::getMacroID(MacroInfo *MI) {
4333 if (MI == 0 || MI->isBuiltinMacro())
4334 return 0;
4335
4336 assert(MacroIDs.find(MI) != MacroIDs.end() && "Macro not emitted!");
4337 return MacroIDs[MI];
4338}
4339
4340uint64_t ASTWriter::getMacroDirectivesOffset(const IdentifierInfo *Name) {
4341 assert(IdentMacroDirectivesOffsetMap[Name] && "not set!");
4342 return IdentMacroDirectivesOffsetMap[Name];
4343}
4344
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00004345void ASTWriter::AddSelectorRef(const Selector SelRef, RecordDataImpl &Record) {
Sebastian Redl5d050072010-08-04 17:20:04 +00004346 Record.push_back(getSelectorRef(SelRef));
4347}
4348
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004349SelectorID ASTWriter::getSelectorRef(Selector Sel) {
Sebastian Redl5d050072010-08-04 17:20:04 +00004350 if (Sel.getAsOpaquePtr() == 0) {
4351 return 0;
Steve Naroff90cd1bb2009-04-23 10:39:46 +00004352 }
4353
Douglas Gregor2d1ece82013-02-08 21:30:59 +00004354 SelectorID SID = SelectorIDs[Sel];
Sebastian Redle58aa892010-08-04 18:21:41 +00004355 if (SID == 0 && Chain) {
4356 // This might trigger a ReadSelector callback, which will set the ID for
4357 // this selector.
4358 Chain->LoadSelector(Sel);
Douglas Gregor2d1ece82013-02-08 21:30:59 +00004359 SID = SelectorIDs[Sel];
Sebastian Redle58aa892010-08-04 18:21:41 +00004360 }
Steve Naroff90cd1bb2009-04-23 10:39:46 +00004361 if (SID == 0) {
Sebastian Redle58aa892010-08-04 18:21:41 +00004362 SID = NextSelectorID++;
Douglas Gregor2d1ece82013-02-08 21:30:59 +00004363 SelectorIDs[Sel] = SID;
Steve Naroff90cd1bb2009-04-23 10:39:46 +00004364 }
Sebastian Redl5d050072010-08-04 17:20:04 +00004365 return SID;
Steve Naroff90cd1bb2009-04-23 10:39:46 +00004366}
4367
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00004368void ASTWriter::AddCXXTemporary(const CXXTemporary *Temp, RecordDataImpl &Record) {
Chris Lattnerd2598362010-05-10 00:25:06 +00004369 AddDeclRef(Temp->getDestructor(), Record);
4370}
4371
Douglas Gregor7c789c12010-10-29 22:39:52 +00004372void ASTWriter::AddCXXBaseSpecifiersRef(CXXBaseSpecifier const *Bases,
4373 CXXBaseSpecifier const *BasesEnd,
4374 RecordDataImpl &Record) {
4375 assert(Bases != BasesEnd && "Empty base-specifier sets are not recorded");
4376 CXXBaseSpecifiersToWrite.push_back(
4377 QueuedCXXBaseSpecifiers(NextCXXBaseSpecifiersID,
4378 Bases, BasesEnd));
4379 Record.push_back(NextCXXBaseSpecifiersID++);
4380}
4381
Sebastian Redla4232eb2010-08-18 23:56:21 +00004382void ASTWriter::AddTemplateArgumentLocInfo(TemplateArgument::ArgKind Kind,
Argyrios Kyrtzidis44f8c372010-06-22 09:54:59 +00004383 const TemplateArgumentLocInfo &Arg,
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00004384 RecordDataImpl &Record) {
Argyrios Kyrtzidis44f8c372010-06-22 09:54:59 +00004385 switch (Kind) {
John McCall833ca992009-10-29 08:12:44 +00004386 case TemplateArgument::Expression:
Argyrios Kyrtzidis44f8c372010-06-22 09:54:59 +00004387 AddStmt(Arg.getAsExpr());
John McCall833ca992009-10-29 08:12:44 +00004388 break;
4389 case TemplateArgument::Type:
Argyrios Kyrtzidis44f8c372010-06-22 09:54:59 +00004390 AddTypeSourceInfo(Arg.getAsTypeSourceInfo(), Record);
John McCall833ca992009-10-29 08:12:44 +00004391 break;
Douglas Gregor788cd062009-11-11 01:00:40 +00004392 case TemplateArgument::Template:
Douglas Gregorb6744ef2011-03-02 17:09:35 +00004393 AddNestedNameSpecifierLoc(Arg.getTemplateQualifierLoc(), Record);
Argyrios Kyrtzidis17cfded2010-06-28 09:31:42 +00004394 AddSourceLocation(Arg.getTemplateNameLoc(), Record);
Douglas Gregora7fc9012011-01-05 18:58:31 +00004395 break;
4396 case TemplateArgument::TemplateExpansion:
Douglas Gregorb6744ef2011-03-02 17:09:35 +00004397 AddNestedNameSpecifierLoc(Arg.getTemplateQualifierLoc(), Record);
Douglas Gregora7fc9012011-01-05 18:58:31 +00004398 AddSourceLocation(Arg.getTemplateNameLoc(), Record);
Douglas Gregorba68eca2011-01-05 17:40:24 +00004399 AddSourceLocation(Arg.getTemplateEllipsisLoc(), Record);
Douglas Gregor788cd062009-11-11 01:00:40 +00004400 break;
John McCall833ca992009-10-29 08:12:44 +00004401 case TemplateArgument::Null:
4402 case TemplateArgument::Integral:
4403 case TemplateArgument::Declaration:
Eli Friedmand7a6b162012-09-26 02:36:12 +00004404 case TemplateArgument::NullPtr:
John McCall833ca992009-10-29 08:12:44 +00004405 case TemplateArgument::Pack:
Eli Friedmand7a6b162012-09-26 02:36:12 +00004406 // FIXME: Is this right?
John McCall833ca992009-10-29 08:12:44 +00004407 break;
4408 }
4409}
4410
Sebastian Redla4232eb2010-08-18 23:56:21 +00004411void ASTWriter::AddTemplateArgumentLoc(const TemplateArgumentLoc &Arg,
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00004412 RecordDataImpl &Record) {
Argyrios Kyrtzidis44f8c372010-06-22 09:54:59 +00004413 AddTemplateArgument(Arg.getArgument(), Record);
Argyrios Kyrtzidis17cfded2010-06-28 09:31:42 +00004414
4415 if (Arg.getArgument().getKind() == TemplateArgument::Expression) {
4416 bool InfoHasSameExpr
4417 = Arg.getArgument().getAsExpr() == Arg.getLocInfo().getAsExpr();
4418 Record.push_back(InfoHasSameExpr);
4419 if (InfoHasSameExpr)
4420 return; // Avoid storing the same expr twice.
4421 }
Argyrios Kyrtzidis44f8c372010-06-22 09:54:59 +00004422 AddTemplateArgumentLocInfo(Arg.getArgument().getKind(), Arg.getLocInfo(),
4423 Record);
4424}
4425
Douglas Gregordc355712011-02-25 00:36:19 +00004426void ASTWriter::AddTypeSourceInfo(TypeSourceInfo *TInfo,
4427 RecordDataImpl &Record) {
John McCalla93c9342009-12-07 02:54:59 +00004428 if (TInfo == 0) {
John McCalla1ee0c52009-10-16 21:56:05 +00004429 AddTypeRef(QualType(), Record);
4430 return;
4431 }
4432
Douglas Gregordc355712011-02-25 00:36:19 +00004433 AddTypeLoc(TInfo->getTypeLoc(), Record);
4434}
4435
4436void ASTWriter::AddTypeLoc(TypeLoc TL, RecordDataImpl &Record) {
4437 AddTypeRef(TL.getType(), Record);
4438
John McCalla1ee0c52009-10-16 21:56:05 +00004439 TypeLocWriter TLW(*this, Record);
Douglas Gregordc355712011-02-25 00:36:19 +00004440 for (; !TL.isNull(); TL = TL.getNextTypeLoc())
Kovarththanan Rajaratnam11a18f12010-03-14 07:06:50 +00004441 TLW.Visit(TL);
John McCalla1ee0c52009-10-16 21:56:05 +00004442}
4443
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00004444void ASTWriter::AddTypeRef(QualType T, RecordDataImpl &Record) {
Argyrios Kyrtzidis7fb35182010-08-20 16:04:14 +00004445 Record.push_back(GetOrCreateTypeID(T));
4446}
4447
Douglas Gregor3b8043b2011-08-09 15:13:55 +00004448TypeID ASTWriter::GetOrCreateTypeID( QualType T) {
4449 return MakeTypeID(*Context, T,
Argyrios Kyrtzidiseb3f04e2010-08-20 16:04:20 +00004450 std::bind1st(std::mem_fun(&ASTWriter::GetOrCreateTypeIdx), this));
4451}
Douglas Gregor2cf26342009-04-09 22:27:44 +00004452
Argyrios Kyrtzidis5d267682010-08-20 16:04:27 +00004453TypeID ASTWriter::getTypeID(QualType T) const {
Douglas Gregor3b8043b2011-08-09 15:13:55 +00004454 return MakeTypeID(*Context, T,
Argyrios Kyrtzidiseb3f04e2010-08-20 16:04:20 +00004455 std::bind1st(std::mem_fun(&ASTWriter::getTypeIdx), this));
Argyrios Kyrtzidis26fca902010-08-20 16:04:09 +00004456}
4457
4458TypeIdx ASTWriter::GetOrCreateTypeIdx(QualType T) {
4459 if (T.isNull())
4460 return TypeIdx();
4461 assert(!T.getLocalFastQualifiers());
4462
Argyrios Kyrtzidis01b81c42010-08-20 16:04:04 +00004463 TypeIdx &Idx = TypeIdxs[T];
Argyrios Kyrtzidisc8e5d512010-08-20 16:03:59 +00004464 if (Idx.getIndex() == 0) {
Argyrios Kyrtzidis7518b372012-07-02 19:19:01 +00004465 if (DoneWritingDeclsAndTypes) {
4466 assert(0 && "New type seen after serializing all the types to emit!");
4467 return TypeIdx();
4468 }
4469
Douglas Gregor366809a2009-04-26 03:49:13 +00004470 // We haven't seen this type before. Assign it a new ID and put it
John McCall0953e762009-09-24 19:53:00 +00004471 // into the queue of types to emit.
Argyrios Kyrtzidisc8e5d512010-08-20 16:03:59 +00004472 Idx = TypeIdx(NextTypeID++);
Douglas Gregor61d60ee2009-10-17 00:13:19 +00004473 DeclTypesToEmit.push(T);
Douglas Gregor366809a2009-04-26 03:49:13 +00004474 }
Argyrios Kyrtzidis26fca902010-08-20 16:04:09 +00004475 return Idx;
4476}
Douglas Gregor2cf26342009-04-09 22:27:44 +00004477
Argyrios Kyrtzidis5d267682010-08-20 16:04:27 +00004478TypeIdx ASTWriter::getTypeIdx(QualType T) const {
Argyrios Kyrtzidis26fca902010-08-20 16:04:09 +00004479 if (T.isNull())
4480 return TypeIdx();
4481 assert(!T.getLocalFastQualifiers());
4482
Argyrios Kyrtzidis5d267682010-08-20 16:04:27 +00004483 TypeIdxMap::const_iterator I = TypeIdxs.find(T);
4484 assert(I != TypeIdxs.end() && "Type not emitted!");
4485 return I->second;
Douglas Gregor2cf26342009-04-09 22:27:44 +00004486}
4487
Argyrios Kyrtzidis7b903402010-10-24 17:26:36 +00004488void ASTWriter::AddDeclRef(const Decl *D, RecordDataImpl &Record) {
Sebastian Redl681d7232010-07-27 00:17:23 +00004489 Record.push_back(GetDeclRef(D));
4490}
4491
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004492DeclID ASTWriter::GetDeclRef(const Decl *D) {
Douglas Gregor61c5e342011-09-17 00:05:03 +00004493 assert(WritingAST && "Cannot request a declaration ID before AST writing");
4494
Douglas Gregor2cf26342009-04-09 22:27:44 +00004495 if (D == 0) {
Sebastian Redl681d7232010-07-27 00:17:23 +00004496 return 0;
Douglas Gregor2cf26342009-04-09 22:27:44 +00004497 }
Douglas Gregor1c7946a2012-01-05 22:33:30 +00004498
4499 // If D comes from an AST file, its declaration ID is already known and
4500 // fixed.
4501 if (D->isFromASTFile())
4502 return D->getGlobalID();
4503
Douglas Gregor97475832010-10-05 18:37:06 +00004504 assert(!(reinterpret_cast<uintptr_t>(D) & 0x01) && "Invalid decl pointer");
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004505 DeclID &ID = DeclIDs[D];
Mike Stump1eb44332009-09-09 15:08:12 +00004506 if (ID == 0) {
Argyrios Kyrtzidis7518b372012-07-02 19:19:01 +00004507 if (DoneWritingDeclsAndTypes) {
4508 assert(0 && "New decl seen after serializing all the decls to emit!");
4509 return 0;
4510 }
4511
Douglas Gregor2cf26342009-04-09 22:27:44 +00004512 // We haven't seen this declaration before. Give it a new ID and
4513 // enqueue it in the list of declarations to emit.
Sebastian Redlf2f0f032010-07-23 23:49:55 +00004514 ID = NextDeclID++;
Douglas Gregor61d60ee2009-10-17 00:13:19 +00004515 DeclTypesToEmit.push(const_cast<Decl *>(D));
Douglas Gregor2cf26342009-04-09 22:27:44 +00004516 }
4517
Sebastian Redl681d7232010-07-27 00:17:23 +00004518 return ID;
Douglas Gregor2cf26342009-04-09 22:27:44 +00004519}
4520
Sebastian Redl8538e8d2010-08-18 23:57:32 +00004521DeclID ASTWriter::getDeclID(const Decl *D) {
Douglas Gregor3251ceb2009-04-20 20:36:09 +00004522 if (D == 0)
4523 return 0;
4524
Douglas Gregor1c7946a2012-01-05 22:33:30 +00004525 // If D comes from an AST file, its declaration ID is already known and
4526 // fixed.
4527 if (D->isFromASTFile())
4528 return D->getGlobalID();
4529
Douglas Gregor3251ceb2009-04-20 20:36:09 +00004530 assert(DeclIDs.find(D) != DeclIDs.end() && "Declaration not emitted!");
4531 return DeclIDs[D];
4532}
4533
Argyrios Kyrtzidis10f3df52011-10-28 22:54:21 +00004534static inline bool compLocDecl(std::pair<unsigned, serialization::DeclID> L,
4535 std::pair<unsigned, serialization::DeclID> R) {
4536 return L.first < R.first;
4537}
4538
Argyrios Kyrtzidis19645d22011-10-28 23:57:43 +00004539void ASTWriter::associateDeclWithFile(const Decl *D, DeclID ID) {
Argyrios Kyrtzidis10f3df52011-10-28 22:54:21 +00004540 assert(ID);
Argyrios Kyrtzidis19645d22011-10-28 23:57:43 +00004541 assert(D);
4542
4543 SourceLocation Loc = D->getLocation();
4544 if (Loc.isInvalid())
4545 return;
Argyrios Kyrtzidis10f3df52011-10-28 22:54:21 +00004546
4547 // We only keep track of the file-level declarations of each file.
4548 if (!D->getLexicalDeclContext()->isFileContext())
4549 return;
Argyrios Kyrtzidis69015c22012-02-24 19:45:46 +00004550 // FIXME: ParmVarDecls that are part of a function type of a parameter of
4551 // a function/objc method, should not have TU as lexical context.
Argyrios Kyrtzidis8cceefa2012-02-24 01:12:38 +00004552 if (isa<ParmVarDecl>(D))
4553 return;
Argyrios Kyrtzidis10f3df52011-10-28 22:54:21 +00004554
4555 SourceManager &SM = Context->getSourceManager();
Argyrios Kyrtzidis19645d22011-10-28 23:57:43 +00004556 SourceLocation FileLoc = SM.getFileLoc(Loc);
Argyrios Kyrtzidis10f3df52011-10-28 22:54:21 +00004557 assert(SM.isLocalSourceLocation(FileLoc));
Argyrios Kyrtzidisfab8d5b2011-10-28 23:57:47 +00004558 FileID FID;
4559 unsigned Offset;
4560 llvm::tie(FID, Offset) = SM.getDecomposedLoc(FileLoc);
Argyrios Kyrtzidis10f3df52011-10-28 22:54:21 +00004561 if (FID.isInvalid())
4562 return;
Argyrios Kyrtzidisa2ea4d92012-10-02 21:09:17 +00004563 assert(SM.getSLocEntry(FID).isFile());
Argyrios Kyrtzidis10f3df52011-10-28 22:54:21 +00004564
Argyrios Kyrtzidisa2ea4d92012-10-02 21:09:17 +00004565 DeclIDInFileInfo *&Info = FileDeclIDs[FID];
Argyrios Kyrtzidis10f3df52011-10-28 22:54:21 +00004566 if (!Info)
4567 Info = new DeclIDInFileInfo();
4568
Argyrios Kyrtzidisfab8d5b2011-10-28 23:57:47 +00004569 std::pair<unsigned, serialization::DeclID> LocDecl(Offset, ID);
Argyrios Kyrtzidis10f3df52011-10-28 22:54:21 +00004570 LocDeclIDsTy &Decls = Info->DeclIDs;
4571
Argyrios Kyrtzidisfab8d5b2011-10-28 23:57:47 +00004572 if (Decls.empty() || Decls.back().first <= Offset) {
Argyrios Kyrtzidis10f3df52011-10-28 22:54:21 +00004573 Decls.push_back(LocDecl);
4574 return;
4575 }
4576
4577 LocDeclIDsTy::iterator
4578 I = std::upper_bound(Decls.begin(), Decls.end(), LocDecl, compLocDecl);
4579
4580 Decls.insert(I, LocDecl);
4581}
4582
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00004583void ASTWriter::AddDeclarationName(DeclarationName Name, RecordDataImpl &Record) {
Chris Lattnerea5ce472009-04-27 07:35:58 +00004584 // FIXME: Emit a stable enum for NameKind. 0 = Identifier etc.
Douglas Gregor2cf26342009-04-09 22:27:44 +00004585 Record.push_back(Name.getNameKind());
4586 switch (Name.getNameKind()) {
4587 case DeclarationName::Identifier:
4588 AddIdentifierRef(Name.getAsIdentifierInfo(), Record);
4589 break;
4590
4591 case DeclarationName::ObjCZeroArgSelector:
4592 case DeclarationName::ObjCOneArgSelector:
4593 case DeclarationName::ObjCMultiArgSelector:
Steve Naroff90cd1bb2009-04-23 10:39:46 +00004594 AddSelectorRef(Name.getObjCSelector(), Record);
Douglas Gregor2cf26342009-04-09 22:27:44 +00004595 break;
4596
4597 case DeclarationName::CXXConstructorName:
4598 case DeclarationName::CXXDestructorName:
4599 case DeclarationName::CXXConversionFunctionName:
4600 AddTypeRef(Name.getCXXNameType(), Record);
4601 break;
4602
4603 case DeclarationName::CXXOperatorName:
4604 Record.push_back(Name.getCXXOverloadedOperator());
4605 break;
4606
Sean Hunt3e518bd2009-11-29 07:34:05 +00004607 case DeclarationName::CXXLiteralOperatorName:
4608 AddIdentifierRef(Name.getCXXLiteralIdentifier(), Record);
4609 break;
4610
Douglas Gregor2cf26342009-04-09 22:27:44 +00004611 case DeclarationName::CXXUsingDirective:
4612 // No extra data to emit
4613 break;
4614 }
4615}
Chris Lattner6ad9ac02010-05-07 21:43:38 +00004616
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +00004617void ASTWriter::AddDeclarationNameLoc(const DeclarationNameLoc &DNLoc,
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00004618 DeclarationName Name, RecordDataImpl &Record) {
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +00004619 switch (Name.getNameKind()) {
4620 case DeclarationName::CXXConstructorName:
4621 case DeclarationName::CXXDestructorName:
4622 case DeclarationName::CXXConversionFunctionName:
4623 AddTypeSourceInfo(DNLoc.NamedType.TInfo, Record);
4624 break;
4625
4626 case DeclarationName::CXXOperatorName:
4627 AddSourceLocation(
4628 SourceLocation::getFromRawEncoding(DNLoc.CXXOperatorName.BeginOpNameLoc),
4629 Record);
4630 AddSourceLocation(
4631 SourceLocation::getFromRawEncoding(DNLoc.CXXOperatorName.EndOpNameLoc),
4632 Record);
4633 break;
4634
4635 case DeclarationName::CXXLiteralOperatorName:
4636 AddSourceLocation(
4637 SourceLocation::getFromRawEncoding(DNLoc.CXXLiteralOperatorName.OpNameLoc),
4638 Record);
4639 break;
4640
4641 case DeclarationName::Identifier:
4642 case DeclarationName::ObjCZeroArgSelector:
4643 case DeclarationName::ObjCOneArgSelector:
4644 case DeclarationName::ObjCMultiArgSelector:
4645 case DeclarationName::CXXUsingDirective:
4646 break;
4647 }
4648}
4649
4650void ASTWriter::AddDeclarationNameInfo(const DeclarationNameInfo &NameInfo,
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00004651 RecordDataImpl &Record) {
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +00004652 AddDeclarationName(NameInfo.getName(), Record);
4653 AddSourceLocation(NameInfo.getLoc(), Record);
4654 AddDeclarationNameLoc(NameInfo.getInfo(), NameInfo.getName(), Record);
4655}
4656
4657void ASTWriter::AddQualifierInfo(const QualifierInfo &Info,
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00004658 RecordDataImpl &Record) {
Douglas Gregorc22b5ff2011-02-25 02:25:35 +00004659 AddNestedNameSpecifierLoc(Info.QualifierLoc, Record);
Argyrios Kyrtzidis40451072010-10-15 18:21:24 +00004660 Record.push_back(Info.NumTemplParamLists);
4661 for (unsigned i=0, e=Info.NumTemplParamLists; i != e; ++i)
4662 AddTemplateParameterList(Info.TemplParamLists[i], Record);
4663}
4664
Sebastian Redla4232eb2010-08-18 23:56:21 +00004665void ASTWriter::AddNestedNameSpecifier(NestedNameSpecifier *NNS,
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00004666 RecordDataImpl &Record) {
Chris Lattner6ad9ac02010-05-07 21:43:38 +00004667 // Nested name specifiers usually aren't too long. I think that 8 would
Chris Lattnerfc8f0e12011-04-15 05:22:18 +00004668 // typically accommodate the vast majority.
Chris Lattner5f9e2722011-07-23 10:55:15 +00004669 SmallVector<NestedNameSpecifier *, 8> NestedNames;
Chris Lattner6ad9ac02010-05-07 21:43:38 +00004670
4671 // Push each of the NNS's onto a stack for serialization in reverse order.
4672 while (NNS) {
4673 NestedNames.push_back(NNS);
4674 NNS = NNS->getPrefix();
4675 }
4676
4677 Record.push_back(NestedNames.size());
4678 while(!NestedNames.empty()) {
4679 NNS = NestedNames.pop_back_val();
4680 NestedNameSpecifier::SpecifierKind Kind = NNS->getKind();
4681 Record.push_back(Kind);
4682 switch (Kind) {
4683 case NestedNameSpecifier::Identifier:
4684 AddIdentifierRef(NNS->getAsIdentifier(), Record);
4685 break;
4686
4687 case NestedNameSpecifier::Namespace:
4688 AddDeclRef(NNS->getAsNamespace(), Record);
4689 break;
4690
Douglas Gregor14aba762011-02-24 02:36:08 +00004691 case NestedNameSpecifier::NamespaceAlias:
4692 AddDeclRef(NNS->getAsNamespaceAlias(), Record);
4693 break;
4694
Chris Lattner6ad9ac02010-05-07 21:43:38 +00004695 case NestedNameSpecifier::TypeSpec:
4696 case NestedNameSpecifier::TypeSpecWithTemplate:
4697 AddTypeRef(QualType(NNS->getAsType(), 0), Record);
4698 Record.push_back(Kind == NestedNameSpecifier::TypeSpecWithTemplate);
4699 break;
4700
4701 case NestedNameSpecifier::Global:
4702 // Don't need to write an associated value.
4703 break;
4704 }
4705 }
4706}
Argyrios Kyrtzidis90b715e2010-06-19 19:28:53 +00004707
Douglas Gregordc355712011-02-25 00:36:19 +00004708void ASTWriter::AddNestedNameSpecifierLoc(NestedNameSpecifierLoc NNS,
4709 RecordDataImpl &Record) {
4710 // Nested name specifiers usually aren't too long. I think that 8 would
Chris Lattnerfc8f0e12011-04-15 05:22:18 +00004711 // typically accommodate the vast majority.
Chris Lattner5f9e2722011-07-23 10:55:15 +00004712 SmallVector<NestedNameSpecifierLoc , 8> NestedNames;
Douglas Gregordc355712011-02-25 00:36:19 +00004713
4714 // Push each of the nested-name-specifiers's onto a stack for
4715 // serialization in reverse order.
4716 while (NNS) {
4717 NestedNames.push_back(NNS);
4718 NNS = NNS.getPrefix();
4719 }
4720
4721 Record.push_back(NestedNames.size());
4722 while(!NestedNames.empty()) {
4723 NNS = NestedNames.pop_back_val();
4724 NestedNameSpecifier::SpecifierKind Kind
4725 = NNS.getNestedNameSpecifier()->getKind();
4726 Record.push_back(Kind);
4727 switch (Kind) {
4728 case NestedNameSpecifier::Identifier:
4729 AddIdentifierRef(NNS.getNestedNameSpecifier()->getAsIdentifier(), Record);
4730 AddSourceRange(NNS.getLocalSourceRange(), Record);
4731 break;
4732
4733 case NestedNameSpecifier::Namespace:
4734 AddDeclRef(NNS.getNestedNameSpecifier()->getAsNamespace(), Record);
4735 AddSourceRange(NNS.getLocalSourceRange(), Record);
4736 break;
4737
4738 case NestedNameSpecifier::NamespaceAlias:
4739 AddDeclRef(NNS.getNestedNameSpecifier()->getAsNamespaceAlias(), Record);
4740 AddSourceRange(NNS.getLocalSourceRange(), Record);
4741 break;
4742
4743 case NestedNameSpecifier::TypeSpec:
4744 case NestedNameSpecifier::TypeSpecWithTemplate:
4745 Record.push_back(Kind == NestedNameSpecifier::TypeSpecWithTemplate);
4746 AddTypeLoc(NNS.getTypeLoc(), Record);
4747 AddSourceLocation(NNS.getLocalSourceRange().getEnd(), Record);
4748 break;
4749
4750 case NestedNameSpecifier::Global:
4751 AddSourceLocation(NNS.getLocalSourceRange().getEnd(), Record);
4752 break;
4753 }
4754 }
4755}
4756
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00004757void ASTWriter::AddTemplateName(TemplateName Name, RecordDataImpl &Record) {
Michael J. Spencer20249a12010-10-21 03:16:25 +00004758 TemplateName::NameKind Kind = Name.getKind();
Argyrios Kyrtzidis90b715e2010-06-19 19:28:53 +00004759 Record.push_back(Kind);
4760 switch (Kind) {
4761 case TemplateName::Template:
4762 AddDeclRef(Name.getAsTemplateDecl(), Record);
4763 break;
4764
4765 case TemplateName::OverloadedTemplate: {
4766 OverloadedTemplateStorage *OvT = Name.getAsOverloadedTemplate();
4767 Record.push_back(OvT->size());
4768 for (OverloadedTemplateStorage::iterator I = OvT->begin(), E = OvT->end();
4769 I != E; ++I)
4770 AddDeclRef(*I, Record);
4771 break;
4772 }
Michael J. Spencer20249a12010-10-21 03:16:25 +00004773
Argyrios Kyrtzidis90b715e2010-06-19 19:28:53 +00004774 case TemplateName::QualifiedTemplate: {
4775 QualifiedTemplateName *QualT = Name.getAsQualifiedTemplateName();
4776 AddNestedNameSpecifier(QualT->getQualifier(), Record);
4777 Record.push_back(QualT->hasTemplateKeyword());
4778 AddDeclRef(QualT->getTemplateDecl(), Record);
4779 break;
4780 }
Michael J. Spencer20249a12010-10-21 03:16:25 +00004781
Argyrios Kyrtzidis90b715e2010-06-19 19:28:53 +00004782 case TemplateName::DependentTemplate: {
4783 DependentTemplateName *DepT = Name.getAsDependentTemplateName();
4784 AddNestedNameSpecifier(DepT->getQualifier(), Record);
4785 Record.push_back(DepT->isIdentifier());
4786 if (DepT->isIdentifier())
4787 AddIdentifierRef(DepT->getIdentifier(), Record);
4788 else
4789 Record.push_back(DepT->getOperator());
4790 break;
4791 }
John McCall14606042011-06-30 08:33:18 +00004792
4793 case TemplateName::SubstTemplateTemplateParm: {
4794 SubstTemplateTemplateParmStorage *subst
4795 = Name.getAsSubstTemplateTemplateParm();
4796 AddDeclRef(subst->getParameter(), Record);
4797 AddTemplateName(subst->getReplacement(), Record);
4798 break;
4799 }
Douglas Gregor1aee05d2011-01-15 06:45:20 +00004800
4801 case TemplateName::SubstTemplateTemplateParmPack: {
4802 SubstTemplateTemplateParmPackStorage *SubstPack
4803 = Name.getAsSubstTemplateTemplateParmPack();
4804 AddDeclRef(SubstPack->getParameterPack(), Record);
4805 AddTemplateArgument(SubstPack->getArgumentPack(), Record);
4806 break;
4807 }
Argyrios Kyrtzidis90b715e2010-06-19 19:28:53 +00004808 }
4809}
4810
Michael J. Spencer20249a12010-10-21 03:16:25 +00004811void ASTWriter::AddTemplateArgument(const TemplateArgument &Arg,
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00004812 RecordDataImpl &Record) {
Argyrios Kyrtzidis90b715e2010-06-19 19:28:53 +00004813 Record.push_back(Arg.getKind());
4814 switch (Arg.getKind()) {
4815 case TemplateArgument::Null:
4816 break;
4817 case TemplateArgument::Type:
4818 AddTypeRef(Arg.getAsType(), Record);
4819 break;
4820 case TemplateArgument::Declaration:
4821 AddDeclRef(Arg.getAsDecl(), Record);
Eli Friedmand7a6b162012-09-26 02:36:12 +00004822 Record.push_back(Arg.isDeclForReferenceParam());
4823 break;
4824 case TemplateArgument::NullPtr:
4825 AddTypeRef(Arg.getNullPtrType(), Record);
Argyrios Kyrtzidis90b715e2010-06-19 19:28:53 +00004826 break;
4827 case TemplateArgument::Integral:
Benjamin Kramer85524372012-06-07 15:09:51 +00004828 AddAPSInt(Arg.getAsIntegral(), Record);
Argyrios Kyrtzidis90b715e2010-06-19 19:28:53 +00004829 AddTypeRef(Arg.getIntegralType(), Record);
4830 break;
4831 case TemplateArgument::Template:
Douglas Gregor2be29f42011-01-14 23:41:42 +00004832 AddTemplateName(Arg.getAsTemplateOrTemplatePattern(), Record);
4833 break;
Douglas Gregora7fc9012011-01-05 18:58:31 +00004834 case TemplateArgument::TemplateExpansion:
4835 AddTemplateName(Arg.getAsTemplateOrTemplatePattern(), Record);
David Blaikiedc84cd52013-02-20 22:23:23 +00004836 if (Optional<unsigned> NumExpansions = Arg.getNumTemplateExpansions())
Douglas Gregor2be29f42011-01-14 23:41:42 +00004837 Record.push_back(*NumExpansions + 1);
4838 else
4839 Record.push_back(0);
Argyrios Kyrtzidis90b715e2010-06-19 19:28:53 +00004840 break;
4841 case TemplateArgument::Expression:
4842 AddStmt(Arg.getAsExpr());
4843 break;
4844 case TemplateArgument::Pack:
4845 Record.push_back(Arg.pack_size());
4846 for (TemplateArgument::pack_iterator I=Arg.pack_begin(), E=Arg.pack_end();
4847 I != E; ++I)
4848 AddTemplateArgument(*I, Record);
4849 break;
4850 }
4851}
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00004852
4853void
Sebastian Redla4232eb2010-08-18 23:56:21 +00004854ASTWriter::AddTemplateParameterList(const TemplateParameterList *TemplateParams,
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00004855 RecordDataImpl &Record) {
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00004856 assert(TemplateParams && "No TemplateParams!");
4857 AddSourceLocation(TemplateParams->getTemplateLoc(), Record);
4858 AddSourceLocation(TemplateParams->getLAngleLoc(), Record);
4859 AddSourceLocation(TemplateParams->getRAngleLoc(), Record);
4860 Record.push_back(TemplateParams->size());
4861 for (TemplateParameterList::const_iterator
4862 P = TemplateParams->begin(), PEnd = TemplateParams->end();
4863 P != PEnd; ++P)
4864 AddDeclRef(*P, Record);
4865}
4866
4867/// \brief Emit a template argument list.
4868void
Sebastian Redla4232eb2010-08-18 23:56:21 +00004869ASTWriter::AddTemplateArgumentList(const TemplateArgumentList *TemplateArgs,
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00004870 RecordDataImpl &Record) {
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00004871 assert(TemplateArgs && "No TemplateArgs!");
Douglas Gregor910f8002010-11-07 23:05:16 +00004872 Record.push_back(TemplateArgs->size());
4873 for (int i=0, e = TemplateArgs->size(); i != e; ++i)
Argyrios Kyrtzidisdd41c142010-06-23 13:48:30 +00004874 AddTemplateArgument(TemplateArgs->get(i), Record);
4875}
Argyrios Kyrtzidis37ffed32010-07-02 11:55:32 +00004876
4877
4878void
Argyrios Kyrtzidis2a82ca22012-11-28 03:56:16 +00004879ASTWriter::AddUnresolvedSet(const ASTUnresolvedSet &Set, RecordDataImpl &Record) {
Argyrios Kyrtzidis37ffed32010-07-02 11:55:32 +00004880 Record.push_back(Set.size());
Argyrios Kyrtzidis2a82ca22012-11-28 03:56:16 +00004881 for (ASTUnresolvedSet::const_iterator
Argyrios Kyrtzidis37ffed32010-07-02 11:55:32 +00004882 I = Set.begin(), E = Set.end(); I != E; ++I) {
4883 AddDeclRef(I.getDecl(), Record);
4884 Record.push_back(I.getAccess());
4885 }
4886}
Argyrios Kyrtzidis0745d0a2010-07-02 23:30:27 +00004887
Sebastian Redla4232eb2010-08-18 23:56:21 +00004888void ASTWriter::AddCXXBaseSpecifier(const CXXBaseSpecifier &Base,
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00004889 RecordDataImpl &Record) {
Argyrios Kyrtzidis0745d0a2010-07-02 23:30:27 +00004890 Record.push_back(Base.isVirtual());
4891 Record.push_back(Base.isBaseOfClass());
4892 Record.push_back(Base.getAccessSpecifierAsWritten());
Sebastian Redlf677ea32011-02-05 19:23:19 +00004893 Record.push_back(Base.getInheritConstructors());
Nick Lewycky56062202010-07-26 16:56:01 +00004894 AddTypeSourceInfo(Base.getTypeSourceInfo(), Record);
Argyrios Kyrtzidis0745d0a2010-07-02 23:30:27 +00004895 AddSourceRange(Base.getSourceRange(), Record);
Douglas Gregorf90b27a2011-01-03 22:36:02 +00004896 AddSourceLocation(Base.isPackExpansion()? Base.getEllipsisLoc()
4897 : SourceLocation(),
4898 Record);
Argyrios Kyrtzidis0745d0a2010-07-02 23:30:27 +00004899}
Sebastian Redl30c514c2010-07-14 23:45:08 +00004900
Douglas Gregor7c789c12010-10-29 22:39:52 +00004901void ASTWriter::FlushCXXBaseSpecifiers() {
4902 RecordData Record;
4903 for (unsigned I = 0, N = CXXBaseSpecifiersToWrite.size(); I != N; ++I) {
4904 Record.clear();
4905
4906 // Record the offset of this base-specifier set.
Douglas Gregore92b8a12011-08-04 00:01:48 +00004907 unsigned Index = CXXBaseSpecifiersToWrite[I].ID - 1;
Douglas Gregor7c789c12010-10-29 22:39:52 +00004908 if (Index == CXXBaseSpecifiersOffsets.size())
4909 CXXBaseSpecifiersOffsets.push_back(Stream.GetCurrentBitNo());
4910 else {
4911 if (Index > CXXBaseSpecifiersOffsets.size())
4912 CXXBaseSpecifiersOffsets.resize(Index + 1);
4913 CXXBaseSpecifiersOffsets[Index] = Stream.GetCurrentBitNo();
4914 }
4915
4916 const CXXBaseSpecifier *B = CXXBaseSpecifiersToWrite[I].Bases,
4917 *BEnd = CXXBaseSpecifiersToWrite[I].BasesEnd;
4918 Record.push_back(BEnd - B);
4919 for (; B != BEnd; ++B)
4920 AddCXXBaseSpecifier(*B, Record);
4921 Stream.EmitRecord(serialization::DECL_CXX_BASE_SPECIFIERS, Record);
Douglas Gregoracec34b2010-10-30 04:28:16 +00004922
4923 // Flush any expressions that were written as part of the base specifiers.
4924 FlushStmts();
Douglas Gregor7c789c12010-10-29 22:39:52 +00004925 }
4926
4927 CXXBaseSpecifiersToWrite.clear();
4928}
4929
Sean Huntcbb67482011-01-08 20:30:50 +00004930void ASTWriter::AddCXXCtorInitializers(
4931 const CXXCtorInitializer * const *CtorInitializers,
4932 unsigned NumCtorInitializers,
4933 RecordDataImpl &Record) {
4934 Record.push_back(NumCtorInitializers);
4935 for (unsigned i=0; i != NumCtorInitializers; ++i) {
4936 const CXXCtorInitializer *Init = CtorInitializers[i];
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00004937
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00004938 if (Init->isBaseInitializer()) {
Sean Hunt156b6402011-05-04 01:19:08 +00004939 Record.push_back(CTOR_INITIALIZER_BASE);
Douglas Gregor76852c22011-11-01 01:16:03 +00004940 AddTypeSourceInfo(Init->getTypeSourceInfo(), Record);
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00004941 Record.push_back(Init->isBaseVirtual());
Sean Hunt156b6402011-05-04 01:19:08 +00004942 } else if (Init->isDelegatingInitializer()) {
4943 Record.push_back(CTOR_INITIALIZER_DELEGATING);
Douglas Gregor76852c22011-11-01 01:16:03 +00004944 AddTypeSourceInfo(Init->getTypeSourceInfo(), Record);
Sean Hunt156b6402011-05-04 01:19:08 +00004945 } else if (Init->isMemberInitializer()){
4946 Record.push_back(CTOR_INITIALIZER_MEMBER);
4947 AddDeclRef(Init->getMember(), Record);
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00004948 } else {
Sean Hunt156b6402011-05-04 01:19:08 +00004949 Record.push_back(CTOR_INITIALIZER_INDIRECT_MEMBER);
4950 AddDeclRef(Init->getIndirectMember(), Record);
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00004951 }
Francois Pichet00eb3f92010-12-04 09:14:42 +00004952
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00004953 AddSourceLocation(Init->getMemberLocation(), Record);
4954 AddStmt(Init->getInit());
Argyrios Kyrtzidis8e706f42010-08-09 10:54:12 +00004955 AddSourceLocation(Init->getLParenLoc(), Record);
4956 AddSourceLocation(Init->getRParenLoc(), Record);
4957 Record.push_back(Init->isWritten());
4958 if (Init->isWritten()) {
4959 Record.push_back(Init->getSourceOrder());
4960 } else {
4961 Record.push_back(Init->getNumArrayIndices());
4962 for (unsigned i=0, e=Init->getNumArrayIndices(); i != e; ++i)
4963 AddDeclRef(Init->getArrayIndex(i), Record);
4964 }
4965 }
4966}
4967
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00004968void ASTWriter::AddCXXDefinitionData(const CXXRecordDecl *D, RecordDataImpl &Record) {
4969 assert(D->DefinitionData);
4970 struct CXXRecordDecl::DefinitionData &Data = *D->DefinitionData;
Douglas Gregor9d36f5d2012-02-14 17:54:36 +00004971 Record.push_back(Data.IsLambda);
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00004972 Record.push_back(Data.UserDeclaredConstructor);
Richard Smith7d04d3a2012-11-30 05:11:39 +00004973 Record.push_back(Data.UserDeclaredSpecialMembers);
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00004974 Record.push_back(Data.Aggregate);
4975 Record.push_back(Data.PlainOldData);
4976 Record.push_back(Data.Empty);
4977 Record.push_back(Data.Polymorphic);
4978 Record.push_back(Data.Abstract);
Chandler Carruthec997dc2011-04-30 10:07:30 +00004979 Record.push_back(Data.IsStandardLayout);
Chandler Carrutha8225442011-04-30 09:17:45 +00004980 Record.push_back(Data.HasNoNonEmptyBases);
4981 Record.push_back(Data.HasPrivateFields);
4982 Record.push_back(Data.HasProtectedFields);
4983 Record.push_back(Data.HasPublicFields);
Douglas Gregor2bb11012011-05-13 01:05:07 +00004984 Record.push_back(Data.HasMutableFields);
Richard Smithdfefb842012-02-25 07:33:38 +00004985 Record.push_back(Data.HasOnlyCMembers);
Richard Smithd079abf2012-05-07 01:07:30 +00004986 Record.push_back(Data.HasInClassInitializer);
Richard Smithd5bc8672012-12-08 02:01:17 +00004987 Record.push_back(Data.HasUninitializedReferenceMember);
Richard Smithbc2a35d2012-12-08 08:32:28 +00004988 Record.push_back(Data.NeedOverloadResolutionForMoveConstructor);
4989 Record.push_back(Data.NeedOverloadResolutionForMoveAssignment);
4990 Record.push_back(Data.NeedOverloadResolutionForDestructor);
4991 Record.push_back(Data.DefaultedMoveConstructorIsDeleted);
4992 Record.push_back(Data.DefaultedMoveAssignmentIsDeleted);
4993 Record.push_back(Data.DefaultedDestructorIsDeleted);
Richard Smith7d04d3a2012-11-30 05:11:39 +00004994 Record.push_back(Data.HasTrivialSpecialMembers);
4995 Record.push_back(Data.HasIrrelevantDestructor);
Richard Smith6b8bc072011-08-10 18:11:37 +00004996 Record.push_back(Data.HasConstexprNonCopyMoveConstructor);
Richard Smithdfefb842012-02-25 07:33:38 +00004997 Record.push_back(Data.DefaultedDefaultConstructorIsConstexpr);
Richard Smithdfefb842012-02-25 07:33:38 +00004998 Record.push_back(Data.HasConstexprDefaultConstructor);
Chandler Carruth9b6347c2011-04-24 02:49:34 +00004999 Record.push_back(Data.HasNonLiteralTypeFieldsOrBases);
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00005000 Record.push_back(Data.ComputedVisibleConversions);
Sean Huntcdee3fe2011-05-11 22:34:38 +00005001 Record.push_back(Data.UserProvidedDefaultConstructor);
Richard Smith7d04d3a2012-11-30 05:11:39 +00005002 Record.push_back(Data.DeclaredSpecialMembers);
Richard Smithacf796b2012-11-28 06:23:12 +00005003 Record.push_back(Data.ImplicitCopyConstructorHasConstParam);
5004 Record.push_back(Data.ImplicitCopyAssignmentHasConstParam);
5005 Record.push_back(Data.HasDeclaredCopyConstructorWithConstParam);
5006 Record.push_back(Data.HasDeclaredCopyAssignmentWithConstParam);
Sebastian Redl14c36332011-08-31 13:59:56 +00005007 Record.push_back(Data.FailedImplicitMoveConstructor);
5008 Record.push_back(Data.FailedImplicitMoveAssignment);
Richard Smithdfefb842012-02-25 07:33:38 +00005009 // IsLambda bit is already saved.
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00005010
5011 Record.push_back(Data.NumBases);
Douglas Gregor7c789c12010-10-29 22:39:52 +00005012 if (Data.NumBases > 0)
5013 AddCXXBaseSpecifiersRef(Data.getBases(), Data.getBases() + Data.NumBases,
5014 Record);
5015
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00005016 // FIXME: Make VBases lazily computed when needed to avoid storing them.
5017 Record.push_back(Data.NumVBases);
Douglas Gregor7c789c12010-10-29 22:39:52 +00005018 if (Data.NumVBases > 0)
5019 AddCXXBaseSpecifiersRef(Data.getVBases(), Data.getVBases() + Data.NumVBases,
5020 Record);
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00005021
5022 AddUnresolvedSet(Data.Conversions, Record);
5023 AddUnresolvedSet(Data.VisibleConversions, Record);
5024 // Data.Definition is the owning decl, no need to write it.
5025 AddDeclRef(Data.FirstFriend, Record);
Douglas Gregor9d36f5d2012-02-14 17:54:36 +00005026
5027 // Add lambda-specific data.
5028 if (Data.IsLambda) {
5029 CXXRecordDecl::LambdaDefinitionData &Lambda = D->getLambdaData();
Douglas Gregorf4b7de12012-02-21 19:11:17 +00005030 Record.push_back(Lambda.Dependent);
Douglas Gregor9d36f5d2012-02-14 17:54:36 +00005031 Record.push_back(Lambda.NumCaptures);
5032 Record.push_back(Lambda.NumExplicitCaptures);
Douglas Gregor9e8c92a2012-02-20 19:44:39 +00005033 Record.push_back(Lambda.ManglingNumber);
Douglas Gregorccc1b5e2012-02-21 00:37:24 +00005034 AddDeclRef(Lambda.ContextDecl, Record);
Eli Friedman8da8a662012-09-19 01:18:11 +00005035 AddTypeSourceInfo(Lambda.MethodTyInfo, Record);
Douglas Gregor9d36f5d2012-02-14 17:54:36 +00005036 for (unsigned I = 0, N = Lambda.NumCaptures; I != N; ++I) {
5037 LambdaExpr::Capture &Capture = Lambda.Captures[I];
5038 AddSourceLocation(Capture.getLocation(), Record);
5039 Record.push_back(Capture.isImplicit());
5040 Record.push_back(Capture.getCaptureKind()); // FIXME: stable!
5041 VarDecl *Var = Capture.capturesVariable()? Capture.getCapturedVar() : 0;
5042 AddDeclRef(Var, Record);
5043 AddSourceLocation(Capture.isPackExpansion()? Capture.getEllipsisLoc()
5044 : SourceLocation(),
5045 Record);
5046 }
5047 }
Argyrios Kyrtzidis89eaf3a2010-10-24 17:26:40 +00005048}
5049
Argyrios Kyrtzidis7b903402010-10-24 17:26:36 +00005050void ASTWriter::ReaderInitialized(ASTReader *Reader) {
Sebastian Redlffaab3e2010-07-30 00:29:29 +00005051 assert(Reader && "Cannot remove chain");
Douglas Gregor10bc00f2011-08-18 04:12:04 +00005052 assert((!Chain || Chain == Reader) && "Cannot replace chain");
Sebastian Redlffaab3e2010-07-30 00:29:29 +00005053 assert(FirstDeclID == NextDeclID &&
5054 FirstTypeID == NextTypeID &&
5055 FirstIdentID == NextIdentID &&
Douglas Gregora8235d62012-10-09 23:05:51 +00005056 FirstMacroID == NextMacroID &&
Douglas Gregor26ced122011-12-01 00:59:36 +00005057 FirstSubmoduleID == NextSubmoduleID &&
Sebastian Redle58aa892010-08-04 18:21:41 +00005058 FirstSelectorID == NextSelectorID &&
Sebastian Redlffaab3e2010-07-30 00:29:29 +00005059 "Setting chain after writing has started.");
Douglas Gregorf62d43d2011-07-19 16:10:42 +00005060
Sebastian Redlffaab3e2010-07-30 00:29:29 +00005061 Chain = Reader;
Argyrios Kyrtzidis7b903402010-10-24 17:26:36 +00005062
Douglas Gregor10bc00f2011-08-18 04:12:04 +00005063 FirstDeclID = NUM_PREDEF_DECL_IDS + Chain->getTotalNumDecls();
5064 FirstTypeID = NUM_PREDEF_TYPE_IDS + Chain->getTotalNumTypes();
5065 FirstIdentID = NUM_PREDEF_IDENT_IDS + Chain->getTotalNumIdentifiers();
Douglas Gregora8235d62012-10-09 23:05:51 +00005066 FirstMacroID = NUM_PREDEF_MACRO_IDS + Chain->getTotalNumMacros();
Douglas Gregor26ced122011-12-01 00:59:36 +00005067 FirstSubmoduleID = NUM_PREDEF_SUBMODULE_IDS + Chain->getTotalNumSubmodules();
Douglas Gregor10bc00f2011-08-18 04:12:04 +00005068 FirstSelectorID = NUM_PREDEF_SELECTOR_IDS + Chain->getTotalNumSelectors();
Argyrios Kyrtzidis7b903402010-10-24 17:26:36 +00005069 NextDeclID = FirstDeclID;
5070 NextTypeID = FirstTypeID;
5071 NextIdentID = FirstIdentID;
Douglas Gregora8235d62012-10-09 23:05:51 +00005072 NextMacroID = FirstMacroID;
Argyrios Kyrtzidis7b903402010-10-24 17:26:36 +00005073 NextSelectorID = FirstSelectorID;
Douglas Gregor26ced122011-12-01 00:59:36 +00005074 NextSubmoduleID = FirstSubmoduleID;
Sebastian Redlffaab3e2010-07-30 00:29:29 +00005075}
5076
Sebastian Redl8538e8d2010-08-18 23:57:32 +00005077void ASTWriter::IdentifierRead(IdentID ID, IdentifierInfo *II) {
Douglas Gregor2d1ece82013-02-08 21:30:59 +00005078 // Always keep the highest ID. See \p TypeRead() for more information.
5079 IdentID &StoredID = IdentifierIDs[II];
5080 if (ID > StoredID)
5081 StoredID = ID;
Sebastian Redlf2f0f032010-07-23 23:49:55 +00005082}
5083
Argyrios Kyrtzidis9317ab92013-03-22 21:12:57 +00005084void ASTWriter::MacroRead(serialization::MacroID ID, MacroInfo *MI) {
Douglas Gregor2d1ece82013-02-08 21:30:59 +00005085 // Always keep the highest ID. See \p TypeRead() for more information.
Argyrios Kyrtzidis9317ab92013-03-22 21:12:57 +00005086 MacroID &StoredID = MacroIDs[MI];
Douglas Gregor2d1ece82013-02-08 21:30:59 +00005087 if (ID > StoredID)
5088 StoredID = ID;
Douglas Gregora8235d62012-10-09 23:05:51 +00005089}
5090
Argyrios Kyrtzidisc8e5d512010-08-20 16:03:59 +00005091void ASTWriter::TypeRead(TypeIdx Idx, QualType T) {
Douglas Gregor97475832010-10-05 18:37:06 +00005092 // Always take the highest-numbered type index. This copes with an interesting
5093 // case for chained AST writing where we schedule writing the type and then,
Michael J. Spencer20249a12010-10-21 03:16:25 +00005094 // later, deserialize the type from another AST. In this case, we want to
Douglas Gregor97475832010-10-05 18:37:06 +00005095 // keep the higher-numbered entry so that we can properly write it out to
5096 // the AST file.
5097 TypeIdx &StoredIdx = TypeIdxs[T];
5098 if (Idx.getIndex() >= StoredIdx.getIndex())
5099 StoredIdx = Idx;
Sebastian Redl30c514c2010-07-14 23:45:08 +00005100}
5101
Sebastian Redl8538e8d2010-08-18 23:57:32 +00005102void ASTWriter::SelectorRead(SelectorID ID, Selector S) {
Douglas Gregor2d1ece82013-02-08 21:30:59 +00005103 // Always keep the highest ID. See \p TypeRead() for more information.
5104 SelectorID &StoredID = SelectorIDs[S];
5105 if (ID > StoredID)
5106 StoredID = ID;
Sebastian Redl5d050072010-08-04 17:20:04 +00005107}
Douglas Gregor77424bc2010-10-02 19:29:26 +00005108
Argyrios Kyrtzidise24692b2011-09-15 18:02:56 +00005109void ASTWriter::MacroDefinitionRead(serialization::PreprocessedEntityID ID,
Douglas Gregor77424bc2010-10-02 19:29:26 +00005110 MacroDefinition *MD) {
Argyrios Kyrtzidise24692b2011-09-15 18:02:56 +00005111 assert(MacroDefinitions.find(MD) == MacroDefinitions.end());
Douglas Gregor77424bc2010-10-02 19:29:26 +00005112 MacroDefinitions[MD] = ID;
5113}
Argyrios Kyrtzidis565bf302010-10-24 17:26:50 +00005114
Douglas Gregora015cab2011-12-02 17:30:13 +00005115void ASTWriter::ModuleRead(serialization::SubmoduleID ID, Module *Mod) {
5116 assert(SubmoduleIDs.find(Mod) == SubmoduleIDs.end());
5117 SubmoduleIDs[Mod] = ID;
5118}
5119
Argyrios Kyrtzidis565bf302010-10-24 17:26:50 +00005120void ASTWriter::CompletedTagDefinition(const TagDecl *D) {
John McCall5e1cdac2011-10-07 06:10:15 +00005121 assert(D->isCompleteDefinition());
Douglas Gregor61c5e342011-09-17 00:05:03 +00005122 assert(!WritingAST && "Already writing the AST!");
Argyrios Kyrtzidis565bf302010-10-24 17:26:50 +00005123 if (const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(D)) {
5124 // We are interested when a PCH decl is modified.
Douglas Gregor919814d2011-09-09 23:01:35 +00005125 if (RD->isFromASTFile()) {
Argyrios Kyrtzidis565bf302010-10-24 17:26:50 +00005126 // A forward reference was mutated into a definition. Rewrite it.
5127 // FIXME: This happens during template instantiation, should we
5128 // have created a new definition decl instead ?
Argyrios Kyrtzidisd3d07552010-10-28 07:38:45 +00005129 RewriteDecl(RD);
Argyrios Kyrtzidis565bf302010-10-24 17:26:50 +00005130 }
Argyrios Kyrtzidis565bf302010-10-24 17:26:50 +00005131 }
5132}
Douglas Gregora8235d62012-10-09 23:05:51 +00005133
Argyrios Kyrtzidis100050b2010-10-28 07:38:51 +00005134void ASTWriter::AddedVisibleDecl(const DeclContext *DC, const Decl *D) {
Douglas Gregor61c5e342011-09-17 00:05:03 +00005135 assert(!WritingAST && "Already writing the AST!");
5136
Argyrios Kyrtzidis100050b2010-10-28 07:38:51 +00005137 // TU and namespaces are handled elsewhere.
5138 if (isa<TranslationUnitDecl>(DC) || isa<NamespaceDecl>(DC))
5139 return;
5140
Douglas Gregor919814d2011-09-09 23:01:35 +00005141 if (!(!D->isFromASTFile() && cast<Decl>(DC)->isFromASTFile()))
Argyrios Kyrtzidis100050b2010-10-28 07:38:51 +00005142 return; // Not a source decl added to a DeclContext from PCH.
5143
Douglas Gregor5a04f9f2013-01-21 15:25:38 +00005144 assert(!getDefinitiveDeclContext(DC) && "DeclContext not definitive!");
Argyrios Kyrtzidis100050b2010-10-28 07:38:51 +00005145 AddUpdatedDeclContext(DC);
Argyrios Kyrtzidis7518b372012-07-02 19:19:01 +00005146 UpdatingVisibleDecls.push_back(D);
Argyrios Kyrtzidis100050b2010-10-28 07:38:51 +00005147}
Argyrios Kyrtzidisb6cc0e12010-10-24 17:26:54 +00005148
5149void ASTWriter::AddedCXXImplicitMember(const CXXRecordDecl *RD, const Decl *D) {
Douglas Gregor61c5e342011-09-17 00:05:03 +00005150 assert(!WritingAST && "Already writing the AST!");
Argyrios Kyrtzidisb6cc0e12010-10-24 17:26:54 +00005151 assert(D->isImplicit());
Douglas Gregor919814d2011-09-09 23:01:35 +00005152 if (!(!D->isFromASTFile() && RD->isFromASTFile()))
Argyrios Kyrtzidisb6cc0e12010-10-24 17:26:54 +00005153 return; // Not a source member added to a class from PCH.
5154 if (!isa<CXXMethodDecl>(D))
5155 return; // We are interested in lazily declared implicit methods.
5156
5157 // A decl coming from PCH was modified.
John McCall5e1cdac2011-10-07 06:10:15 +00005158 assert(RD->isCompleteDefinition());
Argyrios Kyrtzidisb6cc0e12010-10-24 17:26:54 +00005159 UpdateRecord &Record = DeclUpdates[RD];
5160 Record.push_back(UPD_CXX_ADDED_IMPLICIT_MEMBER);
Douglas Gregor61c5e342011-09-17 00:05:03 +00005161 Record.push_back(reinterpret_cast<uint64_t>(D));
Argyrios Kyrtzidisb6cc0e12010-10-24 17:26:54 +00005162}
Argyrios Kyrtzidisbef1a7b2010-10-28 07:38:42 +00005163
5164void ASTWriter::AddedCXXTemplateSpecialization(const ClassTemplateDecl *TD,
5165 const ClassTemplateSpecializationDecl *D) {
Argyrios Kyrtzidis0f04f692010-10-28 07:38:47 +00005166 // The specializations set is kept in the canonical template.
Douglas Gregor61c5e342011-09-17 00:05:03 +00005167 assert(!WritingAST && "Already writing the AST!");
Argyrios Kyrtzidis0f04f692010-10-28 07:38:47 +00005168 TD = TD->getCanonicalDecl();
Douglas Gregor919814d2011-09-09 23:01:35 +00005169 if (!(!D->isFromASTFile() && TD->isFromASTFile()))
Argyrios Kyrtzidisbef1a7b2010-10-28 07:38:42 +00005170 return; // Not a source specialization added to a template from PCH.
5171
5172 UpdateRecord &Record = DeclUpdates[TD];
5173 Record.push_back(UPD_CXX_ADDED_TEMPLATE_SPECIALIZATION);
Douglas Gregor61c5e342011-09-17 00:05:03 +00005174 Record.push_back(reinterpret_cast<uint64_t>(D));
Argyrios Kyrtzidisbef1a7b2010-10-28 07:38:42 +00005175}
Douglas Gregor89d99802010-11-30 06:16:57 +00005176
Sebastian Redl5bbcdbf2011-04-14 14:07:59 +00005177void ASTWriter::AddedCXXTemplateSpecialization(const FunctionTemplateDecl *TD,
5178 const FunctionDecl *D) {
5179 // The specializations set is kept in the canonical template.
Douglas Gregor61c5e342011-09-17 00:05:03 +00005180 assert(!WritingAST && "Already writing the AST!");
Sebastian Redl5bbcdbf2011-04-14 14:07:59 +00005181 TD = TD->getCanonicalDecl();
Douglas Gregor919814d2011-09-09 23:01:35 +00005182 if (!(!D->isFromASTFile() && TD->isFromASTFile()))
Sebastian Redl5bbcdbf2011-04-14 14:07:59 +00005183 return; // Not a source specialization added to a template from PCH.
5184
5185 UpdateRecord &Record = DeclUpdates[TD];
5186 Record.push_back(UPD_CXX_ADDED_TEMPLATE_SPECIALIZATION);
Douglas Gregor61c5e342011-09-17 00:05:03 +00005187 Record.push_back(reinterpret_cast<uint64_t>(D));
Sebastian Redl5bbcdbf2011-04-14 14:07:59 +00005188}
5189
Sebastian Redl58a2cd82011-04-24 16:28:06 +00005190void ASTWriter::CompletedImplicitDefinition(const FunctionDecl *D) {
Douglas Gregor61c5e342011-09-17 00:05:03 +00005191 assert(!WritingAST && "Already writing the AST!");
Douglas Gregor919814d2011-09-09 23:01:35 +00005192 if (!D->isFromASTFile())
Sebastian Redl58a2cd82011-04-24 16:28:06 +00005193 return; // Declaration not imported from PCH.
5194
5195 // Implicit decl from a PCH was defined.
5196 // FIXME: Should implicit definition be a separate FunctionDecl?
5197 RewriteDecl(D);
5198}
5199
Sebastian Redlf79a7192011-04-29 08:19:30 +00005200void ASTWriter::StaticDataMemberInstantiated(const VarDecl *D) {
Douglas Gregor61c5e342011-09-17 00:05:03 +00005201 assert(!WritingAST && "Already writing the AST!");
Douglas Gregor919814d2011-09-09 23:01:35 +00005202 if (!D->isFromASTFile())
Sebastian Redlf79a7192011-04-29 08:19:30 +00005203 return;
5204
5205 // Since the actual instantiation is delayed, this really means that we need
5206 // to update the instantiation location.
5207 UpdateRecord &Record = DeclUpdates[D];
5208 Record.push_back(UPD_CXX_INSTANTIATED_STATIC_DATA_MEMBER);
5209 AddSourceLocation(
5210 D->getMemberSpecializationInfo()->getPointOfInstantiation(), Record);
5211}
5212
Argyrios Kyrtzidise6b8d682011-09-01 00:58:55 +00005213void ASTWriter::AddedObjCCategoryToInterface(const ObjCCategoryDecl *CatD,
5214 const ObjCInterfaceDecl *IFD) {
Douglas Gregor61c5e342011-09-17 00:05:03 +00005215 assert(!WritingAST && "Already writing the AST!");
Douglas Gregor919814d2011-09-09 23:01:35 +00005216 if (!IFD->isFromASTFile())
Argyrios Kyrtzidise6b8d682011-09-01 00:58:55 +00005217 return; // Declaration not imported from PCH.
Douglas Gregorcff9f262012-01-27 01:47:08 +00005218
5219 assert(IFD->getDefinition() && "Category on a class without a definition?");
5220 ObjCClassesWithCategories.insert(
5221 const_cast<ObjCInterfaceDecl *>(IFD->getDefinition()));
Argyrios Kyrtzidise6b8d682011-09-01 00:58:55 +00005222}
Argyrios Kyrtzidisad834d52011-11-12 21:07:46 +00005223
Argyrios Kyrtzidis1a434152011-11-12 21:07:52 +00005224
Argyrios Kyrtzidisc80553e2011-11-14 04:52:29 +00005225void ASTWriter::AddedObjCPropertyInClassExtension(const ObjCPropertyDecl *Prop,
5226 const ObjCPropertyDecl *OrigProp,
5227 const ObjCCategoryDecl *ClassExt) {
5228 const ObjCInterfaceDecl *D = ClassExt->getClassInterface();
5229 if (!D)
5230 return;
5231
5232 assert(!WritingAST && "Already writing the AST!");
5233 if (!D->isFromASTFile())
5234 return; // Declaration not imported from PCH.
5235
5236 RewriteDecl(D);
5237}