Sebastian Redl | 4ee2ad0 | 2010-08-18 23:56:31 +0000 | [diff] [blame] | 1 | //===--- ASTWriter.cpp - AST File Writer ----------------------------------===// |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
Sebastian Redl | a4232eb | 2010-08-18 23:56:21 +0000 | [diff] [blame] | 10 | // This file defines the ASTWriter class, which writes AST files. |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
Sebastian Redl | 7faa2ec | 2010-08-18 23:56:37 +0000 | [diff] [blame] | 14 | #include "clang/Serialization/ASTWriter.h" |
Argyrios Kyrtzidis | 0eca89e | 2010-08-20 16:03:52 +0000 | [diff] [blame] | 15 | #include "ASTCommon.h" |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 16 | #include "clang/AST/ASTContext.h" |
| 17 | #include "clang/AST/Decl.h" |
| 18 | #include "clang/AST/DeclContextInternals.h" |
Argyrios Kyrtzidis | 89eaf3a | 2010-10-24 17:26:40 +0000 | [diff] [blame] | 19 | #include "clang/AST/DeclFriend.h" |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 20 | #include "clang/AST/DeclLookups.h" |
Chandler Carruth | 55fc873 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 21 | #include "clang/AST/DeclTemplate.h" |
Douglas Gregor | 0b74891 | 2009-04-14 21:18:50 +0000 | [diff] [blame] | 22 | #include "clang/AST/Expr.h" |
John McCall | 7a1fad3 | 2010-08-24 07:32:53 +0000 | [diff] [blame] | 23 | #include "clang/AST/ExprCXX.h" |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 24 | #include "clang/AST/Type.h" |
John McCall | a1ee0c5 | 2009-10-16 21:56:05 +0000 | [diff] [blame] | 25 | #include "clang/AST/TypeLocVisitor.h" |
Stephen Hines | 6bcf27b | 2014-05-29 04:14:42 -0700 | [diff] [blame^] | 26 | #include "clang/Basic/DiagnosticOptions.h" |
Douglas Gregor | 14f7900 | 2009-04-10 03:52:48 +0000 | [diff] [blame] | 27 | #include "clang/Basic/FileManager.h" |
Chris Lattner | 10e286a | 2010-11-23 19:19:34 +0000 | [diff] [blame] | 28 | #include "clang/Basic/FileSystemStatCache.h" |
Douglas Gregor | 14f7900 | 2009-04-10 03:52:48 +0000 | [diff] [blame] | 29 | #include "clang/Basic/SourceManager.h" |
Douglas Gregor | bd94500 | 2009-04-13 16:31:14 +0000 | [diff] [blame] | 30 | #include "clang/Basic/SourceManagerInternals.h" |
Douglas Gregor | 2bec041 | 2009-04-10 21:16:55 +0000 | [diff] [blame] | 31 | #include "clang/Basic/TargetInfo.h" |
Douglas Gregor | 57016dd | 2012-10-16 23:40:58 +0000 | [diff] [blame] | 32 | #include "clang/Basic/TargetOptions.h" |
Douglas Gregor | ab41e63 | 2009-04-27 22:23:34 +0000 | [diff] [blame] | 33 | #include "clang/Basic/Version.h" |
Douglas Gregor | 0a0d2b1 | 2011-03-23 00:50:03 +0000 | [diff] [blame] | 34 | #include "clang/Basic/VersionTuple.h" |
Chandler Carruth | 55fc873 | 2012-12-04 09:13:33 +0000 | [diff] [blame] | 35 | #include "clang/Lex/HeaderSearch.h" |
| 36 | #include "clang/Lex/HeaderSearchOptions.h" |
| 37 | #include "clang/Lex/MacroInfo.h" |
| 38 | #include "clang/Lex/PreprocessingRecord.h" |
| 39 | #include "clang/Lex/Preprocessor.h" |
| 40 | #include "clang/Lex/PreprocessorOptions.h" |
| 41 | #include "clang/Sema/IdentifierResolver.h" |
| 42 | #include "clang/Sema/Sema.h" |
| 43 | #include "clang/Serialization/ASTReader.h" |
Douglas Gregor | 17fc223 | 2009-04-14 21:55:33 +0000 | [diff] [blame] | 44 | #include "llvm/ADT/APFloat.h" |
| 45 | #include "llvm/ADT/APInt.h" |
Argyrios Kyrtzidis | ed3802e | 2013-03-06 18:12:47 +0000 | [diff] [blame] | 46 | #include "llvm/ADT/Hashing.h" |
Daniel Dunbar | 2596e42 | 2009-10-17 23:52:28 +0000 | [diff] [blame] | 47 | #include "llvm/ADT/StringExtras.h" |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 48 | #include "llvm/Bitcode/BitstreamWriter.h" |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 49 | #include "llvm/Support/EndianStream.h" |
Michael J. Spencer | fbfd180 | 2010-12-21 16:45:57 +0000 | [diff] [blame] | 50 | #include "llvm/Support/FileSystem.h" |
Douglas Gregor | 14f7900 | 2009-04-10 03:52:48 +0000 | [diff] [blame] | 51 | #include "llvm/Support/MemoryBuffer.h" |
Stephen Hines | 6bcf27b | 2014-05-29 04:14:42 -0700 | [diff] [blame^] | 52 | #include "llvm/Support/OnDiskHashTable.h" |
Michael J. Spencer | 03013fa | 2010-11-29 18:12:39 +0000 | [diff] [blame] | 53 | #include "llvm/Support/Path.h" |
Douglas Gregor | f62d43d | 2011-07-19 16:10:42 +0000 | [diff] [blame] | 54 | #include <algorithm> |
Chris Lattner | 3c304bd | 2009-04-11 18:40:46 +0000 | [diff] [blame] | 55 | #include <cstdio> |
Douglas Gregor | cfbf1c7 | 2011-02-10 17:09:37 +0000 | [diff] [blame] | 56 | #include <string.h> |
Douglas Gregor | f62d43d | 2011-07-19 16:10:42 +0000 | [diff] [blame] | 57 | #include <utility> |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 58 | using namespace clang; |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 59 | using namespace clang::serialization; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 60 | |
Sebastian Redl | ade5000 | 2010-07-30 17:03:48 +0000 | [diff] [blame] | 61 | template <typename T, typename Allocator> |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 62 | static StringRef data(const std::vector<T, Allocator> &v) { |
| 63 | if (v.empty()) return StringRef(); |
| 64 | return StringRef(reinterpret_cast<const char*>(&v[0]), |
Benjamin Kramer | 6e089c6 | 2011-04-24 17:44:50 +0000 | [diff] [blame] | 65 | sizeof(T) * v.size()); |
Sebastian Redl | ade5000 | 2010-07-30 17:03:48 +0000 | [diff] [blame] | 66 | } |
Benjamin Kramer | 6e089c6 | 2011-04-24 17:44:50 +0000 | [diff] [blame] | 67 | |
| 68 | template <typename T> |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 69 | static StringRef data(const SmallVectorImpl<T> &v) { |
| 70 | return StringRef(reinterpret_cast<const char*>(v.data()), |
Benjamin Kramer | 6e089c6 | 2011-04-24 17:44:50 +0000 | [diff] [blame] | 71 | sizeof(T) * v.size()); |
Sebastian Redl | ade5000 | 2010-07-30 17:03:48 +0000 | [diff] [blame] | 72 | } |
| 73 | |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 74 | //===----------------------------------------------------------------------===// |
| 75 | // Type serialization |
| 76 | //===----------------------------------------------------------------------===// |
Chris Lattner | 12b1c76 | 2009-04-27 06:16:06 +0000 | [diff] [blame] | 77 | |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 78 | namespace { |
Sebastian Redl | 3397c55 | 2010-08-18 23:56:27 +0000 | [diff] [blame] | 79 | class ASTTypeWriter { |
Sebastian Redl | a4232eb | 2010-08-18 23:56:21 +0000 | [diff] [blame] | 80 | ASTWriter &Writer; |
Argyrios Kyrtzidis | 89eaf3a | 2010-10-24 17:26:40 +0000 | [diff] [blame] | 81 | ASTWriter::RecordDataImpl &Record; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 82 | |
| 83 | public: |
| 84 | /// \brief Type code that corresponds to the record generated. |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 85 | TypeCode Code; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 86 | |
Argyrios Kyrtzidis | 89eaf3a | 2010-10-24 17:26:40 +0000 | [diff] [blame] | 87 | ASTTypeWriter(ASTWriter &Writer, ASTWriter::RecordDataImpl &Record) |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 88 | : Writer(Writer), Record(Record), Code(TYPE_EXT_QUAL) { } |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 89 | |
| 90 | void VisitArrayType(const ArrayType *T); |
| 91 | void VisitFunctionType(const FunctionType *T); |
| 92 | void VisitTagType(const TagType *T); |
| 93 | |
| 94 | #define TYPE(Class, Base) void Visit##Class##Type(const Class##Type *T); |
| 95 | #define ABSTRACT_TYPE(Class, Base) |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 96 | #include "clang/AST/TypeNodes.def" |
| 97 | }; |
| 98 | } |
| 99 | |
Sebastian Redl | 3397c55 | 2010-08-18 23:56:27 +0000 | [diff] [blame] | 100 | void ASTTypeWriter::VisitBuiltinType(const BuiltinType *T) { |
David Blaikie | b219cfc | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 101 | llvm_unreachable("Built-in types are never serialized"); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 102 | } |
| 103 | |
Sebastian Redl | 3397c55 | 2010-08-18 23:56:27 +0000 | [diff] [blame] | 104 | void ASTTypeWriter::VisitComplexType(const ComplexType *T) { |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 105 | Writer.AddTypeRef(T->getElementType(), Record); |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 106 | Code = TYPE_COMPLEX; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 107 | } |
| 108 | |
Sebastian Redl | 3397c55 | 2010-08-18 23:56:27 +0000 | [diff] [blame] | 109 | void ASTTypeWriter::VisitPointerType(const PointerType *T) { |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 110 | Writer.AddTypeRef(T->getPointeeType(), Record); |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 111 | Code = TYPE_POINTER; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 112 | } |
| 113 | |
Reid Kleckner | 12df246 | 2013-06-24 17:51:48 +0000 | [diff] [blame] | 114 | void ASTTypeWriter::VisitDecayedType(const DecayedType *T) { |
| 115 | Writer.AddTypeRef(T->getOriginalType(), Record); |
| 116 | Code = TYPE_DECAYED; |
| 117 | } |
| 118 | |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 119 | void ASTTypeWriter::VisitAdjustedType(const AdjustedType *T) { |
| 120 | Writer.AddTypeRef(T->getOriginalType(), Record); |
| 121 | Writer.AddTypeRef(T->getAdjustedType(), Record); |
| 122 | Code = TYPE_ADJUSTED; |
| 123 | } |
| 124 | |
Sebastian Redl | 3397c55 | 2010-08-18 23:56:27 +0000 | [diff] [blame] | 125 | void ASTTypeWriter::VisitBlockPointerType(const BlockPointerType *T) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 126 | Writer.AddTypeRef(T->getPointeeType(), Record); |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 127 | Code = TYPE_BLOCK_POINTER; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 128 | } |
| 129 | |
Sebastian Redl | 3397c55 | 2010-08-18 23:56:27 +0000 | [diff] [blame] | 130 | void ASTTypeWriter::VisitLValueReferenceType(const LValueReferenceType *T) { |
Richard Smith | df1550f | 2011-04-12 10:38:03 +0000 | [diff] [blame] | 131 | Writer.AddTypeRef(T->getPointeeTypeAsWritten(), Record); |
| 132 | Record.push_back(T->isSpelledAsLValue()); |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 133 | Code = TYPE_LVALUE_REFERENCE; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 134 | } |
| 135 | |
Sebastian Redl | 3397c55 | 2010-08-18 23:56:27 +0000 | [diff] [blame] | 136 | void ASTTypeWriter::VisitRValueReferenceType(const RValueReferenceType *T) { |
Richard Smith | df1550f | 2011-04-12 10:38:03 +0000 | [diff] [blame] | 137 | Writer.AddTypeRef(T->getPointeeTypeAsWritten(), Record); |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 138 | Code = TYPE_RVALUE_REFERENCE; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 139 | } |
| 140 | |
Sebastian Redl | 3397c55 | 2010-08-18 23:56:27 +0000 | [diff] [blame] | 141 | void ASTTypeWriter::VisitMemberPointerType(const MemberPointerType *T) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 142 | Writer.AddTypeRef(T->getPointeeType(), Record); |
| 143 | Writer.AddTypeRef(QualType(T->getClass(), 0), Record); |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 144 | Code = TYPE_MEMBER_POINTER; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 145 | } |
| 146 | |
Sebastian Redl | 3397c55 | 2010-08-18 23:56:27 +0000 | [diff] [blame] | 147 | void ASTTypeWriter::VisitArrayType(const ArrayType *T) { |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 148 | Writer.AddTypeRef(T->getElementType(), Record); |
| 149 | Record.push_back(T->getSizeModifier()); // FIXME: stable values |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 150 | Record.push_back(T->getIndexTypeCVRQualifiers()); // FIXME: stable values |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 151 | } |
| 152 | |
Sebastian Redl | 3397c55 | 2010-08-18 23:56:27 +0000 | [diff] [blame] | 153 | void ASTTypeWriter::VisitConstantArrayType(const ConstantArrayType *T) { |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 154 | VisitArrayType(T); |
| 155 | Writer.AddAPInt(T->getSize(), Record); |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 156 | Code = TYPE_CONSTANT_ARRAY; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 157 | } |
| 158 | |
Sebastian Redl | 3397c55 | 2010-08-18 23:56:27 +0000 | [diff] [blame] | 159 | void ASTTypeWriter::VisitIncompleteArrayType(const IncompleteArrayType *T) { |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 160 | VisitArrayType(T); |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 161 | Code = TYPE_INCOMPLETE_ARRAY; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 162 | } |
| 163 | |
Sebastian Redl | 3397c55 | 2010-08-18 23:56:27 +0000 | [diff] [blame] | 164 | void ASTTypeWriter::VisitVariableArrayType(const VariableArrayType *T) { |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 165 | VisitArrayType(T); |
Douglas Gregor | 7e7eb3d | 2009-07-06 15:59:29 +0000 | [diff] [blame] | 166 | Writer.AddSourceLocation(T->getLBracketLoc(), Record); |
| 167 | Writer.AddSourceLocation(T->getRBracketLoc(), Record); |
Douglas Gregor | c9490c0 | 2009-04-16 22:23:12 +0000 | [diff] [blame] | 168 | Writer.AddStmt(T->getSizeExpr()); |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 169 | Code = TYPE_VARIABLE_ARRAY; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 170 | } |
| 171 | |
Sebastian Redl | 3397c55 | 2010-08-18 23:56:27 +0000 | [diff] [blame] | 172 | void ASTTypeWriter::VisitVectorType(const VectorType *T) { |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 173 | Writer.AddTypeRef(T->getElementType(), Record); |
| 174 | Record.push_back(T->getNumElements()); |
Bob Wilson | e86d78c | 2010-11-10 21:56:12 +0000 | [diff] [blame] | 175 | Record.push_back(T->getVectorKind()); |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 176 | Code = TYPE_VECTOR; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 177 | } |
| 178 | |
Sebastian Redl | 3397c55 | 2010-08-18 23:56:27 +0000 | [diff] [blame] | 179 | void ASTTypeWriter::VisitExtVectorType(const ExtVectorType *T) { |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 180 | VisitVectorType(T); |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 181 | Code = TYPE_EXT_VECTOR; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 182 | } |
| 183 | |
Sebastian Redl | 3397c55 | 2010-08-18 23:56:27 +0000 | [diff] [blame] | 184 | void ASTTypeWriter::VisitFunctionType(const FunctionType *T) { |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 185 | Writer.AddTypeRef(T->getReturnType(), Record); |
Rafael Espindola | 264ba48 | 2010-03-30 20:24:48 +0000 | [diff] [blame] | 186 | FunctionType::ExtInfo C = T->getExtInfo(); |
| 187 | Record.push_back(C.getNoReturn()); |
Eli Friedman | a49218e | 2011-04-09 08:18:08 +0000 | [diff] [blame] | 188 | Record.push_back(C.getHasRegParm()); |
Rafael Espindola | 425ef72 | 2010-03-30 22:15:11 +0000 | [diff] [blame] | 189 | Record.push_back(C.getRegParm()); |
Douglas Gregor | ab8bbf4 | 2010-01-18 17:14:39 +0000 | [diff] [blame] | 190 | // FIXME: need to stabilize encoding of calling convention... |
Rafael Espindola | 264ba48 | 2010-03-30 20:24:48 +0000 | [diff] [blame] | 191 | Record.push_back(C.getCC()); |
John McCall | f85e193 | 2011-06-15 23:02:42 +0000 | [diff] [blame] | 192 | Record.push_back(C.getProducesResult()); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 193 | } |
| 194 | |
Sebastian Redl | 3397c55 | 2010-08-18 23:56:27 +0000 | [diff] [blame] | 195 | void ASTTypeWriter::VisitFunctionNoProtoType(const FunctionNoProtoType *T) { |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 196 | VisitFunctionType(T); |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 197 | Code = TYPE_FUNCTION_NO_PROTO; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 198 | } |
| 199 | |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 200 | static void addExceptionSpec(ASTWriter &Writer, const FunctionProtoType *T, |
| 201 | ASTWriter::RecordDataImpl &Record) { |
Sebastian Redl | 60618fa | 2011-03-12 11:50:43 +0000 | [diff] [blame] | 202 | Record.push_back(T->getExceptionSpecType()); |
| 203 | if (T->getExceptionSpecType() == EST_Dynamic) { |
| 204 | Record.push_back(T->getNumExceptions()); |
| 205 | for (unsigned I = 0, N = T->getNumExceptions(); I != N; ++I) |
| 206 | Writer.AddTypeRef(T->getExceptionType(I), Record); |
| 207 | } else if (T->getExceptionSpecType() == EST_ComputedNoexcept) { |
| 208 | Writer.AddStmt(T->getNoexceptExpr()); |
Richard Smith | 7bb698a | 2012-04-21 17:47:47 +0000 | [diff] [blame] | 209 | } else if (T->getExceptionSpecType() == EST_Uninstantiated) { |
| 210 | Writer.AddDeclRef(T->getExceptionSpecDecl(), Record); |
| 211 | Writer.AddDeclRef(T->getExceptionSpecTemplate(), Record); |
Richard Smith | b9d0b76 | 2012-07-27 04:22:15 +0000 | [diff] [blame] | 212 | } else if (T->getExceptionSpecType() == EST_Unevaluated) { |
| 213 | Writer.AddDeclRef(T->getExceptionSpecDecl(), Record); |
Sebastian Redl | 60618fa | 2011-03-12 11:50:43 +0000 | [diff] [blame] | 214 | } |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 215 | } |
| 216 | |
| 217 | void ASTTypeWriter::VisitFunctionProtoType(const FunctionProtoType *T) { |
| 218 | VisitFunctionType(T); |
| 219 | Record.push_back(T->getNumParams()); |
| 220 | for (unsigned I = 0, N = T->getNumParams(); I != N; ++I) |
| 221 | Writer.AddTypeRef(T->getParamType(I), Record); |
| 222 | Record.push_back(T->isVariadic()); |
| 223 | Record.push_back(T->hasTrailingReturn()); |
| 224 | Record.push_back(T->getTypeQuals()); |
| 225 | Record.push_back(static_cast<unsigned>(T->getRefQualifier())); |
| 226 | addExceptionSpec(Writer, T, Record); |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 227 | Code = TYPE_FUNCTION_PROTO; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 228 | } |
| 229 | |
Sebastian Redl | 3397c55 | 2010-08-18 23:56:27 +0000 | [diff] [blame] | 230 | void ASTTypeWriter::VisitUnresolvedUsingType(const UnresolvedUsingType *T) { |
John McCall | ed97649 | 2009-12-04 22:46:56 +0000 | [diff] [blame] | 231 | Writer.AddDeclRef(T->getDecl(), Record); |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 232 | Code = TYPE_UNRESOLVED_USING; |
John McCall | ed97649 | 2009-12-04 22:46:56 +0000 | [diff] [blame] | 233 | } |
John McCall | ed97649 | 2009-12-04 22:46:56 +0000 | [diff] [blame] | 234 | |
Sebastian Redl | 3397c55 | 2010-08-18 23:56:27 +0000 | [diff] [blame] | 235 | void ASTTypeWriter::VisitTypedefType(const TypedefType *T) { |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 236 | Writer.AddDeclRef(T->getDecl(), Record); |
Argyrios Kyrtzidis | 9763e22 | 2010-07-02 11:55:11 +0000 | [diff] [blame] | 237 | assert(!T->isCanonicalUnqualified() && "Invalid typedef ?"); |
| 238 | Writer.AddTypeRef(T->getCanonicalTypeInternal(), Record); |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 239 | Code = TYPE_TYPEDEF; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 240 | } |
| 241 | |
Sebastian Redl | 3397c55 | 2010-08-18 23:56:27 +0000 | [diff] [blame] | 242 | void ASTTypeWriter::VisitTypeOfExprType(const TypeOfExprType *T) { |
Douglas Gregor | c9490c0 | 2009-04-16 22:23:12 +0000 | [diff] [blame] | 243 | Writer.AddStmt(T->getUnderlyingExpr()); |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 244 | Code = TYPE_TYPEOF_EXPR; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 245 | } |
| 246 | |
Sebastian Redl | 3397c55 | 2010-08-18 23:56:27 +0000 | [diff] [blame] | 247 | void ASTTypeWriter::VisitTypeOfType(const TypeOfType *T) { |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 248 | Writer.AddTypeRef(T->getUnderlyingType(), Record); |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 249 | Code = TYPE_TYPEOF; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 250 | } |
| 251 | |
Sebastian Redl | 3397c55 | 2010-08-18 23:56:27 +0000 | [diff] [blame] | 252 | void ASTTypeWriter::VisitDecltypeType(const DecltypeType *T) { |
Douglas Gregor | f8af982 | 2012-02-12 18:42:33 +0000 | [diff] [blame] | 253 | Writer.AddTypeRef(T->getUnderlyingType(), Record); |
Anders Carlsson | 395b475 | 2009-06-24 19:06:50 +0000 | [diff] [blame] | 254 | Writer.AddStmt(T->getUnderlyingExpr()); |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 255 | Code = TYPE_DECLTYPE; |
Anders Carlsson | 395b475 | 2009-06-24 19:06:50 +0000 | [diff] [blame] | 256 | } |
| 257 | |
Sean Hunt | ca63c20 | 2011-05-24 22:41:36 +0000 | [diff] [blame] | 258 | void ASTTypeWriter::VisitUnaryTransformType(const UnaryTransformType *T) { |
| 259 | Writer.AddTypeRef(T->getBaseType(), Record); |
| 260 | Writer.AddTypeRef(T->getUnderlyingType(), Record); |
| 261 | Record.push_back(T->getUTTKind()); |
| 262 | Code = TYPE_UNARY_TRANSFORM; |
| 263 | } |
| 264 | |
Richard Smith | 34b41d9 | 2011-02-20 03:19:35 +0000 | [diff] [blame] | 265 | void ASTTypeWriter::VisitAutoType(const AutoType *T) { |
| 266 | Writer.AddTypeRef(T->getDeducedType(), Record); |
Richard Smith | a2c3646 | 2013-04-26 16:15:35 +0000 | [diff] [blame] | 267 | Record.push_back(T->isDecltypeAuto()); |
Richard Smith | dc7a4f5 | 2013-04-30 13:56:41 +0000 | [diff] [blame] | 268 | if (T->getDeducedType().isNull()) |
| 269 | Record.push_back(T->isDependentType()); |
Richard Smith | 34b41d9 | 2011-02-20 03:19:35 +0000 | [diff] [blame] | 270 | Code = TYPE_AUTO; |
| 271 | } |
| 272 | |
Sebastian Redl | 3397c55 | 2010-08-18 23:56:27 +0000 | [diff] [blame] | 273 | void ASTTypeWriter::VisitTagType(const TagType *T) { |
Argyrios Kyrtzidis | be19110 | 2010-07-08 13:09:53 +0000 | [diff] [blame] | 274 | Record.push_back(T->isDependentType()); |
Douglas Gregor | 56ca8a9 | 2012-01-17 19:21:53 +0000 | [diff] [blame] | 275 | Writer.AddDeclRef(T->getDecl()->getCanonicalDecl(), Record); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 276 | assert(!T->isBeingDefined() && |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 277 | "Cannot serialize in the middle of a type definition"); |
| 278 | } |
| 279 | |
Sebastian Redl | 3397c55 | 2010-08-18 23:56:27 +0000 | [diff] [blame] | 280 | void ASTTypeWriter::VisitRecordType(const RecordType *T) { |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 281 | VisitTagType(T); |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 282 | Code = TYPE_RECORD; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 283 | } |
| 284 | |
Sebastian Redl | 3397c55 | 2010-08-18 23:56:27 +0000 | [diff] [blame] | 285 | void ASTTypeWriter::VisitEnumType(const EnumType *T) { |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 286 | VisitTagType(T); |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 287 | Code = TYPE_ENUM; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 288 | } |
| 289 | |
John McCall | 9d156a7 | 2011-01-06 01:58:22 +0000 | [diff] [blame] | 290 | void ASTTypeWriter::VisitAttributedType(const AttributedType *T) { |
| 291 | Writer.AddTypeRef(T->getModifiedType(), Record); |
| 292 | Writer.AddTypeRef(T->getEquivalentType(), Record); |
| 293 | Record.push_back(T->getAttrKind()); |
| 294 | Code = TYPE_ATTRIBUTED; |
| 295 | } |
| 296 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 297 | void |
Sebastian Redl | 3397c55 | 2010-08-18 23:56:27 +0000 | [diff] [blame] | 298 | ASTTypeWriter::VisitSubstTemplateTypeParmType( |
John McCall | 49a832b | 2009-10-18 09:09:24 +0000 | [diff] [blame] | 299 | const SubstTemplateTypeParmType *T) { |
| 300 | Writer.AddTypeRef(QualType(T->getReplacedParameter(), 0), Record); |
| 301 | Writer.AddTypeRef(T->getReplacementType(), Record); |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 302 | Code = TYPE_SUBST_TEMPLATE_TYPE_PARM; |
John McCall | 49a832b | 2009-10-18 09:09:24 +0000 | [diff] [blame] | 303 | } |
| 304 | |
| 305 | void |
Douglas Gregor | c3069d6 | 2011-01-14 02:55:32 +0000 | [diff] [blame] | 306 | ASTTypeWriter::VisitSubstTemplateTypeParmPackType( |
| 307 | const SubstTemplateTypeParmPackType *T) { |
| 308 | Writer.AddTypeRef(QualType(T->getReplacedParameter(), 0), Record); |
| 309 | Writer.AddTemplateArgument(T->getArgumentPack(), Record); |
| 310 | Code = TYPE_SUBST_TEMPLATE_TYPE_PARM_PACK; |
| 311 | } |
| 312 | |
| 313 | void |
Sebastian Redl | 3397c55 | 2010-08-18 23:56:27 +0000 | [diff] [blame] | 314 | ASTTypeWriter::VisitTemplateSpecializationType( |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 315 | const TemplateSpecializationType *T) { |
Argyrios Kyrtzidis | be19110 | 2010-07-08 13:09:53 +0000 | [diff] [blame] | 316 | Record.push_back(T->isDependentType()); |
Argyrios Kyrtzidis | 90b715e | 2010-06-19 19:28:53 +0000 | [diff] [blame] | 317 | Writer.AddTemplateName(T->getTemplateName(), Record); |
| 318 | Record.push_back(T->getNumArgs()); |
| 319 | for (TemplateSpecializationType::iterator ArgI = T->begin(), ArgE = T->end(); |
| 320 | ArgI != ArgE; ++ArgI) |
| 321 | Writer.AddTemplateArgument(*ArgI, Record); |
Richard Smith | 3e4c6c4 | 2011-05-05 21:57:07 +0000 | [diff] [blame] | 322 | Writer.AddTypeRef(T->isTypeAlias() ? T->getAliasedType() : |
| 323 | T->isCanonicalUnqualified() ? QualType() |
Argyrios Kyrtzidis | 9763e22 | 2010-07-02 11:55:11 +0000 | [diff] [blame] | 324 | : T->getCanonicalTypeInternal(), |
| 325 | Record); |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 326 | Code = TYPE_TEMPLATE_SPECIALIZATION; |
Argyrios Kyrtzidis | 90b715e | 2010-06-19 19:28:53 +0000 | [diff] [blame] | 327 | } |
| 328 | |
| 329 | void |
Sebastian Redl | 3397c55 | 2010-08-18 23:56:27 +0000 | [diff] [blame] | 330 | ASTTypeWriter::VisitDependentSizedArrayType(const DependentSizedArrayType *T) { |
Argyrios Kyrtzidis | ae8b17f | 2010-06-30 08:49:25 +0000 | [diff] [blame] | 331 | VisitArrayType(T); |
| 332 | Writer.AddStmt(T->getSizeExpr()); |
| 333 | Writer.AddSourceRange(T->getBracketsRange(), Record); |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 334 | Code = TYPE_DEPENDENT_SIZED_ARRAY; |
Argyrios Kyrtzidis | 90b715e | 2010-06-19 19:28:53 +0000 | [diff] [blame] | 335 | } |
| 336 | |
| 337 | void |
Sebastian Redl | 3397c55 | 2010-08-18 23:56:27 +0000 | [diff] [blame] | 338 | ASTTypeWriter::VisitDependentSizedExtVectorType( |
Argyrios Kyrtzidis | 90b715e | 2010-06-19 19:28:53 +0000 | [diff] [blame] | 339 | const DependentSizedExtVectorType *T) { |
| 340 | // FIXME: Serialize this type (C++ only) |
David Blaikie | b219cfc | 2011-09-23 05:06:16 +0000 | [diff] [blame] | 341 | llvm_unreachable("Cannot serialize dependent sized extended vector types"); |
Argyrios Kyrtzidis | 90b715e | 2010-06-19 19:28:53 +0000 | [diff] [blame] | 342 | } |
| 343 | |
| 344 | void |
Sebastian Redl | 3397c55 | 2010-08-18 23:56:27 +0000 | [diff] [blame] | 345 | ASTTypeWriter::VisitTemplateTypeParmType(const TemplateTypeParmType *T) { |
Argyrios Kyrtzidis | 90b715e | 2010-06-19 19:28:53 +0000 | [diff] [blame] | 346 | Record.push_back(T->getDepth()); |
| 347 | Record.push_back(T->getIndex()); |
| 348 | Record.push_back(T->isParameterPack()); |
Chandler Carruth | 4fb86f8 | 2011-05-01 00:51:33 +0000 | [diff] [blame] | 349 | Writer.AddDeclRef(T->getDecl(), Record); |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 350 | Code = TYPE_TEMPLATE_TYPE_PARM; |
Argyrios Kyrtzidis | 90b715e | 2010-06-19 19:28:53 +0000 | [diff] [blame] | 351 | } |
| 352 | |
| 353 | void |
Sebastian Redl | 3397c55 | 2010-08-18 23:56:27 +0000 | [diff] [blame] | 354 | ASTTypeWriter::VisitDependentNameType(const DependentNameType *T) { |
Argyrios Kyrtzidis | 8dfbd8b | 2010-06-24 08:57:31 +0000 | [diff] [blame] | 355 | Record.push_back(T->getKeyword()); |
| 356 | Writer.AddNestedNameSpecifier(T->getQualifier(), Record); |
| 357 | Writer.AddIdentifierRef(T->getIdentifier(), Record); |
Argyrios Kyrtzidis | f48d45e | 2010-07-02 11:55:24 +0000 | [diff] [blame] | 358 | Writer.AddTypeRef(T->isCanonicalUnqualified() ? QualType() |
| 359 | : T->getCanonicalTypeInternal(), |
| 360 | Record); |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 361 | Code = TYPE_DEPENDENT_NAME; |
Argyrios Kyrtzidis | 90b715e | 2010-06-19 19:28:53 +0000 | [diff] [blame] | 362 | } |
| 363 | |
| 364 | void |
Sebastian Redl | 3397c55 | 2010-08-18 23:56:27 +0000 | [diff] [blame] | 365 | ASTTypeWriter::VisitDependentTemplateSpecializationType( |
Argyrios Kyrtzidis | 90b715e | 2010-06-19 19:28:53 +0000 | [diff] [blame] | 366 | const DependentTemplateSpecializationType *T) { |
Argyrios Kyrtzidis | 3acad62 | 2010-06-25 16:24:58 +0000 | [diff] [blame] | 367 | Record.push_back(T->getKeyword()); |
| 368 | Writer.AddNestedNameSpecifier(T->getQualifier(), Record); |
| 369 | Writer.AddIdentifierRef(T->getIdentifier(), Record); |
| 370 | Record.push_back(T->getNumArgs()); |
| 371 | for (DependentTemplateSpecializationType::iterator |
| 372 | I = T->begin(), E = T->end(); I != E; ++I) |
| 373 | Writer.AddTemplateArgument(*I, Record); |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 374 | Code = TYPE_DEPENDENT_TEMPLATE_SPECIALIZATION; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 375 | } |
| 376 | |
Douglas Gregor | 7536dd5 | 2010-12-20 02:24:11 +0000 | [diff] [blame] | 377 | void ASTTypeWriter::VisitPackExpansionType(const PackExpansionType *T) { |
| 378 | Writer.AddTypeRef(T->getPattern(), Record); |
David Blaikie | dc84cd5 | 2013-02-20 22:23:23 +0000 | [diff] [blame] | 379 | if (Optional<unsigned> NumExpansions = T->getNumExpansions()) |
Douglas Gregor | cded4f6 | 2011-01-14 17:04:44 +0000 | [diff] [blame] | 380 | Record.push_back(*NumExpansions + 1); |
| 381 | else |
| 382 | Record.push_back(0); |
Douglas Gregor | 7536dd5 | 2010-12-20 02:24:11 +0000 | [diff] [blame] | 383 | Code = TYPE_PACK_EXPANSION; |
| 384 | } |
| 385 | |
Abramo Bagnara | 075f8f1 | 2010-12-10 16:29:40 +0000 | [diff] [blame] | 386 | void ASTTypeWriter::VisitParenType(const ParenType *T) { |
| 387 | Writer.AddTypeRef(T->getInnerType(), Record); |
| 388 | Code = TYPE_PAREN; |
| 389 | } |
| 390 | |
Sebastian Redl | 3397c55 | 2010-08-18 23:56:27 +0000 | [diff] [blame] | 391 | void ASTTypeWriter::VisitElaboratedType(const ElaboratedType *T) { |
Abramo Bagnara | 465d41b | 2010-05-11 21:36:43 +0000 | [diff] [blame] | 392 | Record.push_back(T->getKeyword()); |
Argyrios Kyrtzidis | 3acad62 | 2010-06-25 16:24:58 +0000 | [diff] [blame] | 393 | Writer.AddNestedNameSpecifier(T->getQualifier(), Record); |
| 394 | Writer.AddTypeRef(T->getNamedType(), Record); |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 395 | Code = TYPE_ELABORATED; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 396 | } |
| 397 | |
Sebastian Redl | 3397c55 | 2010-08-18 23:56:27 +0000 | [diff] [blame] | 398 | void ASTTypeWriter::VisitInjectedClassNameType(const InjectedClassNameType *T) { |
Douglas Gregor | a8e0b97 | 2012-03-26 15:52:37 +0000 | [diff] [blame] | 399 | Writer.AddDeclRef(T->getDecl()->getCanonicalDecl(), Record); |
John McCall | 31f17ec | 2010-04-27 00:57:59 +0000 | [diff] [blame] | 400 | Writer.AddTypeRef(T->getInjectedSpecializationType(), Record); |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 401 | Code = TYPE_INJECTED_CLASS_NAME; |
John McCall | 3cb0ebd | 2010-03-10 03:28:59 +0000 | [diff] [blame] | 402 | } |
| 403 | |
Sebastian Redl | 3397c55 | 2010-08-18 23:56:27 +0000 | [diff] [blame] | 404 | void ASTTypeWriter::VisitObjCInterfaceType(const ObjCInterfaceType *T) { |
Douglas Gregor | 56ca8a9 | 2012-01-17 19:21:53 +0000 | [diff] [blame] | 405 | Writer.AddDeclRef(T->getDecl()->getCanonicalDecl(), Record); |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 406 | Code = TYPE_OBJC_INTERFACE; |
John McCall | c12c5bb | 2010-05-15 11:32:37 +0000 | [diff] [blame] | 407 | } |
| 408 | |
Sebastian Redl | 3397c55 | 2010-08-18 23:56:27 +0000 | [diff] [blame] | 409 | void ASTTypeWriter::VisitObjCObjectType(const ObjCObjectType *T) { |
John McCall | c12c5bb | 2010-05-15 11:32:37 +0000 | [diff] [blame] | 410 | Writer.AddTypeRef(T->getBaseType(), Record); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 411 | Record.push_back(T->getNumProtocols()); |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 412 | for (const auto *I : T->quals()) |
| 413 | Writer.AddDeclRef(I, Record); |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 414 | Code = TYPE_OBJC_OBJECT; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 415 | } |
| 416 | |
Steve Naroff | d1b3c2d | 2009-06-17 22:40:22 +0000 | [diff] [blame] | 417 | void |
Sebastian Redl | 3397c55 | 2010-08-18 23:56:27 +0000 | [diff] [blame] | 418 | ASTTypeWriter::VisitObjCObjectPointerType(const ObjCObjectPointerType *T) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 419 | Writer.AddTypeRef(T->getPointeeType(), Record); |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 420 | Code = TYPE_OBJC_OBJECT_POINTER; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 421 | } |
| 422 | |
Eli Friedman | b001de7 | 2011-10-06 23:00:33 +0000 | [diff] [blame] | 423 | void |
| 424 | ASTTypeWriter::VisitAtomicType(const AtomicType *T) { |
| 425 | Writer.AddTypeRef(T->getValueType(), Record); |
| 426 | Code = TYPE_ATOMIC; |
| 427 | } |
| 428 | |
John McCall | a1ee0c5 | 2009-10-16 21:56:05 +0000 | [diff] [blame] | 429 | namespace { |
| 430 | |
| 431 | class TypeLocWriter : public TypeLocVisitor<TypeLocWriter> { |
Sebastian Redl | a4232eb | 2010-08-18 23:56:21 +0000 | [diff] [blame] | 432 | ASTWriter &Writer; |
Argyrios Kyrtzidis | 89eaf3a | 2010-10-24 17:26:40 +0000 | [diff] [blame] | 433 | ASTWriter::RecordDataImpl &Record; |
John McCall | a1ee0c5 | 2009-10-16 21:56:05 +0000 | [diff] [blame] | 434 | |
| 435 | public: |
Argyrios Kyrtzidis | 89eaf3a | 2010-10-24 17:26:40 +0000 | [diff] [blame] | 436 | TypeLocWriter(ASTWriter &Writer, ASTWriter::RecordDataImpl &Record) |
John McCall | a1ee0c5 | 2009-10-16 21:56:05 +0000 | [diff] [blame] | 437 | : Writer(Writer), Record(Record) { } |
| 438 | |
John McCall | 51bd803 | 2009-10-18 01:05:36 +0000 | [diff] [blame] | 439 | #define ABSTRACT_TYPELOC(CLASS, PARENT) |
John McCall | a1ee0c5 | 2009-10-16 21:56:05 +0000 | [diff] [blame] | 440 | #define TYPELOC(CLASS, PARENT) \ |
John McCall | 51bd803 | 2009-10-18 01:05:36 +0000 | [diff] [blame] | 441 | void Visit##CLASS##TypeLoc(CLASS##TypeLoc TyLoc); |
John McCall | a1ee0c5 | 2009-10-16 21:56:05 +0000 | [diff] [blame] | 442 | #include "clang/AST/TypeLocNodes.def" |
| 443 | |
John McCall | 51bd803 | 2009-10-18 01:05:36 +0000 | [diff] [blame] | 444 | void VisitArrayTypeLoc(ArrayTypeLoc TyLoc); |
| 445 | void VisitFunctionTypeLoc(FunctionTypeLoc TyLoc); |
John McCall | a1ee0c5 | 2009-10-16 21:56:05 +0000 | [diff] [blame] | 446 | }; |
| 447 | |
| 448 | } |
| 449 | |
John McCall | 51bd803 | 2009-10-18 01:05:36 +0000 | [diff] [blame] | 450 | void TypeLocWriter::VisitQualifiedTypeLoc(QualifiedTypeLoc TL) { |
| 451 | // nothing to do |
John McCall | a1ee0c5 | 2009-10-16 21:56:05 +0000 | [diff] [blame] | 452 | } |
John McCall | 51bd803 | 2009-10-18 01:05:36 +0000 | [diff] [blame] | 453 | void TypeLocWriter::VisitBuiltinTypeLoc(BuiltinTypeLoc TL) { |
Douglas Gregor | ddf889a | 2010-01-18 18:04:31 +0000 | [diff] [blame] | 454 | Writer.AddSourceLocation(TL.getBuiltinLoc(), Record); |
| 455 | if (TL.needsExtraLocalData()) { |
| 456 | Record.push_back(TL.getWrittenTypeSpec()); |
| 457 | Record.push_back(TL.getWrittenSignSpec()); |
| 458 | Record.push_back(TL.getWrittenWidthSpec()); |
| 459 | Record.push_back(TL.hasModeAttr()); |
| 460 | } |
John McCall | a1ee0c5 | 2009-10-16 21:56:05 +0000 | [diff] [blame] | 461 | } |
John McCall | 51bd803 | 2009-10-18 01:05:36 +0000 | [diff] [blame] | 462 | void TypeLocWriter::VisitComplexTypeLoc(ComplexTypeLoc TL) { |
| 463 | Writer.AddSourceLocation(TL.getNameLoc(), Record); |
John McCall | a1ee0c5 | 2009-10-16 21:56:05 +0000 | [diff] [blame] | 464 | } |
John McCall | 51bd803 | 2009-10-18 01:05:36 +0000 | [diff] [blame] | 465 | void TypeLocWriter::VisitPointerTypeLoc(PointerTypeLoc TL) { |
| 466 | Writer.AddSourceLocation(TL.getStarLoc(), Record); |
John McCall | a1ee0c5 | 2009-10-16 21:56:05 +0000 | [diff] [blame] | 467 | } |
Reid Kleckner | 12df246 | 2013-06-24 17:51:48 +0000 | [diff] [blame] | 468 | void TypeLocWriter::VisitDecayedTypeLoc(DecayedTypeLoc TL) { |
| 469 | // nothing to do |
| 470 | } |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 471 | void TypeLocWriter::VisitAdjustedTypeLoc(AdjustedTypeLoc TL) { |
| 472 | // nothing to do |
| 473 | } |
John McCall | 51bd803 | 2009-10-18 01:05:36 +0000 | [diff] [blame] | 474 | void TypeLocWriter::VisitBlockPointerTypeLoc(BlockPointerTypeLoc TL) { |
| 475 | Writer.AddSourceLocation(TL.getCaretLoc(), Record); |
John McCall | a1ee0c5 | 2009-10-16 21:56:05 +0000 | [diff] [blame] | 476 | } |
John McCall | 51bd803 | 2009-10-18 01:05:36 +0000 | [diff] [blame] | 477 | void TypeLocWriter::VisitLValueReferenceTypeLoc(LValueReferenceTypeLoc TL) { |
| 478 | Writer.AddSourceLocation(TL.getAmpLoc(), Record); |
John McCall | a1ee0c5 | 2009-10-16 21:56:05 +0000 | [diff] [blame] | 479 | } |
John McCall | 51bd803 | 2009-10-18 01:05:36 +0000 | [diff] [blame] | 480 | void TypeLocWriter::VisitRValueReferenceTypeLoc(RValueReferenceTypeLoc TL) { |
| 481 | Writer.AddSourceLocation(TL.getAmpAmpLoc(), Record); |
John McCall | a1ee0c5 | 2009-10-16 21:56:05 +0000 | [diff] [blame] | 482 | } |
John McCall | 51bd803 | 2009-10-18 01:05:36 +0000 | [diff] [blame] | 483 | void TypeLocWriter::VisitMemberPointerTypeLoc(MemberPointerTypeLoc TL) { |
| 484 | Writer.AddSourceLocation(TL.getStarLoc(), Record); |
Abramo Bagnara | b6ab6c1 | 2011-03-05 14:42:21 +0000 | [diff] [blame] | 485 | Writer.AddTypeSourceInfo(TL.getClassTInfo(), Record); |
John McCall | a1ee0c5 | 2009-10-16 21:56:05 +0000 | [diff] [blame] | 486 | } |
John McCall | 51bd803 | 2009-10-18 01:05:36 +0000 | [diff] [blame] | 487 | void TypeLocWriter::VisitArrayTypeLoc(ArrayTypeLoc TL) { |
| 488 | Writer.AddSourceLocation(TL.getLBracketLoc(), Record); |
| 489 | Writer.AddSourceLocation(TL.getRBracketLoc(), Record); |
| 490 | Record.push_back(TL.getSizeExpr() ? 1 : 0); |
| 491 | if (TL.getSizeExpr()) |
| 492 | Writer.AddStmt(TL.getSizeExpr()); |
John McCall | a1ee0c5 | 2009-10-16 21:56:05 +0000 | [diff] [blame] | 493 | } |
John McCall | 51bd803 | 2009-10-18 01:05:36 +0000 | [diff] [blame] | 494 | void TypeLocWriter::VisitConstantArrayTypeLoc(ConstantArrayTypeLoc TL) { |
| 495 | VisitArrayTypeLoc(TL); |
| 496 | } |
| 497 | void TypeLocWriter::VisitIncompleteArrayTypeLoc(IncompleteArrayTypeLoc TL) { |
| 498 | VisitArrayTypeLoc(TL); |
| 499 | } |
| 500 | void TypeLocWriter::VisitVariableArrayTypeLoc(VariableArrayTypeLoc TL) { |
| 501 | VisitArrayTypeLoc(TL); |
| 502 | } |
| 503 | void TypeLocWriter::VisitDependentSizedArrayTypeLoc( |
| 504 | DependentSizedArrayTypeLoc TL) { |
| 505 | VisitArrayTypeLoc(TL); |
| 506 | } |
| 507 | void TypeLocWriter::VisitDependentSizedExtVectorTypeLoc( |
| 508 | DependentSizedExtVectorTypeLoc TL) { |
| 509 | Writer.AddSourceLocation(TL.getNameLoc(), Record); |
| 510 | } |
| 511 | void TypeLocWriter::VisitVectorTypeLoc(VectorTypeLoc TL) { |
| 512 | Writer.AddSourceLocation(TL.getNameLoc(), Record); |
| 513 | } |
| 514 | void TypeLocWriter::VisitExtVectorTypeLoc(ExtVectorTypeLoc TL) { |
| 515 | Writer.AddSourceLocation(TL.getNameLoc(), Record); |
| 516 | } |
| 517 | void TypeLocWriter::VisitFunctionTypeLoc(FunctionTypeLoc TL) { |
Abramo Bagnara | 796aa44 | 2011-03-12 11:17:06 +0000 | [diff] [blame] | 518 | Writer.AddSourceLocation(TL.getLocalRangeBegin(), Record); |
Abramo Bagnara | 59c0a81 | 2012-10-04 21:42:10 +0000 | [diff] [blame] | 519 | Writer.AddSourceLocation(TL.getLParenLoc(), Record); |
| 520 | Writer.AddSourceLocation(TL.getRParenLoc(), Record); |
Abramo Bagnara | 796aa44 | 2011-03-12 11:17:06 +0000 | [diff] [blame] | 521 | Writer.AddSourceLocation(TL.getLocalRangeEnd(), Record); |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 522 | for (unsigned i = 0, e = TL.getNumParams(); i != e; ++i) |
| 523 | Writer.AddDeclRef(TL.getParam(i), Record); |
John McCall | 51bd803 | 2009-10-18 01:05:36 +0000 | [diff] [blame] | 524 | } |
| 525 | void TypeLocWriter::VisitFunctionProtoTypeLoc(FunctionProtoTypeLoc TL) { |
| 526 | VisitFunctionTypeLoc(TL); |
| 527 | } |
| 528 | void TypeLocWriter::VisitFunctionNoProtoTypeLoc(FunctionNoProtoTypeLoc TL) { |
| 529 | VisitFunctionTypeLoc(TL); |
| 530 | } |
John McCall | ed97649 | 2009-12-04 22:46:56 +0000 | [diff] [blame] | 531 | void TypeLocWriter::VisitUnresolvedUsingTypeLoc(UnresolvedUsingTypeLoc TL) { |
| 532 | Writer.AddSourceLocation(TL.getNameLoc(), Record); |
| 533 | } |
John McCall | 51bd803 | 2009-10-18 01:05:36 +0000 | [diff] [blame] | 534 | void TypeLocWriter::VisitTypedefTypeLoc(TypedefTypeLoc TL) { |
| 535 | Writer.AddSourceLocation(TL.getNameLoc(), Record); |
| 536 | } |
| 537 | void TypeLocWriter::VisitTypeOfExprTypeLoc(TypeOfExprTypeLoc TL) { |
John McCall | cfb708c | 2010-01-13 20:03:27 +0000 | [diff] [blame] | 538 | Writer.AddSourceLocation(TL.getTypeofLoc(), Record); |
| 539 | Writer.AddSourceLocation(TL.getLParenLoc(), Record); |
| 540 | Writer.AddSourceLocation(TL.getRParenLoc(), Record); |
John McCall | 51bd803 | 2009-10-18 01:05:36 +0000 | [diff] [blame] | 541 | } |
| 542 | void TypeLocWriter::VisitTypeOfTypeLoc(TypeOfTypeLoc TL) { |
John McCall | cfb708c | 2010-01-13 20:03:27 +0000 | [diff] [blame] | 543 | Writer.AddSourceLocation(TL.getTypeofLoc(), Record); |
| 544 | Writer.AddSourceLocation(TL.getLParenLoc(), Record); |
| 545 | Writer.AddSourceLocation(TL.getRParenLoc(), Record); |
| 546 | Writer.AddTypeSourceInfo(TL.getUnderlyingTInfo(), Record); |
John McCall | 51bd803 | 2009-10-18 01:05:36 +0000 | [diff] [blame] | 547 | } |
| 548 | void TypeLocWriter::VisitDecltypeTypeLoc(DecltypeTypeLoc TL) { |
| 549 | Writer.AddSourceLocation(TL.getNameLoc(), Record); |
| 550 | } |
Sean Hunt | ca63c20 | 2011-05-24 22:41:36 +0000 | [diff] [blame] | 551 | void TypeLocWriter::VisitUnaryTransformTypeLoc(UnaryTransformTypeLoc TL) { |
| 552 | Writer.AddSourceLocation(TL.getKWLoc(), Record); |
| 553 | Writer.AddSourceLocation(TL.getLParenLoc(), Record); |
| 554 | Writer.AddSourceLocation(TL.getRParenLoc(), Record); |
| 555 | Writer.AddTypeSourceInfo(TL.getUnderlyingTInfo(), Record); |
| 556 | } |
Richard Smith | 34b41d9 | 2011-02-20 03:19:35 +0000 | [diff] [blame] | 557 | void TypeLocWriter::VisitAutoTypeLoc(AutoTypeLoc TL) { |
| 558 | Writer.AddSourceLocation(TL.getNameLoc(), Record); |
| 559 | } |
John McCall | 51bd803 | 2009-10-18 01:05:36 +0000 | [diff] [blame] | 560 | void TypeLocWriter::VisitRecordTypeLoc(RecordTypeLoc TL) { |
| 561 | Writer.AddSourceLocation(TL.getNameLoc(), Record); |
| 562 | } |
| 563 | void TypeLocWriter::VisitEnumTypeLoc(EnumTypeLoc TL) { |
| 564 | Writer.AddSourceLocation(TL.getNameLoc(), Record); |
| 565 | } |
John McCall | 9d156a7 | 2011-01-06 01:58:22 +0000 | [diff] [blame] | 566 | void TypeLocWriter::VisitAttributedTypeLoc(AttributedTypeLoc TL) { |
| 567 | Writer.AddSourceLocation(TL.getAttrNameLoc(), Record); |
| 568 | if (TL.hasAttrOperand()) { |
| 569 | SourceRange range = TL.getAttrOperandParensRange(); |
| 570 | Writer.AddSourceLocation(range.getBegin(), Record); |
| 571 | Writer.AddSourceLocation(range.getEnd(), Record); |
| 572 | } |
| 573 | if (TL.hasAttrExprOperand()) { |
| 574 | Expr *operand = TL.getAttrExprOperand(); |
| 575 | Record.push_back(operand ? 1 : 0); |
| 576 | if (operand) Writer.AddStmt(operand); |
| 577 | } else if (TL.hasAttrEnumOperand()) { |
| 578 | Writer.AddSourceLocation(TL.getAttrEnumOperandLoc(), Record); |
| 579 | } |
| 580 | } |
John McCall | 51bd803 | 2009-10-18 01:05:36 +0000 | [diff] [blame] | 581 | void TypeLocWriter::VisitTemplateTypeParmTypeLoc(TemplateTypeParmTypeLoc TL) { |
| 582 | Writer.AddSourceLocation(TL.getNameLoc(), Record); |
| 583 | } |
John McCall | 49a832b | 2009-10-18 09:09:24 +0000 | [diff] [blame] | 584 | void TypeLocWriter::VisitSubstTemplateTypeParmTypeLoc( |
| 585 | SubstTemplateTypeParmTypeLoc TL) { |
| 586 | Writer.AddSourceLocation(TL.getNameLoc(), Record); |
| 587 | } |
Douglas Gregor | c3069d6 | 2011-01-14 02:55:32 +0000 | [diff] [blame] | 588 | void TypeLocWriter::VisitSubstTemplateTypeParmPackTypeLoc( |
| 589 | SubstTemplateTypeParmPackTypeLoc TL) { |
| 590 | Writer.AddSourceLocation(TL.getNameLoc(), Record); |
| 591 | } |
John McCall | 51bd803 | 2009-10-18 01:05:36 +0000 | [diff] [blame] | 592 | void TypeLocWriter::VisitTemplateSpecializationTypeLoc( |
| 593 | TemplateSpecializationTypeLoc TL) { |
Abramo Bagnara | 55d23c9 | 2012-02-06 14:41:24 +0000 | [diff] [blame] | 594 | Writer.AddSourceLocation(TL.getTemplateKeywordLoc(), Record); |
John McCall | 833ca99 | 2009-10-29 08:12:44 +0000 | [diff] [blame] | 595 | Writer.AddSourceLocation(TL.getTemplateNameLoc(), Record); |
| 596 | Writer.AddSourceLocation(TL.getLAngleLoc(), Record); |
| 597 | Writer.AddSourceLocation(TL.getRAngleLoc(), Record); |
| 598 | for (unsigned i = 0, e = TL.getNumArgs(); i != e; ++i) |
Argyrios Kyrtzidis | 44f8c37 | 2010-06-22 09:54:59 +0000 | [diff] [blame] | 599 | Writer.AddTemplateArgumentLocInfo(TL.getArgLoc(i).getArgument().getKind(), |
| 600 | TL.getArgLoc(i).getLocInfo(), Record); |
John McCall | 51bd803 | 2009-10-18 01:05:36 +0000 | [diff] [blame] | 601 | } |
Abramo Bagnara | 075f8f1 | 2010-12-10 16:29:40 +0000 | [diff] [blame] | 602 | void TypeLocWriter::VisitParenTypeLoc(ParenTypeLoc TL) { |
| 603 | Writer.AddSourceLocation(TL.getLParenLoc(), Record); |
| 604 | Writer.AddSourceLocation(TL.getRParenLoc(), Record); |
| 605 | } |
Abramo Bagnara | 465d41b | 2010-05-11 21:36:43 +0000 | [diff] [blame] | 606 | void TypeLocWriter::VisitElaboratedTypeLoc(ElaboratedTypeLoc TL) { |
Abramo Bagnara | 38a4291 | 2012-02-06 19:09:27 +0000 | [diff] [blame] | 607 | Writer.AddSourceLocation(TL.getElaboratedKeywordLoc(), Record); |
Douglas Gregor | 9e87687 | 2011-03-01 18:12:44 +0000 | [diff] [blame] | 608 | Writer.AddNestedNameSpecifierLoc(TL.getQualifierLoc(), Record); |
John McCall | 51bd803 | 2009-10-18 01:05:36 +0000 | [diff] [blame] | 609 | } |
John McCall | 3cb0ebd | 2010-03-10 03:28:59 +0000 | [diff] [blame] | 610 | void TypeLocWriter::VisitInjectedClassNameTypeLoc(InjectedClassNameTypeLoc TL) { |
| 611 | Writer.AddSourceLocation(TL.getNameLoc(), Record); |
| 612 | } |
Douglas Gregor | 4714c12 | 2010-03-31 17:34:00 +0000 | [diff] [blame] | 613 | void TypeLocWriter::VisitDependentNameTypeLoc(DependentNameTypeLoc TL) { |
Abramo Bagnara | 38a4291 | 2012-02-06 19:09:27 +0000 | [diff] [blame] | 614 | Writer.AddSourceLocation(TL.getElaboratedKeywordLoc(), Record); |
Douglas Gregor | 2494dd0 | 2011-03-01 01:34:45 +0000 | [diff] [blame] | 615 | Writer.AddNestedNameSpecifierLoc(TL.getQualifierLoc(), Record); |
John McCall | 51bd803 | 2009-10-18 01:05:36 +0000 | [diff] [blame] | 616 | Writer.AddSourceLocation(TL.getNameLoc(), Record); |
| 617 | } |
John McCall | 3350095 | 2010-06-11 00:33:02 +0000 | [diff] [blame] | 618 | void TypeLocWriter::VisitDependentTemplateSpecializationTypeLoc( |
| 619 | DependentTemplateSpecializationTypeLoc TL) { |
Abramo Bagnara | 55d23c9 | 2012-02-06 14:41:24 +0000 | [diff] [blame] | 620 | Writer.AddSourceLocation(TL.getElaboratedKeywordLoc(), Record); |
Douglas Gregor | 94fdffa | 2011-03-01 20:11:18 +0000 | [diff] [blame] | 621 | Writer.AddNestedNameSpecifierLoc(TL.getQualifierLoc(), Record); |
Abramo Bagnara | 66581d4 | 2012-02-06 22:45:07 +0000 | [diff] [blame] | 622 | Writer.AddSourceLocation(TL.getTemplateKeywordLoc(), Record); |
Abramo Bagnara | 55d23c9 | 2012-02-06 14:41:24 +0000 | [diff] [blame] | 623 | Writer.AddSourceLocation(TL.getTemplateNameLoc(), Record); |
John McCall | 3350095 | 2010-06-11 00:33:02 +0000 | [diff] [blame] | 624 | Writer.AddSourceLocation(TL.getLAngleLoc(), Record); |
| 625 | Writer.AddSourceLocation(TL.getRAngleLoc(), Record); |
| 626 | for (unsigned I = 0, E = TL.getNumArgs(); I != E; ++I) |
Argyrios Kyrtzidis | 44f8c37 | 2010-06-22 09:54:59 +0000 | [diff] [blame] | 627 | Writer.AddTemplateArgumentLocInfo(TL.getArgLoc(I).getArgument().getKind(), |
| 628 | TL.getArgLoc(I).getLocInfo(), Record); |
John McCall | 3350095 | 2010-06-11 00:33:02 +0000 | [diff] [blame] | 629 | } |
Douglas Gregor | 7536dd5 | 2010-12-20 02:24:11 +0000 | [diff] [blame] | 630 | void TypeLocWriter::VisitPackExpansionTypeLoc(PackExpansionTypeLoc TL) { |
| 631 | Writer.AddSourceLocation(TL.getEllipsisLoc(), Record); |
| 632 | } |
John McCall | 51bd803 | 2009-10-18 01:05:36 +0000 | [diff] [blame] | 633 | void TypeLocWriter::VisitObjCInterfaceTypeLoc(ObjCInterfaceTypeLoc TL) { |
| 634 | Writer.AddSourceLocation(TL.getNameLoc(), Record); |
John McCall | c12c5bb | 2010-05-15 11:32:37 +0000 | [diff] [blame] | 635 | } |
| 636 | void TypeLocWriter::VisitObjCObjectTypeLoc(ObjCObjectTypeLoc TL) { |
| 637 | Record.push_back(TL.hasBaseTypeAsWritten()); |
John McCall | 51bd803 | 2009-10-18 01:05:36 +0000 | [diff] [blame] | 638 | Writer.AddSourceLocation(TL.getLAngleLoc(), Record); |
| 639 | Writer.AddSourceLocation(TL.getRAngleLoc(), Record); |
| 640 | for (unsigned i = 0, e = TL.getNumProtocols(); i != e; ++i) |
| 641 | Writer.AddSourceLocation(TL.getProtocolLoc(i), Record); |
John McCall | a1ee0c5 | 2009-10-16 21:56:05 +0000 | [diff] [blame] | 642 | } |
John McCall | 54e14c4 | 2009-10-22 22:37:11 +0000 | [diff] [blame] | 643 | void TypeLocWriter::VisitObjCObjectPointerTypeLoc(ObjCObjectPointerTypeLoc TL) { |
| 644 | Writer.AddSourceLocation(TL.getStarLoc(), Record); |
John McCall | 54e14c4 | 2009-10-22 22:37:11 +0000 | [diff] [blame] | 645 | } |
Eli Friedman | b001de7 | 2011-10-06 23:00:33 +0000 | [diff] [blame] | 646 | void TypeLocWriter::VisitAtomicTypeLoc(AtomicTypeLoc TL) { |
| 647 | Writer.AddSourceLocation(TL.getKWLoc(), Record); |
| 648 | Writer.AddSourceLocation(TL.getLParenLoc(), Record); |
| 649 | Writer.AddSourceLocation(TL.getRParenLoc(), Record); |
| 650 | } |
John McCall | a1ee0c5 | 2009-10-16 21:56:05 +0000 | [diff] [blame] | 651 | |
Chris Lattner | 4dcf151a | 2009-04-22 05:57:30 +0000 | [diff] [blame] | 652 | //===----------------------------------------------------------------------===// |
Sebastian Redl | a4232eb | 2010-08-18 23:56:21 +0000 | [diff] [blame] | 653 | // ASTWriter Implementation |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 654 | //===----------------------------------------------------------------------===// |
| 655 | |
Chris Lattner | b145b1e | 2009-04-26 22:26:21 +0000 | [diff] [blame] | 656 | static void EmitBlockID(unsigned ID, const char *Name, |
| 657 | llvm::BitstreamWriter &Stream, |
Argyrios Kyrtzidis | 89eaf3a | 2010-10-24 17:26:40 +0000 | [diff] [blame] | 658 | ASTWriter::RecordDataImpl &Record) { |
Chris Lattner | b145b1e | 2009-04-26 22:26:21 +0000 | [diff] [blame] | 659 | Record.clear(); |
| 660 | Record.push_back(ID); |
| 661 | Stream.EmitRecord(llvm::bitc::BLOCKINFO_CODE_SETBID, Record); |
| 662 | |
| 663 | // Emit the block name if present. |
Stephen Hines | 6bcf27b | 2014-05-29 04:14:42 -0700 | [diff] [blame^] | 664 | if (!Name || Name[0] == 0) |
| 665 | return; |
Chris Lattner | b145b1e | 2009-04-26 22:26:21 +0000 | [diff] [blame] | 666 | Record.clear(); |
| 667 | while (*Name) |
| 668 | Record.push_back(*Name++); |
| 669 | Stream.EmitRecord(llvm::bitc::BLOCKINFO_CODE_BLOCKNAME, Record); |
| 670 | } |
| 671 | |
| 672 | static void EmitRecordID(unsigned ID, const char *Name, |
| 673 | llvm::BitstreamWriter &Stream, |
Argyrios Kyrtzidis | 89eaf3a | 2010-10-24 17:26:40 +0000 | [diff] [blame] | 674 | ASTWriter::RecordDataImpl &Record) { |
Chris Lattner | b145b1e | 2009-04-26 22:26:21 +0000 | [diff] [blame] | 675 | Record.clear(); |
| 676 | Record.push_back(ID); |
| 677 | while (*Name) |
| 678 | Record.push_back(*Name++); |
| 679 | Stream.EmitRecord(llvm::bitc::BLOCKINFO_CODE_SETRECORDNAME, Record); |
Chris Lattner | 0558df2 | 2009-04-27 00:49:53 +0000 | [diff] [blame] | 680 | } |
| 681 | |
| 682 | static void AddStmtsExprs(llvm::BitstreamWriter &Stream, |
Argyrios Kyrtzidis | 89eaf3a | 2010-10-24 17:26:40 +0000 | [diff] [blame] | 683 | ASTWriter::RecordDataImpl &Record) { |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 684 | #define RECORD(X) EmitRecordID(X, #X, Stream, Record) |
Chris Lattner | 0558df2 | 2009-04-27 00:49:53 +0000 | [diff] [blame] | 685 | RECORD(STMT_STOP); |
| 686 | RECORD(STMT_NULL_PTR); |
| 687 | RECORD(STMT_NULL); |
| 688 | RECORD(STMT_COMPOUND); |
| 689 | RECORD(STMT_CASE); |
| 690 | RECORD(STMT_DEFAULT); |
| 691 | RECORD(STMT_LABEL); |
Richard Smith | 534986f | 2012-04-14 00:33:13 +0000 | [diff] [blame] | 692 | RECORD(STMT_ATTRIBUTED); |
Chris Lattner | 0558df2 | 2009-04-27 00:49:53 +0000 | [diff] [blame] | 693 | RECORD(STMT_IF); |
| 694 | RECORD(STMT_SWITCH); |
| 695 | RECORD(STMT_WHILE); |
| 696 | RECORD(STMT_DO); |
| 697 | RECORD(STMT_FOR); |
| 698 | RECORD(STMT_GOTO); |
| 699 | RECORD(STMT_INDIRECT_GOTO); |
| 700 | RECORD(STMT_CONTINUE); |
| 701 | RECORD(STMT_BREAK); |
| 702 | RECORD(STMT_RETURN); |
| 703 | RECORD(STMT_DECL); |
Chad Rosier | df5faf5 | 2012-08-25 00:11:56 +0000 | [diff] [blame] | 704 | RECORD(STMT_GCCASM); |
Chad Rosier | cd518a0 | 2012-08-24 23:51:02 +0000 | [diff] [blame] | 705 | RECORD(STMT_MSASM); |
Chris Lattner | 0558df2 | 2009-04-27 00:49:53 +0000 | [diff] [blame] | 706 | RECORD(EXPR_PREDEFINED); |
| 707 | RECORD(EXPR_DECL_REF); |
| 708 | RECORD(EXPR_INTEGER_LITERAL); |
| 709 | RECORD(EXPR_FLOATING_LITERAL); |
| 710 | RECORD(EXPR_IMAGINARY_LITERAL); |
| 711 | RECORD(EXPR_STRING_LITERAL); |
| 712 | RECORD(EXPR_CHARACTER_LITERAL); |
| 713 | RECORD(EXPR_PAREN); |
| 714 | RECORD(EXPR_UNARY_OPERATOR); |
| 715 | RECORD(EXPR_SIZEOF_ALIGN_OF); |
| 716 | RECORD(EXPR_ARRAY_SUBSCRIPT); |
| 717 | RECORD(EXPR_CALL); |
| 718 | RECORD(EXPR_MEMBER); |
| 719 | RECORD(EXPR_BINARY_OPERATOR); |
| 720 | RECORD(EXPR_COMPOUND_ASSIGN_OPERATOR); |
| 721 | RECORD(EXPR_CONDITIONAL_OPERATOR); |
| 722 | RECORD(EXPR_IMPLICIT_CAST); |
| 723 | RECORD(EXPR_CSTYLE_CAST); |
| 724 | RECORD(EXPR_COMPOUND_LITERAL); |
| 725 | RECORD(EXPR_EXT_VECTOR_ELEMENT); |
| 726 | RECORD(EXPR_INIT_LIST); |
| 727 | RECORD(EXPR_DESIGNATED_INIT); |
| 728 | RECORD(EXPR_IMPLICIT_VALUE_INIT); |
| 729 | RECORD(EXPR_VA_ARG); |
| 730 | RECORD(EXPR_ADDR_LABEL); |
| 731 | RECORD(EXPR_STMT); |
Chris Lattner | 0558df2 | 2009-04-27 00:49:53 +0000 | [diff] [blame] | 732 | RECORD(EXPR_CHOOSE); |
| 733 | RECORD(EXPR_GNU_NULL); |
| 734 | RECORD(EXPR_SHUFFLE_VECTOR); |
| 735 | RECORD(EXPR_BLOCK); |
Peter Collingbourne | f111d93 | 2011-04-15 00:35:48 +0000 | [diff] [blame] | 736 | RECORD(EXPR_GENERIC_SELECTION); |
Chris Lattner | 0558df2 | 2009-04-27 00:49:53 +0000 | [diff] [blame] | 737 | RECORD(EXPR_OBJC_STRING_LITERAL); |
Patrick Beard | eb382ec | 2012-04-19 00:25:12 +0000 | [diff] [blame] | 738 | RECORD(EXPR_OBJC_BOXED_EXPRESSION); |
Ted Kremenek | ebcb57a | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 739 | RECORD(EXPR_OBJC_ARRAY_LITERAL); |
| 740 | RECORD(EXPR_OBJC_DICTIONARY_LITERAL); |
Chris Lattner | 0558df2 | 2009-04-27 00:49:53 +0000 | [diff] [blame] | 741 | RECORD(EXPR_OBJC_ENCODE); |
| 742 | RECORD(EXPR_OBJC_SELECTOR_EXPR); |
| 743 | RECORD(EXPR_OBJC_PROTOCOL_EXPR); |
| 744 | RECORD(EXPR_OBJC_IVAR_REF_EXPR); |
| 745 | RECORD(EXPR_OBJC_PROPERTY_REF_EXPR); |
| 746 | RECORD(EXPR_OBJC_KVC_REF_EXPR); |
| 747 | RECORD(EXPR_OBJC_MESSAGE_EXPR); |
Chris Lattner | 0558df2 | 2009-04-27 00:49:53 +0000 | [diff] [blame] | 748 | RECORD(STMT_OBJC_FOR_COLLECTION); |
| 749 | RECORD(STMT_OBJC_CATCH); |
| 750 | RECORD(STMT_OBJC_FINALLY); |
| 751 | RECORD(STMT_OBJC_AT_TRY); |
| 752 | RECORD(STMT_OBJC_AT_SYNCHRONIZED); |
| 753 | RECORD(STMT_OBJC_AT_THROW); |
Ted Kremenek | ebcb57a | 2012-03-06 20:05:56 +0000 | [diff] [blame] | 754 | RECORD(EXPR_OBJC_BOOL_LITERAL); |
Sam Weinig | eb7f961 | 2010-02-07 06:32:43 +0000 | [diff] [blame] | 755 | RECORD(EXPR_CXX_OPERATOR_CALL); |
| 756 | RECORD(EXPR_CXX_CONSTRUCT); |
| 757 | RECORD(EXPR_CXX_STATIC_CAST); |
| 758 | RECORD(EXPR_CXX_DYNAMIC_CAST); |
| 759 | RECORD(EXPR_CXX_REINTERPRET_CAST); |
| 760 | RECORD(EXPR_CXX_CONST_CAST); |
| 761 | RECORD(EXPR_CXX_FUNCTIONAL_CAST); |
Richard Smith | 9fcce65 | 2012-03-07 08:35:16 +0000 | [diff] [blame] | 762 | RECORD(EXPR_USER_DEFINED_LITERAL); |
Richard Smith | 7c3e615 | 2013-06-12 22:31:48 +0000 | [diff] [blame] | 763 | RECORD(EXPR_CXX_STD_INITIALIZER_LIST); |
Sam Weinig | eb7f961 | 2010-02-07 06:32:43 +0000 | [diff] [blame] | 764 | RECORD(EXPR_CXX_BOOL_LITERAL); |
| 765 | RECORD(EXPR_CXX_NULL_PTR_LITERAL); |
Douglas Gregor | b6c2b3f | 2011-02-08 16:34:17 +0000 | [diff] [blame] | 766 | RECORD(EXPR_CXX_TYPEID_EXPR); |
| 767 | RECORD(EXPR_CXX_TYPEID_TYPE); |
| 768 | RECORD(EXPR_CXX_UUIDOF_EXPR); |
| 769 | RECORD(EXPR_CXX_UUIDOF_TYPE); |
| 770 | RECORD(EXPR_CXX_THIS); |
| 771 | RECORD(EXPR_CXX_THROW); |
| 772 | RECORD(EXPR_CXX_DEFAULT_ARG); |
| 773 | RECORD(EXPR_CXX_BIND_TEMPORARY); |
| 774 | RECORD(EXPR_CXX_SCALAR_VALUE_INIT); |
| 775 | RECORD(EXPR_CXX_NEW); |
| 776 | RECORD(EXPR_CXX_DELETE); |
| 777 | RECORD(EXPR_CXX_PSEUDO_DESTRUCTOR); |
| 778 | RECORD(EXPR_EXPR_WITH_CLEANUPS); |
| 779 | RECORD(EXPR_CXX_DEPENDENT_SCOPE_MEMBER); |
| 780 | RECORD(EXPR_CXX_DEPENDENT_SCOPE_DECL_REF); |
| 781 | RECORD(EXPR_CXX_UNRESOLVED_CONSTRUCT); |
| 782 | RECORD(EXPR_CXX_UNRESOLVED_MEMBER); |
| 783 | RECORD(EXPR_CXX_UNRESOLVED_LOOKUP); |
Douglas Gregor | b6c2b3f | 2011-02-08 16:34:17 +0000 | [diff] [blame] | 784 | RECORD(EXPR_CXX_NOEXCEPT); |
| 785 | RECORD(EXPR_OPAQUE_VALUE); |
Douglas Gregor | b6c2b3f | 2011-02-08 16:34:17 +0000 | [diff] [blame] | 786 | RECORD(EXPR_PACK_EXPANSION); |
| 787 | RECORD(EXPR_SIZEOF_PACK); |
| 788 | RECORD(EXPR_SUBST_NON_TYPE_TEMPLATE_PARM_PACK); |
Peter Collingbourne | e08ce65 | 2011-02-09 21:07:24 +0000 | [diff] [blame] | 789 | RECORD(EXPR_CUDA_KERNEL_CALL); |
Chris Lattner | 0558df2 | 2009-04-27 00:49:53 +0000 | [diff] [blame] | 790 | #undef RECORD |
Chris Lattner | b145b1e | 2009-04-26 22:26:21 +0000 | [diff] [blame] | 791 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 792 | |
Sebastian Redl | a4232eb | 2010-08-18 23:56:21 +0000 | [diff] [blame] | 793 | void ASTWriter::WriteBlockInfoBlock() { |
Chris Lattner | b145b1e | 2009-04-26 22:26:21 +0000 | [diff] [blame] | 794 | RecordData Record; |
| 795 | Stream.EnterSubblock(llvm::bitc::BLOCKINFO_BLOCK_ID, 3); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 796 | |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 797 | #define BLOCK(X) EmitBlockID(X ## _ID, #X, Stream, Record) |
| 798 | #define RECORD(X) EmitRecordID(X, #X, Stream, Record) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 799 | |
Douglas Gregor | 7ae467f | 2012-10-18 18:27:37 +0000 | [diff] [blame] | 800 | // Control Block. |
| 801 | BLOCK(CONTROL_BLOCK); |
| 802 | RECORD(METADATA); |
Stephen Hines | 6bcf27b | 2014-05-29 04:14:42 -0700 | [diff] [blame^] | 803 | RECORD(MODULE_NAME); |
| 804 | RECORD(MODULE_MAP_FILE); |
Douglas Gregor | 7ae467f | 2012-10-18 18:27:37 +0000 | [diff] [blame] | 805 | RECORD(IMPORTS); |
| 806 | RECORD(LANGUAGE_OPTIONS); |
| 807 | RECORD(TARGET_OPTIONS); |
Douglas Gregor | 39c497b | 2012-10-18 18:36:53 +0000 | [diff] [blame] | 808 | RECORD(ORIGINAL_FILE); |
Douglas Gregor | 7ae467f | 2012-10-18 18:27:37 +0000 | [diff] [blame] | 809 | RECORD(ORIGINAL_PCH_DIR); |
Argyrios Kyrtzidis | 992d917 | 2012-11-15 18:57:27 +0000 | [diff] [blame] | 810 | RECORD(ORIGINAL_FILE_ID); |
Douglas Gregor | a930dc9 | 2012-10-22 18:42:04 +0000 | [diff] [blame] | 811 | RECORD(INPUT_FILE_OFFSETS); |
Douglas Gregor | 5f3d822 | 2012-10-24 15:17:15 +0000 | [diff] [blame] | 812 | RECORD(DIAGNOSTIC_OPTIONS); |
Douglas Gregor | 1b2c3c0 | 2012-10-24 15:49:58 +0000 | [diff] [blame] | 813 | RECORD(FILE_SYSTEM_OPTIONS); |
Douglas Gregor | bbf3831 | 2012-10-24 16:50:34 +0000 | [diff] [blame] | 814 | RECORD(HEADER_SEARCH_OPTIONS); |
Douglas Gregor | a71a7d8 | 2012-10-24 20:05:57 +0000 | [diff] [blame] | 815 | RECORD(PREPROCESSOR_OPTIONS); |
| 816 | |
Douglas Gregor | c337fef | 2012-10-19 00:45:00 +0000 | [diff] [blame] | 817 | BLOCK(INPUT_FILES_BLOCK); |
| 818 | RECORD(INPUT_FILE); |
| 819 | |
Douglas Gregor | 7ae467f | 2012-10-18 18:27:37 +0000 | [diff] [blame] | 820 | // AST Top-Level Block. |
| 821 | BLOCK(AST_BLOCK); |
Chris Lattner | b145b1e | 2009-04-26 22:26:21 +0000 | [diff] [blame] | 822 | RECORD(TYPE_OFFSET); |
| 823 | RECORD(DECL_OFFSET); |
Chris Lattner | b145b1e | 2009-04-26 22:26:21 +0000 | [diff] [blame] | 824 | RECORD(IDENTIFIER_OFFSET); |
| 825 | RECORD(IDENTIFIER_TABLE); |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 826 | RECORD(EAGERLY_DESERIALIZED_DECLS); |
Chris Lattner | b145b1e | 2009-04-26 22:26:21 +0000 | [diff] [blame] | 827 | RECORD(SPECIAL_TYPES); |
| 828 | RECORD(STATISTICS); |
| 829 | RECORD(TENTATIVE_DEFINITIONS); |
Argyrios Kyrtzidis | 49b96d1 | 2010-08-13 18:42:17 +0000 | [diff] [blame] | 830 | RECORD(UNUSED_FILESCOPED_DECLS); |
Richard Smith | 5ea6ef4 | 2013-01-10 23:43:47 +0000 | [diff] [blame] | 831 | RECORD(LOCALLY_SCOPED_EXTERN_C_DECLS); |
Chris Lattner | b145b1e | 2009-04-26 22:26:21 +0000 | [diff] [blame] | 832 | RECORD(SELECTOR_OFFSETS); |
| 833 | RECORD(METHOD_POOL); |
| 834 | RECORD(PP_COUNTER_VALUE); |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 835 | RECORD(SOURCE_LOCATION_OFFSETS); |
| 836 | RECORD(SOURCE_LOCATION_PRELOADS); |
Douglas Gregor | b81c170 | 2009-04-27 20:06:05 +0000 | [diff] [blame] | 837 | RECORD(EXT_VECTOR_DECLS); |
Argyrios Kyrtzidis | e24692b | 2011-09-15 18:02:56 +0000 | [diff] [blame] | 838 | RECORD(PPD_ENTITIES_OFFSETS); |
Fariborz Jahanian | 3201983 | 2010-07-23 19:11:11 +0000 | [diff] [blame] | 839 | RECORD(REFERENCED_SELECTOR_POOL); |
Douglas Gregor | b6c2b3f | 2011-02-08 16:34:17 +0000 | [diff] [blame] | 840 | RECORD(TU_UPDATE_LEXICAL); |
Douglas Gregor | 2171bf1 | 2012-01-15 16:58:34 +0000 | [diff] [blame] | 841 | RECORD(LOCAL_REDECLARATIONS_MAP); |
Douglas Gregor | b6c2b3f | 2011-02-08 16:34:17 +0000 | [diff] [blame] | 842 | RECORD(SEMA_DECL_REFS); |
| 843 | RECORD(WEAK_UNDECLARED_IDENTIFIERS); |
| 844 | RECORD(PENDING_IMPLICIT_INSTANTIATIONS); |
| 845 | RECORD(DECL_REPLACEMENTS); |
| 846 | RECORD(UPDATE_VISIBLE); |
| 847 | RECORD(DECL_UPDATE_OFFSETS); |
| 848 | RECORD(DECL_UPDATES); |
| 849 | RECORD(CXX_BASE_SPECIFIER_OFFSETS); |
| 850 | RECORD(DIAG_PRAGMA_MAPPINGS); |
Peter Collingbourne | 84bccea | 2011-02-15 19:46:30 +0000 | [diff] [blame] | 851 | RECORD(CUDA_SPECIAL_DECL_REFS); |
Douglas Gregor | cfbf1c7 | 2011-02-10 17:09:37 +0000 | [diff] [blame] | 852 | RECORD(HEADER_SEARCH_TABLE); |
Peter Collingbourne | 84bccea | 2011-02-15 19:46:30 +0000 | [diff] [blame] | 853 | RECORD(FP_PRAGMA_OPTIONS); |
| 854 | RECORD(OPENCL_EXTENSIONS); |
Sean Hunt | ebcbe1d | 2011-05-04 23:29:54 +0000 | [diff] [blame] | 855 | RECORD(DELEGATING_CTORS); |
Douglas Gregor | d8bba9c | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 856 | RECORD(KNOWN_NAMESPACES); |
Nick Lewycky | cd0655b | 2013-02-01 08:13:20 +0000 | [diff] [blame] | 857 | RECORD(UNDEFINED_BUT_USED); |
Douglas Gregor | 837593f | 2011-08-04 16:39:39 +0000 | [diff] [blame] | 858 | RECORD(MODULE_OFFSET_MAP); |
| 859 | RECORD(SOURCE_MANAGER_LINE_TABLE); |
Douglas Gregor | cff9f26 | 2012-01-27 01:47:08 +0000 | [diff] [blame] | 860 | RECORD(OBJC_CATEGORIES_MAP); |
Douglas Gregor | a126651 | 2011-12-19 21:09:25 +0000 | [diff] [blame] | 861 | RECORD(FILE_SORTED_DECLS); |
| 862 | RECORD(IMPORTED_MODULES); |
Douglas Gregor | 2171bf1 | 2012-01-15 16:58:34 +0000 | [diff] [blame] | 863 | RECORD(MERGED_DECLARATIONS); |
| 864 | RECORD(LOCAL_REDECLARATIONS); |
Douglas Gregor | cff9f26 | 2012-01-27 01:47:08 +0000 | [diff] [blame] | 865 | RECORD(OBJC_CATEGORIES); |
Douglas Gregor | a8235d6 | 2012-10-09 23:05:51 +0000 | [diff] [blame] | 866 | RECORD(MACRO_OFFSET); |
Argyrios Kyrtzidis | 9317ab9 | 2013-03-22 21:12:57 +0000 | [diff] [blame] | 867 | RECORD(MACRO_TABLE); |
Richard Smith | ac32d90 | 2013-08-07 21:41:30 +0000 | [diff] [blame] | 868 | RECORD(LATE_PARSED_TEMPLATE); |
Stephen Hines | 6bcf27b | 2014-05-29 04:14:42 -0700 | [diff] [blame^] | 869 | RECORD(OPTIMIZE_PRAGMA_OPTIONS); |
Douglas Gregor | 2171bf1 | 2012-01-15 16:58:34 +0000 | [diff] [blame] | 870 | |
Chris Lattner | b145b1e | 2009-04-26 22:26:21 +0000 | [diff] [blame] | 871 | // SourceManager Block. |
Chris Lattner | 2f4efd1 | 2009-04-27 00:40:25 +0000 | [diff] [blame] | 872 | BLOCK(SOURCE_MANAGER_BLOCK); |
Chris Lattner | b145b1e | 2009-04-26 22:26:21 +0000 | [diff] [blame] | 873 | RECORD(SM_SLOC_FILE_ENTRY); |
| 874 | RECORD(SM_SLOC_BUFFER_ENTRY); |
| 875 | RECORD(SM_SLOC_BUFFER_BLOB); |
Chandler Carruth | f70d12d | 2011-07-15 07:25:21 +0000 | [diff] [blame] | 876 | RECORD(SM_SLOC_EXPANSION_ENTRY); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 877 | |
Chris Lattner | b145b1e | 2009-04-26 22:26:21 +0000 | [diff] [blame] | 878 | // Preprocessor Block. |
Chris Lattner | 2f4efd1 | 2009-04-27 00:40:25 +0000 | [diff] [blame] | 879 | BLOCK(PREPROCESSOR_BLOCK); |
Chris Lattner | b145b1e | 2009-04-26 22:26:21 +0000 | [diff] [blame] | 880 | RECORD(PP_MACRO_OBJECT_LIKE); |
| 881 | RECORD(PP_MACRO_FUNCTION_LIKE); |
| 882 | RECORD(PP_TOKEN); |
Douglas Gregor | b6c2b3f | 2011-02-08 16:34:17 +0000 | [diff] [blame] | 883 | |
Douglas Gregor | 61d60ee | 2009-10-17 00:13:19 +0000 | [diff] [blame] | 884 | // Decls and Types block. |
| 885 | BLOCK(DECLTYPES_BLOCK); |
Chris Lattner | b145b1e | 2009-04-26 22:26:21 +0000 | [diff] [blame] | 886 | RECORD(TYPE_EXT_QUAL); |
Chris Lattner | b145b1e | 2009-04-26 22:26:21 +0000 | [diff] [blame] | 887 | RECORD(TYPE_COMPLEX); |
| 888 | RECORD(TYPE_POINTER); |
| 889 | RECORD(TYPE_BLOCK_POINTER); |
| 890 | RECORD(TYPE_LVALUE_REFERENCE); |
| 891 | RECORD(TYPE_RVALUE_REFERENCE); |
| 892 | RECORD(TYPE_MEMBER_POINTER); |
| 893 | RECORD(TYPE_CONSTANT_ARRAY); |
| 894 | RECORD(TYPE_INCOMPLETE_ARRAY); |
| 895 | RECORD(TYPE_VARIABLE_ARRAY); |
| 896 | RECORD(TYPE_VECTOR); |
| 897 | RECORD(TYPE_EXT_VECTOR); |
| 898 | RECORD(TYPE_FUNCTION_PROTO); |
| 899 | RECORD(TYPE_FUNCTION_NO_PROTO); |
| 900 | RECORD(TYPE_TYPEDEF); |
| 901 | RECORD(TYPE_TYPEOF_EXPR); |
| 902 | RECORD(TYPE_TYPEOF); |
| 903 | RECORD(TYPE_RECORD); |
| 904 | RECORD(TYPE_ENUM); |
| 905 | RECORD(TYPE_OBJC_INTERFACE); |
John McCall | a53d2cb | 2010-05-16 02:12:35 +0000 | [diff] [blame] | 906 | RECORD(TYPE_OBJC_OBJECT); |
Steve Naroff | d1b3c2d | 2009-06-17 22:40:22 +0000 | [diff] [blame] | 907 | RECORD(TYPE_OBJC_OBJECT_POINTER); |
Douglas Gregor | b6c2b3f | 2011-02-08 16:34:17 +0000 | [diff] [blame] | 908 | RECORD(TYPE_DECLTYPE); |
| 909 | RECORD(TYPE_ELABORATED); |
| 910 | RECORD(TYPE_SUBST_TEMPLATE_TYPE_PARM); |
| 911 | RECORD(TYPE_UNRESOLVED_USING); |
| 912 | RECORD(TYPE_INJECTED_CLASS_NAME); |
| 913 | RECORD(TYPE_OBJC_OBJECT); |
| 914 | RECORD(TYPE_TEMPLATE_TYPE_PARM); |
| 915 | RECORD(TYPE_TEMPLATE_SPECIALIZATION); |
| 916 | RECORD(TYPE_DEPENDENT_NAME); |
| 917 | RECORD(TYPE_DEPENDENT_TEMPLATE_SPECIALIZATION); |
| 918 | RECORD(TYPE_DEPENDENT_SIZED_ARRAY); |
| 919 | RECORD(TYPE_PAREN); |
| 920 | RECORD(TYPE_PACK_EXPANSION); |
| 921 | RECORD(TYPE_ATTRIBUTED); |
| 922 | RECORD(TYPE_SUBST_TEMPLATE_TYPE_PARM_PACK); |
Eli Friedman | b001de7 | 2011-10-06 23:00:33 +0000 | [diff] [blame] | 923 | RECORD(TYPE_ATOMIC); |
Chris Lattner | 0ff8cda | 2009-04-26 22:32:16 +0000 | [diff] [blame] | 924 | RECORD(DECL_TYPEDEF); |
| 925 | RECORD(DECL_ENUM); |
| 926 | RECORD(DECL_RECORD); |
| 927 | RECORD(DECL_ENUM_CONSTANT); |
| 928 | RECORD(DECL_FUNCTION); |
| 929 | RECORD(DECL_OBJC_METHOD); |
| 930 | RECORD(DECL_OBJC_INTERFACE); |
| 931 | RECORD(DECL_OBJC_PROTOCOL); |
| 932 | RECORD(DECL_OBJC_IVAR); |
| 933 | RECORD(DECL_OBJC_AT_DEFS_FIELD); |
Chris Lattner | 0ff8cda | 2009-04-26 22:32:16 +0000 | [diff] [blame] | 934 | RECORD(DECL_OBJC_CATEGORY); |
| 935 | RECORD(DECL_OBJC_CATEGORY_IMPL); |
| 936 | RECORD(DECL_OBJC_IMPLEMENTATION); |
| 937 | RECORD(DECL_OBJC_COMPATIBLE_ALIAS); |
| 938 | RECORD(DECL_OBJC_PROPERTY); |
| 939 | RECORD(DECL_OBJC_PROPERTY_IMPL); |
Chris Lattner | b145b1e | 2009-04-26 22:26:21 +0000 | [diff] [blame] | 940 | RECORD(DECL_FIELD); |
John McCall | 76da55d | 2013-04-16 07:28:30 +0000 | [diff] [blame] | 941 | RECORD(DECL_MS_PROPERTY); |
Chris Lattner | b145b1e | 2009-04-26 22:26:21 +0000 | [diff] [blame] | 942 | RECORD(DECL_VAR); |
Chris Lattner | 0ff8cda | 2009-04-26 22:32:16 +0000 | [diff] [blame] | 943 | RECORD(DECL_IMPLICIT_PARAM); |
Chris Lattner | b145b1e | 2009-04-26 22:26:21 +0000 | [diff] [blame] | 944 | RECORD(DECL_PARM_VAR); |
Chris Lattner | 0ff8cda | 2009-04-26 22:32:16 +0000 | [diff] [blame] | 945 | RECORD(DECL_FILE_SCOPE_ASM); |
| 946 | RECORD(DECL_BLOCK); |
| 947 | RECORD(DECL_CONTEXT_LEXICAL); |
| 948 | RECORD(DECL_CONTEXT_VISIBLE); |
Douglas Gregor | b6c2b3f | 2011-02-08 16:34:17 +0000 | [diff] [blame] | 949 | RECORD(DECL_NAMESPACE); |
| 950 | RECORD(DECL_NAMESPACE_ALIAS); |
| 951 | RECORD(DECL_USING); |
| 952 | RECORD(DECL_USING_SHADOW); |
| 953 | RECORD(DECL_USING_DIRECTIVE); |
| 954 | RECORD(DECL_UNRESOLVED_USING_VALUE); |
| 955 | RECORD(DECL_UNRESOLVED_USING_TYPENAME); |
| 956 | RECORD(DECL_LINKAGE_SPEC); |
| 957 | RECORD(DECL_CXX_RECORD); |
| 958 | RECORD(DECL_CXX_METHOD); |
| 959 | RECORD(DECL_CXX_CONSTRUCTOR); |
| 960 | RECORD(DECL_CXX_DESTRUCTOR); |
| 961 | RECORD(DECL_CXX_CONVERSION); |
| 962 | RECORD(DECL_ACCESS_SPEC); |
| 963 | RECORD(DECL_FRIEND); |
| 964 | RECORD(DECL_FRIEND_TEMPLATE); |
| 965 | RECORD(DECL_CLASS_TEMPLATE); |
| 966 | RECORD(DECL_CLASS_TEMPLATE_SPECIALIZATION); |
| 967 | RECORD(DECL_CLASS_TEMPLATE_PARTIAL_SPECIALIZATION); |
Larisse Voufo | ef4579c | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 968 | RECORD(DECL_VAR_TEMPLATE); |
| 969 | RECORD(DECL_VAR_TEMPLATE_SPECIALIZATION); |
| 970 | RECORD(DECL_VAR_TEMPLATE_PARTIAL_SPECIALIZATION); |
Douglas Gregor | b6c2b3f | 2011-02-08 16:34:17 +0000 | [diff] [blame] | 971 | RECORD(DECL_FUNCTION_TEMPLATE); |
| 972 | RECORD(DECL_TEMPLATE_TYPE_PARM); |
| 973 | RECORD(DECL_NON_TYPE_TEMPLATE_PARM); |
| 974 | RECORD(DECL_TEMPLATE_TEMPLATE_PARM); |
| 975 | RECORD(DECL_STATIC_ASSERT); |
| 976 | RECORD(DECL_CXX_BASE_SPECIFIERS); |
| 977 | RECORD(DECL_INDIRECTFIELD); |
| 978 | RECORD(DECL_EXPANDED_NON_TYPE_TEMPLATE_PARM_PACK); |
| 979 | |
Douglas Gregor | a72d8c4 | 2011-06-03 02:27:19 +0000 | [diff] [blame] | 980 | // Statements and Exprs can occur in the Decls and Types block. |
| 981 | AddStmtsExprs(Stream, Record); |
| 982 | |
Douglas Gregor | 4800a5c | 2011-02-08 21:58:10 +0000 | [diff] [blame] | 983 | BLOCK(PREPROCESSOR_DETAIL_BLOCK); |
Chandler Carruth | f70d12d | 2011-07-15 07:25:21 +0000 | [diff] [blame] | 984 | RECORD(PPD_MACRO_EXPANSION); |
Douglas Gregor | 4800a5c | 2011-02-08 21:58:10 +0000 | [diff] [blame] | 985 | RECORD(PPD_MACRO_DEFINITION); |
| 986 | RECORD(PPD_INCLUSION_DIRECTIVE); |
| 987 | |
Chris Lattner | b145b1e | 2009-04-26 22:26:21 +0000 | [diff] [blame] | 988 | #undef RECORD |
| 989 | #undef BLOCK |
| 990 | Stream.ExitBlock(); |
| 991 | } |
| 992 | |
Douglas Gregor | e650c8c | 2009-07-07 00:12:59 +0000 | [diff] [blame] | 993 | /// \brief Adjusts the given filename to only write out the portion of the |
| 994 | /// filename that is not part of the system root directory. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 995 | /// |
Douglas Gregor | e650c8c | 2009-07-07 00:12:59 +0000 | [diff] [blame] | 996 | /// \param Filename the file name to adjust. |
| 997 | /// |
| 998 | /// \param isysroot When non-NULL, the PCH file is a relocatable PCH file and |
| 999 | /// the returned filename will be adjusted by this system root. |
| 1000 | /// |
| 1001 | /// \returns either the original filename (if it needs no adjustment) or the |
| 1002 | /// adjusted filename (which points into the @p Filename parameter). |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1003 | static const char * |
Douglas Gregor | 832d620 | 2011-07-22 16:35:34 +0000 | [diff] [blame] | 1004 | adjustFilenameForRelocatablePCH(const char *Filename, StringRef isysroot) { |
Douglas Gregor | e650c8c | 2009-07-07 00:12:59 +0000 | [diff] [blame] | 1005 | assert(Filename && "No file name to adjust?"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1006 | |
Douglas Gregor | 832d620 | 2011-07-22 16:35:34 +0000 | [diff] [blame] | 1007 | if (isysroot.empty()) |
Douglas Gregor | e650c8c | 2009-07-07 00:12:59 +0000 | [diff] [blame] | 1008 | return Filename; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1009 | |
Douglas Gregor | e650c8c | 2009-07-07 00:12:59 +0000 | [diff] [blame] | 1010 | // Verify that the filename and the system root have the same prefix. |
| 1011 | unsigned Pos = 0; |
Douglas Gregor | 832d620 | 2011-07-22 16:35:34 +0000 | [diff] [blame] | 1012 | for (; Filename[Pos] && Pos < isysroot.size(); ++Pos) |
Douglas Gregor | e650c8c | 2009-07-07 00:12:59 +0000 | [diff] [blame] | 1013 | if (Filename[Pos] != isysroot[Pos]) |
| 1014 | return Filename; // Prefixes don't match. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1015 | |
Douglas Gregor | e650c8c | 2009-07-07 00:12:59 +0000 | [diff] [blame] | 1016 | // We hit the end of the filename before we hit the end of the system root. |
| 1017 | if (!Filename[Pos]) |
| 1018 | return Filename; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1019 | |
Douglas Gregor | e650c8c | 2009-07-07 00:12:59 +0000 | [diff] [blame] | 1020 | // If the file name has a '/' at the current position, skip over the '/'. |
| 1021 | // We distinguish sysroot-based includes from absolute includes by the |
| 1022 | // absence of '/' at the beginning of sysroot-based includes. |
| 1023 | if (Filename[Pos] == '/') |
| 1024 | ++Pos; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1025 | |
Douglas Gregor | e650c8c | 2009-07-07 00:12:59 +0000 | [diff] [blame] | 1026 | return Filename + Pos; |
| 1027 | } |
Chris Lattner | b145b1e | 2009-04-26 22:26:21 +0000 | [diff] [blame] | 1028 | |
Douglas Gregor | 1d9d989 | 2012-10-18 05:31:06 +0000 | [diff] [blame] | 1029 | /// \brief Write the control block. |
Douglas Gregor | bbf3831 | 2012-10-24 16:50:34 +0000 | [diff] [blame] | 1030 | void ASTWriter::WriteControlBlock(Preprocessor &PP, ASTContext &Context, |
| 1031 | StringRef isysroot, |
Douglas Gregor | 1d9d989 | 2012-10-18 05:31:06 +0000 | [diff] [blame] | 1032 | const std::string &OutputFile) { |
Douglas Gregor | 2bec041 | 2009-04-10 21:16:55 +0000 | [diff] [blame] | 1033 | using namespace llvm; |
Douglas Gregor | 7ae467f | 2012-10-18 18:27:37 +0000 | [diff] [blame] | 1034 | Stream.EnterSubblock(CONTROL_BLOCK_ID, 5); |
| 1035 | RecordData Record; |
Douglas Gregor | 1d9d989 | 2012-10-18 05:31:06 +0000 | [diff] [blame] | 1036 | |
Douglas Gregor | e650c8c | 2009-07-07 00:12:59 +0000 | [diff] [blame] | 1037 | // Metadata |
Douglas Gregor | 7ae467f | 2012-10-18 18:27:37 +0000 | [diff] [blame] | 1038 | BitCodeAbbrev *MetadataAbbrev = new BitCodeAbbrev(); |
| 1039 | MetadataAbbrev->Add(BitCodeAbbrevOp(METADATA)); |
| 1040 | MetadataAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 16)); // Major |
| 1041 | MetadataAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 16)); // Minor |
| 1042 | MetadataAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 16)); // Clang maj. |
| 1043 | MetadataAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 16)); // Clang min. |
| 1044 | MetadataAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // Relocatable |
| 1045 | MetadataAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // Errors |
| 1046 | MetadataAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // SVN branch/tag |
| 1047 | unsigned MetadataAbbrevCode = Stream.EmitAbbrev(MetadataAbbrev); |
| 1048 | Record.push_back(METADATA); |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 1049 | Record.push_back(VERSION_MAJOR); |
| 1050 | Record.push_back(VERSION_MINOR); |
Douglas Gregor | e650c8c | 2009-07-07 00:12:59 +0000 | [diff] [blame] | 1051 | Record.push_back(CLANG_VERSION_MAJOR); |
| 1052 | Record.push_back(CLANG_VERSION_MINOR); |
Douglas Gregor | 832d620 | 2011-07-22 16:35:34 +0000 | [diff] [blame] | 1053 | Record.push_back(!isysroot.empty()); |
Argyrios Kyrtzidis | bef35c9 | 2012-03-07 01:51:17 +0000 | [diff] [blame] | 1054 | Record.push_back(ASTHasCompilerErrors); |
Douglas Gregor | 7ae467f | 2012-10-18 18:27:37 +0000 | [diff] [blame] | 1055 | Stream.EmitRecordWithBlob(MetadataAbbrevCode, Record, |
| 1056 | getClangFullRepositoryVersion()); |
Douglas Gregor | e95b919 | 2011-08-17 21:07:30 +0000 | [diff] [blame] | 1057 | |
Stephen Hines | 6bcf27b | 2014-05-29 04:14:42 -0700 | [diff] [blame^] | 1058 | // Module name |
| 1059 | if (WritingModule) { |
| 1060 | BitCodeAbbrev *Abbrev = new BitCodeAbbrev(); |
| 1061 | Abbrev->Add(BitCodeAbbrevOp(MODULE_NAME)); |
| 1062 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // Name |
| 1063 | unsigned AbbrevCode = Stream.EmitAbbrev(Abbrev); |
| 1064 | RecordData Record; |
| 1065 | Record.push_back(MODULE_NAME); |
| 1066 | Stream.EmitRecordWithBlob(AbbrevCode, Record, WritingModule->Name); |
| 1067 | } |
| 1068 | |
| 1069 | // Module map file |
| 1070 | if (WritingModule) { |
| 1071 | BitCodeAbbrev *Abbrev = new BitCodeAbbrev(); |
| 1072 | Abbrev->Add(BitCodeAbbrevOp(MODULE_MAP_FILE)); |
| 1073 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // Filename |
| 1074 | unsigned AbbrevCode = Stream.EmitAbbrev(Abbrev); |
| 1075 | |
| 1076 | assert(WritingModule->ModuleMap && "missing module map"); |
| 1077 | SmallString<128> ModuleMap(WritingModule->ModuleMap->getName()); |
| 1078 | llvm::sys::fs::make_absolute(ModuleMap); |
| 1079 | RecordData Record; |
| 1080 | Record.push_back(MODULE_MAP_FILE); |
| 1081 | Stream.EmitRecordWithBlob(AbbrevCode, Record, ModuleMap.str()); |
| 1082 | } |
| 1083 | |
Douglas Gregor | 1d9d989 | 2012-10-18 05:31:06 +0000 | [diff] [blame] | 1084 | // Imports |
Douglas Gregor | e95b919 | 2011-08-17 21:07:30 +0000 | [diff] [blame] | 1085 | if (Chain) { |
Douglas Gregor | e95b919 | 2011-08-17 21:07:30 +0000 | [diff] [blame] | 1086 | serialization::ModuleManager &Mgr = Chain->getModuleManager(); |
Douglas Gregor | e95b919 | 2011-08-17 21:07:30 +0000 | [diff] [blame] | 1087 | Record.clear(); |
Douglas Gregor | 10bc00f | 2011-08-18 04:12:04 +0000 | [diff] [blame] | 1088 | |
| 1089 | for (ModuleManager::ModuleIterator M = Mgr.begin(), MEnd = Mgr.end(); |
| 1090 | M != MEnd; ++M) { |
| 1091 | // Skip modules that weren't directly imported. |
| 1092 | if (!(*M)->isDirectlyImported()) |
| 1093 | continue; |
| 1094 | |
| 1095 | Record.push_back((unsigned)(*M)->Kind); // FIXME: Stable encoding |
Argyrios Kyrtzidis | 958bcaf | 2012-11-15 18:57:22 +0000 | [diff] [blame] | 1096 | AddSourceLocation((*M)->ImportLoc, Record); |
Douglas Gregor | 677e15f | 2013-03-19 00:28:20 +0000 | [diff] [blame] | 1097 | Record.push_back((*M)->File->getSize()); |
| 1098 | Record.push_back((*M)->File->getModificationTime()); |
Douglas Gregor | 10bc00f | 2011-08-18 04:12:04 +0000 | [diff] [blame] | 1099 | const std::string &FileName = (*M)->FileName; |
| 1100 | Record.push_back(FileName.size()); |
| 1101 | Record.append(FileName.begin(), FileName.end()); |
| 1102 | } |
Douglas Gregor | e95b919 | 2011-08-17 21:07:30 +0000 | [diff] [blame] | 1103 | Stream.EmitRecord(IMPORTS, Record); |
| 1104 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1105 | |
Douglas Gregor | 1d9d989 | 2012-10-18 05:31:06 +0000 | [diff] [blame] | 1106 | // Language options. |
| 1107 | Record.clear(); |
| 1108 | const LangOptions &LangOpts = Context.getLangOpts(); |
| 1109 | #define LANGOPT(Name, Bits, Default, Description) \ |
| 1110 | Record.push_back(LangOpts.Name); |
| 1111 | #define ENUM_LANGOPT(Name, Type, Bits, Default, Description) \ |
| 1112 | Record.push_back(static_cast<unsigned>(LangOpts.get##Name())); |
| 1113 | #include "clang/Basic/LangOptions.def" |
Will Dietz | 4f45bc0 | 2013-01-18 11:30:38 +0000 | [diff] [blame] | 1114 | #define SANITIZER(NAME, ID) Record.push_back(LangOpts.Sanitize.ID); |
| 1115 | #include "clang/Basic/Sanitizers.def" |
Douglas Gregor | 1d9d989 | 2012-10-18 05:31:06 +0000 | [diff] [blame] | 1116 | |
| 1117 | Record.push_back((unsigned) LangOpts.ObjCRuntime.getKind()); |
| 1118 | AddVersionTuple(LangOpts.ObjCRuntime.getVersion(), Record); |
| 1119 | |
| 1120 | Record.push_back(LangOpts.CurrentModule.size()); |
| 1121 | Record.append(LangOpts.CurrentModule.begin(), LangOpts.CurrentModule.end()); |
Dmitri Gribenko | 6ebf091 | 2013-02-22 14:21:27 +0000 | [diff] [blame] | 1122 | |
| 1123 | // Comment options. |
| 1124 | Record.push_back(LangOpts.CommentOpts.BlockCommandNames.size()); |
| 1125 | for (CommentOptions::BlockCommandNamesTy::const_iterator |
| 1126 | I = LangOpts.CommentOpts.BlockCommandNames.begin(), |
| 1127 | IEnd = LangOpts.CommentOpts.BlockCommandNames.end(); |
| 1128 | I != IEnd; ++I) { |
| 1129 | AddString(*I, Record); |
| 1130 | } |
Dmitri Gribenko | 6fd7d30 | 2013-04-10 15:35:17 +0000 | [diff] [blame] | 1131 | Record.push_back(LangOpts.CommentOpts.ParseAllComments); |
Dmitri Gribenko | 6ebf091 | 2013-02-22 14:21:27 +0000 | [diff] [blame] | 1132 | |
Douglas Gregor | 1d9d989 | 2012-10-18 05:31:06 +0000 | [diff] [blame] | 1133 | Stream.EmitRecord(LANGUAGE_OPTIONS, Record); |
| 1134 | |
Douglas Gregor | ee097c1 | 2012-10-18 17:58:09 +0000 | [diff] [blame] | 1135 | // Target options. |
| 1136 | Record.clear(); |
Douglas Gregor | 7ae467f | 2012-10-18 18:27:37 +0000 | [diff] [blame] | 1137 | const TargetInfo &Target = Context.getTargetInfo(); |
| 1138 | const TargetOptions &TargetOpts = Target.getTargetOpts(); |
Douglas Gregor | ee097c1 | 2012-10-18 17:58:09 +0000 | [diff] [blame] | 1139 | AddString(TargetOpts.Triple, Record); |
| 1140 | AddString(TargetOpts.CPU, Record); |
| 1141 | AddString(TargetOpts.ABI, Record); |
Douglas Gregor | ee097c1 | 2012-10-18 17:58:09 +0000 | [diff] [blame] | 1142 | Record.push_back(TargetOpts.FeaturesAsWritten.size()); |
| 1143 | for (unsigned I = 0, N = TargetOpts.FeaturesAsWritten.size(); I != N; ++I) { |
| 1144 | AddString(TargetOpts.FeaturesAsWritten[I], Record); |
| 1145 | } |
| 1146 | Record.push_back(TargetOpts.Features.size()); |
| 1147 | for (unsigned I = 0, N = TargetOpts.Features.size(); I != N; ++I) { |
| 1148 | AddString(TargetOpts.Features[I], Record); |
| 1149 | } |
| 1150 | Stream.EmitRecord(TARGET_OPTIONS, Record); |
| 1151 | |
Douglas Gregor | 5f3d822 | 2012-10-24 15:17:15 +0000 | [diff] [blame] | 1152 | // Diagnostic options. |
| 1153 | Record.clear(); |
| 1154 | const DiagnosticOptions &DiagOpts |
| 1155 | = Context.getDiagnostics().getDiagnosticOptions(); |
| 1156 | #define DIAGOPT(Name, Bits, Default) Record.push_back(DiagOpts.Name); |
| 1157 | #define ENUM_DIAGOPT(Name, Type, Bits, Default) \ |
| 1158 | Record.push_back(static_cast<unsigned>(DiagOpts.get##Name())); |
| 1159 | #include "clang/Basic/DiagnosticOptions.def" |
| 1160 | Record.push_back(DiagOpts.Warnings.size()); |
| 1161 | for (unsigned I = 0, N = DiagOpts.Warnings.size(); I != N; ++I) |
| 1162 | AddString(DiagOpts.Warnings[I], Record); |
| 1163 | // Note: we don't serialize the log or serialization file names, because they |
| 1164 | // are generally transient files and will almost always be overridden. |
| 1165 | Stream.EmitRecord(DIAGNOSTIC_OPTIONS, Record); |
| 1166 | |
Douglas Gregor | 1b2c3c0 | 2012-10-24 15:49:58 +0000 | [diff] [blame] | 1167 | // File system options. |
| 1168 | Record.clear(); |
| 1169 | const FileSystemOptions &FSOpts |
| 1170 | = Context.getSourceManager().getFileManager().getFileSystemOptions(); |
| 1171 | AddString(FSOpts.WorkingDir, Record); |
| 1172 | Stream.EmitRecord(FILE_SYSTEM_OPTIONS, Record); |
| 1173 | |
Douglas Gregor | bbf3831 | 2012-10-24 16:50:34 +0000 | [diff] [blame] | 1174 | // Header search options. |
| 1175 | Record.clear(); |
| 1176 | const HeaderSearchOptions &HSOpts |
| 1177 | = PP.getHeaderSearchInfo().getHeaderSearchOpts(); |
| 1178 | AddString(HSOpts.Sysroot, Record); |
| 1179 | |
| 1180 | // Include entries. |
| 1181 | Record.push_back(HSOpts.UserEntries.size()); |
| 1182 | for (unsigned I = 0, N = HSOpts.UserEntries.size(); I != N; ++I) { |
| 1183 | const HeaderSearchOptions::Entry &Entry = HSOpts.UserEntries[I]; |
| 1184 | AddString(Entry.Path, Record); |
| 1185 | Record.push_back(static_cast<unsigned>(Entry.Group)); |
Douglas Gregor | bbf3831 | 2012-10-24 16:50:34 +0000 | [diff] [blame] | 1186 | Record.push_back(Entry.IsFramework); |
| 1187 | Record.push_back(Entry.IgnoreSysRoot); |
Douglas Gregor | bbf3831 | 2012-10-24 16:50:34 +0000 | [diff] [blame] | 1188 | } |
| 1189 | |
| 1190 | // System header prefixes. |
| 1191 | Record.push_back(HSOpts.SystemHeaderPrefixes.size()); |
| 1192 | for (unsigned I = 0, N = HSOpts.SystemHeaderPrefixes.size(); I != N; ++I) { |
| 1193 | AddString(HSOpts.SystemHeaderPrefixes[I].Prefix, Record); |
| 1194 | Record.push_back(HSOpts.SystemHeaderPrefixes[I].IsSystemHeader); |
| 1195 | } |
| 1196 | |
| 1197 | AddString(HSOpts.ResourceDir, Record); |
| 1198 | AddString(HSOpts.ModuleCachePath, Record); |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 1199 | AddString(HSOpts.ModuleUserBuildPath, Record); |
Douglas Gregor | bbf3831 | 2012-10-24 16:50:34 +0000 | [diff] [blame] | 1200 | Record.push_back(HSOpts.DisableModuleHash); |
| 1201 | Record.push_back(HSOpts.UseBuiltinIncludes); |
| 1202 | Record.push_back(HSOpts.UseStandardSystemIncludes); |
| 1203 | Record.push_back(HSOpts.UseStandardCXXIncludes); |
| 1204 | Record.push_back(HSOpts.UseLibcxx); |
| 1205 | Stream.EmitRecord(HEADER_SEARCH_OPTIONS, Record); |
| 1206 | |
Douglas Gregor | a71a7d8 | 2012-10-24 20:05:57 +0000 | [diff] [blame] | 1207 | // Preprocessor options. |
| 1208 | Record.clear(); |
| 1209 | const PreprocessorOptions &PPOpts = PP.getPreprocessorOpts(); |
| 1210 | |
| 1211 | // Macro definitions. |
| 1212 | Record.push_back(PPOpts.Macros.size()); |
| 1213 | for (unsigned I = 0, N = PPOpts.Macros.size(); I != N; ++I) { |
| 1214 | AddString(PPOpts.Macros[I].first, Record); |
| 1215 | Record.push_back(PPOpts.Macros[I].second); |
| 1216 | } |
| 1217 | |
| 1218 | // Includes |
| 1219 | Record.push_back(PPOpts.Includes.size()); |
| 1220 | for (unsigned I = 0, N = PPOpts.Includes.size(); I != N; ++I) |
| 1221 | AddString(PPOpts.Includes[I], Record); |
| 1222 | |
| 1223 | // Macro includes |
| 1224 | Record.push_back(PPOpts.MacroIncludes.size()); |
| 1225 | for (unsigned I = 0, N = PPOpts.MacroIncludes.size(); I != N; ++I) |
| 1226 | AddString(PPOpts.MacroIncludes[I], Record); |
| 1227 | |
Douglas Gregor | 4c0c7e8 | 2012-10-24 23:41:50 +0000 | [diff] [blame] | 1228 | Record.push_back(PPOpts.UsePredefines); |
Argyrios Kyrtzidis | 65110ca | 2013-04-26 21:33:40 +0000 | [diff] [blame] | 1229 | // Detailed record is important since it is used for the module cache hash. |
| 1230 | Record.push_back(PPOpts.DetailedRecord); |
Douglas Gregor | a71a7d8 | 2012-10-24 20:05:57 +0000 | [diff] [blame] | 1231 | AddString(PPOpts.ImplicitPCHInclude, Record); |
| 1232 | AddString(PPOpts.ImplicitPTHInclude, Record); |
| 1233 | Record.push_back(static_cast<unsigned>(PPOpts.ObjCXXARCStandardLibrary)); |
| 1234 | Stream.EmitRecord(PREPROCESSOR_OPTIONS, Record); |
| 1235 | |
Douglas Gregor | 31d375f | 2011-05-06 21:43:30 +0000 | [diff] [blame] | 1236 | // Original file name and file ID |
Douglas Gregor | b64c193 | 2009-05-12 01:31:05 +0000 | [diff] [blame] | 1237 | SourceManager &SM = Context.getSourceManager(); |
| 1238 | if (const FileEntry *MainFile = SM.getFileEntryForID(SM.getMainFileID())) { |
| 1239 | BitCodeAbbrev *FileAbbrev = new BitCodeAbbrev(); |
Douglas Gregor | 39c497b | 2012-10-18 18:36:53 +0000 | [diff] [blame] | 1240 | FileAbbrev->Add(BitCodeAbbrevOp(ORIGINAL_FILE)); |
| 1241 | FileAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // File ID |
Douglas Gregor | b64c193 | 2009-05-12 01:31:05 +0000 | [diff] [blame] | 1242 | FileAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // File name |
| 1243 | unsigned FileAbbrevCode = Stream.EmitAbbrev(FileAbbrev); |
| 1244 | |
Dylan Noblesmith | f7ccbad | 2012-02-05 02:13:05 +0000 | [diff] [blame] | 1245 | SmallString<128> MainFilePath(MainFile->getName()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1246 | |
Michael J. Spencer | fbfd180 | 2010-12-21 16:45:57 +0000 | [diff] [blame] | 1247 | llvm::sys::fs::make_absolute(MainFilePath); |
Douglas Gregor | b64c193 | 2009-05-12 01:31:05 +0000 | [diff] [blame] | 1248 | |
Kovarththanan Rajaratnam | aba54a9 | 2010-03-14 07:15:57 +0000 | [diff] [blame] | 1249 | const char *MainFileNameStr = MainFilePath.c_str(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1250 | MainFileNameStr = adjustFilenameForRelocatablePCH(MainFileNameStr, |
Douglas Gregor | e650c8c | 2009-07-07 00:12:59 +0000 | [diff] [blame] | 1251 | isysroot); |
Douglas Gregor | a71a7d8 | 2012-10-24 20:05:57 +0000 | [diff] [blame] | 1252 | Record.clear(); |
Douglas Gregor | 39c497b | 2012-10-18 18:36:53 +0000 | [diff] [blame] | 1253 | Record.push_back(ORIGINAL_FILE); |
Douglas Gregor | 31d375f | 2011-05-06 21:43:30 +0000 | [diff] [blame] | 1254 | Record.push_back(SM.getMainFileID().getOpaqueValue()); |
Douglas Gregor | 39c497b | 2012-10-18 18:36:53 +0000 | [diff] [blame] | 1255 | Stream.EmitRecordWithBlob(FileAbbrevCode, Record, MainFileNameStr); |
Douglas Gregor | b64c193 | 2009-05-12 01:31:05 +0000 | [diff] [blame] | 1256 | } |
Kovarththanan Rajaratnam | 11a18f1 | 2010-03-14 07:06:50 +0000 | [diff] [blame] | 1257 | |
Argyrios Kyrtzidis | 992d917 | 2012-11-15 18:57:27 +0000 | [diff] [blame] | 1258 | Record.clear(); |
| 1259 | Record.push_back(SM.getMainFileID().getOpaqueValue()); |
| 1260 | Stream.EmitRecord(ORIGINAL_FILE_ID, Record); |
| 1261 | |
Argyrios Kyrtzidis | 8e3df4d | 2011-02-15 17:54:22 +0000 | [diff] [blame] | 1262 | // Original PCH directory |
| 1263 | if (!OutputFile.empty() && OutputFile != "-") { |
| 1264 | BitCodeAbbrev *Abbrev = new BitCodeAbbrev(); |
| 1265 | Abbrev->Add(BitCodeAbbrevOp(ORIGINAL_PCH_DIR)); |
| 1266 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // File name |
| 1267 | unsigned AbbrevCode = Stream.EmitAbbrev(Abbrev); |
| 1268 | |
Dylan Noblesmith | f7ccbad | 2012-02-05 02:13:05 +0000 | [diff] [blame] | 1269 | SmallString<128> OutputPath(OutputFile); |
Argyrios Kyrtzidis | 8e3df4d | 2011-02-15 17:54:22 +0000 | [diff] [blame] | 1270 | |
| 1271 | llvm::sys::fs::make_absolute(OutputPath); |
| 1272 | StringRef origDir = llvm::sys::path::parent_path(OutputPath); |
| 1273 | |
| 1274 | RecordData Record; |
| 1275 | Record.push_back(ORIGINAL_PCH_DIR); |
| 1276 | Stream.EmitRecordWithBlob(AbbrevCode, Record, origDir); |
| 1277 | } |
| 1278 | |
Douglas Gregor | 4a18c3b | 2013-03-15 22:15:07 +0000 | [diff] [blame] | 1279 | WriteInputFiles(Context.SourceMgr, |
| 1280 | PP.getHeaderSearchInfo().getHeaderSearchOpts(), |
Douglas Gregor | b22d194 | 2013-07-22 20:48:33 +0000 | [diff] [blame] | 1281 | isysroot, |
| 1282 | PP.getLangOpts().Modules); |
Douglas Gregor | 745e6f1 | 2012-10-19 00:38:02 +0000 | [diff] [blame] | 1283 | Stream.ExitBlock(); |
| 1284 | } |
| 1285 | |
Douglas Gregor | 4a18c3b | 2013-03-15 22:15:07 +0000 | [diff] [blame] | 1286 | namespace { |
| 1287 | /// \brief An input file. |
| 1288 | struct InputFileEntry { |
| 1289 | const FileEntry *File; |
| 1290 | bool IsSystemFile; |
| 1291 | bool BufferOverridden; |
| 1292 | }; |
| 1293 | } |
| 1294 | |
| 1295 | void ASTWriter::WriteInputFiles(SourceManager &SourceMgr, |
| 1296 | HeaderSearchOptions &HSOpts, |
Douglas Gregor | b22d194 | 2013-07-22 20:48:33 +0000 | [diff] [blame] | 1297 | StringRef isysroot, |
| 1298 | bool Modules) { |
Douglas Gregor | 745e6f1 | 2012-10-19 00:38:02 +0000 | [diff] [blame] | 1299 | using namespace llvm; |
| 1300 | Stream.EnterSubblock(INPUT_FILES_BLOCK_ID, 4); |
| 1301 | RecordData Record; |
| 1302 | |
| 1303 | // Create input-file abbreviation. |
| 1304 | BitCodeAbbrev *IFAbbrev = new BitCodeAbbrev(); |
| 1305 | IFAbbrev->Add(BitCodeAbbrevOp(INPUT_FILE)); |
Douglas Gregor | a930dc9 | 2012-10-22 18:42:04 +0000 | [diff] [blame] | 1306 | IFAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // ID |
Douglas Gregor | 745e6f1 | 2012-10-19 00:38:02 +0000 | [diff] [blame] | 1307 | IFAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 12)); // Size |
| 1308 | IFAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 32)); // Modification time |
Douglas Gregor | a930dc9 | 2012-10-22 18:42:04 +0000 | [diff] [blame] | 1309 | IFAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // Overridden |
Douglas Gregor | 745e6f1 | 2012-10-19 00:38:02 +0000 | [diff] [blame] | 1310 | IFAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // File name |
| 1311 | unsigned IFAbbrevCode = Stream.EmitAbbrev(IFAbbrev); |
| 1312 | |
Argyrios Kyrtzidis | 398253a | 2013-03-06 18:12:50 +0000 | [diff] [blame] | 1313 | // Get all ContentCache objects for files, sorted by whether the file is a |
| 1314 | // system one or not. System files go at the back, users files at the front. |
Douglas Gregor | 4a18c3b | 2013-03-15 22:15:07 +0000 | [diff] [blame] | 1315 | std::deque<InputFileEntry> SortedFiles; |
Douglas Gregor | 745e6f1 | 2012-10-19 00:38:02 +0000 | [diff] [blame] | 1316 | for (unsigned I = 1, N = SourceMgr.local_sloc_entry_size(); I != N; ++I) { |
| 1317 | // Get this source location entry. |
| 1318 | const SrcMgr::SLocEntry *SLoc = &SourceMgr.getLocalSLocEntry(I); |
NAKAMURA Takumi | bacc2c5 | 2012-10-19 01:53:57 +0000 | [diff] [blame] | 1319 | assert(&SourceMgr.getSLocEntry(FileID::get(I)) == SLoc); |
Douglas Gregor | 745e6f1 | 2012-10-19 00:38:02 +0000 | [diff] [blame] | 1320 | |
| 1321 | // We only care about file entries that were not overridden. |
| 1322 | if (!SLoc->isFile()) |
| 1323 | continue; |
| 1324 | const SrcMgr::ContentCache *Cache = SLoc->getFile().getContentCache(); |
Douglas Gregor | a930dc9 | 2012-10-22 18:42:04 +0000 | [diff] [blame] | 1325 | if (!Cache->OrigEntry) |
Douglas Gregor | 745e6f1 | 2012-10-19 00:38:02 +0000 | [diff] [blame] | 1326 | continue; |
| 1327 | |
Douglas Gregor | 4a18c3b | 2013-03-15 22:15:07 +0000 | [diff] [blame] | 1328 | InputFileEntry Entry; |
| 1329 | Entry.File = Cache->OrigEntry; |
| 1330 | Entry.IsSystemFile = Cache->IsSystemFile; |
| 1331 | Entry.BufferOverridden = Cache->BufferOverridden; |
Argyrios Kyrtzidis | 398253a | 2013-03-06 18:12:50 +0000 | [diff] [blame] | 1332 | if (Cache->IsSystemFile) |
Douglas Gregor | 4a18c3b | 2013-03-15 22:15:07 +0000 | [diff] [blame] | 1333 | SortedFiles.push_back(Entry); |
Argyrios Kyrtzidis | 398253a | 2013-03-06 18:12:50 +0000 | [diff] [blame] | 1334 | else |
Douglas Gregor | 4a18c3b | 2013-03-15 22:15:07 +0000 | [diff] [blame] | 1335 | SortedFiles.push_front(Entry); |
| 1336 | } |
| 1337 | |
Argyrios Kyrtzidis | 398253a | 2013-03-06 18:12:50 +0000 | [diff] [blame] | 1338 | unsigned UserFilesNum = 0; |
| 1339 | // Write out all of the input files. |
| 1340 | std::vector<uint32_t> InputFileOffsets; |
Douglas Gregor | 4a18c3b | 2013-03-15 22:15:07 +0000 | [diff] [blame] | 1341 | for (std::deque<InputFileEntry>::iterator |
Argyrios Kyrtzidis | 398253a | 2013-03-06 18:12:50 +0000 | [diff] [blame] | 1342 | I = SortedFiles.begin(), E = SortedFiles.end(); I != E; ++I) { |
Douglas Gregor | 4a18c3b | 2013-03-15 22:15:07 +0000 | [diff] [blame] | 1343 | const InputFileEntry &Entry = *I; |
Argyrios Kyrtzidis | 398253a | 2013-03-06 18:12:50 +0000 | [diff] [blame] | 1344 | |
Douglas Gregor | 4a18c3b | 2013-03-15 22:15:07 +0000 | [diff] [blame] | 1345 | uint32_t &InputFileID = InputFileIDs[Entry.File]; |
Argyrios Kyrtzidis | a89b618 | 2012-12-11 07:48:08 +0000 | [diff] [blame] | 1346 | if (InputFileID != 0) |
| 1347 | continue; // already recorded this file. |
| 1348 | |
Douglas Gregor | a930dc9 | 2012-10-22 18:42:04 +0000 | [diff] [blame] | 1349 | // Record this entry's offset. |
| 1350 | InputFileOffsets.push_back(Stream.GetCurrentBitNo()); |
Argyrios Kyrtzidis | a89b618 | 2012-12-11 07:48:08 +0000 | [diff] [blame] | 1351 | |
| 1352 | InputFileID = InputFileOffsets.size(); |
Douglas Gregor | a930dc9 | 2012-10-22 18:42:04 +0000 | [diff] [blame] | 1353 | |
Douglas Gregor | 4a18c3b | 2013-03-15 22:15:07 +0000 | [diff] [blame] | 1354 | if (!Entry.IsSystemFile) |
Argyrios Kyrtzidis | 398253a | 2013-03-06 18:12:50 +0000 | [diff] [blame] | 1355 | ++UserFilesNum; |
| 1356 | |
Douglas Gregor | 745e6f1 | 2012-10-19 00:38:02 +0000 | [diff] [blame] | 1357 | Record.clear(); |
| 1358 | Record.push_back(INPUT_FILE); |
Douglas Gregor | a930dc9 | 2012-10-22 18:42:04 +0000 | [diff] [blame] | 1359 | Record.push_back(InputFileOffsets.size()); |
Douglas Gregor | 745e6f1 | 2012-10-19 00:38:02 +0000 | [diff] [blame] | 1360 | |
| 1361 | // Emit size/modification time for this file. |
Douglas Gregor | 4a18c3b | 2013-03-15 22:15:07 +0000 | [diff] [blame] | 1362 | Record.push_back(Entry.File->getSize()); |
| 1363 | Record.push_back(Entry.File->getModificationTime()); |
Douglas Gregor | 745e6f1 | 2012-10-19 00:38:02 +0000 | [diff] [blame] | 1364 | |
Douglas Gregor | a930dc9 | 2012-10-22 18:42:04 +0000 | [diff] [blame] | 1365 | // Whether this file was overridden. |
Douglas Gregor | 4a18c3b | 2013-03-15 22:15:07 +0000 | [diff] [blame] | 1366 | Record.push_back(Entry.BufferOverridden); |
Douglas Gregor | a930dc9 | 2012-10-22 18:42:04 +0000 | [diff] [blame] | 1367 | |
Douglas Gregor | 745e6f1 | 2012-10-19 00:38:02 +0000 | [diff] [blame] | 1368 | // Turn the file name into an absolute path, if it isn't already. |
Douglas Gregor | 4a18c3b | 2013-03-15 22:15:07 +0000 | [diff] [blame] | 1369 | const char *Filename = Entry.File->getName(); |
Douglas Gregor | 745e6f1 | 2012-10-19 00:38:02 +0000 | [diff] [blame] | 1370 | SmallString<128> FilePath(Filename); |
| 1371 | |
| 1372 | // Ask the file manager to fixup the relative path for us. This will |
| 1373 | // honor the working directory. |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 1374 | SourceMgr.getFileManager().FixupRelativePath(FilePath); |
Douglas Gregor | 745e6f1 | 2012-10-19 00:38:02 +0000 | [diff] [blame] | 1375 | |
| 1376 | // FIXME: This call to make_absolute shouldn't be necessary, the |
| 1377 | // call to FixupRelativePath should always return an absolute path. |
| 1378 | llvm::sys::fs::make_absolute(FilePath); |
| 1379 | Filename = FilePath.c_str(); |
| 1380 | |
| 1381 | Filename = adjustFilenameForRelocatablePCH(Filename, isysroot); |
| 1382 | |
| 1383 | Stream.EmitRecordWithBlob(IFAbbrevCode, Record, Filename); |
| 1384 | } |
Douglas Gregor | 4a18c3b | 2013-03-15 22:15:07 +0000 | [diff] [blame] | 1385 | |
Douglas Gregor | 1d9d989 | 2012-10-18 05:31:06 +0000 | [diff] [blame] | 1386 | Stream.ExitBlock(); |
Douglas Gregor | a930dc9 | 2012-10-22 18:42:04 +0000 | [diff] [blame] | 1387 | |
| 1388 | // Create input file offsets abbreviation. |
| 1389 | BitCodeAbbrev *OffsetsAbbrev = new BitCodeAbbrev(); |
| 1390 | OffsetsAbbrev->Add(BitCodeAbbrevOp(INPUT_FILE_OFFSETS)); |
| 1391 | OffsetsAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // # input files |
Argyrios Kyrtzidis | 398253a | 2013-03-06 18:12:50 +0000 | [diff] [blame] | 1392 | OffsetsAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // # non-system |
| 1393 | // input files |
Douglas Gregor | a930dc9 | 2012-10-22 18:42:04 +0000 | [diff] [blame] | 1394 | OffsetsAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // Array |
| 1395 | unsigned OffsetsAbbrevCode = Stream.EmitAbbrev(OffsetsAbbrev); |
| 1396 | |
| 1397 | // Write input file offsets. |
| 1398 | Record.clear(); |
| 1399 | Record.push_back(INPUT_FILE_OFFSETS); |
| 1400 | Record.push_back(InputFileOffsets.size()); |
Argyrios Kyrtzidis | 398253a | 2013-03-06 18:12:50 +0000 | [diff] [blame] | 1401 | Record.push_back(UserFilesNum); |
Douglas Gregor | a930dc9 | 2012-10-22 18:42:04 +0000 | [diff] [blame] | 1402 | Stream.EmitRecordWithBlob(OffsetsAbbrevCode, Record, data(InputFileOffsets)); |
Douglas Gregor | 0a0428e | 2009-04-10 20:39:37 +0000 | [diff] [blame] | 1403 | } |
| 1404 | |
Douglas Gregor | 14f7900 | 2009-04-10 03:52:48 +0000 | [diff] [blame] | 1405 | //===----------------------------------------------------------------------===// |
| 1406 | // Source Manager Serialization |
| 1407 | //===----------------------------------------------------------------------===// |
| 1408 | |
| 1409 | /// \brief Create an abbreviation for the SLocEntry that refers to a |
| 1410 | /// file. |
Douglas Gregor | c9490c0 | 2009-04-16 22:23:12 +0000 | [diff] [blame] | 1411 | static unsigned CreateSLocFileAbbrev(llvm::BitstreamWriter &Stream) { |
Douglas Gregor | 14f7900 | 2009-04-10 03:52:48 +0000 | [diff] [blame] | 1412 | using namespace llvm; |
| 1413 | BitCodeAbbrev *Abbrev = new BitCodeAbbrev(); |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 1414 | Abbrev->Add(BitCodeAbbrevOp(SM_SLOC_FILE_ENTRY)); |
Douglas Gregor | 14f7900 | 2009-04-10 03:52:48 +0000 | [diff] [blame] | 1415 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // Offset |
| 1416 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // Include location |
| 1417 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 2)); // Characteristic |
| 1418 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // Line directives |
Douglas Gregor | 2d52be5 | 2010-03-21 22:49:54 +0000 | [diff] [blame] | 1419 | // FileEntry fields. |
Douglas Gregor | a930dc9 | 2012-10-22 18:42:04 +0000 | [diff] [blame] | 1420 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // Input File ID |
Argyrios Kyrtzidis | d9d2b67 | 2011-08-21 23:33:04 +0000 | [diff] [blame] | 1421 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // NumCreatedFIDs |
Argyrios Kyrtzidis | 10f3df5 | 2011-10-28 22:54:21 +0000 | [diff] [blame] | 1422 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 24)); // FirstDeclIndex |
| 1423 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // NumDecls |
Douglas Gregor | c9490c0 | 2009-04-16 22:23:12 +0000 | [diff] [blame] | 1424 | return Stream.EmitAbbrev(Abbrev); |
Douglas Gregor | 14f7900 | 2009-04-10 03:52:48 +0000 | [diff] [blame] | 1425 | } |
| 1426 | |
| 1427 | /// \brief Create an abbreviation for the SLocEntry that refers to a |
| 1428 | /// buffer. |
Douglas Gregor | c9490c0 | 2009-04-16 22:23:12 +0000 | [diff] [blame] | 1429 | static unsigned CreateSLocBufferAbbrev(llvm::BitstreamWriter &Stream) { |
Douglas Gregor | 14f7900 | 2009-04-10 03:52:48 +0000 | [diff] [blame] | 1430 | using namespace llvm; |
| 1431 | BitCodeAbbrev *Abbrev = new BitCodeAbbrev(); |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 1432 | Abbrev->Add(BitCodeAbbrevOp(SM_SLOC_BUFFER_ENTRY)); |
Douglas Gregor | 14f7900 | 2009-04-10 03:52:48 +0000 | [diff] [blame] | 1433 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // Offset |
| 1434 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // Include location |
| 1435 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 2)); // Characteristic |
| 1436 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // Line directives |
| 1437 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // Buffer name blob |
Douglas Gregor | c9490c0 | 2009-04-16 22:23:12 +0000 | [diff] [blame] | 1438 | return Stream.EmitAbbrev(Abbrev); |
Douglas Gregor | 14f7900 | 2009-04-10 03:52:48 +0000 | [diff] [blame] | 1439 | } |
| 1440 | |
| 1441 | /// \brief Create an abbreviation for the SLocEntry that refers to a |
| 1442 | /// buffer's blob. |
Douglas Gregor | c9490c0 | 2009-04-16 22:23:12 +0000 | [diff] [blame] | 1443 | static unsigned CreateSLocBufferBlobAbbrev(llvm::BitstreamWriter &Stream) { |
Douglas Gregor | 14f7900 | 2009-04-10 03:52:48 +0000 | [diff] [blame] | 1444 | using namespace llvm; |
| 1445 | BitCodeAbbrev *Abbrev = new BitCodeAbbrev(); |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 1446 | Abbrev->Add(BitCodeAbbrevOp(SM_SLOC_BUFFER_BLOB)); |
Douglas Gregor | 14f7900 | 2009-04-10 03:52:48 +0000 | [diff] [blame] | 1447 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // Blob |
Douglas Gregor | c9490c0 | 2009-04-16 22:23:12 +0000 | [diff] [blame] | 1448 | return Stream.EmitAbbrev(Abbrev); |
Douglas Gregor | 14f7900 | 2009-04-10 03:52:48 +0000 | [diff] [blame] | 1449 | } |
| 1450 | |
Chandler Carruth | f70d12d | 2011-07-15 07:25:21 +0000 | [diff] [blame] | 1451 | /// \brief Create an abbreviation for the SLocEntry that refers to a macro |
| 1452 | /// expansion. |
| 1453 | static unsigned CreateSLocExpansionAbbrev(llvm::BitstreamWriter &Stream) { |
Douglas Gregor | 14f7900 | 2009-04-10 03:52:48 +0000 | [diff] [blame] | 1454 | using namespace llvm; |
| 1455 | BitCodeAbbrev *Abbrev = new BitCodeAbbrev(); |
Chandler Carruth | f70d12d | 2011-07-15 07:25:21 +0000 | [diff] [blame] | 1456 | Abbrev->Add(BitCodeAbbrevOp(SM_SLOC_EXPANSION_ENTRY)); |
Douglas Gregor | 14f7900 | 2009-04-10 03:52:48 +0000 | [diff] [blame] | 1457 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // Offset |
| 1458 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // Spelling location |
| 1459 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // Start location |
| 1460 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // End location |
Douglas Gregor | f60e991 | 2009-04-15 18:05:10 +0000 | [diff] [blame] | 1461 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // Token length |
Douglas Gregor | c9490c0 | 2009-04-16 22:23:12 +0000 | [diff] [blame] | 1462 | return Stream.EmitAbbrev(Abbrev); |
Douglas Gregor | 14f7900 | 2009-04-10 03:52:48 +0000 | [diff] [blame] | 1463 | } |
| 1464 | |
Douglas Gregor | cfbf1c7 | 2011-02-10 17:09:37 +0000 | [diff] [blame] | 1465 | namespace { |
| 1466 | // Trait used for the on-disk hash table of header search information. |
| 1467 | class HeaderFileInfoTrait { |
| 1468 | ASTWriter &Writer; |
Argyrios Kyrtzidis | 55ea75b | 2013-03-13 21:13:51 +0000 | [diff] [blame] | 1469 | const HeaderSearch &HS; |
Douglas Gregor | cfbf1c7 | 2011-02-10 17:09:37 +0000 | [diff] [blame] | 1470 | |
Douglas Gregor | b4dc485 | 2011-07-28 04:50:02 +0000 | [diff] [blame] | 1471 | // Keep track of the framework names we've used during serialization. |
| 1472 | SmallVector<char, 128> FrameworkStringData; |
| 1473 | llvm::StringMap<unsigned> FrameworkNameOffset; |
| 1474 | |
Douglas Gregor | cfbf1c7 | 2011-02-10 17:09:37 +0000 | [diff] [blame] | 1475 | public: |
Argyrios Kyrtzidis | 55ea75b | 2013-03-13 21:13:51 +0000 | [diff] [blame] | 1476 | HeaderFileInfoTrait(ASTWriter &Writer, const HeaderSearch &HS) |
| 1477 | : Writer(Writer), HS(HS) { } |
Douglas Gregor | cfbf1c7 | 2011-02-10 17:09:37 +0000 | [diff] [blame] | 1478 | |
Argyrios Kyrtzidis | ed3802e | 2013-03-06 18:12:47 +0000 | [diff] [blame] | 1479 | struct key_type { |
| 1480 | const FileEntry *FE; |
| 1481 | const char *Filename; |
| 1482 | }; |
| 1483 | typedef const key_type &key_type_ref; |
Douglas Gregor | cfbf1c7 | 2011-02-10 17:09:37 +0000 | [diff] [blame] | 1484 | |
| 1485 | typedef HeaderFileInfo data_type; |
| 1486 | typedef const data_type &data_type_ref; |
Stephen Hines | 6bcf27b | 2014-05-29 04:14:42 -0700 | [diff] [blame^] | 1487 | typedef unsigned hash_value_type; |
| 1488 | typedef unsigned offset_type; |
Douglas Gregor | cfbf1c7 | 2011-02-10 17:09:37 +0000 | [diff] [blame] | 1489 | |
Stephen Hines | 6bcf27b | 2014-05-29 04:14:42 -0700 | [diff] [blame^] | 1490 | static hash_value_type ComputeHash(key_type_ref key) { |
Argyrios Kyrtzidis | ed3802e | 2013-03-06 18:12:47 +0000 | [diff] [blame] | 1491 | // The hash is based only on size/time of the file, so that the reader can |
| 1492 | // match even when symlinking or excess path elements ("foo/../", "../") |
| 1493 | // change the form of the name. However, complete path is still the key. |
| 1494 | return llvm::hash_combine(key.FE->getSize(), |
| 1495 | key.FE->getModificationTime()); |
Douglas Gregor | cfbf1c7 | 2011-02-10 17:09:37 +0000 | [diff] [blame] | 1496 | } |
| 1497 | |
| 1498 | std::pair<unsigned,unsigned> |
Argyrios Kyrtzidis | ed3802e | 2013-03-06 18:12:47 +0000 | [diff] [blame] | 1499 | EmitKeyDataLength(raw_ostream& Out, key_type_ref key, data_type_ref Data) { |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 1500 | using namespace llvm::support; |
| 1501 | endian::Writer<little> Writer(Out); |
Argyrios Kyrtzidis | ed3802e | 2013-03-06 18:12:47 +0000 | [diff] [blame] | 1502 | unsigned KeyLen = strlen(key.Filename) + 1 + 8 + 8; |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 1503 | Writer.write<uint16_t>(KeyLen); |
Douglas Gregor | b4dc485 | 2011-07-28 04:50:02 +0000 | [diff] [blame] | 1504 | unsigned DataLen = 1 + 2 + 4 + 4; |
Argyrios Kyrtzidis | 55ea75b | 2013-03-13 21:13:51 +0000 | [diff] [blame] | 1505 | if (Data.isModuleHeader) |
| 1506 | DataLen += 4; |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 1507 | Writer.write<uint8_t>(DataLen); |
Argyrios Kyrtzidis | ed3802e | 2013-03-06 18:12:47 +0000 | [diff] [blame] | 1508 | return std::make_pair(KeyLen, DataLen); |
Douglas Gregor | cfbf1c7 | 2011-02-10 17:09:37 +0000 | [diff] [blame] | 1509 | } |
| 1510 | |
Argyrios Kyrtzidis | ed3802e | 2013-03-06 18:12:47 +0000 | [diff] [blame] | 1511 | void EmitKey(raw_ostream& Out, key_type_ref key, unsigned KeyLen) { |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 1512 | using namespace llvm::support; |
| 1513 | endian::Writer<little> LE(Out); |
| 1514 | LE.write<uint64_t>(key.FE->getSize()); |
Argyrios Kyrtzidis | ed3802e | 2013-03-06 18:12:47 +0000 | [diff] [blame] | 1515 | KeyLen -= 8; |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 1516 | LE.write<uint64_t>(key.FE->getModificationTime()); |
Argyrios Kyrtzidis | ed3802e | 2013-03-06 18:12:47 +0000 | [diff] [blame] | 1517 | KeyLen -= 8; |
| 1518 | Out.write(key.Filename, KeyLen); |
Douglas Gregor | cfbf1c7 | 2011-02-10 17:09:37 +0000 | [diff] [blame] | 1519 | } |
| 1520 | |
Argyrios Kyrtzidis | 55ea75b | 2013-03-13 21:13:51 +0000 | [diff] [blame] | 1521 | void EmitData(raw_ostream &Out, key_type_ref key, |
Douglas Gregor | cfbf1c7 | 2011-02-10 17:09:37 +0000 | [diff] [blame] | 1522 | data_type_ref Data, unsigned DataLen) { |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 1523 | using namespace llvm::support; |
| 1524 | endian::Writer<little> LE(Out); |
Douglas Gregor | cfbf1c7 | 2011-02-10 17:09:37 +0000 | [diff] [blame] | 1525 | uint64_t Start = Out.tell(); (void)Start; |
| 1526 | |
Lawrence Crowl | bc3f628 | 2013-06-20 21:14:14 +0000 | [diff] [blame] | 1527 | unsigned char Flags = (Data.HeaderRole << 6) |
| 1528 | | (Data.isImport << 5) |
Douglas Gregor | b4dc485 | 2011-07-28 04:50:02 +0000 | [diff] [blame] | 1529 | | (Data.isPragmaOnce << 4) |
| 1530 | | (Data.DirInfo << 2) |
| 1531 | | (Data.Resolved << 1) |
| 1532 | | Data.IndexHeaderMapHeader; |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 1533 | LE.write<uint8_t>(Flags); |
| 1534 | LE.write<uint16_t>(Data.NumIncludes); |
Douglas Gregor | cfbf1c7 | 2011-02-10 17:09:37 +0000 | [diff] [blame] | 1535 | |
| 1536 | if (!Data.ControllingMacro) |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 1537 | LE.write<uint32_t>(Data.ControllingMacroID); |
Douglas Gregor | cfbf1c7 | 2011-02-10 17:09:37 +0000 | [diff] [blame] | 1538 | else |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 1539 | LE.write<uint32_t>(Writer.getIdentifierRef(Data.ControllingMacro)); |
Douglas Gregor | b4dc485 | 2011-07-28 04:50:02 +0000 | [diff] [blame] | 1540 | |
| 1541 | unsigned Offset = 0; |
| 1542 | if (!Data.Framework.empty()) { |
| 1543 | // If this header refers into a framework, save the framework name. |
| 1544 | llvm::StringMap<unsigned>::iterator Pos |
| 1545 | = FrameworkNameOffset.find(Data.Framework); |
| 1546 | if (Pos == FrameworkNameOffset.end()) { |
| 1547 | Offset = FrameworkStringData.size() + 1; |
| 1548 | FrameworkStringData.append(Data.Framework.begin(), |
| 1549 | Data.Framework.end()); |
| 1550 | FrameworkStringData.push_back(0); |
| 1551 | |
| 1552 | FrameworkNameOffset[Data.Framework] = Offset; |
| 1553 | } else |
| 1554 | Offset = Pos->second; |
| 1555 | } |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 1556 | LE.write<uint32_t>(Offset); |
Argyrios Kyrtzidis | 55ea75b | 2013-03-13 21:13:51 +0000 | [diff] [blame] | 1557 | |
| 1558 | if (Data.isModuleHeader) { |
Lawrence Crowl | bc3f628 | 2013-06-20 21:14:14 +0000 | [diff] [blame] | 1559 | Module *Mod = HS.findModuleForHeader(key.FE).getModule(); |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 1560 | LE.write<uint32_t>(Writer.getExistingSubmoduleID(Mod)); |
Argyrios Kyrtzidis | 55ea75b | 2013-03-13 21:13:51 +0000 | [diff] [blame] | 1561 | } |
| 1562 | |
Douglas Gregor | cfbf1c7 | 2011-02-10 17:09:37 +0000 | [diff] [blame] | 1563 | assert(Out.tell() - Start == DataLen && "Wrong data length"); |
| 1564 | } |
Douglas Gregor | b4dc485 | 2011-07-28 04:50:02 +0000 | [diff] [blame] | 1565 | |
| 1566 | const char *strings_begin() const { return FrameworkStringData.begin(); } |
| 1567 | const char *strings_end() const { return FrameworkStringData.end(); } |
Douglas Gregor | cfbf1c7 | 2011-02-10 17:09:37 +0000 | [diff] [blame] | 1568 | }; |
| 1569 | } // end anonymous namespace |
| 1570 | |
| 1571 | /// \brief Write the header search block for the list of files that |
| 1572 | /// |
| 1573 | /// \param HS The header search structure to save. |
Argyrios Kyrtzidis | 590ad93 | 2011-11-13 22:08:39 +0000 | [diff] [blame] | 1574 | void ASTWriter::WriteHeaderSearch(const HeaderSearch &HS, StringRef isysroot) { |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1575 | SmallVector<const FileEntry *, 16> FilesByUID; |
Douglas Gregor | cfbf1c7 | 2011-02-10 17:09:37 +0000 | [diff] [blame] | 1576 | HS.getFileMgr().GetUniqueIDMapping(FilesByUID); |
| 1577 | |
| 1578 | if (FilesByUID.size() > HS.header_file_size()) |
| 1579 | FilesByUID.resize(HS.header_file_size()); |
| 1580 | |
Argyrios Kyrtzidis | 55ea75b | 2013-03-13 21:13:51 +0000 | [diff] [blame] | 1581 | HeaderFileInfoTrait GeneratorTrait(*this, HS); |
Stephen Hines | 6bcf27b | 2014-05-29 04:14:42 -0700 | [diff] [blame^] | 1582 | llvm::OnDiskChainedHashTableGenerator<HeaderFileInfoTrait> Generator; |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1583 | SmallVector<const char *, 4> SavedStrings; |
Douglas Gregor | cfbf1c7 | 2011-02-10 17:09:37 +0000 | [diff] [blame] | 1584 | unsigned NumHeaderSearchEntries = 0; |
| 1585 | for (unsigned UID = 0, LastUID = FilesByUID.size(); UID != LastUID; ++UID) { |
| 1586 | const FileEntry *File = FilesByUID[UID]; |
| 1587 | if (!File) |
| 1588 | continue; |
| 1589 | |
Argyrios Kyrtzidis | 590ad93 | 2011-11-13 22:08:39 +0000 | [diff] [blame] | 1590 | // Use HeaderSearch's getFileInfo to make sure we get the HeaderFileInfo |
| 1591 | // from the external source if it was not provided already. |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 1592 | HeaderFileInfo HFI; |
| 1593 | if (!HS.tryGetFileInfo(File, HFI) || |
| 1594 | (HFI.External && Chain) || |
| 1595 | (HFI.isModuleHeader && !HFI.isCompilingModuleHeader)) |
Argyrios Kyrtzidis | d3220db | 2013-05-08 23:46:46 +0000 | [diff] [blame] | 1596 | continue; |
Douglas Gregor | cfbf1c7 | 2011-02-10 17:09:37 +0000 | [diff] [blame] | 1597 | |
| 1598 | // Turn the file name into an absolute path, if it isn't already. |
| 1599 | const char *Filename = File->getName(); |
| 1600 | Filename = adjustFilenameForRelocatablePCH(Filename, isysroot); |
| 1601 | |
| 1602 | // If we performed any translation on the file name at all, we need to |
| 1603 | // save this string, since the generator will refer to it later. |
| 1604 | if (Filename != File->getName()) { |
| 1605 | Filename = strdup(Filename); |
| 1606 | SavedStrings.push_back(Filename); |
| 1607 | } |
| 1608 | |
Argyrios Kyrtzidis | ed3802e | 2013-03-06 18:12:47 +0000 | [diff] [blame] | 1609 | HeaderFileInfoTrait::key_type key = { File, Filename }; |
| 1610 | Generator.insert(key, HFI, GeneratorTrait); |
Douglas Gregor | cfbf1c7 | 2011-02-10 17:09:37 +0000 | [diff] [blame] | 1611 | ++NumHeaderSearchEntries; |
| 1612 | } |
| 1613 | |
| 1614 | // Create the on-disk hash table in a buffer. |
Dylan Noblesmith | f7ccbad | 2012-02-05 02:13:05 +0000 | [diff] [blame] | 1615 | SmallString<4096> TableData; |
Douglas Gregor | cfbf1c7 | 2011-02-10 17:09:37 +0000 | [diff] [blame] | 1616 | uint32_t BucketOffset; |
| 1617 | { |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 1618 | using namespace llvm::support; |
Douglas Gregor | cfbf1c7 | 2011-02-10 17:09:37 +0000 | [diff] [blame] | 1619 | llvm::raw_svector_ostream Out(TableData); |
| 1620 | // Make sure that no bucket is at offset 0 |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 1621 | endian::Writer<little>(Out).write<uint32_t>(0); |
Douglas Gregor | cfbf1c7 | 2011-02-10 17:09:37 +0000 | [diff] [blame] | 1622 | BucketOffset = Generator.Emit(Out, GeneratorTrait); |
| 1623 | } |
| 1624 | |
| 1625 | // Create a blob abbreviation |
| 1626 | using namespace llvm; |
| 1627 | BitCodeAbbrev *Abbrev = new BitCodeAbbrev(); |
| 1628 | Abbrev->Add(BitCodeAbbrevOp(HEADER_SEARCH_TABLE)); |
| 1629 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); |
| 1630 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); |
Douglas Gregor | b4dc485 | 2011-07-28 04:50:02 +0000 | [diff] [blame] | 1631 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); |
Douglas Gregor | cfbf1c7 | 2011-02-10 17:09:37 +0000 | [diff] [blame] | 1632 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); |
| 1633 | unsigned TableAbbrev = Stream.EmitAbbrev(Abbrev); |
| 1634 | |
Douglas Gregor | b4dc485 | 2011-07-28 04:50:02 +0000 | [diff] [blame] | 1635 | // Write the header search table |
Douglas Gregor | cfbf1c7 | 2011-02-10 17:09:37 +0000 | [diff] [blame] | 1636 | RecordData Record; |
| 1637 | Record.push_back(HEADER_SEARCH_TABLE); |
| 1638 | Record.push_back(BucketOffset); |
| 1639 | Record.push_back(NumHeaderSearchEntries); |
Douglas Gregor | b4dc485 | 2011-07-28 04:50:02 +0000 | [diff] [blame] | 1640 | Record.push_back(TableData.size()); |
| 1641 | TableData.append(GeneratorTrait.strings_begin(),GeneratorTrait.strings_end()); |
Douglas Gregor | cfbf1c7 | 2011-02-10 17:09:37 +0000 | [diff] [blame] | 1642 | Stream.EmitRecordWithBlob(TableAbbrev, Record, TableData.str()); |
| 1643 | |
| 1644 | // Free all of the strings we had to duplicate. |
| 1645 | for (unsigned I = 0, N = SavedStrings.size(); I != N; ++I) |
David Greene | 6444483 | 2013-01-15 22:09:43 +0000 | [diff] [blame] | 1646 | free(const_cast<char *>(SavedStrings[I])); |
Douglas Gregor | cfbf1c7 | 2011-02-10 17:09:37 +0000 | [diff] [blame] | 1647 | } |
| 1648 | |
Douglas Gregor | 14f7900 | 2009-04-10 03:52:48 +0000 | [diff] [blame] | 1649 | /// \brief Writes the block containing the serialized form of the |
| 1650 | /// source manager. |
| 1651 | /// |
| 1652 | /// TODO: We should probably use an on-disk hash table (stored in a |
| 1653 | /// blob), indexed based on the file name, so that we only create |
| 1654 | /// entries for files that we actually need. In the common case (no |
| 1655 | /// errors), we probably won't have to create file entries for any of |
| 1656 | /// the files in the AST. |
Sebastian Redl | a4232eb | 2010-08-18 23:56:21 +0000 | [diff] [blame] | 1657 | void ASTWriter::WriteSourceManagerBlock(SourceManager &SourceMgr, |
Douglas Gregor | e650c8c | 2009-07-07 00:12:59 +0000 | [diff] [blame] | 1658 | const Preprocessor &PP, |
Douglas Gregor | 832d620 | 2011-07-22 16:35:34 +0000 | [diff] [blame] | 1659 | StringRef isysroot) { |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 1660 | RecordData Record; |
| 1661 | |
Chris Lattner | f04ad69 | 2009-04-10 17:16:57 +0000 | [diff] [blame] | 1662 | // Enter the source manager block. |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 1663 | Stream.EnterSubblock(SOURCE_MANAGER_BLOCK_ID, 3); |
Douglas Gregor | 14f7900 | 2009-04-10 03:52:48 +0000 | [diff] [blame] | 1664 | |
| 1665 | // Abbreviations for the various kinds of source-location entries. |
Chris Lattner | 828e18c | 2009-04-27 19:03:22 +0000 | [diff] [blame] | 1666 | unsigned SLocFileAbbrv = CreateSLocFileAbbrev(Stream); |
| 1667 | unsigned SLocBufferAbbrv = CreateSLocBufferAbbrev(Stream); |
| 1668 | unsigned SLocBufferBlobAbbrv = CreateSLocBufferBlobAbbrev(Stream); |
Chandler Carruth | f70d12d | 2011-07-15 07:25:21 +0000 | [diff] [blame] | 1669 | unsigned SLocExpansionAbbrv = CreateSLocExpansionAbbrev(Stream); |
Douglas Gregor | 14f7900 | 2009-04-10 03:52:48 +0000 | [diff] [blame] | 1670 | |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 1671 | // Write out the source location entry table. We skip the first |
| 1672 | // entry, which is always the same dummy entry. |
Chris Lattner | 090d9b5 | 2009-04-27 19:01:47 +0000 | [diff] [blame] | 1673 | std::vector<uint32_t> SLocEntryOffsets; |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 1674 | RecordData PreloadSLocs; |
Douglas Gregor | f62d43d | 2011-07-19 16:10:42 +0000 | [diff] [blame] | 1675 | SLocEntryOffsets.reserve(SourceMgr.local_sloc_entry_size() - 1); |
| 1676 | for (unsigned I = 1, N = SourceMgr.local_sloc_entry_size(); |
Sebastian Redl | 0fa7d0b | 2010-07-22 17:01:13 +0000 | [diff] [blame] | 1677 | I != N; ++I) { |
Douglas Gregor | bdfe48a | 2009-10-16 22:46:09 +0000 | [diff] [blame] | 1678 | // Get this source location entry. |
Douglas Gregor | f62d43d | 2011-07-19 16:10:42 +0000 | [diff] [blame] | 1679 | const SrcMgr::SLocEntry *SLoc = &SourceMgr.getLocalSLocEntry(I); |
Argyrios Kyrtzidis | a2ea4d9 | 2012-10-02 21:09:17 +0000 | [diff] [blame] | 1680 | FileID FID = FileID::get(I); |
| 1681 | assert(&SourceMgr.getSLocEntry(FID) == SLoc); |
Kovarththanan Rajaratnam | 11a18f1 | 2010-03-14 07:06:50 +0000 | [diff] [blame] | 1682 | |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 1683 | // Record the offset of this source-location entry. |
| 1684 | SLocEntryOffsets.push_back(Stream.GetCurrentBitNo()); |
| 1685 | |
| 1686 | // Figure out which record code to use. |
| 1687 | unsigned Code; |
| 1688 | if (SLoc->isFile()) { |
Douglas Gregor | a081da5 | 2011-11-16 20:05:18 +0000 | [diff] [blame] | 1689 | const SrcMgr::ContentCache *Cache = SLoc->getFile().getContentCache(); |
| 1690 | if (Cache->OrigEntry) { |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 1691 | Code = SM_SLOC_FILE_ENTRY; |
Argyrios Kyrtzidis | 4cdb0e2 | 2011-06-02 20:01:46 +0000 | [diff] [blame] | 1692 | } else |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 1693 | Code = SM_SLOC_BUFFER_ENTRY; |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 1694 | } else |
Chandler Carruth | f70d12d | 2011-07-15 07:25:21 +0000 | [diff] [blame] | 1695 | Code = SM_SLOC_EXPANSION_ENTRY; |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 1696 | Record.clear(); |
| 1697 | Record.push_back(Code); |
| 1698 | |
Douglas Gregor | f62d43d | 2011-07-19 16:10:42 +0000 | [diff] [blame] | 1699 | // Starting offset of this entry within this module, so skip the dummy. |
| 1700 | Record.push_back(SLoc->getOffset() - 2); |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 1701 | if (SLoc->isFile()) { |
| 1702 | const SrcMgr::FileInfo &File = SLoc->getFile(); |
| 1703 | Record.push_back(File.getIncludeLoc().getRawEncoding()); |
| 1704 | Record.push_back(File.getFileCharacteristic()); // FIXME: stable encoding |
| 1705 | Record.push_back(File.hasLineDirectives()); |
| 1706 | |
| 1707 | const SrcMgr::ContentCache *Content = File.getContentCache(); |
Argyrios Kyrtzidis | b1c8649 | 2011-03-05 01:03:53 +0000 | [diff] [blame] | 1708 | if (Content->OrigEntry) { |
| 1709 | assert(Content->OrigEntry == Content->ContentsEntry && |
Douglas Gregor | a081da5 | 2011-11-16 20:05:18 +0000 | [diff] [blame] | 1710 | "Writing to AST an overridden file is not supported"); |
Argyrios Kyrtzidis | b1c8649 | 2011-03-05 01:03:53 +0000 | [diff] [blame] | 1711 | |
Douglas Gregor | a930dc9 | 2012-10-22 18:42:04 +0000 | [diff] [blame] | 1712 | // The source location entry is a file. Emit input file ID. |
| 1713 | assert(InputFileIDs[Content->OrigEntry] != 0 && "Missed file entry"); |
| 1714 | Record.push_back(InputFileIDs[Content->OrigEntry]); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1715 | |
Argyrios Kyrtzidis | d9d2b67 | 2011-08-21 23:33:04 +0000 | [diff] [blame] | 1716 | Record.push_back(File.NumCreatedFIDs); |
Argyrios Kyrtzidis | 10f3df5 | 2011-10-28 22:54:21 +0000 | [diff] [blame] | 1717 | |
Argyrios Kyrtzidis | a2ea4d9 | 2012-10-02 21:09:17 +0000 | [diff] [blame] | 1718 | FileDeclIDsTy::iterator FDI = FileDeclIDs.find(FID); |
Argyrios Kyrtzidis | 10f3df5 | 2011-10-28 22:54:21 +0000 | [diff] [blame] | 1719 | if (FDI != FileDeclIDs.end()) { |
| 1720 | Record.push_back(FDI->second->FirstDeclIndex); |
| 1721 | Record.push_back(FDI->second->DeclIDs.size()); |
| 1722 | } else { |
| 1723 | Record.push_back(0); |
| 1724 | Record.push_back(0); |
| 1725 | } |
Douglas Gregor | a081da5 | 2011-11-16 20:05:18 +0000 | [diff] [blame] | 1726 | |
Douglas Gregor | a930dc9 | 2012-10-22 18:42:04 +0000 | [diff] [blame] | 1727 | Stream.EmitRecordWithAbbrev(SLocFileAbbrv, Record); |
Douglas Gregor | a081da5 | 2011-11-16 20:05:18 +0000 | [diff] [blame] | 1728 | |
| 1729 | if (Content->BufferOverridden) { |
| 1730 | Record.clear(); |
| 1731 | Record.push_back(SM_SLOC_BUFFER_BLOB); |
| 1732 | const llvm::MemoryBuffer *Buffer |
| 1733 | = Content->getBuffer(PP.getDiagnostics(), PP.getSourceManager()); |
| 1734 | Stream.EmitRecordWithBlob(SLocBufferBlobAbbrv, Record, |
| 1735 | StringRef(Buffer->getBufferStart(), |
| 1736 | Buffer->getBufferSize() + 1)); |
| 1737 | } |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 1738 | } else { |
| 1739 | // The source location entry is a buffer. The blob associated |
| 1740 | // with this entry contains the contents of the buffer. |
| 1741 | |
| 1742 | // We add one to the size so that we capture the trailing NULL |
| 1743 | // that is required by llvm::MemoryBuffer::getMemBuffer (on |
| 1744 | // the reader side). |
Douglas Gregor | 36c35ba | 2010-03-16 00:35:39 +0000 | [diff] [blame] | 1745 | const llvm::MemoryBuffer *Buffer |
Chris Lattner | e127a0d | 2010-04-20 20:35:58 +0000 | [diff] [blame] | 1746 | = Content->getBuffer(PP.getDiagnostics(), PP.getSourceManager()); |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 1747 | const char *Name = Buffer->getBufferIdentifier(); |
Daniel Dunbar | ec312a1 | 2009-08-24 09:31:37 +0000 | [diff] [blame] | 1748 | Stream.EmitRecordWithBlob(SLocBufferAbbrv, Record, |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1749 | StringRef(Name, strlen(Name) + 1)); |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 1750 | Record.clear(); |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 1751 | Record.push_back(SM_SLOC_BUFFER_BLOB); |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 1752 | Stream.EmitRecordWithBlob(SLocBufferBlobAbbrv, Record, |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 1753 | StringRef(Buffer->getBufferStart(), |
Daniel Dunbar | ec312a1 | 2009-08-24 09:31:37 +0000 | [diff] [blame] | 1754 | Buffer->getBufferSize() + 1)); |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 1755 | |
Douglas Gregor | f62d43d | 2011-07-19 16:10:42 +0000 | [diff] [blame] | 1756 | if (strcmp(Name, "<built-in>") == 0) { |
| 1757 | PreloadSLocs.push_back(SLocEntryOffsets.size()); |
| 1758 | } |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 1759 | } |
| 1760 | } else { |
Chandler Carruth | f70d12d | 2011-07-15 07:25:21 +0000 | [diff] [blame] | 1761 | // The source location entry is a macro expansion. |
Chandler Carruth | 1728762 | 2011-07-26 04:56:51 +0000 | [diff] [blame] | 1762 | const SrcMgr::ExpansionInfo &Expansion = SLoc->getExpansion(); |
Chandler Carruth | 78df836 | 2011-07-26 04:41:47 +0000 | [diff] [blame] | 1763 | Record.push_back(Expansion.getSpellingLoc().getRawEncoding()); |
| 1764 | Record.push_back(Expansion.getExpansionLocStart().getRawEncoding()); |
Argyrios Kyrtzidis | d21683c | 2011-08-17 00:31:14 +0000 | [diff] [blame] | 1765 | Record.push_back(Expansion.isMacroArgExpansion() ? 0 |
| 1766 | : Expansion.getExpansionLocEnd().getRawEncoding()); |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 1767 | |
| 1768 | // Compute the token length for this macro expansion. |
Douglas Gregor | f62d43d | 2011-07-19 16:10:42 +0000 | [diff] [blame] | 1769 | unsigned NextOffset = SourceMgr.getNextLocalOffset(); |
Douglas Gregor | bdfe48a | 2009-10-16 22:46:09 +0000 | [diff] [blame] | 1770 | if (I + 1 != N) |
Douglas Gregor | f62d43d | 2011-07-19 16:10:42 +0000 | [diff] [blame] | 1771 | NextOffset = SourceMgr.getLocalSLocEntry(I + 1).getOffset(); |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 1772 | Record.push_back(NextOffset - SLoc->getOffset() - 1); |
Chandler Carruth | f70d12d | 2011-07-15 07:25:21 +0000 | [diff] [blame] | 1773 | Stream.EmitRecordWithAbbrev(SLocExpansionAbbrv, Record); |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 1774 | } |
| 1775 | } |
| 1776 | |
Douglas Gregor | c9490c0 | 2009-04-16 22:23:12 +0000 | [diff] [blame] | 1777 | Stream.ExitBlock(); |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 1778 | |
| 1779 | if (SLocEntryOffsets.empty()) |
| 1780 | return; |
| 1781 | |
Sebastian Redl | 3397c55 | 2010-08-18 23:56:27 +0000 | [diff] [blame] | 1782 | // Write the source-location offsets table into the AST block. This |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 1783 | // table is used for lazily loading source-location information. |
| 1784 | using namespace llvm; |
| 1785 | BitCodeAbbrev *Abbrev = new BitCodeAbbrev(); |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 1786 | Abbrev->Add(BitCodeAbbrevOp(SOURCE_LOCATION_OFFSETS)); |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 1787 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 16)); // # of slocs |
Douglas Gregor | f62d43d | 2011-07-19 16:10:42 +0000 | [diff] [blame] | 1788 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 16)); // total size |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 1789 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // offsets |
| 1790 | unsigned SLocOffsetsAbbrev = Stream.EmitAbbrev(Abbrev); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1791 | |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 1792 | Record.clear(); |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 1793 | Record.push_back(SOURCE_LOCATION_OFFSETS); |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 1794 | Record.push_back(SLocEntryOffsets.size()); |
Douglas Gregor | f62d43d | 2011-07-19 16:10:42 +0000 | [diff] [blame] | 1795 | Record.push_back(SourceMgr.getNextLocalOffset() - 1); // skip dummy |
Benjamin Kramer | 6e089c6 | 2011-04-24 17:44:50 +0000 | [diff] [blame] | 1796 | Stream.EmitRecordWithBlob(SLocOffsetsAbbrev, Record, data(SLocEntryOffsets)); |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 1797 | |
Sebastian Redl | 3397c55 | 2010-08-18 23:56:27 +0000 | [diff] [blame] | 1798 | // Write the source location entry preloads array, telling the AST |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 1799 | // reader which source locations entries it should load eagerly. |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 1800 | Stream.EmitRecord(SOURCE_LOCATION_PRELOADS, PreloadSLocs); |
Douglas Gregor | f62d43d | 2011-07-19 16:10:42 +0000 | [diff] [blame] | 1801 | |
| 1802 | // Write the line table. It depends on remapping working, so it must come |
| 1803 | // after the source location offsets. |
| 1804 | if (SourceMgr.hasLineTable()) { |
| 1805 | LineTableInfo &LineTable = SourceMgr.getLineTable(); |
| 1806 | |
| 1807 | Record.clear(); |
| 1808 | // Emit the file names |
| 1809 | Record.push_back(LineTable.getNumFilenames()); |
| 1810 | for (unsigned I = 0, N = LineTable.getNumFilenames(); I != N; ++I) { |
| 1811 | // Emit the file name |
| 1812 | const char *Filename = LineTable.getFilename(I); |
| 1813 | Filename = adjustFilenameForRelocatablePCH(Filename, isysroot); |
| 1814 | unsigned FilenameLen = Filename? strlen(Filename) : 0; |
| 1815 | Record.push_back(FilenameLen); |
| 1816 | if (FilenameLen) |
| 1817 | Record.insert(Record.end(), Filename, Filename + FilenameLen); |
| 1818 | } |
| 1819 | |
| 1820 | // Emit the line entries |
| 1821 | for (LineTableInfo::iterator L = LineTable.begin(), LEnd = LineTable.end(); |
| 1822 | L != LEnd; ++L) { |
| 1823 | // Only emit entries for local files. |
Douglas Gregor | 47d9de6 | 2012-06-08 16:40:28 +0000 | [diff] [blame] | 1824 | if (L->first.ID < 0) |
Douglas Gregor | f62d43d | 2011-07-19 16:10:42 +0000 | [diff] [blame] | 1825 | continue; |
| 1826 | |
| 1827 | // Emit the file ID |
Douglas Gregor | 47d9de6 | 2012-06-08 16:40:28 +0000 | [diff] [blame] | 1828 | Record.push_back(L->first.ID); |
Douglas Gregor | f62d43d | 2011-07-19 16:10:42 +0000 | [diff] [blame] | 1829 | |
| 1830 | // Emit the line entries |
| 1831 | Record.push_back(L->second.size()); |
| 1832 | for (std::vector<LineEntry>::iterator LE = L->second.begin(), |
| 1833 | LEEnd = L->second.end(); |
| 1834 | LE != LEEnd; ++LE) { |
| 1835 | Record.push_back(LE->FileOffset); |
| 1836 | Record.push_back(LE->LineNo); |
| 1837 | Record.push_back(LE->FilenameID); |
| 1838 | Record.push_back((unsigned)LE->FileKind); |
| 1839 | Record.push_back(LE->IncludeOffset); |
| 1840 | } |
| 1841 | } |
| 1842 | Stream.EmitRecord(SOURCE_MANAGER_LINE_TABLE, Record); |
| 1843 | } |
Douglas Gregor | 14f7900 | 2009-04-10 03:52:48 +0000 | [diff] [blame] | 1844 | } |
| 1845 | |
Douglas Gregor | 4fed3f4 | 2009-04-27 18:38:38 +0000 | [diff] [blame] | 1846 | //===----------------------------------------------------------------------===// |
| 1847 | // Preprocessor Serialization |
| 1848 | //===----------------------------------------------------------------------===// |
| 1849 | |
Argyrios Kyrtzidis | 9317ab9 | 2013-03-22 21:12:57 +0000 | [diff] [blame] | 1850 | namespace { |
| 1851 | class ASTMacroTableTrait { |
| 1852 | public: |
| 1853 | typedef IdentID key_type; |
| 1854 | typedef key_type key_type_ref; |
| 1855 | |
| 1856 | struct Data { |
| 1857 | uint32_t MacroDirectivesOffset; |
| 1858 | }; |
| 1859 | |
| 1860 | typedef Data data_type; |
| 1861 | typedef const data_type &data_type_ref; |
Stephen Hines | 6bcf27b | 2014-05-29 04:14:42 -0700 | [diff] [blame^] | 1862 | typedef unsigned hash_value_type; |
| 1863 | typedef unsigned offset_type; |
Argyrios Kyrtzidis | 9317ab9 | 2013-03-22 21:12:57 +0000 | [diff] [blame] | 1864 | |
Stephen Hines | 6bcf27b | 2014-05-29 04:14:42 -0700 | [diff] [blame^] | 1865 | static hash_value_type ComputeHash(IdentID IdID) { |
Argyrios Kyrtzidis | 9317ab9 | 2013-03-22 21:12:57 +0000 | [diff] [blame] | 1866 | return llvm::hash_value(IdID); |
| 1867 | } |
| 1868 | |
| 1869 | std::pair<unsigned,unsigned> |
| 1870 | static EmitKeyDataLength(raw_ostream& Out, |
| 1871 | key_type_ref Key, data_type_ref Data) { |
| 1872 | unsigned KeyLen = 4; // IdentID. |
| 1873 | unsigned DataLen = 4; // MacroDirectivesOffset. |
| 1874 | return std::make_pair(KeyLen, DataLen); |
| 1875 | } |
| 1876 | |
| 1877 | static void EmitKey(raw_ostream& Out, key_type_ref Key, unsigned KeyLen) { |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 1878 | using namespace llvm::support; |
| 1879 | endian::Writer<little>(Out).write<uint32_t>(Key); |
Argyrios Kyrtzidis | 9317ab9 | 2013-03-22 21:12:57 +0000 | [diff] [blame] | 1880 | } |
| 1881 | |
| 1882 | static void EmitData(raw_ostream& Out, key_type_ref Key, data_type_ref Data, |
| 1883 | unsigned) { |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 1884 | using namespace llvm::support; |
| 1885 | endian::Writer<little>(Out).write<uint32_t>(Data.MacroDirectivesOffset); |
Argyrios Kyrtzidis | 9317ab9 | 2013-03-22 21:12:57 +0000 | [diff] [blame] | 1886 | } |
| 1887 | }; |
| 1888 | } // end anonymous namespace |
| 1889 | |
Benjamin Kramer | 767b3d2 | 2013-09-22 14:10:29 +0000 | [diff] [blame] | 1890 | static int compareMacroDirectives( |
| 1891 | const std::pair<const IdentifierInfo *, MacroDirective *> *X, |
| 1892 | const std::pair<const IdentifierInfo *, MacroDirective *> *Y) { |
| 1893 | return X->first->getName().compare(Y->first->getName()); |
Douglas Gregor | 9c73610 | 2011-02-10 18:20:09 +0000 | [diff] [blame] | 1894 | } |
| 1895 | |
Argyrios Kyrtzidis | 9cc3ed4 | 2013-03-15 22:43:10 +0000 | [diff] [blame] | 1896 | static bool shouldIgnoreMacro(MacroDirective *MD, bool IsModule, |
| 1897 | const Preprocessor &PP) { |
Argyrios Kyrtzidis | c56fff7 | 2013-03-26 17:17:01 +0000 | [diff] [blame] | 1898 | if (MacroInfo *MI = MD->getMacroInfo()) |
| 1899 | if (MI->isBuiltinMacro()) |
| 1900 | return true; |
Argyrios Kyrtzidis | 9cc3ed4 | 2013-03-15 22:43:10 +0000 | [diff] [blame] | 1901 | |
| 1902 | if (IsModule) { |
| 1903 | SourceLocation Loc = MD->getLocation(); |
| 1904 | if (Loc.isInvalid()) |
| 1905 | return true; |
| 1906 | if (PP.getSourceManager().getFileID(Loc) == PP.getPredefinesFileID()) |
| 1907 | return true; |
| 1908 | } |
| 1909 | |
| 1910 | return false; |
| 1911 | } |
| 1912 | |
Chris Lattner | 0b1fb98 | 2009-04-10 17:15:23 +0000 | [diff] [blame] | 1913 | /// \brief Writes the block containing the serialized form of the |
| 1914 | /// preprocessor. |
| 1915 | /// |
Douglas Gregor | 7143aab | 2011-09-01 17:04:32 +0000 | [diff] [blame] | 1916 | void ASTWriter::WritePreprocessor(const Preprocessor &PP, bool IsModule) { |
Argyrios Kyrtzidis | e24692b | 2011-09-15 18:02:56 +0000 | [diff] [blame] | 1917 | PreprocessingRecord *PPRec = PP.getPreprocessingRecord(); |
| 1918 | if (PPRec) |
| 1919 | WritePreprocessorDetail(*PPRec); |
| 1920 | |
Chris Lattner | 7c5d24e | 2009-04-10 18:00:12 +0000 | [diff] [blame] | 1921 | RecordData Record; |
Chris Lattner | f04ad69 | 2009-04-10 17:16:57 +0000 | [diff] [blame] | 1922 | |
Chris Lattner | c1f9d82 | 2009-04-13 01:29:17 +0000 | [diff] [blame] | 1923 | // If the preprocessor __COUNTER__ value has been bumped, remember it. |
| 1924 | if (PP.getCounterValue() != 0) { |
| 1925 | Record.push_back(PP.getCounterValue()); |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 1926 | Stream.EmitRecord(PP_COUNTER_VALUE, Record); |
Chris Lattner | c1f9d82 | 2009-04-13 01:29:17 +0000 | [diff] [blame] | 1927 | Record.clear(); |
Douglas Gregor | 2eafc1b | 2009-04-26 00:07:37 +0000 | [diff] [blame] | 1928 | } |
| 1929 | |
| 1930 | // Enter the preprocessor block. |
Douglas Gregor | ecdcb88 | 2010-10-20 22:00:55 +0000 | [diff] [blame] | 1931 | Stream.EnterSubblock(PREPROCESSOR_BLOCK_ID, 3); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1932 | |
Sebastian Redl | 3397c55 | 2010-08-18 23:56:27 +0000 | [diff] [blame] | 1933 | // If the AST file contains __DATE__ or __TIME__ emit a warning about this. |
Douglas Gregor | 2eafc1b | 2009-04-26 00:07:37 +0000 | [diff] [blame] | 1934 | // FIXME: use diagnostics subsystem for localization etc. |
| 1935 | if (PP.SawDateOrTime()) |
| 1936 | fprintf(stderr, "warning: precompiled header used __DATE__ or __TIME__.\n"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1937 | |
Douglas Gregor | ecdcb88 | 2010-10-20 22:00:55 +0000 | [diff] [blame] | 1938 | |
Argyrios Kyrtzidis | 9317ab9 | 2013-03-22 21:12:57 +0000 | [diff] [blame] | 1939 | // Loop over all the macro directives that are live at the end of the file, |
Chris Lattner | 7c5d24e | 2009-04-10 18:00:12 +0000 | [diff] [blame] | 1940 | // emitting each to the PP section. |
Michael J. Spencer | 20249a1 | 2010-10-21 03:16:25 +0000 | [diff] [blame] | 1941 | |
Argyrios Kyrtzidis | 9317ab9 | 2013-03-22 21:12:57 +0000 | [diff] [blame] | 1942 | // Construct the list of macro directives that need to be serialized. |
Argyrios Kyrtzidis | 9818a1d | 2013-02-20 00:54:57 +0000 | [diff] [blame] | 1943 | SmallVector<std::pair<const IdentifierInfo *, MacroDirective *>, 2> |
Argyrios Kyrtzidis | 9317ab9 | 2013-03-22 21:12:57 +0000 | [diff] [blame] | 1944 | MacroDirectives; |
| 1945 | for (Preprocessor::macro_iterator |
| 1946 | I = PP.macro_begin(/*IncludeExternalMacros=*/false), |
| 1947 | E = PP.macro_end(/*IncludeExternalMacros=*/false); |
Chris Lattner | 7c5d24e | 2009-04-10 18:00:12 +0000 | [diff] [blame] | 1948 | I != E; ++I) { |
Argyrios Kyrtzidis | 9317ab9 | 2013-03-22 21:12:57 +0000 | [diff] [blame] | 1949 | MacroDirectives.push_back(std::make_pair(I->first, I->second)); |
Douglas Gregor | 9c73610 | 2011-02-10 18:20:09 +0000 | [diff] [blame] | 1950 | } |
Alexander Kornienko | 4d7e0ce | 2012-09-25 17:18:14 +0000 | [diff] [blame] | 1951 | |
Douglas Gregor | 9c73610 | 2011-02-10 18:20:09 +0000 | [diff] [blame] | 1952 | // Sort the set of macro definitions that need to be serialized by the |
| 1953 | // name of the macro, to provide a stable ordering. |
Argyrios Kyrtzidis | 9317ab9 | 2013-03-22 21:12:57 +0000 | [diff] [blame] | 1954 | llvm::array_pod_sort(MacroDirectives.begin(), MacroDirectives.end(), |
| 1955 | &compareMacroDirectives); |
| 1956 | |
Stephen Hines | 6bcf27b | 2014-05-29 04:14:42 -0700 | [diff] [blame^] | 1957 | llvm::OnDiskChainedHashTableGenerator<ASTMacroTableTrait> Generator; |
Argyrios Kyrtzidis | 9317ab9 | 2013-03-22 21:12:57 +0000 | [diff] [blame] | 1958 | |
| 1959 | // Emit the macro directives as a list and associate the offset with the |
| 1960 | // identifier they belong to. |
| 1961 | for (unsigned I = 0, N = MacroDirectives.size(); I != N; ++I) { |
| 1962 | const IdentifierInfo *Name = MacroDirectives[I].first; |
| 1963 | uint64_t MacroDirectiveOffset = Stream.GetCurrentBitNo(); |
| 1964 | MacroDirective *MD = MacroDirectives[I].second; |
| 1965 | |
| 1966 | // If the macro or identifier need no updates, don't write the macro history |
| 1967 | // for this one. |
Argyrios Kyrtzidis | c56fff7 | 2013-03-26 17:17:01 +0000 | [diff] [blame] | 1968 | // FIXME: Chain the macro history instead of re-writing it. |
| 1969 | if (MD->isFromPCH() && |
Argyrios Kyrtzidis | 9317ab9 | 2013-03-22 21:12:57 +0000 | [diff] [blame] | 1970 | Name->isFromAST() && !Name->hasChangedSinceDeserialization()) |
| 1971 | continue; |
| 1972 | |
| 1973 | // Emit the macro directives in reverse source order. |
| 1974 | for (; MD; MD = MD->getPrevious()) { |
| 1975 | if (shouldIgnoreMacro(MD, IsModule, PP)) |
| 1976 | continue; |
Argyrios Kyrtzidis | 9317ab9 | 2013-03-22 21:12:57 +0000 | [diff] [blame] | 1977 | |
Argyrios Kyrtzidis | 9317ab9 | 2013-03-22 21:12:57 +0000 | [diff] [blame] | 1978 | AddSourceLocation(MD->getLocation(), Record); |
Argyrios Kyrtzidis | c56fff7 | 2013-03-26 17:17:01 +0000 | [diff] [blame] | 1979 | Record.push_back(MD->getKind()); |
| 1980 | if (DefMacroDirective *DefMD = dyn_cast<DefMacroDirective>(MD)) { |
| 1981 | MacroID InfoID = getMacroRef(DefMD->getInfo(), Name); |
| 1982 | Record.push_back(InfoID); |
| 1983 | Record.push_back(DefMD->isImported()); |
| 1984 | Record.push_back(DefMD->isAmbiguous()); |
| 1985 | |
| 1986 | } else if (VisibilityMacroDirective * |
| 1987 | VisMD = dyn_cast<VisibilityMacroDirective>(MD)) { |
| 1988 | Record.push_back(VisMD->isPublic()); |
| 1989 | } |
Argyrios Kyrtzidis | 9317ab9 | 2013-03-22 21:12:57 +0000 | [diff] [blame] | 1990 | } |
| 1991 | if (Record.empty()) |
| 1992 | continue; |
| 1993 | |
| 1994 | Stream.EmitRecord(PP_MACRO_DIRECTIVE_HISTORY, Record); |
| 1995 | Record.clear(); |
| 1996 | |
| 1997 | IdentMacroDirectivesOffsetMap[Name] = MacroDirectiveOffset; |
| 1998 | |
| 1999 | IdentID NameID = getIdentifierRef(Name); |
| 2000 | ASTMacroTableTrait::Data data; |
| 2001 | data.MacroDirectivesOffset = MacroDirectiveOffset; |
| 2002 | Generator.insert(NameID, data); |
| 2003 | } |
Alexander Kornienko | 4d7e0ce | 2012-09-25 17:18:14 +0000 | [diff] [blame] | 2004 | |
Douglas Gregor | a8235d6 | 2012-10-09 23:05:51 +0000 | [diff] [blame] | 2005 | /// \brief Offsets of each of the macros into the bitstream, indexed by |
| 2006 | /// the local macro ID |
| 2007 | /// |
| 2008 | /// For each identifier that is associated with a macro, this map |
| 2009 | /// provides the offset into the bitstream where that macro is |
| 2010 | /// defined. |
| 2011 | std::vector<uint32_t> MacroOffsets; |
| 2012 | |
Argyrios Kyrtzidis | 9317ab9 | 2013-03-22 21:12:57 +0000 | [diff] [blame] | 2013 | for (unsigned I = 0, N = MacroInfosToEmit.size(); I != N; ++I) { |
| 2014 | const IdentifierInfo *Name = MacroInfosToEmit[I].Name; |
| 2015 | MacroInfo *MI = MacroInfosToEmit[I].MI; |
| 2016 | MacroID ID = MacroInfosToEmit[I].ID; |
Douglas Gregor | ee9b0ba | 2010-10-01 01:03:07 +0000 | [diff] [blame] | 2017 | |
Argyrios Kyrtzidis | 9317ab9 | 2013-03-22 21:12:57 +0000 | [diff] [blame] | 2018 | if (ID < FirstMacroID) { |
| 2019 | assert(0 && "Loaded MacroInfo entered MacroInfosToEmit ?"); |
| 2020 | continue; |
Chris Lattner | df961c2 | 2009-04-10 18:08:30 +0000 | [diff] [blame] | 2021 | } |
Argyrios Kyrtzidis | 9317ab9 | 2013-03-22 21:12:57 +0000 | [diff] [blame] | 2022 | |
| 2023 | // Record the local offset of this macro. |
| 2024 | unsigned Index = ID - FirstMacroID; |
| 2025 | if (Index == MacroOffsets.size()) |
| 2026 | MacroOffsets.push_back(Stream.GetCurrentBitNo()); |
| 2027 | else { |
| 2028 | if (Index > MacroOffsets.size()) |
| 2029 | MacroOffsets.resize(Index + 1); |
| 2030 | |
| 2031 | MacroOffsets[Index] = Stream.GetCurrentBitNo(); |
| 2032 | } |
| 2033 | |
| 2034 | AddIdentifierRef(Name, Record); |
| 2035 | Record.push_back(inferSubmoduleIDFromLocation(MI->getDefinitionLoc())); |
| 2036 | AddSourceLocation(MI->getDefinitionLoc(), Record); |
| 2037 | AddSourceLocation(MI->getDefinitionEndLoc(), Record); |
| 2038 | Record.push_back(MI->isUsed()); |
Stephen Hines | 6bcf27b | 2014-05-29 04:14:42 -0700 | [diff] [blame^] | 2039 | Record.push_back(MI->isUsedForHeaderGuard()); |
Argyrios Kyrtzidis | 9317ab9 | 2013-03-22 21:12:57 +0000 | [diff] [blame] | 2040 | unsigned Code; |
| 2041 | if (MI->isObjectLike()) { |
| 2042 | Code = PP_MACRO_OBJECT_LIKE; |
| 2043 | } else { |
| 2044 | Code = PP_MACRO_FUNCTION_LIKE; |
| 2045 | |
| 2046 | Record.push_back(MI->isC99Varargs()); |
| 2047 | Record.push_back(MI->isGNUVarargs()); |
| 2048 | Record.push_back(MI->hasCommaPasting()); |
| 2049 | Record.push_back(MI->getNumArgs()); |
| 2050 | for (MacroInfo::arg_iterator I = MI->arg_begin(), E = MI->arg_end(); |
| 2051 | I != E; ++I) |
| 2052 | AddIdentifierRef(*I, Record); |
| 2053 | } |
| 2054 | |
| 2055 | // If we have a detailed preprocessing record, record the macro definition |
| 2056 | // ID that corresponds to this macro. |
| 2057 | if (PPRec) |
| 2058 | Record.push_back(MacroDefinitions[PPRec->findMacroDefinition(MI)]); |
| 2059 | |
| 2060 | Stream.EmitRecord(Code, Record); |
| 2061 | Record.clear(); |
| 2062 | |
| 2063 | // Emit the tokens array. |
| 2064 | for (unsigned TokNo = 0, e = MI->getNumTokens(); TokNo != e; ++TokNo) { |
| 2065 | // Note that we know that the preprocessor does not have any annotation |
| 2066 | // tokens in it because they are created by the parser, and thus can't |
| 2067 | // be in a macro definition. |
| 2068 | const Token &Tok = MI->getReplacementToken(TokNo); |
John McCall | aeeacf7 | 2013-05-03 00:10:13 +0000 | [diff] [blame] | 2069 | AddToken(Tok, Record); |
Argyrios Kyrtzidis | 9317ab9 | 2013-03-22 21:12:57 +0000 | [diff] [blame] | 2070 | Stream.EmitRecord(PP_TOKEN, Record); |
| 2071 | Record.clear(); |
| 2072 | } |
| 2073 | ++NumMacros; |
Chris Lattner | 7c5d24e | 2009-04-10 18:00:12 +0000 | [diff] [blame] | 2074 | } |
Argyrios Kyrtzidis | 9317ab9 | 2013-03-22 21:12:57 +0000 | [diff] [blame] | 2075 | |
Douglas Gregor | 4800a5c | 2011-02-08 21:58:10 +0000 | [diff] [blame] | 2076 | Stream.ExitBlock(); |
Douglas Gregor | a8235d6 | 2012-10-09 23:05:51 +0000 | [diff] [blame] | 2077 | |
Argyrios Kyrtzidis | 9317ab9 | 2013-03-22 21:12:57 +0000 | [diff] [blame] | 2078 | // Create the on-disk hash table in a buffer. |
| 2079 | SmallString<4096> MacroTable; |
| 2080 | uint32_t BucketOffset; |
| 2081 | { |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 2082 | using namespace llvm::support; |
Argyrios Kyrtzidis | 9317ab9 | 2013-03-22 21:12:57 +0000 | [diff] [blame] | 2083 | llvm::raw_svector_ostream Out(MacroTable); |
| 2084 | // Make sure that no bucket is at offset 0 |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 2085 | endian::Writer<little>(Out).write<uint32_t>(0); |
Argyrios Kyrtzidis | 9317ab9 | 2013-03-22 21:12:57 +0000 | [diff] [blame] | 2086 | BucketOffset = Generator.Emit(Out); |
| 2087 | } |
| 2088 | |
| 2089 | // Write the macro table |
| 2090 | using namespace llvm; |
| 2091 | BitCodeAbbrev *Abbrev = new BitCodeAbbrev(); |
| 2092 | Abbrev->Add(BitCodeAbbrevOp(MACRO_TABLE)); |
| 2093 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); |
| 2094 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); |
| 2095 | unsigned MacroTableAbbrev = Stream.EmitAbbrev(Abbrev); |
| 2096 | |
| 2097 | Record.push_back(MACRO_TABLE); |
| 2098 | Record.push_back(BucketOffset); |
| 2099 | Stream.EmitRecordWithBlob(MacroTableAbbrev, Record, MacroTable.str()); |
| 2100 | Record.clear(); |
| 2101 | |
Douglas Gregor | a8235d6 | 2012-10-09 23:05:51 +0000 | [diff] [blame] | 2102 | // Write the offsets table for macro IDs. |
| 2103 | using namespace llvm; |
Argyrios Kyrtzidis | 9317ab9 | 2013-03-22 21:12:57 +0000 | [diff] [blame] | 2104 | Abbrev = new BitCodeAbbrev(); |
Douglas Gregor | a8235d6 | 2012-10-09 23:05:51 +0000 | [diff] [blame] | 2105 | Abbrev->Add(BitCodeAbbrevOp(MACRO_OFFSET)); |
| 2106 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // # of macros |
| 2107 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // first ID |
| 2108 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); |
| 2109 | |
| 2110 | unsigned MacroOffsetAbbrev = Stream.EmitAbbrev(Abbrev); |
| 2111 | Record.clear(); |
| 2112 | Record.push_back(MACRO_OFFSET); |
| 2113 | Record.push_back(MacroOffsets.size()); |
| 2114 | Record.push_back(FirstMacroID - NUM_PREDEF_MACRO_IDS); |
| 2115 | Stream.EmitRecordWithBlob(MacroOffsetAbbrev, Record, |
| 2116 | data(MacroOffsets)); |
Douglas Gregor | 4800a5c | 2011-02-08 21:58:10 +0000 | [diff] [blame] | 2117 | } |
| 2118 | |
| 2119 | void ASTWriter::WritePreprocessorDetail(PreprocessingRecord &PPRec) { |
Argyrios Kyrtzidis | b6441ef | 2011-09-19 20:40:42 +0000 | [diff] [blame] | 2120 | if (PPRec.local_begin() == PPRec.local_end()) |
Douglas Gregor | 4800a5c | 2011-02-08 21:58:10 +0000 | [diff] [blame] | 2121 | return; |
Argyrios Kyrtzidis | e24692b | 2011-09-15 18:02:56 +0000 | [diff] [blame] | 2122 | |
Argyrios Kyrtzidis | 2dbaca7 | 2011-09-19 20:40:25 +0000 | [diff] [blame] | 2123 | SmallVector<PPEntityOffset, 64> PreprocessedEntityOffsets; |
Argyrios Kyrtzidis | e24692b | 2011-09-15 18:02:56 +0000 | [diff] [blame] | 2124 | |
Douglas Gregor | 4800a5c | 2011-02-08 21:58:10 +0000 | [diff] [blame] | 2125 | // Enter the preprocessor block. |
| 2126 | Stream.EnterSubblock(PREPROCESSOR_DETAIL_BLOCK_ID, 3); |
Michael J. Spencer | 20249a1 | 2010-10-21 03:16:25 +0000 | [diff] [blame] | 2127 | |
Douglas Gregor | 6a5a23f | 2010-03-19 21:51:54 +0000 | [diff] [blame] | 2128 | // If the preprocessor has a preprocessing record, emit it. |
| 2129 | unsigned NumPreprocessingRecords = 0; |
Douglas Gregor | 4800a5c | 2011-02-08 21:58:10 +0000 | [diff] [blame] | 2130 | using namespace llvm; |
| 2131 | |
| 2132 | // Set up the abbreviation for |
| 2133 | unsigned InclusionAbbrev = 0; |
| 2134 | { |
| 2135 | BitCodeAbbrev *Abbrev = new BitCodeAbbrev(); |
| 2136 | Abbrev->Add(BitCodeAbbrevOp(PPD_INCLUSION_DIRECTIVE)); |
Douglas Gregor | 4800a5c | 2011-02-08 21:58:10 +0000 | [diff] [blame] | 2137 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // filename length |
| 2138 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // in quotes |
| 2139 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 2)); // kind |
Argyrios Kyrtzidis | 8dd927c | 2012-10-02 16:10:46 +0000 | [diff] [blame] | 2140 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // imported module |
Douglas Gregor | 4800a5c | 2011-02-08 21:58:10 +0000 | [diff] [blame] | 2141 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); |
| 2142 | InclusionAbbrev = Stream.EmitAbbrev(Abbrev); |
| 2143 | } |
| 2144 | |
Douglas Gregor | 272b6bc | 2011-08-04 18:56:47 +0000 | [diff] [blame] | 2145 | unsigned FirstPreprocessorEntityID |
| 2146 | = (Chain ? PPRec.getNumLoadedPreprocessedEntities() : 0) |
| 2147 | + NUM_PREDEF_PP_ENTITY_IDS; |
| 2148 | unsigned NextPreprocessorEntityID = FirstPreprocessorEntityID; |
Douglas Gregor | 4800a5c | 2011-02-08 21:58:10 +0000 | [diff] [blame] | 2149 | RecordData Record; |
Argyrios Kyrtzidis | b6441ef | 2011-09-19 20:40:42 +0000 | [diff] [blame] | 2150 | for (PreprocessingRecord::iterator E = PPRec.local_begin(), |
| 2151 | EEnd = PPRec.local_end(); |
Douglas Gregor | 7338a92 | 2011-08-04 17:06:18 +0000 | [diff] [blame] | 2152 | E != EEnd; |
| 2153 | (void)++E, ++NumPreprocessingRecords, ++NextPreprocessorEntityID) { |
Douglas Gregor | 4800a5c | 2011-02-08 21:58:10 +0000 | [diff] [blame] | 2154 | Record.clear(); |
Michael J. Spencer | 20249a1 | 2010-10-21 03:16:25 +0000 | [diff] [blame] | 2155 | |
Argyrios Kyrtzidis | 2dbaca7 | 2011-09-19 20:40:25 +0000 | [diff] [blame] | 2156 | PreprocessedEntityOffsets.push_back(PPEntityOffset((*E)->getSourceRange(), |
| 2157 | Stream.GetCurrentBitNo())); |
Argyrios Kyrtzidis | e24692b | 2011-09-15 18:02:56 +0000 | [diff] [blame] | 2158 | |
Douglas Gregor | 4800a5c | 2011-02-08 21:58:10 +0000 | [diff] [blame] | 2159 | if (MacroDefinition *MD = dyn_cast<MacroDefinition>(*E)) { |
Argyrios Kyrtzidis | e24692b | 2011-09-15 18:02:56 +0000 | [diff] [blame] | 2160 | // Record this macro definition's ID. |
| 2161 | MacroDefinitions[MD] = NextPreprocessorEntityID; |
Douglas Gregor | 4800a5c | 2011-02-08 21:58:10 +0000 | [diff] [blame] | 2162 | |
Douglas Gregor | 4800a5c | 2011-02-08 21:58:10 +0000 | [diff] [blame] | 2163 | AddIdentifierRef(MD->getName(), Record); |
Douglas Gregor | 4800a5c | 2011-02-08 21:58:10 +0000 | [diff] [blame] | 2164 | Stream.EmitRecord(PPD_MACRO_DEFINITION, Record); |
| 2165 | continue; |
Douglas Gregor | 6a5a23f | 2010-03-19 21:51:54 +0000 | [diff] [blame] | 2166 | } |
Michael J. Spencer | 20249a1 | 2010-10-21 03:16:25 +0000 | [diff] [blame] | 2167 | |
Chandler Carruth | 9e5bb85 | 2011-07-14 08:20:46 +0000 | [diff] [blame] | 2168 | if (MacroExpansion *ME = dyn_cast<MacroExpansion>(*E)) { |
Argyrios Kyrtzidis | 8f7c540 | 2011-09-08 17:18:41 +0000 | [diff] [blame] | 2169 | Record.push_back(ME->isBuiltinMacro()); |
| 2170 | if (ME->isBuiltinMacro()) |
| 2171 | AddIdentifierRef(ME->getName(), Record); |
| 2172 | else |
Argyrios Kyrtzidis | e24692b | 2011-09-15 18:02:56 +0000 | [diff] [blame] | 2173 | Record.push_back(MacroDefinitions[ME->getDefinition()]); |
Chandler Carruth | f70d12d | 2011-07-15 07:25:21 +0000 | [diff] [blame] | 2174 | Stream.EmitRecord(PPD_MACRO_EXPANSION, Record); |
Douglas Gregor | 4800a5c | 2011-02-08 21:58:10 +0000 | [diff] [blame] | 2175 | continue; |
| 2176 | } |
| 2177 | |
| 2178 | if (InclusionDirective *ID = dyn_cast<InclusionDirective>(*E)) { |
| 2179 | Record.push_back(PPD_INCLUSION_DIRECTIVE); |
Douglas Gregor | 4800a5c | 2011-02-08 21:58:10 +0000 | [diff] [blame] | 2180 | Record.push_back(ID->getFileName().size()); |
| 2181 | Record.push_back(ID->wasInQuotes()); |
| 2182 | Record.push_back(static_cast<unsigned>(ID->getKind())); |
Argyrios Kyrtzidis | 8dd927c | 2012-10-02 16:10:46 +0000 | [diff] [blame] | 2183 | Record.push_back(ID->importedModule()); |
Dylan Noblesmith | f7ccbad | 2012-02-05 02:13:05 +0000 | [diff] [blame] | 2184 | SmallString<64> Buffer; |
Douglas Gregor | 4800a5c | 2011-02-08 21:58:10 +0000 | [diff] [blame] | 2185 | Buffer += ID->getFileName(); |
Argyrios Kyrtzidis | 29f98b4 | 2012-03-08 01:08:28 +0000 | [diff] [blame] | 2186 | // Check that the FileEntry is not null because it was not resolved and |
| 2187 | // we create a PCH even with compiler errors. |
| 2188 | if (ID->getFile()) |
| 2189 | Buffer += ID->getFile()->getName(); |
Douglas Gregor | 4800a5c | 2011-02-08 21:58:10 +0000 | [diff] [blame] | 2190 | Stream.EmitRecordWithBlob(InclusionAbbrev, Record, Buffer); |
| 2191 | continue; |
| 2192 | } |
| 2193 | |
| 2194 | llvm_unreachable("Unhandled PreprocessedEntity in ASTWriter"); |
| 2195 | } |
Douglas Gregor | c9490c0 | 2009-04-16 22:23:12 +0000 | [diff] [blame] | 2196 | Stream.ExitBlock(); |
Michael J. Spencer | 20249a1 | 2010-10-21 03:16:25 +0000 | [diff] [blame] | 2197 | |
Douglas Gregor | 6a5a23f | 2010-03-19 21:51:54 +0000 | [diff] [blame] | 2198 | // Write the offsets table for the preprocessing record. |
| 2199 | if (NumPreprocessingRecords > 0) { |
Argyrios Kyrtzidis | e24692b | 2011-09-15 18:02:56 +0000 | [diff] [blame] | 2200 | assert(PreprocessedEntityOffsets.size() == NumPreprocessingRecords); |
| 2201 | |
Douglas Gregor | 6a5a23f | 2010-03-19 21:51:54 +0000 | [diff] [blame] | 2202 | // Write the offsets table for identifier IDs. |
| 2203 | using namespace llvm; |
| 2204 | BitCodeAbbrev *Abbrev = new BitCodeAbbrev(); |
Argyrios Kyrtzidis | e24692b | 2011-09-15 18:02:56 +0000 | [diff] [blame] | 2205 | Abbrev->Add(BitCodeAbbrevOp(PPD_ENTITIES_OFFSETS)); |
Douglas Gregor | 272b6bc | 2011-08-04 18:56:47 +0000 | [diff] [blame] | 2206 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // first pp entity |
Douglas Gregor | 6a5a23f | 2010-03-19 21:51:54 +0000 | [diff] [blame] | 2207 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); |
Argyrios Kyrtzidis | e24692b | 2011-09-15 18:02:56 +0000 | [diff] [blame] | 2208 | unsigned PPEOffsetAbbrev = Stream.EmitAbbrev(Abbrev); |
Michael J. Spencer | 20249a1 | 2010-10-21 03:16:25 +0000 | [diff] [blame] | 2209 | |
Douglas Gregor | 6a5a23f | 2010-03-19 21:51:54 +0000 | [diff] [blame] | 2210 | Record.clear(); |
Argyrios Kyrtzidis | e24692b | 2011-09-15 18:02:56 +0000 | [diff] [blame] | 2211 | Record.push_back(PPD_ENTITIES_OFFSETS); |
Douglas Gregor | 272b6bc | 2011-08-04 18:56:47 +0000 | [diff] [blame] | 2212 | Record.push_back(FirstPreprocessorEntityID - NUM_PREDEF_PP_ENTITY_IDS); |
Argyrios Kyrtzidis | e24692b | 2011-09-15 18:02:56 +0000 | [diff] [blame] | 2213 | Stream.EmitRecordWithBlob(PPEOffsetAbbrev, Record, |
| 2214 | data(PreprocessedEntityOffsets)); |
Douglas Gregor | 6a5a23f | 2010-03-19 21:51:54 +0000 | [diff] [blame] | 2215 | } |
Chris Lattner | 0b1fb98 | 2009-04-10 17:15:23 +0000 | [diff] [blame] | 2216 | } |
| 2217 | |
Douglas Gregor | e209e50 | 2011-12-06 01:10:29 +0000 | [diff] [blame] | 2218 | unsigned ASTWriter::getSubmoduleID(Module *Mod) { |
| 2219 | llvm::DenseMap<Module *, unsigned>::iterator Known = SubmoduleIDs.find(Mod); |
| 2220 | if (Known != SubmoduleIDs.end()) |
| 2221 | return Known->second; |
| 2222 | |
| 2223 | return SubmoduleIDs[Mod] = NextSubmoduleID++; |
| 2224 | } |
| 2225 | |
Argyrios Kyrtzidis | 55ea75b | 2013-03-13 21:13:51 +0000 | [diff] [blame] | 2226 | unsigned ASTWriter::getExistingSubmoduleID(Module *Mod) const { |
| 2227 | if (!Mod) |
| 2228 | return 0; |
| 2229 | |
| 2230 | llvm::DenseMap<Module *, unsigned>::const_iterator |
| 2231 | Known = SubmoduleIDs.find(Mod); |
| 2232 | if (Known != SubmoduleIDs.end()) |
| 2233 | return Known->second; |
| 2234 | |
| 2235 | return 0; |
| 2236 | } |
| 2237 | |
Douglas Gregor | 26ced12 | 2011-12-01 00:59:36 +0000 | [diff] [blame] | 2238 | /// \brief Compute the number of modules within the given tree (including the |
| 2239 | /// given module). |
| 2240 | static unsigned getNumberOfModules(Module *Mod) { |
| 2241 | unsigned ChildModules = 0; |
Douglas Gregor | b7a7819 | 2012-01-04 23:32:19 +0000 | [diff] [blame] | 2242 | for (Module::submodule_iterator Sub = Mod->submodule_begin(), |
| 2243 | SubEnd = Mod->submodule_end(); |
Douglas Gregor | 26ced12 | 2011-12-01 00:59:36 +0000 | [diff] [blame] | 2244 | Sub != SubEnd; ++Sub) |
Douglas Gregor | b7a7819 | 2012-01-04 23:32:19 +0000 | [diff] [blame] | 2245 | ChildModules += getNumberOfModules(*Sub); |
Douglas Gregor | 26ced12 | 2011-12-01 00:59:36 +0000 | [diff] [blame] | 2246 | |
| 2247 | return ChildModules + 1; |
| 2248 | } |
| 2249 | |
Douglas Gregor | 1a4761e | 2011-11-30 23:21:26 +0000 | [diff] [blame] | 2250 | void ASTWriter::WriteSubmodules(Module *WritingModule) { |
Douglas Gregor | 4bc8738d | 2011-12-05 16:35:23 +0000 | [diff] [blame] | 2251 | // Determine the dependencies of our module and each of it's submodules. |
Douglas Gregor | 5598868 | 2011-12-05 16:33:54 +0000 | [diff] [blame] | 2252 | // FIXME: This feels like it belongs somewhere else, but there are no |
| 2253 | // other consumers of this information. |
| 2254 | SourceManager &SrcMgr = PP->getSourceManager(); |
| 2255 | ModuleMap &ModMap = PP->getHeaderSearchInfo().getModuleMap(); |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 2256 | for (const auto *I : Context->local_imports()) { |
Douglas Gregor | 5598868 | 2011-12-05 16:33:54 +0000 | [diff] [blame] | 2257 | if (Module *ImportedFrom |
| 2258 | = ModMap.inferModuleFromLocation(FullSourceLoc(I->getLocation(), |
| 2259 | SrcMgr))) { |
| 2260 | ImportedFrom->Imports.push_back(I->getImportedModule()); |
| 2261 | } |
| 2262 | } |
| 2263 | |
Douglas Gregor | 392ed2b | 2011-11-30 17:33:56 +0000 | [diff] [blame] | 2264 | // Enter the submodule description block. |
| 2265 | Stream.EnterSubblock(SUBMODULE_BLOCK_ID, NUM_ALLOWED_ABBREVS_SIZE); |
| 2266 | |
| 2267 | // Write the abbreviations needed for the submodules block. |
| 2268 | using namespace llvm; |
| 2269 | BitCodeAbbrev *Abbrev = new BitCodeAbbrev(); |
| 2270 | Abbrev->Add(BitCodeAbbrevOp(SUBMODULE_DEFINITION)); |
Douglas Gregor | e209e50 | 2011-12-06 01:10:29 +0000 | [diff] [blame] | 2271 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // ID |
Douglas Gregor | 392ed2b | 2011-11-30 17:33:56 +0000 | [diff] [blame] | 2272 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // Parent |
| 2273 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // IsFramework |
| 2274 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // IsExplicit |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 2275 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // IsSystem |
| 2276 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // IsExternC |
Douglas Gregor | a1f1fad | 2012-01-27 19:52:33 +0000 | [diff] [blame] | 2277 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // InferSubmodules... |
Douglas Gregor | 1e12368 | 2011-12-05 22:27:44 +0000 | [diff] [blame] | 2278 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // InferExplicit... |
Douglas Gregor | 1e12368 | 2011-12-05 22:27:44 +0000 | [diff] [blame] | 2279 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // InferExportWild... |
Douglas Gregor | 63a7268 | 2013-03-20 00:22:05 +0000 | [diff] [blame] | 2280 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // ConfigMacrosExh... |
Douglas Gregor | 392ed2b | 2011-11-30 17:33:56 +0000 | [diff] [blame] | 2281 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // Name |
| 2282 | unsigned DefinitionAbbrev = Stream.EmitAbbrev(Abbrev); |
| 2283 | |
| 2284 | Abbrev = new BitCodeAbbrev(); |
Douglas Gregor | 77d029f | 2011-12-08 19:11:24 +0000 | [diff] [blame] | 2285 | Abbrev->Add(BitCodeAbbrevOp(SUBMODULE_UMBRELLA_HEADER)); |
Douglas Gregor | 392ed2b | 2011-11-30 17:33:56 +0000 | [diff] [blame] | 2286 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // Name |
| 2287 | unsigned UmbrellaAbbrev = Stream.EmitAbbrev(Abbrev); |
| 2288 | |
| 2289 | Abbrev = new BitCodeAbbrev(); |
| 2290 | Abbrev->Add(BitCodeAbbrevOp(SUBMODULE_HEADER)); |
| 2291 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // Name |
| 2292 | unsigned HeaderAbbrev = Stream.EmitAbbrev(Abbrev); |
Douglas Gregor | 77d029f | 2011-12-08 19:11:24 +0000 | [diff] [blame] | 2293 | |
| 2294 | Abbrev = new BitCodeAbbrev(); |
Argyrios Kyrtzidis | c7782d9 | 2012-10-05 00:22:33 +0000 | [diff] [blame] | 2295 | Abbrev->Add(BitCodeAbbrevOp(SUBMODULE_TOPHEADER)); |
| 2296 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // Name |
| 2297 | unsigned TopHeaderAbbrev = Stream.EmitAbbrev(Abbrev); |
| 2298 | |
| 2299 | Abbrev = new BitCodeAbbrev(); |
Douglas Gregor | 77d029f | 2011-12-08 19:11:24 +0000 | [diff] [blame] | 2300 | Abbrev->Add(BitCodeAbbrevOp(SUBMODULE_UMBRELLA_DIR)); |
| 2301 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // Name |
| 2302 | unsigned UmbrellaDirAbbrev = Stream.EmitAbbrev(Abbrev); |
| 2303 | |
Douglas Gregor | 51f564f | 2011-12-31 04:05:44 +0000 | [diff] [blame] | 2304 | Abbrev = new BitCodeAbbrev(); |
| 2305 | Abbrev->Add(BitCodeAbbrevOp(SUBMODULE_REQUIRES)); |
Richard Smith | 5794b53 | 2013-10-28 22:18:19 +0000 | [diff] [blame] | 2306 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // State |
| 2307 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // Feature |
Douglas Gregor | 51f564f | 2011-12-31 04:05:44 +0000 | [diff] [blame] | 2308 | unsigned RequiresAbbrev = Stream.EmitAbbrev(Abbrev); |
| 2309 | |
Douglas Gregor | 2b49d1f | 2012-10-15 06:28:11 +0000 | [diff] [blame] | 2310 | Abbrev = new BitCodeAbbrev(); |
| 2311 | Abbrev->Add(BitCodeAbbrevOp(SUBMODULE_EXCLUDED_HEADER)); |
| 2312 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // Name |
| 2313 | unsigned ExcludedHeaderAbbrev = Stream.EmitAbbrev(Abbrev); |
| 2314 | |
Douglas Gregor | b6cbe51 | 2013-01-14 17:21:00 +0000 | [diff] [blame] | 2315 | Abbrev = new BitCodeAbbrev(); |
Lawrence Crowl | bc3f628 | 2013-06-20 21:14:14 +0000 | [diff] [blame] | 2316 | Abbrev->Add(BitCodeAbbrevOp(SUBMODULE_PRIVATE_HEADER)); |
| 2317 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // Name |
| 2318 | unsigned PrivateHeaderAbbrev = Stream.EmitAbbrev(Abbrev); |
| 2319 | |
| 2320 | Abbrev = new BitCodeAbbrev(); |
Douglas Gregor | b6cbe51 | 2013-01-14 17:21:00 +0000 | [diff] [blame] | 2321 | Abbrev->Add(BitCodeAbbrevOp(SUBMODULE_LINK_LIBRARY)); |
| 2322 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // IsFramework |
| 2323 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // Name |
| 2324 | unsigned LinkLibraryAbbrev = Stream.EmitAbbrev(Abbrev); |
| 2325 | |
Douglas Gregor | 63a7268 | 2013-03-20 00:22:05 +0000 | [diff] [blame] | 2326 | Abbrev = new BitCodeAbbrev(); |
| 2327 | Abbrev->Add(BitCodeAbbrevOp(SUBMODULE_CONFIG_MACRO)); |
| 2328 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // Macro name |
| 2329 | unsigned ConfigMacroAbbrev = Stream.EmitAbbrev(Abbrev); |
| 2330 | |
Douglas Gregor | 906d66a | 2013-03-20 21:10:35 +0000 | [diff] [blame] | 2331 | Abbrev = new BitCodeAbbrev(); |
| 2332 | Abbrev->Add(BitCodeAbbrevOp(SUBMODULE_CONFLICT)); |
| 2333 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // Other module |
| 2334 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // Message |
| 2335 | unsigned ConflictAbbrev = Stream.EmitAbbrev(Abbrev); |
| 2336 | |
Douglas Gregor | 26ced12 | 2011-12-01 00:59:36 +0000 | [diff] [blame] | 2337 | // Write the submodule metadata block. |
| 2338 | RecordData Record; |
| 2339 | Record.push_back(getNumberOfModules(WritingModule)); |
| 2340 | Record.push_back(FirstSubmoduleID - NUM_PREDEF_SUBMODULE_IDS); |
| 2341 | Stream.EmitRecord(SUBMODULE_METADATA, Record); |
| 2342 | |
Douglas Gregor | 392ed2b | 2011-11-30 17:33:56 +0000 | [diff] [blame] | 2343 | // Write all of the submodules. |
Douglas Gregor | 1a4761e | 2011-11-30 23:21:26 +0000 | [diff] [blame] | 2344 | std::queue<Module *> Q; |
Douglas Gregor | 392ed2b | 2011-11-30 17:33:56 +0000 | [diff] [blame] | 2345 | Q.push(WritingModule); |
Douglas Gregor | 392ed2b | 2011-11-30 17:33:56 +0000 | [diff] [blame] | 2346 | while (!Q.empty()) { |
Douglas Gregor | 1a4761e | 2011-11-30 23:21:26 +0000 | [diff] [blame] | 2347 | Module *Mod = Q.front(); |
Douglas Gregor | 392ed2b | 2011-11-30 17:33:56 +0000 | [diff] [blame] | 2348 | Q.pop(); |
Douglas Gregor | e209e50 | 2011-12-06 01:10:29 +0000 | [diff] [blame] | 2349 | unsigned ID = getSubmoduleID(Mod); |
Douglas Gregor | 392ed2b | 2011-11-30 17:33:56 +0000 | [diff] [blame] | 2350 | |
| 2351 | // Emit the definition of the block. |
| 2352 | Record.clear(); |
| 2353 | Record.push_back(SUBMODULE_DEFINITION); |
Douglas Gregor | e209e50 | 2011-12-06 01:10:29 +0000 | [diff] [blame] | 2354 | Record.push_back(ID); |
Douglas Gregor | 392ed2b | 2011-11-30 17:33:56 +0000 | [diff] [blame] | 2355 | if (Mod->Parent) { |
| 2356 | assert(SubmoduleIDs[Mod->Parent] && "Submodule parent not written?"); |
| 2357 | Record.push_back(SubmoduleIDs[Mod->Parent]); |
| 2358 | } else { |
| 2359 | Record.push_back(0); |
| 2360 | } |
| 2361 | Record.push_back(Mod->IsFramework); |
| 2362 | Record.push_back(Mod->IsExplicit); |
Douglas Gregor | a1f1fad | 2012-01-27 19:52:33 +0000 | [diff] [blame] | 2363 | Record.push_back(Mod->IsSystem); |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 2364 | Record.push_back(Mod->IsExternC); |
Douglas Gregor | 1e12368 | 2011-12-05 22:27:44 +0000 | [diff] [blame] | 2365 | Record.push_back(Mod->InferSubmodules); |
| 2366 | Record.push_back(Mod->InferExplicitSubmodules); |
| 2367 | Record.push_back(Mod->InferExportWildcard); |
Douglas Gregor | 63a7268 | 2013-03-20 00:22:05 +0000 | [diff] [blame] | 2368 | Record.push_back(Mod->ConfigMacrosExhaustive); |
Douglas Gregor | 392ed2b | 2011-11-30 17:33:56 +0000 | [diff] [blame] | 2369 | Stream.EmitRecordWithBlob(DefinitionAbbrev, Record, Mod->Name); |
| 2370 | |
Douglas Gregor | 51f564f | 2011-12-31 04:05:44 +0000 | [diff] [blame] | 2371 | // Emit the requirements. |
Richard Smith | 5794b53 | 2013-10-28 22:18:19 +0000 | [diff] [blame] | 2372 | for (unsigned I = 0, N = Mod->Requirements.size(); I != N; ++I) { |
Douglas Gregor | 51f564f | 2011-12-31 04:05:44 +0000 | [diff] [blame] | 2373 | Record.clear(); |
| 2374 | Record.push_back(SUBMODULE_REQUIRES); |
Richard Smith | 5794b53 | 2013-10-28 22:18:19 +0000 | [diff] [blame] | 2375 | Record.push_back(Mod->Requirements[I].second); |
Douglas Gregor | 51f564f | 2011-12-31 04:05:44 +0000 | [diff] [blame] | 2376 | Stream.EmitRecordWithBlob(RequiresAbbrev, Record, |
Richard Smith | 5794b53 | 2013-10-28 22:18:19 +0000 | [diff] [blame] | 2377 | Mod->Requirements[I].first); |
Douglas Gregor | 51f564f | 2011-12-31 04:05:44 +0000 | [diff] [blame] | 2378 | } |
| 2379 | |
Douglas Gregor | 392ed2b | 2011-11-30 17:33:56 +0000 | [diff] [blame] | 2380 | // Emit the umbrella header, if there is one. |
Douglas Gregor | 10694ce | 2011-12-08 17:39:04 +0000 | [diff] [blame] | 2381 | if (const FileEntry *UmbrellaHeader = Mod->getUmbrellaHeader()) { |
Douglas Gregor | 392ed2b | 2011-11-30 17:33:56 +0000 | [diff] [blame] | 2382 | Record.clear(); |
Douglas Gregor | 77d029f | 2011-12-08 19:11:24 +0000 | [diff] [blame] | 2383 | Record.push_back(SUBMODULE_UMBRELLA_HEADER); |
Douglas Gregor | 392ed2b | 2011-11-30 17:33:56 +0000 | [diff] [blame] | 2384 | Stream.EmitRecordWithBlob(UmbrellaAbbrev, Record, |
Douglas Gregor | 10694ce | 2011-12-08 17:39:04 +0000 | [diff] [blame] | 2385 | UmbrellaHeader->getName()); |
Douglas Gregor | 77d029f | 2011-12-08 19:11:24 +0000 | [diff] [blame] | 2386 | } else if (const DirectoryEntry *UmbrellaDir = Mod->getUmbrellaDir()) { |
| 2387 | Record.clear(); |
| 2388 | Record.push_back(SUBMODULE_UMBRELLA_DIR); |
| 2389 | Stream.EmitRecordWithBlob(UmbrellaDirAbbrev, Record, |
| 2390 | UmbrellaDir->getName()); |
Douglas Gregor | 392ed2b | 2011-11-30 17:33:56 +0000 | [diff] [blame] | 2391 | } |
| 2392 | |
| 2393 | // Emit the headers. |
Lawrence Crowl | bc3f628 | 2013-06-20 21:14:14 +0000 | [diff] [blame] | 2394 | for (unsigned I = 0, N = Mod->NormalHeaders.size(); I != N; ++I) { |
Douglas Gregor | 392ed2b | 2011-11-30 17:33:56 +0000 | [diff] [blame] | 2395 | Record.clear(); |
| 2396 | Record.push_back(SUBMODULE_HEADER); |
| 2397 | Stream.EmitRecordWithBlob(HeaderAbbrev, Record, |
Lawrence Crowl | bc3f628 | 2013-06-20 21:14:14 +0000 | [diff] [blame] | 2398 | Mod->NormalHeaders[I]->getName()); |
Douglas Gregor | 392ed2b | 2011-11-30 17:33:56 +0000 | [diff] [blame] | 2399 | } |
Douglas Gregor | 2b49d1f | 2012-10-15 06:28:11 +0000 | [diff] [blame] | 2400 | // Emit the excluded headers. |
| 2401 | for (unsigned I = 0, N = Mod->ExcludedHeaders.size(); I != N; ++I) { |
| 2402 | Record.clear(); |
| 2403 | Record.push_back(SUBMODULE_EXCLUDED_HEADER); |
| 2404 | Stream.EmitRecordWithBlob(ExcludedHeaderAbbrev, Record, |
| 2405 | Mod->ExcludedHeaders[I]->getName()); |
| 2406 | } |
Lawrence Crowl | bc3f628 | 2013-06-20 21:14:14 +0000 | [diff] [blame] | 2407 | // Emit the private headers. |
| 2408 | for (unsigned I = 0, N = Mod->PrivateHeaders.size(); I != N; ++I) { |
| 2409 | Record.clear(); |
| 2410 | Record.push_back(SUBMODULE_PRIVATE_HEADER); |
| 2411 | Stream.EmitRecordWithBlob(PrivateHeaderAbbrev, Record, |
| 2412 | Mod->PrivateHeaders[I]->getName()); |
| 2413 | } |
Argyrios Kyrtzidis | c1d2239 | 2013-03-13 21:13:43 +0000 | [diff] [blame] | 2414 | ArrayRef<const FileEntry *> |
| 2415 | TopHeaders = Mod->getTopHeaders(PP->getFileManager()); |
| 2416 | for (unsigned I = 0, N = TopHeaders.size(); I != N; ++I) { |
Argyrios Kyrtzidis | c7782d9 | 2012-10-05 00:22:33 +0000 | [diff] [blame] | 2417 | Record.clear(); |
| 2418 | Record.push_back(SUBMODULE_TOPHEADER); |
| 2419 | Stream.EmitRecordWithBlob(TopHeaderAbbrev, Record, |
Argyrios Kyrtzidis | c1d2239 | 2013-03-13 21:13:43 +0000 | [diff] [blame] | 2420 | TopHeaders[I]->getName()); |
Argyrios Kyrtzidis | c7782d9 | 2012-10-05 00:22:33 +0000 | [diff] [blame] | 2421 | } |
Douglas Gregor | 5598868 | 2011-12-05 16:33:54 +0000 | [diff] [blame] | 2422 | |
| 2423 | // Emit the imports. |
| 2424 | if (!Mod->Imports.empty()) { |
| 2425 | Record.clear(); |
| 2426 | for (unsigned I = 0, N = Mod->Imports.size(); I != N; ++I) { |
Douglas Gregor | bab9f4a | 2011-12-12 23:17:57 +0000 | [diff] [blame] | 2427 | unsigned ImportedID = getSubmoduleID(Mod->Imports[I]); |
Douglas Gregor | 5598868 | 2011-12-05 16:33:54 +0000 | [diff] [blame] | 2428 | assert(ImportedID && "Unknown submodule!"); |
| 2429 | Record.push_back(ImportedID); |
| 2430 | } |
| 2431 | Stream.EmitRecord(SUBMODULE_IMPORTS, Record); |
| 2432 | } |
| 2433 | |
Douglas Gregor | af13bfc | 2011-12-02 18:58:38 +0000 | [diff] [blame] | 2434 | // Emit the exports. |
| 2435 | if (!Mod->Exports.empty()) { |
| 2436 | Record.clear(); |
| 2437 | for (unsigned I = 0, N = Mod->Exports.size(); I != N; ++I) { |
Douglas Gregor | bab9f4a | 2011-12-12 23:17:57 +0000 | [diff] [blame] | 2438 | if (Module *Exported = Mod->Exports[I].getPointer()) { |
| 2439 | unsigned ExportedID = SubmoduleIDs[Exported]; |
| 2440 | assert(ExportedID > 0 && "Unknown submodule ID?"); |
| 2441 | Record.push_back(ExportedID); |
| 2442 | } else { |
| 2443 | Record.push_back(0); |
| 2444 | } |
| 2445 | |
Douglas Gregor | af13bfc | 2011-12-02 18:58:38 +0000 | [diff] [blame] | 2446 | Record.push_back(Mod->Exports[I].getInt()); |
| 2447 | } |
| 2448 | Stream.EmitRecord(SUBMODULE_EXPORTS, Record); |
| 2449 | } |
Douglas Gregor | b6cbe51 | 2013-01-14 17:21:00 +0000 | [diff] [blame] | 2450 | |
Daniel Jasper | ddd2dfc | 2013-09-24 09:14:14 +0000 | [diff] [blame] | 2451 | //FIXME: How do we emit the 'use'd modules? They may not be submodules. |
| 2452 | // Might be unnecessary as use declarations are only used to build the |
| 2453 | // module itself. |
| 2454 | |
Douglas Gregor | b6cbe51 | 2013-01-14 17:21:00 +0000 | [diff] [blame] | 2455 | // Emit the link libraries. |
| 2456 | for (unsigned I = 0, N = Mod->LinkLibraries.size(); I != N; ++I) { |
| 2457 | Record.clear(); |
| 2458 | Record.push_back(SUBMODULE_LINK_LIBRARY); |
| 2459 | Record.push_back(Mod->LinkLibraries[I].IsFramework); |
| 2460 | Stream.EmitRecordWithBlob(LinkLibraryAbbrev, Record, |
| 2461 | Mod->LinkLibraries[I].Library); |
| 2462 | } |
| 2463 | |
Douglas Gregor | 906d66a | 2013-03-20 21:10:35 +0000 | [diff] [blame] | 2464 | // Emit the conflicts. |
| 2465 | for (unsigned I = 0, N = Mod->Conflicts.size(); I != N; ++I) { |
| 2466 | Record.clear(); |
| 2467 | Record.push_back(SUBMODULE_CONFLICT); |
| 2468 | unsigned OtherID = getSubmoduleID(Mod->Conflicts[I].Other); |
| 2469 | assert(OtherID && "Unknown submodule!"); |
| 2470 | Record.push_back(OtherID); |
| 2471 | Stream.EmitRecordWithBlob(ConflictAbbrev, Record, |
| 2472 | Mod->Conflicts[I].Message); |
| 2473 | } |
| 2474 | |
Douglas Gregor | 63a7268 | 2013-03-20 00:22:05 +0000 | [diff] [blame] | 2475 | // Emit the configuration macros. |
| 2476 | for (unsigned I = 0, N = Mod->ConfigMacros.size(); I != N; ++I) { |
| 2477 | Record.clear(); |
| 2478 | Record.push_back(SUBMODULE_CONFIG_MACRO); |
| 2479 | Stream.EmitRecordWithBlob(ConfigMacroAbbrev, Record, |
| 2480 | Mod->ConfigMacros[I]); |
| 2481 | } |
| 2482 | |
Douglas Gregor | 392ed2b | 2011-11-30 17:33:56 +0000 | [diff] [blame] | 2483 | // Queue up the submodules of this module. |
Douglas Gregor | b7a7819 | 2012-01-04 23:32:19 +0000 | [diff] [blame] | 2484 | for (Module::submodule_iterator Sub = Mod->submodule_begin(), |
| 2485 | SubEnd = Mod->submodule_end(); |
Douglas Gregor | 392ed2b | 2011-11-30 17:33:56 +0000 | [diff] [blame] | 2486 | Sub != SubEnd; ++Sub) |
Douglas Gregor | b7a7819 | 2012-01-04 23:32:19 +0000 | [diff] [blame] | 2487 | Q.push(*Sub); |
Douglas Gregor | 392ed2b | 2011-11-30 17:33:56 +0000 | [diff] [blame] | 2488 | } |
| 2489 | |
| 2490 | Stream.ExitBlock(); |
Douglas Gregor | e209e50 | 2011-12-06 01:10:29 +0000 | [diff] [blame] | 2491 | |
| 2492 | assert((NextSubmoduleID - FirstSubmoduleID |
| 2493 | == getNumberOfModules(WritingModule)) && "Wrong # of submodules"); |
Douglas Gregor | 392ed2b | 2011-11-30 17:33:56 +0000 | [diff] [blame] | 2494 | } |
| 2495 | |
Douglas Gregor | 185dbd7 | 2011-12-01 02:07:58 +0000 | [diff] [blame] | 2496 | serialization::SubmoduleID |
| 2497 | ASTWriter::inferSubmoduleIDFromLocation(SourceLocation Loc) { |
Douglas Gregor | e209e50 | 2011-12-06 01:10:29 +0000 | [diff] [blame] | 2498 | if (Loc.isInvalid() || !WritingModule) |
Douglas Gregor | 185dbd7 | 2011-12-01 02:07:58 +0000 | [diff] [blame] | 2499 | return 0; // No submodule |
Douglas Gregor | 5598868 | 2011-12-05 16:33:54 +0000 | [diff] [blame] | 2500 | |
| 2501 | // Find the module that owns this location. |
Douglas Gregor | 185dbd7 | 2011-12-01 02:07:58 +0000 | [diff] [blame] | 2502 | ModuleMap &ModMap = PP->getHeaderSearchInfo().getModuleMap(); |
Douglas Gregor | 5598868 | 2011-12-05 16:33:54 +0000 | [diff] [blame] | 2503 | Module *OwningMod |
| 2504 | = ModMap.inferModuleFromLocation(FullSourceLoc(Loc,PP->getSourceManager())); |
Douglas Gregor | 185dbd7 | 2011-12-01 02:07:58 +0000 | [diff] [blame] | 2505 | if (!OwningMod) |
| 2506 | return 0; |
| 2507 | |
Douglas Gregor | e209e50 | 2011-12-06 01:10:29 +0000 | [diff] [blame] | 2508 | // Check whether this submodule is part of our own module. |
| 2509 | if (WritingModule != OwningMod && !OwningMod->isSubModuleOf(WritingModule)) |
Douglas Gregor | 185dbd7 | 2011-12-01 02:07:58 +0000 | [diff] [blame] | 2510 | return 0; |
| 2511 | |
Douglas Gregor | e209e50 | 2011-12-06 01:10:29 +0000 | [diff] [blame] | 2512 | return getSubmoduleID(OwningMod); |
Douglas Gregor | 185dbd7 | 2011-12-01 02:07:58 +0000 | [diff] [blame] | 2513 | } |
| 2514 | |
Argyrios Kyrtzidis | ea744ab | 2013-03-27 17:17:23 +0000 | [diff] [blame] | 2515 | void ASTWriter::WritePragmaDiagnosticMappings(const DiagnosticsEngine &Diag, |
| 2516 | bool isModule) { |
| 2517 | // Make sure set diagnostic pragmas don't affect the translation unit that |
| 2518 | // imports the module. |
| 2519 | // FIXME: Make diagnostic pragma sections work properly with modules. |
| 2520 | if (isModule) |
| 2521 | return; |
| 2522 | |
Argyrios Kyrtzidis | 33e1576 | 2012-10-30 00:27:21 +0000 | [diff] [blame] | 2523 | llvm::SmallDenseMap<const DiagnosticsEngine::DiagState *, unsigned, 64> |
| 2524 | DiagStateIDMap; |
| 2525 | unsigned CurrID = 0; |
| 2526 | DiagStateIDMap[&Diag.DiagStates.front()] = ++CurrID; // the command-line one. |
Argyrios Kyrtzidis | f41d3be | 2010-11-05 22:10:18 +0000 | [diff] [blame] | 2527 | RecordData Record; |
David Blaikie | d6471f7 | 2011-09-25 23:23:43 +0000 | [diff] [blame] | 2528 | for (DiagnosticsEngine::DiagStatePointsTy::const_iterator |
Argyrios Kyrtzidis | 3efd52c | 2011-01-14 20:54:07 +0000 | [diff] [blame] | 2529 | I = Diag.DiagStatePoints.begin(), E = Diag.DiagStatePoints.end(); |
| 2530 | I != E; ++I) { |
Argyrios Kyrtzidis | 33e1576 | 2012-10-30 00:27:21 +0000 | [diff] [blame] | 2531 | const DiagnosticsEngine::DiagStatePoint &point = *I; |
Argyrios Kyrtzidis | 3efd52c | 2011-01-14 20:54:07 +0000 | [diff] [blame] | 2532 | if (point.Loc.isInvalid()) |
| 2533 | continue; |
| 2534 | |
| 2535 | Record.push_back(point.Loc.getRawEncoding()); |
Argyrios Kyrtzidis | 33e1576 | 2012-10-30 00:27:21 +0000 | [diff] [blame] | 2536 | unsigned &DiagStateID = DiagStateIDMap[point.State]; |
| 2537 | Record.push_back(DiagStateID); |
| 2538 | |
| 2539 | if (DiagStateID == 0) { |
| 2540 | DiagStateID = ++CurrID; |
| 2541 | for (DiagnosticsEngine::DiagState::const_iterator |
| 2542 | I = point.State->begin(), E = point.State->end(); I != E; ++I) { |
| 2543 | if (I->second.isPragma()) { |
| 2544 | Record.push_back(I->first); |
| 2545 | Record.push_back(I->second.getMapping()); |
| 2546 | } |
Argyrios Kyrtzidis | 3efd52c | 2011-01-14 20:54:07 +0000 | [diff] [blame] | 2547 | } |
Argyrios Kyrtzidis | 33e1576 | 2012-10-30 00:27:21 +0000 | [diff] [blame] | 2548 | Record.push_back(-1); // mark the end of the diag/map pairs for this |
| 2549 | // location. |
Argyrios Kyrtzidis | f41d3be | 2010-11-05 22:10:18 +0000 | [diff] [blame] | 2550 | } |
| 2551 | } |
| 2552 | |
Argyrios Kyrtzidis | 60f7684 | 2010-11-05 22:20:49 +0000 | [diff] [blame] | 2553 | if (!Record.empty()) |
Argyrios Kyrtzidis | 3efd52c | 2011-01-14 20:54:07 +0000 | [diff] [blame] | 2554 | Stream.EmitRecord(DIAG_PRAGMA_MAPPINGS, Record); |
Argyrios Kyrtzidis | f41d3be | 2010-11-05 22:10:18 +0000 | [diff] [blame] | 2555 | } |
| 2556 | |
Anders Carlsson | c850578 | 2011-03-06 18:41:18 +0000 | [diff] [blame] | 2557 | void ASTWriter::WriteCXXBaseSpecifiersOffsets() { |
| 2558 | if (CXXBaseSpecifiersOffsets.empty()) |
| 2559 | return; |
| 2560 | |
| 2561 | RecordData Record; |
| 2562 | |
| 2563 | // Create a blob abbreviation for the C++ base specifiers offsets. |
| 2564 | using namespace llvm; |
| 2565 | |
| 2566 | BitCodeAbbrev *Abbrev = new BitCodeAbbrev(); |
| 2567 | Abbrev->Add(BitCodeAbbrevOp(CXX_BASE_SPECIFIER_OFFSETS)); |
| 2568 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // size |
| 2569 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); |
| 2570 | unsigned BaseSpecifierOffsetAbbrev = Stream.EmitAbbrev(Abbrev); |
| 2571 | |
Douglas Gregor | e92b8a1 | 2011-08-04 00:01:48 +0000 | [diff] [blame] | 2572 | // Write the base specifier offsets table. |
Anders Carlsson | c850578 | 2011-03-06 18:41:18 +0000 | [diff] [blame] | 2573 | Record.clear(); |
| 2574 | Record.push_back(CXX_BASE_SPECIFIER_OFFSETS); |
| 2575 | Record.push_back(CXXBaseSpecifiersOffsets.size()); |
| 2576 | Stream.EmitRecordWithBlob(BaseSpecifierOffsetAbbrev, Record, |
Benjamin Kramer | 6e089c6 | 2011-04-24 17:44:50 +0000 | [diff] [blame] | 2577 | data(CXXBaseSpecifiersOffsets)); |
Anders Carlsson | c850578 | 2011-03-06 18:41:18 +0000 | [diff] [blame] | 2578 | } |
| 2579 | |
Douglas Gregor | 4fed3f4 | 2009-04-27 18:38:38 +0000 | [diff] [blame] | 2580 | //===----------------------------------------------------------------------===// |
| 2581 | // Type Serialization |
| 2582 | //===----------------------------------------------------------------------===// |
Chris Lattner | 0b1fb98 | 2009-04-10 17:15:23 +0000 | [diff] [blame] | 2583 | |
Sebastian Redl | 3397c55 | 2010-08-18 23:56:27 +0000 | [diff] [blame] | 2584 | /// \brief Write the representation of a type to the AST stream. |
Sebastian Redl | a4232eb | 2010-08-18 23:56:21 +0000 | [diff] [blame] | 2585 | void ASTWriter::WriteType(QualType T) { |
Argyrios Kyrtzidis | 01b81c4 | 2010-08-20 16:04:04 +0000 | [diff] [blame] | 2586 | TypeIdx &Idx = TypeIdxs[T]; |
Argyrios Kyrtzidis | c8e5d51 | 2010-08-20 16:03:59 +0000 | [diff] [blame] | 2587 | if (Idx.getIndex() == 0) // we haven't seen this type before. |
| 2588 | Idx = TypeIdx(NextTypeID++); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2589 | |
Douglas Gregor | 9747583 | 2010-10-05 18:37:06 +0000 | [diff] [blame] | 2590 | assert(Idx.getIndex() >= FirstTypeID && "Re-writing a type from a prior AST"); |
Douglas Gregor | 55f48de | 2010-10-04 18:21:45 +0000 | [diff] [blame] | 2591 | |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2592 | // Record the offset for this type. |
Argyrios Kyrtzidis | c8e5d51 | 2010-08-20 16:03:59 +0000 | [diff] [blame] | 2593 | unsigned Index = Idx.getIndex() - FirstTypeID; |
Sebastian Redl | 681d723 | 2010-07-27 00:17:23 +0000 | [diff] [blame] | 2594 | if (TypeOffsets.size() == Index) |
Douglas Gregor | c9490c0 | 2009-04-16 22:23:12 +0000 | [diff] [blame] | 2595 | TypeOffsets.push_back(Stream.GetCurrentBitNo()); |
Sebastian Redl | 681d723 | 2010-07-27 00:17:23 +0000 | [diff] [blame] | 2596 | else if (TypeOffsets.size() < Index) { |
| 2597 | TypeOffsets.resize(Index + 1); |
| 2598 | TypeOffsets[Index] = Stream.GetCurrentBitNo(); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2599 | } |
| 2600 | |
| 2601 | RecordData Record; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2602 | |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2603 | // Emit the type's representation. |
Sebastian Redl | 3397c55 | 2010-08-18 23:56:27 +0000 | [diff] [blame] | 2604 | ASTTypeWriter W(*this, Record); |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 2605 | |
Douglas Gregor | a4923eb | 2009-11-16 21:35:15 +0000 | [diff] [blame] | 2606 | if (T.hasLocalNonFastQualifiers()) { |
| 2607 | Qualifiers Qs = T.getLocalQualifiers(); |
| 2608 | AddTypeRef(T.getLocalUnqualifiedType(), Record); |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 2609 | Record.push_back(Qs.getAsOpaqueValue()); |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 2610 | W.Code = TYPE_EXT_QUAL; |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 2611 | } else { |
| 2612 | switch (T->getTypeClass()) { |
| 2613 | // For all of the concrete, non-dependent types, call the |
| 2614 | // appropriate visitor function. |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2615 | #define TYPE(Class, Base) \ |
Mike Stump | b716633 | 2010-01-20 02:03:14 +0000 | [diff] [blame] | 2616 | case Type::Class: W.Visit##Class##Type(cast<Class##Type>(T)); break; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2617 | #define ABSTRACT_TYPE(Class, Base) |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2618 | #include "clang/AST/TypeNodes.def" |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 2619 | } |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2620 | } |
| 2621 | |
| 2622 | // Emit the serialized record. |
Douglas Gregor | c9490c0 | 2009-04-16 22:23:12 +0000 | [diff] [blame] | 2623 | Stream.EmitRecord(W.Code, Record); |
Douglas Gregor | 0b74891 | 2009-04-14 21:18:50 +0000 | [diff] [blame] | 2624 | |
| 2625 | // Flush any expressions that were written as part of this type. |
Douglas Gregor | c9490c0 | 2009-04-16 22:23:12 +0000 | [diff] [blame] | 2626 | FlushStmts(); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2627 | } |
| 2628 | |
Douglas Gregor | 4fed3f4 | 2009-04-27 18:38:38 +0000 | [diff] [blame] | 2629 | //===----------------------------------------------------------------------===// |
| 2630 | // Declaration Serialization |
| 2631 | //===----------------------------------------------------------------------===// |
| 2632 | |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2633 | /// \brief Write the block containing all of the declaration IDs |
| 2634 | /// lexically declared within the given DeclContext. |
| 2635 | /// |
| 2636 | /// \returns the offset of the DECL_CONTEXT_LEXICAL block within the |
| 2637 | /// bistream, or 0 if no block was written. |
Sebastian Redl | a4232eb | 2010-08-18 23:56:21 +0000 | [diff] [blame] | 2638 | uint64_t ASTWriter::WriteDeclContextLexicalBlock(ASTContext &Context, |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2639 | DeclContext *DC) { |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 2640 | if (DC->decls_empty()) |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2641 | return 0; |
| 2642 | |
Douglas Gregor | c9490c0 | 2009-04-16 22:23:12 +0000 | [diff] [blame] | 2643 | uint64_t Offset = Stream.GetCurrentBitNo(); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2644 | RecordData Record; |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 2645 | Record.push_back(DECL_CONTEXT_LEXICAL); |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2646 | SmallVector<KindDeclIDPair, 64> Decls; |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 2647 | for (const auto *D : DC->decls()) |
| 2648 | Decls.push_back(std::make_pair(D->getKind(), GetDeclRef(D))); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2649 | |
Douglas Gregor | 2512308 | 2009-04-22 22:34:57 +0000 | [diff] [blame] | 2650 | ++NumLexicalDeclContexts; |
Benjamin Kramer | 6e089c6 | 2011-04-24 17:44:50 +0000 | [diff] [blame] | 2651 | Stream.EmitRecordWithBlob(DeclContextLexicalAbbrev, Record, data(Decls)); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2652 | return Offset; |
| 2653 | } |
| 2654 | |
Sebastian Redl | a4232eb | 2010-08-18 23:56:21 +0000 | [diff] [blame] | 2655 | void ASTWriter::WriteTypeDeclOffsets() { |
Sebastian Redl | 1476ed4 | 2010-07-16 16:36:56 +0000 | [diff] [blame] | 2656 | using namespace llvm; |
| 2657 | RecordData Record; |
| 2658 | |
| 2659 | // Write the type offsets array |
| 2660 | BitCodeAbbrev *Abbrev = new BitCodeAbbrev(); |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 2661 | Abbrev->Add(BitCodeAbbrevOp(TYPE_OFFSET)); |
Sebastian Redl | 1476ed4 | 2010-07-16 16:36:56 +0000 | [diff] [blame] | 2662 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // # of types |
Douglas Gregor | a119da0 | 2011-08-02 16:26:37 +0000 | [diff] [blame] | 2663 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // base type index |
Sebastian Redl | 1476ed4 | 2010-07-16 16:36:56 +0000 | [diff] [blame] | 2664 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // types block |
| 2665 | unsigned TypeOffsetAbbrev = Stream.EmitAbbrev(Abbrev); |
| 2666 | Record.clear(); |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 2667 | Record.push_back(TYPE_OFFSET); |
Sebastian Redl | 1476ed4 | 2010-07-16 16:36:56 +0000 | [diff] [blame] | 2668 | Record.push_back(TypeOffsets.size()); |
Douglas Gregor | a119da0 | 2011-08-02 16:26:37 +0000 | [diff] [blame] | 2669 | Record.push_back(FirstTypeID - NUM_PREDEF_TYPE_IDS); |
Benjamin Kramer | 6e089c6 | 2011-04-24 17:44:50 +0000 | [diff] [blame] | 2670 | Stream.EmitRecordWithBlob(TypeOffsetAbbrev, Record, data(TypeOffsets)); |
Sebastian Redl | 1476ed4 | 2010-07-16 16:36:56 +0000 | [diff] [blame] | 2671 | |
| 2672 | // Write the declaration offsets array |
| 2673 | Abbrev = new BitCodeAbbrev(); |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 2674 | Abbrev->Add(BitCodeAbbrevOp(DECL_OFFSET)); |
Sebastian Redl | 1476ed4 | 2010-07-16 16:36:56 +0000 | [diff] [blame] | 2675 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // # of declarations |
Douglas Gregor | 496c709 | 2011-08-03 15:48:04 +0000 | [diff] [blame] | 2676 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // base decl ID |
Sebastian Redl | 1476ed4 | 2010-07-16 16:36:56 +0000 | [diff] [blame] | 2677 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // declarations block |
| 2678 | unsigned DeclOffsetAbbrev = Stream.EmitAbbrev(Abbrev); |
| 2679 | Record.clear(); |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 2680 | Record.push_back(DECL_OFFSET); |
Sebastian Redl | 1476ed4 | 2010-07-16 16:36:56 +0000 | [diff] [blame] | 2681 | Record.push_back(DeclOffsets.size()); |
Douglas Gregor | 0a14e4b | 2011-08-03 16:05:40 +0000 | [diff] [blame] | 2682 | Record.push_back(FirstDeclID - NUM_PREDEF_DECL_IDS); |
Benjamin Kramer | 6e089c6 | 2011-04-24 17:44:50 +0000 | [diff] [blame] | 2683 | Stream.EmitRecordWithBlob(DeclOffsetAbbrev, Record, data(DeclOffsets)); |
Sebastian Redl | 1476ed4 | 2010-07-16 16:36:56 +0000 | [diff] [blame] | 2684 | } |
| 2685 | |
Argyrios Kyrtzidis | 10f3df5 | 2011-10-28 22:54:21 +0000 | [diff] [blame] | 2686 | void ASTWriter::WriteFileDeclIDsMap() { |
| 2687 | using namespace llvm; |
| 2688 | RecordData Record; |
| 2689 | |
| 2690 | // Join the vectors of DeclIDs from all files. |
| 2691 | SmallVector<DeclID, 256> FileSortedIDs; |
| 2692 | for (FileDeclIDsTy::iterator |
| 2693 | FI = FileDeclIDs.begin(), FE = FileDeclIDs.end(); FI != FE; ++FI) { |
| 2694 | DeclIDInFileInfo &Info = *FI->second; |
| 2695 | Info.FirstDeclIndex = FileSortedIDs.size(); |
| 2696 | for (LocDeclIDsTy::iterator |
| 2697 | DI = Info.DeclIDs.begin(), DE = Info.DeclIDs.end(); DI != DE; ++DI) |
| 2698 | FileSortedIDs.push_back(DI->second); |
| 2699 | } |
| 2700 | |
| 2701 | BitCodeAbbrev *Abbrev = new BitCodeAbbrev(); |
| 2702 | Abbrev->Add(BitCodeAbbrevOp(FILE_SORTED_DECLS)); |
Argyrios Kyrtzidis | 2093e0b | 2012-10-02 21:09:13 +0000 | [diff] [blame] | 2703 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); |
Argyrios Kyrtzidis | 10f3df5 | 2011-10-28 22:54:21 +0000 | [diff] [blame] | 2704 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); |
| 2705 | unsigned AbbrevCode = Stream.EmitAbbrev(Abbrev); |
| 2706 | Record.push_back(FILE_SORTED_DECLS); |
Argyrios Kyrtzidis | 2093e0b | 2012-10-02 21:09:13 +0000 | [diff] [blame] | 2707 | Record.push_back(FileSortedIDs.size()); |
Argyrios Kyrtzidis | 10f3df5 | 2011-10-28 22:54:21 +0000 | [diff] [blame] | 2708 | Stream.EmitRecordWithBlob(AbbrevCode, Record, data(FileSortedIDs)); |
| 2709 | } |
| 2710 | |
Dmitri Gribenko | aa0cd85 | 2012-06-20 00:34:58 +0000 | [diff] [blame] | 2711 | void ASTWriter::WriteComments() { |
| 2712 | Stream.EnterSubblock(COMMENTS_BLOCK_ID, 3); |
Dmitri Gribenko | 811c820 | 2012-07-06 18:19:34 +0000 | [diff] [blame] | 2713 | ArrayRef<RawComment *> RawComments = Context->Comments.getComments(); |
Dmitri Gribenko | aa0cd85 | 2012-06-20 00:34:58 +0000 | [diff] [blame] | 2714 | RecordData Record; |
Dmitri Gribenko | 811c820 | 2012-07-06 18:19:34 +0000 | [diff] [blame] | 2715 | for (ArrayRef<RawComment *>::iterator I = RawComments.begin(), |
| 2716 | E = RawComments.end(); |
Dmitri Gribenko | aa0cd85 | 2012-06-20 00:34:58 +0000 | [diff] [blame] | 2717 | I != E; ++I) { |
| 2718 | Record.clear(); |
Dmitri Gribenko | 811c820 | 2012-07-06 18:19:34 +0000 | [diff] [blame] | 2719 | AddSourceRange((*I)->getSourceRange(), Record); |
| 2720 | Record.push_back((*I)->getKind()); |
| 2721 | Record.push_back((*I)->isTrailingComment()); |
| 2722 | Record.push_back((*I)->isAlmostTrailingComment()); |
Dmitri Gribenko | aa0cd85 | 2012-06-20 00:34:58 +0000 | [diff] [blame] | 2723 | Stream.EmitRecord(COMMENTS_RAW_COMMENT, Record); |
| 2724 | } |
| 2725 | Stream.ExitBlock(); |
| 2726 | } |
| 2727 | |
Douglas Gregor | 4fed3f4 | 2009-04-27 18:38:38 +0000 | [diff] [blame] | 2728 | //===----------------------------------------------------------------------===// |
| 2729 | // Global Method Pool and Selector Serialization |
| 2730 | //===----------------------------------------------------------------------===// |
| 2731 | |
Douglas Gregor | 3251ceb | 2009-04-20 20:36:09 +0000 | [diff] [blame] | 2732 | namespace { |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 2733 | // Trait used for the on-disk hash table used in the method pool. |
Sebastian Redl | 3397c55 | 2010-08-18 23:56:27 +0000 | [diff] [blame] | 2734 | class ASTMethodPoolTrait { |
Sebastian Redl | a4232eb | 2010-08-18 23:56:21 +0000 | [diff] [blame] | 2735 | ASTWriter &Writer; |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 2736 | |
| 2737 | public: |
| 2738 | typedef Selector key_type; |
| 2739 | typedef key_type key_type_ref; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2740 | |
Sebastian Redl | 5d05007 | 2010-08-04 17:20:04 +0000 | [diff] [blame] | 2741 | struct data_type { |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 2742 | SelectorID ID; |
Sebastian Redl | 5d05007 | 2010-08-04 17:20:04 +0000 | [diff] [blame] | 2743 | ObjCMethodList Instance, Factory; |
| 2744 | }; |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 2745 | typedef const data_type& data_type_ref; |
| 2746 | |
Stephen Hines | 6bcf27b | 2014-05-29 04:14:42 -0700 | [diff] [blame^] | 2747 | typedef unsigned hash_value_type; |
| 2748 | typedef unsigned offset_type; |
| 2749 | |
Sebastian Redl | 3397c55 | 2010-08-18 23:56:27 +0000 | [diff] [blame] | 2750 | explicit ASTMethodPoolTrait(ASTWriter &Writer) : Writer(Writer) { } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2751 | |
Stephen Hines | 6bcf27b | 2014-05-29 04:14:42 -0700 | [diff] [blame^] | 2752 | static hash_value_type ComputeHash(Selector Sel) { |
Argyrios Kyrtzidis | 0eca89e | 2010-08-20 16:03:52 +0000 | [diff] [blame] | 2753 | return serialization::ComputeHash(Sel); |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 2754 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2755 | |
| 2756 | std::pair<unsigned,unsigned> |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2757 | EmitKeyDataLength(raw_ostream& Out, Selector Sel, |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 2758 | data_type_ref Methods) { |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 2759 | using namespace llvm::support; |
| 2760 | endian::Writer<little> LE(Out); |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 2761 | unsigned KeyLen = 2 + (Sel.getNumArgs()? Sel.getNumArgs() * 4 : 4); |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 2762 | LE.write<uint16_t>(KeyLen); |
Sebastian Redl | 5d05007 | 2010-08-04 17:20:04 +0000 | [diff] [blame] | 2763 | unsigned DataLen = 4 + 2 + 2; // 2 bytes for each of the method counts |
| 2764 | for (const ObjCMethodList *Method = &Methods.Instance; Method; |
Argyrios Kyrtzidis | 2e3d8c0 | 2013-04-17 00:08:58 +0000 | [diff] [blame] | 2765 | Method = Method->getNext()) |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 2766 | if (Method->Method) |
| 2767 | DataLen += 4; |
Sebastian Redl | 5d05007 | 2010-08-04 17:20:04 +0000 | [diff] [blame] | 2768 | for (const ObjCMethodList *Method = &Methods.Factory; Method; |
Argyrios Kyrtzidis | 2e3d8c0 | 2013-04-17 00:08:58 +0000 | [diff] [blame] | 2769 | Method = Method->getNext()) |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 2770 | if (Method->Method) |
| 2771 | DataLen += 4; |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 2772 | LE.write<uint16_t>(DataLen); |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 2773 | return std::make_pair(KeyLen, DataLen); |
| 2774 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2775 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2776 | void EmitKey(raw_ostream& Out, Selector Sel, unsigned) { |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 2777 | using namespace llvm::support; |
| 2778 | endian::Writer<little> LE(Out); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2779 | uint64_t Start = Out.tell(); |
Douglas Gregor | 83941df | 2009-04-25 17:48:32 +0000 | [diff] [blame] | 2780 | assert((Start >> 32) == 0 && "Selector key offset too large"); |
| 2781 | Writer.SetSelectorOffset(Sel, Start); |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 2782 | unsigned N = Sel.getNumArgs(); |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 2783 | LE.write<uint16_t>(N); |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 2784 | if (N == 0) |
| 2785 | N = 1; |
| 2786 | for (unsigned I = 0; I != N; ++I) |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 2787 | LE.write<uint32_t>( |
| 2788 | Writer.getIdentifierRef(Sel.getIdentifierInfoForSlot(I))); |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 2789 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2790 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 2791 | void EmitData(raw_ostream& Out, key_type_ref, |
Douglas Gregor | a67e58c | 2009-04-24 21:49:02 +0000 | [diff] [blame] | 2792 | data_type_ref Methods, unsigned DataLen) { |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 2793 | using namespace llvm::support; |
| 2794 | endian::Writer<little> LE(Out); |
Douglas Gregor | a67e58c | 2009-04-24 21:49:02 +0000 | [diff] [blame] | 2795 | uint64_t Start = Out.tell(); (void)Start; |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 2796 | LE.write<uint32_t>(Methods.ID); |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 2797 | unsigned NumInstanceMethods = 0; |
Sebastian Redl | 5d05007 | 2010-08-04 17:20:04 +0000 | [diff] [blame] | 2798 | for (const ObjCMethodList *Method = &Methods.Instance; Method; |
Argyrios Kyrtzidis | 2e3d8c0 | 2013-04-17 00:08:58 +0000 | [diff] [blame] | 2799 | Method = Method->getNext()) |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 2800 | if (Method->Method) |
| 2801 | ++NumInstanceMethods; |
| 2802 | |
| 2803 | unsigned NumFactoryMethods = 0; |
Sebastian Redl | 5d05007 | 2010-08-04 17:20:04 +0000 | [diff] [blame] | 2804 | for (const ObjCMethodList *Method = &Methods.Factory; Method; |
Argyrios Kyrtzidis | 2e3d8c0 | 2013-04-17 00:08:58 +0000 | [diff] [blame] | 2805 | Method = Method->getNext()) |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 2806 | if (Method->Method) |
| 2807 | ++NumFactoryMethods; |
| 2808 | |
Argyrios Kyrtzidis | 2e3d8c0 | 2013-04-17 00:08:58 +0000 | [diff] [blame] | 2809 | unsigned InstanceBits = Methods.Instance.getBits(); |
| 2810 | assert(InstanceBits < 4); |
| 2811 | unsigned NumInstanceMethodsAndBits = |
| 2812 | (NumInstanceMethods << 2) | InstanceBits; |
| 2813 | unsigned FactoryBits = Methods.Factory.getBits(); |
| 2814 | assert(FactoryBits < 4); |
| 2815 | unsigned NumFactoryMethodsAndBits = (NumFactoryMethods << 2) | FactoryBits; |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 2816 | LE.write<uint16_t>(NumInstanceMethodsAndBits); |
| 2817 | LE.write<uint16_t>(NumFactoryMethodsAndBits); |
Sebastian Redl | 5d05007 | 2010-08-04 17:20:04 +0000 | [diff] [blame] | 2818 | for (const ObjCMethodList *Method = &Methods.Instance; Method; |
Argyrios Kyrtzidis | 2e3d8c0 | 2013-04-17 00:08:58 +0000 | [diff] [blame] | 2819 | Method = Method->getNext()) |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 2820 | if (Method->Method) |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 2821 | LE.write<uint32_t>(Writer.getDeclID(Method->Method)); |
Sebastian Redl | 5d05007 | 2010-08-04 17:20:04 +0000 | [diff] [blame] | 2822 | for (const ObjCMethodList *Method = &Methods.Factory; Method; |
Argyrios Kyrtzidis | 2e3d8c0 | 2013-04-17 00:08:58 +0000 | [diff] [blame] | 2823 | Method = Method->getNext()) |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 2824 | if (Method->Method) |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 2825 | LE.write<uint32_t>(Writer.getDeclID(Method->Method)); |
Douglas Gregor | a67e58c | 2009-04-24 21:49:02 +0000 | [diff] [blame] | 2826 | |
| 2827 | assert(Out.tell() - Start == DataLen && "Data length is wrong"); |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 2828 | } |
| 2829 | }; |
| 2830 | } // end anonymous namespace |
| 2831 | |
Sebastian Redl | 059612d | 2010-08-03 21:58:15 +0000 | [diff] [blame] | 2832 | /// \brief Write ObjC data: selectors and the method pool. |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 2833 | /// |
| 2834 | /// The method pool contains both instance and factory methods, stored |
Sebastian Redl | 059612d | 2010-08-03 21:58:15 +0000 | [diff] [blame] | 2835 | /// in an on-disk hash table indexed by the selector. The hash table also |
| 2836 | /// contains an empty entry for every other selector known to Sema. |
Sebastian Redl | a4232eb | 2010-08-18 23:56:21 +0000 | [diff] [blame] | 2837 | void ASTWriter::WriteSelectors(Sema &SemaRef) { |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 2838 | using namespace llvm; |
| 2839 | |
Sebastian Redl | 059612d | 2010-08-03 21:58:15 +0000 | [diff] [blame] | 2840 | // Do we have to do anything at all? |
Sebastian Redl | 5d05007 | 2010-08-04 17:20:04 +0000 | [diff] [blame] | 2841 | if (SemaRef.MethodPool.empty() && SelectorIDs.empty()) |
Sebastian Redl | 059612d | 2010-08-03 21:58:15 +0000 | [diff] [blame] | 2842 | return; |
Sebastian Redl | e58aa89 | 2010-08-04 18:21:41 +0000 | [diff] [blame] | 2843 | unsigned NumTableEntries = 0; |
Sebastian Redl | 059612d | 2010-08-03 21:58:15 +0000 | [diff] [blame] | 2844 | // Create and write out the blob that contains selectors and the method pool. |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 2845 | { |
Stephen Hines | 6bcf27b | 2014-05-29 04:14:42 -0700 | [diff] [blame^] | 2846 | llvm::OnDiskChainedHashTableGenerator<ASTMethodPoolTrait> Generator; |
Argyrios Kyrtzidis | 5d26768 | 2010-08-20 16:04:27 +0000 | [diff] [blame] | 2847 | ASTMethodPoolTrait Trait(*this); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2848 | |
Sebastian Redl | 059612d | 2010-08-03 21:58:15 +0000 | [diff] [blame] | 2849 | // Create the on-disk hash table representation. We walk through every |
| 2850 | // selector we've seen and look it up in the method pool. |
Sebastian Redl | e58aa89 | 2010-08-04 18:21:41 +0000 | [diff] [blame] | 2851 | SelectorOffsets.resize(NextSelectorID - FirstSelectorID); |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 2852 | for (llvm::DenseMap<Selector, SelectorID>::iterator |
Sebastian Redl | 5d05007 | 2010-08-04 17:20:04 +0000 | [diff] [blame] | 2853 | I = SelectorIDs.begin(), E = SelectorIDs.end(); |
| 2854 | I != E; ++I) { |
| 2855 | Selector S = I->first; |
Sebastian Redl | 059612d | 2010-08-03 21:58:15 +0000 | [diff] [blame] | 2856 | Sema::GlobalMethodPool::iterator F = SemaRef.MethodPool.find(S); |
Sebastian Redl | 3397c55 | 2010-08-18 23:56:27 +0000 | [diff] [blame] | 2857 | ASTMethodPoolTrait::data_type Data = { |
Sebastian Redl | 5d05007 | 2010-08-04 17:20:04 +0000 | [diff] [blame] | 2858 | I->second, |
| 2859 | ObjCMethodList(), |
| 2860 | ObjCMethodList() |
| 2861 | }; |
| 2862 | if (F != SemaRef.MethodPool.end()) { |
| 2863 | Data.Instance = F->second.first; |
| 2864 | Data.Factory = F->second.second; |
| 2865 | } |
Sebastian Redl | 3397c55 | 2010-08-18 23:56:27 +0000 | [diff] [blame] | 2866 | // Only write this selector if it's not in an existing AST or something |
Sebastian Redl | e58aa89 | 2010-08-04 18:21:41 +0000 | [diff] [blame] | 2867 | // changed. |
| 2868 | if (Chain && I->second < FirstSelectorID) { |
| 2869 | // Selector already exists. Did it change? |
| 2870 | bool changed = false; |
| 2871 | for (ObjCMethodList *M = &Data.Instance; !changed && M && M->Method; |
Argyrios Kyrtzidis | 2e3d8c0 | 2013-04-17 00:08:58 +0000 | [diff] [blame] | 2872 | M = M->getNext()) { |
Douglas Gregor | 919814d | 2011-09-09 23:01:35 +0000 | [diff] [blame] | 2873 | if (!M->Method->isFromASTFile()) |
Sebastian Redl | e58aa89 | 2010-08-04 18:21:41 +0000 | [diff] [blame] | 2874 | changed = true; |
| 2875 | } |
| 2876 | for (ObjCMethodList *M = &Data.Factory; !changed && M && M->Method; |
Argyrios Kyrtzidis | 2e3d8c0 | 2013-04-17 00:08:58 +0000 | [diff] [blame] | 2877 | M = M->getNext()) { |
Douglas Gregor | 919814d | 2011-09-09 23:01:35 +0000 | [diff] [blame] | 2878 | if (!M->Method->isFromASTFile()) |
Sebastian Redl | e58aa89 | 2010-08-04 18:21:41 +0000 | [diff] [blame] | 2879 | changed = true; |
| 2880 | } |
| 2881 | if (!changed) |
| 2882 | continue; |
Sebastian Redl | fa78dec | 2010-08-04 21:22:45 +0000 | [diff] [blame] | 2883 | } else if (Data.Instance.Method || Data.Factory.Method) { |
| 2884 | // A new method pool entry. |
| 2885 | ++NumTableEntries; |
Sebastian Redl | e58aa89 | 2010-08-04 18:21:41 +0000 | [diff] [blame] | 2886 | } |
Argyrios Kyrtzidis | 5d26768 | 2010-08-20 16:04:27 +0000 | [diff] [blame] | 2887 | Generator.insert(S, Data, Trait); |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 2888 | } |
| 2889 | |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 2890 | // Create the on-disk hash table in a buffer. |
Dylan Noblesmith | f7ccbad | 2012-02-05 02:13:05 +0000 | [diff] [blame] | 2891 | SmallString<4096> MethodPool; |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 2892 | uint32_t BucketOffset; |
| 2893 | { |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 2894 | using namespace llvm::support; |
Sebastian Redl | 3397c55 | 2010-08-18 23:56:27 +0000 | [diff] [blame] | 2895 | ASTMethodPoolTrait Trait(*this); |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 2896 | llvm::raw_svector_ostream Out(MethodPool); |
| 2897 | // Make sure that no bucket is at offset 0 |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 2898 | endian::Writer<little>(Out).write<uint32_t>(0); |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 2899 | BucketOffset = Generator.Emit(Out, Trait); |
| 2900 | } |
| 2901 | |
| 2902 | // Create a blob abbreviation |
| 2903 | BitCodeAbbrev *Abbrev = new BitCodeAbbrev(); |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 2904 | Abbrev->Add(BitCodeAbbrevOp(METHOD_POOL)); |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 2905 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); |
Douglas Gregor | 83941df | 2009-04-25 17:48:32 +0000 | [diff] [blame] | 2906 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 2907 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); |
| 2908 | unsigned MethodPoolAbbrev = Stream.EmitAbbrev(Abbrev); |
| 2909 | |
Douglas Gregor | 83941df | 2009-04-25 17:48:32 +0000 | [diff] [blame] | 2910 | // Write the method pool |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 2911 | RecordData Record; |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 2912 | Record.push_back(METHOD_POOL); |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 2913 | Record.push_back(BucketOffset); |
Sebastian Redl | e58aa89 | 2010-08-04 18:21:41 +0000 | [diff] [blame] | 2914 | Record.push_back(NumTableEntries); |
Daniel Dunbar | ec312a1 | 2009-08-24 09:31:37 +0000 | [diff] [blame] | 2915 | Stream.EmitRecordWithBlob(MethodPoolAbbrev, Record, MethodPool.str()); |
Douglas Gregor | 83941df | 2009-04-25 17:48:32 +0000 | [diff] [blame] | 2916 | |
| 2917 | // Create a blob abbreviation for the selector table offsets. |
| 2918 | Abbrev = new BitCodeAbbrev(); |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 2919 | Abbrev->Add(BitCodeAbbrevOp(SELECTOR_OFFSETS)); |
Douglas Gregor | 7c789c1 | 2010-10-29 22:39:52 +0000 | [diff] [blame] | 2920 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // size |
Douglas Gregor | b18b1fd | 2011-08-03 23:28:44 +0000 | [diff] [blame] | 2921 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // first ID |
Douglas Gregor | 83941df | 2009-04-25 17:48:32 +0000 | [diff] [blame] | 2922 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); |
| 2923 | unsigned SelectorOffsetAbbrev = Stream.EmitAbbrev(Abbrev); |
| 2924 | |
| 2925 | // Write the selector offsets table. |
| 2926 | Record.clear(); |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 2927 | Record.push_back(SELECTOR_OFFSETS); |
Douglas Gregor | 83941df | 2009-04-25 17:48:32 +0000 | [diff] [blame] | 2928 | Record.push_back(SelectorOffsets.size()); |
Douglas Gregor | b18b1fd | 2011-08-03 23:28:44 +0000 | [diff] [blame] | 2929 | Record.push_back(FirstSelectorID - NUM_PREDEF_SELECTOR_IDS); |
Douglas Gregor | 83941df | 2009-04-25 17:48:32 +0000 | [diff] [blame] | 2930 | Stream.EmitRecordWithBlob(SelectorOffsetAbbrev, Record, |
Benjamin Kramer | 6e089c6 | 2011-04-24 17:44:50 +0000 | [diff] [blame] | 2931 | data(SelectorOffsets)); |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 2932 | } |
| 2933 | } |
| 2934 | |
Sebastian Redl | 3397c55 | 2010-08-18 23:56:27 +0000 | [diff] [blame] | 2935 | /// \brief Write the selectors referenced in @selector expression into AST file. |
Sebastian Redl | a4232eb | 2010-08-18 23:56:21 +0000 | [diff] [blame] | 2936 | void ASTWriter::WriteReferencedSelectorsPool(Sema &SemaRef) { |
Fariborz Jahanian | 3201983 | 2010-07-23 19:11:11 +0000 | [diff] [blame] | 2937 | using namespace llvm; |
| 2938 | if (SemaRef.ReferencedSelectors.empty()) |
| 2939 | return; |
Sebastian Redl | 725cd96 | 2010-08-04 20:40:17 +0000 | [diff] [blame] | 2940 | |
Fariborz Jahanian | 3201983 | 2010-07-23 19:11:11 +0000 | [diff] [blame] | 2941 | RecordData Record; |
Sebastian Redl | 725cd96 | 2010-08-04 20:40:17 +0000 | [diff] [blame] | 2942 | |
Sebastian Redl | 3397c55 | 2010-08-18 23:56:27 +0000 | [diff] [blame] | 2943 | // Note: this writes out all references even for a dependent AST. But it is |
Sebastian Redl | a68340f | 2010-08-04 22:21:29 +0000 | [diff] [blame] | 2944 | // very tricky to fix, and given that @selector shouldn't really appear in |
| 2945 | // headers, probably not worth it. It's not a correctness issue. |
Fariborz Jahanian | 3201983 | 2010-07-23 19:11:11 +0000 | [diff] [blame] | 2946 | for (DenseMap<Selector, SourceLocation>::iterator S = |
| 2947 | SemaRef.ReferencedSelectors.begin(), |
| 2948 | E = SemaRef.ReferencedSelectors.end(); S != E; ++S) { |
| 2949 | Selector Sel = (*S).first; |
| 2950 | SourceLocation Loc = (*S).second; |
| 2951 | AddSelectorRef(Sel, Record); |
| 2952 | AddSourceLocation(Loc, Record); |
| 2953 | } |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 2954 | Stream.EmitRecord(REFERENCED_SELECTOR_POOL, Record); |
Fariborz Jahanian | 3201983 | 2010-07-23 19:11:11 +0000 | [diff] [blame] | 2955 | } |
| 2956 | |
Douglas Gregor | 4fed3f4 | 2009-04-27 18:38:38 +0000 | [diff] [blame] | 2957 | //===----------------------------------------------------------------------===// |
| 2958 | // Identifier Table Serialization |
| 2959 | //===----------------------------------------------------------------------===// |
| 2960 | |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 2961 | namespace { |
Sebastian Redl | 3397c55 | 2010-08-18 23:56:27 +0000 | [diff] [blame] | 2962 | class ASTIdentifierTableTrait { |
Sebastian Redl | a4232eb | 2010-08-18 23:56:21 +0000 | [diff] [blame] | 2963 | ASTWriter &Writer; |
Douglas Gregor | 37e2684 | 2009-04-21 23:56:24 +0000 | [diff] [blame] | 2964 | Preprocessor &PP; |
Douglas Gregor | eee242f | 2011-10-27 09:33:13 +0000 | [diff] [blame] | 2965 | IdentifierResolver &IdResolver; |
Douglas Gregor | 7143aab | 2011-09-01 17:04:32 +0000 | [diff] [blame] | 2966 | bool IsModule; |
| 2967 | |
Douglas Gregor | a92193e | 2009-04-28 21:18:29 +0000 | [diff] [blame] | 2968 | /// \brief Determines whether this is an "interesting" identifier |
| 2969 | /// that needs a full IdentifierInfo structure written into the hash |
| 2970 | /// table. |
Argyrios Kyrtzidis | 9818a1d | 2013-02-20 00:54:57 +0000 | [diff] [blame] | 2971 | bool isInterestingIdentifier(IdentifierInfo *II, MacroDirective *&Macro) { |
Douglas Gregor | 7143aab | 2011-09-01 17:04:32 +0000 | [diff] [blame] | 2972 | if (II->isPoisoned() || |
| 2973 | II->isExtensionToken() || |
| 2974 | II->getObjCOrBuiltinID() || |
Douglas Gregor | eee242f | 2011-10-27 09:33:13 +0000 | [diff] [blame] | 2975 | II->hasRevertedTokenIDToIdentifier() || |
Douglas Gregor | 7143aab | 2011-09-01 17:04:32 +0000 | [diff] [blame] | 2976 | II->getFETokenInfo<void>()) |
| 2977 | return true; |
| 2978 | |
Alexander Kornienko | 4d7e0ce | 2012-09-25 17:18:14 +0000 | [diff] [blame] | 2979 | return hadMacroDefinition(II, Macro); |
Douglas Gregor | ce835df | 2011-09-14 22:14:14 +0000 | [diff] [blame] | 2980 | } |
Alexander Kornienko | 4d7e0ce | 2012-09-25 17:18:14 +0000 | [diff] [blame] | 2981 | |
Argyrios Kyrtzidis | 9818a1d | 2013-02-20 00:54:57 +0000 | [diff] [blame] | 2982 | bool hadMacroDefinition(IdentifierInfo *II, MacroDirective *&Macro) { |
Alexander Kornienko | 4d7e0ce | 2012-09-25 17:18:14 +0000 | [diff] [blame] | 2983 | if (!II->hadMacroDefinition()) |
Douglas Gregor | 7143aab | 2011-09-01 17:04:32 +0000 | [diff] [blame] | 2984 | return false; |
Alexander Kornienko | 4d7e0ce | 2012-09-25 17:18:14 +0000 | [diff] [blame] | 2985 | |
Argyrios Kyrtzidis | 9317ab9 | 2013-03-22 21:12:57 +0000 | [diff] [blame] | 2986 | if (Macro || (Macro = PP.getMacroDirectiveHistory(II))) { |
| 2987 | if (!IsModule) |
| 2988 | return !shouldIgnoreMacro(Macro, IsModule, PP); |
| 2989 | SubmoduleID ModID; |
| 2990 | if (getFirstPublicSubmoduleMacro(Macro, ModID)) |
| 2991 | return true; |
| 2992 | } |
Alexander Kornienko | 4d7e0ce | 2012-09-25 17:18:14 +0000 | [diff] [blame] | 2993 | |
| 2994 | return false; |
Douglas Gregor | a92193e | 2009-04-28 21:18:29 +0000 | [diff] [blame] | 2995 | } |
| 2996 | |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 2997 | typedef llvm::SmallVectorImpl<SubmoduleID> OverriddenList; |
| 2998 | |
| 2999 | MacroDirective * |
| 3000 | getFirstPublicSubmoduleMacro(MacroDirective *MD, SubmoduleID &ModID) { |
Argyrios Kyrtzidis | c56fff7 | 2013-03-26 17:17:01 +0000 | [diff] [blame] | 3001 | ModID = 0; |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 3002 | llvm::SmallVector<SubmoduleID, 1> Overridden; |
| 3003 | if (MacroDirective *NextMD = getPublicSubmoduleMacro(MD, ModID, Overridden)) |
| 3004 | if (!shouldIgnoreMacro(NextMD, IsModule, PP)) |
| 3005 | return NextMD; |
Stephen Hines | 6bcf27b | 2014-05-29 04:14:42 -0700 | [diff] [blame^] | 3006 | return nullptr; |
Argyrios Kyrtzidis | 9317ab9 | 2013-03-22 21:12:57 +0000 | [diff] [blame] | 3007 | } |
| 3008 | |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 3009 | MacroDirective * |
| 3010 | getNextPublicSubmoduleMacro(MacroDirective *MD, SubmoduleID &ModID, |
| 3011 | OverriddenList &Overridden) { |
| 3012 | if (MacroDirective *NextMD = |
| 3013 | getPublicSubmoduleMacro(MD->getPrevious(), ModID, Overridden)) |
| 3014 | if (!shouldIgnoreMacro(NextMD, IsModule, PP)) |
| 3015 | return NextMD; |
Stephen Hines | 6bcf27b | 2014-05-29 04:14:42 -0700 | [diff] [blame^] | 3016 | return nullptr; |
Argyrios Kyrtzidis | c56fff7 | 2013-03-26 17:17:01 +0000 | [diff] [blame] | 3017 | } |
| 3018 | |
| 3019 | /// \brief Traverses the macro directives history and returns the latest |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 3020 | /// public macro definition or undefinition that is not in ModID. |
| 3021 | /// A macro that is defined in submodule A and undefined in submodule B |
Argyrios Kyrtzidis | c56fff7 | 2013-03-26 17:17:01 +0000 | [diff] [blame] | 3022 | /// will still be considered as defined/exported from submodule A. |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 3023 | /// ModID is updated to the module containing the returned directive. |
| 3024 | /// |
| 3025 | /// FIXME: This process breaks down if a module defines a macro, imports |
| 3026 | /// another submodule that changes the macro, then changes the |
| 3027 | /// macro again itself. |
| 3028 | MacroDirective *getPublicSubmoduleMacro(MacroDirective *MD, |
| 3029 | SubmoduleID &ModID, |
| 3030 | OverriddenList &Overridden) { |
Argyrios Kyrtzidis | c56fff7 | 2013-03-26 17:17:01 +0000 | [diff] [blame] | 3031 | if (!MD) |
Stephen Hines | 6bcf27b | 2014-05-29 04:14:42 -0700 | [diff] [blame^] | 3032 | return nullptr; |
Argyrios Kyrtzidis | c56fff7 | 2013-03-26 17:17:01 +0000 | [diff] [blame] | 3033 | |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 3034 | Overridden.clear(); |
Argyrios Kyrtzidis | b2dbfd8 | 2013-04-03 05:11:33 +0000 | [diff] [blame] | 3035 | SubmoduleID OrigModID = ModID; |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 3036 | Optional<bool> IsPublic; |
Argyrios Kyrtzidis | c56fff7 | 2013-03-26 17:17:01 +0000 | [diff] [blame] | 3037 | for (; MD; MD = MD->getPrevious()) { |
Argyrios Kyrtzidis | c56fff7 | 2013-03-26 17:17:01 +0000 | [diff] [blame] | 3038 | SubmoduleID ThisModID = getSubmoduleID(MD); |
| 3039 | if (ThisModID == 0) { |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 3040 | IsPublic = Optional<bool>(); |
Argyrios Kyrtzidis | c56fff7 | 2013-03-26 17:17:01 +0000 | [diff] [blame] | 3041 | continue; |
| 3042 | } |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 3043 | if (ThisModID != ModID) { |
Argyrios Kyrtzidis | c56fff7 | 2013-03-26 17:17:01 +0000 | [diff] [blame] | 3044 | ModID = ThisModID; |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 3045 | IsPublic = Optional<bool>(); |
Argyrios Kyrtzidis | c56fff7 | 2013-03-26 17:17:01 +0000 | [diff] [blame] | 3046 | } |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 3047 | |
| 3048 | // If this is a definition from a submodule import, that submodule's |
| 3049 | // definition is overridden by the definition or undefinition that we |
| 3050 | // started with. |
| 3051 | // FIXME: This should only apply to macros defined in OrigModID. |
| 3052 | // We can't do that currently, because a #include of a different submodule |
| 3053 | // of the same module just leaks through macros instead of providing new |
| 3054 | // DefMacroDirectives for them. |
| 3055 | if (DefMacroDirective *DefMD = dyn_cast<DefMacroDirective>(MD)) { |
| 3056 | // Figure out which submodule the macro was originally defined within. |
| 3057 | SubmoduleID SourceID = DefMD->getInfo()->getOwningModuleID(); |
| 3058 | if (!SourceID) { |
| 3059 | SourceLocation DefLoc = DefMD->getInfo()->getDefinitionLoc(); |
| 3060 | if (DefLoc == MD->getLocation()) |
| 3061 | SourceID = ThisModID; |
| 3062 | else |
| 3063 | SourceID = Writer.inferSubmoduleIDFromLocation(DefLoc); |
| 3064 | } |
| 3065 | if (SourceID != OrigModID) |
| 3066 | Overridden.push_back(SourceID); |
| 3067 | } |
| 3068 | |
Argyrios Kyrtzidis | b2dbfd8 | 2013-04-03 05:11:33 +0000 | [diff] [blame] | 3069 | // We are looking for a definition in a different submodule than the one |
| 3070 | // that we started with. If a submodule has re-definitions of the same |
| 3071 | // macro, only the last definition will be used as the "exported" one. |
| 3072 | if (ModID == OrigModID) |
| 3073 | continue; |
Argyrios Kyrtzidis | c56fff7 | 2013-03-26 17:17:01 +0000 | [diff] [blame] | 3074 | |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 3075 | // The latest visibility directive for a name in a submodule affects all |
| 3076 | // the directives that come before it. |
| 3077 | if (VisibilityMacroDirective *VisMD = |
| 3078 | dyn_cast<VisibilityMacroDirective>(MD)) { |
| 3079 | if (!IsPublic.hasValue()) |
| 3080 | IsPublic = VisMD->isPublic(); |
| 3081 | } else if (!IsPublic.hasValue() || IsPublic.getValue()) { |
| 3082 | // FIXME: If we find an imported macro, we should include its list of |
| 3083 | // overrides in our export. |
| 3084 | return MD; |
Argyrios Kyrtzidis | c56fff7 | 2013-03-26 17:17:01 +0000 | [diff] [blame] | 3085 | } |
Argyrios Kyrtzidis | 9317ab9 | 2013-03-22 21:12:57 +0000 | [diff] [blame] | 3086 | } |
Argyrios Kyrtzidis | c56fff7 | 2013-03-26 17:17:01 +0000 | [diff] [blame] | 3087 | |
Stephen Hines | 6bcf27b | 2014-05-29 04:14:42 -0700 | [diff] [blame^] | 3088 | return nullptr; |
Argyrios Kyrtzidis | 9317ab9 | 2013-03-22 21:12:57 +0000 | [diff] [blame] | 3089 | } |
| 3090 | |
| 3091 | SubmoduleID getSubmoduleID(MacroDirective *MD) { |
Argyrios Kyrtzidis | c56fff7 | 2013-03-26 17:17:01 +0000 | [diff] [blame] | 3092 | return Writer.inferSubmoduleIDFromLocation(MD->getLocation()); |
Argyrios Kyrtzidis | 9317ab9 | 2013-03-22 21:12:57 +0000 | [diff] [blame] | 3093 | } |
| 3094 | |
Douglas Gregor | 3251ceb | 2009-04-20 20:36:09 +0000 | [diff] [blame] | 3095 | public: |
Douglas Gregor | 7143aab | 2011-09-01 17:04:32 +0000 | [diff] [blame] | 3096 | typedef IdentifierInfo* key_type; |
Douglas Gregor | 3251ceb | 2009-04-20 20:36:09 +0000 | [diff] [blame] | 3097 | typedef key_type key_type_ref; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3098 | |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 3099 | typedef IdentID data_type; |
Douglas Gregor | 3251ceb | 2009-04-20 20:36:09 +0000 | [diff] [blame] | 3100 | typedef data_type data_type_ref; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3101 | |
Stephen Hines | 6bcf27b | 2014-05-29 04:14:42 -0700 | [diff] [blame^] | 3102 | typedef unsigned hash_value_type; |
| 3103 | typedef unsigned offset_type; |
| 3104 | |
Douglas Gregor | eee242f | 2011-10-27 09:33:13 +0000 | [diff] [blame] | 3105 | ASTIdentifierTableTrait(ASTWriter &Writer, Preprocessor &PP, |
| 3106 | IdentifierResolver &IdResolver, bool IsModule) |
| 3107 | : Writer(Writer), PP(PP), IdResolver(IdResolver), IsModule(IsModule) { } |
Douglas Gregor | 3251ceb | 2009-04-20 20:36:09 +0000 | [diff] [blame] | 3108 | |
Stephen Hines | 6bcf27b | 2014-05-29 04:14:42 -0700 | [diff] [blame^] | 3109 | static hash_value_type ComputeHash(const IdentifierInfo* II) { |
Daniel Dunbar | 2596e42 | 2009-10-17 23:52:28 +0000 | [diff] [blame] | 3110 | return llvm::HashString(II->getName()); |
Douglas Gregor | 3251ceb | 2009-04-20 20:36:09 +0000 | [diff] [blame] | 3111 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3112 | |
| 3113 | std::pair<unsigned,unsigned> |
Douglas Gregor | eee242f | 2011-10-27 09:33:13 +0000 | [diff] [blame] | 3114 | EmitKeyDataLength(raw_ostream& Out, IdentifierInfo* II, IdentID ID) { |
Daniel Dunbar | e013d68 | 2009-10-18 20:26:12 +0000 | [diff] [blame] | 3115 | unsigned KeyLen = II->getLength() + 1; |
Douglas Gregor | a92193e | 2009-04-28 21:18:29 +0000 | [diff] [blame] | 3116 | unsigned DataLen = 4; // 4 bytes for the persistent ID << 1 |
Stephen Hines | 6bcf27b | 2014-05-29 04:14:42 -0700 | [diff] [blame^] | 3117 | MacroDirective *Macro = nullptr; |
Douglas Gregor | 7143aab | 2011-09-01 17:04:32 +0000 | [diff] [blame] | 3118 | if (isInterestingIdentifier(II, Macro)) { |
Alexander Kornienko | 4d7e0ce | 2012-09-25 17:18:14 +0000 | [diff] [blame] | 3119 | DataLen += 2; // 2 bytes for builtin ID |
| 3120 | DataLen += 2; // 2 bytes for flags |
Argyrios Kyrtzidis | dc1088f | 2013-01-19 03:14:56 +0000 | [diff] [blame] | 3121 | if (hadMacroDefinition(II, Macro)) { |
Argyrios Kyrtzidis | 9317ab9 | 2013-03-22 21:12:57 +0000 | [diff] [blame] | 3122 | DataLen += 4; // MacroDirectives offset. |
| 3123 | if (IsModule) { |
| 3124 | SubmoduleID ModID; |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 3125 | llvm::SmallVector<SubmoduleID, 4> Overridden; |
| 3126 | for (MacroDirective * |
| 3127 | MD = getFirstPublicSubmoduleMacro(Macro, ModID); |
| 3128 | MD; MD = getNextPublicSubmoduleMacro(MD, ModID, Overridden)) { |
| 3129 | // Previous macro's overrides. |
| 3130 | if (!Overridden.empty()) |
| 3131 | DataLen += 4 * (1 + Overridden.size()); |
| 3132 | DataLen += 4; // MacroInfo ID or ModuleID. |
Argyrios Kyrtzidis | 9317ab9 | 2013-03-22 21:12:57 +0000 | [diff] [blame] | 3133 | } |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 3134 | // Previous macro's overrides. |
| 3135 | if (!Overridden.empty()) |
| 3136 | DataLen += 4 * (1 + Overridden.size()); |
Argyrios Kyrtzidis | 9317ab9 | 2013-03-22 21:12:57 +0000 | [diff] [blame] | 3137 | DataLen += 4; |
Argyrios Kyrtzidis | dc1088f | 2013-01-19 03:14:56 +0000 | [diff] [blame] | 3138 | } |
Argyrios Kyrtzidis | dc1088f | 2013-01-19 03:14:56 +0000 | [diff] [blame] | 3139 | } |
Alexander Kornienko | 4d7e0ce | 2012-09-25 17:18:14 +0000 | [diff] [blame] | 3140 | |
Douglas Gregor | eee242f | 2011-10-27 09:33:13 +0000 | [diff] [blame] | 3141 | for (IdentifierResolver::iterator D = IdResolver.begin(II), |
| 3142 | DEnd = IdResolver.end(); |
Douglas Gregor | a92193e | 2009-04-28 21:18:29 +0000 | [diff] [blame] | 3143 | D != DEnd; ++D) |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 3144 | DataLen += sizeof(DeclID); |
Douglas Gregor | a92193e | 2009-04-28 21:18:29 +0000 | [diff] [blame] | 3145 | } |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 3146 | using namespace llvm::support; |
| 3147 | endian::Writer<little> LE(Out); |
| 3148 | |
| 3149 | LE.write<uint16_t>(DataLen); |
Douglas Gregor | 02fc751 | 2009-04-28 20:01:51 +0000 | [diff] [blame] | 3150 | // We emit the key length after the data length so that every |
| 3151 | // string is preceded by a 16-bit length. This matches the PTH |
| 3152 | // format for storing identifiers. |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 3153 | LE.write<uint16_t>(KeyLen); |
Douglas Gregor | 3251ceb | 2009-04-20 20:36:09 +0000 | [diff] [blame] | 3154 | return std::make_pair(KeyLen, DataLen); |
| 3155 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3156 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 3157 | void EmitKey(raw_ostream& Out, const IdentifierInfo* II, |
Douglas Gregor | 3251ceb | 2009-04-20 20:36:09 +0000 | [diff] [blame] | 3158 | unsigned KeyLen) { |
| 3159 | // Record the location of the key data. This is used when generating |
| 3160 | // the mapping from persistent IDs to strings. |
| 3161 | Writer.SetIdentifierOffset(II, Out.tell()); |
Daniel Dunbar | e013d68 | 2009-10-18 20:26:12 +0000 | [diff] [blame] | 3162 | Out.write(II->getNameStart(), KeyLen); |
Douglas Gregor | 3251ceb | 2009-04-20 20:36:09 +0000 | [diff] [blame] | 3163 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3164 | |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 3165 | static void emitMacroOverrides(raw_ostream &Out, |
| 3166 | llvm::ArrayRef<SubmoduleID> Overridden) { |
| 3167 | if (!Overridden.empty()) { |
| 3168 | using namespace llvm::support; |
| 3169 | endian::Writer<little> LE(Out); |
| 3170 | LE.write<uint32_t>(Overridden.size() | 0x80000000U); |
| 3171 | for (unsigned I = 0, N = Overridden.size(); I != N; ++I) |
| 3172 | LE.write<uint32_t>(Overridden[I]); |
| 3173 | } |
| 3174 | } |
| 3175 | |
Douglas Gregor | 7143aab | 2011-09-01 17:04:32 +0000 | [diff] [blame] | 3176 | void EmitData(raw_ostream& Out, IdentifierInfo* II, |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 3177 | IdentID ID, unsigned) { |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 3178 | using namespace llvm::support; |
| 3179 | endian::Writer<little> LE(Out); |
Stephen Hines | 6bcf27b | 2014-05-29 04:14:42 -0700 | [diff] [blame^] | 3180 | MacroDirective *Macro = nullptr; |
Douglas Gregor | 7143aab | 2011-09-01 17:04:32 +0000 | [diff] [blame] | 3181 | if (!isInterestingIdentifier(II, Macro)) { |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 3182 | LE.write<uint32_t>(ID << 1); |
Douglas Gregor | a92193e | 2009-04-28 21:18:29 +0000 | [diff] [blame] | 3183 | return; |
| 3184 | } |
Douglas Gregor | 5998da5 | 2009-04-28 21:32:13 +0000 | [diff] [blame] | 3185 | |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 3186 | LE.write<uint32_t>((ID << 1) | 0x01); |
Alexander Kornienko | 4d7e0ce | 2012-09-25 17:18:14 +0000 | [diff] [blame] | 3187 | uint32_t Bits = (uint32_t)II->getObjCOrBuiltinID(); |
| 3188 | assert((Bits & 0xffff) == Bits && "ObjCOrBuiltinID too big for ASTReader."); |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 3189 | LE.write<uint16_t>(Bits); |
Alexander Kornienko | 4d7e0ce | 2012-09-25 17:18:14 +0000 | [diff] [blame] | 3190 | Bits = 0; |
| 3191 | bool HadMacroDefinition = hadMacroDefinition(II, Macro); |
Alexander Kornienko | 4d7e0ce | 2012-09-25 17:18:14 +0000 | [diff] [blame] | 3192 | Bits = (Bits << 1) | unsigned(HadMacroDefinition); |
Argyrios Kyrtzidis | 9317ab9 | 2013-03-22 21:12:57 +0000 | [diff] [blame] | 3193 | Bits = (Bits << 1) | unsigned(IsModule); |
Daniel Dunbar | b0b8438 | 2009-12-18 20:58:47 +0000 | [diff] [blame] | 3194 | Bits = (Bits << 1) | unsigned(II->isExtensionToken()); |
| 3195 | Bits = (Bits << 1) | unsigned(II->isPoisoned()); |
Argyrios Kyrtzidis | 646395b | 2010-08-11 22:55:12 +0000 | [diff] [blame] | 3196 | Bits = (Bits << 1) | unsigned(II->hasRevertedTokenIDToIdentifier()); |
Daniel Dunbar | b0b8438 | 2009-12-18 20:58:47 +0000 | [diff] [blame] | 3197 | Bits = (Bits << 1) | unsigned(II->isCPlusPlusOperatorKeyword()); |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 3198 | LE.write<uint16_t>(Bits); |
Douglas Gregor | 3251ceb | 2009-04-20 20:36:09 +0000 | [diff] [blame] | 3199 | |
Alexander Kornienko | 4d7e0ce | 2012-09-25 17:18:14 +0000 | [diff] [blame] | 3200 | if (HadMacroDefinition) { |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 3201 | LE.write<uint32_t>(Writer.getMacroDirectivesOffset(II)); |
Argyrios Kyrtzidis | 9317ab9 | 2013-03-22 21:12:57 +0000 | [diff] [blame] | 3202 | if (IsModule) { |
| 3203 | // Write the IDs of macros coming from different submodules. |
| 3204 | SubmoduleID ModID; |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 3205 | llvm::SmallVector<SubmoduleID, 4> Overridden; |
| 3206 | for (MacroDirective * |
| 3207 | MD = getFirstPublicSubmoduleMacro(Macro, ModID); |
| 3208 | MD; MD = getNextPublicSubmoduleMacro(MD, ModID, Overridden)) { |
| 3209 | MacroID InfoID = 0; |
| 3210 | emitMacroOverrides(Out, Overridden); |
| 3211 | if (DefMacroDirective *DefMD = dyn_cast<DefMacroDirective>(MD)) { |
| 3212 | InfoID = Writer.getMacroID(DefMD->getInfo()); |
| 3213 | assert(InfoID); |
| 3214 | LE.write<uint32_t>(InfoID << 1); |
| 3215 | } else { |
| 3216 | assert(isa<UndefMacroDirective>(MD)); |
| 3217 | LE.write<uint32_t>((ModID << 1) | 1); |
| 3218 | } |
Argyrios Kyrtzidis | 9317ab9 | 2013-03-22 21:12:57 +0000 | [diff] [blame] | 3219 | } |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 3220 | emitMacroOverrides(Out, Overridden); |
| 3221 | LE.write<uint32_t>(0); |
Argyrios Kyrtzidis | dc1088f | 2013-01-19 03:14:56 +0000 | [diff] [blame] | 3222 | } |
Douglas Gregor | 1329264 | 2011-12-02 15:45:10 +0000 | [diff] [blame] | 3223 | } |
Alexander Kornienko | 4d7e0ce | 2012-09-25 17:18:14 +0000 | [diff] [blame] | 3224 | |
Douglas Gregor | 668c1a4 | 2009-04-21 22:25:48 +0000 | [diff] [blame] | 3225 | // Emit the declaration IDs in reverse order, because the |
| 3226 | // IdentifierResolver provides the declarations as they would be |
| 3227 | // visible (e.g., the function "stat" would come before the struct |
Douglas Gregor | eee242f | 2011-10-27 09:33:13 +0000 | [diff] [blame] | 3228 | // "stat"), but the ASTReader adds declarations to the end of the list |
| 3229 | // (so we need to see the struct "status" before the function "status"). |
Sebastian Redl | f2f0f03 | 2010-07-23 23:49:55 +0000 | [diff] [blame] | 3230 | // Only emit declarations that aren't from a chained PCH, though. |
Douglas Gregor | eee242f | 2011-10-27 09:33:13 +0000 | [diff] [blame] | 3231 | SmallVector<Decl *, 16> Decls(IdResolver.begin(II), |
| 3232 | IdResolver.end()); |
Craig Topper | 09d19ef | 2013-07-04 03:08:24 +0000 | [diff] [blame] | 3233 | for (SmallVectorImpl<Decl *>::reverse_iterator D = Decls.rbegin(), |
Douglas Gregor | eee242f | 2011-10-27 09:33:13 +0000 | [diff] [blame] | 3234 | DEnd = Decls.rend(); |
Douglas Gregor | 3251ceb | 2009-04-20 20:36:09 +0000 | [diff] [blame] | 3235 | D != DEnd; ++D) |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 3236 | LE.write<uint32_t>(Writer.getDeclID(getMostRecentLocalDecl(*D))); |
Argyrios Kyrtzidis | 0532df0 | 2013-04-26 21:33:35 +0000 | [diff] [blame] | 3237 | } |
| 3238 | |
| 3239 | /// \brief Returns the most recent local decl or the given decl if there are |
| 3240 | /// no local ones. The given decl is assumed to be the most recent one. |
| 3241 | Decl *getMostRecentLocalDecl(Decl *Orig) { |
| 3242 | // The only way a "from AST file" decl would be more recent from a local one |
| 3243 | // is if it came from a module. |
| 3244 | if (!PP.getLangOpts().Modules) |
| 3245 | return Orig; |
| 3246 | |
| 3247 | // Look for a local in the decl chain. |
| 3248 | for (Decl *D = Orig; D; D = D->getPreviousDecl()) { |
| 3249 | if (!D->isFromASTFile()) |
| 3250 | return D; |
| 3251 | // If we come up a decl from a (chained-)PCH stop since we won't find a |
| 3252 | // local one. |
| 3253 | if (D->getOwningModuleID() == 0) |
| 3254 | break; |
| 3255 | } |
| 3256 | |
| 3257 | return Orig; |
Douglas Gregor | 3251ceb | 2009-04-20 20:36:09 +0000 | [diff] [blame] | 3258 | } |
| 3259 | }; |
| 3260 | } // end anonymous namespace |
| 3261 | |
Sebastian Redl | 3397c55 | 2010-08-18 23:56:27 +0000 | [diff] [blame] | 3262 | /// \brief Write the identifier table into the AST file. |
Douglas Gregor | afaf308 | 2009-04-11 00:14:32 +0000 | [diff] [blame] | 3263 | /// |
| 3264 | /// The identifier table consists of a blob containing string data |
| 3265 | /// (the actual identifiers themselves) and a separate "offsets" index |
| 3266 | /// that maps identifier IDs to locations within the blob. |
Douglas Gregor | eee242f | 2011-10-27 09:33:13 +0000 | [diff] [blame] | 3267 | void ASTWriter::WriteIdentifierTable(Preprocessor &PP, |
| 3268 | IdentifierResolver &IdResolver, |
| 3269 | bool IsModule) { |
Douglas Gregor | afaf308 | 2009-04-11 00:14:32 +0000 | [diff] [blame] | 3270 | using namespace llvm; |
| 3271 | |
| 3272 | // Create and write out the blob that contains the identifier |
| 3273 | // strings. |
Douglas Gregor | afaf308 | 2009-04-11 00:14:32 +0000 | [diff] [blame] | 3274 | { |
Stephen Hines | 6bcf27b | 2014-05-29 04:14:42 -0700 | [diff] [blame^] | 3275 | llvm::OnDiskChainedHashTableGenerator<ASTIdentifierTableTrait> Generator; |
Douglas Gregor | eee242f | 2011-10-27 09:33:13 +0000 | [diff] [blame] | 3276 | ASTIdentifierTableTrait Trait(*this, PP, IdResolver, IsModule); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3277 | |
Douglas Gregor | 92b059e | 2009-04-28 20:33:11 +0000 | [diff] [blame] | 3278 | // Look for any identifiers that were named while processing the |
| 3279 | // headers, but are otherwise not needed. We add these to the hash |
| 3280 | // table to enable checking of the predefines buffer in the case |
Sebastian Redl | 3397c55 | 2010-08-18 23:56:27 +0000 | [diff] [blame] | 3281 | // where the user adds new macro definitions when building the AST |
Douglas Gregor | 92b059e | 2009-04-28 20:33:11 +0000 | [diff] [blame] | 3282 | // file. |
| 3283 | for (IdentifierTable::iterator ID = PP.getIdentifierTable().begin(), |
| 3284 | IDEnd = PP.getIdentifierTable().end(); |
| 3285 | ID != IDEnd; ++ID) |
| 3286 | getIdentifierRef(ID->second); |
| 3287 | |
Sebastian Redl | f2f0f03 | 2010-07-23 23:49:55 +0000 | [diff] [blame] | 3288 | // Create the on-disk hash table representation. We only store offsets |
| 3289 | // for identifiers that appear here for the first time. |
| 3290 | IdentifierOffsets.resize(NextIdentID - FirstIdentID); |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 3291 | for (llvm::DenseMap<const IdentifierInfo *, IdentID>::iterator |
Douglas Gregor | afaf308 | 2009-04-11 00:14:32 +0000 | [diff] [blame] | 3292 | ID = IdentifierIDs.begin(), IDEnd = IdentifierIDs.end(); |
| 3293 | ID != IDEnd; ++ID) { |
| 3294 | assert(ID->first && "NULL identifier in identifier table"); |
Douglas Gregor | eee242f | 2011-10-27 09:33:13 +0000 | [diff] [blame] | 3295 | if (!Chain || !ID->first->isFromAST() || |
| 3296 | ID->first->hasChangedSinceDeserialization()) |
Douglas Gregor | 2d1ece8 | 2013-02-08 21:30:59 +0000 | [diff] [blame] | 3297 | Generator.insert(const_cast<IdentifierInfo *>(ID->first), ID->second, |
Douglas Gregor | 7143aab | 2011-09-01 17:04:32 +0000 | [diff] [blame] | 3298 | Trait); |
Douglas Gregor | 3251ceb | 2009-04-20 20:36:09 +0000 | [diff] [blame] | 3299 | } |
Douglas Gregor | afaf308 | 2009-04-11 00:14:32 +0000 | [diff] [blame] | 3300 | |
Douglas Gregor | 3251ceb | 2009-04-20 20:36:09 +0000 | [diff] [blame] | 3301 | // Create the on-disk hash table in a buffer. |
Dylan Noblesmith | f7ccbad | 2012-02-05 02:13:05 +0000 | [diff] [blame] | 3302 | SmallString<4096> IdentifierTable; |
Douglas Gregor | 668c1a4 | 2009-04-21 22:25:48 +0000 | [diff] [blame] | 3303 | uint32_t BucketOffset; |
Douglas Gregor | 3251ceb | 2009-04-20 20:36:09 +0000 | [diff] [blame] | 3304 | { |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 3305 | using namespace llvm::support; |
Douglas Gregor | eee242f | 2011-10-27 09:33:13 +0000 | [diff] [blame] | 3306 | ASTIdentifierTableTrait Trait(*this, PP, IdResolver, IsModule); |
Douglas Gregor | 3251ceb | 2009-04-20 20:36:09 +0000 | [diff] [blame] | 3307 | llvm::raw_svector_ostream Out(IdentifierTable); |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 3308 | // Make sure that no bucket is at offset 0 |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 3309 | endian::Writer<little>(Out).write<uint32_t>(0); |
Douglas Gregor | 668c1a4 | 2009-04-21 22:25:48 +0000 | [diff] [blame] | 3310 | BucketOffset = Generator.Emit(Out, Trait); |
Douglas Gregor | afaf308 | 2009-04-11 00:14:32 +0000 | [diff] [blame] | 3311 | } |
| 3312 | |
| 3313 | // Create a blob abbreviation |
| 3314 | BitCodeAbbrev *Abbrev = new BitCodeAbbrev(); |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 3315 | Abbrev->Add(BitCodeAbbrevOp(IDENTIFIER_TABLE)); |
Douglas Gregor | 668c1a4 | 2009-04-21 22:25:48 +0000 | [diff] [blame] | 3316 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); |
Douglas Gregor | 3251ceb | 2009-04-20 20:36:09 +0000 | [diff] [blame] | 3317 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); |
Douglas Gregor | c9490c0 | 2009-04-16 22:23:12 +0000 | [diff] [blame] | 3318 | unsigned IDTableAbbrev = Stream.EmitAbbrev(Abbrev); |
Douglas Gregor | afaf308 | 2009-04-11 00:14:32 +0000 | [diff] [blame] | 3319 | |
| 3320 | // Write the identifier table |
| 3321 | RecordData Record; |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 3322 | Record.push_back(IDENTIFIER_TABLE); |
Douglas Gregor | 668c1a4 | 2009-04-21 22:25:48 +0000 | [diff] [blame] | 3323 | Record.push_back(BucketOffset); |
Daniel Dunbar | ec312a1 | 2009-08-24 09:31:37 +0000 | [diff] [blame] | 3324 | Stream.EmitRecordWithBlob(IDTableAbbrev, Record, IdentifierTable.str()); |
Douglas Gregor | afaf308 | 2009-04-11 00:14:32 +0000 | [diff] [blame] | 3325 | } |
| 3326 | |
| 3327 | // Write the offsets table for identifier IDs. |
Douglas Gregor | 2b3a5a8 | 2009-04-25 19:10:14 +0000 | [diff] [blame] | 3328 | BitCodeAbbrev *Abbrev = new BitCodeAbbrev(); |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 3329 | Abbrev->Add(BitCodeAbbrevOp(IDENTIFIER_OFFSET)); |
Douglas Gregor | 2b3a5a8 | 2009-04-25 19:10:14 +0000 | [diff] [blame] | 3330 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // # of identifiers |
Douglas Gregor | 6ec60e0 | 2011-08-03 21:49:18 +0000 | [diff] [blame] | 3331 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // first ID |
Douglas Gregor | 2b3a5a8 | 2009-04-25 19:10:14 +0000 | [diff] [blame] | 3332 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); |
| 3333 | unsigned IdentifierOffsetAbbrev = Stream.EmitAbbrev(Abbrev); |
| 3334 | |
Douglas Gregor | 2d1ece8 | 2013-02-08 21:30:59 +0000 | [diff] [blame] | 3335 | #ifndef NDEBUG |
| 3336 | for (unsigned I = 0, N = IdentifierOffsets.size(); I != N; ++I) |
| 3337 | assert(IdentifierOffsets[I] && "Missing identifier offset?"); |
| 3338 | #endif |
| 3339 | |
Douglas Gregor | 2b3a5a8 | 2009-04-25 19:10:14 +0000 | [diff] [blame] | 3340 | RecordData Record; |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 3341 | Record.push_back(IDENTIFIER_OFFSET); |
Douglas Gregor | 2b3a5a8 | 2009-04-25 19:10:14 +0000 | [diff] [blame] | 3342 | Record.push_back(IdentifierOffsets.size()); |
Douglas Gregor | 6ec60e0 | 2011-08-03 21:49:18 +0000 | [diff] [blame] | 3343 | Record.push_back(FirstIdentID - NUM_PREDEF_IDENT_IDS); |
Douglas Gregor | 2b3a5a8 | 2009-04-25 19:10:14 +0000 | [diff] [blame] | 3344 | Stream.EmitRecordWithBlob(IdentifierOffsetAbbrev, Record, |
Benjamin Kramer | 6e089c6 | 2011-04-24 17:44:50 +0000 | [diff] [blame] | 3345 | data(IdentifierOffsets)); |
Douglas Gregor | afaf308 | 2009-04-11 00:14:32 +0000 | [diff] [blame] | 3346 | } |
| 3347 | |
Douglas Gregor | 4fed3f4 | 2009-04-27 18:38:38 +0000 | [diff] [blame] | 3348 | //===----------------------------------------------------------------------===// |
Argyrios Kyrtzidis | 5d26768 | 2010-08-20 16:04:27 +0000 | [diff] [blame] | 3349 | // DeclContext's Name Lookup Table Serialization |
| 3350 | //===----------------------------------------------------------------------===// |
| 3351 | |
| 3352 | namespace { |
| 3353 | // Trait used for the on-disk hash table used in the method pool. |
| 3354 | class ASTDeclContextNameLookupTrait { |
| 3355 | ASTWriter &Writer; |
| 3356 | |
| 3357 | public: |
| 3358 | typedef DeclarationName key_type; |
| 3359 | typedef key_type key_type_ref; |
| 3360 | |
| 3361 | typedef DeclContext::lookup_result data_type; |
| 3362 | typedef const data_type& data_type_ref; |
| 3363 | |
Stephen Hines | 6bcf27b | 2014-05-29 04:14:42 -0700 | [diff] [blame^] | 3364 | typedef unsigned hash_value_type; |
| 3365 | typedef unsigned offset_type; |
| 3366 | |
Argyrios Kyrtzidis | 5d26768 | 2010-08-20 16:04:27 +0000 | [diff] [blame] | 3367 | explicit ASTDeclContextNameLookupTrait(ASTWriter &Writer) : Writer(Writer) { } |
| 3368 | |
Stephen Hines | 6bcf27b | 2014-05-29 04:14:42 -0700 | [diff] [blame^] | 3369 | hash_value_type ComputeHash(DeclarationName Name) { |
Argyrios Kyrtzidis | 5d26768 | 2010-08-20 16:04:27 +0000 | [diff] [blame] | 3370 | llvm::FoldingSetNodeID ID; |
| 3371 | ID.AddInteger(Name.getNameKind()); |
| 3372 | |
| 3373 | switch (Name.getNameKind()) { |
| 3374 | case DeclarationName::Identifier: |
| 3375 | ID.AddString(Name.getAsIdentifierInfo()->getName()); |
| 3376 | break; |
| 3377 | case DeclarationName::ObjCZeroArgSelector: |
| 3378 | case DeclarationName::ObjCOneArgSelector: |
| 3379 | case DeclarationName::ObjCMultiArgSelector: |
| 3380 | ID.AddInteger(serialization::ComputeHash(Name.getObjCSelector())); |
| 3381 | break; |
| 3382 | case DeclarationName::CXXConstructorName: |
| 3383 | case DeclarationName::CXXDestructorName: |
| 3384 | case DeclarationName::CXXConversionFunctionName: |
Argyrios Kyrtzidis | 5d26768 | 2010-08-20 16:04:27 +0000 | [diff] [blame] | 3385 | break; |
| 3386 | case DeclarationName::CXXOperatorName: |
| 3387 | ID.AddInteger(Name.getCXXOverloadedOperator()); |
| 3388 | break; |
| 3389 | case DeclarationName::CXXLiteralOperatorName: |
| 3390 | ID.AddString(Name.getCXXLiteralIdentifier()->getName()); |
| 3391 | case DeclarationName::CXXUsingDirective: |
| 3392 | break; |
| 3393 | } |
| 3394 | |
| 3395 | return ID.ComputeHash(); |
| 3396 | } |
| 3397 | |
| 3398 | std::pair<unsigned,unsigned> |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 3399 | EmitKeyDataLength(raw_ostream& Out, DeclarationName Name, |
Argyrios Kyrtzidis | 5d26768 | 2010-08-20 16:04:27 +0000 | [diff] [blame] | 3400 | data_type_ref Lookup) { |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 3401 | using namespace llvm::support; |
| 3402 | endian::Writer<little> LE(Out); |
Argyrios Kyrtzidis | 5d26768 | 2010-08-20 16:04:27 +0000 | [diff] [blame] | 3403 | unsigned KeyLen = 1; |
| 3404 | switch (Name.getNameKind()) { |
| 3405 | case DeclarationName::Identifier: |
| 3406 | case DeclarationName::ObjCZeroArgSelector: |
| 3407 | case DeclarationName::ObjCOneArgSelector: |
| 3408 | case DeclarationName::ObjCMultiArgSelector: |
Argyrios Kyrtzidis | 5d26768 | 2010-08-20 16:04:27 +0000 | [diff] [blame] | 3409 | case DeclarationName::CXXLiteralOperatorName: |
| 3410 | KeyLen += 4; |
| 3411 | break; |
| 3412 | case DeclarationName::CXXOperatorName: |
| 3413 | KeyLen += 1; |
| 3414 | break; |
Douglas Gregor | e360501 | 2011-08-02 18:32:54 +0000 | [diff] [blame] | 3415 | case DeclarationName::CXXConstructorName: |
| 3416 | case DeclarationName::CXXDestructorName: |
| 3417 | case DeclarationName::CXXConversionFunctionName: |
Argyrios Kyrtzidis | 5d26768 | 2010-08-20 16:04:27 +0000 | [diff] [blame] | 3418 | case DeclarationName::CXXUsingDirective: |
| 3419 | break; |
| 3420 | } |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 3421 | LE.write<uint16_t>(KeyLen); |
Argyrios Kyrtzidis | 5d26768 | 2010-08-20 16:04:27 +0000 | [diff] [blame] | 3422 | |
| 3423 | // 2 bytes for num of decls and 4 for each DeclID. |
David Blaikie | 3bc93e3 | 2012-12-19 00:45:41 +0000 | [diff] [blame] | 3424 | unsigned DataLen = 2 + 4 * Lookup.size(); |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 3425 | LE.write<uint16_t>(DataLen); |
Argyrios Kyrtzidis | 5d26768 | 2010-08-20 16:04:27 +0000 | [diff] [blame] | 3426 | |
| 3427 | return std::make_pair(KeyLen, DataLen); |
| 3428 | } |
| 3429 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 3430 | void EmitKey(raw_ostream& Out, DeclarationName Name, unsigned) { |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 3431 | using namespace llvm::support; |
| 3432 | endian::Writer<little> LE(Out); |
| 3433 | LE.write<uint8_t>(Name.getNameKind()); |
Argyrios Kyrtzidis | 5d26768 | 2010-08-20 16:04:27 +0000 | [diff] [blame] | 3434 | switch (Name.getNameKind()) { |
| 3435 | case DeclarationName::Identifier: |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 3436 | LE.write<uint32_t>(Writer.getIdentifierRef(Name.getAsIdentifierInfo())); |
Benjamin Kramer | 5931331 | 2012-09-19 13:40:40 +0000 | [diff] [blame] | 3437 | return; |
Argyrios Kyrtzidis | 5d26768 | 2010-08-20 16:04:27 +0000 | [diff] [blame] | 3438 | case DeclarationName::ObjCZeroArgSelector: |
| 3439 | case DeclarationName::ObjCOneArgSelector: |
| 3440 | case DeclarationName::ObjCMultiArgSelector: |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 3441 | LE.write<uint32_t>(Writer.getSelectorRef(Name.getObjCSelector())); |
Benjamin Kramer | 5931331 | 2012-09-19 13:40:40 +0000 | [diff] [blame] | 3442 | return; |
Argyrios Kyrtzidis | 5d26768 | 2010-08-20 16:04:27 +0000 | [diff] [blame] | 3443 | case DeclarationName::CXXOperatorName: |
Benjamin Kramer | 5931331 | 2012-09-19 13:40:40 +0000 | [diff] [blame] | 3444 | assert(Name.getCXXOverloadedOperator() < NUM_OVERLOADED_OPERATORS && |
| 3445 | "Invalid operator?"); |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 3446 | LE.write<uint8_t>(Name.getCXXOverloadedOperator()); |
Benjamin Kramer | 5931331 | 2012-09-19 13:40:40 +0000 | [diff] [blame] | 3447 | return; |
Argyrios Kyrtzidis | 5d26768 | 2010-08-20 16:04:27 +0000 | [diff] [blame] | 3448 | case DeclarationName::CXXLiteralOperatorName: |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 3449 | LE.write<uint32_t>(Writer.getIdentifierRef(Name.getCXXLiteralIdentifier())); |
Benjamin Kramer | 5931331 | 2012-09-19 13:40:40 +0000 | [diff] [blame] | 3450 | return; |
Douglas Gregor | e360501 | 2011-08-02 18:32:54 +0000 | [diff] [blame] | 3451 | case DeclarationName::CXXConstructorName: |
| 3452 | case DeclarationName::CXXDestructorName: |
| 3453 | case DeclarationName::CXXConversionFunctionName: |
Argyrios Kyrtzidis | 5d26768 | 2010-08-20 16:04:27 +0000 | [diff] [blame] | 3454 | case DeclarationName::CXXUsingDirective: |
Benjamin Kramer | 5931331 | 2012-09-19 13:40:40 +0000 | [diff] [blame] | 3455 | return; |
Argyrios Kyrtzidis | 5d26768 | 2010-08-20 16:04:27 +0000 | [diff] [blame] | 3456 | } |
Benjamin Kramer | 5931331 | 2012-09-19 13:40:40 +0000 | [diff] [blame] | 3457 | |
| 3458 | llvm_unreachable("Invalid name kind?"); |
Argyrios Kyrtzidis | 5d26768 | 2010-08-20 16:04:27 +0000 | [diff] [blame] | 3459 | } |
| 3460 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 3461 | void EmitData(raw_ostream& Out, key_type_ref, |
Argyrios Kyrtzidis | 5d26768 | 2010-08-20 16:04:27 +0000 | [diff] [blame] | 3462 | data_type Lookup, unsigned DataLen) { |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 3463 | using namespace llvm::support; |
| 3464 | endian::Writer<little> LE(Out); |
Argyrios Kyrtzidis | 5d26768 | 2010-08-20 16:04:27 +0000 | [diff] [blame] | 3465 | uint64_t Start = Out.tell(); (void)Start; |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 3466 | LE.write<uint16_t>(Lookup.size()); |
David Blaikie | 3bc93e3 | 2012-12-19 00:45:41 +0000 | [diff] [blame] | 3467 | for (DeclContext::lookup_iterator I = Lookup.begin(), E = Lookup.end(); |
| 3468 | I != E; ++I) |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 3469 | LE.write<uint32_t>(Writer.GetDeclRef(*I)); |
Argyrios Kyrtzidis | 5d26768 | 2010-08-20 16:04:27 +0000 | [diff] [blame] | 3470 | |
| 3471 | assert(Out.tell() - Start == DataLen && "Data length is wrong"); |
| 3472 | } |
| 3473 | }; |
| 3474 | } // end anonymous namespace |
| 3475 | |
Stephen Hines | 6bcf27b | 2014-05-29 04:14:42 -0700 | [diff] [blame^] | 3476 | template<typename Visitor> |
| 3477 | static void visitLocalLookupResults(const DeclContext *ConstDC, |
| 3478 | bool NeedToReconcileExternalVisibleStorage, |
| 3479 | Visitor AddLookupResult) { |
| 3480 | // FIXME: We need to build the lookups table, which is logically const. |
| 3481 | DeclContext *DC = const_cast<DeclContext*>(ConstDC); |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 3482 | assert(DC == DC->getPrimaryContext() && "only primary DC has lookup table"); |
| 3483 | |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 3484 | SmallVector<DeclarationName, 16> ExternalNames; |
Stephen Hines | 6bcf27b | 2014-05-29 04:14:42 -0700 | [diff] [blame^] | 3485 | for (auto &Lookup : *DC->buildLookup()) { |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 3486 | if (Lookup.second.hasExternalDecls() || |
Stephen Hines | 6bcf27b | 2014-05-29 04:14:42 -0700 | [diff] [blame^] | 3487 | NeedToReconcileExternalVisibleStorage) { |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 3488 | // We don't know for sure what declarations are found by this name, |
| 3489 | // because the external source might have a different set from the set |
| 3490 | // that are in the lookup map, and we can't update it now without |
| 3491 | // risking invalidating our lookup iterator. So add it to a queue to |
| 3492 | // deal with later. |
| 3493 | ExternalNames.push_back(Lookup.first); |
| 3494 | continue; |
| 3495 | } |
| 3496 | |
| 3497 | AddLookupResult(Lookup.first, Lookup.second.getLookupResult()); |
| 3498 | } |
| 3499 | |
| 3500 | // Add the names we needed to defer. Note, this shouldn't add any new decls |
| 3501 | // to the list we need to serialize: any new declarations we find here should |
| 3502 | // be imported from an external source. |
| 3503 | // FIXME: What if the external source isn't an ASTReader? |
| 3504 | for (const auto &Name : ExternalNames) |
Stephen Hines | 6bcf27b | 2014-05-29 04:14:42 -0700 | [diff] [blame^] | 3505 | AddLookupResult(Name, DC->lookup(Name)); |
| 3506 | } |
| 3507 | |
| 3508 | void ASTWriter::AddUpdatedDeclContext(const DeclContext *DC) { |
| 3509 | if (UpdatedDeclContexts.insert(DC) && WritingAST) { |
| 3510 | // Ensure we emit all the visible declarations. |
| 3511 | visitLocalLookupResults(DC, DC->NeedToReconcileExternalVisibleStorage, |
| 3512 | [&](DeclarationName Name, |
| 3513 | DeclContext::lookup_const_result Result) { |
| 3514 | for (auto *Decl : Result) |
| 3515 | GetDeclRef(Decl); |
| 3516 | }); |
| 3517 | } |
| 3518 | } |
| 3519 | |
| 3520 | uint32_t |
| 3521 | ASTWriter::GenerateNameLookupTable(const DeclContext *DC, |
| 3522 | llvm::SmallVectorImpl<char> &LookupTable) { |
| 3523 | assert(!DC->LookupPtr.getInt() && "must call buildLookups first"); |
| 3524 | |
| 3525 | llvm::OnDiskChainedHashTableGenerator<ASTDeclContextNameLookupTrait> |
| 3526 | Generator; |
| 3527 | ASTDeclContextNameLookupTrait Trait(*this); |
| 3528 | |
| 3529 | // Create the on-disk hash table representation. |
| 3530 | DeclarationName ConstructorName; |
| 3531 | DeclarationName ConversionName; |
| 3532 | SmallVector<NamedDecl *, 8> ConstructorDecls; |
| 3533 | SmallVector<NamedDecl *, 4> ConversionDecls; |
| 3534 | |
| 3535 | visitLocalLookupResults(DC, DC->NeedToReconcileExternalVisibleStorage, |
| 3536 | [&](DeclarationName Name, |
| 3537 | DeclContext::lookup_result Result) { |
| 3538 | if (Result.empty()) |
| 3539 | return; |
| 3540 | |
| 3541 | // Different DeclarationName values of certain kinds are mapped to |
| 3542 | // identical serialized keys, because we don't want to use type |
| 3543 | // identifiers in the keys (since type ids are local to the module). |
| 3544 | switch (Name.getNameKind()) { |
| 3545 | case DeclarationName::CXXConstructorName: |
| 3546 | // There may be different CXXConstructorName DeclarationName values |
| 3547 | // in a DeclContext because a UsingDecl that inherits constructors |
| 3548 | // has the DeclarationName of the inherited constructors. |
| 3549 | if (!ConstructorName) |
| 3550 | ConstructorName = Name; |
| 3551 | ConstructorDecls.append(Result.begin(), Result.end()); |
| 3552 | return; |
| 3553 | |
| 3554 | case DeclarationName::CXXConversionFunctionName: |
| 3555 | if (!ConversionName) |
| 3556 | ConversionName = Name; |
| 3557 | ConversionDecls.append(Result.begin(), Result.end()); |
| 3558 | return; |
| 3559 | |
| 3560 | default: |
| 3561 | break; |
| 3562 | } |
| 3563 | |
| 3564 | Generator.insert(Name, Result, Trait); |
| 3565 | }); |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 3566 | |
| 3567 | // Add the constructors. |
| 3568 | if (!ConstructorDecls.empty()) { |
| 3569 | Generator.insert(ConstructorName, |
| 3570 | DeclContext::lookup_result(ConstructorDecls.begin(), |
| 3571 | ConstructorDecls.end()), |
| 3572 | Trait); |
| 3573 | } |
Stephen Hines | 6bcf27b | 2014-05-29 04:14:42 -0700 | [diff] [blame^] | 3574 | |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 3575 | // Add the conversion functions. |
| 3576 | if (!ConversionDecls.empty()) { |
| 3577 | Generator.insert(ConversionName, |
| 3578 | DeclContext::lookup_result(ConversionDecls.begin(), |
| 3579 | ConversionDecls.end()), |
| 3580 | Trait); |
| 3581 | } |
| 3582 | |
| 3583 | // Create the on-disk hash table in a buffer. |
| 3584 | llvm::raw_svector_ostream Out(LookupTable); |
| 3585 | // Make sure that no bucket is at offset 0 |
| 3586 | using namespace llvm::support; |
| 3587 | endian::Writer<little>(Out).write<uint32_t>(0); |
| 3588 | return Generator.Emit(Out, Trait); |
| 3589 | } |
| 3590 | |
Argyrios Kyrtzidis | 074dcc8 | 2010-08-20 16:04:35 +0000 | [diff] [blame] | 3591 | /// \brief Write the block containing all of the declaration IDs |
| 3592 | /// visible from the given DeclContext. |
| 3593 | /// |
| 3594 | /// \returns the offset of the DECL_CONTEXT_VISIBLE block within the |
Sebastian Redl | 1d1e42b | 2010-08-24 00:50:09 +0000 | [diff] [blame] | 3595 | /// bitstream, or 0 if no block was written. |
Argyrios Kyrtzidis | 074dcc8 | 2010-08-20 16:04:35 +0000 | [diff] [blame] | 3596 | uint64_t ASTWriter::WriteDeclContextVisibleBlock(ASTContext &Context, |
| 3597 | DeclContext *DC) { |
| 3598 | if (DC->getPrimaryContext() != DC) |
| 3599 | return 0; |
| 3600 | |
| 3601 | // Since there is no name lookup into functions or methods, don't bother to |
| 3602 | // build a visible-declarations table for these entities. |
| 3603 | if (DC->isFunctionOrMethod()) |
| 3604 | return 0; |
| 3605 | |
| 3606 | // If not in C++, we perform name lookup for the translation unit via the |
| 3607 | // IdentifierInfo chains, don't bother to build a visible-declarations table. |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 3608 | if (DC->isTranslationUnit() && !Context.getLangOpts().CPlusPlus) |
Argyrios Kyrtzidis | 074dcc8 | 2010-08-20 16:04:35 +0000 | [diff] [blame] | 3609 | return 0; |
| 3610 | |
Argyrios Kyrtzidis | 074dcc8 | 2010-08-20 16:04:35 +0000 | [diff] [blame] | 3611 | // Serialize the contents of the mapping used for lookup. Note that, |
| 3612 | // although we have two very different code paths, the serialized |
| 3613 | // representation is the same for both cases: a declaration name, |
| 3614 | // followed by a size, followed by references to the visible |
| 3615 | // declarations that have that name. |
| 3616 | uint64_t Offset = Stream.GetCurrentBitNo(); |
Richard Smith | c5d3e80 | 2012-03-16 06:12:59 +0000 | [diff] [blame] | 3617 | StoredDeclsMap *Map = DC->buildLookup(); |
Argyrios Kyrtzidis | 074dcc8 | 2010-08-20 16:04:35 +0000 | [diff] [blame] | 3618 | if (!Map || Map->empty()) |
| 3619 | return 0; |
| 3620 | |
Argyrios Kyrtzidis | 074dcc8 | 2010-08-20 16:04:35 +0000 | [diff] [blame] | 3621 | // Create the on-disk hash table in a buffer. |
Dylan Noblesmith | f7ccbad | 2012-02-05 02:13:05 +0000 | [diff] [blame] | 3622 | SmallString<4096> LookupTable; |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 3623 | uint32_t BucketOffset = GenerateNameLookupTable(DC, LookupTable); |
Argyrios Kyrtzidis | 074dcc8 | 2010-08-20 16:04:35 +0000 | [diff] [blame] | 3624 | |
| 3625 | // Write the lookup table |
| 3626 | RecordData Record; |
| 3627 | Record.push_back(DECL_CONTEXT_VISIBLE); |
| 3628 | Record.push_back(BucketOffset); |
| 3629 | Stream.EmitRecordWithBlob(DeclContextVisibleLookupAbbrev, Record, |
| 3630 | LookupTable.str()); |
| 3631 | |
| 3632 | Stream.EmitRecord(DECL_CONTEXT_VISIBLE, Record); |
| 3633 | ++NumVisibleDeclContexts; |
| 3634 | return Offset; |
| 3635 | } |
| 3636 | |
Sebastian Redl | 1d1e42b | 2010-08-24 00:50:09 +0000 | [diff] [blame] | 3637 | /// \brief Write an UPDATE_VISIBLE block for the given context. |
| 3638 | /// |
| 3639 | /// UPDATE_VISIBLE blocks contain the declarations that are added to an existing |
| 3640 | /// DeclContext in a dependent AST file. As such, they only exist for the TU |
Richard Smith | c5d3e80 | 2012-03-16 06:12:59 +0000 | [diff] [blame] | 3641 | /// (in C++), for namespaces, and for classes with forward-declared unscoped |
| 3642 | /// enumeration members (in C++11). |
Sebastian Redl | 1d1e42b | 2010-08-24 00:50:09 +0000 | [diff] [blame] | 3643 | void ASTWriter::WriteDeclContextVisibleUpdate(const DeclContext *DC) { |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 3644 | StoredDeclsMap *Map = DC->getLookupPtr(); |
Sebastian Redl | 1d1e42b | 2010-08-24 00:50:09 +0000 | [diff] [blame] | 3645 | if (!Map || Map->empty()) |
| 3646 | return; |
| 3647 | |
Sebastian Redl | 1d1e42b | 2010-08-24 00:50:09 +0000 | [diff] [blame] | 3648 | // Create the on-disk hash table in a buffer. |
Dylan Noblesmith | f7ccbad | 2012-02-05 02:13:05 +0000 | [diff] [blame] | 3649 | SmallString<4096> LookupTable; |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 3650 | uint32_t BucketOffset = GenerateNameLookupTable(DC, LookupTable); |
Sebastian Redl | 1d1e42b | 2010-08-24 00:50:09 +0000 | [diff] [blame] | 3651 | |
| 3652 | // Write the lookup table |
| 3653 | RecordData Record; |
| 3654 | Record.push_back(UPDATE_VISIBLE); |
| 3655 | Record.push_back(getDeclID(cast<Decl>(DC))); |
| 3656 | Record.push_back(BucketOffset); |
| 3657 | Stream.EmitRecordWithBlob(UpdateVisibleAbbrev, Record, LookupTable.str()); |
| 3658 | } |
| 3659 | |
Peter Collingbourne | 84bccea | 2011-02-15 19:46:30 +0000 | [diff] [blame] | 3660 | /// \brief Write an FP_PRAGMA_OPTIONS block for the given FPOptions. |
| 3661 | void ASTWriter::WriteFPPragmaOptions(const FPOptions &Opts) { |
| 3662 | RecordData Record; |
| 3663 | Record.push_back(Opts.fp_contract); |
| 3664 | Stream.EmitRecord(FP_PRAGMA_OPTIONS, Record); |
| 3665 | } |
| 3666 | |
| 3667 | /// \brief Write an OPENCL_EXTENSIONS block for the given OpenCLOptions. |
| 3668 | void ASTWriter::WriteOpenCLExtensions(Sema &SemaRef) { |
David Blaikie | 4e4d084 | 2012-03-11 07:00:24 +0000 | [diff] [blame] | 3669 | if (!SemaRef.Context.getLangOpts().OpenCL) |
Peter Collingbourne | 84bccea | 2011-02-15 19:46:30 +0000 | [diff] [blame] | 3670 | return; |
| 3671 | |
| 3672 | const OpenCLOptions &Opts = SemaRef.getOpenCLOptions(); |
| 3673 | RecordData Record; |
| 3674 | #define OPENCLEXT(nm) Record.push_back(Opts.nm); |
| 3675 | #include "clang/Basic/OpenCLExtensions.def" |
| 3676 | Stream.EmitRecord(OPENCL_EXTENSIONS, Record); |
| 3677 | } |
| 3678 | |
Douglas Gregor | 2171bf1 | 2012-01-15 16:58:34 +0000 | [diff] [blame] | 3679 | void ASTWriter::WriteRedeclarations() { |
| 3680 | RecordData LocalRedeclChains; |
| 3681 | SmallVector<serialization::LocalRedeclarationsInfo, 2> LocalRedeclsMap; |
| 3682 | |
| 3683 | for (unsigned I = 0, N = Redeclarations.size(); I != N; ++I) { |
| 3684 | Decl *First = Redeclarations[I]; |
Rafael Espindola | 7693b32 | 2013-10-19 02:13:21 +0000 | [diff] [blame] | 3685 | assert(First->isFirstDecl() && "Not the first declaration?"); |
Douglas Gregor | 2171bf1 | 2012-01-15 16:58:34 +0000 | [diff] [blame] | 3686 | |
| 3687 | Decl *MostRecent = First->getMostRecentDecl(); |
| 3688 | |
| 3689 | // If we only have a single declaration, there is no point in storing |
| 3690 | // a redeclaration chain. |
| 3691 | if (First == MostRecent) |
| 3692 | continue; |
| 3693 | |
| 3694 | unsigned Offset = LocalRedeclChains.size(); |
| 3695 | unsigned Size = 0; |
| 3696 | LocalRedeclChains.push_back(0); // Placeholder for the size. |
| 3697 | |
| 3698 | // Collect the set of local redeclarations of this declaration. |
Douglas Gregor | aa94590 | 2013-02-18 15:53:43 +0000 | [diff] [blame] | 3699 | for (Decl *Prev = MostRecent; Prev != First; |
Douglas Gregor | 2171bf1 | 2012-01-15 16:58:34 +0000 | [diff] [blame] | 3700 | Prev = Prev->getPreviousDecl()) { |
| 3701 | if (!Prev->isFromASTFile()) { |
| 3702 | AddDeclRef(Prev, LocalRedeclChains); |
| 3703 | ++Size; |
| 3704 | } |
| 3705 | } |
Douglas Gregor | aa94590 | 2013-02-18 15:53:43 +0000 | [diff] [blame] | 3706 | |
| 3707 | if (!First->isFromASTFile() && Chain) { |
| 3708 | Decl *FirstFromAST = MostRecent; |
| 3709 | for (Decl *Prev = MostRecent; Prev; Prev = Prev->getPreviousDecl()) { |
| 3710 | if (Prev->isFromASTFile()) |
| 3711 | FirstFromAST = Prev; |
| 3712 | } |
| 3713 | |
| 3714 | Chain->MergedDecls[FirstFromAST].push_back(getDeclID(First)); |
| 3715 | } |
| 3716 | |
Douglas Gregor | 2171bf1 | 2012-01-15 16:58:34 +0000 | [diff] [blame] | 3717 | LocalRedeclChains[Offset] = Size; |
| 3718 | |
| 3719 | // Reverse the set of local redeclarations, so that we store them in |
| 3720 | // order (since we found them in reverse order). |
| 3721 | std::reverse(LocalRedeclChains.end() - Size, LocalRedeclChains.end()); |
| 3722 | |
Douglas Gregor | aa94590 | 2013-02-18 15:53:43 +0000 | [diff] [blame] | 3723 | // Add the mapping from the first ID from the AST to the set of local |
| 3724 | // declarations. |
Douglas Gregor | 2171bf1 | 2012-01-15 16:58:34 +0000 | [diff] [blame] | 3725 | LocalRedeclarationsInfo Info = { getDeclID(First), Offset }; |
| 3726 | LocalRedeclsMap.push_back(Info); |
| 3727 | |
| 3728 | assert(N == Redeclarations.size() && |
| 3729 | "Deserialized a declaration we shouldn't have"); |
| 3730 | } |
| 3731 | |
| 3732 | if (LocalRedeclChains.empty()) |
| 3733 | return; |
| 3734 | |
| 3735 | // Sort the local redeclarations map by the first declaration ID, |
| 3736 | // since the reader will be performing binary searches on this information. |
| 3737 | llvm::array_pod_sort(LocalRedeclsMap.begin(), LocalRedeclsMap.end()); |
| 3738 | |
| 3739 | // Emit the local redeclarations map. |
| 3740 | using namespace llvm; |
| 3741 | llvm::BitCodeAbbrev *Abbrev = new BitCodeAbbrev(); |
| 3742 | Abbrev->Add(BitCodeAbbrevOp(LOCAL_REDECLARATIONS_MAP)); |
| 3743 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // # of entries |
| 3744 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); |
| 3745 | unsigned AbbrevID = Stream.EmitAbbrev(Abbrev); |
| 3746 | |
| 3747 | RecordData Record; |
| 3748 | Record.push_back(LOCAL_REDECLARATIONS_MAP); |
| 3749 | Record.push_back(LocalRedeclsMap.size()); |
| 3750 | Stream.EmitRecordWithBlob(AbbrevID, Record, |
| 3751 | reinterpret_cast<char*>(LocalRedeclsMap.data()), |
| 3752 | LocalRedeclsMap.size() * sizeof(LocalRedeclarationsInfo)); |
| 3753 | |
| 3754 | // Emit the redeclaration chains. |
| 3755 | Stream.EmitRecord(LOCAL_REDECLARATIONS, LocalRedeclChains); |
| 3756 | } |
| 3757 | |
Douglas Gregor | cff9f26 | 2012-01-27 01:47:08 +0000 | [diff] [blame] | 3758 | void ASTWriter::WriteObjCCategories() { |
Dmitri Gribenko | cfa88f8 | 2013-01-12 19:30:44 +0000 | [diff] [blame] | 3759 | SmallVector<ObjCCategoriesInfo, 2> CategoriesMap; |
Douglas Gregor | cff9f26 | 2012-01-27 01:47:08 +0000 | [diff] [blame] | 3760 | RecordData Categories; |
| 3761 | |
| 3762 | for (unsigned I = 0, N = ObjCClassesWithCategories.size(); I != N; ++I) { |
| 3763 | unsigned Size = 0; |
| 3764 | unsigned StartIndex = Categories.size(); |
| 3765 | |
| 3766 | ObjCInterfaceDecl *Class = ObjCClassesWithCategories[I]; |
| 3767 | |
| 3768 | // Allocate space for the size. |
| 3769 | Categories.push_back(0); |
| 3770 | |
| 3771 | // Add the categories. |
Douglas Gregor | d329724 | 2013-01-16 23:00:23 +0000 | [diff] [blame] | 3772 | for (ObjCInterfaceDecl::known_categories_iterator |
| 3773 | Cat = Class->known_categories_begin(), |
| 3774 | CatEnd = Class->known_categories_end(); |
| 3775 | Cat != CatEnd; ++Cat, ++Size) { |
| 3776 | assert(getDeclID(*Cat) != 0 && "Bogus category"); |
| 3777 | AddDeclRef(*Cat, Categories); |
Douglas Gregor | cff9f26 | 2012-01-27 01:47:08 +0000 | [diff] [blame] | 3778 | } |
| 3779 | |
| 3780 | // Update the size. |
| 3781 | Categories[StartIndex] = Size; |
| 3782 | |
| 3783 | // Record this interface -> category map. |
| 3784 | ObjCCategoriesInfo CatInfo = { getDeclID(Class), StartIndex }; |
| 3785 | CategoriesMap.push_back(CatInfo); |
| 3786 | } |
| 3787 | |
| 3788 | // Sort the categories map by the definition ID, since the reader will be |
| 3789 | // performing binary searches on this information. |
| 3790 | llvm::array_pod_sort(CategoriesMap.begin(), CategoriesMap.end()); |
| 3791 | |
| 3792 | // Emit the categories map. |
| 3793 | using namespace llvm; |
| 3794 | llvm::BitCodeAbbrev *Abbrev = new BitCodeAbbrev(); |
| 3795 | Abbrev->Add(BitCodeAbbrevOp(OBJC_CATEGORIES_MAP)); |
| 3796 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // # of entries |
| 3797 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); |
| 3798 | unsigned AbbrevID = Stream.EmitAbbrev(Abbrev); |
| 3799 | |
| 3800 | RecordData Record; |
| 3801 | Record.push_back(OBJC_CATEGORIES_MAP); |
| 3802 | Record.push_back(CategoriesMap.size()); |
| 3803 | Stream.EmitRecordWithBlob(AbbrevID, Record, |
| 3804 | reinterpret_cast<char*>(CategoriesMap.data()), |
| 3805 | CategoriesMap.size() * sizeof(ObjCCategoriesInfo)); |
| 3806 | |
| 3807 | // Emit the category lists. |
| 3808 | Stream.EmitRecord(OBJC_CATEGORIES, Categories); |
| 3809 | } |
| 3810 | |
Douglas Gregor | c3cfd2a | 2011-12-22 21:40:42 +0000 | [diff] [blame] | 3811 | void ASTWriter::WriteMergedDecls() { |
| 3812 | if (!Chain || Chain->MergedDecls.empty()) |
| 3813 | return; |
| 3814 | |
| 3815 | RecordData Record; |
| 3816 | for (ASTReader::MergedDeclsMap::iterator I = Chain->MergedDecls.begin(), |
| 3817 | IEnd = Chain->MergedDecls.end(); |
| 3818 | I != IEnd; ++I) { |
Douglas Gregor | b6b60c1 | 2012-01-05 22:27:05 +0000 | [diff] [blame] | 3819 | DeclID CanonID = I->first->isFromASTFile()? I->first->getGlobalID() |
Stephen Hines | 6bcf27b | 2014-05-29 04:14:42 -0700 | [diff] [blame^] | 3820 | : GetDeclRef(I->first); |
Douglas Gregor | c3cfd2a | 2011-12-22 21:40:42 +0000 | [diff] [blame] | 3821 | assert(CanonID && "Merged declaration not known?"); |
| 3822 | |
| 3823 | Record.push_back(CanonID); |
| 3824 | Record.push_back(I->second.size()); |
| 3825 | Record.append(I->second.begin(), I->second.end()); |
| 3826 | } |
| 3827 | Stream.EmitRecord(MERGED_DECLARATIONS, Record); |
| 3828 | } |
| 3829 | |
Richard Smith | ac32d90 | 2013-08-07 21:41:30 +0000 | [diff] [blame] | 3830 | void ASTWriter::WriteLateParsedTemplates(Sema &SemaRef) { |
| 3831 | Sema::LateParsedTemplateMapT &LPTMap = SemaRef.LateParsedTemplateMap; |
| 3832 | |
| 3833 | if (LPTMap.empty()) |
| 3834 | return; |
| 3835 | |
| 3836 | RecordData Record; |
| 3837 | for (Sema::LateParsedTemplateMapT::iterator It = LPTMap.begin(), |
| 3838 | ItEnd = LPTMap.end(); |
| 3839 | It != ItEnd; ++It) { |
| 3840 | LateParsedTemplate *LPT = It->second; |
| 3841 | AddDeclRef(It->first, Record); |
| 3842 | AddDeclRef(LPT->D, Record); |
| 3843 | Record.push_back(LPT->Toks.size()); |
| 3844 | |
| 3845 | for (CachedTokens::iterator TokIt = LPT->Toks.begin(), |
| 3846 | TokEnd = LPT->Toks.end(); |
| 3847 | TokIt != TokEnd; ++TokIt) { |
| 3848 | AddToken(*TokIt, Record); |
| 3849 | } |
| 3850 | } |
| 3851 | Stream.EmitRecord(LATE_PARSED_TEMPLATE, Record); |
| 3852 | } |
| 3853 | |
Stephen Hines | 6bcf27b | 2014-05-29 04:14:42 -0700 | [diff] [blame^] | 3854 | /// \brief Write the state of 'pragma clang optimize' at the end of the module. |
| 3855 | void ASTWriter::WriteOptimizePragmaOptions(Sema &SemaRef) { |
| 3856 | RecordData Record; |
| 3857 | SourceLocation PragmaLoc = SemaRef.getOptimizeOffPragmaLocation(); |
| 3858 | AddSourceLocation(PragmaLoc, Record); |
| 3859 | Stream.EmitRecord(OPTIMIZE_PRAGMA_OPTIONS, Record); |
| 3860 | } |
| 3861 | |
Argyrios Kyrtzidis | 5d26768 | 2010-08-20 16:04:27 +0000 | [diff] [blame] | 3862 | //===----------------------------------------------------------------------===// |
Douglas Gregor | 4fed3f4 | 2009-04-27 18:38:38 +0000 | [diff] [blame] | 3863 | // General Serialization Routines |
| 3864 | //===----------------------------------------------------------------------===// |
| 3865 | |
Douglas Gregor | 68a2eb0 | 2009-04-15 21:30:51 +0000 | [diff] [blame] | 3866 | /// \brief Write a record containing the given attributes. |
Alexander Kornienko | 4990890 | 2012-07-09 10:04:07 +0000 | [diff] [blame] | 3867 | void ASTWriter::WriteAttributes(ArrayRef<const Attr*> Attrs, |
| 3868 | RecordDataImpl &Record) { |
Argyrios Kyrtzidis | 4eb9fc0 | 2010-10-18 19:20:11 +0000 | [diff] [blame] | 3869 | Record.push_back(Attrs.size()); |
Alexander Kornienko | 4990890 | 2012-07-09 10:04:07 +0000 | [diff] [blame] | 3870 | for (ArrayRef<const Attr *>::iterator i = Attrs.begin(), |
| 3871 | e = Attrs.end(); i != e; ++i){ |
| 3872 | const Attr *A = *i; |
Sean Hunt | cf807c4 | 2010-08-18 23:23:40 +0000 | [diff] [blame] | 3873 | Record.push_back(A->getKind()); // FIXME: stable encoding, target attrs |
Argyrios Kyrtzidis | 768d6ca | 2011-09-13 16:05:58 +0000 | [diff] [blame] | 3874 | AddSourceRange(A->getRange(), Record); |
Douglas Gregor | 68a2eb0 | 2009-04-15 21:30:51 +0000 | [diff] [blame] | 3875 | |
Sean Hunt | cf807c4 | 2010-08-18 23:23:40 +0000 | [diff] [blame] | 3876 | #include "clang/Serialization/AttrPCHWrite.inc" |
Daniel Dunbar | 4e9255f | 2010-05-27 02:25:39 +0000 | [diff] [blame] | 3877 | |
Douglas Gregor | 68a2eb0 | 2009-04-15 21:30:51 +0000 | [diff] [blame] | 3878 | } |
Douglas Gregor | 68a2eb0 | 2009-04-15 21:30:51 +0000 | [diff] [blame] | 3879 | } |
| 3880 | |
John McCall | aeeacf7 | 2013-05-03 00:10:13 +0000 | [diff] [blame] | 3881 | void ASTWriter::AddToken(const Token &Tok, RecordDataImpl &Record) { |
| 3882 | AddSourceLocation(Tok.getLocation(), Record); |
| 3883 | Record.push_back(Tok.getLength()); |
| 3884 | |
| 3885 | // FIXME: When reading literal tokens, reconstruct the literal pointer |
| 3886 | // if it is needed. |
| 3887 | AddIdentifierRef(Tok.getIdentifierInfo(), Record); |
| 3888 | // FIXME: Should translate token kind to a stable encoding. |
| 3889 | Record.push_back(Tok.getKind()); |
| 3890 | // FIXME: Should translate token flags to a stable encoding. |
| 3891 | Record.push_back(Tok.getFlags()); |
| 3892 | } |
| 3893 | |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 3894 | void ASTWriter::AddString(StringRef Str, RecordDataImpl &Record) { |
Douglas Gregor | 68a2eb0 | 2009-04-15 21:30:51 +0000 | [diff] [blame] | 3895 | Record.push_back(Str.size()); |
| 3896 | Record.insert(Record.end(), Str.begin(), Str.end()); |
| 3897 | } |
| 3898 | |
Douglas Gregor | 0a0d2b1 | 2011-03-23 00:50:03 +0000 | [diff] [blame] | 3899 | void ASTWriter::AddVersionTuple(const VersionTuple &Version, |
| 3900 | RecordDataImpl &Record) { |
| 3901 | Record.push_back(Version.getMajor()); |
David Blaikie | dc84cd5 | 2013-02-20 22:23:23 +0000 | [diff] [blame] | 3902 | if (Optional<unsigned> Minor = Version.getMinor()) |
Douglas Gregor | 0a0d2b1 | 2011-03-23 00:50:03 +0000 | [diff] [blame] | 3903 | Record.push_back(*Minor + 1); |
| 3904 | else |
| 3905 | Record.push_back(0); |
David Blaikie | dc84cd5 | 2013-02-20 22:23:23 +0000 | [diff] [blame] | 3906 | if (Optional<unsigned> Subminor = Version.getSubminor()) |
Douglas Gregor | 0a0d2b1 | 2011-03-23 00:50:03 +0000 | [diff] [blame] | 3907 | Record.push_back(*Subminor + 1); |
| 3908 | else |
| 3909 | Record.push_back(0); |
| 3910 | } |
| 3911 | |
Douglas Gregor | 3251ceb | 2009-04-20 20:36:09 +0000 | [diff] [blame] | 3912 | /// \brief Note that the identifier II occurs at the given offset |
| 3913 | /// within the identifier table. |
Sebastian Redl | a4232eb | 2010-08-18 23:56:21 +0000 | [diff] [blame] | 3914 | void ASTWriter::SetIdentifierOffset(const IdentifierInfo *II, uint32_t Offset) { |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 3915 | IdentID ID = IdentifierIDs[II]; |
Sebastian Redl | 3397c55 | 2010-08-18 23:56:27 +0000 | [diff] [blame] | 3916 | // Only store offsets new to this AST file. Other identifier names are looked |
Sebastian Redl | f2f0f03 | 2010-07-23 23:49:55 +0000 | [diff] [blame] | 3917 | // up earlier in the chain and thus don't need an offset. |
| 3918 | if (ID >= FirstIdentID) |
| 3919 | IdentifierOffsets[ID - FirstIdentID] = Offset; |
Douglas Gregor | 3251ceb | 2009-04-20 20:36:09 +0000 | [diff] [blame] | 3920 | } |
| 3921 | |
Douglas Gregor | 83941df | 2009-04-25 17:48:32 +0000 | [diff] [blame] | 3922 | /// \brief Note that the selector Sel occurs at the given offset |
| 3923 | /// within the method pool/selector table. |
Sebastian Redl | a4232eb | 2010-08-18 23:56:21 +0000 | [diff] [blame] | 3924 | void ASTWriter::SetSelectorOffset(Selector Sel, uint32_t Offset) { |
Douglas Gregor | 83941df | 2009-04-25 17:48:32 +0000 | [diff] [blame] | 3925 | unsigned ID = SelectorIDs[Sel]; |
| 3926 | assert(ID && "Unknown selector"); |
Sebastian Redl | e58aa89 | 2010-08-04 18:21:41 +0000 | [diff] [blame] | 3927 | // Don't record offsets for selectors that are also available in a different |
| 3928 | // file. |
| 3929 | if (ID < FirstSelectorID) |
| 3930 | return; |
| 3931 | SelectorOffsets[ID - FirstSelectorID] = Offset; |
Douglas Gregor | 83941df | 2009-04-25 17:48:32 +0000 | [diff] [blame] | 3932 | } |
| 3933 | |
Sebastian Redl | a4232eb | 2010-08-18 23:56:21 +0000 | [diff] [blame] | 3934 | ASTWriter::ASTWriter(llvm::BitstreamWriter &Stream) |
Stephen Hines | 6bcf27b | 2014-05-29 04:14:42 -0700 | [diff] [blame^] | 3935 | : Stream(Stream), Context(nullptr), PP(nullptr), Chain(nullptr), |
| 3936 | WritingModule(nullptr), WritingAST(false), DoneWritingDeclsAndTypes(false), |
Argyrios Kyrtzidis | 7518b37 | 2012-07-02 19:19:01 +0000 | [diff] [blame] | 3937 | ASTHasCompilerErrors(false), |
Douglas Gregor | 0a14e4b | 2011-08-03 16:05:40 +0000 | [diff] [blame] | 3938 | FirstDeclID(NUM_PREDEF_DECL_IDS), NextDeclID(FirstDeclID), |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 3939 | FirstTypeID(NUM_PREDEF_TYPE_IDS), NextTypeID(FirstTypeID), |
Douglas Gregor | a8235d6 | 2012-10-09 23:05:51 +0000 | [diff] [blame] | 3940 | FirstIdentID(NUM_PREDEF_IDENT_IDS), NextIdentID(FirstIdentID), |
| 3941 | FirstMacroID(NUM_PREDEF_MACRO_IDS), NextMacroID(FirstMacroID), |
Douglas Gregor | 26ced12 | 2011-12-01 00:59:36 +0000 | [diff] [blame] | 3942 | FirstSubmoduleID(NUM_PREDEF_SUBMODULE_IDS), |
| 3943 | NextSubmoduleID(FirstSubmoduleID), |
Douglas Gregor | b18b1fd | 2011-08-03 23:28:44 +0000 | [diff] [blame] | 3944 | FirstSelectorID(NUM_PREDEF_SELECTOR_IDS), NextSelectorID(FirstSelectorID), |
Douglas Gregor | 77424bc | 2010-10-02 19:29:26 +0000 | [diff] [blame] | 3945 | CollectedStmts(&StmtsToEmit), |
Sebastian Redl | e58aa89 | 2010-08-04 18:21:41 +0000 | [diff] [blame] | 3946 | NumStatements(0), NumMacros(0), NumLexicalDeclContexts(0), |
Douglas Gregor | a72d8c4 | 2011-06-03 02:27:19 +0000 | [diff] [blame] | 3947 | NumVisibleDeclContexts(0), |
Douglas Gregor | e92b8a1 | 2011-08-04 00:01:48 +0000 | [diff] [blame] | 3948 | NextCXXBaseSpecifiersID(1), |
Jonathan D. Turner | 953c564 | 2011-06-03 23:11:16 +0000 | [diff] [blame] | 3949 | DeclParmVarAbbrev(0), DeclContextLexicalAbbrev(0), |
Douglas Gregor | a72d8c4 | 2011-06-03 02:27:19 +0000 | [diff] [blame] | 3950 | DeclContextVisibleLookupAbbrev(0), UpdateVisibleAbbrev(0), |
| 3951 | DeclRefExprAbbrev(0), CharacterLiteralAbbrev(0), |
| 3952 | DeclRecordAbbrev(0), IntegerLiteralAbbrev(0), |
Jonathan D. Turner | 953c564 | 2011-06-03 23:11:16 +0000 | [diff] [blame] | 3953 | DeclTypedefAbbrev(0), |
| 3954 | DeclVarAbbrev(0), DeclFieldAbbrev(0), |
| 3955 | DeclEnumAbbrev(0), DeclObjCIvarAbbrev(0) |
Douglas Gregor | 7c789c1 | 2010-10-29 22:39:52 +0000 | [diff] [blame] | 3956 | { |
Sebastian Redl | 30c514c | 2010-07-14 23:45:08 +0000 | [diff] [blame] | 3957 | } |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 3958 | |
Argyrios Kyrtzidis | 10f3df5 | 2011-10-28 22:54:21 +0000 | [diff] [blame] | 3959 | ASTWriter::~ASTWriter() { |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 3960 | llvm::DeleteContainerSeconds(FileDeclIDs); |
Argyrios Kyrtzidis | 10f3df5 | 2011-10-28 22:54:21 +0000 | [diff] [blame] | 3961 | } |
| 3962 | |
Argyrios Kyrtzidis | 4182ed6 | 2012-10-31 20:59:50 +0000 | [diff] [blame] | 3963 | void ASTWriter::WriteAST(Sema &SemaRef, |
Argyrios Kyrtzidis | 8e3df4d | 2011-02-15 17:54:22 +0000 | [diff] [blame] | 3964 | const std::string &OutputFile, |
Argyrios Kyrtzidis | bef35c9 | 2012-03-07 01:51:17 +0000 | [diff] [blame] | 3965 | Module *WritingModule, StringRef isysroot, |
| 3966 | bool hasErrors) { |
Douglas Gregor | 61c5e34 | 2011-09-17 00:05:03 +0000 | [diff] [blame] | 3967 | WritingAST = true; |
| 3968 | |
Argyrios Kyrtzidis | bef35c9 | 2012-03-07 01:51:17 +0000 | [diff] [blame] | 3969 | ASTHasCompilerErrors = hasErrors; |
| 3970 | |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 3971 | // Emit the file header. |
Douglas Gregor | c9490c0 | 2009-04-16 22:23:12 +0000 | [diff] [blame] | 3972 | Stream.Emit((unsigned)'C', 8); |
| 3973 | Stream.Emit((unsigned)'P', 8); |
| 3974 | Stream.Emit((unsigned)'C', 8); |
| 3975 | Stream.Emit((unsigned)'H', 8); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 3976 | |
Chris Lattner | b145b1e | 2009-04-26 22:26:21 +0000 | [diff] [blame] | 3977 | WriteBlockInfoBlock(); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 3978 | |
Douglas Gregor | 3b8043b | 2011-08-09 15:13:55 +0000 | [diff] [blame] | 3979 | Context = &SemaRef.Context; |
Douglas Gregor | 185dbd7 | 2011-12-01 02:07:58 +0000 | [diff] [blame] | 3980 | PP = &SemaRef.PP; |
Douglas Gregor | e209e50 | 2011-12-06 01:10:29 +0000 | [diff] [blame] | 3981 | this->WritingModule = WritingModule; |
Argyrios Kyrtzidis | 4182ed6 | 2012-10-31 20:59:50 +0000 | [diff] [blame] | 3982 | WriteASTCore(SemaRef, isysroot, OutputFile, WritingModule); |
Stephen Hines | 6bcf27b | 2014-05-29 04:14:42 -0700 | [diff] [blame^] | 3983 | Context = nullptr; |
| 3984 | PP = nullptr; |
| 3985 | this->WritingModule = nullptr; |
| 3986 | |
Douglas Gregor | 61c5e34 | 2011-09-17 00:05:03 +0000 | [diff] [blame] | 3987 | WritingAST = false; |
Sebastian Redl | 1dc13a1 | 2010-07-12 22:02:52 +0000 | [diff] [blame] | 3988 | } |
| 3989 | |
Douglas Gregor | a2ee20a | 2011-07-27 21:45:57 +0000 | [diff] [blame] | 3990 | template<typename Vector> |
| 3991 | static void AddLazyVectorDecls(ASTWriter &Writer, Vector &Vec, |
| 3992 | ASTWriter::RecordData &Record) { |
Stephen Hines | 6bcf27b | 2014-05-29 04:14:42 -0700 | [diff] [blame^] | 3993 | for (typename Vector::iterator I = Vec.begin(nullptr, true), E = Vec.end(); |
| 3994 | I != E; ++I) { |
Douglas Gregor | a2ee20a | 2011-07-27 21:45:57 +0000 | [diff] [blame] | 3995 | Writer.AddDeclRef(*I, Record); |
| 3996 | } |
| 3997 | } |
| 3998 | |
Argyrios Kyrtzidis | 4182ed6 | 2012-10-31 20:59:50 +0000 | [diff] [blame] | 3999 | void ASTWriter::WriteASTCore(Sema &SemaRef, |
Douglas Gregor | 832d620 | 2011-07-22 16:35:34 +0000 | [diff] [blame] | 4000 | StringRef isysroot, |
Douglas Gregor | a8cc6ce | 2011-11-30 04:39:39 +0000 | [diff] [blame] | 4001 | const std::string &OutputFile, |
Douglas Gregor | 1a4761e | 2011-11-30 23:21:26 +0000 | [diff] [blame] | 4002 | Module *WritingModule) { |
Sebastian Redl | 1dc13a1 | 2010-07-12 22:02:52 +0000 | [diff] [blame] | 4003 | using namespace llvm; |
| 4004 | |
Stephen Hines | 6bcf27b | 2014-05-29 04:14:42 -0700 | [diff] [blame^] | 4005 | bool isModule = WritingModule != nullptr; |
Argyrios Kyrtzidis | 975d353 | 2013-03-14 04:44:56 +0000 | [diff] [blame] | 4006 | |
Douglas Gregor | ecc2c09 | 2011-12-01 22:20:10 +0000 | [diff] [blame] | 4007 | // Make sure that the AST reader knows to finalize itself. |
| 4008 | if (Chain) |
| 4009 | Chain->finalizeForWriting(); |
| 4010 | |
Sebastian Redl | 1dc13a1 | 2010-07-12 22:02:52 +0000 | [diff] [blame] | 4011 | ASTContext &Context = SemaRef.Context; |
| 4012 | Preprocessor &PP = SemaRef.PP; |
| 4013 | |
Douglas Gregor | 6bf2b9f | 2011-08-12 00:15:20 +0000 | [diff] [blame] | 4014 | // Set up predefined declaration IDs. |
| 4015 | DeclIDs[Context.getTranslationUnitDecl()] = PREDEF_DECL_TRANSLATION_UNIT_ID; |
Douglas Gregor | 4dfd02a | 2011-08-12 05:46:01 +0000 | [diff] [blame] | 4016 | if (Context.ObjCIdDecl) |
| 4017 | DeclIDs[Context.ObjCIdDecl] = PREDEF_DECL_OBJC_ID_ID; |
Douglas Gregor | 7a27ea5 | 2011-08-12 06:17:30 +0000 | [diff] [blame] | 4018 | if (Context.ObjCSelDecl) |
| 4019 | DeclIDs[Context.ObjCSelDecl] = PREDEF_DECL_OBJC_SEL_ID; |
Douglas Gregor | 79d6726 | 2011-08-12 05:59:41 +0000 | [diff] [blame] | 4020 | if (Context.ObjCClassDecl) |
| 4021 | DeclIDs[Context.ObjCClassDecl] = PREDEF_DECL_OBJC_CLASS_ID; |
Douglas Gregor | a6ea10e | 2012-01-17 18:09:05 +0000 | [diff] [blame] | 4022 | if (Context.ObjCProtocolClassDecl) |
| 4023 | DeclIDs[Context.ObjCProtocolClassDecl] = PREDEF_DECL_OBJC_PROTOCOL_ID; |
Douglas Gregor | 772eeae | 2011-08-12 06:49:56 +0000 | [diff] [blame] | 4024 | if (Context.Int128Decl) |
| 4025 | DeclIDs[Context.Int128Decl] = PREDEF_DECL_INT_128_ID; |
| 4026 | if (Context.UInt128Decl) |
| 4027 | DeclIDs[Context.UInt128Decl] = PREDEF_DECL_UNSIGNED_INT_128_ID; |
Douglas Gregor | e97179c | 2011-09-08 01:46:34 +0000 | [diff] [blame] | 4028 | if (Context.ObjCInstanceTypeDecl) |
| 4029 | DeclIDs[Context.ObjCInstanceTypeDecl] = PREDEF_DECL_OBJC_INSTANCETYPE_ID; |
Meador Inge | c5613b2 | 2012-06-16 03:34:49 +0000 | [diff] [blame] | 4030 | if (Context.BuiltinVaListDecl) |
| 4031 | DeclIDs[Context.getBuiltinVaListDecl()] = PREDEF_DECL_BUILTIN_VA_LIST_ID; |
| 4032 | |
Douglas Gregor | b7c324f | 2011-08-12 01:39:19 +0000 | [diff] [blame] | 4033 | if (!Chain) { |
| 4034 | // Make sure that we emit IdentifierInfos (and any attached |
| 4035 | // declarations) for builtins. We don't need to do this when we're |
| 4036 | // emitting chained PCH files, because all of the builtins will be |
| 4037 | // in the original PCH file. |
| 4038 | // FIXME: Modules won't like this at all. |
Douglas Gregor | 2deaea3 | 2009-04-22 18:49:13 +0000 | [diff] [blame] | 4039 | IdentifierTable &Table = PP.getIdentifierTable(); |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 4040 | SmallVector<const char *, 32> BuiltinNames; |
Eli Bendersky | 97a03cf | 2013-07-11 16:53:04 +0000 | [diff] [blame] | 4041 | if (!Context.getLangOpts().NoBuiltin) { |
| 4042 | Context.BuiltinInfo.GetBuiltinNames(BuiltinNames); |
| 4043 | } |
Douglas Gregor | 2deaea3 | 2009-04-22 18:49:13 +0000 | [diff] [blame] | 4044 | for (unsigned I = 0, N = BuiltinNames.size(); I != N; ++I) |
| 4045 | getIdentifierRef(&Table.get(BuiltinNames[I])); |
| 4046 | } |
| 4047 | |
Douglas Gregor | eee242f | 2011-10-27 09:33:13 +0000 | [diff] [blame] | 4048 | // If there are any out-of-date identifiers, bring them up to date. |
| 4049 | if (ExternalPreprocessorSource *ExtSource = PP.getExternalSource()) { |
Douglas Gregor | 589dae7 | 2013-01-07 16:56:53 +0000 | [diff] [blame] | 4050 | // Find out-of-date identifiers. |
| 4051 | SmallVector<IdentifierInfo *, 4> OutOfDate; |
Douglas Gregor | eee242f | 2011-10-27 09:33:13 +0000 | [diff] [blame] | 4052 | for (IdentifierTable::iterator ID = PP.getIdentifierTable().begin(), |
| 4053 | IDEnd = PP.getIdentifierTable().end(); |
Douglas Gregor | 589dae7 | 2013-01-07 16:56:53 +0000 | [diff] [blame] | 4054 | ID != IDEnd; ++ID) { |
Douglas Gregor | eee242f | 2011-10-27 09:33:13 +0000 | [diff] [blame] | 4055 | if (ID->second->isOutOfDate()) |
Douglas Gregor | 589dae7 | 2013-01-07 16:56:53 +0000 | [diff] [blame] | 4056 | OutOfDate.push_back(ID->second); |
| 4057 | } |
| 4058 | |
| 4059 | // Update the out-of-date identifiers. |
| 4060 | for (unsigned I = 0, N = OutOfDate.size(); I != N; ++I) { |
| 4061 | ExtSource->updateOutOfDateIdentifier(*OutOfDate[I]); |
| 4062 | } |
Douglas Gregor | eee242f | 2011-10-27 09:33:13 +0000 | [diff] [blame] | 4063 | } |
| 4064 | |
Stephen Hines | 6bcf27b | 2014-05-29 04:14:42 -0700 | [diff] [blame^] | 4065 | // If we saw any DeclContext updates before we started writing the AST file, |
| 4066 | // make sure all visible decls in those DeclContexts are written out. |
| 4067 | if (!UpdatedDeclContexts.empty()) { |
| 4068 | auto OldUpdatedDeclContexts = std::move(UpdatedDeclContexts); |
| 4069 | UpdatedDeclContexts.clear(); |
| 4070 | for (auto *DC : OldUpdatedDeclContexts) |
| 4071 | AddUpdatedDeclContext(DC); |
| 4072 | } |
| 4073 | |
Chris Lattner | 63d65f8 | 2009-09-08 18:19:27 +0000 | [diff] [blame] | 4074 | // Build a record containing all of the tentative definitions in this file, in |
Sebastian Redl | e9d12b6 | 2010-01-31 22:27:38 +0000 | [diff] [blame] | 4075 | // TentativeDefinitions order. Generally, this record will be empty for |
Chris Lattner | 63d65f8 | 2009-09-08 18:19:27 +0000 | [diff] [blame] | 4076 | // headers. |
Douglas Gregor | 4c0e86b | 2009-04-22 22:02:47 +0000 | [diff] [blame] | 4077 | RecordData TentativeDefinitions; |
Douglas Gregor | a2ee20a | 2011-07-27 21:45:57 +0000 | [diff] [blame] | 4078 | AddLazyVectorDecls(*this, SemaRef.TentativeDefinitions, TentativeDefinitions); |
Douglas Gregor | a862320 | 2011-07-27 20:58:46 +0000 | [diff] [blame] | 4079 | |
Argyrios Kyrtzidis | 49b96d1 | 2010-08-13 18:42:17 +0000 | [diff] [blame] | 4080 | // Build a record containing all of the file scoped decls in this file. |
| 4081 | RecordData UnusedFileScopedDecls; |
Argyrios Kyrtzidis | faf01f0 | 2013-03-14 04:45:00 +0000 | [diff] [blame] | 4082 | if (!isModule) |
| 4083 | AddLazyVectorDecls(*this, SemaRef.UnusedFileScopedDecls, |
| 4084 | UnusedFileScopedDecls); |
Sebastian Redl | 4056680 | 2010-08-05 18:21:25 +0000 | [diff] [blame] | 4085 | |
Douglas Gregor | b7c324f | 2011-08-12 01:39:19 +0000 | [diff] [blame] | 4086 | // Build a record containing all of the delegating constructors we still need |
| 4087 | // to resolve. |
Sean Hunt | ebcbe1d | 2011-05-04 23:29:54 +0000 | [diff] [blame] | 4088 | RecordData DelegatingCtorDecls; |
Argyrios Kyrtzidis | 975d353 | 2013-03-14 04:44:56 +0000 | [diff] [blame] | 4089 | if (!isModule) |
| 4090 | AddLazyVectorDecls(*this, SemaRef.DelegatingCtorDecls, DelegatingCtorDecls); |
Sean Hunt | ebcbe1d | 2011-05-04 23:29:54 +0000 | [diff] [blame] | 4091 | |
Douglas Gregor | b7c324f | 2011-08-12 01:39:19 +0000 | [diff] [blame] | 4092 | // Write the set of weak, undeclared identifiers. We always write the |
| 4093 | // entire table, since later PCH files in a PCH chain are only interested in |
| 4094 | // the results at the end of the chain. |
Argyrios Kyrtzidis | 72b9057 | 2010-08-05 09:48:08 +0000 | [diff] [blame] | 4095 | RecordData WeakUndeclaredIdentifiers; |
| 4096 | if (!SemaRef.WeakUndeclaredIdentifiers.empty()) { |
Douglas Gregor | 31e37b2 | 2011-07-28 18:09:57 +0000 | [diff] [blame] | 4097 | for (llvm::DenseMap<IdentifierInfo*,WeakInfo>::iterator |
Argyrios Kyrtzidis | 72b9057 | 2010-08-05 09:48:08 +0000 | [diff] [blame] | 4098 | I = SemaRef.WeakUndeclaredIdentifiers.begin(), |
| 4099 | E = SemaRef.WeakUndeclaredIdentifiers.end(); I != E; ++I) { |
| 4100 | AddIdentifierRef(I->first, WeakUndeclaredIdentifiers); |
| 4101 | AddIdentifierRef(I->second.getAlias(), WeakUndeclaredIdentifiers); |
| 4102 | AddSourceLocation(I->second.getLocation(), WeakUndeclaredIdentifiers); |
| 4103 | WeakUndeclaredIdentifiers.push_back(I->second.getUsed()); |
| 4104 | } |
| 4105 | } |
Kovarththanan Rajaratnam | 11a18f1 | 2010-03-14 07:06:50 +0000 | [diff] [blame] | 4106 | |
Richard Smith | 5ea6ef4 | 2013-01-10 23:43:47 +0000 | [diff] [blame] | 4107 | // Build a record containing all of the locally-scoped extern "C" |
Douglas Gregor | 14c22f2 | 2009-04-22 22:18:58 +0000 | [diff] [blame] | 4108 | // declarations in this header file. Generally, this record will be |
| 4109 | // empty. |
Richard Smith | 5ea6ef4 | 2013-01-10 23:43:47 +0000 | [diff] [blame] | 4110 | RecordData LocallyScopedExternCDecls; |
Sebastian Redl | 3397c55 | 2010-08-18 23:56:27 +0000 | [diff] [blame] | 4111 | // FIXME: This is filling in the AST file in densemap order which is |
Chris Lattner | 63d65f8 | 2009-09-08 18:19:27 +0000 | [diff] [blame] | 4112 | // nondeterminstic! |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4113 | for (llvm::DenseMap<DeclarationName, NamedDecl *>::iterator |
Richard Smith | 5ea6ef4 | 2013-01-10 23:43:47 +0000 | [diff] [blame] | 4114 | TD = SemaRef.LocallyScopedExternCDecls.begin(), |
| 4115 | TDEnd = SemaRef.LocallyScopedExternCDecls.end(); |
Douglas Gregor | ec12ce2 | 2011-07-28 14:20:37 +0000 | [diff] [blame] | 4116 | TD != TDEnd; ++TD) { |
Douglas Gregor | 919814d | 2011-09-09 23:01:35 +0000 | [diff] [blame] | 4117 | if (!TD->second->isFromASTFile()) |
Richard Smith | 5ea6ef4 | 2013-01-10 23:43:47 +0000 | [diff] [blame] | 4118 | AddDeclRef(TD->second, LocallyScopedExternCDecls); |
Douglas Gregor | ec12ce2 | 2011-07-28 14:20:37 +0000 | [diff] [blame] | 4119 | } |
| 4120 | |
Douglas Gregor | b81c170 | 2009-04-27 20:06:05 +0000 | [diff] [blame] | 4121 | // Build a record containing all of the ext_vector declarations. |
| 4122 | RecordData ExtVectorDecls; |
Douglas Gregor | d58a0a5 | 2011-07-28 00:39:29 +0000 | [diff] [blame] | 4123 | AddLazyVectorDecls(*this, SemaRef.ExtVectorDecls, ExtVectorDecls); |
Douglas Gregor | b81c170 | 2009-04-27 20:06:05 +0000 | [diff] [blame] | 4124 | |
Argyrios Kyrtzidis | d455add | 2010-07-06 15:37:04 +0000 | [diff] [blame] | 4125 | // Build a record containing all of the VTable uses information. |
| 4126 | RecordData VTableUses; |
Argyrios Kyrtzidis | be4ebcd | 2010-08-03 17:29:52 +0000 | [diff] [blame] | 4127 | if (!SemaRef.VTableUses.empty()) { |
Argyrios Kyrtzidis | be4ebcd | 2010-08-03 17:29:52 +0000 | [diff] [blame] | 4128 | for (unsigned I = 0, N = SemaRef.VTableUses.size(); I != N; ++I) { |
| 4129 | AddDeclRef(SemaRef.VTableUses[I].first, VTableUses); |
| 4130 | AddSourceLocation(SemaRef.VTableUses[I].second, VTableUses); |
| 4131 | VTableUses.push_back(SemaRef.VTablesUsed[SemaRef.VTableUses[I].first]); |
| 4132 | } |
Argyrios Kyrtzidis | d455add | 2010-07-06 15:37:04 +0000 | [diff] [blame] | 4133 | } |
| 4134 | |
| 4135 | // Build a record containing all of dynamic classes declarations. |
| 4136 | RecordData DynamicClasses; |
Douglas Gregor | a126f17 | 2011-07-28 00:53:40 +0000 | [diff] [blame] | 4137 | AddLazyVectorDecls(*this, SemaRef.DynamicClasses, DynamicClasses); |
Argyrios Kyrtzidis | d455add | 2010-07-06 15:37:04 +0000 | [diff] [blame] | 4138 | |
Argyrios Kyrtzidis | 0e03638 | 2010-08-05 09:48:16 +0000 | [diff] [blame] | 4139 | // Build a record containing all of pending implicit instantiations. |
Chandler Carruth | 62c78d5 | 2010-08-25 08:44:16 +0000 | [diff] [blame] | 4140 | RecordData PendingInstantiations; |
Argyrios Kyrtzidis | 0e03638 | 2010-08-05 09:48:16 +0000 | [diff] [blame] | 4141 | for (std::deque<Sema::PendingImplicitInstantiation>::iterator |
Chandler Carruth | 62c78d5 | 2010-08-25 08:44:16 +0000 | [diff] [blame] | 4142 | I = SemaRef.PendingInstantiations.begin(), |
| 4143 | N = SemaRef.PendingInstantiations.end(); I != N; ++I) { |
| 4144 | AddDeclRef(I->first, PendingInstantiations); |
| 4145 | AddSourceLocation(I->second, PendingInstantiations); |
Argyrios Kyrtzidis | 0e03638 | 2010-08-05 09:48:16 +0000 | [diff] [blame] | 4146 | } |
| 4147 | assert(SemaRef.PendingLocalImplicitInstantiations.empty() && |
| 4148 | "There are local ones at end of translation unit!"); |
| 4149 | |
Argyrios Kyrtzidis | 76c38d3 | 2010-08-02 07:14:54 +0000 | [diff] [blame] | 4150 | // Build a record containing some declaration references. |
| 4151 | RecordData SemaDeclRefs; |
| 4152 | if (SemaRef.StdNamespace || SemaRef.StdBadAlloc) { |
| 4153 | AddDeclRef(SemaRef.getStdNamespace(), SemaDeclRefs); |
| 4154 | AddDeclRef(SemaRef.getStdBadAlloc(), SemaDeclRefs); |
| 4155 | } |
| 4156 | |
Peter Collingbourne | 14b6ba7 | 2011-02-09 21:04:32 +0000 | [diff] [blame] | 4157 | RecordData CUDASpecialDeclRefs; |
| 4158 | if (Context.getcudaConfigureCallDecl()) { |
| 4159 | AddDeclRef(Context.getcudaConfigureCallDecl(), CUDASpecialDeclRefs); |
| 4160 | } |
| 4161 | |
Douglas Gregor | d8bba9c | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4162 | // Build a record containing all of the known namespaces. |
| 4163 | RecordData KnownNamespaces; |
Nick Lewycky | 01a4114 | 2013-01-26 00:35:08 +0000 | [diff] [blame] | 4164 | for (llvm::MapVector<NamespaceDecl*, bool>::iterator |
Douglas Gregor | d8bba9c | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4165 | I = SemaRef.KnownNamespaces.begin(), |
| 4166 | IEnd = SemaRef.KnownNamespaces.end(); |
| 4167 | I != IEnd; ++I) { |
| 4168 | if (!I->second) |
| 4169 | AddDeclRef(I->first, KnownNamespaces); |
| 4170 | } |
Douglas Gregor | 1d9d989 | 2012-10-18 05:31:06 +0000 | [diff] [blame] | 4171 | |
Nick Lewycky | cd0655b | 2013-02-01 08:13:20 +0000 | [diff] [blame] | 4172 | // Build a record of all used, undefined objects that require definitions. |
| 4173 | RecordData UndefinedButUsed; |
Nick Lewycky | 995e26b | 2013-01-31 03:23:57 +0000 | [diff] [blame] | 4174 | |
| 4175 | SmallVector<std::pair<NamedDecl *, SourceLocation>, 16> Undefined; |
Nick Lewycky | cd0655b | 2013-02-01 08:13:20 +0000 | [diff] [blame] | 4176 | SemaRef.getUndefinedButUsed(Undefined); |
Nick Lewycky | 995e26b | 2013-01-31 03:23:57 +0000 | [diff] [blame] | 4177 | for (SmallVectorImpl<std::pair<NamedDecl *, SourceLocation> >::iterator |
| 4178 | I = Undefined.begin(), E = Undefined.end(); I != E; ++I) { |
Nick Lewycky | cd0655b | 2013-02-01 08:13:20 +0000 | [diff] [blame] | 4179 | AddDeclRef(I->first, UndefinedButUsed); |
| 4180 | AddSourceLocation(I->second, UndefinedButUsed); |
Nick Lewycky | 01a4114 | 2013-01-26 00:35:08 +0000 | [diff] [blame] | 4181 | } |
| 4182 | |
Douglas Gregor | 1d9d989 | 2012-10-18 05:31:06 +0000 | [diff] [blame] | 4183 | // Write the control block |
Douglas Gregor | bbf3831 | 2012-10-24 16:50:34 +0000 | [diff] [blame] | 4184 | WriteControlBlock(PP, Context, isysroot, OutputFile); |
Douglas Gregor | 1d9d989 | 2012-10-18 05:31:06 +0000 | [diff] [blame] | 4185 | |
Sebastian Redl | 3397c55 | 2010-08-18 23:56:27 +0000 | [diff] [blame] | 4186 | // Write the remaining AST contents. |
Douglas Gregor | ad1de00 | 2009-04-18 05:55:16 +0000 | [diff] [blame] | 4187 | RecordData Record; |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 4188 | Stream.EnterSubblock(AST_BLOCK_ID, 5); |
Douglas Gregor | b7c324f | 2011-08-12 01:39:19 +0000 | [diff] [blame] | 4189 | |
Argyrios Kyrtzidis | 5e24f2d | 2012-12-13 21:38:23 +0000 | [diff] [blame] | 4190 | // This is so that older clang versions, before the introduction |
| 4191 | // of the control block, can read and reject the newer PCH format. |
| 4192 | Record.clear(); |
| 4193 | Record.push_back(VERSION_MAJOR); |
| 4194 | Stream.EmitRecord(METADATA_OLD_FORMAT, Record); |
| 4195 | |
Douglas Gregor | b7c324f | 2011-08-12 01:39:19 +0000 | [diff] [blame] | 4196 | // Create a lexical update block containing all of the declarations in the |
| 4197 | // translation unit that do not come from other AST files. |
| 4198 | const TranslationUnitDecl *TU = Context.getTranslationUnitDecl(); |
| 4199 | SmallVector<KindDeclIDPair, 64> NewGlobalDecls; |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 4200 | for (const auto *I : TU->noload_decls()) { |
| 4201 | if (!I->isFromASTFile()) |
| 4202 | NewGlobalDecls.push_back(std::make_pair(I->getKind(), GetDeclRef(I))); |
Douglas Gregor | b7c324f | 2011-08-12 01:39:19 +0000 | [diff] [blame] | 4203 | } |
| 4204 | |
| 4205 | llvm::BitCodeAbbrev *Abv = new llvm::BitCodeAbbrev(); |
| 4206 | Abv->Add(llvm::BitCodeAbbrevOp(TU_UPDATE_LEXICAL)); |
| 4207 | Abv->Add(llvm::BitCodeAbbrevOp(llvm::BitCodeAbbrevOp::Blob)); |
| 4208 | unsigned TuUpdateLexicalAbbrev = Stream.EmitAbbrev(Abv); |
| 4209 | Record.clear(); |
| 4210 | Record.push_back(TU_UPDATE_LEXICAL); |
| 4211 | Stream.EmitRecordWithBlob(TuUpdateLexicalAbbrev, Record, |
| 4212 | data(NewGlobalDecls)); |
| 4213 | |
| 4214 | // And a visible updates block for the translation unit. |
| 4215 | Abv = new llvm::BitCodeAbbrev(); |
| 4216 | Abv->Add(llvm::BitCodeAbbrevOp(UPDATE_VISIBLE)); |
| 4217 | Abv->Add(llvm::BitCodeAbbrevOp(llvm::BitCodeAbbrevOp::VBR, 6)); |
| 4218 | Abv->Add(llvm::BitCodeAbbrevOp(llvm::BitCodeAbbrevOp::Fixed, 32)); |
| 4219 | Abv->Add(llvm::BitCodeAbbrevOp(llvm::BitCodeAbbrevOp::Blob)); |
| 4220 | UpdateVisibleAbbrev = Stream.EmitAbbrev(Abv); |
| 4221 | WriteDeclContextVisibleUpdate(TU); |
| 4222 | |
| 4223 | // If the translation unit has an anonymous namespace, and we don't already |
| 4224 | // have an update block for it, write it as an update block. |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 4225 | // FIXME: Why do we not do this if there's already an update block? |
Douglas Gregor | b7c324f | 2011-08-12 01:39:19 +0000 | [diff] [blame] | 4226 | if (NamespaceDecl *NS = TU->getAnonymousNamespace()) { |
| 4227 | ASTWriter::UpdateRecord &Record = DeclUpdates[TU]; |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 4228 | if (Record.empty()) |
| 4229 | Record.push_back(DeclUpdate(UPD_CXX_ADDED_ANONYMOUS_NAMESPACE, NS)); |
Douglas Gregor | b7c324f | 2011-08-12 01:39:19 +0000 | [diff] [blame] | 4230 | } |
Argyrios Kyrtzidis | 7518b37 | 2012-07-02 19:19:01 +0000 | [diff] [blame] | 4231 | |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 4232 | // Add update records for all mangling numbers and static local numbers. |
| 4233 | // These aren't really update records, but this is a convenient way of |
| 4234 | // tagging this rare extra data onto the declarations. |
| 4235 | for (const auto &Number : Context.MangleNumbers) |
| 4236 | if (!Number.first->isFromASTFile()) |
| 4237 | DeclUpdates[Number.first].push_back(DeclUpdate(UPD_MANGLING_NUMBER, |
| 4238 | Number.second)); |
| 4239 | for (const auto &Number : Context.StaticLocalNumbers) |
| 4240 | if (!Number.first->isFromASTFile()) |
| 4241 | DeclUpdates[Number.first].push_back(DeclUpdate(UPD_STATIC_LOCAL_NUMBER, |
| 4242 | Number.second)); |
| 4243 | |
Argyrios Kyrtzidis | 7518b37 | 2012-07-02 19:19:01 +0000 | [diff] [blame] | 4244 | // Make sure visible decls, added to DeclContexts previously loaded from |
| 4245 | // an AST file, are registered for serialization. |
Craig Topper | 09d19ef | 2013-07-04 03:08:24 +0000 | [diff] [blame] | 4246 | for (SmallVectorImpl<const Decl *>::iterator |
Argyrios Kyrtzidis | 7518b37 | 2012-07-02 19:19:01 +0000 | [diff] [blame] | 4247 | I = UpdatingVisibleDecls.begin(), |
| 4248 | E = UpdatingVisibleDecls.end(); I != E; ++I) { |
| 4249 | GetDeclRef(*I); |
| 4250 | } |
| 4251 | |
Argyrios Kyrtzidis | 51e75ae | 2013-08-07 21:17:33 +0000 | [diff] [blame] | 4252 | // Make sure all decls associated with an identifier are registered for |
| 4253 | // serialization. |
| 4254 | for (IdentifierTable::iterator ID = PP.getIdentifierTable().begin(), |
| 4255 | IDEnd = PP.getIdentifierTable().end(); |
| 4256 | ID != IDEnd; ++ID) { |
| 4257 | const IdentifierInfo *II = ID->second; |
| 4258 | if (!Chain || !II->isFromAST() || II->hasChangedSinceDeserialization()) { |
| 4259 | for (IdentifierResolver::iterator D = SemaRef.IdResolver.begin(II), |
| 4260 | DEnd = SemaRef.IdResolver.end(); |
| 4261 | D != DEnd; ++D) { |
| 4262 | GetDeclRef(*D); |
| 4263 | } |
| 4264 | } |
| 4265 | } |
| 4266 | |
Douglas Gregor | a119da0 | 2011-08-02 16:26:37 +0000 | [diff] [blame] | 4267 | // Form the record of special types. |
| 4268 | RecordData SpecialTypes; |
Douglas Gregor | a119da0 | 2011-08-02 16:26:37 +0000 | [diff] [blame] | 4269 | AddTypeRef(Context.getRawCFConstantStringType(), SpecialTypes); |
Douglas Gregor | a119da0 | 2011-08-02 16:26:37 +0000 | [diff] [blame] | 4270 | AddTypeRef(Context.getFILEType(), SpecialTypes); |
| 4271 | AddTypeRef(Context.getjmp_bufType(), SpecialTypes); |
| 4272 | AddTypeRef(Context.getsigjmp_bufType(), SpecialTypes); |
| 4273 | AddTypeRef(Context.ObjCIdRedefinitionType, SpecialTypes); |
| 4274 | AddTypeRef(Context.ObjCClassRedefinitionType, SpecialTypes); |
Douglas Gregor | a119da0 | 2011-08-02 16:26:37 +0000 | [diff] [blame] | 4275 | AddTypeRef(Context.ObjCSelRedefinitionType, SpecialTypes); |
Rafael Espindola | e2d4f4e | 2011-11-13 21:51:09 +0000 | [diff] [blame] | 4276 | AddTypeRef(Context.getucontext_tType(), SpecialTypes); |
Douglas Gregor | 185dbd7 | 2011-12-01 02:07:58 +0000 | [diff] [blame] | 4277 | |
Argyrios Kyrtzidis | 10f3df5 | 2011-10-28 22:54:21 +0000 | [diff] [blame] | 4278 | if (Chain) { |
| 4279 | // Write the mapping information describing our module dependencies and how |
| 4280 | // each of those modules were mapped into our own offset/ID space, so that |
| 4281 | // the reader can build the appropriate mapping to its own offset/ID space. |
| 4282 | // The map consists solely of a blob with the following format: |
| 4283 | // *(module-name-len:i16 module-name:len*i8 |
| 4284 | // source-location-offset:i32 |
| 4285 | // identifier-id:i32 |
| 4286 | // preprocessed-entity-id:i32 |
| 4287 | // macro-definition-id:i32 |
Douglas Gregor | 26ced12 | 2011-12-01 00:59:36 +0000 | [diff] [blame] | 4288 | // submodule-id:i32 |
Argyrios Kyrtzidis | 10f3df5 | 2011-10-28 22:54:21 +0000 | [diff] [blame] | 4289 | // selector-id:i32 |
| 4290 | // declaration-id:i32 |
| 4291 | // c++-base-specifiers-id:i32 |
| 4292 | // type-id:i32) |
| 4293 | // |
| 4294 | llvm::BitCodeAbbrev *Abbrev = new BitCodeAbbrev(); |
| 4295 | Abbrev->Add(BitCodeAbbrevOp(MODULE_OFFSET_MAP)); |
| 4296 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); |
| 4297 | unsigned ModuleOffsetMapAbbrev = Stream.EmitAbbrev(Abbrev); |
Dylan Noblesmith | f7ccbad | 2012-02-05 02:13:05 +0000 | [diff] [blame] | 4298 | SmallString<2048> Buffer; |
Argyrios Kyrtzidis | 10f3df5 | 2011-10-28 22:54:21 +0000 | [diff] [blame] | 4299 | { |
| 4300 | llvm::raw_svector_ostream Out(Buffer); |
| 4301 | for (ModuleManager::ModuleConstIterator M = Chain->ModuleMgr.begin(), |
Douglas Gregor | af13bfc | 2011-12-02 18:58:38 +0000 | [diff] [blame] | 4302 | MEnd = Chain->ModuleMgr.end(); |
Argyrios Kyrtzidis | 10f3df5 | 2011-10-28 22:54:21 +0000 | [diff] [blame] | 4303 | M != MEnd; ++M) { |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 4304 | using namespace llvm::support; |
| 4305 | endian::Writer<little> LE(Out); |
Argyrios Kyrtzidis | 10f3df5 | 2011-10-28 22:54:21 +0000 | [diff] [blame] | 4306 | StringRef FileName = (*M)->FileName; |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 4307 | LE.write<uint16_t>(FileName.size()); |
Argyrios Kyrtzidis | 10f3df5 | 2011-10-28 22:54:21 +0000 | [diff] [blame] | 4308 | Out.write(FileName.data(), FileName.size()); |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 4309 | LE.write<uint32_t>((*M)->SLocEntryBaseOffset); |
| 4310 | LE.write<uint32_t>((*M)->BaseIdentifierID); |
| 4311 | LE.write<uint32_t>((*M)->BaseMacroID); |
| 4312 | LE.write<uint32_t>((*M)->BasePreprocessedEntityID); |
| 4313 | LE.write<uint32_t>((*M)->BaseSubmoduleID); |
| 4314 | LE.write<uint32_t>((*M)->BaseSelectorID); |
| 4315 | LE.write<uint32_t>((*M)->BaseDeclID); |
| 4316 | LE.write<uint32_t>((*M)->BaseTypeIndex); |
Argyrios Kyrtzidis | 10f3df5 | 2011-10-28 22:54:21 +0000 | [diff] [blame] | 4317 | } |
| 4318 | } |
| 4319 | Record.clear(); |
| 4320 | Record.push_back(MODULE_OFFSET_MAP); |
| 4321 | Stream.EmitRecordWithBlob(ModuleOffsetMapAbbrev, Record, |
| 4322 | Buffer.data(), Buffer.size()); |
| 4323 | } |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 4324 | |
| 4325 | RecordData DeclUpdatesOffsetsRecord; |
| 4326 | |
| 4327 | // Keep writing types, declarations, and declaration update records |
| 4328 | // until we've emitted all of them. |
| 4329 | Stream.EnterSubblock(DECLTYPES_BLOCK_ID, NUM_ALLOWED_ABBREVS_SIZE); |
| 4330 | WriteDeclsBlockAbbrevs(); |
| 4331 | for (DeclsToRewriteTy::iterator I = DeclsToRewrite.begin(), |
| 4332 | E = DeclsToRewrite.end(); |
| 4333 | I != E; ++I) |
| 4334 | DeclTypesToEmit.push(const_cast<Decl*>(*I)); |
| 4335 | do { |
| 4336 | WriteDeclUpdatesBlocks(DeclUpdatesOffsetsRecord); |
| 4337 | while (!DeclTypesToEmit.empty()) { |
| 4338 | DeclOrType DOT = DeclTypesToEmit.front(); |
| 4339 | DeclTypesToEmit.pop(); |
| 4340 | if (DOT.isType()) |
| 4341 | WriteType(DOT.getType()); |
| 4342 | else |
| 4343 | WriteDecl(Context, DOT.getDecl()); |
| 4344 | } |
| 4345 | } while (!DeclUpdates.empty()); |
| 4346 | Stream.ExitBlock(); |
| 4347 | |
| 4348 | DoneWritingDeclsAndTypes = true; |
| 4349 | |
| 4350 | // These things can only be done once we've written out decls and types. |
| 4351 | WriteTypeDeclOffsets(); |
| 4352 | if (!DeclUpdatesOffsetsRecord.empty()) |
| 4353 | Stream.EmitRecord(DECL_UPDATE_OFFSETS, DeclUpdatesOffsetsRecord); |
| 4354 | WriteCXXBaseSpecifiersOffsets(); |
| 4355 | WriteFileDeclIDsMap(); |
| 4356 | WriteSourceManagerBlock(Context.getSourceManager(), PP, isysroot); |
| 4357 | |
| 4358 | WriteComments(); |
Argyrios Kyrtzidis | 975d353 | 2013-03-14 04:44:56 +0000 | [diff] [blame] | 4359 | WritePreprocessor(PP, isModule); |
Douglas Gregor | cfbf1c7 | 2011-02-10 17:09:37 +0000 | [diff] [blame] | 4360 | WriteHeaderSearch(PP.getHeaderSearchInfo(), isysroot); |
Sebastian Redl | 059612d | 2010-08-03 21:58:15 +0000 | [diff] [blame] | 4361 | WriteSelectors(SemaRef); |
Fariborz Jahanian | 3201983 | 2010-07-23 19:11:11 +0000 | [diff] [blame] | 4362 | WriteReferencedSelectorsPool(SemaRef); |
Argyrios Kyrtzidis | 975d353 | 2013-03-14 04:44:56 +0000 | [diff] [blame] | 4363 | WriteIdentifierTable(PP, SemaRef.IdResolver, isModule); |
Peter Collingbourne | 84bccea | 2011-02-15 19:46:30 +0000 | [diff] [blame] | 4364 | WriteFPPragmaOptions(SemaRef.getFPOptions()); |
| 4365 | WriteOpenCLExtensions(SemaRef); |
Argyrios Kyrtzidis | ea744ab | 2013-03-27 17:17:23 +0000 | [diff] [blame] | 4366 | WritePragmaDiagnosticMappings(Context.getDiagnostics(), isModule); |
Douglas Gregor | ad1de00 | 2009-04-18 05:55:16 +0000 | [diff] [blame] | 4367 | |
Douglas Gregor | e209e50 | 2011-12-06 01:10:29 +0000 | [diff] [blame] | 4368 | // If we're emitting a module, write out the submodule information. |
| 4369 | if (WritingModule) |
| 4370 | WriteSubmodules(WritingModule); |
| 4371 | |
Douglas Gregor | a119da0 | 2011-08-02 16:26:37 +0000 | [diff] [blame] | 4372 | Stream.EmitRecord(SPECIAL_TYPES, SpecialTypes); |
| 4373 | |
Douglas Gregor | 4c0e86b | 2009-04-22 22:02:47 +0000 | [diff] [blame] | 4374 | // Write the record containing external, unnamed definitions. |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 4375 | if (!EagerlyDeserializedDecls.empty()) |
| 4376 | Stream.EmitRecord(EAGERLY_DESERIALIZED_DECLS, EagerlyDeserializedDecls); |
Douglas Gregor | 4c0e86b | 2009-04-22 22:02:47 +0000 | [diff] [blame] | 4377 | |
| 4378 | // Write the record containing tentative definitions. |
| 4379 | if (!TentativeDefinitions.empty()) |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 4380 | Stream.EmitRecord(TENTATIVE_DEFINITIONS, TentativeDefinitions); |
Douglas Gregor | 14c22f2 | 2009-04-22 22:18:58 +0000 | [diff] [blame] | 4381 | |
Argyrios Kyrtzidis | 49b96d1 | 2010-08-13 18:42:17 +0000 | [diff] [blame] | 4382 | // Write the record containing unused file scoped decls. |
| 4383 | if (!UnusedFileScopedDecls.empty()) |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 4384 | Stream.EmitRecord(UNUSED_FILESCOPED_DECLS, UnusedFileScopedDecls); |
Kovarththanan Rajaratnam | 11a18f1 | 2010-03-14 07:06:50 +0000 | [diff] [blame] | 4385 | |
Argyrios Kyrtzidis | 72b9057 | 2010-08-05 09:48:08 +0000 | [diff] [blame] | 4386 | // Write the record containing weak undeclared identifiers. |
| 4387 | if (!WeakUndeclaredIdentifiers.empty()) |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 4388 | Stream.EmitRecord(WEAK_UNDECLARED_IDENTIFIERS, |
Argyrios Kyrtzidis | 72b9057 | 2010-08-05 09:48:08 +0000 | [diff] [blame] | 4389 | WeakUndeclaredIdentifiers); |
| 4390 | |
Richard Smith | 5ea6ef4 | 2013-01-10 23:43:47 +0000 | [diff] [blame] | 4391 | // Write the record containing locally-scoped extern "C" definitions. |
| 4392 | if (!LocallyScopedExternCDecls.empty()) |
| 4393 | Stream.EmitRecord(LOCALLY_SCOPED_EXTERN_C_DECLS, |
| 4394 | LocallyScopedExternCDecls); |
Douglas Gregor | b81c170 | 2009-04-27 20:06:05 +0000 | [diff] [blame] | 4395 | |
| 4396 | // Write the record containing ext_vector type names. |
| 4397 | if (!ExtVectorDecls.empty()) |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 4398 | Stream.EmitRecord(EXT_VECTOR_DECLS, ExtVectorDecls); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4399 | |
Argyrios Kyrtzidis | d455add | 2010-07-06 15:37:04 +0000 | [diff] [blame] | 4400 | // Write the record containing VTable uses information. |
| 4401 | if (!VTableUses.empty()) |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 4402 | Stream.EmitRecord(VTABLE_USES, VTableUses); |
Argyrios Kyrtzidis | d455add | 2010-07-06 15:37:04 +0000 | [diff] [blame] | 4403 | |
| 4404 | // Write the record containing dynamic classes declarations. |
| 4405 | if (!DynamicClasses.empty()) |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 4406 | Stream.EmitRecord(DYNAMIC_CLASSES, DynamicClasses); |
Argyrios Kyrtzidis | d455add | 2010-07-06 15:37:04 +0000 | [diff] [blame] | 4407 | |
Argyrios Kyrtzidis | 0e03638 | 2010-08-05 09:48:16 +0000 | [diff] [blame] | 4408 | // Write the record containing pending implicit instantiations. |
Chandler Carruth | 62c78d5 | 2010-08-25 08:44:16 +0000 | [diff] [blame] | 4409 | if (!PendingInstantiations.empty()) |
| 4410 | Stream.EmitRecord(PENDING_IMPLICIT_INSTANTIATIONS, PendingInstantiations); |
Argyrios Kyrtzidis | 0e03638 | 2010-08-05 09:48:16 +0000 | [diff] [blame] | 4411 | |
Argyrios Kyrtzidis | 76c38d3 | 2010-08-02 07:14:54 +0000 | [diff] [blame] | 4412 | // Write the record containing declaration references of Sema. |
| 4413 | if (!SemaDeclRefs.empty()) |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 4414 | Stream.EmitRecord(SEMA_DECL_REFS, SemaDeclRefs); |
Argyrios Kyrtzidis | 76c38d3 | 2010-08-02 07:14:54 +0000 | [diff] [blame] | 4415 | |
Peter Collingbourne | 14b6ba7 | 2011-02-09 21:04:32 +0000 | [diff] [blame] | 4416 | // Write the record containing CUDA-specific declaration references. |
| 4417 | if (!CUDASpecialDeclRefs.empty()) |
| 4418 | Stream.EmitRecord(CUDA_SPECIAL_DECL_REFS, CUDASpecialDeclRefs); |
Sean Hunt | ebcbe1d | 2011-05-04 23:29:54 +0000 | [diff] [blame] | 4419 | |
| 4420 | // Write the delegating constructors. |
| 4421 | if (!DelegatingCtorDecls.empty()) |
| 4422 | Stream.EmitRecord(DELEGATING_CTORS, DelegatingCtorDecls); |
Peter Collingbourne | 14b6ba7 | 2011-02-09 21:04:32 +0000 | [diff] [blame] | 4423 | |
Douglas Gregor | d8bba9c | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4424 | // Write the known namespaces. |
| 4425 | if (!KnownNamespaces.empty()) |
| 4426 | Stream.EmitRecord(KNOWN_NAMESPACES, KnownNamespaces); |
Nick Lewycky | 01a4114 | 2013-01-26 00:35:08 +0000 | [diff] [blame] | 4427 | |
Nick Lewycky | cd0655b | 2013-02-01 08:13:20 +0000 | [diff] [blame] | 4428 | // Write the undefined internal functions and variables, and inline functions. |
| 4429 | if (!UndefinedButUsed.empty()) |
| 4430 | Stream.EmitRecord(UNDEFINED_BUT_USED, UndefinedButUsed); |
Douglas Gregor | d8bba9c | 2011-06-28 16:20:02 +0000 | [diff] [blame] | 4431 | |
Douglas Gregor | b7c324f | 2011-08-12 01:39:19 +0000 | [diff] [blame] | 4432 | // Write the visible updates to DeclContexts. |
Stephen Hines | 6bcf27b | 2014-05-29 04:14:42 -0700 | [diff] [blame^] | 4433 | for (auto *DC : UpdatedDeclContexts) |
| 4434 | WriteDeclContextVisibleUpdate(DC); |
Douglas Gregor | b7c324f | 2011-08-12 01:39:19 +0000 | [diff] [blame] | 4435 | |
Douglas Gregor | c5e0f9b | 2011-12-03 01:15:29 +0000 | [diff] [blame] | 4436 | if (!WritingModule) { |
| 4437 | // Write the submodules that were imported, if any. |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 4438 | struct ModuleInfo { |
| 4439 | uint64_t ID; |
| 4440 | Module *M; |
| 4441 | ModuleInfo(uint64_t ID, Module *M) : ID(ID), M(M) {} |
| 4442 | }; |
| 4443 | llvm::SmallVector<ModuleInfo, 64> Imports; |
| 4444 | for (const auto *I : Context.local_imports()) { |
Douglas Gregor | c5e0f9b | 2011-12-03 01:15:29 +0000 | [diff] [blame] | 4445 | assert(SubmoduleIDs.find(I->getImportedModule()) != SubmoduleIDs.end()); |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 4446 | Imports.push_back(ModuleInfo(SubmoduleIDs[I->getImportedModule()], |
| 4447 | I->getImportedModule())); |
Douglas Gregor | c5e0f9b | 2011-12-03 01:15:29 +0000 | [diff] [blame] | 4448 | } |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 4449 | |
| 4450 | if (!Imports.empty()) { |
| 4451 | auto Cmp = [](const ModuleInfo &A, const ModuleInfo &B) { |
| 4452 | return A.ID < B.ID; |
| 4453 | }; |
| 4454 | |
| 4455 | // Sort and deduplicate module IDs. |
| 4456 | std::sort(Imports.begin(), Imports.end(), Cmp); |
| 4457 | Imports.erase(std::unique(Imports.begin(), Imports.end(), Cmp), |
| 4458 | Imports.end()); |
| 4459 | |
| 4460 | RecordData ImportedModules; |
| 4461 | for (const auto &Import : Imports) { |
| 4462 | ImportedModules.push_back(Import.ID); |
| 4463 | // FIXME: If the module has macros imported then later has declarations |
| 4464 | // imported, this location won't be the right one as a location for the |
| 4465 | // declaration imports. |
| 4466 | AddSourceLocation(Import.M->MacroVisibilityLoc, ImportedModules); |
| 4467 | } |
| 4468 | |
Douglas Gregor | c5e0f9b | 2011-12-03 01:15:29 +0000 | [diff] [blame] | 4469 | Stream.EmitRecord(IMPORTED_MODULES, ImportedModules); |
| 4470 | } |
Douglas Gregor | f6137e4 | 2011-12-03 00:59:55 +0000 | [diff] [blame] | 4471 | } |
Douglas Gregor | a8235d6 | 2012-10-09 23:05:51 +0000 | [diff] [blame] | 4472 | |
Douglas Gregor | b7c324f | 2011-08-12 01:39:19 +0000 | [diff] [blame] | 4473 | WriteDeclReplacementsBlock(); |
Douglas Gregor | 2171bf1 | 2012-01-15 16:58:34 +0000 | [diff] [blame] | 4474 | WriteRedeclarations(); |
Douglas Gregor | aa94590 | 2013-02-18 15:53:43 +0000 | [diff] [blame] | 4475 | WriteMergedDecls(); |
Douglas Gregor | cff9f26 | 2012-01-27 01:47:08 +0000 | [diff] [blame] | 4476 | WriteObjCCategories(); |
Richard Smith | ac32d90 | 2013-08-07 21:41:30 +0000 | [diff] [blame] | 4477 | WriteLateParsedTemplates(SemaRef); |
Stephen Hines | 6bcf27b | 2014-05-29 04:14:42 -0700 | [diff] [blame^] | 4478 | if(!WritingModule) |
| 4479 | WriteOptimizePragmaOptions(SemaRef); |
Richard Smith | ac32d90 | 2013-08-07 21:41:30 +0000 | [diff] [blame] | 4480 | |
Douglas Gregor | 3e1af84 | 2009-04-17 22:13:46 +0000 | [diff] [blame] | 4481 | // Some simple statistics |
Douglas Gregor | ad1de00 | 2009-04-18 05:55:16 +0000 | [diff] [blame] | 4482 | Record.clear(); |
Douglas Gregor | 3e1af84 | 2009-04-17 22:13:46 +0000 | [diff] [blame] | 4483 | Record.push_back(NumStatements); |
Douglas Gregor | 37e2684 | 2009-04-21 23:56:24 +0000 | [diff] [blame] | 4484 | Record.push_back(NumMacros); |
Douglas Gregor | 2512308 | 2009-04-22 22:34:57 +0000 | [diff] [blame] | 4485 | Record.push_back(NumLexicalDeclContexts); |
| 4486 | Record.push_back(NumVisibleDeclContexts); |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 4487 | Stream.EmitRecord(STATISTICS, Record); |
Douglas Gregor | c9490c0 | 2009-04-16 22:23:12 +0000 | [diff] [blame] | 4488 | Stream.ExitBlock(); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 4489 | } |
| 4490 | |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 4491 | void ASTWriter::WriteDeclUpdatesBlocks(RecordDataImpl &OffsetsRecord) { |
Argyrios Kyrtzidis | 7b90340 | 2010-10-24 17:26:36 +0000 | [diff] [blame] | 4492 | if (DeclUpdates.empty()) |
| 4493 | return; |
| 4494 | |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 4495 | DeclUpdateMap LocalUpdates; |
| 4496 | LocalUpdates.swap(DeclUpdates); |
Argyrios Kyrtzidis | 7b90340 | 2010-10-24 17:26:36 +0000 | [diff] [blame] | 4497 | |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 4498 | for (auto &DeclUpdate : LocalUpdates) { |
| 4499 | const Decl *D = DeclUpdate.first; |
Argyrios Kyrtzidis | ad834d5 | 2011-11-12 21:07:46 +0000 | [diff] [blame] | 4500 | if (isRewritten(D)) |
Argyrios Kyrtzidis | ba901b5 | 2010-10-24 17:26:46 +0000 | [diff] [blame] | 4501 | continue; // The decl will be written completely,no need to store updates. |
| 4502 | |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 4503 | bool HasUpdatedBody = false; |
| 4504 | RecordData Record; |
| 4505 | for (auto &Update : DeclUpdate.second) { |
| 4506 | DeclUpdateKind Kind = (DeclUpdateKind)Update.getKind(); |
| 4507 | |
| 4508 | Record.push_back(Kind); |
| 4509 | switch (Kind) { |
| 4510 | case UPD_CXX_ADDED_IMPLICIT_MEMBER: |
| 4511 | case UPD_CXX_ADDED_TEMPLATE_SPECIALIZATION: |
| 4512 | case UPD_CXX_ADDED_ANONYMOUS_NAMESPACE: |
Stephen Hines | 6bcf27b | 2014-05-29 04:14:42 -0700 | [diff] [blame^] | 4513 | assert(Update.getDecl() && "no decl to add?"); |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 4514 | Record.push_back(GetDeclRef(Update.getDecl())); |
| 4515 | break; |
| 4516 | |
| 4517 | case UPD_CXX_INSTANTIATED_STATIC_DATA_MEMBER: |
| 4518 | AddSourceLocation(Update.getLoc(), Record); |
| 4519 | break; |
| 4520 | |
| 4521 | case UPD_CXX_INSTANTIATED_FUNCTION_DEFINITION: |
| 4522 | // An updated body is emitted last, so that the reader doesn't need |
| 4523 | // to skip over the lazy body to reach statements for other records. |
| 4524 | Record.pop_back(); |
| 4525 | HasUpdatedBody = true; |
| 4526 | break; |
| 4527 | |
Stephen Hines | 6bcf27b | 2014-05-29 04:14:42 -0700 | [diff] [blame^] | 4528 | case UPD_CXX_INSTANTIATED_CLASS_DEFINITION: { |
| 4529 | auto *RD = cast<CXXRecordDecl>(D); |
| 4530 | AddUpdatedDeclContext(RD->getPrimaryContext()); |
| 4531 | AddCXXDefinitionData(RD, Record); |
| 4532 | Record.push_back(WriteDeclContextLexicalBlock( |
| 4533 | *Context, const_cast<CXXRecordDecl *>(RD))); |
| 4534 | |
| 4535 | // This state is sometimes updated by template instantiation, when we |
| 4536 | // switch from the specialization referring to the template declaration |
| 4537 | // to it referring to the template definition. |
| 4538 | if (auto *MSInfo = RD->getMemberSpecializationInfo()) { |
| 4539 | Record.push_back(MSInfo->getTemplateSpecializationKind()); |
| 4540 | AddSourceLocation(MSInfo->getPointOfInstantiation(), Record); |
| 4541 | } else { |
| 4542 | auto *Spec = cast<ClassTemplateSpecializationDecl>(RD); |
| 4543 | Record.push_back(Spec->getTemplateSpecializationKind()); |
| 4544 | AddSourceLocation(Spec->getPointOfInstantiation(), Record); |
| 4545 | |
| 4546 | // The instantiation might have been resolved to a partial |
| 4547 | // specialization. If so, record which one. |
| 4548 | auto From = Spec->getInstantiatedFrom(); |
| 4549 | if (auto PartialSpec = |
| 4550 | From.dyn_cast<ClassTemplatePartialSpecializationDecl*>()) { |
| 4551 | Record.push_back(true); |
| 4552 | AddDeclRef(PartialSpec, Record); |
| 4553 | AddTemplateArgumentList(&Spec->getTemplateInstantiationArgs(), |
| 4554 | Record); |
| 4555 | } else { |
| 4556 | Record.push_back(false); |
| 4557 | } |
| 4558 | } |
| 4559 | Record.push_back(RD->getTagKind()); |
| 4560 | AddSourceLocation(RD->getLocation(), Record); |
| 4561 | AddSourceLocation(RD->getLocStart(), Record); |
| 4562 | AddSourceLocation(RD->getRBraceLoc(), Record); |
| 4563 | |
| 4564 | // Instantiation may change attributes; write them all out afresh. |
| 4565 | Record.push_back(D->hasAttrs()); |
| 4566 | if (Record.back()) |
| 4567 | WriteAttributes(ArrayRef<const Attr*>(D->getAttrs().begin(), |
| 4568 | D->getAttrs().size()), Record); |
| 4569 | |
| 4570 | // FIXME: Ensure we don't get here for explicit instantiations. |
| 4571 | break; |
| 4572 | } |
| 4573 | |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 4574 | case UPD_CXX_RESOLVED_EXCEPTION_SPEC: |
| 4575 | addExceptionSpec( |
| 4576 | *this, |
| 4577 | cast<FunctionDecl>(D)->getType()->castAs<FunctionProtoType>(), |
| 4578 | Record); |
| 4579 | break; |
| 4580 | |
| 4581 | case UPD_CXX_DEDUCED_RETURN_TYPE: |
| 4582 | Record.push_back(GetOrCreateTypeID(Update.getType())); |
| 4583 | break; |
| 4584 | |
| 4585 | case UPD_DECL_MARKED_USED: |
| 4586 | break; |
| 4587 | |
| 4588 | case UPD_MANGLING_NUMBER: |
| 4589 | case UPD_STATIC_LOCAL_NUMBER: |
| 4590 | Record.push_back(Update.getNumber()); |
| 4591 | break; |
| 4592 | } |
| 4593 | } |
| 4594 | |
| 4595 | if (HasUpdatedBody) { |
| 4596 | const FunctionDecl *Def = cast<FunctionDecl>(D); |
| 4597 | Record.push_back(UPD_CXX_INSTANTIATED_FUNCTION_DEFINITION); |
| 4598 | Record.push_back(Def->isInlined()); |
| 4599 | AddSourceLocation(Def->getInnerLocStart(), Record); |
| 4600 | AddFunctionDefinition(Def, Record); |
| 4601 | } |
| 4602 | |
Stephen Hines | 6bcf27b | 2014-05-29 04:14:42 -0700 | [diff] [blame^] | 4603 | OffsetsRecord.push_back(GetDeclRef(D)); |
| 4604 | OffsetsRecord.push_back(Stream.GetCurrentBitNo()); |
| 4605 | |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 4606 | Stream.EmitRecord(DECL_UPDATES, Record); |
| 4607 | |
| 4608 | // Flush any statements that were written as part of this update record. |
| 4609 | FlushStmts(); |
Stephen Hines | 6bcf27b | 2014-05-29 04:14:42 -0700 | [diff] [blame^] | 4610 | |
| 4611 | // Flush C++ base specifiers, if there are any. |
| 4612 | FlushCXXBaseSpecifiers(); |
Argyrios Kyrtzidis | 7b90340 | 2010-10-24 17:26:36 +0000 | [diff] [blame] | 4613 | } |
Argyrios Kyrtzidis | 7b90340 | 2010-10-24 17:26:36 +0000 | [diff] [blame] | 4614 | } |
| 4615 | |
Argyrios Kyrtzidis | aacdd02 | 2010-10-24 17:26:43 +0000 | [diff] [blame] | 4616 | void ASTWriter::WriteDeclReplacementsBlock() { |
Sebastian Redl | 0b17c61 | 2010-08-13 00:28:03 +0000 | [diff] [blame] | 4617 | if (ReplacedDecls.empty()) |
| 4618 | return; |
| 4619 | |
| 4620 | RecordData Record; |
Craig Topper | 09d19ef | 2013-07-04 03:08:24 +0000 | [diff] [blame] | 4621 | for (SmallVectorImpl<ReplacedDeclInfo>::iterator |
| 4622 | I = ReplacedDecls.begin(), E = ReplacedDecls.end(); I != E; ++I) { |
Argyrios Kyrtzidis | ef23b60 | 2011-10-31 07:20:15 +0000 | [diff] [blame] | 4623 | Record.push_back(I->ID); |
| 4624 | Record.push_back(I->Offset); |
| 4625 | Record.push_back(I->Loc); |
Sebastian Redl | 0b17c61 | 2010-08-13 00:28:03 +0000 | [diff] [blame] | 4626 | } |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 4627 | Stream.EmitRecord(DECL_REPLACEMENTS, Record); |
Sebastian Redl | 0b17c61 | 2010-08-13 00:28:03 +0000 | [diff] [blame] | 4628 | } |
| 4629 | |
Argyrios Kyrtzidis | 89eaf3a | 2010-10-24 17:26:40 +0000 | [diff] [blame] | 4630 | void ASTWriter::AddSourceLocation(SourceLocation Loc, RecordDataImpl &Record) { |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 4631 | Record.push_back(Loc.getRawEncoding()); |
| 4632 | } |
| 4633 | |
Argyrios Kyrtzidis | 89eaf3a | 2010-10-24 17:26:40 +0000 | [diff] [blame] | 4634 | void ASTWriter::AddSourceRange(SourceRange Range, RecordDataImpl &Record) { |
Chris Lattner | 6ad9ac0 | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 4635 | AddSourceLocation(Range.getBegin(), Record); |
| 4636 | AddSourceLocation(Range.getEnd(), Record); |
| 4637 | } |
| 4638 | |
Argyrios Kyrtzidis | 89eaf3a | 2010-10-24 17:26:40 +0000 | [diff] [blame] | 4639 | void ASTWriter::AddAPInt(const llvm::APInt &Value, RecordDataImpl &Record) { |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 4640 | Record.push_back(Value.getBitWidth()); |
Benjamin Kramer | 4ea884b | 2010-09-06 23:43:28 +0000 | [diff] [blame] | 4641 | const uint64_t *Words = Value.getRawData(); |
| 4642 | Record.append(Words, Words + Value.getNumWords()); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 4643 | } |
| 4644 | |
Argyrios Kyrtzidis | 89eaf3a | 2010-10-24 17:26:40 +0000 | [diff] [blame] | 4645 | void ASTWriter::AddAPSInt(const llvm::APSInt &Value, RecordDataImpl &Record) { |
Douglas Gregor | 0a2b45e | 2009-04-13 18:14:40 +0000 | [diff] [blame] | 4646 | Record.push_back(Value.isUnsigned()); |
| 4647 | AddAPInt(Value, Record); |
| 4648 | } |
| 4649 | |
Argyrios Kyrtzidis | 89eaf3a | 2010-10-24 17:26:40 +0000 | [diff] [blame] | 4650 | void ASTWriter::AddAPFloat(const llvm::APFloat &Value, RecordDataImpl &Record) { |
Douglas Gregor | 17fc223 | 2009-04-14 21:55:33 +0000 | [diff] [blame] | 4651 | AddAPInt(Value.bitcastToAPInt(), Record); |
| 4652 | } |
| 4653 | |
Argyrios Kyrtzidis | 89eaf3a | 2010-10-24 17:26:40 +0000 | [diff] [blame] | 4654 | void ASTWriter::AddIdentifierRef(const IdentifierInfo *II, RecordDataImpl &Record) { |
Douglas Gregor | 2deaea3 | 2009-04-22 18:49:13 +0000 | [diff] [blame] | 4655 | Record.push_back(getIdentifierRef(II)); |
| 4656 | } |
| 4657 | |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 4658 | IdentID ASTWriter::getIdentifierRef(const IdentifierInfo *II) { |
Stephen Hines | 6bcf27b | 2014-05-29 04:14:42 -0700 | [diff] [blame^] | 4659 | if (!II) |
Douglas Gregor | 2deaea3 | 2009-04-22 18:49:13 +0000 | [diff] [blame] | 4660 | return 0; |
Douglas Gregor | afaf308 | 2009-04-11 00:14:32 +0000 | [diff] [blame] | 4661 | |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 4662 | IdentID &ID = IdentifierIDs[II]; |
Douglas Gregor | afaf308 | 2009-04-11 00:14:32 +0000 | [diff] [blame] | 4663 | if (ID == 0) |
Sebastian Redl | f2f0f03 | 2010-07-23 23:49:55 +0000 | [diff] [blame] | 4664 | ID = NextIdentID++; |
Douglas Gregor | 2deaea3 | 2009-04-22 18:49:13 +0000 | [diff] [blame] | 4665 | return ID; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 4666 | } |
| 4667 | |
Argyrios Kyrtzidis | 9317ab9 | 2013-03-22 21:12:57 +0000 | [diff] [blame] | 4668 | MacroID ASTWriter::getMacroRef(MacroInfo *MI, const IdentifierInfo *Name) { |
Douglas Gregor | a8235d6 | 2012-10-09 23:05:51 +0000 | [diff] [blame] | 4669 | // Don't emit builtin macros like __LINE__ to the AST file unless they |
| 4670 | // have been redefined by the header (in which case they are not |
| 4671 | // isBuiltinMacro). |
Stephen Hines | 6bcf27b | 2014-05-29 04:14:42 -0700 | [diff] [blame^] | 4672 | if (!MI || MI->isBuiltinMacro()) |
Douglas Gregor | a8235d6 | 2012-10-09 23:05:51 +0000 | [diff] [blame] | 4673 | return 0; |
| 4674 | |
Argyrios Kyrtzidis | 9317ab9 | 2013-03-22 21:12:57 +0000 | [diff] [blame] | 4675 | MacroID &ID = MacroIDs[MI]; |
| 4676 | if (ID == 0) { |
Douglas Gregor | a8235d6 | 2012-10-09 23:05:51 +0000 | [diff] [blame] | 4677 | ID = NextMacroID++; |
Argyrios Kyrtzidis | 9317ab9 | 2013-03-22 21:12:57 +0000 | [diff] [blame] | 4678 | MacroInfoToEmitData Info = { Name, MI, ID }; |
| 4679 | MacroInfosToEmit.push_back(Info); |
| 4680 | } |
Douglas Gregor | a8235d6 | 2012-10-09 23:05:51 +0000 | [diff] [blame] | 4681 | return ID; |
| 4682 | } |
| 4683 | |
Argyrios Kyrtzidis | 9317ab9 | 2013-03-22 21:12:57 +0000 | [diff] [blame] | 4684 | MacroID ASTWriter::getMacroID(MacroInfo *MI) { |
Stephen Hines | 6bcf27b | 2014-05-29 04:14:42 -0700 | [diff] [blame^] | 4685 | if (!MI || MI->isBuiltinMacro()) |
Argyrios Kyrtzidis | 9317ab9 | 2013-03-22 21:12:57 +0000 | [diff] [blame] | 4686 | return 0; |
| 4687 | |
| 4688 | assert(MacroIDs.find(MI) != MacroIDs.end() && "Macro not emitted!"); |
| 4689 | return MacroIDs[MI]; |
| 4690 | } |
| 4691 | |
| 4692 | uint64_t ASTWriter::getMacroDirectivesOffset(const IdentifierInfo *Name) { |
| 4693 | assert(IdentMacroDirectivesOffsetMap[Name] && "not set!"); |
| 4694 | return IdentMacroDirectivesOffsetMap[Name]; |
| 4695 | } |
| 4696 | |
Argyrios Kyrtzidis | 89eaf3a | 2010-10-24 17:26:40 +0000 | [diff] [blame] | 4697 | void ASTWriter::AddSelectorRef(const Selector SelRef, RecordDataImpl &Record) { |
Sebastian Redl | 5d05007 | 2010-08-04 17:20:04 +0000 | [diff] [blame] | 4698 | Record.push_back(getSelectorRef(SelRef)); |
| 4699 | } |
| 4700 | |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 4701 | SelectorID ASTWriter::getSelectorRef(Selector Sel) { |
Stephen Hines | 6bcf27b | 2014-05-29 04:14:42 -0700 | [diff] [blame^] | 4702 | if (Sel.getAsOpaquePtr() == nullptr) { |
Sebastian Redl | 5d05007 | 2010-08-04 17:20:04 +0000 | [diff] [blame] | 4703 | return 0; |
Steve Naroff | 90cd1bb | 2009-04-23 10:39:46 +0000 | [diff] [blame] | 4704 | } |
| 4705 | |
Douglas Gregor | 2d1ece8 | 2013-02-08 21:30:59 +0000 | [diff] [blame] | 4706 | SelectorID SID = SelectorIDs[Sel]; |
Sebastian Redl | e58aa89 | 2010-08-04 18:21:41 +0000 | [diff] [blame] | 4707 | if (SID == 0 && Chain) { |
| 4708 | // This might trigger a ReadSelector callback, which will set the ID for |
| 4709 | // this selector. |
| 4710 | Chain->LoadSelector(Sel); |
Douglas Gregor | 2d1ece8 | 2013-02-08 21:30:59 +0000 | [diff] [blame] | 4711 | SID = SelectorIDs[Sel]; |
Sebastian Redl | e58aa89 | 2010-08-04 18:21:41 +0000 | [diff] [blame] | 4712 | } |
Steve Naroff | 90cd1bb | 2009-04-23 10:39:46 +0000 | [diff] [blame] | 4713 | if (SID == 0) { |
Sebastian Redl | e58aa89 | 2010-08-04 18:21:41 +0000 | [diff] [blame] | 4714 | SID = NextSelectorID++; |
Douglas Gregor | 2d1ece8 | 2013-02-08 21:30:59 +0000 | [diff] [blame] | 4715 | SelectorIDs[Sel] = SID; |
Steve Naroff | 90cd1bb | 2009-04-23 10:39:46 +0000 | [diff] [blame] | 4716 | } |
Sebastian Redl | 5d05007 | 2010-08-04 17:20:04 +0000 | [diff] [blame] | 4717 | return SID; |
Steve Naroff | 90cd1bb | 2009-04-23 10:39:46 +0000 | [diff] [blame] | 4718 | } |
| 4719 | |
Argyrios Kyrtzidis | 89eaf3a | 2010-10-24 17:26:40 +0000 | [diff] [blame] | 4720 | void ASTWriter::AddCXXTemporary(const CXXTemporary *Temp, RecordDataImpl &Record) { |
Chris Lattner | d259836 | 2010-05-10 00:25:06 +0000 | [diff] [blame] | 4721 | AddDeclRef(Temp->getDestructor(), Record); |
| 4722 | } |
| 4723 | |
Douglas Gregor | 7c789c1 | 2010-10-29 22:39:52 +0000 | [diff] [blame] | 4724 | void ASTWriter::AddCXXBaseSpecifiersRef(CXXBaseSpecifier const *Bases, |
| 4725 | CXXBaseSpecifier const *BasesEnd, |
| 4726 | RecordDataImpl &Record) { |
| 4727 | assert(Bases != BasesEnd && "Empty base-specifier sets are not recorded"); |
| 4728 | CXXBaseSpecifiersToWrite.push_back( |
| 4729 | QueuedCXXBaseSpecifiers(NextCXXBaseSpecifiersID, |
| 4730 | Bases, BasesEnd)); |
| 4731 | Record.push_back(NextCXXBaseSpecifiersID++); |
| 4732 | } |
| 4733 | |
Sebastian Redl | a4232eb | 2010-08-18 23:56:21 +0000 | [diff] [blame] | 4734 | void ASTWriter::AddTemplateArgumentLocInfo(TemplateArgument::ArgKind Kind, |
Argyrios Kyrtzidis | 44f8c37 | 2010-06-22 09:54:59 +0000 | [diff] [blame] | 4735 | const TemplateArgumentLocInfo &Arg, |
Argyrios Kyrtzidis | 89eaf3a | 2010-10-24 17:26:40 +0000 | [diff] [blame] | 4736 | RecordDataImpl &Record) { |
Argyrios Kyrtzidis | 44f8c37 | 2010-06-22 09:54:59 +0000 | [diff] [blame] | 4737 | switch (Kind) { |
John McCall | 833ca99 | 2009-10-29 08:12:44 +0000 | [diff] [blame] | 4738 | case TemplateArgument::Expression: |
Argyrios Kyrtzidis | 44f8c37 | 2010-06-22 09:54:59 +0000 | [diff] [blame] | 4739 | AddStmt(Arg.getAsExpr()); |
John McCall | 833ca99 | 2009-10-29 08:12:44 +0000 | [diff] [blame] | 4740 | break; |
| 4741 | case TemplateArgument::Type: |
Argyrios Kyrtzidis | 44f8c37 | 2010-06-22 09:54:59 +0000 | [diff] [blame] | 4742 | AddTypeSourceInfo(Arg.getAsTypeSourceInfo(), Record); |
John McCall | 833ca99 | 2009-10-29 08:12:44 +0000 | [diff] [blame] | 4743 | break; |
Douglas Gregor | 788cd06 | 2009-11-11 01:00:40 +0000 | [diff] [blame] | 4744 | case TemplateArgument::Template: |
Douglas Gregor | b6744ef | 2011-03-02 17:09:35 +0000 | [diff] [blame] | 4745 | AddNestedNameSpecifierLoc(Arg.getTemplateQualifierLoc(), Record); |
Argyrios Kyrtzidis | 17cfded | 2010-06-28 09:31:42 +0000 | [diff] [blame] | 4746 | AddSourceLocation(Arg.getTemplateNameLoc(), Record); |
Douglas Gregor | a7fc901 | 2011-01-05 18:58:31 +0000 | [diff] [blame] | 4747 | break; |
| 4748 | case TemplateArgument::TemplateExpansion: |
Douglas Gregor | b6744ef | 2011-03-02 17:09:35 +0000 | [diff] [blame] | 4749 | AddNestedNameSpecifierLoc(Arg.getTemplateQualifierLoc(), Record); |
Douglas Gregor | a7fc901 | 2011-01-05 18:58:31 +0000 | [diff] [blame] | 4750 | AddSourceLocation(Arg.getTemplateNameLoc(), Record); |
Douglas Gregor | ba68eca | 2011-01-05 17:40:24 +0000 | [diff] [blame] | 4751 | AddSourceLocation(Arg.getTemplateEllipsisLoc(), Record); |
Douglas Gregor | 788cd06 | 2009-11-11 01:00:40 +0000 | [diff] [blame] | 4752 | break; |
John McCall | 833ca99 | 2009-10-29 08:12:44 +0000 | [diff] [blame] | 4753 | case TemplateArgument::Null: |
| 4754 | case TemplateArgument::Integral: |
| 4755 | case TemplateArgument::Declaration: |
Eli Friedman | d7a6b16 | 2012-09-26 02:36:12 +0000 | [diff] [blame] | 4756 | case TemplateArgument::NullPtr: |
John McCall | 833ca99 | 2009-10-29 08:12:44 +0000 | [diff] [blame] | 4757 | case TemplateArgument::Pack: |
Eli Friedman | d7a6b16 | 2012-09-26 02:36:12 +0000 | [diff] [blame] | 4758 | // FIXME: Is this right? |
John McCall | 833ca99 | 2009-10-29 08:12:44 +0000 | [diff] [blame] | 4759 | break; |
| 4760 | } |
| 4761 | } |
| 4762 | |
Sebastian Redl | a4232eb | 2010-08-18 23:56:21 +0000 | [diff] [blame] | 4763 | void ASTWriter::AddTemplateArgumentLoc(const TemplateArgumentLoc &Arg, |
Argyrios Kyrtzidis | 89eaf3a | 2010-10-24 17:26:40 +0000 | [diff] [blame] | 4764 | RecordDataImpl &Record) { |
Argyrios Kyrtzidis | 44f8c37 | 2010-06-22 09:54:59 +0000 | [diff] [blame] | 4765 | AddTemplateArgument(Arg.getArgument(), Record); |
Argyrios Kyrtzidis | 17cfded | 2010-06-28 09:31:42 +0000 | [diff] [blame] | 4766 | |
| 4767 | if (Arg.getArgument().getKind() == TemplateArgument::Expression) { |
| 4768 | bool InfoHasSameExpr |
| 4769 | = Arg.getArgument().getAsExpr() == Arg.getLocInfo().getAsExpr(); |
| 4770 | Record.push_back(InfoHasSameExpr); |
| 4771 | if (InfoHasSameExpr) |
| 4772 | return; // Avoid storing the same expr twice. |
| 4773 | } |
Argyrios Kyrtzidis | 44f8c37 | 2010-06-22 09:54:59 +0000 | [diff] [blame] | 4774 | AddTemplateArgumentLocInfo(Arg.getArgument().getKind(), Arg.getLocInfo(), |
| 4775 | Record); |
| 4776 | } |
| 4777 | |
Douglas Gregor | dc35571 | 2011-02-25 00:36:19 +0000 | [diff] [blame] | 4778 | void ASTWriter::AddTypeSourceInfo(TypeSourceInfo *TInfo, |
| 4779 | RecordDataImpl &Record) { |
Stephen Hines | 6bcf27b | 2014-05-29 04:14:42 -0700 | [diff] [blame^] | 4780 | if (!TInfo) { |
John McCall | a1ee0c5 | 2009-10-16 21:56:05 +0000 | [diff] [blame] | 4781 | AddTypeRef(QualType(), Record); |
| 4782 | return; |
| 4783 | } |
| 4784 | |
Douglas Gregor | dc35571 | 2011-02-25 00:36:19 +0000 | [diff] [blame] | 4785 | AddTypeLoc(TInfo->getTypeLoc(), Record); |
| 4786 | } |
| 4787 | |
| 4788 | void ASTWriter::AddTypeLoc(TypeLoc TL, RecordDataImpl &Record) { |
| 4789 | AddTypeRef(TL.getType(), Record); |
| 4790 | |
John McCall | a1ee0c5 | 2009-10-16 21:56:05 +0000 | [diff] [blame] | 4791 | TypeLocWriter TLW(*this, Record); |
Douglas Gregor | dc35571 | 2011-02-25 00:36:19 +0000 | [diff] [blame] | 4792 | for (; !TL.isNull(); TL = TL.getNextTypeLoc()) |
Kovarththanan Rajaratnam | 11a18f1 | 2010-03-14 07:06:50 +0000 | [diff] [blame] | 4793 | TLW.Visit(TL); |
John McCall | a1ee0c5 | 2009-10-16 21:56:05 +0000 | [diff] [blame] | 4794 | } |
| 4795 | |
Argyrios Kyrtzidis | 89eaf3a | 2010-10-24 17:26:40 +0000 | [diff] [blame] | 4796 | void ASTWriter::AddTypeRef(QualType T, RecordDataImpl &Record) { |
Argyrios Kyrtzidis | 7fb3518 | 2010-08-20 16:04:14 +0000 | [diff] [blame] | 4797 | Record.push_back(GetOrCreateTypeID(T)); |
| 4798 | } |
| 4799 | |
Douglas Gregor | 3b8043b | 2011-08-09 15:13:55 +0000 | [diff] [blame] | 4800 | TypeID ASTWriter::GetOrCreateTypeID( QualType T) { |
Richard Smith | 9dadfab | 2013-05-11 05:45:24 +0000 | [diff] [blame] | 4801 | assert(Context); |
Douglas Gregor | 3b8043b | 2011-08-09 15:13:55 +0000 | [diff] [blame] | 4802 | return MakeTypeID(*Context, T, |
Argyrios Kyrtzidis | eb3f04e | 2010-08-20 16:04:20 +0000 | [diff] [blame] | 4803 | std::bind1st(std::mem_fun(&ASTWriter::GetOrCreateTypeIdx), this)); |
| 4804 | } |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 4805 | |
Argyrios Kyrtzidis | 5d26768 | 2010-08-20 16:04:27 +0000 | [diff] [blame] | 4806 | TypeID ASTWriter::getTypeID(QualType T) const { |
Richard Smith | 9dadfab | 2013-05-11 05:45:24 +0000 | [diff] [blame] | 4807 | assert(Context); |
Douglas Gregor | 3b8043b | 2011-08-09 15:13:55 +0000 | [diff] [blame] | 4808 | return MakeTypeID(*Context, T, |
Argyrios Kyrtzidis | eb3f04e | 2010-08-20 16:04:20 +0000 | [diff] [blame] | 4809 | std::bind1st(std::mem_fun(&ASTWriter::getTypeIdx), this)); |
Argyrios Kyrtzidis | 26fca90 | 2010-08-20 16:04:09 +0000 | [diff] [blame] | 4810 | } |
| 4811 | |
| 4812 | TypeIdx ASTWriter::GetOrCreateTypeIdx(QualType T) { |
| 4813 | if (T.isNull()) |
| 4814 | return TypeIdx(); |
| 4815 | assert(!T.getLocalFastQualifiers()); |
| 4816 | |
Argyrios Kyrtzidis | 01b81c4 | 2010-08-20 16:04:04 +0000 | [diff] [blame] | 4817 | TypeIdx &Idx = TypeIdxs[T]; |
Argyrios Kyrtzidis | c8e5d51 | 2010-08-20 16:03:59 +0000 | [diff] [blame] | 4818 | if (Idx.getIndex() == 0) { |
Argyrios Kyrtzidis | 7518b37 | 2012-07-02 19:19:01 +0000 | [diff] [blame] | 4819 | if (DoneWritingDeclsAndTypes) { |
| 4820 | assert(0 && "New type seen after serializing all the types to emit!"); |
| 4821 | return TypeIdx(); |
| 4822 | } |
| 4823 | |
Douglas Gregor | 366809a | 2009-04-26 03:49:13 +0000 | [diff] [blame] | 4824 | // We haven't seen this type before. Assign it a new ID and put it |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 4825 | // into the queue of types to emit. |
Argyrios Kyrtzidis | c8e5d51 | 2010-08-20 16:03:59 +0000 | [diff] [blame] | 4826 | Idx = TypeIdx(NextTypeID++); |
Douglas Gregor | 61d60ee | 2009-10-17 00:13:19 +0000 | [diff] [blame] | 4827 | DeclTypesToEmit.push(T); |
Douglas Gregor | 366809a | 2009-04-26 03:49:13 +0000 | [diff] [blame] | 4828 | } |
Argyrios Kyrtzidis | 26fca90 | 2010-08-20 16:04:09 +0000 | [diff] [blame] | 4829 | return Idx; |
| 4830 | } |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 4831 | |
Argyrios Kyrtzidis | 5d26768 | 2010-08-20 16:04:27 +0000 | [diff] [blame] | 4832 | TypeIdx ASTWriter::getTypeIdx(QualType T) const { |
Argyrios Kyrtzidis | 26fca90 | 2010-08-20 16:04:09 +0000 | [diff] [blame] | 4833 | if (T.isNull()) |
| 4834 | return TypeIdx(); |
| 4835 | assert(!T.getLocalFastQualifiers()); |
| 4836 | |
Argyrios Kyrtzidis | 5d26768 | 2010-08-20 16:04:27 +0000 | [diff] [blame] | 4837 | TypeIdxMap::const_iterator I = TypeIdxs.find(T); |
| 4838 | assert(I != TypeIdxs.end() && "Type not emitted!"); |
| 4839 | return I->second; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 4840 | } |
| 4841 | |
Argyrios Kyrtzidis | 7b90340 | 2010-10-24 17:26:36 +0000 | [diff] [blame] | 4842 | void ASTWriter::AddDeclRef(const Decl *D, RecordDataImpl &Record) { |
Sebastian Redl | 681d723 | 2010-07-27 00:17:23 +0000 | [diff] [blame] | 4843 | Record.push_back(GetDeclRef(D)); |
| 4844 | } |
| 4845 | |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 4846 | DeclID ASTWriter::GetDeclRef(const Decl *D) { |
Douglas Gregor | 61c5e34 | 2011-09-17 00:05:03 +0000 | [diff] [blame] | 4847 | assert(WritingAST && "Cannot request a declaration ID before AST writing"); |
Stephen Hines | 6bcf27b | 2014-05-29 04:14:42 -0700 | [diff] [blame^] | 4848 | |
| 4849 | if (!D) { |
Sebastian Redl | 681d723 | 2010-07-27 00:17:23 +0000 | [diff] [blame] | 4850 | return 0; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 4851 | } |
Douglas Gregor | 1c7946a | 2012-01-05 22:33:30 +0000 | [diff] [blame] | 4852 | |
| 4853 | // If D comes from an AST file, its declaration ID is already known and |
| 4854 | // fixed. |
| 4855 | if (D->isFromASTFile()) |
| 4856 | return D->getGlobalID(); |
| 4857 | |
Douglas Gregor | 9747583 | 2010-10-05 18:37:06 +0000 | [diff] [blame] | 4858 | assert(!(reinterpret_cast<uintptr_t>(D) & 0x01) && "Invalid decl pointer"); |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 4859 | DeclID &ID = DeclIDs[D]; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 4860 | if (ID == 0) { |
Argyrios Kyrtzidis | 7518b37 | 2012-07-02 19:19:01 +0000 | [diff] [blame] | 4861 | if (DoneWritingDeclsAndTypes) { |
| 4862 | assert(0 && "New decl seen after serializing all the decls to emit!"); |
| 4863 | return 0; |
| 4864 | } |
| 4865 | |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 4866 | // We haven't seen this declaration before. Give it a new ID and |
| 4867 | // enqueue it in the list of declarations to emit. |
Sebastian Redl | f2f0f03 | 2010-07-23 23:49:55 +0000 | [diff] [blame] | 4868 | ID = NextDeclID++; |
Douglas Gregor | 61d60ee | 2009-10-17 00:13:19 +0000 | [diff] [blame] | 4869 | DeclTypesToEmit.push(const_cast<Decl *>(D)); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 4870 | } |
| 4871 | |
Sebastian Redl | 681d723 | 2010-07-27 00:17:23 +0000 | [diff] [blame] | 4872 | return ID; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 4873 | } |
| 4874 | |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 4875 | DeclID ASTWriter::getDeclID(const Decl *D) { |
Stephen Hines | 6bcf27b | 2014-05-29 04:14:42 -0700 | [diff] [blame^] | 4876 | if (!D) |
Douglas Gregor | 3251ceb | 2009-04-20 20:36:09 +0000 | [diff] [blame] | 4877 | return 0; |
| 4878 | |
Douglas Gregor | 1c7946a | 2012-01-05 22:33:30 +0000 | [diff] [blame] | 4879 | // If D comes from an AST file, its declaration ID is already known and |
| 4880 | // fixed. |
| 4881 | if (D->isFromASTFile()) |
| 4882 | return D->getGlobalID(); |
| 4883 | |
Douglas Gregor | 3251ceb | 2009-04-20 20:36:09 +0000 | [diff] [blame] | 4884 | assert(DeclIDs.find(D) != DeclIDs.end() && "Declaration not emitted!"); |
| 4885 | return DeclIDs[D]; |
| 4886 | } |
| 4887 | |
Argyrios Kyrtzidis | 19645d2 | 2011-10-28 23:57:43 +0000 | [diff] [blame] | 4888 | void ASTWriter::associateDeclWithFile(const Decl *D, DeclID ID) { |
Argyrios Kyrtzidis | 10f3df5 | 2011-10-28 22:54:21 +0000 | [diff] [blame] | 4889 | assert(ID); |
Argyrios Kyrtzidis | 19645d2 | 2011-10-28 23:57:43 +0000 | [diff] [blame] | 4890 | assert(D); |
| 4891 | |
| 4892 | SourceLocation Loc = D->getLocation(); |
| 4893 | if (Loc.isInvalid()) |
| 4894 | return; |
Argyrios Kyrtzidis | 10f3df5 | 2011-10-28 22:54:21 +0000 | [diff] [blame] | 4895 | |
| 4896 | // We only keep track of the file-level declarations of each file. |
| 4897 | if (!D->getLexicalDeclContext()->isFileContext()) |
| 4898 | return; |
Argyrios Kyrtzidis | 69015c2 | 2012-02-24 19:45:46 +0000 | [diff] [blame] | 4899 | // FIXME: ParmVarDecls that are part of a function type of a parameter of |
| 4900 | // a function/objc method, should not have TU as lexical context. |
Argyrios Kyrtzidis | 8cceefa | 2012-02-24 01:12:38 +0000 | [diff] [blame] | 4901 | if (isa<ParmVarDecl>(D)) |
| 4902 | return; |
Argyrios Kyrtzidis | 10f3df5 | 2011-10-28 22:54:21 +0000 | [diff] [blame] | 4903 | |
| 4904 | SourceManager &SM = Context->getSourceManager(); |
Argyrios Kyrtzidis | 19645d2 | 2011-10-28 23:57:43 +0000 | [diff] [blame] | 4905 | SourceLocation FileLoc = SM.getFileLoc(Loc); |
Argyrios Kyrtzidis | 10f3df5 | 2011-10-28 22:54:21 +0000 | [diff] [blame] | 4906 | assert(SM.isLocalSourceLocation(FileLoc)); |
Argyrios Kyrtzidis | fab8d5b | 2011-10-28 23:57:47 +0000 | [diff] [blame] | 4907 | FileID FID; |
| 4908 | unsigned Offset; |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 4909 | std::tie(FID, Offset) = SM.getDecomposedLoc(FileLoc); |
Argyrios Kyrtzidis | 10f3df5 | 2011-10-28 22:54:21 +0000 | [diff] [blame] | 4910 | if (FID.isInvalid()) |
| 4911 | return; |
Argyrios Kyrtzidis | a2ea4d9 | 2012-10-02 21:09:17 +0000 | [diff] [blame] | 4912 | assert(SM.getSLocEntry(FID).isFile()); |
Argyrios Kyrtzidis | 10f3df5 | 2011-10-28 22:54:21 +0000 | [diff] [blame] | 4913 | |
Argyrios Kyrtzidis | a2ea4d9 | 2012-10-02 21:09:17 +0000 | [diff] [blame] | 4914 | DeclIDInFileInfo *&Info = FileDeclIDs[FID]; |
Argyrios Kyrtzidis | 10f3df5 | 2011-10-28 22:54:21 +0000 | [diff] [blame] | 4915 | if (!Info) |
| 4916 | Info = new DeclIDInFileInfo(); |
| 4917 | |
Argyrios Kyrtzidis | fab8d5b | 2011-10-28 23:57:47 +0000 | [diff] [blame] | 4918 | std::pair<unsigned, serialization::DeclID> LocDecl(Offset, ID); |
Argyrios Kyrtzidis | 10f3df5 | 2011-10-28 22:54:21 +0000 | [diff] [blame] | 4919 | LocDeclIDsTy &Decls = Info->DeclIDs; |
| 4920 | |
Argyrios Kyrtzidis | fab8d5b | 2011-10-28 23:57:47 +0000 | [diff] [blame] | 4921 | if (Decls.empty() || Decls.back().first <= Offset) { |
Argyrios Kyrtzidis | 10f3df5 | 2011-10-28 22:54:21 +0000 | [diff] [blame] | 4922 | Decls.push_back(LocDecl); |
| 4923 | return; |
| 4924 | } |
| 4925 | |
Benjamin Kramer | 809d254 | 2013-08-24 13:22:59 +0000 | [diff] [blame] | 4926 | LocDeclIDsTy::iterator I = |
| 4927 | std::upper_bound(Decls.begin(), Decls.end(), LocDecl, llvm::less_first()); |
Argyrios Kyrtzidis | 10f3df5 | 2011-10-28 22:54:21 +0000 | [diff] [blame] | 4928 | |
| 4929 | Decls.insert(I, LocDecl); |
| 4930 | } |
| 4931 | |
Argyrios Kyrtzidis | 89eaf3a | 2010-10-24 17:26:40 +0000 | [diff] [blame] | 4932 | void ASTWriter::AddDeclarationName(DeclarationName Name, RecordDataImpl &Record) { |
Chris Lattner | ea5ce47 | 2009-04-27 07:35:58 +0000 | [diff] [blame] | 4933 | // FIXME: Emit a stable enum for NameKind. 0 = Identifier etc. |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 4934 | Record.push_back(Name.getNameKind()); |
| 4935 | switch (Name.getNameKind()) { |
| 4936 | case DeclarationName::Identifier: |
| 4937 | AddIdentifierRef(Name.getAsIdentifierInfo(), Record); |
| 4938 | break; |
| 4939 | |
| 4940 | case DeclarationName::ObjCZeroArgSelector: |
| 4941 | case DeclarationName::ObjCOneArgSelector: |
| 4942 | case DeclarationName::ObjCMultiArgSelector: |
Steve Naroff | 90cd1bb | 2009-04-23 10:39:46 +0000 | [diff] [blame] | 4943 | AddSelectorRef(Name.getObjCSelector(), Record); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 4944 | break; |
| 4945 | |
| 4946 | case DeclarationName::CXXConstructorName: |
| 4947 | case DeclarationName::CXXDestructorName: |
| 4948 | case DeclarationName::CXXConversionFunctionName: |
| 4949 | AddTypeRef(Name.getCXXNameType(), Record); |
| 4950 | break; |
| 4951 | |
| 4952 | case DeclarationName::CXXOperatorName: |
| 4953 | Record.push_back(Name.getCXXOverloadedOperator()); |
| 4954 | break; |
| 4955 | |
Sean Hunt | 3e518bd | 2009-11-29 07:34:05 +0000 | [diff] [blame] | 4956 | case DeclarationName::CXXLiteralOperatorName: |
| 4957 | AddIdentifierRef(Name.getCXXLiteralIdentifier(), Record); |
| 4958 | break; |
| 4959 | |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 4960 | case DeclarationName::CXXUsingDirective: |
| 4961 | // No extra data to emit |
| 4962 | break; |
| 4963 | } |
| 4964 | } |
Chris Lattner | 6ad9ac0 | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 4965 | |
Argyrios Kyrtzidis | 4045107 | 2010-10-15 18:21:24 +0000 | [diff] [blame] | 4966 | void ASTWriter::AddDeclarationNameLoc(const DeclarationNameLoc &DNLoc, |
Argyrios Kyrtzidis | 89eaf3a | 2010-10-24 17:26:40 +0000 | [diff] [blame] | 4967 | DeclarationName Name, RecordDataImpl &Record) { |
Argyrios Kyrtzidis | 4045107 | 2010-10-15 18:21:24 +0000 | [diff] [blame] | 4968 | switch (Name.getNameKind()) { |
| 4969 | case DeclarationName::CXXConstructorName: |
| 4970 | case DeclarationName::CXXDestructorName: |
| 4971 | case DeclarationName::CXXConversionFunctionName: |
| 4972 | AddTypeSourceInfo(DNLoc.NamedType.TInfo, Record); |
| 4973 | break; |
| 4974 | |
| 4975 | case DeclarationName::CXXOperatorName: |
| 4976 | AddSourceLocation( |
| 4977 | SourceLocation::getFromRawEncoding(DNLoc.CXXOperatorName.BeginOpNameLoc), |
| 4978 | Record); |
| 4979 | AddSourceLocation( |
| 4980 | SourceLocation::getFromRawEncoding(DNLoc.CXXOperatorName.EndOpNameLoc), |
| 4981 | Record); |
| 4982 | break; |
| 4983 | |
| 4984 | case DeclarationName::CXXLiteralOperatorName: |
| 4985 | AddSourceLocation( |
| 4986 | SourceLocation::getFromRawEncoding(DNLoc.CXXLiteralOperatorName.OpNameLoc), |
| 4987 | Record); |
| 4988 | break; |
| 4989 | |
| 4990 | case DeclarationName::Identifier: |
| 4991 | case DeclarationName::ObjCZeroArgSelector: |
| 4992 | case DeclarationName::ObjCOneArgSelector: |
| 4993 | case DeclarationName::ObjCMultiArgSelector: |
| 4994 | case DeclarationName::CXXUsingDirective: |
| 4995 | break; |
| 4996 | } |
| 4997 | } |
| 4998 | |
| 4999 | void ASTWriter::AddDeclarationNameInfo(const DeclarationNameInfo &NameInfo, |
Argyrios Kyrtzidis | 89eaf3a | 2010-10-24 17:26:40 +0000 | [diff] [blame] | 5000 | RecordDataImpl &Record) { |
Argyrios Kyrtzidis | 4045107 | 2010-10-15 18:21:24 +0000 | [diff] [blame] | 5001 | AddDeclarationName(NameInfo.getName(), Record); |
| 5002 | AddSourceLocation(NameInfo.getLoc(), Record); |
| 5003 | AddDeclarationNameLoc(NameInfo.getInfo(), NameInfo.getName(), Record); |
| 5004 | } |
| 5005 | |
| 5006 | void ASTWriter::AddQualifierInfo(const QualifierInfo &Info, |
Argyrios Kyrtzidis | 89eaf3a | 2010-10-24 17:26:40 +0000 | [diff] [blame] | 5007 | RecordDataImpl &Record) { |
Douglas Gregor | c22b5ff | 2011-02-25 02:25:35 +0000 | [diff] [blame] | 5008 | AddNestedNameSpecifierLoc(Info.QualifierLoc, Record); |
Argyrios Kyrtzidis | 4045107 | 2010-10-15 18:21:24 +0000 | [diff] [blame] | 5009 | Record.push_back(Info.NumTemplParamLists); |
| 5010 | for (unsigned i=0, e=Info.NumTemplParamLists; i != e; ++i) |
| 5011 | AddTemplateParameterList(Info.TemplParamLists[i], Record); |
| 5012 | } |
| 5013 | |
Sebastian Redl | a4232eb | 2010-08-18 23:56:21 +0000 | [diff] [blame] | 5014 | void ASTWriter::AddNestedNameSpecifier(NestedNameSpecifier *NNS, |
Argyrios Kyrtzidis | 89eaf3a | 2010-10-24 17:26:40 +0000 | [diff] [blame] | 5015 | RecordDataImpl &Record) { |
Chris Lattner | 6ad9ac0 | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 5016 | // Nested name specifiers usually aren't too long. I think that 8 would |
Chris Lattner | fc8f0e1 | 2011-04-15 05:22:18 +0000 | [diff] [blame] | 5017 | // typically accommodate the vast majority. |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 5018 | SmallVector<NestedNameSpecifier *, 8> NestedNames; |
Chris Lattner | 6ad9ac0 | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 5019 | |
| 5020 | // Push each of the NNS's onto a stack for serialization in reverse order. |
| 5021 | while (NNS) { |
| 5022 | NestedNames.push_back(NNS); |
| 5023 | NNS = NNS->getPrefix(); |
| 5024 | } |
| 5025 | |
| 5026 | Record.push_back(NestedNames.size()); |
| 5027 | while(!NestedNames.empty()) { |
| 5028 | NNS = NestedNames.pop_back_val(); |
| 5029 | NestedNameSpecifier::SpecifierKind Kind = NNS->getKind(); |
| 5030 | Record.push_back(Kind); |
| 5031 | switch (Kind) { |
| 5032 | case NestedNameSpecifier::Identifier: |
| 5033 | AddIdentifierRef(NNS->getAsIdentifier(), Record); |
| 5034 | break; |
| 5035 | |
| 5036 | case NestedNameSpecifier::Namespace: |
| 5037 | AddDeclRef(NNS->getAsNamespace(), Record); |
| 5038 | break; |
| 5039 | |
Douglas Gregor | 14aba76 | 2011-02-24 02:36:08 +0000 | [diff] [blame] | 5040 | case NestedNameSpecifier::NamespaceAlias: |
| 5041 | AddDeclRef(NNS->getAsNamespaceAlias(), Record); |
| 5042 | break; |
| 5043 | |
Chris Lattner | 6ad9ac0 | 2010-05-07 21:43:38 +0000 | [diff] [blame] | 5044 | case NestedNameSpecifier::TypeSpec: |
| 5045 | case NestedNameSpecifier::TypeSpecWithTemplate: |
| 5046 | AddTypeRef(QualType(NNS->getAsType(), 0), Record); |
| 5047 | Record.push_back(Kind == NestedNameSpecifier::TypeSpecWithTemplate); |
| 5048 | break; |
| 5049 | |
| 5050 | case NestedNameSpecifier::Global: |
| 5051 | // Don't need to write an associated value. |
| 5052 | break; |
| 5053 | } |
| 5054 | } |
| 5055 | } |
Argyrios Kyrtzidis | 90b715e | 2010-06-19 19:28:53 +0000 | [diff] [blame] | 5056 | |
Douglas Gregor | dc35571 | 2011-02-25 00:36:19 +0000 | [diff] [blame] | 5057 | void ASTWriter::AddNestedNameSpecifierLoc(NestedNameSpecifierLoc NNS, |
| 5058 | RecordDataImpl &Record) { |
| 5059 | // Nested name specifiers usually aren't too long. I think that 8 would |
Chris Lattner | fc8f0e1 | 2011-04-15 05:22:18 +0000 | [diff] [blame] | 5060 | // typically accommodate the vast majority. |
Chris Lattner | 5f9e272 | 2011-07-23 10:55:15 +0000 | [diff] [blame] | 5061 | SmallVector<NestedNameSpecifierLoc , 8> NestedNames; |
Douglas Gregor | dc35571 | 2011-02-25 00:36:19 +0000 | [diff] [blame] | 5062 | |
| 5063 | // Push each of the nested-name-specifiers's onto a stack for |
| 5064 | // serialization in reverse order. |
| 5065 | while (NNS) { |
| 5066 | NestedNames.push_back(NNS); |
| 5067 | NNS = NNS.getPrefix(); |
| 5068 | } |
| 5069 | |
| 5070 | Record.push_back(NestedNames.size()); |
| 5071 | while(!NestedNames.empty()) { |
| 5072 | NNS = NestedNames.pop_back_val(); |
| 5073 | NestedNameSpecifier::SpecifierKind Kind |
| 5074 | = NNS.getNestedNameSpecifier()->getKind(); |
| 5075 | Record.push_back(Kind); |
| 5076 | switch (Kind) { |
| 5077 | case NestedNameSpecifier::Identifier: |
| 5078 | AddIdentifierRef(NNS.getNestedNameSpecifier()->getAsIdentifier(), Record); |
| 5079 | AddSourceRange(NNS.getLocalSourceRange(), Record); |
| 5080 | break; |
| 5081 | |
| 5082 | case NestedNameSpecifier::Namespace: |
| 5083 | AddDeclRef(NNS.getNestedNameSpecifier()->getAsNamespace(), Record); |
| 5084 | AddSourceRange(NNS.getLocalSourceRange(), Record); |
| 5085 | break; |
| 5086 | |
| 5087 | case NestedNameSpecifier::NamespaceAlias: |
| 5088 | AddDeclRef(NNS.getNestedNameSpecifier()->getAsNamespaceAlias(), Record); |
| 5089 | AddSourceRange(NNS.getLocalSourceRange(), Record); |
| 5090 | break; |
| 5091 | |
| 5092 | case NestedNameSpecifier::TypeSpec: |
| 5093 | case NestedNameSpecifier::TypeSpecWithTemplate: |
| 5094 | Record.push_back(Kind == NestedNameSpecifier::TypeSpecWithTemplate); |
| 5095 | AddTypeLoc(NNS.getTypeLoc(), Record); |
| 5096 | AddSourceLocation(NNS.getLocalSourceRange().getEnd(), Record); |
| 5097 | break; |
| 5098 | |
| 5099 | case NestedNameSpecifier::Global: |
| 5100 | AddSourceLocation(NNS.getLocalSourceRange().getEnd(), Record); |
| 5101 | break; |
| 5102 | } |
| 5103 | } |
| 5104 | } |
| 5105 | |
Argyrios Kyrtzidis | 89eaf3a | 2010-10-24 17:26:40 +0000 | [diff] [blame] | 5106 | void ASTWriter::AddTemplateName(TemplateName Name, RecordDataImpl &Record) { |
Michael J. Spencer | 20249a1 | 2010-10-21 03:16:25 +0000 | [diff] [blame] | 5107 | TemplateName::NameKind Kind = Name.getKind(); |
Argyrios Kyrtzidis | 90b715e | 2010-06-19 19:28:53 +0000 | [diff] [blame] | 5108 | Record.push_back(Kind); |
| 5109 | switch (Kind) { |
| 5110 | case TemplateName::Template: |
| 5111 | AddDeclRef(Name.getAsTemplateDecl(), Record); |
| 5112 | break; |
| 5113 | |
| 5114 | case TemplateName::OverloadedTemplate: { |
| 5115 | OverloadedTemplateStorage *OvT = Name.getAsOverloadedTemplate(); |
| 5116 | Record.push_back(OvT->size()); |
| 5117 | for (OverloadedTemplateStorage::iterator I = OvT->begin(), E = OvT->end(); |
| 5118 | I != E; ++I) |
| 5119 | AddDeclRef(*I, Record); |
| 5120 | break; |
| 5121 | } |
Michael J. Spencer | 20249a1 | 2010-10-21 03:16:25 +0000 | [diff] [blame] | 5122 | |
Argyrios Kyrtzidis | 90b715e | 2010-06-19 19:28:53 +0000 | [diff] [blame] | 5123 | case TemplateName::QualifiedTemplate: { |
| 5124 | QualifiedTemplateName *QualT = Name.getAsQualifiedTemplateName(); |
| 5125 | AddNestedNameSpecifier(QualT->getQualifier(), Record); |
| 5126 | Record.push_back(QualT->hasTemplateKeyword()); |
| 5127 | AddDeclRef(QualT->getTemplateDecl(), Record); |
| 5128 | break; |
| 5129 | } |
Michael J. Spencer | 20249a1 | 2010-10-21 03:16:25 +0000 | [diff] [blame] | 5130 | |
Argyrios Kyrtzidis | 90b715e | 2010-06-19 19:28:53 +0000 | [diff] [blame] | 5131 | case TemplateName::DependentTemplate: { |
| 5132 | DependentTemplateName *DepT = Name.getAsDependentTemplateName(); |
| 5133 | AddNestedNameSpecifier(DepT->getQualifier(), Record); |
| 5134 | Record.push_back(DepT->isIdentifier()); |
| 5135 | if (DepT->isIdentifier()) |
| 5136 | AddIdentifierRef(DepT->getIdentifier(), Record); |
| 5137 | else |
| 5138 | Record.push_back(DepT->getOperator()); |
| 5139 | break; |
| 5140 | } |
John McCall | 1460604 | 2011-06-30 08:33:18 +0000 | [diff] [blame] | 5141 | |
| 5142 | case TemplateName::SubstTemplateTemplateParm: { |
| 5143 | SubstTemplateTemplateParmStorage *subst |
| 5144 | = Name.getAsSubstTemplateTemplateParm(); |
| 5145 | AddDeclRef(subst->getParameter(), Record); |
| 5146 | AddTemplateName(subst->getReplacement(), Record); |
| 5147 | break; |
| 5148 | } |
Douglas Gregor | 1aee05d | 2011-01-15 06:45:20 +0000 | [diff] [blame] | 5149 | |
| 5150 | case TemplateName::SubstTemplateTemplateParmPack: { |
| 5151 | SubstTemplateTemplateParmPackStorage *SubstPack |
| 5152 | = Name.getAsSubstTemplateTemplateParmPack(); |
| 5153 | AddDeclRef(SubstPack->getParameterPack(), Record); |
| 5154 | AddTemplateArgument(SubstPack->getArgumentPack(), Record); |
| 5155 | break; |
| 5156 | } |
Argyrios Kyrtzidis | 90b715e | 2010-06-19 19:28:53 +0000 | [diff] [blame] | 5157 | } |
| 5158 | } |
| 5159 | |
Michael J. Spencer | 20249a1 | 2010-10-21 03:16:25 +0000 | [diff] [blame] | 5160 | void ASTWriter::AddTemplateArgument(const TemplateArgument &Arg, |
Argyrios Kyrtzidis | 89eaf3a | 2010-10-24 17:26:40 +0000 | [diff] [blame] | 5161 | RecordDataImpl &Record) { |
Argyrios Kyrtzidis | 90b715e | 2010-06-19 19:28:53 +0000 | [diff] [blame] | 5162 | Record.push_back(Arg.getKind()); |
| 5163 | switch (Arg.getKind()) { |
| 5164 | case TemplateArgument::Null: |
| 5165 | break; |
| 5166 | case TemplateArgument::Type: |
| 5167 | AddTypeRef(Arg.getAsType(), Record); |
| 5168 | break; |
| 5169 | case TemplateArgument::Declaration: |
| 5170 | AddDeclRef(Arg.getAsDecl(), Record); |
Eli Friedman | d7a6b16 | 2012-09-26 02:36:12 +0000 | [diff] [blame] | 5171 | Record.push_back(Arg.isDeclForReferenceParam()); |
| 5172 | break; |
| 5173 | case TemplateArgument::NullPtr: |
| 5174 | AddTypeRef(Arg.getNullPtrType(), Record); |
Argyrios Kyrtzidis | 90b715e | 2010-06-19 19:28:53 +0000 | [diff] [blame] | 5175 | break; |
| 5176 | case TemplateArgument::Integral: |
Benjamin Kramer | 8552437 | 2012-06-07 15:09:51 +0000 | [diff] [blame] | 5177 | AddAPSInt(Arg.getAsIntegral(), Record); |
Argyrios Kyrtzidis | 90b715e | 2010-06-19 19:28:53 +0000 | [diff] [blame] | 5178 | AddTypeRef(Arg.getIntegralType(), Record); |
| 5179 | break; |
| 5180 | case TemplateArgument::Template: |
Douglas Gregor | 2be29f4 | 2011-01-14 23:41:42 +0000 | [diff] [blame] | 5181 | AddTemplateName(Arg.getAsTemplateOrTemplatePattern(), Record); |
| 5182 | break; |
Douglas Gregor | a7fc901 | 2011-01-05 18:58:31 +0000 | [diff] [blame] | 5183 | case TemplateArgument::TemplateExpansion: |
| 5184 | AddTemplateName(Arg.getAsTemplateOrTemplatePattern(), Record); |
David Blaikie | dc84cd5 | 2013-02-20 22:23:23 +0000 | [diff] [blame] | 5185 | if (Optional<unsigned> NumExpansions = Arg.getNumTemplateExpansions()) |
Douglas Gregor | 2be29f4 | 2011-01-14 23:41:42 +0000 | [diff] [blame] | 5186 | Record.push_back(*NumExpansions + 1); |
| 5187 | else |
| 5188 | Record.push_back(0); |
Argyrios Kyrtzidis | 90b715e | 2010-06-19 19:28:53 +0000 | [diff] [blame] | 5189 | break; |
| 5190 | case TemplateArgument::Expression: |
| 5191 | AddStmt(Arg.getAsExpr()); |
| 5192 | break; |
| 5193 | case TemplateArgument::Pack: |
| 5194 | Record.push_back(Arg.pack_size()); |
| 5195 | for (TemplateArgument::pack_iterator I=Arg.pack_begin(), E=Arg.pack_end(); |
| 5196 | I != E; ++I) |
| 5197 | AddTemplateArgument(*I, Record); |
| 5198 | break; |
| 5199 | } |
| 5200 | } |
Argyrios Kyrtzidis | dd41c14 | 2010-06-23 13:48:30 +0000 | [diff] [blame] | 5201 | |
| 5202 | void |
Sebastian Redl | a4232eb | 2010-08-18 23:56:21 +0000 | [diff] [blame] | 5203 | ASTWriter::AddTemplateParameterList(const TemplateParameterList *TemplateParams, |
Argyrios Kyrtzidis | 89eaf3a | 2010-10-24 17:26:40 +0000 | [diff] [blame] | 5204 | RecordDataImpl &Record) { |
Argyrios Kyrtzidis | dd41c14 | 2010-06-23 13:48:30 +0000 | [diff] [blame] | 5205 | assert(TemplateParams && "No TemplateParams!"); |
| 5206 | AddSourceLocation(TemplateParams->getTemplateLoc(), Record); |
| 5207 | AddSourceLocation(TemplateParams->getLAngleLoc(), Record); |
| 5208 | AddSourceLocation(TemplateParams->getRAngleLoc(), Record); |
| 5209 | Record.push_back(TemplateParams->size()); |
| 5210 | for (TemplateParameterList::const_iterator |
| 5211 | P = TemplateParams->begin(), PEnd = TemplateParams->end(); |
| 5212 | P != PEnd; ++P) |
| 5213 | AddDeclRef(*P, Record); |
| 5214 | } |
| 5215 | |
| 5216 | /// \brief Emit a template argument list. |
| 5217 | void |
Sebastian Redl | a4232eb | 2010-08-18 23:56:21 +0000 | [diff] [blame] | 5218 | ASTWriter::AddTemplateArgumentList(const TemplateArgumentList *TemplateArgs, |
Argyrios Kyrtzidis | 89eaf3a | 2010-10-24 17:26:40 +0000 | [diff] [blame] | 5219 | RecordDataImpl &Record) { |
Argyrios Kyrtzidis | dd41c14 | 2010-06-23 13:48:30 +0000 | [diff] [blame] | 5220 | assert(TemplateArgs && "No TemplateArgs!"); |
Douglas Gregor | 910f800 | 2010-11-07 23:05:16 +0000 | [diff] [blame] | 5221 | Record.push_back(TemplateArgs->size()); |
| 5222 | for (int i=0, e = TemplateArgs->size(); i != e; ++i) |
Argyrios Kyrtzidis | dd41c14 | 2010-06-23 13:48:30 +0000 | [diff] [blame] | 5223 | AddTemplateArgument(TemplateArgs->get(i), Record); |
| 5224 | } |
Argyrios Kyrtzidis | 37ffed3 | 2010-07-02 11:55:32 +0000 | [diff] [blame] | 5225 | |
Enea Zaffanella | c1cef08 | 2013-08-10 07:24:53 +0000 | [diff] [blame] | 5226 | void |
| 5227 | ASTWriter::AddASTTemplateArgumentListInfo |
| 5228 | (const ASTTemplateArgumentListInfo *ASTTemplArgList, RecordDataImpl &Record) { |
| 5229 | assert(ASTTemplArgList && "No ASTTemplArgList!"); |
| 5230 | AddSourceLocation(ASTTemplArgList->LAngleLoc, Record); |
| 5231 | AddSourceLocation(ASTTemplArgList->RAngleLoc, Record); |
| 5232 | Record.push_back(ASTTemplArgList->NumTemplateArgs); |
| 5233 | const TemplateArgumentLoc *TemplArgs = ASTTemplArgList->getTemplateArgs(); |
| 5234 | for (int i=0, e = ASTTemplArgList->NumTemplateArgs; i != e; ++i) |
| 5235 | AddTemplateArgumentLoc(TemplArgs[i], Record); |
| 5236 | } |
Argyrios Kyrtzidis | 37ffed3 | 2010-07-02 11:55:32 +0000 | [diff] [blame] | 5237 | |
| 5238 | void |
Argyrios Kyrtzidis | 2a82ca2 | 2012-11-28 03:56:16 +0000 | [diff] [blame] | 5239 | ASTWriter::AddUnresolvedSet(const ASTUnresolvedSet &Set, RecordDataImpl &Record) { |
Argyrios Kyrtzidis | 37ffed3 | 2010-07-02 11:55:32 +0000 | [diff] [blame] | 5240 | Record.push_back(Set.size()); |
Argyrios Kyrtzidis | 2a82ca2 | 2012-11-28 03:56:16 +0000 | [diff] [blame] | 5241 | for (ASTUnresolvedSet::const_iterator |
Argyrios Kyrtzidis | 37ffed3 | 2010-07-02 11:55:32 +0000 | [diff] [blame] | 5242 | I = Set.begin(), E = Set.end(); I != E; ++I) { |
| 5243 | AddDeclRef(I.getDecl(), Record); |
| 5244 | Record.push_back(I.getAccess()); |
| 5245 | } |
| 5246 | } |
Argyrios Kyrtzidis | 0745d0a | 2010-07-02 23:30:27 +0000 | [diff] [blame] | 5247 | |
Sebastian Redl | a4232eb | 2010-08-18 23:56:21 +0000 | [diff] [blame] | 5248 | void ASTWriter::AddCXXBaseSpecifier(const CXXBaseSpecifier &Base, |
Argyrios Kyrtzidis | 89eaf3a | 2010-10-24 17:26:40 +0000 | [diff] [blame] | 5249 | RecordDataImpl &Record) { |
Argyrios Kyrtzidis | 0745d0a | 2010-07-02 23:30:27 +0000 | [diff] [blame] | 5250 | Record.push_back(Base.isVirtual()); |
| 5251 | Record.push_back(Base.isBaseOfClass()); |
| 5252 | Record.push_back(Base.getAccessSpecifierAsWritten()); |
Sebastian Redl | f677ea3 | 2011-02-05 19:23:19 +0000 | [diff] [blame] | 5253 | Record.push_back(Base.getInheritConstructors()); |
Nick Lewycky | 5606220 | 2010-07-26 16:56:01 +0000 | [diff] [blame] | 5254 | AddTypeSourceInfo(Base.getTypeSourceInfo(), Record); |
Argyrios Kyrtzidis | 0745d0a | 2010-07-02 23:30:27 +0000 | [diff] [blame] | 5255 | AddSourceRange(Base.getSourceRange(), Record); |
Douglas Gregor | f90b27a | 2011-01-03 22:36:02 +0000 | [diff] [blame] | 5256 | AddSourceLocation(Base.isPackExpansion()? Base.getEllipsisLoc() |
| 5257 | : SourceLocation(), |
| 5258 | Record); |
Argyrios Kyrtzidis | 0745d0a | 2010-07-02 23:30:27 +0000 | [diff] [blame] | 5259 | } |
Sebastian Redl | 30c514c | 2010-07-14 23:45:08 +0000 | [diff] [blame] | 5260 | |
Douglas Gregor | 7c789c1 | 2010-10-29 22:39:52 +0000 | [diff] [blame] | 5261 | void ASTWriter::FlushCXXBaseSpecifiers() { |
| 5262 | RecordData Record; |
| 5263 | for (unsigned I = 0, N = CXXBaseSpecifiersToWrite.size(); I != N; ++I) { |
| 5264 | Record.clear(); |
| 5265 | |
| 5266 | // Record the offset of this base-specifier set. |
Douglas Gregor | e92b8a1 | 2011-08-04 00:01:48 +0000 | [diff] [blame] | 5267 | unsigned Index = CXXBaseSpecifiersToWrite[I].ID - 1; |
Douglas Gregor | 7c789c1 | 2010-10-29 22:39:52 +0000 | [diff] [blame] | 5268 | if (Index == CXXBaseSpecifiersOffsets.size()) |
| 5269 | CXXBaseSpecifiersOffsets.push_back(Stream.GetCurrentBitNo()); |
| 5270 | else { |
| 5271 | if (Index > CXXBaseSpecifiersOffsets.size()) |
| 5272 | CXXBaseSpecifiersOffsets.resize(Index + 1); |
| 5273 | CXXBaseSpecifiersOffsets[Index] = Stream.GetCurrentBitNo(); |
| 5274 | } |
| 5275 | |
| 5276 | const CXXBaseSpecifier *B = CXXBaseSpecifiersToWrite[I].Bases, |
| 5277 | *BEnd = CXXBaseSpecifiersToWrite[I].BasesEnd; |
| 5278 | Record.push_back(BEnd - B); |
| 5279 | for (; B != BEnd; ++B) |
| 5280 | AddCXXBaseSpecifier(*B, Record); |
| 5281 | Stream.EmitRecord(serialization::DECL_CXX_BASE_SPECIFIERS, Record); |
Douglas Gregor | acec34b | 2010-10-30 04:28:16 +0000 | [diff] [blame] | 5282 | |
| 5283 | // Flush any expressions that were written as part of the base specifiers. |
| 5284 | FlushStmts(); |
Douglas Gregor | 7c789c1 | 2010-10-29 22:39:52 +0000 | [diff] [blame] | 5285 | } |
| 5286 | |
| 5287 | CXXBaseSpecifiersToWrite.clear(); |
| 5288 | } |
| 5289 | |
Sean Hunt | cbb6748 | 2011-01-08 20:30:50 +0000 | [diff] [blame] | 5290 | void ASTWriter::AddCXXCtorInitializers( |
| 5291 | const CXXCtorInitializer * const *CtorInitializers, |
| 5292 | unsigned NumCtorInitializers, |
| 5293 | RecordDataImpl &Record) { |
| 5294 | Record.push_back(NumCtorInitializers); |
| 5295 | for (unsigned i=0; i != NumCtorInitializers; ++i) { |
| 5296 | const CXXCtorInitializer *Init = CtorInitializers[i]; |
Argyrios Kyrtzidis | 8e706f4 | 2010-08-09 10:54:12 +0000 | [diff] [blame] | 5297 | |
Argyrios Kyrtzidis | 8e706f4 | 2010-08-09 10:54:12 +0000 | [diff] [blame] | 5298 | if (Init->isBaseInitializer()) { |
Sean Hunt | 156b640 | 2011-05-04 01:19:08 +0000 | [diff] [blame] | 5299 | Record.push_back(CTOR_INITIALIZER_BASE); |
Douglas Gregor | 76852c2 | 2011-11-01 01:16:03 +0000 | [diff] [blame] | 5300 | AddTypeSourceInfo(Init->getTypeSourceInfo(), Record); |
Argyrios Kyrtzidis | 8e706f4 | 2010-08-09 10:54:12 +0000 | [diff] [blame] | 5301 | Record.push_back(Init->isBaseVirtual()); |
Sean Hunt | 156b640 | 2011-05-04 01:19:08 +0000 | [diff] [blame] | 5302 | } else if (Init->isDelegatingInitializer()) { |
| 5303 | Record.push_back(CTOR_INITIALIZER_DELEGATING); |
Douglas Gregor | 76852c2 | 2011-11-01 01:16:03 +0000 | [diff] [blame] | 5304 | AddTypeSourceInfo(Init->getTypeSourceInfo(), Record); |
Sean Hunt | 156b640 | 2011-05-04 01:19:08 +0000 | [diff] [blame] | 5305 | } else if (Init->isMemberInitializer()){ |
| 5306 | Record.push_back(CTOR_INITIALIZER_MEMBER); |
| 5307 | AddDeclRef(Init->getMember(), Record); |
Argyrios Kyrtzidis | 8e706f4 | 2010-08-09 10:54:12 +0000 | [diff] [blame] | 5308 | } else { |
Sean Hunt | 156b640 | 2011-05-04 01:19:08 +0000 | [diff] [blame] | 5309 | Record.push_back(CTOR_INITIALIZER_INDIRECT_MEMBER); |
| 5310 | AddDeclRef(Init->getIndirectMember(), Record); |
Argyrios Kyrtzidis | 8e706f4 | 2010-08-09 10:54:12 +0000 | [diff] [blame] | 5311 | } |
Francois Pichet | 00eb3f9 | 2010-12-04 09:14:42 +0000 | [diff] [blame] | 5312 | |
Argyrios Kyrtzidis | 8e706f4 | 2010-08-09 10:54:12 +0000 | [diff] [blame] | 5313 | AddSourceLocation(Init->getMemberLocation(), Record); |
| 5314 | AddStmt(Init->getInit()); |
Argyrios Kyrtzidis | 8e706f4 | 2010-08-09 10:54:12 +0000 | [diff] [blame] | 5315 | AddSourceLocation(Init->getLParenLoc(), Record); |
| 5316 | AddSourceLocation(Init->getRParenLoc(), Record); |
| 5317 | Record.push_back(Init->isWritten()); |
| 5318 | if (Init->isWritten()) { |
| 5319 | Record.push_back(Init->getSourceOrder()); |
| 5320 | } else { |
| 5321 | Record.push_back(Init->getNumArrayIndices()); |
| 5322 | for (unsigned i=0, e=Init->getNumArrayIndices(); i != e; ++i) |
| 5323 | AddDeclRef(Init->getArrayIndex(i), Record); |
| 5324 | } |
| 5325 | } |
| 5326 | } |
| 5327 | |
Argyrios Kyrtzidis | 89eaf3a | 2010-10-24 17:26:40 +0000 | [diff] [blame] | 5328 | void ASTWriter::AddCXXDefinitionData(const CXXRecordDecl *D, RecordDataImpl &Record) { |
Stephen Hines | 6bcf27b | 2014-05-29 04:14:42 -0700 | [diff] [blame^] | 5329 | auto &Data = D->data(); |
Douglas Gregor | 9d36f5d | 2012-02-14 17:54:36 +0000 | [diff] [blame] | 5330 | Record.push_back(Data.IsLambda); |
Argyrios Kyrtzidis | 89eaf3a | 2010-10-24 17:26:40 +0000 | [diff] [blame] | 5331 | Record.push_back(Data.UserDeclaredConstructor); |
Richard Smith | 7d04d3a | 2012-11-30 05:11:39 +0000 | [diff] [blame] | 5332 | Record.push_back(Data.UserDeclaredSpecialMembers); |
Argyrios Kyrtzidis | 89eaf3a | 2010-10-24 17:26:40 +0000 | [diff] [blame] | 5333 | Record.push_back(Data.Aggregate); |
| 5334 | Record.push_back(Data.PlainOldData); |
| 5335 | Record.push_back(Data.Empty); |
| 5336 | Record.push_back(Data.Polymorphic); |
| 5337 | Record.push_back(Data.Abstract); |
Chandler Carruth | ec997dc | 2011-04-30 10:07:30 +0000 | [diff] [blame] | 5338 | Record.push_back(Data.IsStandardLayout); |
Chandler Carruth | a822544 | 2011-04-30 09:17:45 +0000 | [diff] [blame] | 5339 | Record.push_back(Data.HasNoNonEmptyBases); |
| 5340 | Record.push_back(Data.HasPrivateFields); |
| 5341 | Record.push_back(Data.HasProtectedFields); |
| 5342 | Record.push_back(Data.HasPublicFields); |
Douglas Gregor | 2bb1101 | 2011-05-13 01:05:07 +0000 | [diff] [blame] | 5343 | Record.push_back(Data.HasMutableFields); |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 5344 | Record.push_back(Data.HasVariantMembers); |
Richard Smith | dfefb84 | 2012-02-25 07:33:38 +0000 | [diff] [blame] | 5345 | Record.push_back(Data.HasOnlyCMembers); |
Richard Smith | d079abf | 2012-05-07 01:07:30 +0000 | [diff] [blame] | 5346 | Record.push_back(Data.HasInClassInitializer); |
Richard Smith | d5bc867 | 2012-12-08 02:01:17 +0000 | [diff] [blame] | 5347 | Record.push_back(Data.HasUninitializedReferenceMember); |
Richard Smith | bc2a35d | 2012-12-08 08:32:28 +0000 | [diff] [blame] | 5348 | Record.push_back(Data.NeedOverloadResolutionForMoveConstructor); |
| 5349 | Record.push_back(Data.NeedOverloadResolutionForMoveAssignment); |
| 5350 | Record.push_back(Data.NeedOverloadResolutionForDestructor); |
| 5351 | Record.push_back(Data.DefaultedMoveConstructorIsDeleted); |
| 5352 | Record.push_back(Data.DefaultedMoveAssignmentIsDeleted); |
| 5353 | Record.push_back(Data.DefaultedDestructorIsDeleted); |
Richard Smith | 7d04d3a | 2012-11-30 05:11:39 +0000 | [diff] [blame] | 5354 | Record.push_back(Data.HasTrivialSpecialMembers); |
Stephen Hines | 6bcf27b | 2014-05-29 04:14:42 -0700 | [diff] [blame^] | 5355 | Record.push_back(Data.DeclaredNonTrivialSpecialMembers); |
Richard Smith | 7d04d3a | 2012-11-30 05:11:39 +0000 | [diff] [blame] | 5356 | Record.push_back(Data.HasIrrelevantDestructor); |
Richard Smith | 6b8bc07 | 2011-08-10 18:11:37 +0000 | [diff] [blame] | 5357 | Record.push_back(Data.HasConstexprNonCopyMoveConstructor); |
Richard Smith | dfefb84 | 2012-02-25 07:33:38 +0000 | [diff] [blame] | 5358 | Record.push_back(Data.DefaultedDefaultConstructorIsConstexpr); |
Richard Smith | dfefb84 | 2012-02-25 07:33:38 +0000 | [diff] [blame] | 5359 | Record.push_back(Data.HasConstexprDefaultConstructor); |
Chandler Carruth | 9b6347c | 2011-04-24 02:49:34 +0000 | [diff] [blame] | 5360 | Record.push_back(Data.HasNonLiteralTypeFieldsOrBases); |
Argyrios Kyrtzidis | 89eaf3a | 2010-10-24 17:26:40 +0000 | [diff] [blame] | 5361 | Record.push_back(Data.ComputedVisibleConversions); |
Sean Hunt | cdee3fe | 2011-05-11 22:34:38 +0000 | [diff] [blame] | 5362 | Record.push_back(Data.UserProvidedDefaultConstructor); |
Richard Smith | 7d04d3a | 2012-11-30 05:11:39 +0000 | [diff] [blame] | 5363 | Record.push_back(Data.DeclaredSpecialMembers); |
Richard Smith | acf796b | 2012-11-28 06:23:12 +0000 | [diff] [blame] | 5364 | Record.push_back(Data.ImplicitCopyConstructorHasConstParam); |
| 5365 | Record.push_back(Data.ImplicitCopyAssignmentHasConstParam); |
| 5366 | Record.push_back(Data.HasDeclaredCopyConstructorWithConstParam); |
| 5367 | Record.push_back(Data.HasDeclaredCopyAssignmentWithConstParam); |
Richard Smith | dfefb84 | 2012-02-25 07:33:38 +0000 | [diff] [blame] | 5368 | // IsLambda bit is already saved. |
Argyrios Kyrtzidis | 89eaf3a | 2010-10-24 17:26:40 +0000 | [diff] [blame] | 5369 | |
| 5370 | Record.push_back(Data.NumBases); |
Douglas Gregor | 7c789c1 | 2010-10-29 22:39:52 +0000 | [diff] [blame] | 5371 | if (Data.NumBases > 0) |
| 5372 | AddCXXBaseSpecifiersRef(Data.getBases(), Data.getBases() + Data.NumBases, |
| 5373 | Record); |
| 5374 | |
Argyrios Kyrtzidis | 89eaf3a | 2010-10-24 17:26:40 +0000 | [diff] [blame] | 5375 | // FIXME: Make VBases lazily computed when needed to avoid storing them. |
| 5376 | Record.push_back(Data.NumVBases); |
Douglas Gregor | 7c789c1 | 2010-10-29 22:39:52 +0000 | [diff] [blame] | 5377 | if (Data.NumVBases > 0) |
| 5378 | AddCXXBaseSpecifiersRef(Data.getVBases(), Data.getVBases() + Data.NumVBases, |
| 5379 | Record); |
Argyrios Kyrtzidis | 89eaf3a | 2010-10-24 17:26:40 +0000 | [diff] [blame] | 5380 | |
Richard Smith | c2d7757 | 2013-08-30 04:46:40 +0000 | [diff] [blame] | 5381 | AddUnresolvedSet(Data.Conversions.get(*Context), Record); |
| 5382 | AddUnresolvedSet(Data.VisibleConversions.get(*Context), Record); |
Argyrios Kyrtzidis | 89eaf3a | 2010-10-24 17:26:40 +0000 | [diff] [blame] | 5383 | // Data.Definition is the owning decl, no need to write it. |
Richard Smith | 4fc5089 | 2013-06-26 02:41:25 +0000 | [diff] [blame] | 5384 | AddDeclRef(D->getFirstFriend(), Record); |
Douglas Gregor | 9d36f5d | 2012-02-14 17:54:36 +0000 | [diff] [blame] | 5385 | |
| 5386 | // Add lambda-specific data. |
| 5387 | if (Data.IsLambda) { |
Stephen Hines | 6bcf27b | 2014-05-29 04:14:42 -0700 | [diff] [blame^] | 5388 | auto &Lambda = D->getLambdaData(); |
Douglas Gregor | f4b7de1 | 2012-02-21 19:11:17 +0000 | [diff] [blame] | 5389 | Record.push_back(Lambda.Dependent); |
Faisal Vali | bef582b | 2013-10-23 16:10:50 +0000 | [diff] [blame] | 5390 | Record.push_back(Lambda.IsGenericLambda); |
| 5391 | Record.push_back(Lambda.CaptureDefault); |
Douglas Gregor | 9d36f5d | 2012-02-14 17:54:36 +0000 | [diff] [blame] | 5392 | Record.push_back(Lambda.NumCaptures); |
| 5393 | Record.push_back(Lambda.NumExplicitCaptures); |
Douglas Gregor | 9e8c92a | 2012-02-20 19:44:39 +0000 | [diff] [blame] | 5394 | Record.push_back(Lambda.ManglingNumber); |
Douglas Gregor | ccc1b5e | 2012-02-21 00:37:24 +0000 | [diff] [blame] | 5395 | AddDeclRef(Lambda.ContextDecl, Record); |
Eli Friedman | 8da8a66 | 2012-09-19 01:18:11 +0000 | [diff] [blame] | 5396 | AddTypeSourceInfo(Lambda.MethodTyInfo, Record); |
Douglas Gregor | 9d36f5d | 2012-02-14 17:54:36 +0000 | [diff] [blame] | 5397 | for (unsigned I = 0, N = Lambda.NumCaptures; I != N; ++I) { |
Stephen Hines | 6bcf27b | 2014-05-29 04:14:42 -0700 | [diff] [blame^] | 5398 | const LambdaCapture &Capture = Lambda.Captures[I]; |
Douglas Gregor | 9d36f5d | 2012-02-14 17:54:36 +0000 | [diff] [blame] | 5399 | AddSourceLocation(Capture.getLocation(), Record); |
| 5400 | Record.push_back(Capture.isImplicit()); |
Richard Smith | 0d8e964 | 2013-05-16 06:20:58 +0000 | [diff] [blame] | 5401 | Record.push_back(Capture.getCaptureKind()); |
| 5402 | switch (Capture.getCaptureKind()) { |
| 5403 | case LCK_This: |
| 5404 | break; |
| 5405 | case LCK_ByCopy: |
Richard Smith | 04fa7a3 | 2013-09-28 04:02:39 +0000 | [diff] [blame] | 5406 | case LCK_ByRef: |
Richard Smith | 0d8e964 | 2013-05-16 06:20:58 +0000 | [diff] [blame] | 5407 | VarDecl *Var = |
Stephen Hines | 6bcf27b | 2014-05-29 04:14:42 -0700 | [diff] [blame^] | 5408 | Capture.capturesVariable() ? Capture.getCapturedVar() : nullptr; |
Richard Smith | 0d8e964 | 2013-05-16 06:20:58 +0000 | [diff] [blame] | 5409 | AddDeclRef(Var, Record); |
| 5410 | AddSourceLocation(Capture.isPackExpansion() ? Capture.getEllipsisLoc() |
| 5411 | : SourceLocation(), |
| 5412 | Record); |
| 5413 | break; |
| 5414 | } |
Douglas Gregor | 9d36f5d | 2012-02-14 17:54:36 +0000 | [diff] [blame] | 5415 | } |
| 5416 | } |
Argyrios Kyrtzidis | 89eaf3a | 2010-10-24 17:26:40 +0000 | [diff] [blame] | 5417 | } |
| 5418 | |
Argyrios Kyrtzidis | 7b90340 | 2010-10-24 17:26:36 +0000 | [diff] [blame] | 5419 | void ASTWriter::ReaderInitialized(ASTReader *Reader) { |
Sebastian Redl | ffaab3e | 2010-07-30 00:29:29 +0000 | [diff] [blame] | 5420 | assert(Reader && "Cannot remove chain"); |
Douglas Gregor | 10bc00f | 2011-08-18 04:12:04 +0000 | [diff] [blame] | 5421 | assert((!Chain || Chain == Reader) && "Cannot replace chain"); |
Sebastian Redl | ffaab3e | 2010-07-30 00:29:29 +0000 | [diff] [blame] | 5422 | assert(FirstDeclID == NextDeclID && |
| 5423 | FirstTypeID == NextTypeID && |
| 5424 | FirstIdentID == NextIdentID && |
Douglas Gregor | a8235d6 | 2012-10-09 23:05:51 +0000 | [diff] [blame] | 5425 | FirstMacroID == NextMacroID && |
Douglas Gregor | 26ced12 | 2011-12-01 00:59:36 +0000 | [diff] [blame] | 5426 | FirstSubmoduleID == NextSubmoduleID && |
Sebastian Redl | e58aa89 | 2010-08-04 18:21:41 +0000 | [diff] [blame] | 5427 | FirstSelectorID == NextSelectorID && |
Sebastian Redl | ffaab3e | 2010-07-30 00:29:29 +0000 | [diff] [blame] | 5428 | "Setting chain after writing has started."); |
Douglas Gregor | f62d43d | 2011-07-19 16:10:42 +0000 | [diff] [blame] | 5429 | |
Sebastian Redl | ffaab3e | 2010-07-30 00:29:29 +0000 | [diff] [blame] | 5430 | Chain = Reader; |
Argyrios Kyrtzidis | 7b90340 | 2010-10-24 17:26:36 +0000 | [diff] [blame] | 5431 | |
Douglas Gregor | 10bc00f | 2011-08-18 04:12:04 +0000 | [diff] [blame] | 5432 | FirstDeclID = NUM_PREDEF_DECL_IDS + Chain->getTotalNumDecls(); |
| 5433 | FirstTypeID = NUM_PREDEF_TYPE_IDS + Chain->getTotalNumTypes(); |
| 5434 | FirstIdentID = NUM_PREDEF_IDENT_IDS + Chain->getTotalNumIdentifiers(); |
Douglas Gregor | a8235d6 | 2012-10-09 23:05:51 +0000 | [diff] [blame] | 5435 | FirstMacroID = NUM_PREDEF_MACRO_IDS + Chain->getTotalNumMacros(); |
Douglas Gregor | 26ced12 | 2011-12-01 00:59:36 +0000 | [diff] [blame] | 5436 | FirstSubmoduleID = NUM_PREDEF_SUBMODULE_IDS + Chain->getTotalNumSubmodules(); |
Douglas Gregor | 10bc00f | 2011-08-18 04:12:04 +0000 | [diff] [blame] | 5437 | FirstSelectorID = NUM_PREDEF_SELECTOR_IDS + Chain->getTotalNumSelectors(); |
Argyrios Kyrtzidis | 7b90340 | 2010-10-24 17:26:36 +0000 | [diff] [blame] | 5438 | NextDeclID = FirstDeclID; |
| 5439 | NextTypeID = FirstTypeID; |
| 5440 | NextIdentID = FirstIdentID; |
Douglas Gregor | a8235d6 | 2012-10-09 23:05:51 +0000 | [diff] [blame] | 5441 | NextMacroID = FirstMacroID; |
Argyrios Kyrtzidis | 7b90340 | 2010-10-24 17:26:36 +0000 | [diff] [blame] | 5442 | NextSelectorID = FirstSelectorID; |
Douglas Gregor | 26ced12 | 2011-12-01 00:59:36 +0000 | [diff] [blame] | 5443 | NextSubmoduleID = FirstSubmoduleID; |
Sebastian Redl | ffaab3e | 2010-07-30 00:29:29 +0000 | [diff] [blame] | 5444 | } |
| 5445 | |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 5446 | void ASTWriter::IdentifierRead(IdentID ID, IdentifierInfo *II) { |
Douglas Gregor | 2d1ece8 | 2013-02-08 21:30:59 +0000 | [diff] [blame] | 5447 | // Always keep the highest ID. See \p TypeRead() for more information. |
| 5448 | IdentID &StoredID = IdentifierIDs[II]; |
| 5449 | if (ID > StoredID) |
| 5450 | StoredID = ID; |
Sebastian Redl | f2f0f03 | 2010-07-23 23:49:55 +0000 | [diff] [blame] | 5451 | } |
| 5452 | |
Argyrios Kyrtzidis | 9317ab9 | 2013-03-22 21:12:57 +0000 | [diff] [blame] | 5453 | void ASTWriter::MacroRead(serialization::MacroID ID, MacroInfo *MI) { |
Douglas Gregor | 2d1ece8 | 2013-02-08 21:30:59 +0000 | [diff] [blame] | 5454 | // Always keep the highest ID. See \p TypeRead() for more information. |
Argyrios Kyrtzidis | 9317ab9 | 2013-03-22 21:12:57 +0000 | [diff] [blame] | 5455 | MacroID &StoredID = MacroIDs[MI]; |
Douglas Gregor | 2d1ece8 | 2013-02-08 21:30:59 +0000 | [diff] [blame] | 5456 | if (ID > StoredID) |
| 5457 | StoredID = ID; |
Douglas Gregor | a8235d6 | 2012-10-09 23:05:51 +0000 | [diff] [blame] | 5458 | } |
| 5459 | |
Argyrios Kyrtzidis | c8e5d51 | 2010-08-20 16:03:59 +0000 | [diff] [blame] | 5460 | void ASTWriter::TypeRead(TypeIdx Idx, QualType T) { |
Douglas Gregor | 9747583 | 2010-10-05 18:37:06 +0000 | [diff] [blame] | 5461 | // Always take the highest-numbered type index. This copes with an interesting |
| 5462 | // case for chained AST writing where we schedule writing the type and then, |
Michael J. Spencer | 20249a1 | 2010-10-21 03:16:25 +0000 | [diff] [blame] | 5463 | // later, deserialize the type from another AST. In this case, we want to |
Douglas Gregor | 9747583 | 2010-10-05 18:37:06 +0000 | [diff] [blame] | 5464 | // keep the higher-numbered entry so that we can properly write it out to |
| 5465 | // the AST file. |
| 5466 | TypeIdx &StoredIdx = TypeIdxs[T]; |
| 5467 | if (Idx.getIndex() >= StoredIdx.getIndex()) |
| 5468 | StoredIdx = Idx; |
Sebastian Redl | 30c514c | 2010-07-14 23:45:08 +0000 | [diff] [blame] | 5469 | } |
| 5470 | |
Sebastian Redl | 8538e8d | 2010-08-18 23:57:32 +0000 | [diff] [blame] | 5471 | void ASTWriter::SelectorRead(SelectorID ID, Selector S) { |
Douglas Gregor | 2d1ece8 | 2013-02-08 21:30:59 +0000 | [diff] [blame] | 5472 | // Always keep the highest ID. See \p TypeRead() for more information. |
| 5473 | SelectorID &StoredID = SelectorIDs[S]; |
| 5474 | if (ID > StoredID) |
| 5475 | StoredID = ID; |
Sebastian Redl | 5d05007 | 2010-08-04 17:20:04 +0000 | [diff] [blame] | 5476 | } |
Douglas Gregor | 77424bc | 2010-10-02 19:29:26 +0000 | [diff] [blame] | 5477 | |
Argyrios Kyrtzidis | e24692b | 2011-09-15 18:02:56 +0000 | [diff] [blame] | 5478 | void ASTWriter::MacroDefinitionRead(serialization::PreprocessedEntityID ID, |
Douglas Gregor | 77424bc | 2010-10-02 19:29:26 +0000 | [diff] [blame] | 5479 | MacroDefinition *MD) { |
Argyrios Kyrtzidis | e24692b | 2011-09-15 18:02:56 +0000 | [diff] [blame] | 5480 | assert(MacroDefinitions.find(MD) == MacroDefinitions.end()); |
Douglas Gregor | 77424bc | 2010-10-02 19:29:26 +0000 | [diff] [blame] | 5481 | MacroDefinitions[MD] = ID; |
| 5482 | } |
Argyrios Kyrtzidis | 565bf30 | 2010-10-24 17:26:50 +0000 | [diff] [blame] | 5483 | |
Douglas Gregor | a015cab | 2011-12-02 17:30:13 +0000 | [diff] [blame] | 5484 | void ASTWriter::ModuleRead(serialization::SubmoduleID ID, Module *Mod) { |
| 5485 | assert(SubmoduleIDs.find(Mod) == SubmoduleIDs.end()); |
| 5486 | SubmoduleIDs[Mod] = ID; |
| 5487 | } |
| 5488 | |
Argyrios Kyrtzidis | 565bf30 | 2010-10-24 17:26:50 +0000 | [diff] [blame] | 5489 | void ASTWriter::CompletedTagDefinition(const TagDecl *D) { |
John McCall | 5e1cdac | 2011-10-07 06:10:15 +0000 | [diff] [blame] | 5490 | assert(D->isCompleteDefinition()); |
Douglas Gregor | 61c5e34 | 2011-09-17 00:05:03 +0000 | [diff] [blame] | 5491 | assert(!WritingAST && "Already writing the AST!"); |
Argyrios Kyrtzidis | 565bf30 | 2010-10-24 17:26:50 +0000 | [diff] [blame] | 5492 | if (const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(D)) { |
| 5493 | // We are interested when a PCH decl is modified. |
Douglas Gregor | 919814d | 2011-09-09 23:01:35 +0000 | [diff] [blame] | 5494 | if (RD->isFromASTFile()) { |
Argyrios Kyrtzidis | 565bf30 | 2010-10-24 17:26:50 +0000 | [diff] [blame] | 5495 | // A forward reference was mutated into a definition. Rewrite it. |
| 5496 | // FIXME: This happens during template instantiation, should we |
| 5497 | // have created a new definition decl instead ? |
Stephen Hines | 6bcf27b | 2014-05-29 04:14:42 -0700 | [diff] [blame^] | 5498 | assert(isTemplateInstantiation(RD->getTemplateSpecializationKind()) && |
| 5499 | "completed a tag from another module but not by instantiation?"); |
| 5500 | DeclUpdates[RD].push_back( |
| 5501 | DeclUpdate(UPD_CXX_INSTANTIATED_CLASS_DEFINITION)); |
Argyrios Kyrtzidis | 565bf30 | 2010-10-24 17:26:50 +0000 | [diff] [blame] | 5502 | } |
Argyrios Kyrtzidis | 565bf30 | 2010-10-24 17:26:50 +0000 | [diff] [blame] | 5503 | } |
| 5504 | } |
Douglas Gregor | a8235d6 | 2012-10-09 23:05:51 +0000 | [diff] [blame] | 5505 | |
Argyrios Kyrtzidis | 100050b | 2010-10-28 07:38:51 +0000 | [diff] [blame] | 5506 | void ASTWriter::AddedVisibleDecl(const DeclContext *DC, const Decl *D) { |
Douglas Gregor | 61c5e34 | 2011-09-17 00:05:03 +0000 | [diff] [blame] | 5507 | assert(!WritingAST && "Already writing the AST!"); |
| 5508 | |
Argyrios Kyrtzidis | 100050b | 2010-10-28 07:38:51 +0000 | [diff] [blame] | 5509 | // TU and namespaces are handled elsewhere. |
| 5510 | if (isa<TranslationUnitDecl>(DC) || isa<NamespaceDecl>(DC)) |
| 5511 | return; |
| 5512 | |
Douglas Gregor | 919814d | 2011-09-09 23:01:35 +0000 | [diff] [blame] | 5513 | if (!(!D->isFromASTFile() && cast<Decl>(DC)->isFromASTFile())) |
Argyrios Kyrtzidis | 100050b | 2010-10-28 07:38:51 +0000 | [diff] [blame] | 5514 | return; // Not a source decl added to a DeclContext from PCH. |
| 5515 | |
Douglas Gregor | 5a04f9f | 2013-01-21 15:25:38 +0000 | [diff] [blame] | 5516 | assert(!getDefinitiveDeclContext(DC) && "DeclContext not definitive!"); |
Argyrios Kyrtzidis | 100050b | 2010-10-28 07:38:51 +0000 | [diff] [blame] | 5517 | AddUpdatedDeclContext(DC); |
Argyrios Kyrtzidis | 7518b37 | 2012-07-02 19:19:01 +0000 | [diff] [blame] | 5518 | UpdatingVisibleDecls.push_back(D); |
Argyrios Kyrtzidis | 100050b | 2010-10-28 07:38:51 +0000 | [diff] [blame] | 5519 | } |
Argyrios Kyrtzidis | b6cc0e1 | 2010-10-24 17:26:54 +0000 | [diff] [blame] | 5520 | |
| 5521 | void ASTWriter::AddedCXXImplicitMember(const CXXRecordDecl *RD, const Decl *D) { |
Douglas Gregor | 61c5e34 | 2011-09-17 00:05:03 +0000 | [diff] [blame] | 5522 | assert(!WritingAST && "Already writing the AST!"); |
Argyrios Kyrtzidis | b6cc0e1 | 2010-10-24 17:26:54 +0000 | [diff] [blame] | 5523 | assert(D->isImplicit()); |
Douglas Gregor | 919814d | 2011-09-09 23:01:35 +0000 | [diff] [blame] | 5524 | if (!(!D->isFromASTFile() && RD->isFromASTFile())) |
Argyrios Kyrtzidis | b6cc0e1 | 2010-10-24 17:26:54 +0000 | [diff] [blame] | 5525 | return; // Not a source member added to a class from PCH. |
| 5526 | if (!isa<CXXMethodDecl>(D)) |
| 5527 | return; // We are interested in lazily declared implicit methods. |
| 5528 | |
| 5529 | // A decl coming from PCH was modified. |
John McCall | 5e1cdac | 2011-10-07 06:10:15 +0000 | [diff] [blame] | 5530 | assert(RD->isCompleteDefinition()); |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 5531 | DeclUpdates[RD].push_back(DeclUpdate(UPD_CXX_ADDED_IMPLICIT_MEMBER, D)); |
Argyrios Kyrtzidis | b6cc0e1 | 2010-10-24 17:26:54 +0000 | [diff] [blame] | 5532 | } |
Argyrios Kyrtzidis | bef1a7b | 2010-10-28 07:38:42 +0000 | [diff] [blame] | 5533 | |
| 5534 | void ASTWriter::AddedCXXTemplateSpecialization(const ClassTemplateDecl *TD, |
| 5535 | const ClassTemplateSpecializationDecl *D) { |
Argyrios Kyrtzidis | 0f04f69 | 2010-10-28 07:38:47 +0000 | [diff] [blame] | 5536 | // The specializations set is kept in the canonical template. |
Douglas Gregor | 61c5e34 | 2011-09-17 00:05:03 +0000 | [diff] [blame] | 5537 | assert(!WritingAST && "Already writing the AST!"); |
Argyrios Kyrtzidis | 0f04f69 | 2010-10-28 07:38:47 +0000 | [diff] [blame] | 5538 | TD = TD->getCanonicalDecl(); |
Douglas Gregor | 919814d | 2011-09-09 23:01:35 +0000 | [diff] [blame] | 5539 | if (!(!D->isFromASTFile() && TD->isFromASTFile())) |
Argyrios Kyrtzidis | bef1a7b | 2010-10-28 07:38:42 +0000 | [diff] [blame] | 5540 | return; // Not a source specialization added to a template from PCH. |
| 5541 | |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 5542 | DeclUpdates[TD].push_back(DeclUpdate(UPD_CXX_ADDED_TEMPLATE_SPECIALIZATION, |
| 5543 | D)); |
Argyrios Kyrtzidis | bef1a7b | 2010-10-28 07:38:42 +0000 | [diff] [blame] | 5544 | } |
Douglas Gregor | 89d9980 | 2010-11-30 06:16:57 +0000 | [diff] [blame] | 5545 | |
Larisse Voufo | ef4579c | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 5546 | void ASTWriter::AddedCXXTemplateSpecialization( |
| 5547 | const VarTemplateDecl *TD, const VarTemplateSpecializationDecl *D) { |
| 5548 | // The specializations set is kept in the canonical template. |
| 5549 | assert(!WritingAST && "Already writing the AST!"); |
| 5550 | TD = TD->getCanonicalDecl(); |
| 5551 | if (!(!D->isFromASTFile() && TD->isFromASTFile())) |
| 5552 | return; // Not a source specialization added to a template from PCH. |
| 5553 | |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 5554 | DeclUpdates[TD].push_back(DeclUpdate(UPD_CXX_ADDED_TEMPLATE_SPECIALIZATION, |
| 5555 | D)); |
Larisse Voufo | ef4579c | 2013-08-06 01:03:05 +0000 | [diff] [blame] | 5556 | } |
| 5557 | |
Sebastian Redl | 5bbcdbf | 2011-04-14 14:07:59 +0000 | [diff] [blame] | 5558 | void ASTWriter::AddedCXXTemplateSpecialization(const FunctionTemplateDecl *TD, |
| 5559 | const FunctionDecl *D) { |
| 5560 | // The specializations set is kept in the canonical template. |
Douglas Gregor | 61c5e34 | 2011-09-17 00:05:03 +0000 | [diff] [blame] | 5561 | assert(!WritingAST && "Already writing the AST!"); |
Sebastian Redl | 5bbcdbf | 2011-04-14 14:07:59 +0000 | [diff] [blame] | 5562 | TD = TD->getCanonicalDecl(); |
Douglas Gregor | 919814d | 2011-09-09 23:01:35 +0000 | [diff] [blame] | 5563 | if (!(!D->isFromASTFile() && TD->isFromASTFile())) |
Sebastian Redl | 5bbcdbf | 2011-04-14 14:07:59 +0000 | [diff] [blame] | 5564 | return; // Not a source specialization added to a template from PCH. |
| 5565 | |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 5566 | DeclUpdates[TD].push_back(DeclUpdate(UPD_CXX_ADDED_TEMPLATE_SPECIALIZATION, |
| 5567 | D)); |
| 5568 | } |
| 5569 | |
| 5570 | void ASTWriter::ResolvedExceptionSpec(const FunctionDecl *FD) { |
| 5571 | assert(!WritingAST && "Already writing the AST!"); |
| 5572 | FD = FD->getCanonicalDecl(); |
| 5573 | if (!FD->isFromASTFile()) |
| 5574 | return; // Not a function declared in PCH and defined outside. |
| 5575 | |
| 5576 | DeclUpdates[FD].push_back(UPD_CXX_RESOLVED_EXCEPTION_SPEC); |
Sebastian Redl | 5bbcdbf | 2011-04-14 14:07:59 +0000 | [diff] [blame] | 5577 | } |
| 5578 | |
Richard Smith | 9dadfab | 2013-05-11 05:45:24 +0000 | [diff] [blame] | 5579 | void ASTWriter::DeducedReturnType(const FunctionDecl *FD, QualType ReturnType) { |
| 5580 | assert(!WritingAST && "Already writing the AST!"); |
| 5581 | FD = FD->getCanonicalDecl(); |
| 5582 | if (!FD->isFromASTFile()) |
| 5583 | return; // Not a function declared in PCH and defined outside. |
| 5584 | |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 5585 | DeclUpdates[FD].push_back(DeclUpdate(UPD_CXX_DEDUCED_RETURN_TYPE, ReturnType)); |
Richard Smith | 9dadfab | 2013-05-11 05:45:24 +0000 | [diff] [blame] | 5586 | } |
| 5587 | |
Sebastian Redl | 58a2cd8 | 2011-04-24 16:28:06 +0000 | [diff] [blame] | 5588 | void ASTWriter::CompletedImplicitDefinition(const FunctionDecl *D) { |
Douglas Gregor | 61c5e34 | 2011-09-17 00:05:03 +0000 | [diff] [blame] | 5589 | assert(!WritingAST && "Already writing the AST!"); |
Douglas Gregor | 919814d | 2011-09-09 23:01:35 +0000 | [diff] [blame] | 5590 | if (!D->isFromASTFile()) |
Sebastian Redl | 58a2cd8 | 2011-04-24 16:28:06 +0000 | [diff] [blame] | 5591 | return; // Declaration not imported from PCH. |
| 5592 | |
| 5593 | // Implicit decl from a PCH was defined. |
| 5594 | // FIXME: Should implicit definition be a separate FunctionDecl? |
| 5595 | RewriteDecl(D); |
| 5596 | } |
| 5597 | |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 5598 | void ASTWriter::FunctionDefinitionInstantiated(const FunctionDecl *D) { |
| 5599 | assert(!WritingAST && "Already writing the AST!"); |
| 5600 | if (!D->isFromASTFile()) |
| 5601 | return; |
| 5602 | |
| 5603 | // Since the actual instantiation is delayed, this really means that we need |
| 5604 | // to update the instantiation location. |
| 5605 | DeclUpdates[D].push_back( |
| 5606 | DeclUpdate(UPD_CXX_INSTANTIATED_FUNCTION_DEFINITION)); |
| 5607 | } |
| 5608 | |
Sebastian Redl | f79a719 | 2011-04-29 08:19:30 +0000 | [diff] [blame] | 5609 | void ASTWriter::StaticDataMemberInstantiated(const VarDecl *D) { |
Douglas Gregor | 61c5e34 | 2011-09-17 00:05:03 +0000 | [diff] [blame] | 5610 | assert(!WritingAST && "Already writing the AST!"); |
Douglas Gregor | 919814d | 2011-09-09 23:01:35 +0000 | [diff] [blame] | 5611 | if (!D->isFromASTFile()) |
Sebastian Redl | f79a719 | 2011-04-29 08:19:30 +0000 | [diff] [blame] | 5612 | return; |
| 5613 | |
| 5614 | // Since the actual instantiation is delayed, this really means that we need |
| 5615 | // to update the instantiation location. |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 5616 | DeclUpdates[D].push_back( |
| 5617 | DeclUpdate(UPD_CXX_INSTANTIATED_STATIC_DATA_MEMBER, |
| 5618 | D->getMemberSpecializationInfo()->getPointOfInstantiation())); |
Sebastian Redl | f79a719 | 2011-04-29 08:19:30 +0000 | [diff] [blame] | 5619 | } |
| 5620 | |
Argyrios Kyrtzidis | e6b8d68 | 2011-09-01 00:58:55 +0000 | [diff] [blame] | 5621 | void ASTWriter::AddedObjCCategoryToInterface(const ObjCCategoryDecl *CatD, |
| 5622 | const ObjCInterfaceDecl *IFD) { |
Douglas Gregor | 61c5e34 | 2011-09-17 00:05:03 +0000 | [diff] [blame] | 5623 | assert(!WritingAST && "Already writing the AST!"); |
Douglas Gregor | 919814d | 2011-09-09 23:01:35 +0000 | [diff] [blame] | 5624 | if (!IFD->isFromASTFile()) |
Argyrios Kyrtzidis | e6b8d68 | 2011-09-01 00:58:55 +0000 | [diff] [blame] | 5625 | return; // Declaration not imported from PCH. |
Douglas Gregor | cff9f26 | 2012-01-27 01:47:08 +0000 | [diff] [blame] | 5626 | |
| 5627 | assert(IFD->getDefinition() && "Category on a class without a definition?"); |
| 5628 | ObjCClassesWithCategories.insert( |
| 5629 | const_cast<ObjCInterfaceDecl *>(IFD->getDefinition())); |
Argyrios Kyrtzidis | e6b8d68 | 2011-09-01 00:58:55 +0000 | [diff] [blame] | 5630 | } |
Argyrios Kyrtzidis | ad834d5 | 2011-11-12 21:07:46 +0000 | [diff] [blame] | 5631 | |
Argyrios Kyrtzidis | 1a43415 | 2011-11-12 21:07:52 +0000 | [diff] [blame] | 5632 | |
Argyrios Kyrtzidis | c80553e | 2011-11-14 04:52:29 +0000 | [diff] [blame] | 5633 | void ASTWriter::AddedObjCPropertyInClassExtension(const ObjCPropertyDecl *Prop, |
| 5634 | const ObjCPropertyDecl *OrigProp, |
| 5635 | const ObjCCategoryDecl *ClassExt) { |
| 5636 | const ObjCInterfaceDecl *D = ClassExt->getClassInterface(); |
| 5637 | if (!D) |
| 5638 | return; |
| 5639 | |
| 5640 | assert(!WritingAST && "Already writing the AST!"); |
| 5641 | if (!D->isFromASTFile()) |
| 5642 | return; // Declaration not imported from PCH. |
| 5643 | |
| 5644 | RewriteDecl(D); |
| 5645 | } |
Eli Friedman | 86164e8 | 2013-09-05 00:02:25 +0000 | [diff] [blame] | 5646 | |
| 5647 | void ASTWriter::DeclarationMarkedUsed(const Decl *D) { |
| 5648 | assert(!WritingAST && "Already writing the AST!"); |
| 5649 | if (!D->isFromASTFile()) |
| 5650 | return; |
| 5651 | |
Stephen Hines | 651f13c | 2014-04-23 16:59:28 -0700 | [diff] [blame] | 5652 | DeclUpdates[D].push_back(DeclUpdate(UPD_DECL_MARKED_USED)); |
Eli Friedman | 86164e8 | 2013-09-05 00:02:25 +0000 | [diff] [blame] | 5653 | } |