Chris Lattner | e127a0d | 2010-04-20 20:35:58 +0000 | [diff] [blame] | 1 | //===--- PCHWriter.cpp - Precompiled Headers 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 | // |
| 10 | // This file defines the PCHWriter class, which writes a precompiled header. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #include "clang/Frontend/PCHWriter.h" |
Douglas Gregor | e778504 | 2009-04-20 15:53:59 +0000 | [diff] [blame] | 15 | #include "../Sema/Sema.h" // FIXME: move header into include/clang/Sema |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 16 | #include "../Sema/IdentifierResolver.h" // FIXME: move header |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 17 | #include "clang/AST/ASTContext.h" |
| 18 | #include "clang/AST/Decl.h" |
| 19 | #include "clang/AST/DeclContextInternals.h" |
Douglas Gregor | 0b74891 | 2009-04-14 21:18:50 +0000 | [diff] [blame] | 20 | #include "clang/AST/Expr.h" |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 21 | #include "clang/AST/Type.h" |
John McCall | a1ee0c5 | 2009-10-16 21:56:05 +0000 | [diff] [blame] | 22 | #include "clang/AST/TypeLocVisitor.h" |
Chris Lattner | 7c5d24e | 2009-04-10 18:00:12 +0000 | [diff] [blame] | 23 | #include "clang/Lex/MacroInfo.h" |
Douglas Gregor | 6a5a23f | 2010-03-19 21:51:54 +0000 | [diff] [blame] | 24 | #include "clang/Lex/PreprocessingRecord.h" |
Chris Lattner | 7c5d24e | 2009-04-10 18:00:12 +0000 | [diff] [blame] | 25 | #include "clang/Lex/Preprocessor.h" |
Steve Naroff | 83d63c7 | 2009-04-24 20:03:17 +0000 | [diff] [blame] | 26 | #include "clang/Lex/HeaderSearch.h" |
Douglas Gregor | 14f7900 | 2009-04-10 03:52:48 +0000 | [diff] [blame] | 27 | #include "clang/Basic/FileManager.h" |
Douglas Gregor | 3251ceb | 2009-04-20 20:36:09 +0000 | [diff] [blame] | 28 | #include "clang/Basic/OnDiskHashTable.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 | ab41e63 | 2009-04-27 22:23:34 +0000 | [diff] [blame] | 32 | #include "clang/Basic/Version.h" |
Douglas Gregor | 17fc223 | 2009-04-14 21:55:33 +0000 | [diff] [blame] | 33 | #include "llvm/ADT/APFloat.h" |
| 34 | #include "llvm/ADT/APInt.h" |
Daniel Dunbar | 2596e42 | 2009-10-17 23:52:28 +0000 | [diff] [blame] | 35 | #include "llvm/ADT/StringExtras.h" |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 36 | #include "llvm/Bitcode/BitstreamWriter.h" |
Douglas Gregor | 14f7900 | 2009-04-10 03:52:48 +0000 | [diff] [blame] | 37 | #include "llvm/Support/MemoryBuffer.h" |
Douglas Gregor | b64c193 | 2009-05-12 01:31:05 +0000 | [diff] [blame] | 38 | #include "llvm/System/Path.h" |
Chris Lattner | 3c304bd | 2009-04-11 18:40:46 +0000 | [diff] [blame] | 39 | #include <cstdio> |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 40 | using namespace clang; |
| 41 | |
| 42 | //===----------------------------------------------------------------------===// |
| 43 | // Type serialization |
| 44 | //===----------------------------------------------------------------------===// |
Chris Lattner | 12b1c76 | 2009-04-27 06:16:06 +0000 | [diff] [blame] | 45 | |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 46 | namespace { |
Benjamin Kramer | bd21828 | 2009-11-28 10:07:24 +0000 | [diff] [blame] | 47 | class PCHTypeWriter { |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 48 | PCHWriter &Writer; |
| 49 | PCHWriter::RecordData &Record; |
| 50 | |
| 51 | public: |
| 52 | /// \brief Type code that corresponds to the record generated. |
| 53 | pch::TypeCode Code; |
| 54 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 55 | PCHTypeWriter(PCHWriter &Writer, PCHWriter::RecordData &Record) |
Douglas Gregor | 4fed3f4 | 2009-04-27 18:38:38 +0000 | [diff] [blame] | 56 | : Writer(Writer), Record(Record), Code(pch::TYPE_EXT_QUAL) { } |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 57 | |
| 58 | void VisitArrayType(const ArrayType *T); |
| 59 | void VisitFunctionType(const FunctionType *T); |
| 60 | void VisitTagType(const TagType *T); |
| 61 | |
| 62 | #define TYPE(Class, Base) void Visit##Class##Type(const Class##Type *T); |
| 63 | #define ABSTRACT_TYPE(Class, Base) |
| 64 | #define DEPENDENT_TYPE(Class, Base) |
| 65 | #include "clang/AST/TypeNodes.def" |
| 66 | }; |
| 67 | } |
| 68 | |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 69 | void PCHTypeWriter::VisitBuiltinType(const BuiltinType *T) { |
| 70 | assert(false && "Built-in types are never serialized"); |
| 71 | } |
| 72 | |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 73 | void PCHTypeWriter::VisitComplexType(const ComplexType *T) { |
| 74 | Writer.AddTypeRef(T->getElementType(), Record); |
| 75 | Code = pch::TYPE_COMPLEX; |
| 76 | } |
| 77 | |
| 78 | void PCHTypeWriter::VisitPointerType(const PointerType *T) { |
| 79 | Writer.AddTypeRef(T->getPointeeType(), Record); |
| 80 | Code = pch::TYPE_POINTER; |
| 81 | } |
| 82 | |
| 83 | void PCHTypeWriter::VisitBlockPointerType(const BlockPointerType *T) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 84 | Writer.AddTypeRef(T->getPointeeType(), Record); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 85 | Code = pch::TYPE_BLOCK_POINTER; |
| 86 | } |
| 87 | |
| 88 | void PCHTypeWriter::VisitLValueReferenceType(const LValueReferenceType *T) { |
| 89 | Writer.AddTypeRef(T->getPointeeType(), Record); |
| 90 | Code = pch::TYPE_LVALUE_REFERENCE; |
| 91 | } |
| 92 | |
| 93 | void PCHTypeWriter::VisitRValueReferenceType(const RValueReferenceType *T) { |
| 94 | Writer.AddTypeRef(T->getPointeeType(), Record); |
| 95 | Code = pch::TYPE_RVALUE_REFERENCE; |
| 96 | } |
| 97 | |
| 98 | void PCHTypeWriter::VisitMemberPointerType(const MemberPointerType *T) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 99 | Writer.AddTypeRef(T->getPointeeType(), Record); |
| 100 | Writer.AddTypeRef(QualType(T->getClass(), 0), Record); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 101 | Code = pch::TYPE_MEMBER_POINTER; |
| 102 | } |
| 103 | |
| 104 | void PCHTypeWriter::VisitArrayType(const ArrayType *T) { |
| 105 | Writer.AddTypeRef(T->getElementType(), Record); |
| 106 | Record.push_back(T->getSizeModifier()); // FIXME: stable values |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 107 | Record.push_back(T->getIndexTypeCVRQualifiers()); // FIXME: stable values |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 108 | } |
| 109 | |
| 110 | void PCHTypeWriter::VisitConstantArrayType(const ConstantArrayType *T) { |
| 111 | VisitArrayType(T); |
| 112 | Writer.AddAPInt(T->getSize(), Record); |
| 113 | Code = pch::TYPE_CONSTANT_ARRAY; |
| 114 | } |
| 115 | |
| 116 | void PCHTypeWriter::VisitIncompleteArrayType(const IncompleteArrayType *T) { |
| 117 | VisitArrayType(T); |
| 118 | Code = pch::TYPE_INCOMPLETE_ARRAY; |
| 119 | } |
| 120 | |
| 121 | void PCHTypeWriter::VisitVariableArrayType(const VariableArrayType *T) { |
| 122 | VisitArrayType(T); |
Douglas Gregor | 7e7eb3d | 2009-07-06 15:59:29 +0000 | [diff] [blame] | 123 | Writer.AddSourceLocation(T->getLBracketLoc(), Record); |
| 124 | Writer.AddSourceLocation(T->getRBracketLoc(), Record); |
Douglas Gregor | c9490c0 | 2009-04-16 22:23:12 +0000 | [diff] [blame] | 125 | Writer.AddStmt(T->getSizeExpr()); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 126 | Code = pch::TYPE_VARIABLE_ARRAY; |
| 127 | } |
| 128 | |
| 129 | void PCHTypeWriter::VisitVectorType(const VectorType *T) { |
| 130 | Writer.AddTypeRef(T->getElementType(), Record); |
| 131 | Record.push_back(T->getNumElements()); |
John Thompson | 82287d1 | 2010-02-05 00:12:22 +0000 | [diff] [blame] | 132 | Record.push_back(T->isAltiVec()); |
| 133 | Record.push_back(T->isPixel()); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 134 | Code = pch::TYPE_VECTOR; |
| 135 | } |
| 136 | |
| 137 | void PCHTypeWriter::VisitExtVectorType(const ExtVectorType *T) { |
| 138 | VisitVectorType(T); |
| 139 | Code = pch::TYPE_EXT_VECTOR; |
| 140 | } |
| 141 | |
| 142 | void PCHTypeWriter::VisitFunctionType(const FunctionType *T) { |
| 143 | Writer.AddTypeRef(T->getResultType(), Record); |
Rafael Espindola | 264ba48 | 2010-03-30 20:24:48 +0000 | [diff] [blame] | 144 | FunctionType::ExtInfo C = T->getExtInfo(); |
| 145 | Record.push_back(C.getNoReturn()); |
Rafael Espindola | 425ef72 | 2010-03-30 22:15:11 +0000 | [diff] [blame] | 146 | Record.push_back(C.getRegParm()); |
Douglas Gregor | ab8bbf4 | 2010-01-18 17:14:39 +0000 | [diff] [blame] | 147 | // FIXME: need to stabilize encoding of calling convention... |
Rafael Espindola | 264ba48 | 2010-03-30 20:24:48 +0000 | [diff] [blame] | 148 | Record.push_back(C.getCC()); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 149 | } |
| 150 | |
| 151 | void PCHTypeWriter::VisitFunctionNoProtoType(const FunctionNoProtoType *T) { |
| 152 | VisitFunctionType(T); |
| 153 | Code = pch::TYPE_FUNCTION_NO_PROTO; |
| 154 | } |
| 155 | |
| 156 | void PCHTypeWriter::VisitFunctionProtoType(const FunctionProtoType *T) { |
| 157 | VisitFunctionType(T); |
| 158 | Record.push_back(T->getNumArgs()); |
| 159 | for (unsigned I = 0, N = T->getNumArgs(); I != N; ++I) |
| 160 | Writer.AddTypeRef(T->getArgType(I), Record); |
| 161 | Record.push_back(T->isVariadic()); |
| 162 | Record.push_back(T->getTypeQuals()); |
Sebastian Redl | 465226e | 2009-05-27 22:11:52 +0000 | [diff] [blame] | 163 | Record.push_back(T->hasExceptionSpec()); |
| 164 | Record.push_back(T->hasAnyExceptionSpec()); |
| 165 | Record.push_back(T->getNumExceptions()); |
| 166 | for (unsigned I = 0, N = T->getNumExceptions(); I != N; ++I) |
| 167 | Writer.AddTypeRef(T->getExceptionType(I), Record); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 168 | Code = pch::TYPE_FUNCTION_PROTO; |
| 169 | } |
| 170 | |
John McCall | ed97649 | 2009-12-04 22:46:56 +0000 | [diff] [blame] | 171 | #if 0 |
| 172 | // For when we want it.... |
| 173 | void PCHTypeWriter::VisitUnresolvedUsingType(const UnresolvedUsingType *T) { |
| 174 | Writer.AddDeclRef(T->getDecl(), Record); |
| 175 | Code = pch::TYPE_UNRESOLVED_USING; |
| 176 | } |
| 177 | #endif |
| 178 | |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 179 | void PCHTypeWriter::VisitTypedefType(const TypedefType *T) { |
| 180 | Writer.AddDeclRef(T->getDecl(), Record); |
| 181 | Code = pch::TYPE_TYPEDEF; |
| 182 | } |
| 183 | |
| 184 | void PCHTypeWriter::VisitTypeOfExprType(const TypeOfExprType *T) { |
Douglas Gregor | c9490c0 | 2009-04-16 22:23:12 +0000 | [diff] [blame] | 185 | Writer.AddStmt(T->getUnderlyingExpr()); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 186 | Code = pch::TYPE_TYPEOF_EXPR; |
| 187 | } |
| 188 | |
| 189 | void PCHTypeWriter::VisitTypeOfType(const TypeOfType *T) { |
| 190 | Writer.AddTypeRef(T->getUnderlyingType(), Record); |
| 191 | Code = pch::TYPE_TYPEOF; |
| 192 | } |
| 193 | |
Anders Carlsson | 395b475 | 2009-06-24 19:06:50 +0000 | [diff] [blame] | 194 | void PCHTypeWriter::VisitDecltypeType(const DecltypeType *T) { |
| 195 | Writer.AddStmt(T->getUnderlyingExpr()); |
| 196 | Code = pch::TYPE_DECLTYPE; |
| 197 | } |
| 198 | |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 199 | void PCHTypeWriter::VisitTagType(const TagType *T) { |
| 200 | Writer.AddDeclRef(T->getDecl(), Record); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 201 | assert(!T->isBeingDefined() && |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 202 | "Cannot serialize in the middle of a type definition"); |
| 203 | } |
| 204 | |
| 205 | void PCHTypeWriter::VisitRecordType(const RecordType *T) { |
| 206 | VisitTagType(T); |
| 207 | Code = pch::TYPE_RECORD; |
| 208 | } |
| 209 | |
| 210 | void PCHTypeWriter::VisitEnumType(const EnumType *T) { |
| 211 | VisitTagType(T); |
| 212 | Code = pch::TYPE_ENUM; |
| 213 | } |
| 214 | |
John McCall | 7da2431 | 2009-09-05 00:15:47 +0000 | [diff] [blame] | 215 | void PCHTypeWriter::VisitElaboratedType(const ElaboratedType *T) { |
| 216 | Writer.AddTypeRef(T->getUnderlyingType(), Record); |
| 217 | Record.push_back(T->getTagKind()); |
| 218 | Code = pch::TYPE_ELABORATED; |
| 219 | } |
| 220 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 221 | void |
John McCall | 49a832b | 2009-10-18 09:09:24 +0000 | [diff] [blame] | 222 | PCHTypeWriter::VisitSubstTemplateTypeParmType( |
| 223 | const SubstTemplateTypeParmType *T) { |
| 224 | Writer.AddTypeRef(QualType(T->getReplacedParameter(), 0), Record); |
| 225 | Writer.AddTypeRef(T->getReplacementType(), Record); |
| 226 | Code = pch::TYPE_SUBST_TEMPLATE_TYPE_PARM; |
| 227 | } |
| 228 | |
| 229 | void |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 230 | PCHTypeWriter::VisitTemplateSpecializationType( |
| 231 | const TemplateSpecializationType *T) { |
Douglas Gregor | 6a2bfb2 | 2009-04-15 18:43:11 +0000 | [diff] [blame] | 232 | // FIXME: Serialize this type (C++ only) |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 233 | assert(false && "Cannot serialize template specialization types"); |
| 234 | } |
| 235 | |
| 236 | void PCHTypeWriter::VisitQualifiedNameType(const QualifiedNameType *T) { |
Douglas Gregor | 6a2bfb2 | 2009-04-15 18:43:11 +0000 | [diff] [blame] | 237 | // FIXME: Serialize this type (C++ only) |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 238 | assert(false && "Cannot serialize qualified name types"); |
| 239 | } |
| 240 | |
John McCall | 3cb0ebd | 2010-03-10 03:28:59 +0000 | [diff] [blame] | 241 | void PCHTypeWriter::VisitInjectedClassNameType(const InjectedClassNameType *T) { |
| 242 | Writer.AddDeclRef(T->getDecl(), Record); |
| 243 | Writer.AddTypeRef(T->getUnderlyingType(), Record); |
| 244 | Code = pch::TYPE_INJECTED_CLASS_NAME; |
| 245 | } |
| 246 | |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 247 | void PCHTypeWriter::VisitObjCInterfaceType(const ObjCInterfaceType *T) { |
| 248 | Writer.AddDeclRef(T->getDecl(), Record); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 249 | Record.push_back(T->getNumProtocols()); |
Steve Naroff | 446ee4e | 2009-05-27 16:21:00 +0000 | [diff] [blame] | 250 | for (ObjCInterfaceType::qual_iterator I = T->qual_begin(), |
| 251 | E = T->qual_end(); I != E; ++I) |
| 252 | Writer.AddDeclRef(*I, Record); |
Steve Naroff | c15cb2a | 2009-07-18 15:33:26 +0000 | [diff] [blame] | 253 | Code = pch::TYPE_OBJC_INTERFACE; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 254 | } |
| 255 | |
Steve Naroff | d1b3c2d | 2009-06-17 22:40:22 +0000 | [diff] [blame] | 256 | void |
| 257 | PCHTypeWriter::VisitObjCObjectPointerType(const ObjCObjectPointerType *T) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 258 | Writer.AddTypeRef(T->getPointeeType(), Record); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 259 | Record.push_back(T->getNumProtocols()); |
Steve Naroff | d1b3c2d | 2009-06-17 22:40:22 +0000 | [diff] [blame] | 260 | for (ObjCInterfaceType::qual_iterator I = T->qual_begin(), |
Steve Naroff | 446ee4e | 2009-05-27 16:21:00 +0000 | [diff] [blame] | 261 | E = T->qual_end(); I != E; ++I) |
| 262 | Writer.AddDeclRef(*I, Record); |
Steve Naroff | d1b3c2d | 2009-06-17 22:40:22 +0000 | [diff] [blame] | 263 | Code = pch::TYPE_OBJC_OBJECT_POINTER; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 264 | } |
| 265 | |
John McCall | a1ee0c5 | 2009-10-16 21:56:05 +0000 | [diff] [blame] | 266 | namespace { |
| 267 | |
| 268 | class TypeLocWriter : public TypeLocVisitor<TypeLocWriter> { |
| 269 | PCHWriter &Writer; |
| 270 | PCHWriter::RecordData &Record; |
| 271 | |
| 272 | public: |
| 273 | TypeLocWriter(PCHWriter &Writer, PCHWriter::RecordData &Record) |
| 274 | : Writer(Writer), Record(Record) { } |
| 275 | |
John McCall | 51bd803 | 2009-10-18 01:05:36 +0000 | [diff] [blame] | 276 | #define ABSTRACT_TYPELOC(CLASS, PARENT) |
John McCall | a1ee0c5 | 2009-10-16 21:56:05 +0000 | [diff] [blame] | 277 | #define TYPELOC(CLASS, PARENT) \ |
John McCall | 51bd803 | 2009-10-18 01:05:36 +0000 | [diff] [blame] | 278 | void Visit##CLASS##TypeLoc(CLASS##TypeLoc TyLoc); |
John McCall | a1ee0c5 | 2009-10-16 21:56:05 +0000 | [diff] [blame] | 279 | #include "clang/AST/TypeLocNodes.def" |
| 280 | |
John McCall | 51bd803 | 2009-10-18 01:05:36 +0000 | [diff] [blame] | 281 | void VisitArrayTypeLoc(ArrayTypeLoc TyLoc); |
| 282 | void VisitFunctionTypeLoc(FunctionTypeLoc TyLoc); |
John McCall | a1ee0c5 | 2009-10-16 21:56:05 +0000 | [diff] [blame] | 283 | }; |
| 284 | |
| 285 | } |
| 286 | |
John McCall | 51bd803 | 2009-10-18 01:05:36 +0000 | [diff] [blame] | 287 | void TypeLocWriter::VisitQualifiedTypeLoc(QualifiedTypeLoc TL) { |
| 288 | // nothing to do |
John McCall | a1ee0c5 | 2009-10-16 21:56:05 +0000 | [diff] [blame] | 289 | } |
John McCall | 51bd803 | 2009-10-18 01:05:36 +0000 | [diff] [blame] | 290 | void TypeLocWriter::VisitBuiltinTypeLoc(BuiltinTypeLoc TL) { |
Douglas Gregor | ddf889a | 2010-01-18 18:04:31 +0000 | [diff] [blame] | 291 | Writer.AddSourceLocation(TL.getBuiltinLoc(), Record); |
| 292 | if (TL.needsExtraLocalData()) { |
| 293 | Record.push_back(TL.getWrittenTypeSpec()); |
| 294 | Record.push_back(TL.getWrittenSignSpec()); |
| 295 | Record.push_back(TL.getWrittenWidthSpec()); |
| 296 | Record.push_back(TL.hasModeAttr()); |
| 297 | } |
John McCall | a1ee0c5 | 2009-10-16 21:56:05 +0000 | [diff] [blame] | 298 | } |
John McCall | 51bd803 | 2009-10-18 01:05:36 +0000 | [diff] [blame] | 299 | void TypeLocWriter::VisitComplexTypeLoc(ComplexTypeLoc TL) { |
| 300 | Writer.AddSourceLocation(TL.getNameLoc(), Record); |
John McCall | a1ee0c5 | 2009-10-16 21:56:05 +0000 | [diff] [blame] | 301 | } |
John McCall | 51bd803 | 2009-10-18 01:05:36 +0000 | [diff] [blame] | 302 | void TypeLocWriter::VisitPointerTypeLoc(PointerTypeLoc TL) { |
| 303 | Writer.AddSourceLocation(TL.getStarLoc(), Record); |
John McCall | a1ee0c5 | 2009-10-16 21:56:05 +0000 | [diff] [blame] | 304 | } |
John McCall | 51bd803 | 2009-10-18 01:05:36 +0000 | [diff] [blame] | 305 | void TypeLocWriter::VisitBlockPointerTypeLoc(BlockPointerTypeLoc TL) { |
| 306 | Writer.AddSourceLocation(TL.getCaretLoc(), Record); |
John McCall | a1ee0c5 | 2009-10-16 21:56:05 +0000 | [diff] [blame] | 307 | } |
John McCall | 51bd803 | 2009-10-18 01:05:36 +0000 | [diff] [blame] | 308 | void TypeLocWriter::VisitLValueReferenceTypeLoc(LValueReferenceTypeLoc TL) { |
| 309 | Writer.AddSourceLocation(TL.getAmpLoc(), Record); |
John McCall | a1ee0c5 | 2009-10-16 21:56:05 +0000 | [diff] [blame] | 310 | } |
John McCall | 51bd803 | 2009-10-18 01:05:36 +0000 | [diff] [blame] | 311 | void TypeLocWriter::VisitRValueReferenceTypeLoc(RValueReferenceTypeLoc TL) { |
| 312 | Writer.AddSourceLocation(TL.getAmpAmpLoc(), Record); |
John McCall | a1ee0c5 | 2009-10-16 21:56:05 +0000 | [diff] [blame] | 313 | } |
John McCall | 51bd803 | 2009-10-18 01:05:36 +0000 | [diff] [blame] | 314 | void TypeLocWriter::VisitMemberPointerTypeLoc(MemberPointerTypeLoc TL) { |
| 315 | Writer.AddSourceLocation(TL.getStarLoc(), Record); |
John McCall | a1ee0c5 | 2009-10-16 21:56:05 +0000 | [diff] [blame] | 316 | } |
John McCall | 51bd803 | 2009-10-18 01:05:36 +0000 | [diff] [blame] | 317 | void TypeLocWriter::VisitArrayTypeLoc(ArrayTypeLoc TL) { |
| 318 | Writer.AddSourceLocation(TL.getLBracketLoc(), Record); |
| 319 | Writer.AddSourceLocation(TL.getRBracketLoc(), Record); |
| 320 | Record.push_back(TL.getSizeExpr() ? 1 : 0); |
| 321 | if (TL.getSizeExpr()) |
| 322 | Writer.AddStmt(TL.getSizeExpr()); |
John McCall | a1ee0c5 | 2009-10-16 21:56:05 +0000 | [diff] [blame] | 323 | } |
John McCall | 51bd803 | 2009-10-18 01:05:36 +0000 | [diff] [blame] | 324 | void TypeLocWriter::VisitConstantArrayTypeLoc(ConstantArrayTypeLoc TL) { |
| 325 | VisitArrayTypeLoc(TL); |
| 326 | } |
| 327 | void TypeLocWriter::VisitIncompleteArrayTypeLoc(IncompleteArrayTypeLoc TL) { |
| 328 | VisitArrayTypeLoc(TL); |
| 329 | } |
| 330 | void TypeLocWriter::VisitVariableArrayTypeLoc(VariableArrayTypeLoc TL) { |
| 331 | VisitArrayTypeLoc(TL); |
| 332 | } |
| 333 | void TypeLocWriter::VisitDependentSizedArrayTypeLoc( |
| 334 | DependentSizedArrayTypeLoc TL) { |
| 335 | VisitArrayTypeLoc(TL); |
| 336 | } |
| 337 | void TypeLocWriter::VisitDependentSizedExtVectorTypeLoc( |
| 338 | DependentSizedExtVectorTypeLoc TL) { |
| 339 | Writer.AddSourceLocation(TL.getNameLoc(), Record); |
| 340 | } |
| 341 | void TypeLocWriter::VisitVectorTypeLoc(VectorTypeLoc TL) { |
| 342 | Writer.AddSourceLocation(TL.getNameLoc(), Record); |
| 343 | } |
| 344 | void TypeLocWriter::VisitExtVectorTypeLoc(ExtVectorTypeLoc TL) { |
| 345 | Writer.AddSourceLocation(TL.getNameLoc(), Record); |
| 346 | } |
| 347 | void TypeLocWriter::VisitFunctionTypeLoc(FunctionTypeLoc TL) { |
| 348 | Writer.AddSourceLocation(TL.getLParenLoc(), Record); |
| 349 | Writer.AddSourceLocation(TL.getRParenLoc(), Record); |
| 350 | for (unsigned i = 0, e = TL.getNumArgs(); i != e; ++i) |
| 351 | Writer.AddDeclRef(TL.getArg(i), Record); |
| 352 | } |
| 353 | void TypeLocWriter::VisitFunctionProtoTypeLoc(FunctionProtoTypeLoc TL) { |
| 354 | VisitFunctionTypeLoc(TL); |
| 355 | } |
| 356 | void TypeLocWriter::VisitFunctionNoProtoTypeLoc(FunctionNoProtoTypeLoc TL) { |
| 357 | VisitFunctionTypeLoc(TL); |
| 358 | } |
John McCall | ed97649 | 2009-12-04 22:46:56 +0000 | [diff] [blame] | 359 | void TypeLocWriter::VisitUnresolvedUsingTypeLoc(UnresolvedUsingTypeLoc TL) { |
| 360 | Writer.AddSourceLocation(TL.getNameLoc(), Record); |
| 361 | } |
John McCall | 51bd803 | 2009-10-18 01:05:36 +0000 | [diff] [blame] | 362 | void TypeLocWriter::VisitTypedefTypeLoc(TypedefTypeLoc TL) { |
| 363 | Writer.AddSourceLocation(TL.getNameLoc(), Record); |
| 364 | } |
| 365 | void TypeLocWriter::VisitTypeOfExprTypeLoc(TypeOfExprTypeLoc TL) { |
John McCall | cfb708c | 2010-01-13 20:03:27 +0000 | [diff] [blame] | 366 | Writer.AddSourceLocation(TL.getTypeofLoc(), Record); |
| 367 | Writer.AddSourceLocation(TL.getLParenLoc(), Record); |
| 368 | Writer.AddSourceLocation(TL.getRParenLoc(), Record); |
John McCall | 51bd803 | 2009-10-18 01:05:36 +0000 | [diff] [blame] | 369 | } |
| 370 | void TypeLocWriter::VisitTypeOfTypeLoc(TypeOfTypeLoc TL) { |
John McCall | cfb708c | 2010-01-13 20:03:27 +0000 | [diff] [blame] | 371 | Writer.AddSourceLocation(TL.getTypeofLoc(), Record); |
| 372 | Writer.AddSourceLocation(TL.getLParenLoc(), Record); |
| 373 | Writer.AddSourceLocation(TL.getRParenLoc(), Record); |
| 374 | Writer.AddTypeSourceInfo(TL.getUnderlyingTInfo(), Record); |
John McCall | 51bd803 | 2009-10-18 01:05:36 +0000 | [diff] [blame] | 375 | } |
| 376 | void TypeLocWriter::VisitDecltypeTypeLoc(DecltypeTypeLoc TL) { |
| 377 | Writer.AddSourceLocation(TL.getNameLoc(), Record); |
| 378 | } |
| 379 | void TypeLocWriter::VisitRecordTypeLoc(RecordTypeLoc TL) { |
| 380 | Writer.AddSourceLocation(TL.getNameLoc(), Record); |
| 381 | } |
| 382 | void TypeLocWriter::VisitEnumTypeLoc(EnumTypeLoc TL) { |
| 383 | Writer.AddSourceLocation(TL.getNameLoc(), Record); |
| 384 | } |
| 385 | void TypeLocWriter::VisitElaboratedTypeLoc(ElaboratedTypeLoc TL) { |
| 386 | Writer.AddSourceLocation(TL.getNameLoc(), Record); |
| 387 | } |
| 388 | void TypeLocWriter::VisitTemplateTypeParmTypeLoc(TemplateTypeParmTypeLoc TL) { |
| 389 | Writer.AddSourceLocation(TL.getNameLoc(), Record); |
| 390 | } |
John McCall | 49a832b | 2009-10-18 09:09:24 +0000 | [diff] [blame] | 391 | void TypeLocWriter::VisitSubstTemplateTypeParmTypeLoc( |
| 392 | SubstTemplateTypeParmTypeLoc TL) { |
| 393 | Writer.AddSourceLocation(TL.getNameLoc(), Record); |
| 394 | } |
John McCall | 51bd803 | 2009-10-18 01:05:36 +0000 | [diff] [blame] | 395 | void TypeLocWriter::VisitTemplateSpecializationTypeLoc( |
| 396 | TemplateSpecializationTypeLoc TL) { |
John McCall | 833ca99 | 2009-10-29 08:12:44 +0000 | [diff] [blame] | 397 | Writer.AddSourceLocation(TL.getTemplateNameLoc(), Record); |
| 398 | Writer.AddSourceLocation(TL.getLAngleLoc(), Record); |
| 399 | Writer.AddSourceLocation(TL.getRAngleLoc(), Record); |
| 400 | for (unsigned i = 0, e = TL.getNumArgs(); i != e; ++i) |
| 401 | Writer.AddTemplateArgumentLoc(TL.getArgLoc(i), Record); |
John McCall | 51bd803 | 2009-10-18 01:05:36 +0000 | [diff] [blame] | 402 | } |
| 403 | void TypeLocWriter::VisitQualifiedNameTypeLoc(QualifiedNameTypeLoc TL) { |
| 404 | Writer.AddSourceLocation(TL.getNameLoc(), Record); |
| 405 | } |
John McCall | 3cb0ebd | 2010-03-10 03:28:59 +0000 | [diff] [blame] | 406 | void TypeLocWriter::VisitInjectedClassNameTypeLoc(InjectedClassNameTypeLoc TL) { |
| 407 | Writer.AddSourceLocation(TL.getNameLoc(), Record); |
| 408 | } |
Douglas Gregor | 4714c12 | 2010-03-31 17:34:00 +0000 | [diff] [blame] | 409 | void TypeLocWriter::VisitDependentNameTypeLoc(DependentNameTypeLoc TL) { |
John McCall | 51bd803 | 2009-10-18 01:05:36 +0000 | [diff] [blame] | 410 | Writer.AddSourceLocation(TL.getNameLoc(), Record); |
| 411 | } |
| 412 | void TypeLocWriter::VisitObjCInterfaceTypeLoc(ObjCInterfaceTypeLoc TL) { |
| 413 | Writer.AddSourceLocation(TL.getNameLoc(), Record); |
John McCall | 51bd803 | 2009-10-18 01:05:36 +0000 | [diff] [blame] | 414 | Writer.AddSourceLocation(TL.getLAngleLoc(), Record); |
| 415 | Writer.AddSourceLocation(TL.getRAngleLoc(), Record); |
| 416 | for (unsigned i = 0, e = TL.getNumProtocols(); i != e; ++i) |
| 417 | Writer.AddSourceLocation(TL.getProtocolLoc(i), Record); |
John McCall | a1ee0c5 | 2009-10-16 21:56:05 +0000 | [diff] [blame] | 418 | } |
John McCall | 54e14c4 | 2009-10-22 22:37:11 +0000 | [diff] [blame] | 419 | void TypeLocWriter::VisitObjCObjectPointerTypeLoc(ObjCObjectPointerTypeLoc TL) { |
| 420 | Writer.AddSourceLocation(TL.getStarLoc(), Record); |
| 421 | Writer.AddSourceLocation(TL.getLAngleLoc(), Record); |
| 422 | Writer.AddSourceLocation(TL.getRAngleLoc(), Record); |
| 423 | Record.push_back(TL.hasBaseTypeAsWritten()); |
| 424 | Record.push_back(TL.hasProtocolsAsWritten()); |
| 425 | if (TL.hasProtocolsAsWritten()) |
| 426 | for (unsigned i = 0, e = TL.getNumProtocols(); i != e; ++i) |
| 427 | Writer.AddSourceLocation(TL.getProtocolLoc(i), Record); |
| 428 | } |
John McCall | a1ee0c5 | 2009-10-16 21:56:05 +0000 | [diff] [blame] | 429 | |
Chris Lattner | 4dcf151a | 2009-04-22 05:57:30 +0000 | [diff] [blame] | 430 | //===----------------------------------------------------------------------===// |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 431 | // PCHWriter Implementation |
| 432 | //===----------------------------------------------------------------------===// |
| 433 | |
Chris Lattner | b145b1e | 2009-04-26 22:26:21 +0000 | [diff] [blame] | 434 | static void EmitBlockID(unsigned ID, const char *Name, |
| 435 | llvm::BitstreamWriter &Stream, |
| 436 | PCHWriter::RecordData &Record) { |
| 437 | Record.clear(); |
| 438 | Record.push_back(ID); |
| 439 | Stream.EmitRecord(llvm::bitc::BLOCKINFO_CODE_SETBID, Record); |
| 440 | |
| 441 | // Emit the block name if present. |
| 442 | if (Name == 0 || Name[0] == 0) return; |
| 443 | Record.clear(); |
| 444 | while (*Name) |
| 445 | Record.push_back(*Name++); |
| 446 | Stream.EmitRecord(llvm::bitc::BLOCKINFO_CODE_BLOCKNAME, Record); |
| 447 | } |
| 448 | |
| 449 | static void EmitRecordID(unsigned ID, const char *Name, |
| 450 | llvm::BitstreamWriter &Stream, |
| 451 | PCHWriter::RecordData &Record) { |
| 452 | Record.clear(); |
| 453 | Record.push_back(ID); |
| 454 | while (*Name) |
| 455 | Record.push_back(*Name++); |
| 456 | Stream.EmitRecord(llvm::bitc::BLOCKINFO_CODE_SETRECORDNAME, Record); |
Chris Lattner | 0558df2 | 2009-04-27 00:49:53 +0000 | [diff] [blame] | 457 | } |
| 458 | |
| 459 | static void AddStmtsExprs(llvm::BitstreamWriter &Stream, |
| 460 | PCHWriter::RecordData &Record) { |
| 461 | #define RECORD(X) EmitRecordID(pch::X, #X, Stream, Record) |
| 462 | RECORD(STMT_STOP); |
| 463 | RECORD(STMT_NULL_PTR); |
| 464 | RECORD(STMT_NULL); |
| 465 | RECORD(STMT_COMPOUND); |
| 466 | RECORD(STMT_CASE); |
| 467 | RECORD(STMT_DEFAULT); |
| 468 | RECORD(STMT_LABEL); |
| 469 | RECORD(STMT_IF); |
| 470 | RECORD(STMT_SWITCH); |
| 471 | RECORD(STMT_WHILE); |
| 472 | RECORD(STMT_DO); |
| 473 | RECORD(STMT_FOR); |
| 474 | RECORD(STMT_GOTO); |
| 475 | RECORD(STMT_INDIRECT_GOTO); |
| 476 | RECORD(STMT_CONTINUE); |
| 477 | RECORD(STMT_BREAK); |
| 478 | RECORD(STMT_RETURN); |
| 479 | RECORD(STMT_DECL); |
| 480 | RECORD(STMT_ASM); |
| 481 | RECORD(EXPR_PREDEFINED); |
| 482 | RECORD(EXPR_DECL_REF); |
| 483 | RECORD(EXPR_INTEGER_LITERAL); |
| 484 | RECORD(EXPR_FLOATING_LITERAL); |
| 485 | RECORD(EXPR_IMAGINARY_LITERAL); |
| 486 | RECORD(EXPR_STRING_LITERAL); |
| 487 | RECORD(EXPR_CHARACTER_LITERAL); |
| 488 | RECORD(EXPR_PAREN); |
| 489 | RECORD(EXPR_UNARY_OPERATOR); |
| 490 | RECORD(EXPR_SIZEOF_ALIGN_OF); |
| 491 | RECORD(EXPR_ARRAY_SUBSCRIPT); |
| 492 | RECORD(EXPR_CALL); |
| 493 | RECORD(EXPR_MEMBER); |
| 494 | RECORD(EXPR_BINARY_OPERATOR); |
| 495 | RECORD(EXPR_COMPOUND_ASSIGN_OPERATOR); |
| 496 | RECORD(EXPR_CONDITIONAL_OPERATOR); |
| 497 | RECORD(EXPR_IMPLICIT_CAST); |
| 498 | RECORD(EXPR_CSTYLE_CAST); |
| 499 | RECORD(EXPR_COMPOUND_LITERAL); |
| 500 | RECORD(EXPR_EXT_VECTOR_ELEMENT); |
| 501 | RECORD(EXPR_INIT_LIST); |
| 502 | RECORD(EXPR_DESIGNATED_INIT); |
| 503 | RECORD(EXPR_IMPLICIT_VALUE_INIT); |
| 504 | RECORD(EXPR_VA_ARG); |
| 505 | RECORD(EXPR_ADDR_LABEL); |
| 506 | RECORD(EXPR_STMT); |
| 507 | RECORD(EXPR_TYPES_COMPATIBLE); |
| 508 | RECORD(EXPR_CHOOSE); |
| 509 | RECORD(EXPR_GNU_NULL); |
| 510 | RECORD(EXPR_SHUFFLE_VECTOR); |
| 511 | RECORD(EXPR_BLOCK); |
| 512 | RECORD(EXPR_BLOCK_DECL_REF); |
| 513 | RECORD(EXPR_OBJC_STRING_LITERAL); |
| 514 | RECORD(EXPR_OBJC_ENCODE); |
| 515 | RECORD(EXPR_OBJC_SELECTOR_EXPR); |
| 516 | RECORD(EXPR_OBJC_PROTOCOL_EXPR); |
| 517 | RECORD(EXPR_OBJC_IVAR_REF_EXPR); |
| 518 | RECORD(EXPR_OBJC_PROPERTY_REF_EXPR); |
| 519 | RECORD(EXPR_OBJC_KVC_REF_EXPR); |
| 520 | RECORD(EXPR_OBJC_MESSAGE_EXPR); |
| 521 | RECORD(EXPR_OBJC_SUPER_EXPR); |
| 522 | RECORD(STMT_OBJC_FOR_COLLECTION); |
| 523 | RECORD(STMT_OBJC_CATCH); |
| 524 | RECORD(STMT_OBJC_FINALLY); |
| 525 | RECORD(STMT_OBJC_AT_TRY); |
| 526 | RECORD(STMT_OBJC_AT_SYNCHRONIZED); |
| 527 | RECORD(STMT_OBJC_AT_THROW); |
Sam Weinig | eb7f961 | 2010-02-07 06:32:43 +0000 | [diff] [blame] | 528 | RECORD(EXPR_CXX_OPERATOR_CALL); |
| 529 | RECORD(EXPR_CXX_CONSTRUCT); |
| 530 | RECORD(EXPR_CXX_STATIC_CAST); |
| 531 | RECORD(EXPR_CXX_DYNAMIC_CAST); |
| 532 | RECORD(EXPR_CXX_REINTERPRET_CAST); |
| 533 | RECORD(EXPR_CXX_CONST_CAST); |
| 534 | RECORD(EXPR_CXX_FUNCTIONAL_CAST); |
| 535 | RECORD(EXPR_CXX_BOOL_LITERAL); |
| 536 | RECORD(EXPR_CXX_NULL_PTR_LITERAL); |
Chris Lattner | 0558df2 | 2009-04-27 00:49:53 +0000 | [diff] [blame] | 537 | #undef RECORD |
Chris Lattner | b145b1e | 2009-04-26 22:26:21 +0000 | [diff] [blame] | 538 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 539 | |
Chris Lattner | b145b1e | 2009-04-26 22:26:21 +0000 | [diff] [blame] | 540 | void PCHWriter::WriteBlockInfoBlock() { |
| 541 | RecordData Record; |
| 542 | Stream.EnterSubblock(llvm::bitc::BLOCKINFO_BLOCK_ID, 3); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 543 | |
Chris Lattner | 2f4efd1 | 2009-04-27 00:40:25 +0000 | [diff] [blame] | 544 | #define BLOCK(X) EmitBlockID(pch::X ## _ID, #X, Stream, Record) |
Chris Lattner | b145b1e | 2009-04-26 22:26:21 +0000 | [diff] [blame] | 545 | #define RECORD(X) EmitRecordID(pch::X, #X, Stream, Record) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 546 | |
Chris Lattner | b145b1e | 2009-04-26 22:26:21 +0000 | [diff] [blame] | 547 | // PCH Top-Level Block. |
Chris Lattner | 2f4efd1 | 2009-04-27 00:40:25 +0000 | [diff] [blame] | 548 | BLOCK(PCH_BLOCK); |
Zhongxing Xu | 51e774d | 2009-06-03 09:23:28 +0000 | [diff] [blame] | 549 | RECORD(ORIGINAL_FILE_NAME); |
Chris Lattner | b145b1e | 2009-04-26 22:26:21 +0000 | [diff] [blame] | 550 | RECORD(TYPE_OFFSET); |
| 551 | RECORD(DECL_OFFSET); |
| 552 | RECORD(LANGUAGE_OPTIONS); |
Douglas Gregor | ab41e63 | 2009-04-27 22:23:34 +0000 | [diff] [blame] | 553 | RECORD(METADATA); |
Chris Lattner | b145b1e | 2009-04-26 22:26:21 +0000 | [diff] [blame] | 554 | RECORD(IDENTIFIER_OFFSET); |
| 555 | RECORD(IDENTIFIER_TABLE); |
| 556 | RECORD(EXTERNAL_DEFINITIONS); |
| 557 | RECORD(SPECIAL_TYPES); |
| 558 | RECORD(STATISTICS); |
| 559 | RECORD(TENTATIVE_DEFINITIONS); |
Tanya Lattner | e6bbc01 | 2010-02-12 00:07:30 +0000 | [diff] [blame] | 560 | RECORD(UNUSED_STATIC_FUNCS); |
Chris Lattner | b145b1e | 2009-04-26 22:26:21 +0000 | [diff] [blame] | 561 | RECORD(LOCALLY_SCOPED_EXTERNAL_DECLS); |
| 562 | RECORD(SELECTOR_OFFSETS); |
| 563 | RECORD(METHOD_POOL); |
| 564 | RECORD(PP_COUNTER_VALUE); |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 565 | RECORD(SOURCE_LOCATION_OFFSETS); |
| 566 | RECORD(SOURCE_LOCATION_PRELOADS); |
Douglas Gregor | 4fed3f4 | 2009-04-27 18:38:38 +0000 | [diff] [blame] | 567 | RECORD(STAT_CACHE); |
Douglas Gregor | b81c170 | 2009-04-27 20:06:05 +0000 | [diff] [blame] | 568 | RECORD(EXT_VECTOR_DECLS); |
Ted Kremenek | 5b4ec63 | 2010-01-22 20:59:36 +0000 | [diff] [blame] | 569 | RECORD(VERSION_CONTROL_BRANCH_REVISION); |
Douglas Gregor | 6a5a23f | 2010-03-19 21:51:54 +0000 | [diff] [blame] | 570 | RECORD(UNUSED_STATIC_FUNCS); |
| 571 | RECORD(MACRO_DEFINITION_OFFSETS); |
| 572 | |
Chris Lattner | b145b1e | 2009-04-26 22:26:21 +0000 | [diff] [blame] | 573 | // SourceManager Block. |
Chris Lattner | 2f4efd1 | 2009-04-27 00:40:25 +0000 | [diff] [blame] | 574 | BLOCK(SOURCE_MANAGER_BLOCK); |
Chris Lattner | b145b1e | 2009-04-26 22:26:21 +0000 | [diff] [blame] | 575 | RECORD(SM_SLOC_FILE_ENTRY); |
| 576 | RECORD(SM_SLOC_BUFFER_ENTRY); |
| 577 | RECORD(SM_SLOC_BUFFER_BLOB); |
| 578 | RECORD(SM_SLOC_INSTANTIATION_ENTRY); |
| 579 | RECORD(SM_LINE_TABLE); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 580 | |
Chris Lattner | b145b1e | 2009-04-26 22:26:21 +0000 | [diff] [blame] | 581 | // Preprocessor Block. |
Chris Lattner | 2f4efd1 | 2009-04-27 00:40:25 +0000 | [diff] [blame] | 582 | BLOCK(PREPROCESSOR_BLOCK); |
Chris Lattner | b145b1e | 2009-04-26 22:26:21 +0000 | [diff] [blame] | 583 | RECORD(PP_MACRO_OBJECT_LIKE); |
| 584 | RECORD(PP_MACRO_FUNCTION_LIKE); |
| 585 | RECORD(PP_TOKEN); |
Douglas Gregor | 6a5a23f | 2010-03-19 21:51:54 +0000 | [diff] [blame] | 586 | RECORD(PP_MACRO_INSTANTIATION); |
| 587 | RECORD(PP_MACRO_DEFINITION); |
| 588 | |
Douglas Gregor | 61d60ee | 2009-10-17 00:13:19 +0000 | [diff] [blame] | 589 | // Decls and Types block. |
| 590 | BLOCK(DECLTYPES_BLOCK); |
Chris Lattner | b145b1e | 2009-04-26 22:26:21 +0000 | [diff] [blame] | 591 | RECORD(TYPE_EXT_QUAL); |
Chris Lattner | b145b1e | 2009-04-26 22:26:21 +0000 | [diff] [blame] | 592 | RECORD(TYPE_COMPLEX); |
| 593 | RECORD(TYPE_POINTER); |
| 594 | RECORD(TYPE_BLOCK_POINTER); |
| 595 | RECORD(TYPE_LVALUE_REFERENCE); |
| 596 | RECORD(TYPE_RVALUE_REFERENCE); |
| 597 | RECORD(TYPE_MEMBER_POINTER); |
| 598 | RECORD(TYPE_CONSTANT_ARRAY); |
| 599 | RECORD(TYPE_INCOMPLETE_ARRAY); |
| 600 | RECORD(TYPE_VARIABLE_ARRAY); |
| 601 | RECORD(TYPE_VECTOR); |
| 602 | RECORD(TYPE_EXT_VECTOR); |
| 603 | RECORD(TYPE_FUNCTION_PROTO); |
| 604 | RECORD(TYPE_FUNCTION_NO_PROTO); |
| 605 | RECORD(TYPE_TYPEDEF); |
| 606 | RECORD(TYPE_TYPEOF_EXPR); |
| 607 | RECORD(TYPE_TYPEOF); |
| 608 | RECORD(TYPE_RECORD); |
| 609 | RECORD(TYPE_ENUM); |
| 610 | RECORD(TYPE_OBJC_INTERFACE); |
Steve Naroff | d1b3c2d | 2009-06-17 22:40:22 +0000 | [diff] [blame] | 611 | RECORD(TYPE_OBJC_OBJECT_POINTER); |
Chris Lattner | 0ff8cda | 2009-04-26 22:32:16 +0000 | [diff] [blame] | 612 | RECORD(DECL_ATTR); |
| 613 | RECORD(DECL_TRANSLATION_UNIT); |
| 614 | RECORD(DECL_TYPEDEF); |
| 615 | RECORD(DECL_ENUM); |
| 616 | RECORD(DECL_RECORD); |
| 617 | RECORD(DECL_ENUM_CONSTANT); |
| 618 | RECORD(DECL_FUNCTION); |
| 619 | RECORD(DECL_OBJC_METHOD); |
| 620 | RECORD(DECL_OBJC_INTERFACE); |
| 621 | RECORD(DECL_OBJC_PROTOCOL); |
| 622 | RECORD(DECL_OBJC_IVAR); |
| 623 | RECORD(DECL_OBJC_AT_DEFS_FIELD); |
| 624 | RECORD(DECL_OBJC_CLASS); |
| 625 | RECORD(DECL_OBJC_FORWARD_PROTOCOL); |
| 626 | RECORD(DECL_OBJC_CATEGORY); |
| 627 | RECORD(DECL_OBJC_CATEGORY_IMPL); |
| 628 | RECORD(DECL_OBJC_IMPLEMENTATION); |
| 629 | RECORD(DECL_OBJC_COMPATIBLE_ALIAS); |
| 630 | RECORD(DECL_OBJC_PROPERTY); |
| 631 | RECORD(DECL_OBJC_PROPERTY_IMPL); |
Chris Lattner | b145b1e | 2009-04-26 22:26:21 +0000 | [diff] [blame] | 632 | RECORD(DECL_FIELD); |
| 633 | RECORD(DECL_VAR); |
Chris Lattner | 0ff8cda | 2009-04-26 22:32:16 +0000 | [diff] [blame] | 634 | RECORD(DECL_IMPLICIT_PARAM); |
Chris Lattner | b145b1e | 2009-04-26 22:26:21 +0000 | [diff] [blame] | 635 | RECORD(DECL_PARM_VAR); |
Chris Lattner | 0ff8cda | 2009-04-26 22:32:16 +0000 | [diff] [blame] | 636 | RECORD(DECL_FILE_SCOPE_ASM); |
| 637 | RECORD(DECL_BLOCK); |
| 638 | RECORD(DECL_CONTEXT_LEXICAL); |
| 639 | RECORD(DECL_CONTEXT_VISIBLE); |
Douglas Gregor | 61d60ee | 2009-10-17 00:13:19 +0000 | [diff] [blame] | 640 | // Statements and Exprs can occur in the Decls and Types block. |
Chris Lattner | 0558df2 | 2009-04-27 00:49:53 +0000 | [diff] [blame] | 641 | AddStmtsExprs(Stream, Record); |
Chris Lattner | b145b1e | 2009-04-26 22:26:21 +0000 | [diff] [blame] | 642 | #undef RECORD |
| 643 | #undef BLOCK |
| 644 | Stream.ExitBlock(); |
| 645 | } |
| 646 | |
Douglas Gregor | e650c8c | 2009-07-07 00:12:59 +0000 | [diff] [blame] | 647 | /// \brief Adjusts the given filename to only write out the portion of the |
| 648 | /// filename that is not part of the system root directory. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 649 | /// |
Douglas Gregor | e650c8c | 2009-07-07 00:12:59 +0000 | [diff] [blame] | 650 | /// \param Filename the file name to adjust. |
| 651 | /// |
| 652 | /// \param isysroot When non-NULL, the PCH file is a relocatable PCH file and |
| 653 | /// the returned filename will be adjusted by this system root. |
| 654 | /// |
| 655 | /// \returns either the original filename (if it needs no adjustment) or the |
| 656 | /// adjusted filename (which points into the @p Filename parameter). |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 657 | static const char * |
Douglas Gregor | e650c8c | 2009-07-07 00:12:59 +0000 | [diff] [blame] | 658 | adjustFilenameForRelocatablePCH(const char *Filename, const char *isysroot) { |
| 659 | assert(Filename && "No file name to adjust?"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 660 | |
Douglas Gregor | e650c8c | 2009-07-07 00:12:59 +0000 | [diff] [blame] | 661 | if (!isysroot) |
| 662 | return Filename; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 663 | |
Douglas Gregor | e650c8c | 2009-07-07 00:12:59 +0000 | [diff] [blame] | 664 | // Verify that the filename and the system root have the same prefix. |
| 665 | unsigned Pos = 0; |
| 666 | for (; Filename[Pos] && isysroot[Pos]; ++Pos) |
| 667 | if (Filename[Pos] != isysroot[Pos]) |
| 668 | return Filename; // Prefixes don't match. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 669 | |
Douglas Gregor | e650c8c | 2009-07-07 00:12:59 +0000 | [diff] [blame] | 670 | // We hit the end of the filename before we hit the end of the system root. |
| 671 | if (!Filename[Pos]) |
| 672 | return Filename; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 673 | |
Douglas Gregor | e650c8c | 2009-07-07 00:12:59 +0000 | [diff] [blame] | 674 | // If the file name has a '/' at the current position, skip over the '/'. |
| 675 | // We distinguish sysroot-based includes from absolute includes by the |
| 676 | // absence of '/' at the beginning of sysroot-based includes. |
| 677 | if (Filename[Pos] == '/') |
| 678 | ++Pos; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 679 | |
Douglas Gregor | e650c8c | 2009-07-07 00:12:59 +0000 | [diff] [blame] | 680 | return Filename + Pos; |
| 681 | } |
Chris Lattner | b145b1e | 2009-04-26 22:26:21 +0000 | [diff] [blame] | 682 | |
Douglas Gregor | ab41e63 | 2009-04-27 22:23:34 +0000 | [diff] [blame] | 683 | /// \brief Write the PCH metadata (e.g., i686-apple-darwin9). |
Douglas Gregor | e650c8c | 2009-07-07 00:12:59 +0000 | [diff] [blame] | 684 | void PCHWriter::WriteMetadata(ASTContext &Context, const char *isysroot) { |
Douglas Gregor | 2bec041 | 2009-04-10 21:16:55 +0000 | [diff] [blame] | 685 | using namespace llvm; |
Douglas Gregor | b64c193 | 2009-05-12 01:31:05 +0000 | [diff] [blame] | 686 | |
Douglas Gregor | e650c8c | 2009-07-07 00:12:59 +0000 | [diff] [blame] | 687 | // Metadata |
| 688 | const TargetInfo &Target = Context.Target; |
| 689 | BitCodeAbbrev *MetaAbbrev = new BitCodeAbbrev(); |
| 690 | MetaAbbrev->Add(BitCodeAbbrevOp(pch::METADATA)); |
| 691 | MetaAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 16)); // PCH major |
| 692 | MetaAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 16)); // PCH minor |
| 693 | MetaAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 16)); // Clang major |
| 694 | MetaAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 16)); // Clang minor |
| 695 | MetaAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // Relocatable |
| 696 | MetaAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // Target triple |
| 697 | unsigned MetaAbbrevCode = Stream.EmitAbbrev(MetaAbbrev); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 698 | |
Douglas Gregor | e650c8c | 2009-07-07 00:12:59 +0000 | [diff] [blame] | 699 | RecordData Record; |
| 700 | Record.push_back(pch::METADATA); |
| 701 | Record.push_back(pch::VERSION_MAJOR); |
| 702 | Record.push_back(pch::VERSION_MINOR); |
| 703 | Record.push_back(CLANG_VERSION_MAJOR); |
| 704 | Record.push_back(CLANG_VERSION_MINOR); |
| 705 | Record.push_back(isysroot != 0); |
Daniel Dunbar | 1752ee4 | 2009-08-24 09:10:05 +0000 | [diff] [blame] | 706 | const std::string &TripleStr = Target.getTriple().getTriple(); |
Daniel Dunbar | ec312a1 | 2009-08-24 09:31:37 +0000 | [diff] [blame] | 707 | Stream.EmitRecordWithBlob(MetaAbbrevCode, Record, TripleStr); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 708 | |
Douglas Gregor | b64c193 | 2009-05-12 01:31:05 +0000 | [diff] [blame] | 709 | // Original file name |
| 710 | SourceManager &SM = Context.getSourceManager(); |
| 711 | if (const FileEntry *MainFile = SM.getFileEntryForID(SM.getMainFileID())) { |
| 712 | BitCodeAbbrev *FileAbbrev = new BitCodeAbbrev(); |
| 713 | FileAbbrev->Add(BitCodeAbbrevOp(pch::ORIGINAL_FILE_NAME)); |
| 714 | FileAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // File name |
| 715 | unsigned FileAbbrevCode = Stream.EmitAbbrev(FileAbbrev); |
| 716 | |
| 717 | llvm::sys::Path MainFilePath(MainFile->getName()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 718 | |
Kovarththanan Rajaratnam | 11a18f1 | 2010-03-14 07:06:50 +0000 | [diff] [blame] | 719 | MainFilePath.makeAbsolute(); |
Douglas Gregor | b64c193 | 2009-05-12 01:31:05 +0000 | [diff] [blame] | 720 | |
Kovarththanan Rajaratnam | aba54a9 | 2010-03-14 07:15:57 +0000 | [diff] [blame] | 721 | const char *MainFileNameStr = MainFilePath.c_str(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 722 | MainFileNameStr = adjustFilenameForRelocatablePCH(MainFileNameStr, |
Douglas Gregor | e650c8c | 2009-07-07 00:12:59 +0000 | [diff] [blame] | 723 | isysroot); |
Douglas Gregor | b64c193 | 2009-05-12 01:31:05 +0000 | [diff] [blame] | 724 | RecordData Record; |
| 725 | Record.push_back(pch::ORIGINAL_FILE_NAME); |
Daniel Dunbar | ec312a1 | 2009-08-24 09:31:37 +0000 | [diff] [blame] | 726 | Stream.EmitRecordWithBlob(FileAbbrevCode, Record, MainFileNameStr); |
Douglas Gregor | b64c193 | 2009-05-12 01:31:05 +0000 | [diff] [blame] | 727 | } |
Kovarththanan Rajaratnam | 11a18f1 | 2010-03-14 07:06:50 +0000 | [diff] [blame] | 728 | |
Ted Kremenek | f7a96a3 | 2010-01-22 22:12:47 +0000 | [diff] [blame] | 729 | // Repository branch/version information. |
| 730 | BitCodeAbbrev *RepoAbbrev = new BitCodeAbbrev(); |
| 731 | RepoAbbrev->Add(BitCodeAbbrevOp(pch::VERSION_CONTROL_BRANCH_REVISION)); |
| 732 | RepoAbbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // SVN branch/tag |
| 733 | unsigned RepoAbbrevCode = Stream.EmitAbbrev(RepoAbbrev); |
Douglas Gregor | 445e23e | 2009-10-05 21:07:28 +0000 | [diff] [blame] | 734 | Record.clear(); |
Ted Kremenek | 5b4ec63 | 2010-01-22 20:59:36 +0000 | [diff] [blame] | 735 | Record.push_back(pch::VERSION_CONTROL_BRANCH_REVISION); |
Ted Kremenek | f7a96a3 | 2010-01-22 22:12:47 +0000 | [diff] [blame] | 736 | Stream.EmitRecordWithBlob(RepoAbbrevCode, Record, |
| 737 | getClangFullRepositoryVersion()); |
Douglas Gregor | 2bec041 | 2009-04-10 21:16:55 +0000 | [diff] [blame] | 738 | } |
| 739 | |
| 740 | /// \brief Write the LangOptions structure. |
Douglas Gregor | 0a0428e | 2009-04-10 20:39:37 +0000 | [diff] [blame] | 741 | void PCHWriter::WriteLanguageOptions(const LangOptions &LangOpts) { |
| 742 | RecordData Record; |
| 743 | Record.push_back(LangOpts.Trigraphs); |
| 744 | Record.push_back(LangOpts.BCPLComment); // BCPL-style '//' comments. |
| 745 | Record.push_back(LangOpts.DollarIdents); // '$' allowed in identifiers. |
| 746 | Record.push_back(LangOpts.AsmPreprocessor); // Preprocessor in asm mode. |
| 747 | Record.push_back(LangOpts.GNUMode); // True in gnu99 mode false in c99 mode (etc) |
Chandler Carruth | eb5d7b7 | 2010-04-17 20:17:31 +0000 | [diff] [blame] | 748 | Record.push_back(LangOpts.GNUKeywords); // Allow GNU-extension keywords |
Douglas Gregor | 0a0428e | 2009-04-10 20:39:37 +0000 | [diff] [blame] | 749 | Record.push_back(LangOpts.ImplicitInt); // C89 implicit 'int'. |
| 750 | Record.push_back(LangOpts.Digraphs); // C94, C99 and C++ |
| 751 | Record.push_back(LangOpts.HexFloats); // C99 Hexadecimal float constants. |
| 752 | Record.push_back(LangOpts.C99); // C99 Support |
| 753 | Record.push_back(LangOpts.Microsoft); // Microsoft extensions. |
| 754 | Record.push_back(LangOpts.CPlusPlus); // C++ Support |
| 755 | Record.push_back(LangOpts.CPlusPlus0x); // C++0x Support |
Douglas Gregor | 0a0428e | 2009-04-10 20:39:37 +0000 | [diff] [blame] | 756 | Record.push_back(LangOpts.CXXOperatorNames); // Treat C++ operator names as keywords. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 757 | |
Douglas Gregor | 0a0428e | 2009-04-10 20:39:37 +0000 | [diff] [blame] | 758 | Record.push_back(LangOpts.ObjC1); // Objective-C 1 support enabled. |
| 759 | Record.push_back(LangOpts.ObjC2); // Objective-C 2 support enabled. |
Kovarththanan Rajaratnam | 11a18f1 | 2010-03-14 07:06:50 +0000 | [diff] [blame] | 760 | Record.push_back(LangOpts.ObjCNonFragileABI); // Objective-C |
Fariborz Jahanian | 412e798 | 2010-02-09 19:31:38 +0000 | [diff] [blame] | 761 | // modern abi enabled. |
Kovarththanan Rajaratnam | 11a18f1 | 2010-03-14 07:06:50 +0000 | [diff] [blame] | 762 | Record.push_back(LangOpts.ObjCNonFragileABI2); // Objective-C enhanced |
Fariborz Jahanian | 412e798 | 2010-02-09 19:31:38 +0000 | [diff] [blame] | 763 | // modern abi enabled. |
Fariborz Jahanian | 4c9d8d0 | 2010-04-22 21:01:59 +0000 | [diff] [blame^] | 764 | Record.push_back(LangOpts.NoConstantCFStrings); // non cfstring generation enabled.. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 765 | |
Douglas Gregor | 0a0428e | 2009-04-10 20:39:37 +0000 | [diff] [blame] | 766 | Record.push_back(LangOpts.PascalStrings); // Allow Pascal strings |
Douglas Gregor | 0a0428e | 2009-04-10 20:39:37 +0000 | [diff] [blame] | 767 | Record.push_back(LangOpts.WritableStrings); // Allow writable strings |
| 768 | Record.push_back(LangOpts.LaxVectorConversions); |
Nate Begeman | b9e7e63 | 2009-06-25 23:01:11 +0000 | [diff] [blame] | 769 | Record.push_back(LangOpts.AltiVec); |
Douglas Gregor | 0a0428e | 2009-04-10 20:39:37 +0000 | [diff] [blame] | 770 | Record.push_back(LangOpts.Exceptions); // Support exception handling. |
Daniel Dunbar | 7348288 | 2010-02-10 18:48:44 +0000 | [diff] [blame] | 771 | Record.push_back(LangOpts.SjLjExceptions); |
Douglas Gregor | 0a0428e | 2009-04-10 20:39:37 +0000 | [diff] [blame] | 772 | |
| 773 | Record.push_back(LangOpts.NeXTRuntime); // Use NeXT runtime. |
| 774 | Record.push_back(LangOpts.Freestanding); // Freestanding implementation |
| 775 | Record.push_back(LangOpts.NoBuiltin); // Do not use builtin functions (-fno-builtin) |
| 776 | |
Chris Lattner | ea5ce47 | 2009-04-27 07:35:58 +0000 | [diff] [blame] | 777 | // Whether static initializers are protected by locks. |
| 778 | Record.push_back(LangOpts.ThreadsafeStatics); |
Douglas Gregor | 972d954 | 2009-09-03 14:36:33 +0000 | [diff] [blame] | 779 | Record.push_back(LangOpts.POSIXThreads); |
Douglas Gregor | 0a0428e | 2009-04-10 20:39:37 +0000 | [diff] [blame] | 780 | Record.push_back(LangOpts.Blocks); // block extension to C |
| 781 | Record.push_back(LangOpts.EmitAllDecls); // Emit all declarations, even if |
| 782 | // they are unused. |
| 783 | Record.push_back(LangOpts.MathErrno); // Math functions must respect errno |
| 784 | // (modulo the platform support). |
| 785 | |
| 786 | Record.push_back(LangOpts.OverflowChecking); // Extension to call a handler function when |
| 787 | // signed integer arithmetic overflows. |
| 788 | |
| 789 | Record.push_back(LangOpts.HeinousExtensions); // Extensions that we really don't like and |
| 790 | // may be ripped out at any time. |
| 791 | |
| 792 | Record.push_back(LangOpts.Optimize); // Whether __OPTIMIZE__ should be defined. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 793 | Record.push_back(LangOpts.OptimizeSize); // Whether __OPTIMIZE_SIZE__ should be |
Douglas Gregor | 0a0428e | 2009-04-10 20:39:37 +0000 | [diff] [blame] | 794 | // defined. |
| 795 | Record.push_back(LangOpts.Static); // Should __STATIC__ be defined (as |
| 796 | // opposed to __DYNAMIC__). |
| 797 | Record.push_back(LangOpts.PICLevel); // The value for __PIC__, if non-zero. |
| 798 | |
| 799 | Record.push_back(LangOpts.GNUInline); // Should GNU inline semantics be |
| 800 | // used (instead of C99 semantics). |
| 801 | Record.push_back(LangOpts.NoInline); // Should __NO_INLINE__ be defined. |
Anders Carlsson | a33d9b4 | 2009-05-13 19:49:53 +0000 | [diff] [blame] | 802 | Record.push_back(LangOpts.AccessControl); // Whether C++ access control should |
| 803 | // be enabled. |
Eli Friedman | 15b9176 | 2009-06-05 07:05:05 +0000 | [diff] [blame] | 804 | Record.push_back(LangOpts.CharIsSigned); // Whether char is a signed or |
| 805 | // unsigned type |
John Thompson | a6fda12 | 2009-11-05 20:14:16 +0000 | [diff] [blame] | 806 | Record.push_back(LangOpts.ShortWChar); // force wchar_t to be unsigned short |
Douglas Gregor | 0a0428e | 2009-04-10 20:39:37 +0000 | [diff] [blame] | 807 | Record.push_back(LangOpts.getGCMode()); |
| 808 | Record.push_back(LangOpts.getVisibilityMode()); |
Daniel Dunbar | ab8e281 | 2009-09-21 04:16:19 +0000 | [diff] [blame] | 809 | Record.push_back(LangOpts.getStackProtectorMode()); |
Douglas Gregor | 0a0428e | 2009-04-10 20:39:37 +0000 | [diff] [blame] | 810 | Record.push_back(LangOpts.InstantiationDepth); |
Nate Begeman | b9e7e63 | 2009-06-25 23:01:11 +0000 | [diff] [blame] | 811 | Record.push_back(LangOpts.OpenCL); |
Mike Stump | 9c276ae | 2009-12-12 01:27:46 +0000 | [diff] [blame] | 812 | Record.push_back(LangOpts.CatchUndefined); |
Anders Carlsson | 92f5822 | 2009-08-22 22:30:33 +0000 | [diff] [blame] | 813 | Record.push_back(LangOpts.ElideConstructors); |
Douglas Gregor | c9490c0 | 2009-04-16 22:23:12 +0000 | [diff] [blame] | 814 | Stream.EmitRecord(pch::LANGUAGE_OPTIONS, Record); |
Douglas Gregor | 0a0428e | 2009-04-10 20:39:37 +0000 | [diff] [blame] | 815 | } |
| 816 | |
Douglas Gregor | 14f7900 | 2009-04-10 03:52:48 +0000 | [diff] [blame] | 817 | //===----------------------------------------------------------------------===// |
Douglas Gregor | 4fed3f4 | 2009-04-27 18:38:38 +0000 | [diff] [blame] | 818 | // stat cache Serialization |
| 819 | //===----------------------------------------------------------------------===// |
| 820 | |
| 821 | namespace { |
| 822 | // Trait used for the on-disk hash table of stat cache results. |
Benjamin Kramer | bd21828 | 2009-11-28 10:07:24 +0000 | [diff] [blame] | 823 | class PCHStatCacheTrait { |
Douglas Gregor | 4fed3f4 | 2009-04-27 18:38:38 +0000 | [diff] [blame] | 824 | public: |
| 825 | typedef const char * key_type; |
| 826 | typedef key_type key_type_ref; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 827 | |
Douglas Gregor | 4fed3f4 | 2009-04-27 18:38:38 +0000 | [diff] [blame] | 828 | typedef std::pair<int, struct stat> data_type; |
| 829 | typedef const data_type& data_type_ref; |
| 830 | |
| 831 | static unsigned ComputeHash(const char *path) { |
Daniel Dunbar | 2596e42 | 2009-10-17 23:52:28 +0000 | [diff] [blame] | 832 | return llvm::HashString(path); |
Douglas Gregor | 4fed3f4 | 2009-04-27 18:38:38 +0000 | [diff] [blame] | 833 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 834 | |
| 835 | std::pair<unsigned,unsigned> |
Douglas Gregor | 4fed3f4 | 2009-04-27 18:38:38 +0000 | [diff] [blame] | 836 | EmitKeyDataLength(llvm::raw_ostream& Out, const char *path, |
| 837 | data_type_ref Data) { |
| 838 | unsigned StrLen = strlen(path); |
| 839 | clang::io::Emit16(Out, StrLen); |
| 840 | unsigned DataLen = 1; // result value |
| 841 | if (Data.first == 0) |
| 842 | DataLen += 4 + 4 + 2 + 8 + 8; |
| 843 | clang::io::Emit8(Out, DataLen); |
| 844 | return std::make_pair(StrLen + 1, DataLen); |
| 845 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 846 | |
Douglas Gregor | 4fed3f4 | 2009-04-27 18:38:38 +0000 | [diff] [blame] | 847 | void EmitKey(llvm::raw_ostream& Out, const char *path, unsigned KeyLen) { |
| 848 | Out.write(path, KeyLen); |
| 849 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 850 | |
Douglas Gregor | 4fed3f4 | 2009-04-27 18:38:38 +0000 | [diff] [blame] | 851 | void EmitData(llvm::raw_ostream& Out, key_type_ref, |
| 852 | data_type_ref Data, unsigned DataLen) { |
| 853 | using namespace clang::io; |
| 854 | uint64_t Start = Out.tell(); (void)Start; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 855 | |
Douglas Gregor | 4fed3f4 | 2009-04-27 18:38:38 +0000 | [diff] [blame] | 856 | // Result of stat() |
| 857 | Emit8(Out, Data.first? 1 : 0); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 858 | |
Douglas Gregor | 4fed3f4 | 2009-04-27 18:38:38 +0000 | [diff] [blame] | 859 | if (Data.first == 0) { |
| 860 | Emit32(Out, (uint32_t) Data.second.st_ino); |
| 861 | Emit32(Out, (uint32_t) Data.second.st_dev); |
| 862 | Emit16(Out, (uint16_t) Data.second.st_mode); |
| 863 | Emit64(Out, (uint64_t) Data.second.st_mtime); |
| 864 | Emit64(Out, (uint64_t) Data.second.st_size); |
| 865 | } |
| 866 | |
| 867 | assert(Out.tell() - Start == DataLen && "Wrong data length"); |
| 868 | } |
| 869 | }; |
| 870 | } // end anonymous namespace |
| 871 | |
| 872 | /// \brief Write the stat() system call cache to the PCH file. |
Douglas Gregor | e650c8c | 2009-07-07 00:12:59 +0000 | [diff] [blame] | 873 | void PCHWriter::WriteStatCache(MemorizeStatCalls &StatCalls, |
| 874 | const char *isysroot) { |
Douglas Gregor | 4fed3f4 | 2009-04-27 18:38:38 +0000 | [diff] [blame] | 875 | // Build the on-disk hash table containing information about every |
| 876 | // stat() call. |
| 877 | OnDiskChainedHashTableGenerator<PCHStatCacheTrait> Generator; |
| 878 | unsigned NumStatEntries = 0; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 879 | for (MemorizeStatCalls::iterator Stat = StatCalls.begin(), |
Douglas Gregor | 4fed3f4 | 2009-04-27 18:38:38 +0000 | [diff] [blame] | 880 | StatEnd = StatCalls.end(); |
Douglas Gregor | e650c8c | 2009-07-07 00:12:59 +0000 | [diff] [blame] | 881 | Stat != StatEnd; ++Stat, ++NumStatEntries) { |
| 882 | const char *Filename = Stat->first(); |
| 883 | Filename = adjustFilenameForRelocatablePCH(Filename, isysroot); |
| 884 | Generator.insert(Filename, Stat->second); |
| 885 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 886 | |
Douglas Gregor | 4fed3f4 | 2009-04-27 18:38:38 +0000 | [diff] [blame] | 887 | // Create the on-disk hash table in a buffer. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 888 | llvm::SmallString<4096> StatCacheData; |
Douglas Gregor | 4fed3f4 | 2009-04-27 18:38:38 +0000 | [diff] [blame] | 889 | uint32_t BucketOffset; |
| 890 | { |
| 891 | llvm::raw_svector_ostream Out(StatCacheData); |
| 892 | // Make sure that no bucket is at offset 0 |
| 893 | clang::io::Emit32(Out, 0); |
| 894 | BucketOffset = Generator.Emit(Out); |
| 895 | } |
| 896 | |
| 897 | // Create a blob abbreviation |
| 898 | using namespace llvm; |
| 899 | BitCodeAbbrev *Abbrev = new BitCodeAbbrev(); |
| 900 | Abbrev->Add(BitCodeAbbrevOp(pch::STAT_CACHE)); |
| 901 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); |
| 902 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); |
| 903 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); |
| 904 | unsigned StatCacheAbbrev = Stream.EmitAbbrev(Abbrev); |
| 905 | |
| 906 | // Write the stat cache |
| 907 | RecordData Record; |
| 908 | Record.push_back(pch::STAT_CACHE); |
| 909 | Record.push_back(BucketOffset); |
| 910 | Record.push_back(NumStatEntries); |
Daniel Dunbar | ec312a1 | 2009-08-24 09:31:37 +0000 | [diff] [blame] | 911 | Stream.EmitRecordWithBlob(StatCacheAbbrev, Record, StatCacheData.str()); |
Douglas Gregor | 4fed3f4 | 2009-04-27 18:38:38 +0000 | [diff] [blame] | 912 | } |
| 913 | |
| 914 | //===----------------------------------------------------------------------===// |
Douglas Gregor | 14f7900 | 2009-04-10 03:52:48 +0000 | [diff] [blame] | 915 | // Source Manager Serialization |
| 916 | //===----------------------------------------------------------------------===// |
| 917 | |
| 918 | /// \brief Create an abbreviation for the SLocEntry that refers to a |
| 919 | /// file. |
Douglas Gregor | c9490c0 | 2009-04-16 22:23:12 +0000 | [diff] [blame] | 920 | static unsigned CreateSLocFileAbbrev(llvm::BitstreamWriter &Stream) { |
Douglas Gregor | 14f7900 | 2009-04-10 03:52:48 +0000 | [diff] [blame] | 921 | using namespace llvm; |
| 922 | BitCodeAbbrev *Abbrev = new BitCodeAbbrev(); |
| 923 | Abbrev->Add(BitCodeAbbrevOp(pch::SM_SLOC_FILE_ENTRY)); |
| 924 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // Offset |
| 925 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // Include location |
| 926 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 2)); // Characteristic |
| 927 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // Line directives |
Douglas Gregor | 2d52be5 | 2010-03-21 22:49:54 +0000 | [diff] [blame] | 928 | // FileEntry fields. |
| 929 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 12)); // Size |
| 930 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 32)); // Modification time |
Douglas Gregor | 12fab31 | 2010-03-16 16:35:32 +0000 | [diff] [blame] | 931 | // HeaderFileInfo fields. |
| 932 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // isImport |
| 933 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 2)); // DirInfo |
| 934 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // NumIncludes |
| 935 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // ControllingMacro |
Douglas Gregor | 14f7900 | 2009-04-10 03:52:48 +0000 | [diff] [blame] | 936 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // File name |
Douglas Gregor | c9490c0 | 2009-04-16 22:23:12 +0000 | [diff] [blame] | 937 | return Stream.EmitAbbrev(Abbrev); |
Douglas Gregor | 14f7900 | 2009-04-10 03:52:48 +0000 | [diff] [blame] | 938 | } |
| 939 | |
| 940 | /// \brief Create an abbreviation for the SLocEntry that refers to a |
| 941 | /// buffer. |
Douglas Gregor | c9490c0 | 2009-04-16 22:23:12 +0000 | [diff] [blame] | 942 | static unsigned CreateSLocBufferAbbrev(llvm::BitstreamWriter &Stream) { |
Douglas Gregor | 14f7900 | 2009-04-10 03:52:48 +0000 | [diff] [blame] | 943 | using namespace llvm; |
| 944 | BitCodeAbbrev *Abbrev = new BitCodeAbbrev(); |
| 945 | Abbrev->Add(BitCodeAbbrevOp(pch::SM_SLOC_BUFFER_ENTRY)); |
| 946 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // Offset |
| 947 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // Include location |
| 948 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 2)); // Characteristic |
| 949 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // Line directives |
| 950 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // Buffer name blob |
Douglas Gregor | c9490c0 | 2009-04-16 22:23:12 +0000 | [diff] [blame] | 951 | return Stream.EmitAbbrev(Abbrev); |
Douglas Gregor | 14f7900 | 2009-04-10 03:52:48 +0000 | [diff] [blame] | 952 | } |
| 953 | |
| 954 | /// \brief Create an abbreviation for the SLocEntry that refers to a |
| 955 | /// buffer's blob. |
Douglas Gregor | c9490c0 | 2009-04-16 22:23:12 +0000 | [diff] [blame] | 956 | static unsigned CreateSLocBufferBlobAbbrev(llvm::BitstreamWriter &Stream) { |
Douglas Gregor | 14f7900 | 2009-04-10 03:52:48 +0000 | [diff] [blame] | 957 | using namespace llvm; |
| 958 | BitCodeAbbrev *Abbrev = new BitCodeAbbrev(); |
| 959 | Abbrev->Add(BitCodeAbbrevOp(pch::SM_SLOC_BUFFER_BLOB)); |
| 960 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // Blob |
Douglas Gregor | c9490c0 | 2009-04-16 22:23:12 +0000 | [diff] [blame] | 961 | return Stream.EmitAbbrev(Abbrev); |
Douglas Gregor | 14f7900 | 2009-04-10 03:52:48 +0000 | [diff] [blame] | 962 | } |
| 963 | |
| 964 | /// \brief Create an abbreviation for the SLocEntry that refers to an |
| 965 | /// buffer. |
Douglas Gregor | c9490c0 | 2009-04-16 22:23:12 +0000 | [diff] [blame] | 966 | static unsigned CreateSLocInstantiationAbbrev(llvm::BitstreamWriter &Stream) { |
Douglas Gregor | 14f7900 | 2009-04-10 03:52:48 +0000 | [diff] [blame] | 967 | using namespace llvm; |
| 968 | BitCodeAbbrev *Abbrev = new BitCodeAbbrev(); |
| 969 | Abbrev->Add(BitCodeAbbrevOp(pch::SM_SLOC_INSTANTIATION_ENTRY)); |
| 970 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // Offset |
| 971 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // Spelling location |
| 972 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // Start location |
| 973 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 8)); // End location |
Douglas Gregor | f60e991 | 2009-04-15 18:05:10 +0000 | [diff] [blame] | 974 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 6)); // Token length |
Douglas Gregor | c9490c0 | 2009-04-16 22:23:12 +0000 | [diff] [blame] | 975 | return Stream.EmitAbbrev(Abbrev); |
Douglas Gregor | 14f7900 | 2009-04-10 03:52:48 +0000 | [diff] [blame] | 976 | } |
| 977 | |
| 978 | /// \brief Writes the block containing the serialized form of the |
| 979 | /// source manager. |
| 980 | /// |
| 981 | /// TODO: We should probably use an on-disk hash table (stored in a |
| 982 | /// blob), indexed based on the file name, so that we only create |
| 983 | /// entries for files that we actually need. In the common case (no |
| 984 | /// errors), we probably won't have to create file entries for any of |
| 985 | /// the files in the AST. |
Douglas Gregor | 2eafc1b | 2009-04-26 00:07:37 +0000 | [diff] [blame] | 986 | void PCHWriter::WriteSourceManagerBlock(SourceManager &SourceMgr, |
Douglas Gregor | e650c8c | 2009-07-07 00:12:59 +0000 | [diff] [blame] | 987 | const Preprocessor &PP, |
| 988 | const char *isysroot) { |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 989 | RecordData Record; |
| 990 | |
Chris Lattner | f04ad69 | 2009-04-10 17:16:57 +0000 | [diff] [blame] | 991 | // Enter the source manager block. |
Douglas Gregor | c9490c0 | 2009-04-16 22:23:12 +0000 | [diff] [blame] | 992 | Stream.EnterSubblock(pch::SOURCE_MANAGER_BLOCK_ID, 3); |
Douglas Gregor | 14f7900 | 2009-04-10 03:52:48 +0000 | [diff] [blame] | 993 | |
| 994 | // Abbreviations for the various kinds of source-location entries. |
Chris Lattner | 828e18c | 2009-04-27 19:03:22 +0000 | [diff] [blame] | 995 | unsigned SLocFileAbbrv = CreateSLocFileAbbrev(Stream); |
| 996 | unsigned SLocBufferAbbrv = CreateSLocBufferAbbrev(Stream); |
| 997 | unsigned SLocBufferBlobAbbrv = CreateSLocBufferBlobAbbrev(Stream); |
| 998 | unsigned SLocInstantiationAbbrv = CreateSLocInstantiationAbbrev(Stream); |
Douglas Gregor | 14f7900 | 2009-04-10 03:52:48 +0000 | [diff] [blame] | 999 | |
Douglas Gregor | bd94500 | 2009-04-13 16:31:14 +0000 | [diff] [blame] | 1000 | // Write the line table. |
| 1001 | if (SourceMgr.hasLineTable()) { |
| 1002 | LineTableInfo &LineTable = SourceMgr.getLineTable(); |
| 1003 | |
| 1004 | // Emit the file names |
| 1005 | Record.push_back(LineTable.getNumFilenames()); |
| 1006 | for (unsigned I = 0, N = LineTable.getNumFilenames(); I != N; ++I) { |
| 1007 | // Emit the file name |
| 1008 | const char *Filename = LineTable.getFilename(I); |
Douglas Gregor | e650c8c | 2009-07-07 00:12:59 +0000 | [diff] [blame] | 1009 | Filename = adjustFilenameForRelocatablePCH(Filename, isysroot); |
Douglas Gregor | bd94500 | 2009-04-13 16:31:14 +0000 | [diff] [blame] | 1010 | unsigned FilenameLen = Filename? strlen(Filename) : 0; |
| 1011 | Record.push_back(FilenameLen); |
| 1012 | if (FilenameLen) |
| 1013 | Record.insert(Record.end(), Filename, Filename + FilenameLen); |
| 1014 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1015 | |
Douglas Gregor | bd94500 | 2009-04-13 16:31:14 +0000 | [diff] [blame] | 1016 | // Emit the line entries |
| 1017 | for (LineTableInfo::iterator L = LineTable.begin(), LEnd = LineTable.end(); |
| 1018 | L != LEnd; ++L) { |
| 1019 | // Emit the file ID |
| 1020 | Record.push_back(L->first); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1021 | |
Douglas Gregor | bd94500 | 2009-04-13 16:31:14 +0000 | [diff] [blame] | 1022 | // Emit the line entries |
| 1023 | Record.push_back(L->second.size()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1024 | for (std::vector<LineEntry>::iterator LE = L->second.begin(), |
Douglas Gregor | bd94500 | 2009-04-13 16:31:14 +0000 | [diff] [blame] | 1025 | LEEnd = L->second.end(); |
| 1026 | LE != LEEnd; ++LE) { |
| 1027 | Record.push_back(LE->FileOffset); |
| 1028 | Record.push_back(LE->LineNo); |
| 1029 | Record.push_back(LE->FilenameID); |
| 1030 | Record.push_back((unsigned)LE->FileKind); |
| 1031 | Record.push_back(LE->IncludeOffset); |
| 1032 | } |
Douglas Gregor | bd94500 | 2009-04-13 16:31:14 +0000 | [diff] [blame] | 1033 | } |
Zhongxing Xu | 3d8216a | 2009-05-22 08:38:27 +0000 | [diff] [blame] | 1034 | Stream.EmitRecord(pch::SM_LINE_TABLE, Record); |
Douglas Gregor | bd94500 | 2009-04-13 16:31:14 +0000 | [diff] [blame] | 1035 | } |
| 1036 | |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 1037 | // Write out the source location entry table. We skip the first |
| 1038 | // entry, which is always the same dummy entry. |
Chris Lattner | 090d9b5 | 2009-04-27 19:01:47 +0000 | [diff] [blame] | 1039 | std::vector<uint32_t> SLocEntryOffsets; |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 1040 | RecordData PreloadSLocs; |
| 1041 | SLocEntryOffsets.reserve(SourceMgr.sloc_entry_size() - 1); |
Douglas Gregor | bdfe48a | 2009-10-16 22:46:09 +0000 | [diff] [blame] | 1042 | for (unsigned I = 1, N = SourceMgr.sloc_entry_size(); I != N; ++I) { |
| 1043 | // Get this source location entry. |
| 1044 | const SrcMgr::SLocEntry *SLoc = &SourceMgr.getSLocEntry(I); |
Kovarththanan Rajaratnam | 11a18f1 | 2010-03-14 07:06:50 +0000 | [diff] [blame] | 1045 | |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 1046 | // Record the offset of this source-location entry. |
| 1047 | SLocEntryOffsets.push_back(Stream.GetCurrentBitNo()); |
| 1048 | |
| 1049 | // Figure out which record code to use. |
| 1050 | unsigned Code; |
| 1051 | if (SLoc->isFile()) { |
| 1052 | if (SLoc->getFile().getContentCache()->Entry) |
| 1053 | Code = pch::SM_SLOC_FILE_ENTRY; |
| 1054 | else |
| 1055 | Code = pch::SM_SLOC_BUFFER_ENTRY; |
| 1056 | } else |
| 1057 | Code = pch::SM_SLOC_INSTANTIATION_ENTRY; |
| 1058 | Record.clear(); |
| 1059 | Record.push_back(Code); |
| 1060 | |
| 1061 | Record.push_back(SLoc->getOffset()); |
| 1062 | if (SLoc->isFile()) { |
| 1063 | const SrcMgr::FileInfo &File = SLoc->getFile(); |
| 1064 | Record.push_back(File.getIncludeLoc().getRawEncoding()); |
| 1065 | Record.push_back(File.getFileCharacteristic()); // FIXME: stable encoding |
| 1066 | Record.push_back(File.hasLineDirectives()); |
| 1067 | |
| 1068 | const SrcMgr::ContentCache *Content = File.getContentCache(); |
| 1069 | if (Content->Entry) { |
| 1070 | // The source location entry is a file. The blob associated |
| 1071 | // with this entry is the file name. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1072 | |
Douglas Gregor | 2d52be5 | 2010-03-21 22:49:54 +0000 | [diff] [blame] | 1073 | // Emit size/modification time for this file. |
| 1074 | Record.push_back(Content->Entry->getSize()); |
| 1075 | Record.push_back(Content->Entry->getModificationTime()); |
| 1076 | |
Douglas Gregor | 12fab31 | 2010-03-16 16:35:32 +0000 | [diff] [blame] | 1077 | // Emit header-search information associated with this file. |
| 1078 | HeaderFileInfo HFI; |
| 1079 | HeaderSearch &HS = PP.getHeaderSearchInfo(); |
| 1080 | if (Content->Entry->getUID() < HS.header_file_size()) |
| 1081 | HFI = HS.header_file_begin()[Content->Entry->getUID()]; |
| 1082 | Record.push_back(HFI.isImport); |
| 1083 | Record.push_back(HFI.DirInfo); |
| 1084 | Record.push_back(HFI.NumIncludes); |
| 1085 | AddIdentifierRef(HFI.ControllingMacro, Record); |
| 1086 | |
Douglas Gregor | e650c8c | 2009-07-07 00:12:59 +0000 | [diff] [blame] | 1087 | // Turn the file name into an absolute path, if it isn't already. |
| 1088 | const char *Filename = Content->Entry->getName(); |
| 1089 | llvm::sys::Path FilePath(Filename, strlen(Filename)); |
Kovarththanan Rajaratnam | 11a18f1 | 2010-03-14 07:06:50 +0000 | [diff] [blame] | 1090 | FilePath.makeAbsolute(); |
Kovarththanan Rajaratnam | aba54a9 | 2010-03-14 07:15:57 +0000 | [diff] [blame] | 1091 | Filename = FilePath.c_str(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1092 | |
Douglas Gregor | e650c8c | 2009-07-07 00:12:59 +0000 | [diff] [blame] | 1093 | Filename = adjustFilenameForRelocatablePCH(Filename, isysroot); |
Daniel Dunbar | ec312a1 | 2009-08-24 09:31:37 +0000 | [diff] [blame] | 1094 | Stream.EmitRecordWithBlob(SLocFileAbbrv, Record, Filename); |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 1095 | |
| 1096 | // FIXME: For now, preload all file source locations, so that |
| 1097 | // we get the appropriate File entries in the reader. This is |
| 1098 | // a temporary measure. |
| 1099 | PreloadSLocs.push_back(SLocEntryOffsets.size()); |
| 1100 | } else { |
| 1101 | // The source location entry is a buffer. The blob associated |
| 1102 | // with this entry contains the contents of the buffer. |
| 1103 | |
| 1104 | // We add one to the size so that we capture the trailing NULL |
| 1105 | // that is required by llvm::MemoryBuffer::getMemBuffer (on |
| 1106 | // the reader side). |
Douglas Gregor | 36c35ba | 2010-03-16 00:35:39 +0000 | [diff] [blame] | 1107 | const llvm::MemoryBuffer *Buffer |
Chris Lattner | e127a0d | 2010-04-20 20:35:58 +0000 | [diff] [blame] | 1108 | = Content->getBuffer(PP.getDiagnostics(), PP.getSourceManager()); |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 1109 | const char *Name = Buffer->getBufferIdentifier(); |
Daniel Dunbar | ec312a1 | 2009-08-24 09:31:37 +0000 | [diff] [blame] | 1110 | Stream.EmitRecordWithBlob(SLocBufferAbbrv, Record, |
| 1111 | llvm::StringRef(Name, strlen(Name) + 1)); |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 1112 | Record.clear(); |
| 1113 | Record.push_back(pch::SM_SLOC_BUFFER_BLOB); |
| 1114 | Stream.EmitRecordWithBlob(SLocBufferBlobAbbrv, Record, |
Daniel Dunbar | ec312a1 | 2009-08-24 09:31:37 +0000 | [diff] [blame] | 1115 | llvm::StringRef(Buffer->getBufferStart(), |
| 1116 | Buffer->getBufferSize() + 1)); |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 1117 | |
| 1118 | if (strcmp(Name, "<built-in>") == 0) |
| 1119 | PreloadSLocs.push_back(SLocEntryOffsets.size()); |
| 1120 | } |
| 1121 | } else { |
| 1122 | // The source location entry is an instantiation. |
| 1123 | const SrcMgr::InstantiationInfo &Inst = SLoc->getInstantiation(); |
| 1124 | Record.push_back(Inst.getSpellingLoc().getRawEncoding()); |
| 1125 | Record.push_back(Inst.getInstantiationLocStart().getRawEncoding()); |
| 1126 | Record.push_back(Inst.getInstantiationLocEnd().getRawEncoding()); |
| 1127 | |
| 1128 | // Compute the token length for this macro expansion. |
| 1129 | unsigned NextOffset = SourceMgr.getNextOffset(); |
Douglas Gregor | bdfe48a | 2009-10-16 22:46:09 +0000 | [diff] [blame] | 1130 | if (I + 1 != N) |
| 1131 | NextOffset = SourceMgr.getSLocEntry(I + 1).getOffset(); |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 1132 | Record.push_back(NextOffset - SLoc->getOffset() - 1); |
| 1133 | Stream.EmitRecordWithAbbrev(SLocInstantiationAbbrv, Record); |
| 1134 | } |
| 1135 | } |
| 1136 | |
Douglas Gregor | c9490c0 | 2009-04-16 22:23:12 +0000 | [diff] [blame] | 1137 | Stream.ExitBlock(); |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 1138 | |
| 1139 | if (SLocEntryOffsets.empty()) |
| 1140 | return; |
| 1141 | |
| 1142 | // Write the source-location offsets table into the PCH block. This |
| 1143 | // table is used for lazily loading source-location information. |
| 1144 | using namespace llvm; |
| 1145 | BitCodeAbbrev *Abbrev = new BitCodeAbbrev(); |
| 1146 | Abbrev->Add(BitCodeAbbrevOp(pch::SOURCE_LOCATION_OFFSETS)); |
| 1147 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 16)); // # of slocs |
| 1148 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::VBR, 16)); // next offset |
| 1149 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // offsets |
| 1150 | unsigned SLocOffsetsAbbrev = Stream.EmitAbbrev(Abbrev); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1151 | |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 1152 | Record.clear(); |
| 1153 | Record.push_back(pch::SOURCE_LOCATION_OFFSETS); |
| 1154 | Record.push_back(SLocEntryOffsets.size()); |
| 1155 | Record.push_back(SourceMgr.getNextOffset()); |
| 1156 | Stream.EmitRecordWithBlob(SLocOffsetsAbbrev, Record, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1157 | (const char *)&SLocEntryOffsets.front(), |
Chris Lattner | 090d9b5 | 2009-04-27 19:01:47 +0000 | [diff] [blame] | 1158 | SLocEntryOffsets.size()*sizeof(SLocEntryOffsets[0])); |
Douglas Gregor | 7f94b0b | 2009-04-27 06:38:32 +0000 | [diff] [blame] | 1159 | |
| 1160 | // Write the source location entry preloads array, telling the PCH |
| 1161 | // reader which source locations entries it should load eagerly. |
| 1162 | Stream.EmitRecord(pch::SOURCE_LOCATION_PRELOADS, PreloadSLocs); |
Douglas Gregor | 14f7900 | 2009-04-10 03:52:48 +0000 | [diff] [blame] | 1163 | } |
| 1164 | |
Douglas Gregor | 4fed3f4 | 2009-04-27 18:38:38 +0000 | [diff] [blame] | 1165 | //===----------------------------------------------------------------------===// |
| 1166 | // Preprocessor Serialization |
| 1167 | //===----------------------------------------------------------------------===// |
| 1168 | |
Chris Lattner | 0b1fb98 | 2009-04-10 17:15:23 +0000 | [diff] [blame] | 1169 | /// \brief Writes the block containing the serialized form of the |
| 1170 | /// preprocessor. |
| 1171 | /// |
Chris Lattner | df961c2 | 2009-04-10 18:08:30 +0000 | [diff] [blame] | 1172 | void PCHWriter::WritePreprocessor(const Preprocessor &PP) { |
Chris Lattner | 7c5d24e | 2009-04-10 18:00:12 +0000 | [diff] [blame] | 1173 | RecordData Record; |
Chris Lattner | f04ad69 | 2009-04-10 17:16:57 +0000 | [diff] [blame] | 1174 | |
Chris Lattner | c1f9d82 | 2009-04-13 01:29:17 +0000 | [diff] [blame] | 1175 | // If the preprocessor __COUNTER__ value has been bumped, remember it. |
| 1176 | if (PP.getCounterValue() != 0) { |
| 1177 | Record.push_back(PP.getCounterValue()); |
Douglas Gregor | c9490c0 | 2009-04-16 22:23:12 +0000 | [diff] [blame] | 1178 | Stream.EmitRecord(pch::PP_COUNTER_VALUE, Record); |
Chris Lattner | c1f9d82 | 2009-04-13 01:29:17 +0000 | [diff] [blame] | 1179 | Record.clear(); |
Douglas Gregor | 2eafc1b | 2009-04-26 00:07:37 +0000 | [diff] [blame] | 1180 | } |
| 1181 | |
| 1182 | // Enter the preprocessor block. |
| 1183 | Stream.EnterSubblock(pch::PREPROCESSOR_BLOCK_ID, 2); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1184 | |
Douglas Gregor | 2eafc1b | 2009-04-26 00:07:37 +0000 | [diff] [blame] | 1185 | // If the PCH file contains __DATE__ or __TIME__ emit a warning about this. |
| 1186 | // FIXME: use diagnostics subsystem for localization etc. |
| 1187 | if (PP.SawDateOrTime()) |
| 1188 | fprintf(stderr, "warning: precompiled header used __DATE__ or __TIME__.\n"); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1189 | |
Chris Lattner | 7c5d24e | 2009-04-10 18:00:12 +0000 | [diff] [blame] | 1190 | // Loop over all the macro definitions that are live at the end of the file, |
| 1191 | // emitting each to the PP section. |
Douglas Gregor | 6a5a23f | 2010-03-19 21:51:54 +0000 | [diff] [blame] | 1192 | PreprocessingRecord *PPRec = PP.getPreprocessingRecord(); |
Chris Lattner | 7c5d24e | 2009-04-10 18:00:12 +0000 | [diff] [blame] | 1193 | for (Preprocessor::macro_iterator I = PP.macro_begin(), E = PP.macro_end(); |
| 1194 | I != E; ++I) { |
Chris Lattner | 42d42b5 | 2009-04-10 21:41:48 +0000 | [diff] [blame] | 1195 | // FIXME: This emits macros in hash table order, we should do it in a stable |
| 1196 | // order so that output is reproducible. |
Chris Lattner | 7c5d24e | 2009-04-10 18:00:12 +0000 | [diff] [blame] | 1197 | MacroInfo *MI = I->second; |
| 1198 | |
| 1199 | // Don't emit builtin macros like __LINE__ to the PCH file unless they have |
| 1200 | // been redefined by the header (in which case they are not isBuiltinMacro). |
| 1201 | if (MI->isBuiltinMacro()) |
| 1202 | continue; |
| 1203 | |
Chris Lattner | 7356a31 | 2009-04-11 21:15:38 +0000 | [diff] [blame] | 1204 | AddIdentifierRef(I->first, Record); |
Douglas Gregor | 37e2684 | 2009-04-21 23:56:24 +0000 | [diff] [blame] | 1205 | MacroOffsets[I->first] = Stream.GetCurrentBitNo(); |
Chris Lattner | 7c5d24e | 2009-04-10 18:00:12 +0000 | [diff] [blame] | 1206 | Record.push_back(MI->getDefinitionLoc().getRawEncoding()); |
| 1207 | Record.push_back(MI->isUsed()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1208 | |
Chris Lattner | 7c5d24e | 2009-04-10 18:00:12 +0000 | [diff] [blame] | 1209 | unsigned Code; |
| 1210 | if (MI->isObjectLike()) { |
| 1211 | Code = pch::PP_MACRO_OBJECT_LIKE; |
| 1212 | } else { |
| 1213 | Code = pch::PP_MACRO_FUNCTION_LIKE; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1214 | |
Chris Lattner | 7c5d24e | 2009-04-10 18:00:12 +0000 | [diff] [blame] | 1215 | Record.push_back(MI->isC99Varargs()); |
| 1216 | Record.push_back(MI->isGNUVarargs()); |
| 1217 | Record.push_back(MI->getNumArgs()); |
| 1218 | for (MacroInfo::arg_iterator I = MI->arg_begin(), E = MI->arg_end(); |
| 1219 | I != E; ++I) |
Chris Lattner | 7356a31 | 2009-04-11 21:15:38 +0000 | [diff] [blame] | 1220 | AddIdentifierRef(*I, Record); |
Chris Lattner | 7c5d24e | 2009-04-10 18:00:12 +0000 | [diff] [blame] | 1221 | } |
Douglas Gregor | 6a5a23f | 2010-03-19 21:51:54 +0000 | [diff] [blame] | 1222 | |
| 1223 | // If we have a detailed preprocessing record, record the macro definition |
| 1224 | // ID that corresponds to this macro. |
| 1225 | if (PPRec) |
| 1226 | Record.push_back(getMacroDefinitionID(PPRec->findMacroDefinition(MI))); |
| 1227 | |
Douglas Gregor | c9490c0 | 2009-04-16 22:23:12 +0000 | [diff] [blame] | 1228 | Stream.EmitRecord(Code, Record); |
Chris Lattner | 7c5d24e | 2009-04-10 18:00:12 +0000 | [diff] [blame] | 1229 | Record.clear(); |
| 1230 | |
Chris Lattner | df961c2 | 2009-04-10 18:08:30 +0000 | [diff] [blame] | 1231 | // Emit the tokens array. |
| 1232 | for (unsigned TokNo = 0, e = MI->getNumTokens(); TokNo != e; ++TokNo) { |
| 1233 | // Note that we know that the preprocessor does not have any annotation |
| 1234 | // tokens in it because they are created by the parser, and thus can't be |
| 1235 | // in a macro definition. |
| 1236 | const Token &Tok = MI->getReplacementToken(TokNo); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1237 | |
Chris Lattner | df961c2 | 2009-04-10 18:08:30 +0000 | [diff] [blame] | 1238 | Record.push_back(Tok.getLocation().getRawEncoding()); |
| 1239 | Record.push_back(Tok.getLength()); |
| 1240 | |
Chris Lattner | df961c2 | 2009-04-10 18:08:30 +0000 | [diff] [blame] | 1241 | // FIXME: When reading literal tokens, reconstruct the literal pointer if |
| 1242 | // it is needed. |
Chris Lattner | 7356a31 | 2009-04-11 21:15:38 +0000 | [diff] [blame] | 1243 | AddIdentifierRef(Tok.getIdentifierInfo(), Record); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1244 | |
Chris Lattner | df961c2 | 2009-04-10 18:08:30 +0000 | [diff] [blame] | 1245 | // FIXME: Should translate token kind to a stable encoding. |
| 1246 | Record.push_back(Tok.getKind()); |
| 1247 | // FIXME: Should translate token flags to a stable encoding. |
| 1248 | Record.push_back(Tok.getFlags()); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1249 | |
Douglas Gregor | c9490c0 | 2009-04-16 22:23:12 +0000 | [diff] [blame] | 1250 | Stream.EmitRecord(pch::PP_TOKEN, Record); |
Chris Lattner | df961c2 | 2009-04-10 18:08:30 +0000 | [diff] [blame] | 1251 | Record.clear(); |
| 1252 | } |
Douglas Gregor | 37e2684 | 2009-04-21 23:56:24 +0000 | [diff] [blame] | 1253 | ++NumMacros; |
Chris Lattner | 7c5d24e | 2009-04-10 18:00:12 +0000 | [diff] [blame] | 1254 | } |
Douglas Gregor | 6a5a23f | 2010-03-19 21:51:54 +0000 | [diff] [blame] | 1255 | |
| 1256 | // If the preprocessor has a preprocessing record, emit it. |
| 1257 | unsigned NumPreprocessingRecords = 0; |
| 1258 | if (PPRec) { |
| 1259 | for (PreprocessingRecord::iterator E = PPRec->begin(), EEnd = PPRec->end(); |
| 1260 | E != EEnd; ++E) { |
| 1261 | Record.clear(); |
| 1262 | |
| 1263 | if (MacroInstantiation *MI = dyn_cast<MacroInstantiation>(*E)) { |
| 1264 | Record.push_back(NumPreprocessingRecords++); |
| 1265 | AddSourceLocation(MI->getSourceRange().getBegin(), Record); |
| 1266 | AddSourceLocation(MI->getSourceRange().getEnd(), Record); |
| 1267 | AddIdentifierRef(MI->getName(), Record); |
| 1268 | Record.push_back(getMacroDefinitionID(MI->getDefinition())); |
| 1269 | Stream.EmitRecord(pch::PP_MACRO_INSTANTIATION, Record); |
| 1270 | continue; |
| 1271 | } |
| 1272 | |
| 1273 | if (MacroDefinition *MD = dyn_cast<MacroDefinition>(*E)) { |
| 1274 | // Record this macro definition's location. |
| 1275 | pch::IdentID ID = getMacroDefinitionID(MD); |
| 1276 | if (ID != MacroDefinitionOffsets.size()) { |
| 1277 | if (ID > MacroDefinitionOffsets.size()) |
| 1278 | MacroDefinitionOffsets.resize(ID + 1); |
| 1279 | |
| 1280 | MacroDefinitionOffsets[ID] = Stream.GetCurrentBitNo(); |
| 1281 | } else |
| 1282 | MacroDefinitionOffsets.push_back(Stream.GetCurrentBitNo()); |
| 1283 | |
| 1284 | Record.push_back(NumPreprocessingRecords++); |
| 1285 | Record.push_back(ID); |
| 1286 | AddSourceLocation(MD->getSourceRange().getBegin(), Record); |
| 1287 | AddSourceLocation(MD->getSourceRange().getEnd(), Record); |
| 1288 | AddIdentifierRef(MD->getName(), Record); |
| 1289 | AddSourceLocation(MD->getLocation(), Record); |
| 1290 | Stream.EmitRecord(pch::PP_MACRO_DEFINITION, Record); |
| 1291 | continue; |
| 1292 | } |
| 1293 | } |
| 1294 | } |
| 1295 | |
Douglas Gregor | c9490c0 | 2009-04-16 22:23:12 +0000 | [diff] [blame] | 1296 | Stream.ExitBlock(); |
Douglas Gregor | 6a5a23f | 2010-03-19 21:51:54 +0000 | [diff] [blame] | 1297 | |
| 1298 | // Write the offsets table for the preprocessing record. |
| 1299 | if (NumPreprocessingRecords > 0) { |
| 1300 | // Write the offsets table for identifier IDs. |
| 1301 | using namespace llvm; |
| 1302 | BitCodeAbbrev *Abbrev = new BitCodeAbbrev(); |
| 1303 | Abbrev->Add(BitCodeAbbrevOp(pch::MACRO_DEFINITION_OFFSETS)); |
| 1304 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // # of records |
| 1305 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // # of macro defs |
| 1306 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); |
| 1307 | unsigned MacroDefOffsetAbbrev = Stream.EmitAbbrev(Abbrev); |
| 1308 | |
| 1309 | Record.clear(); |
| 1310 | Record.push_back(pch::MACRO_DEFINITION_OFFSETS); |
| 1311 | Record.push_back(NumPreprocessingRecords); |
| 1312 | Record.push_back(MacroDefinitionOffsets.size()); |
| 1313 | Stream.EmitRecordWithBlob(MacroDefOffsetAbbrev, Record, |
| 1314 | (const char *)&MacroDefinitionOffsets.front(), |
| 1315 | MacroDefinitionOffsets.size() * sizeof(uint32_t)); |
| 1316 | } |
Chris Lattner | 0b1fb98 | 2009-04-10 17:15:23 +0000 | [diff] [blame] | 1317 | } |
| 1318 | |
Douglas Gregor | 4fed3f4 | 2009-04-27 18:38:38 +0000 | [diff] [blame] | 1319 | //===----------------------------------------------------------------------===// |
| 1320 | // Type Serialization |
| 1321 | //===----------------------------------------------------------------------===// |
Chris Lattner | 0b1fb98 | 2009-04-10 17:15:23 +0000 | [diff] [blame] | 1322 | |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1323 | /// \brief Write the representation of a type to the PCH stream. |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 1324 | void PCHWriter::WriteType(QualType T) { |
Douglas Gregor | 8038d51 | 2009-04-10 17:25:41 +0000 | [diff] [blame] | 1325 | pch::TypeID &ID = TypeIDs[T]; |
Chris Lattner | f04ad69 | 2009-04-10 17:16:57 +0000 | [diff] [blame] | 1326 | if (ID == 0) // we haven't seen this type before. |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1327 | ID = NextTypeID++; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1328 | |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1329 | // Record the offset for this type. |
| 1330 | if (TypeOffsets.size() == ID - pch::NUM_PREDEF_TYPE_IDS) |
Douglas Gregor | c9490c0 | 2009-04-16 22:23:12 +0000 | [diff] [blame] | 1331 | TypeOffsets.push_back(Stream.GetCurrentBitNo()); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1332 | else if (TypeOffsets.size() < ID - pch::NUM_PREDEF_TYPE_IDS) { |
| 1333 | TypeOffsets.resize(ID + 1 - pch::NUM_PREDEF_TYPE_IDS); |
Douglas Gregor | c9490c0 | 2009-04-16 22:23:12 +0000 | [diff] [blame] | 1334 | TypeOffsets[ID - pch::NUM_PREDEF_TYPE_IDS] = Stream.GetCurrentBitNo(); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1335 | } |
| 1336 | |
| 1337 | RecordData Record; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1338 | |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1339 | // Emit the type's representation. |
| 1340 | PCHTypeWriter W(*this, Record); |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 1341 | |
Douglas Gregor | a4923eb | 2009-11-16 21:35:15 +0000 | [diff] [blame] | 1342 | if (T.hasLocalNonFastQualifiers()) { |
| 1343 | Qualifiers Qs = T.getLocalQualifiers(); |
| 1344 | AddTypeRef(T.getLocalUnqualifiedType(), Record); |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 1345 | Record.push_back(Qs.getAsOpaqueValue()); |
| 1346 | W.Code = pch::TYPE_EXT_QUAL; |
| 1347 | } else { |
| 1348 | switch (T->getTypeClass()) { |
| 1349 | // For all of the concrete, non-dependent types, call the |
| 1350 | // appropriate visitor function. |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1351 | #define TYPE(Class, Base) \ |
Mike Stump | b716633 | 2010-01-20 02:03:14 +0000 | [diff] [blame] | 1352 | case Type::Class: W.Visit##Class##Type(cast<Class##Type>(T)); break; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1353 | #define ABSTRACT_TYPE(Class, Base) |
| 1354 | #define DEPENDENT_TYPE(Class, Base) |
| 1355 | #include "clang/AST/TypeNodes.def" |
| 1356 | |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 1357 | // For all of the dependent type nodes (which only occur in C++ |
| 1358 | // templates), produce an error. |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1359 | #define TYPE(Class, Base) |
| 1360 | #define DEPENDENT_TYPE(Class, Base) case Type::Class: |
| 1361 | #include "clang/AST/TypeNodes.def" |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 1362 | assert(false && "Cannot serialize dependent type nodes"); |
| 1363 | break; |
| 1364 | } |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1365 | } |
| 1366 | |
| 1367 | // Emit the serialized record. |
Douglas Gregor | c9490c0 | 2009-04-16 22:23:12 +0000 | [diff] [blame] | 1368 | Stream.EmitRecord(W.Code, Record); |
Douglas Gregor | 0b74891 | 2009-04-14 21:18:50 +0000 | [diff] [blame] | 1369 | |
| 1370 | // Flush any expressions that were written as part of this type. |
Douglas Gregor | c9490c0 | 2009-04-16 22:23:12 +0000 | [diff] [blame] | 1371 | FlushStmts(); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1372 | } |
| 1373 | |
Douglas Gregor | 4fed3f4 | 2009-04-27 18:38:38 +0000 | [diff] [blame] | 1374 | //===----------------------------------------------------------------------===// |
| 1375 | // Declaration Serialization |
| 1376 | //===----------------------------------------------------------------------===// |
| 1377 | |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1378 | /// \brief Write the block containing all of the declaration IDs |
| 1379 | /// lexically declared within the given DeclContext. |
| 1380 | /// |
| 1381 | /// \returns the offset of the DECL_CONTEXT_LEXICAL block within the |
| 1382 | /// bistream, or 0 if no block was written. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1383 | uint64_t PCHWriter::WriteDeclContextLexicalBlock(ASTContext &Context, |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1384 | DeclContext *DC) { |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 1385 | if (DC->decls_empty()) |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1386 | return 0; |
| 1387 | |
Douglas Gregor | c9490c0 | 2009-04-16 22:23:12 +0000 | [diff] [blame] | 1388 | uint64_t Offset = Stream.GetCurrentBitNo(); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1389 | RecordData Record; |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 1390 | for (DeclContext::decl_iterator D = DC->decls_begin(), DEnd = DC->decls_end(); |
| 1391 | D != DEnd; ++D) |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1392 | AddDeclRef(*D, Record); |
| 1393 | |
Douglas Gregor | 2512308 | 2009-04-22 22:34:57 +0000 | [diff] [blame] | 1394 | ++NumLexicalDeclContexts; |
Douglas Gregor | c9490c0 | 2009-04-16 22:23:12 +0000 | [diff] [blame] | 1395 | Stream.EmitRecord(pch::DECL_CONTEXT_LEXICAL, Record); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1396 | return Offset; |
| 1397 | } |
| 1398 | |
| 1399 | /// \brief Write the block containing all of the declaration IDs |
| 1400 | /// visible from the given DeclContext. |
| 1401 | /// |
| 1402 | /// \returns the offset of the DECL_CONTEXT_VISIBLE block within the |
| 1403 | /// bistream, or 0 if no block was written. |
| 1404 | uint64_t PCHWriter::WriteDeclContextVisibleBlock(ASTContext &Context, |
| 1405 | DeclContext *DC) { |
| 1406 | if (DC->getPrimaryContext() != DC) |
| 1407 | return 0; |
| 1408 | |
Douglas Gregor | aff22df | 2009-04-21 22:32:33 +0000 | [diff] [blame] | 1409 | // Since there is no name lookup into functions or methods, and we |
| 1410 | // perform name lookup for the translation unit via the |
| 1411 | // IdentifierInfo chains, don't bother to build a |
| 1412 | // visible-declarations table for these entities. |
| 1413 | if (DC->isFunctionOrMethod() || DC->isTranslationUnit()) |
Douglas Gregor | 58f0699 | 2009-04-18 15:49:20 +0000 | [diff] [blame] | 1414 | return 0; |
| 1415 | |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1416 | // Force the DeclContext to build a its name-lookup table. |
Argyrios Kyrtzidis | 17945a0 | 2009-06-30 02:36:12 +0000 | [diff] [blame] | 1417 | DC->lookup(DeclarationName()); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1418 | |
| 1419 | // Serialize the contents of the mapping used for lookup. Note that, |
| 1420 | // although we have two very different code paths, the serialized |
| 1421 | // representation is the same for both cases: a declaration name, |
| 1422 | // followed by a size, followed by references to the visible |
| 1423 | // declarations that have that name. |
Douglas Gregor | c9490c0 | 2009-04-16 22:23:12 +0000 | [diff] [blame] | 1424 | uint64_t Offset = Stream.GetCurrentBitNo(); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1425 | RecordData Record; |
| 1426 | StoredDeclsMap *Map = static_cast<StoredDeclsMap*>(DC->getLookupPtr()); |
Douglas Gregor | 8c70006 | 2009-04-13 21:20:57 +0000 | [diff] [blame] | 1427 | if (!Map) |
| 1428 | return 0; |
| 1429 | |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1430 | for (StoredDeclsMap::iterator D = Map->begin(), DEnd = Map->end(); |
| 1431 | D != DEnd; ++D) { |
| 1432 | AddDeclarationName(D->first, Record); |
| 1433 | DeclContext::lookup_result Result = D->second.getLookupResult(Context); |
| 1434 | Record.push_back(Result.second - Result.first); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1435 | for (; Result.first != Result.second; ++Result.first) |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1436 | AddDeclRef(*Result.first, Record); |
| 1437 | } |
| 1438 | |
| 1439 | if (Record.size() == 0) |
| 1440 | return 0; |
| 1441 | |
Douglas Gregor | c9490c0 | 2009-04-16 22:23:12 +0000 | [diff] [blame] | 1442 | Stream.EmitRecord(pch::DECL_CONTEXT_VISIBLE, Record); |
Douglas Gregor | 2512308 | 2009-04-22 22:34:57 +0000 | [diff] [blame] | 1443 | ++NumVisibleDeclContexts; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 1444 | return Offset; |
| 1445 | } |
| 1446 | |
Douglas Gregor | 4fed3f4 | 2009-04-27 18:38:38 +0000 | [diff] [blame] | 1447 | //===----------------------------------------------------------------------===// |
| 1448 | // Global Method Pool and Selector Serialization |
| 1449 | //===----------------------------------------------------------------------===// |
| 1450 | |
Douglas Gregor | 3251ceb | 2009-04-20 20:36:09 +0000 | [diff] [blame] | 1451 | namespace { |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 1452 | // Trait used for the on-disk hash table used in the method pool. |
Benjamin Kramer | bd21828 | 2009-11-28 10:07:24 +0000 | [diff] [blame] | 1453 | class PCHMethodPoolTrait { |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 1454 | PCHWriter &Writer; |
| 1455 | |
| 1456 | public: |
| 1457 | typedef Selector key_type; |
| 1458 | typedef key_type key_type_ref; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1459 | |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 1460 | typedef std::pair<ObjCMethodList, ObjCMethodList> data_type; |
| 1461 | typedef const data_type& data_type_ref; |
| 1462 | |
| 1463 | explicit PCHMethodPoolTrait(PCHWriter &Writer) : Writer(Writer) { } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1464 | |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 1465 | static unsigned ComputeHash(Selector Sel) { |
| 1466 | unsigned N = Sel.getNumArgs(); |
| 1467 | if (N == 0) |
| 1468 | ++N; |
| 1469 | unsigned R = 5381; |
| 1470 | for (unsigned I = 0; I != N; ++I) |
| 1471 | if (IdentifierInfo *II = Sel.getIdentifierInfoForSlot(I)) |
Daniel Dunbar | 2596e42 | 2009-10-17 23:52:28 +0000 | [diff] [blame] | 1472 | R = llvm::HashString(II->getName(), R); |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 1473 | return R; |
| 1474 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1475 | |
| 1476 | std::pair<unsigned,unsigned> |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 1477 | EmitKeyDataLength(llvm::raw_ostream& Out, Selector Sel, |
| 1478 | data_type_ref Methods) { |
| 1479 | unsigned KeyLen = 2 + (Sel.getNumArgs()? Sel.getNumArgs() * 4 : 4); |
| 1480 | clang::io::Emit16(Out, KeyLen); |
| 1481 | unsigned DataLen = 2 + 2; // 2 bytes for each of the method counts |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1482 | for (const ObjCMethodList *Method = &Methods.first; Method; |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 1483 | Method = Method->Next) |
| 1484 | if (Method->Method) |
| 1485 | DataLen += 4; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1486 | for (const ObjCMethodList *Method = &Methods.second; Method; |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 1487 | Method = Method->Next) |
| 1488 | if (Method->Method) |
| 1489 | DataLen += 4; |
| 1490 | clang::io::Emit16(Out, DataLen); |
| 1491 | return std::make_pair(KeyLen, DataLen); |
| 1492 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1493 | |
Douglas Gregor | 83941df | 2009-04-25 17:48:32 +0000 | [diff] [blame] | 1494 | void EmitKey(llvm::raw_ostream& Out, Selector Sel, unsigned) { |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1495 | uint64_t Start = Out.tell(); |
Douglas Gregor | 83941df | 2009-04-25 17:48:32 +0000 | [diff] [blame] | 1496 | assert((Start >> 32) == 0 && "Selector key offset too large"); |
| 1497 | Writer.SetSelectorOffset(Sel, Start); |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 1498 | unsigned N = Sel.getNumArgs(); |
| 1499 | clang::io::Emit16(Out, N); |
| 1500 | if (N == 0) |
| 1501 | N = 1; |
| 1502 | for (unsigned I = 0; I != N; ++I) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1503 | clang::io::Emit32(Out, |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 1504 | Writer.getIdentifierRef(Sel.getIdentifierInfoForSlot(I))); |
| 1505 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1506 | |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 1507 | void EmitData(llvm::raw_ostream& Out, key_type_ref, |
Douglas Gregor | a67e58c | 2009-04-24 21:49:02 +0000 | [diff] [blame] | 1508 | data_type_ref Methods, unsigned DataLen) { |
| 1509 | uint64_t Start = Out.tell(); (void)Start; |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 1510 | unsigned NumInstanceMethods = 0; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1511 | for (const ObjCMethodList *Method = &Methods.first; Method; |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 1512 | Method = Method->Next) |
| 1513 | if (Method->Method) |
| 1514 | ++NumInstanceMethods; |
| 1515 | |
| 1516 | unsigned NumFactoryMethods = 0; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1517 | for (const ObjCMethodList *Method = &Methods.second; Method; |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 1518 | Method = Method->Next) |
| 1519 | if (Method->Method) |
| 1520 | ++NumFactoryMethods; |
| 1521 | |
| 1522 | clang::io::Emit16(Out, NumInstanceMethods); |
| 1523 | clang::io::Emit16(Out, NumFactoryMethods); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1524 | for (const ObjCMethodList *Method = &Methods.first; Method; |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 1525 | Method = Method->Next) |
| 1526 | if (Method->Method) |
| 1527 | clang::io::Emit32(Out, Writer.getDeclID(Method->Method)); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1528 | for (const ObjCMethodList *Method = &Methods.second; Method; |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 1529 | Method = Method->Next) |
| 1530 | if (Method->Method) |
| 1531 | clang::io::Emit32(Out, Writer.getDeclID(Method->Method)); |
Douglas Gregor | a67e58c | 2009-04-24 21:49:02 +0000 | [diff] [blame] | 1532 | |
| 1533 | assert(Out.tell() - Start == DataLen && "Data length is wrong"); |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 1534 | } |
| 1535 | }; |
| 1536 | } // end anonymous namespace |
| 1537 | |
| 1538 | /// \brief Write the method pool into the PCH file. |
| 1539 | /// |
| 1540 | /// The method pool contains both instance and factory methods, stored |
| 1541 | /// in an on-disk hash table indexed by the selector. |
| 1542 | void PCHWriter::WriteMethodPool(Sema &SemaRef) { |
| 1543 | using namespace llvm; |
| 1544 | |
| 1545 | // Create and write out the blob that contains the instance and |
| 1546 | // factor method pools. |
| 1547 | bool Empty = true; |
| 1548 | { |
| 1549 | OnDiskChainedHashTableGenerator<PCHMethodPoolTrait> Generator; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1550 | |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 1551 | // Create the on-disk hash table representation. Start by |
| 1552 | // iterating through the instance method pool. |
| 1553 | PCHMethodPoolTrait::key_type Key; |
Douglas Gregor | 83941df | 2009-04-25 17:48:32 +0000 | [diff] [blame] | 1554 | unsigned NumSelectorsInMethodPool = 0; |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 1555 | for (llvm::DenseMap<Selector, ObjCMethodList>::iterator |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1556 | Instance = SemaRef.InstanceMethodPool.begin(), |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 1557 | InstanceEnd = SemaRef.InstanceMethodPool.end(); |
| 1558 | Instance != InstanceEnd; ++Instance) { |
| 1559 | // Check whether there is a factory method with the same |
| 1560 | // selector. |
| 1561 | llvm::DenseMap<Selector, ObjCMethodList>::iterator Factory |
| 1562 | = SemaRef.FactoryMethodPool.find(Instance->first); |
| 1563 | |
| 1564 | if (Factory == SemaRef.FactoryMethodPool.end()) |
| 1565 | Generator.insert(Instance->first, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1566 | std::make_pair(Instance->second, |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 1567 | ObjCMethodList())); |
| 1568 | else |
| 1569 | Generator.insert(Instance->first, |
| 1570 | std::make_pair(Instance->second, Factory->second)); |
| 1571 | |
Douglas Gregor | 83941df | 2009-04-25 17:48:32 +0000 | [diff] [blame] | 1572 | ++NumSelectorsInMethodPool; |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 1573 | Empty = false; |
| 1574 | } |
| 1575 | |
| 1576 | // Now iterate through the factory method pool, to pick up any |
| 1577 | // selectors that weren't already in the instance method pool. |
| 1578 | for (llvm::DenseMap<Selector, ObjCMethodList>::iterator |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1579 | Factory = SemaRef.FactoryMethodPool.begin(), |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 1580 | FactoryEnd = SemaRef.FactoryMethodPool.end(); |
| 1581 | Factory != FactoryEnd; ++Factory) { |
| 1582 | // Check whether there is an instance method with the same |
| 1583 | // selector. If so, there is no work to do here. |
| 1584 | llvm::DenseMap<Selector, ObjCMethodList>::iterator Instance |
| 1585 | = SemaRef.InstanceMethodPool.find(Factory->first); |
| 1586 | |
Douglas Gregor | 83941df | 2009-04-25 17:48:32 +0000 | [diff] [blame] | 1587 | if (Instance == SemaRef.InstanceMethodPool.end()) { |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 1588 | Generator.insert(Factory->first, |
| 1589 | std::make_pair(ObjCMethodList(), Factory->second)); |
Douglas Gregor | 83941df | 2009-04-25 17:48:32 +0000 | [diff] [blame] | 1590 | ++NumSelectorsInMethodPool; |
| 1591 | } |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 1592 | |
| 1593 | Empty = false; |
| 1594 | } |
| 1595 | |
Douglas Gregor | 83941df | 2009-04-25 17:48:32 +0000 | [diff] [blame] | 1596 | if (Empty && SelectorOffsets.empty()) |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 1597 | return; |
| 1598 | |
| 1599 | // Create the on-disk hash table in a buffer. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1600 | llvm::SmallString<4096> MethodPool; |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 1601 | uint32_t BucketOffset; |
Douglas Gregor | 83941df | 2009-04-25 17:48:32 +0000 | [diff] [blame] | 1602 | SelectorOffsets.resize(SelVector.size()); |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 1603 | { |
| 1604 | PCHMethodPoolTrait Trait(*this); |
| 1605 | llvm::raw_svector_ostream Out(MethodPool); |
| 1606 | // Make sure that no bucket is at offset 0 |
Douglas Gregor | a67e58c | 2009-04-24 21:49:02 +0000 | [diff] [blame] | 1607 | clang::io::Emit32(Out, 0); |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 1608 | BucketOffset = Generator.Emit(Out, Trait); |
Douglas Gregor | 83941df | 2009-04-25 17:48:32 +0000 | [diff] [blame] | 1609 | |
| 1610 | // For every selector that we have seen but which was not |
| 1611 | // written into the hash table, write the selector itself and |
| 1612 | // record it's offset. |
| 1613 | for (unsigned I = 0, N = SelVector.size(); I != N; ++I) |
| 1614 | if (SelectorOffsets[I] == 0) |
| 1615 | Trait.EmitKey(Out, SelVector[I], 0); |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 1616 | } |
| 1617 | |
| 1618 | // Create a blob abbreviation |
| 1619 | BitCodeAbbrev *Abbrev = new BitCodeAbbrev(); |
| 1620 | Abbrev->Add(BitCodeAbbrevOp(pch::METHOD_POOL)); |
| 1621 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); |
Douglas Gregor | 83941df | 2009-04-25 17:48:32 +0000 | [diff] [blame] | 1622 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 1623 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); |
| 1624 | unsigned MethodPoolAbbrev = Stream.EmitAbbrev(Abbrev); |
| 1625 | |
Douglas Gregor | 83941df | 2009-04-25 17:48:32 +0000 | [diff] [blame] | 1626 | // Write the method pool |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 1627 | RecordData Record; |
| 1628 | Record.push_back(pch::METHOD_POOL); |
| 1629 | Record.push_back(BucketOffset); |
Douglas Gregor | 83941df | 2009-04-25 17:48:32 +0000 | [diff] [blame] | 1630 | Record.push_back(NumSelectorsInMethodPool); |
Daniel Dunbar | ec312a1 | 2009-08-24 09:31:37 +0000 | [diff] [blame] | 1631 | Stream.EmitRecordWithBlob(MethodPoolAbbrev, Record, MethodPool.str()); |
Douglas Gregor | 83941df | 2009-04-25 17:48:32 +0000 | [diff] [blame] | 1632 | |
| 1633 | // Create a blob abbreviation for the selector table offsets. |
| 1634 | Abbrev = new BitCodeAbbrev(); |
| 1635 | Abbrev->Add(BitCodeAbbrevOp(pch::SELECTOR_OFFSETS)); |
| 1636 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // index |
| 1637 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); |
| 1638 | unsigned SelectorOffsetAbbrev = Stream.EmitAbbrev(Abbrev); |
| 1639 | |
| 1640 | // Write the selector offsets table. |
| 1641 | Record.clear(); |
| 1642 | Record.push_back(pch::SELECTOR_OFFSETS); |
| 1643 | Record.push_back(SelectorOffsets.size()); |
| 1644 | Stream.EmitRecordWithBlob(SelectorOffsetAbbrev, Record, |
| 1645 | (const char *)&SelectorOffsets.front(), |
| 1646 | SelectorOffsets.size() * 4); |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 1647 | } |
| 1648 | } |
| 1649 | |
Douglas Gregor | 4fed3f4 | 2009-04-27 18:38:38 +0000 | [diff] [blame] | 1650 | //===----------------------------------------------------------------------===// |
| 1651 | // Identifier Table Serialization |
| 1652 | //===----------------------------------------------------------------------===// |
| 1653 | |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 1654 | namespace { |
Benjamin Kramer | bd21828 | 2009-11-28 10:07:24 +0000 | [diff] [blame] | 1655 | class PCHIdentifierTableTrait { |
Douglas Gregor | 3251ceb | 2009-04-20 20:36:09 +0000 | [diff] [blame] | 1656 | PCHWriter &Writer; |
Douglas Gregor | 37e2684 | 2009-04-21 23:56:24 +0000 | [diff] [blame] | 1657 | Preprocessor &PP; |
Douglas Gregor | 3251ceb | 2009-04-20 20:36:09 +0000 | [diff] [blame] | 1658 | |
Douglas Gregor | a92193e | 2009-04-28 21:18:29 +0000 | [diff] [blame] | 1659 | /// \brief Determines whether this is an "interesting" identifier |
| 1660 | /// that needs a full IdentifierInfo structure written into the hash |
| 1661 | /// table. |
| 1662 | static bool isInterestingIdentifier(const IdentifierInfo *II) { |
| 1663 | return II->isPoisoned() || |
| 1664 | II->isExtensionToken() || |
| 1665 | II->hasMacroDefinition() || |
| 1666 | II->getObjCOrBuiltinID() || |
| 1667 | II->getFETokenInfo<void>(); |
| 1668 | } |
| 1669 | |
Douglas Gregor | 3251ceb | 2009-04-20 20:36:09 +0000 | [diff] [blame] | 1670 | public: |
| 1671 | typedef const IdentifierInfo* key_type; |
| 1672 | typedef key_type key_type_ref; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1673 | |
Douglas Gregor | 3251ceb | 2009-04-20 20:36:09 +0000 | [diff] [blame] | 1674 | typedef pch::IdentID data_type; |
| 1675 | typedef data_type data_type_ref; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1676 | |
| 1677 | PCHIdentifierTableTrait(PCHWriter &Writer, Preprocessor &PP) |
Douglas Gregor | 37e2684 | 2009-04-21 23:56:24 +0000 | [diff] [blame] | 1678 | : Writer(Writer), PP(PP) { } |
Douglas Gregor | 3251ceb | 2009-04-20 20:36:09 +0000 | [diff] [blame] | 1679 | |
| 1680 | static unsigned ComputeHash(const IdentifierInfo* II) { |
Daniel Dunbar | 2596e42 | 2009-10-17 23:52:28 +0000 | [diff] [blame] | 1681 | return llvm::HashString(II->getName()); |
Douglas Gregor | 3251ceb | 2009-04-20 20:36:09 +0000 | [diff] [blame] | 1682 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1683 | |
| 1684 | std::pair<unsigned,unsigned> |
| 1685 | EmitKeyDataLength(llvm::raw_ostream& Out, const IdentifierInfo* II, |
Douglas Gregor | 3251ceb | 2009-04-20 20:36:09 +0000 | [diff] [blame] | 1686 | pch::IdentID ID) { |
Daniel Dunbar | e013d68 | 2009-10-18 20:26:12 +0000 | [diff] [blame] | 1687 | unsigned KeyLen = II->getLength() + 1; |
Douglas Gregor | a92193e | 2009-04-28 21:18:29 +0000 | [diff] [blame] | 1688 | unsigned DataLen = 4; // 4 bytes for the persistent ID << 1 |
| 1689 | if (isInterestingIdentifier(II)) { |
Douglas Gregor | 5998da5 | 2009-04-28 21:32:13 +0000 | [diff] [blame] | 1690 | DataLen += 2; // 2 bytes for builtin ID, flags |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1691 | if (II->hasMacroDefinition() && |
Douglas Gregor | a92193e | 2009-04-28 21:18:29 +0000 | [diff] [blame] | 1692 | !PP.getMacroInfo(const_cast<IdentifierInfo *>(II))->isBuiltinMacro()) |
Douglas Gregor | 5998da5 | 2009-04-28 21:32:13 +0000 | [diff] [blame] | 1693 | DataLen += 4; |
Douglas Gregor | a92193e | 2009-04-28 21:18:29 +0000 | [diff] [blame] | 1694 | for (IdentifierResolver::iterator D = IdentifierResolver::begin(II), |
| 1695 | DEnd = IdentifierResolver::end(); |
| 1696 | D != DEnd; ++D) |
| 1697 | DataLen += sizeof(pch::DeclID); |
| 1698 | } |
Douglas Gregor | 668c1a4 | 2009-04-21 22:25:48 +0000 | [diff] [blame] | 1699 | clang::io::Emit16(Out, DataLen); |
Douglas Gregor | 02fc751 | 2009-04-28 20:01:51 +0000 | [diff] [blame] | 1700 | // We emit the key length after the data length so that every |
| 1701 | // string is preceded by a 16-bit length. This matches the PTH |
| 1702 | // format for storing identifiers. |
Douglas Gregor | d6595a4 | 2009-04-25 21:04:17 +0000 | [diff] [blame] | 1703 | clang::io::Emit16(Out, KeyLen); |
Douglas Gregor | 3251ceb | 2009-04-20 20:36:09 +0000 | [diff] [blame] | 1704 | return std::make_pair(KeyLen, DataLen); |
| 1705 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1706 | |
| 1707 | void EmitKey(llvm::raw_ostream& Out, const IdentifierInfo* II, |
Douglas Gregor | 3251ceb | 2009-04-20 20:36:09 +0000 | [diff] [blame] | 1708 | unsigned KeyLen) { |
| 1709 | // Record the location of the key data. This is used when generating |
| 1710 | // the mapping from persistent IDs to strings. |
| 1711 | Writer.SetIdentifierOffset(II, Out.tell()); |
Daniel Dunbar | e013d68 | 2009-10-18 20:26:12 +0000 | [diff] [blame] | 1712 | Out.write(II->getNameStart(), KeyLen); |
Douglas Gregor | 3251ceb | 2009-04-20 20:36:09 +0000 | [diff] [blame] | 1713 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1714 | |
| 1715 | void EmitData(llvm::raw_ostream& Out, const IdentifierInfo* II, |
Douglas Gregor | 3251ceb | 2009-04-20 20:36:09 +0000 | [diff] [blame] | 1716 | pch::IdentID ID, unsigned) { |
Douglas Gregor | a92193e | 2009-04-28 21:18:29 +0000 | [diff] [blame] | 1717 | if (!isInterestingIdentifier(II)) { |
| 1718 | clang::io::Emit32(Out, ID << 1); |
| 1719 | return; |
| 1720 | } |
Douglas Gregor | 5998da5 | 2009-04-28 21:32:13 +0000 | [diff] [blame] | 1721 | |
Douglas Gregor | a92193e | 2009-04-28 21:18:29 +0000 | [diff] [blame] | 1722 | clang::io::Emit32(Out, (ID << 1) | 0x01); |
Douglas Gregor | 3251ceb | 2009-04-20 20:36:09 +0000 | [diff] [blame] | 1723 | uint32_t Bits = 0; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1724 | bool hasMacroDefinition = |
| 1725 | II->hasMacroDefinition() && |
Douglas Gregor | 37e2684 | 2009-04-21 23:56:24 +0000 | [diff] [blame] | 1726 | !PP.getMacroInfo(const_cast<IdentifierInfo *>(II))->isBuiltinMacro(); |
Douglas Gregor | 5998da5 | 2009-04-28 21:32:13 +0000 | [diff] [blame] | 1727 | Bits = (uint32_t)II->getObjCOrBuiltinID(); |
Daniel Dunbar | b0b8438 | 2009-12-18 20:58:47 +0000 | [diff] [blame] | 1728 | Bits = (Bits << 1) | unsigned(hasMacroDefinition); |
| 1729 | Bits = (Bits << 1) | unsigned(II->isExtensionToken()); |
| 1730 | Bits = (Bits << 1) | unsigned(II->isPoisoned()); |
| 1731 | Bits = (Bits << 1) | unsigned(II->isCPlusPlusOperatorKeyword()); |
Douglas Gregor | 5998da5 | 2009-04-28 21:32:13 +0000 | [diff] [blame] | 1732 | clang::io::Emit16(Out, Bits); |
Douglas Gregor | 3251ceb | 2009-04-20 20:36:09 +0000 | [diff] [blame] | 1733 | |
Douglas Gregor | 37e2684 | 2009-04-21 23:56:24 +0000 | [diff] [blame] | 1734 | if (hasMacroDefinition) |
Douglas Gregor | 5998da5 | 2009-04-28 21:32:13 +0000 | [diff] [blame] | 1735 | clang::io::Emit32(Out, Writer.getMacroOffset(II)); |
Douglas Gregor | 37e2684 | 2009-04-21 23:56:24 +0000 | [diff] [blame] | 1736 | |
Douglas Gregor | 668c1a4 | 2009-04-21 22:25:48 +0000 | [diff] [blame] | 1737 | // Emit the declaration IDs in reverse order, because the |
| 1738 | // IdentifierResolver provides the declarations as they would be |
| 1739 | // visible (e.g., the function "stat" would come before the struct |
| 1740 | // "stat"), but IdentifierResolver::AddDeclToIdentifierChain() |
| 1741 | // adds declarations to the end of the list (so we need to see the |
| 1742 | // struct "status" before the function "status"). |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1743 | llvm::SmallVector<Decl *, 16> Decls(IdentifierResolver::begin(II), |
Douglas Gregor | 668c1a4 | 2009-04-21 22:25:48 +0000 | [diff] [blame] | 1744 | IdentifierResolver::end()); |
| 1745 | for (llvm::SmallVector<Decl *, 16>::reverse_iterator D = Decls.rbegin(), |
| 1746 | DEnd = Decls.rend(); |
Douglas Gregor | 3251ceb | 2009-04-20 20:36:09 +0000 | [diff] [blame] | 1747 | D != DEnd; ++D) |
Douglas Gregor | 668c1a4 | 2009-04-21 22:25:48 +0000 | [diff] [blame] | 1748 | clang::io::Emit32(Out, Writer.getDeclID(*D)); |
Douglas Gregor | 3251ceb | 2009-04-20 20:36:09 +0000 | [diff] [blame] | 1749 | } |
| 1750 | }; |
| 1751 | } // end anonymous namespace |
| 1752 | |
Douglas Gregor | afaf308 | 2009-04-11 00:14:32 +0000 | [diff] [blame] | 1753 | /// \brief Write the identifier table into the PCH file. |
| 1754 | /// |
| 1755 | /// The identifier table consists of a blob containing string data |
| 1756 | /// (the actual identifiers themselves) and a separate "offsets" index |
| 1757 | /// that maps identifier IDs to locations within the blob. |
Douglas Gregor | 37e2684 | 2009-04-21 23:56:24 +0000 | [diff] [blame] | 1758 | void PCHWriter::WriteIdentifierTable(Preprocessor &PP) { |
Douglas Gregor | afaf308 | 2009-04-11 00:14:32 +0000 | [diff] [blame] | 1759 | using namespace llvm; |
| 1760 | |
| 1761 | // Create and write out the blob that contains the identifier |
| 1762 | // strings. |
Douglas Gregor | afaf308 | 2009-04-11 00:14:32 +0000 | [diff] [blame] | 1763 | { |
Douglas Gregor | 3251ceb | 2009-04-20 20:36:09 +0000 | [diff] [blame] | 1764 | OnDiskChainedHashTableGenerator<PCHIdentifierTableTrait> Generator; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1765 | |
Douglas Gregor | 92b059e | 2009-04-28 20:33:11 +0000 | [diff] [blame] | 1766 | // Look for any identifiers that were named while processing the |
| 1767 | // headers, but are otherwise not needed. We add these to the hash |
| 1768 | // table to enable checking of the predefines buffer in the case |
| 1769 | // where the user adds new macro definitions when building the PCH |
| 1770 | // file. |
| 1771 | for (IdentifierTable::iterator ID = PP.getIdentifierTable().begin(), |
| 1772 | IDEnd = PP.getIdentifierTable().end(); |
| 1773 | ID != IDEnd; ++ID) |
| 1774 | getIdentifierRef(ID->second); |
| 1775 | |
Douglas Gregor | 3251ceb | 2009-04-20 20:36:09 +0000 | [diff] [blame] | 1776 | // Create the on-disk hash table representation. |
Douglas Gregor | 92b059e | 2009-04-28 20:33:11 +0000 | [diff] [blame] | 1777 | IdentifierOffsets.resize(IdentifierIDs.size()); |
Douglas Gregor | afaf308 | 2009-04-11 00:14:32 +0000 | [diff] [blame] | 1778 | for (llvm::DenseMap<const IdentifierInfo *, pch::IdentID>::iterator |
| 1779 | ID = IdentifierIDs.begin(), IDEnd = IdentifierIDs.end(); |
| 1780 | ID != IDEnd; ++ID) { |
| 1781 | assert(ID->first && "NULL identifier in identifier table"); |
Douglas Gregor | 02fc751 | 2009-04-28 20:01:51 +0000 | [diff] [blame] | 1782 | Generator.insert(ID->first, ID->second); |
Douglas Gregor | 3251ceb | 2009-04-20 20:36:09 +0000 | [diff] [blame] | 1783 | } |
Douglas Gregor | afaf308 | 2009-04-11 00:14:32 +0000 | [diff] [blame] | 1784 | |
Douglas Gregor | 3251ceb | 2009-04-20 20:36:09 +0000 | [diff] [blame] | 1785 | // Create the on-disk hash table in a buffer. |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1786 | llvm::SmallString<4096> IdentifierTable; |
Douglas Gregor | 668c1a4 | 2009-04-21 22:25:48 +0000 | [diff] [blame] | 1787 | uint32_t BucketOffset; |
Douglas Gregor | 3251ceb | 2009-04-20 20:36:09 +0000 | [diff] [blame] | 1788 | { |
Douglas Gregor | 37e2684 | 2009-04-21 23:56:24 +0000 | [diff] [blame] | 1789 | PCHIdentifierTableTrait Trait(*this, PP); |
Douglas Gregor | 3251ceb | 2009-04-20 20:36:09 +0000 | [diff] [blame] | 1790 | llvm::raw_svector_ostream Out(IdentifierTable); |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 1791 | // Make sure that no bucket is at offset 0 |
Douglas Gregor | a67e58c | 2009-04-24 21:49:02 +0000 | [diff] [blame] | 1792 | clang::io::Emit32(Out, 0); |
Douglas Gregor | 668c1a4 | 2009-04-21 22:25:48 +0000 | [diff] [blame] | 1793 | BucketOffset = Generator.Emit(Out, Trait); |
Douglas Gregor | afaf308 | 2009-04-11 00:14:32 +0000 | [diff] [blame] | 1794 | } |
| 1795 | |
| 1796 | // Create a blob abbreviation |
| 1797 | BitCodeAbbrev *Abbrev = new BitCodeAbbrev(); |
| 1798 | Abbrev->Add(BitCodeAbbrevOp(pch::IDENTIFIER_TABLE)); |
Douglas Gregor | 668c1a4 | 2009-04-21 22:25:48 +0000 | [diff] [blame] | 1799 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); |
Douglas Gregor | 3251ceb | 2009-04-20 20:36:09 +0000 | [diff] [blame] | 1800 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); |
Douglas Gregor | c9490c0 | 2009-04-16 22:23:12 +0000 | [diff] [blame] | 1801 | unsigned IDTableAbbrev = Stream.EmitAbbrev(Abbrev); |
Douglas Gregor | afaf308 | 2009-04-11 00:14:32 +0000 | [diff] [blame] | 1802 | |
| 1803 | // Write the identifier table |
| 1804 | RecordData Record; |
| 1805 | Record.push_back(pch::IDENTIFIER_TABLE); |
Douglas Gregor | 668c1a4 | 2009-04-21 22:25:48 +0000 | [diff] [blame] | 1806 | Record.push_back(BucketOffset); |
Daniel Dunbar | ec312a1 | 2009-08-24 09:31:37 +0000 | [diff] [blame] | 1807 | Stream.EmitRecordWithBlob(IDTableAbbrev, Record, IdentifierTable.str()); |
Douglas Gregor | afaf308 | 2009-04-11 00:14:32 +0000 | [diff] [blame] | 1808 | } |
| 1809 | |
| 1810 | // Write the offsets table for identifier IDs. |
Douglas Gregor | 2b3a5a8 | 2009-04-25 19:10:14 +0000 | [diff] [blame] | 1811 | BitCodeAbbrev *Abbrev = new BitCodeAbbrev(); |
| 1812 | Abbrev->Add(BitCodeAbbrevOp(pch::IDENTIFIER_OFFSET)); |
| 1813 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // # of identifiers |
| 1814 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); |
| 1815 | unsigned IdentifierOffsetAbbrev = Stream.EmitAbbrev(Abbrev); |
| 1816 | |
| 1817 | RecordData Record; |
| 1818 | Record.push_back(pch::IDENTIFIER_OFFSET); |
| 1819 | Record.push_back(IdentifierOffsets.size()); |
| 1820 | Stream.EmitRecordWithBlob(IdentifierOffsetAbbrev, Record, |
| 1821 | (const char *)&IdentifierOffsets.front(), |
| 1822 | IdentifierOffsets.size() * sizeof(uint32_t)); |
Douglas Gregor | afaf308 | 2009-04-11 00:14:32 +0000 | [diff] [blame] | 1823 | } |
| 1824 | |
Douglas Gregor | 4fed3f4 | 2009-04-27 18:38:38 +0000 | [diff] [blame] | 1825 | //===----------------------------------------------------------------------===// |
| 1826 | // General Serialization Routines |
| 1827 | //===----------------------------------------------------------------------===// |
| 1828 | |
Douglas Gregor | 68a2eb0 | 2009-04-15 21:30:51 +0000 | [diff] [blame] | 1829 | /// \brief Write a record containing the given attributes. |
| 1830 | void PCHWriter::WriteAttributeRecord(const Attr *Attr) { |
| 1831 | RecordData Record; |
| 1832 | for (; Attr; Attr = Attr->getNext()) { |
Anton Korobeynikov | 82d0a41 | 2010-01-10 12:58:08 +0000 | [diff] [blame] | 1833 | Record.push_back(Attr->getKind()); // FIXME: stable encoding, target attrs |
Douglas Gregor | 68a2eb0 | 2009-04-15 21:30:51 +0000 | [diff] [blame] | 1834 | Record.push_back(Attr->isInherited()); |
| 1835 | switch (Attr->getKind()) { |
Anton Korobeynikov | 82d0a41 | 2010-01-10 12:58:08 +0000 | [diff] [blame] | 1836 | default: |
| 1837 | assert(0 && "Does not support PCH writing for this attribute yet!"); |
| 1838 | break; |
Douglas Gregor | 68a2eb0 | 2009-04-15 21:30:51 +0000 | [diff] [blame] | 1839 | case Attr::Alias: |
| 1840 | AddString(cast<AliasAttr>(Attr)->getAliasee(), Record); |
| 1841 | break; |
| 1842 | |
| 1843 | case Attr::Aligned: |
| 1844 | Record.push_back(cast<AlignedAttr>(Attr)->getAlignment()); |
| 1845 | break; |
| 1846 | |
| 1847 | case Attr::AlwaysInline: |
| 1848 | break; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1849 | |
Douglas Gregor | 68a2eb0 | 2009-04-15 21:30:51 +0000 | [diff] [blame] | 1850 | case Attr::AnalyzerNoReturn: |
| 1851 | break; |
| 1852 | |
| 1853 | case Attr::Annotate: |
| 1854 | AddString(cast<AnnotateAttr>(Attr)->getAnnotation(), Record); |
| 1855 | break; |
| 1856 | |
| 1857 | case Attr::AsmLabel: |
| 1858 | AddString(cast<AsmLabelAttr>(Attr)->getLabel(), Record); |
| 1859 | break; |
| 1860 | |
Sean Hunt | 7725e67 | 2009-11-25 04:20:27 +0000 | [diff] [blame] | 1861 | case Attr::BaseCheck: |
| 1862 | break; |
| 1863 | |
Douglas Gregor | 68a2eb0 | 2009-04-15 21:30:51 +0000 | [diff] [blame] | 1864 | case Attr::Blocks: |
| 1865 | Record.push_back(cast<BlocksAttr>(Attr)->getType()); // FIXME: stable |
| 1866 | break; |
| 1867 | |
Eli Friedman | 8f4c59e | 2009-11-09 18:38:53 +0000 | [diff] [blame] | 1868 | case Attr::CDecl: |
| 1869 | break; |
| 1870 | |
Douglas Gregor | 68a2eb0 | 2009-04-15 21:30:51 +0000 | [diff] [blame] | 1871 | case Attr::Cleanup: |
| 1872 | AddDeclRef(cast<CleanupAttr>(Attr)->getFunctionDecl(), Record); |
| 1873 | break; |
| 1874 | |
| 1875 | case Attr::Const: |
| 1876 | break; |
| 1877 | |
| 1878 | case Attr::Constructor: |
| 1879 | Record.push_back(cast<ConstructorAttr>(Attr)->getPriority()); |
| 1880 | break; |
| 1881 | |
| 1882 | case Attr::DLLExport: |
| 1883 | case Attr::DLLImport: |
| 1884 | case Attr::Deprecated: |
| 1885 | break; |
| 1886 | |
| 1887 | case Attr::Destructor: |
| 1888 | Record.push_back(cast<DestructorAttr>(Attr)->getPriority()); |
| 1889 | break; |
| 1890 | |
| 1891 | case Attr::FastCall: |
Sean Hunt | bbd37c6 | 2009-11-21 08:43:09 +0000 | [diff] [blame] | 1892 | case Attr::Final: |
Douglas Gregor | 68a2eb0 | 2009-04-15 21:30:51 +0000 | [diff] [blame] | 1893 | break; |
| 1894 | |
| 1895 | case Attr::Format: { |
| 1896 | const FormatAttr *Format = cast<FormatAttr>(Attr); |
| 1897 | AddString(Format->getType(), Record); |
| 1898 | Record.push_back(Format->getFormatIdx()); |
| 1899 | Record.push_back(Format->getFirstArg()); |
| 1900 | break; |
| 1901 | } |
| 1902 | |
Fariborz Jahanian | 5b16092 | 2009-05-20 17:41:43 +0000 | [diff] [blame] | 1903 | case Attr::FormatArg: { |
| 1904 | const FormatArgAttr *Format = cast<FormatArgAttr>(Attr); |
| 1905 | Record.push_back(Format->getFormatIdx()); |
| 1906 | break; |
| 1907 | } |
| 1908 | |
Fariborz Jahanian | 5b53005 | 2009-05-13 18:09:35 +0000 | [diff] [blame] | 1909 | case Attr::Sentinel : { |
| 1910 | const SentinelAttr *Sentinel = cast<SentinelAttr>(Attr); |
| 1911 | Record.push_back(Sentinel->getSentinel()); |
| 1912 | Record.push_back(Sentinel->getNullPos()); |
| 1913 | break; |
| 1914 | } |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1915 | |
Chris Lattner | cf2a721 | 2009-04-20 19:12:28 +0000 | [diff] [blame] | 1916 | case Attr::GNUInline: |
Sean Hunt | 7725e67 | 2009-11-25 04:20:27 +0000 | [diff] [blame] | 1917 | case Attr::Hiding: |
Ted Kremenek | efbddd2 | 2010-02-17 02:37:45 +0000 | [diff] [blame] | 1918 | case Attr::IBActionKind: |
Ted Kremenek | 47e6990 | 2010-02-18 00:05:52 +0000 | [diff] [blame] | 1919 | case Attr::IBOutletKind: |
Ryan Flynn | 76168e2 | 2009-08-09 20:07:29 +0000 | [diff] [blame] | 1920 | case Attr::Malloc: |
Mike Stump | 1feade8 | 2009-08-26 22:31:08 +0000 | [diff] [blame] | 1921 | case Attr::NoDebug: |
Ted Kremenek | 47e6990 | 2010-02-18 00:05:52 +0000 | [diff] [blame] | 1922 | case Attr::NoInline: |
Douglas Gregor | 68a2eb0 | 2009-04-15 21:30:51 +0000 | [diff] [blame] | 1923 | case Attr::NoReturn: |
| 1924 | case Attr::NoThrow: |
Douglas Gregor | 68a2eb0 | 2009-04-15 21:30:51 +0000 | [diff] [blame] | 1925 | break; |
| 1926 | |
| 1927 | case Attr::NonNull: { |
| 1928 | const NonNullAttr *NonNull = cast<NonNullAttr>(Attr); |
| 1929 | Record.push_back(NonNull->size()); |
| 1930 | Record.insert(Record.end(), NonNull->begin(), NonNull->end()); |
| 1931 | break; |
| 1932 | } |
| 1933 | |
Ted Kremenek | 31c780d | 2010-02-18 00:05:45 +0000 | [diff] [blame] | 1934 | case Attr::CFReturnsNotRetained: |
| 1935 | case Attr::CFReturnsRetained: |
| 1936 | case Attr::NSReturnsNotRetained: |
| 1937 | case Attr::NSReturnsRetained: |
Douglas Gregor | 68a2eb0 | 2009-04-15 21:30:51 +0000 | [diff] [blame] | 1938 | case Attr::ObjCException: |
| 1939 | case Attr::ObjCNSObject: |
| 1940 | case Attr::Overloadable: |
Sean Hunt | 7725e67 | 2009-11-25 04:20:27 +0000 | [diff] [blame] | 1941 | case Attr::Override: |
Douglas Gregor | 68a2eb0 | 2009-04-15 21:30:51 +0000 | [diff] [blame] | 1942 | break; |
| 1943 | |
Anders Carlsson | a860e75 | 2009-08-08 18:23:56 +0000 | [diff] [blame] | 1944 | case Attr::PragmaPack: |
| 1945 | Record.push_back(cast<PragmaPackAttr>(Attr)->getAlignment()); |
Douglas Gregor | 68a2eb0 | 2009-04-15 21:30:51 +0000 | [diff] [blame] | 1946 | break; |
| 1947 | |
Anders Carlsson | a860e75 | 2009-08-08 18:23:56 +0000 | [diff] [blame] | 1948 | case Attr::Packed: |
| 1949 | break; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1950 | |
Douglas Gregor | 68a2eb0 | 2009-04-15 21:30:51 +0000 | [diff] [blame] | 1951 | case Attr::Pure: |
| 1952 | break; |
| 1953 | |
| 1954 | case Attr::Regparm: |
| 1955 | Record.push_back(cast<RegparmAttr>(Attr)->getNumParams()); |
| 1956 | break; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1957 | |
Nate Begeman | 6f3d838 | 2009-06-26 06:32:41 +0000 | [diff] [blame] | 1958 | case Attr::ReqdWorkGroupSize: |
| 1959 | Record.push_back(cast<ReqdWorkGroupSizeAttr>(Attr)->getXDim()); |
| 1960 | Record.push_back(cast<ReqdWorkGroupSizeAttr>(Attr)->getYDim()); |
| 1961 | Record.push_back(cast<ReqdWorkGroupSizeAttr>(Attr)->getZDim()); |
| 1962 | break; |
Douglas Gregor | 68a2eb0 | 2009-04-15 21:30:51 +0000 | [diff] [blame] | 1963 | |
| 1964 | case Attr::Section: |
| 1965 | AddString(cast<SectionAttr>(Attr)->getName(), Record); |
| 1966 | break; |
| 1967 | |
| 1968 | case Attr::StdCall: |
| 1969 | case Attr::TransparentUnion: |
| 1970 | case Attr::Unavailable: |
| 1971 | case Attr::Unused: |
| 1972 | case Attr::Used: |
| 1973 | break; |
| 1974 | |
| 1975 | case Attr::Visibility: |
| 1976 | // FIXME: stable encoding |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 1977 | Record.push_back(cast<VisibilityAttr>(Attr)->getVisibility()); |
Douglas Gregor | 68a2eb0 | 2009-04-15 21:30:51 +0000 | [diff] [blame] | 1978 | break; |
| 1979 | |
| 1980 | case Attr::WarnUnusedResult: |
| 1981 | case Attr::Weak: |
Rafael Espindola | 11e8ce7 | 2010-02-23 22:00:30 +0000 | [diff] [blame] | 1982 | case Attr::WeakRef: |
Douglas Gregor | 68a2eb0 | 2009-04-15 21:30:51 +0000 | [diff] [blame] | 1983 | case Attr::WeakImport: |
| 1984 | break; |
| 1985 | } |
| 1986 | } |
| 1987 | |
Douglas Gregor | c9490c0 | 2009-04-16 22:23:12 +0000 | [diff] [blame] | 1988 | Stream.EmitRecord(pch::DECL_ATTR, Record); |
Douglas Gregor | 68a2eb0 | 2009-04-15 21:30:51 +0000 | [diff] [blame] | 1989 | } |
| 1990 | |
| 1991 | void PCHWriter::AddString(const std::string &Str, RecordData &Record) { |
| 1992 | Record.push_back(Str.size()); |
| 1993 | Record.insert(Record.end(), Str.begin(), Str.end()); |
| 1994 | } |
| 1995 | |
Douglas Gregor | 3251ceb | 2009-04-20 20:36:09 +0000 | [diff] [blame] | 1996 | /// \brief Note that the identifier II occurs at the given offset |
| 1997 | /// within the identifier table. |
| 1998 | void PCHWriter::SetIdentifierOffset(const IdentifierInfo *II, uint32_t Offset) { |
Douglas Gregor | 2b3a5a8 | 2009-04-25 19:10:14 +0000 | [diff] [blame] | 1999 | IdentifierOffsets[IdentifierIDs[II] - 1] = Offset; |
Douglas Gregor | 3251ceb | 2009-04-20 20:36:09 +0000 | [diff] [blame] | 2000 | } |
| 2001 | |
Douglas Gregor | 83941df | 2009-04-25 17:48:32 +0000 | [diff] [blame] | 2002 | /// \brief Note that the selector Sel occurs at the given offset |
| 2003 | /// within the method pool/selector table. |
| 2004 | void PCHWriter::SetSelectorOffset(Selector Sel, uint32_t Offset) { |
| 2005 | unsigned ID = SelectorIDs[Sel]; |
| 2006 | assert(ID && "Unknown selector"); |
| 2007 | SelectorOffsets[ID - 1] = Offset; |
| 2008 | } |
| 2009 | |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2010 | PCHWriter::PCHWriter(llvm::BitstreamWriter &Stream) |
| 2011 | : Stream(Stream), NextTypeID(pch::NUM_PREDEF_TYPE_IDS), |
Douglas Gregor | 2512308 | 2009-04-22 22:34:57 +0000 | [diff] [blame] | 2012 | NumStatements(0), NumMacros(0), NumLexicalDeclContexts(0), |
| 2013 | NumVisibleDeclContexts(0) { } |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2014 | |
Douglas Gregor | e650c8c | 2009-07-07 00:12:59 +0000 | [diff] [blame] | 2015 | void PCHWriter::WritePCH(Sema &SemaRef, MemorizeStatCalls *StatCalls, |
| 2016 | const char *isysroot) { |
Douglas Gregor | 8f5dc7f | 2009-04-25 18:35:21 +0000 | [diff] [blame] | 2017 | using namespace llvm; |
| 2018 | |
Douglas Gregor | e778504 | 2009-04-20 15:53:59 +0000 | [diff] [blame] | 2019 | ASTContext &Context = SemaRef.Context; |
| 2020 | Preprocessor &PP = SemaRef.PP; |
| 2021 | |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2022 | // Emit the file header. |
Douglas Gregor | c9490c0 | 2009-04-16 22:23:12 +0000 | [diff] [blame] | 2023 | Stream.Emit((unsigned)'C', 8); |
| 2024 | Stream.Emit((unsigned)'P', 8); |
| 2025 | Stream.Emit((unsigned)'C', 8); |
| 2026 | Stream.Emit((unsigned)'H', 8); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2027 | |
Chris Lattner | b145b1e | 2009-04-26 22:26:21 +0000 | [diff] [blame] | 2028 | WriteBlockInfoBlock(); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2029 | |
| 2030 | // The translation unit is the first declaration we'll emit. |
| 2031 | DeclIDs[Context.getTranslationUnitDecl()] = 1; |
Douglas Gregor | 61d60ee | 2009-10-17 00:13:19 +0000 | [diff] [blame] | 2032 | DeclTypesToEmit.push(Context.getTranslationUnitDecl()); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2033 | |
Douglas Gregor | 2deaea3 | 2009-04-22 18:49:13 +0000 | [diff] [blame] | 2034 | // Make sure that we emit IdentifierInfos (and any attached |
| 2035 | // declarations) for builtins. |
| 2036 | { |
| 2037 | IdentifierTable &Table = PP.getIdentifierTable(); |
| 2038 | llvm::SmallVector<const char *, 32> BuiltinNames; |
| 2039 | Context.BuiltinInfo.GetBuiltinNames(BuiltinNames, |
| 2040 | Context.getLangOptions().NoBuiltin); |
| 2041 | for (unsigned I = 0, N = BuiltinNames.size(); I != N; ++I) |
| 2042 | getIdentifierRef(&Table.get(BuiltinNames[I])); |
| 2043 | } |
| 2044 | |
Chris Lattner | 63d65f8 | 2009-09-08 18:19:27 +0000 | [diff] [blame] | 2045 | // 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] | 2046 | // TentativeDefinitions order. Generally, this record will be empty for |
Chris Lattner | 63d65f8 | 2009-09-08 18:19:27 +0000 | [diff] [blame] | 2047 | // headers. |
Douglas Gregor | 4c0e86b | 2009-04-22 22:02:47 +0000 | [diff] [blame] | 2048 | RecordData TentativeDefinitions; |
Sebastian Redl | e9d12b6 | 2010-01-31 22:27:38 +0000 | [diff] [blame] | 2049 | for (unsigned i = 0, e = SemaRef.TentativeDefinitions.size(); i != e; ++i) { |
| 2050 | AddDeclRef(SemaRef.TentativeDefinitions[i], TentativeDefinitions); |
Chris Lattner | 63d65f8 | 2009-09-08 18:19:27 +0000 | [diff] [blame] | 2051 | } |
Douglas Gregor | 4c0e86b | 2009-04-22 22:02:47 +0000 | [diff] [blame] | 2052 | |
Tanya Lattner | e6bbc01 | 2010-02-12 00:07:30 +0000 | [diff] [blame] | 2053 | // Build a record containing all of the static unused functions in this file. |
| 2054 | RecordData UnusedStaticFuncs; |
Kovarththanan Rajaratnam | 11a18f1 | 2010-03-14 07:06:50 +0000 | [diff] [blame] | 2055 | for (unsigned i=0, e = SemaRef.UnusedStaticFuncs.size(); i !=e; ++i) |
Tanya Lattner | e6bbc01 | 2010-02-12 00:07:30 +0000 | [diff] [blame] | 2056 | AddDeclRef(SemaRef.UnusedStaticFuncs[i], UnusedStaticFuncs); |
Kovarththanan Rajaratnam | 11a18f1 | 2010-03-14 07:06:50 +0000 | [diff] [blame] | 2057 | |
Douglas Gregor | 14c22f2 | 2009-04-22 22:18:58 +0000 | [diff] [blame] | 2058 | // Build a record containing all of the locally-scoped external |
| 2059 | // declarations in this header file. Generally, this record will be |
| 2060 | // empty. |
| 2061 | RecordData LocallyScopedExternalDecls; |
Chris Lattner | 63d65f8 | 2009-09-08 18:19:27 +0000 | [diff] [blame] | 2062 | // FIXME: This is filling in the PCH file in densemap order which is |
| 2063 | // nondeterminstic! |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2064 | for (llvm::DenseMap<DeclarationName, NamedDecl *>::iterator |
Douglas Gregor | 14c22f2 | 2009-04-22 22:18:58 +0000 | [diff] [blame] | 2065 | TD = SemaRef.LocallyScopedExternalDecls.begin(), |
| 2066 | TDEnd = SemaRef.LocallyScopedExternalDecls.end(); |
| 2067 | TD != TDEnd; ++TD) |
| 2068 | AddDeclRef(TD->second, LocallyScopedExternalDecls); |
| 2069 | |
Douglas Gregor | b81c170 | 2009-04-27 20:06:05 +0000 | [diff] [blame] | 2070 | // Build a record containing all of the ext_vector declarations. |
| 2071 | RecordData ExtVectorDecls; |
| 2072 | for (unsigned I = 0, N = SemaRef.ExtVectorDecls.size(); I != N; ++I) |
| 2073 | AddDeclRef(SemaRef.ExtVectorDecls[I], ExtVectorDecls); |
| 2074 | |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2075 | // Write the remaining PCH contents. |
Douglas Gregor | ad1de00 | 2009-04-18 05:55:16 +0000 | [diff] [blame] | 2076 | RecordData Record; |
Douglas Gregor | 6a5a23f | 2010-03-19 21:51:54 +0000 | [diff] [blame] | 2077 | Stream.EnterSubblock(pch::PCH_BLOCK_ID, 5); |
Douglas Gregor | e650c8c | 2009-07-07 00:12:59 +0000 | [diff] [blame] | 2078 | WriteMetadata(Context, isysroot); |
Douglas Gregor | 0a0428e | 2009-04-10 20:39:37 +0000 | [diff] [blame] | 2079 | WriteLanguageOptions(Context.getLangOptions()); |
Douglas Gregor | e650c8c | 2009-07-07 00:12:59 +0000 | [diff] [blame] | 2080 | if (StatCalls && !isysroot) |
| 2081 | WriteStatCache(*StatCalls, isysroot); |
| 2082 | WriteSourceManagerBlock(Context.getSourceManager(), PP, isysroot); |
Steve Naroff | c15cb2a | 2009-07-18 15:33:26 +0000 | [diff] [blame] | 2083 | // Write the record of special types. |
| 2084 | Record.clear(); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2085 | |
Steve Naroff | c15cb2a | 2009-07-18 15:33:26 +0000 | [diff] [blame] | 2086 | AddTypeRef(Context.getBuiltinVaListType(), Record); |
| 2087 | AddTypeRef(Context.getObjCIdType(), Record); |
| 2088 | AddTypeRef(Context.getObjCSelType(), Record); |
| 2089 | AddTypeRef(Context.getObjCProtoType(), Record); |
| 2090 | AddTypeRef(Context.getObjCClassType(), Record); |
| 2091 | AddTypeRef(Context.getRawCFConstantStringType(), Record); |
| 2092 | AddTypeRef(Context.getRawObjCFastEnumerationStateType(), Record); |
| 2093 | AddTypeRef(Context.getFILEType(), Record); |
Mike Stump | 782fa30 | 2009-07-28 02:25:19 +0000 | [diff] [blame] | 2094 | AddTypeRef(Context.getjmp_bufType(), Record); |
| 2095 | AddTypeRef(Context.getsigjmp_bufType(), Record); |
Douglas Gregor | d1571ac | 2009-08-21 00:27:50 +0000 | [diff] [blame] | 2096 | AddTypeRef(Context.ObjCIdRedefinitionType, Record); |
| 2097 | AddTypeRef(Context.ObjCClassRedefinitionType, Record); |
Fariborz Jahanian | 13dcd00 | 2009-11-21 19:53:08 +0000 | [diff] [blame] | 2098 | #if 0 |
| 2099 | // FIXME. Accommodate for this in several PCH/Indexer tests |
Fariborz Jahanian | 369a3bd | 2009-11-25 23:07:42 +0000 | [diff] [blame] | 2100 | AddTypeRef(Context.ObjCSelRedefinitionType, Record); |
Fariborz Jahanian | 13dcd00 | 2009-11-21 19:53:08 +0000 | [diff] [blame] | 2101 | #endif |
Mike Stump | adaaad3 | 2009-10-20 02:12:22 +0000 | [diff] [blame] | 2102 | AddTypeRef(Context.getRawBlockdescriptorType(), Record); |
Mike Stump | 083c25e | 2009-10-22 00:49:09 +0000 | [diff] [blame] | 2103 | AddTypeRef(Context.getRawBlockdescriptorExtendedType(), Record); |
Steve Naroff | c15cb2a | 2009-07-18 15:33:26 +0000 | [diff] [blame] | 2104 | Stream.EmitRecord(pch::SPECIAL_TYPES, Record); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2105 | |
Douglas Gregor | 366809a | 2009-04-26 03:49:13 +0000 | [diff] [blame] | 2106 | // Keep writing types and declarations until all types and |
| 2107 | // declarations have been written. |
Douglas Gregor | 61d60ee | 2009-10-17 00:13:19 +0000 | [diff] [blame] | 2108 | Stream.EnterSubblock(pch::DECLTYPES_BLOCK_ID, 3); |
| 2109 | WriteDeclsBlockAbbrevs(); |
| 2110 | while (!DeclTypesToEmit.empty()) { |
| 2111 | DeclOrType DOT = DeclTypesToEmit.front(); |
| 2112 | DeclTypesToEmit.pop(); |
| 2113 | if (DOT.isType()) |
| 2114 | WriteType(DOT.getType()); |
| 2115 | else |
| 2116 | WriteDecl(Context, DOT.getDecl()); |
| 2117 | } |
| 2118 | Stream.ExitBlock(); |
Kovarththanan Rajaratnam | 11a18f1 | 2010-03-14 07:06:50 +0000 | [diff] [blame] | 2119 | |
Douglas Gregor | 813a97b | 2009-10-17 17:25:45 +0000 | [diff] [blame] | 2120 | WritePreprocessor(PP); |
Douglas Gregor | f0aaf7a | 2009-04-24 21:10:55 +0000 | [diff] [blame] | 2121 | WriteMethodPool(SemaRef); |
Douglas Gregor | 37e2684 | 2009-04-21 23:56:24 +0000 | [diff] [blame] | 2122 | WriteIdentifierTable(PP); |
Douglas Gregor | 8f5dc7f | 2009-04-25 18:35:21 +0000 | [diff] [blame] | 2123 | |
| 2124 | // Write the type offsets array |
| 2125 | BitCodeAbbrev *Abbrev = new BitCodeAbbrev(); |
| 2126 | Abbrev->Add(BitCodeAbbrevOp(pch::TYPE_OFFSET)); |
| 2127 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // # of types |
| 2128 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // types block |
| 2129 | unsigned TypeOffsetAbbrev = Stream.EmitAbbrev(Abbrev); |
| 2130 | Record.clear(); |
| 2131 | Record.push_back(pch::TYPE_OFFSET); |
| 2132 | Record.push_back(TypeOffsets.size()); |
| 2133 | Stream.EmitRecordWithBlob(TypeOffsetAbbrev, Record, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2134 | (const char *)&TypeOffsets.front(), |
Chris Lattner | c732f5a | 2009-04-27 18:24:17 +0000 | [diff] [blame] | 2135 | TypeOffsets.size() * sizeof(TypeOffsets[0])); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2136 | |
Douglas Gregor | 8f5dc7f | 2009-04-25 18:35:21 +0000 | [diff] [blame] | 2137 | // Write the declaration offsets array |
| 2138 | Abbrev = new BitCodeAbbrev(); |
| 2139 | Abbrev->Add(BitCodeAbbrevOp(pch::DECL_OFFSET)); |
| 2140 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 32)); // # of declarations |
| 2141 | Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Blob)); // declarations block |
| 2142 | unsigned DeclOffsetAbbrev = Stream.EmitAbbrev(Abbrev); |
| 2143 | Record.clear(); |
| 2144 | Record.push_back(pch::DECL_OFFSET); |
| 2145 | Record.push_back(DeclOffsets.size()); |
| 2146 | Stream.EmitRecordWithBlob(DeclOffsetAbbrev, Record, |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2147 | (const char *)&DeclOffsets.front(), |
Chris Lattner | c732f5a | 2009-04-27 18:24:17 +0000 | [diff] [blame] | 2148 | DeclOffsets.size() * sizeof(DeclOffsets[0])); |
Douglas Gregor | ad1de00 | 2009-04-18 05:55:16 +0000 | [diff] [blame] | 2149 | |
Douglas Gregor | 4c0e86b | 2009-04-22 22:02:47 +0000 | [diff] [blame] | 2150 | // Write the record containing external, unnamed definitions. |
Douglas Gregor | fdd0172 | 2009-04-14 00:24:19 +0000 | [diff] [blame] | 2151 | if (!ExternalDefinitions.empty()) |
Douglas Gregor | c9490c0 | 2009-04-16 22:23:12 +0000 | [diff] [blame] | 2152 | Stream.EmitRecord(pch::EXTERNAL_DEFINITIONS, ExternalDefinitions); |
Douglas Gregor | 4c0e86b | 2009-04-22 22:02:47 +0000 | [diff] [blame] | 2153 | |
| 2154 | // Write the record containing tentative definitions. |
| 2155 | if (!TentativeDefinitions.empty()) |
| 2156 | Stream.EmitRecord(pch::TENTATIVE_DEFINITIONS, TentativeDefinitions); |
Douglas Gregor | 14c22f2 | 2009-04-22 22:18:58 +0000 | [diff] [blame] | 2157 | |
Tanya Lattner | e6bbc01 | 2010-02-12 00:07:30 +0000 | [diff] [blame] | 2158 | // Write the record containing unused static functions. |
| 2159 | if (!UnusedStaticFuncs.empty()) |
| 2160 | Stream.EmitRecord(pch::UNUSED_STATIC_FUNCS, UnusedStaticFuncs); |
Kovarththanan Rajaratnam | 11a18f1 | 2010-03-14 07:06:50 +0000 | [diff] [blame] | 2161 | |
Douglas Gregor | 14c22f2 | 2009-04-22 22:18:58 +0000 | [diff] [blame] | 2162 | // Write the record containing locally-scoped external definitions. |
| 2163 | if (!LocallyScopedExternalDecls.empty()) |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2164 | Stream.EmitRecord(pch::LOCALLY_SCOPED_EXTERNAL_DECLS, |
Douglas Gregor | 14c22f2 | 2009-04-22 22:18:58 +0000 | [diff] [blame] | 2165 | LocallyScopedExternalDecls); |
Douglas Gregor | b81c170 | 2009-04-27 20:06:05 +0000 | [diff] [blame] | 2166 | |
| 2167 | // Write the record containing ext_vector type names. |
| 2168 | if (!ExtVectorDecls.empty()) |
| 2169 | Stream.EmitRecord(pch::EXT_VECTOR_DECLS, ExtVectorDecls); |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2170 | |
Douglas Gregor | 3e1af84 | 2009-04-17 22:13:46 +0000 | [diff] [blame] | 2171 | // Some simple statistics |
Douglas Gregor | ad1de00 | 2009-04-18 05:55:16 +0000 | [diff] [blame] | 2172 | Record.clear(); |
Douglas Gregor | 3e1af84 | 2009-04-17 22:13:46 +0000 | [diff] [blame] | 2173 | Record.push_back(NumStatements); |
Douglas Gregor | 37e2684 | 2009-04-21 23:56:24 +0000 | [diff] [blame] | 2174 | Record.push_back(NumMacros); |
Douglas Gregor | 2512308 | 2009-04-22 22:34:57 +0000 | [diff] [blame] | 2175 | Record.push_back(NumLexicalDeclContexts); |
| 2176 | Record.push_back(NumVisibleDeclContexts); |
Douglas Gregor | 3e1af84 | 2009-04-17 22:13:46 +0000 | [diff] [blame] | 2177 | Stream.EmitRecord(pch::STATISTICS, Record); |
Douglas Gregor | c9490c0 | 2009-04-16 22:23:12 +0000 | [diff] [blame] | 2178 | Stream.ExitBlock(); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2179 | } |
| 2180 | |
| 2181 | void PCHWriter::AddSourceLocation(SourceLocation Loc, RecordData &Record) { |
| 2182 | Record.push_back(Loc.getRawEncoding()); |
| 2183 | } |
| 2184 | |
| 2185 | void PCHWriter::AddAPInt(const llvm::APInt &Value, RecordData &Record) { |
| 2186 | Record.push_back(Value.getBitWidth()); |
| 2187 | unsigned N = Value.getNumWords(); |
| 2188 | const uint64_t* Words = Value.getRawData(); |
| 2189 | for (unsigned I = 0; I != N; ++I) |
| 2190 | Record.push_back(Words[I]); |
| 2191 | } |
| 2192 | |
Douglas Gregor | 0a2b45e | 2009-04-13 18:14:40 +0000 | [diff] [blame] | 2193 | void PCHWriter::AddAPSInt(const llvm::APSInt &Value, RecordData &Record) { |
| 2194 | Record.push_back(Value.isUnsigned()); |
| 2195 | AddAPInt(Value, Record); |
| 2196 | } |
| 2197 | |
Douglas Gregor | 17fc223 | 2009-04-14 21:55:33 +0000 | [diff] [blame] | 2198 | void PCHWriter::AddAPFloat(const llvm::APFloat &Value, RecordData &Record) { |
| 2199 | AddAPInt(Value.bitcastToAPInt(), Record); |
| 2200 | } |
| 2201 | |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2202 | void PCHWriter::AddIdentifierRef(const IdentifierInfo *II, RecordData &Record) { |
Douglas Gregor | 2deaea3 | 2009-04-22 18:49:13 +0000 | [diff] [blame] | 2203 | Record.push_back(getIdentifierRef(II)); |
| 2204 | } |
| 2205 | |
| 2206 | pch::IdentID PCHWriter::getIdentifierRef(const IdentifierInfo *II) { |
| 2207 | if (II == 0) |
| 2208 | return 0; |
Douglas Gregor | afaf308 | 2009-04-11 00:14:32 +0000 | [diff] [blame] | 2209 | |
| 2210 | pch::IdentID &ID = IdentifierIDs[II]; |
| 2211 | if (ID == 0) |
| 2212 | ID = IdentifierIDs.size(); |
Douglas Gregor | 2deaea3 | 2009-04-22 18:49:13 +0000 | [diff] [blame] | 2213 | return ID; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2214 | } |
| 2215 | |
Douglas Gregor | 6a5a23f | 2010-03-19 21:51:54 +0000 | [diff] [blame] | 2216 | pch::IdentID PCHWriter::getMacroDefinitionID(MacroDefinition *MD) { |
| 2217 | if (MD == 0) |
| 2218 | return 0; |
| 2219 | |
| 2220 | pch::IdentID &ID = MacroDefinitions[MD]; |
| 2221 | if (ID == 0) |
| 2222 | ID = MacroDefinitions.size(); |
| 2223 | return ID; |
| 2224 | } |
| 2225 | |
Steve Naroff | 90cd1bb | 2009-04-23 10:39:46 +0000 | [diff] [blame] | 2226 | void PCHWriter::AddSelectorRef(const Selector SelRef, RecordData &Record) { |
| 2227 | if (SelRef.getAsOpaquePtr() == 0) { |
| 2228 | Record.push_back(0); |
| 2229 | return; |
| 2230 | } |
| 2231 | |
| 2232 | pch::SelectorID &SID = SelectorIDs[SelRef]; |
| 2233 | if (SID == 0) { |
| 2234 | SID = SelectorIDs.size(); |
| 2235 | SelVector.push_back(SelRef); |
| 2236 | } |
| 2237 | Record.push_back(SID); |
| 2238 | } |
| 2239 | |
John McCall | 833ca99 | 2009-10-29 08:12:44 +0000 | [diff] [blame] | 2240 | void PCHWriter::AddTemplateArgumentLoc(const TemplateArgumentLoc &Arg, |
| 2241 | RecordData &Record) { |
| 2242 | switch (Arg.getArgument().getKind()) { |
| 2243 | case TemplateArgument::Expression: |
| 2244 | AddStmt(Arg.getLocInfo().getAsExpr()); |
| 2245 | break; |
| 2246 | case TemplateArgument::Type: |
John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 2247 | AddTypeSourceInfo(Arg.getLocInfo().getAsTypeSourceInfo(), Record); |
John McCall | 833ca99 | 2009-10-29 08:12:44 +0000 | [diff] [blame] | 2248 | break; |
Douglas Gregor | 788cd06 | 2009-11-11 01:00:40 +0000 | [diff] [blame] | 2249 | case TemplateArgument::Template: |
| 2250 | Record.push_back( |
| 2251 | Arg.getTemplateQualifierRange().getBegin().getRawEncoding()); |
| 2252 | Record.push_back(Arg.getTemplateQualifierRange().getEnd().getRawEncoding()); |
| 2253 | Record.push_back(Arg.getTemplateNameLoc().getRawEncoding()); |
| 2254 | break; |
John McCall | 833ca99 | 2009-10-29 08:12:44 +0000 | [diff] [blame] | 2255 | case TemplateArgument::Null: |
| 2256 | case TemplateArgument::Integral: |
| 2257 | case TemplateArgument::Declaration: |
| 2258 | case TemplateArgument::Pack: |
| 2259 | break; |
| 2260 | } |
| 2261 | } |
| 2262 | |
John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 2263 | void PCHWriter::AddTypeSourceInfo(TypeSourceInfo *TInfo, RecordData &Record) { |
| 2264 | if (TInfo == 0) { |
John McCall | a1ee0c5 | 2009-10-16 21:56:05 +0000 | [diff] [blame] | 2265 | AddTypeRef(QualType(), Record); |
| 2266 | return; |
| 2267 | } |
| 2268 | |
John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 2269 | AddTypeRef(TInfo->getType(), Record); |
John McCall | a1ee0c5 | 2009-10-16 21:56:05 +0000 | [diff] [blame] | 2270 | TypeLocWriter TLW(*this, Record); |
John McCall | a93c934 | 2009-12-07 02:54:59 +0000 | [diff] [blame] | 2271 | for (TypeLoc TL = TInfo->getTypeLoc(); !TL.isNull(); TL = TL.getNextTypeLoc()) |
Kovarththanan Rajaratnam | 11a18f1 | 2010-03-14 07:06:50 +0000 | [diff] [blame] | 2272 | TLW.Visit(TL); |
John McCall | a1ee0c5 | 2009-10-16 21:56:05 +0000 | [diff] [blame] | 2273 | } |
| 2274 | |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2275 | void PCHWriter::AddTypeRef(QualType T, RecordData &Record) { |
| 2276 | if (T.isNull()) { |
| 2277 | Record.push_back(pch::PREDEF_TYPE_NULL_ID); |
| 2278 | return; |
| 2279 | } |
| 2280 | |
Douglas Gregor | a4923eb | 2009-11-16 21:35:15 +0000 | [diff] [blame] | 2281 | unsigned FastQuals = T.getLocalFastQualifiers(); |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 2282 | T.removeFastQualifiers(); |
| 2283 | |
Douglas Gregor | a4923eb | 2009-11-16 21:35:15 +0000 | [diff] [blame] | 2284 | if (T.hasLocalNonFastQualifiers()) { |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 2285 | pch::TypeID &ID = TypeIDs[T]; |
| 2286 | if (ID == 0) { |
| 2287 | // We haven't seen these qualifiers applied to this type before. |
| 2288 | // Assign it a new ID. This is the only time we enqueue a |
| 2289 | // qualified type, and it has no CV qualifiers. |
| 2290 | ID = NextTypeID++; |
Douglas Gregor | 61d60ee | 2009-10-17 00:13:19 +0000 | [diff] [blame] | 2291 | DeclTypesToEmit.push(T); |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 2292 | } |
Kovarththanan Rajaratnam | 11a18f1 | 2010-03-14 07:06:50 +0000 | [diff] [blame] | 2293 | |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 2294 | // Encode the type qualifiers in the type reference. |
| 2295 | Record.push_back((ID << Qualifiers::FastWidth) | FastQuals); |
| 2296 | return; |
| 2297 | } |
| 2298 | |
Douglas Gregor | a4923eb | 2009-11-16 21:35:15 +0000 | [diff] [blame] | 2299 | assert(!T.hasLocalQualifiers()); |
Kovarththanan Rajaratnam | 11a18f1 | 2010-03-14 07:06:50 +0000 | [diff] [blame] | 2300 | |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2301 | if (const BuiltinType *BT = dyn_cast<BuiltinType>(T.getTypePtr())) { |
Douglas Gregor | e1d918e | 2009-04-10 23:10:45 +0000 | [diff] [blame] | 2302 | pch::TypeID ID = 0; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2303 | switch (BT->getKind()) { |
| 2304 | case BuiltinType::Void: ID = pch::PREDEF_TYPE_VOID_ID; break; |
| 2305 | case BuiltinType::Bool: ID = pch::PREDEF_TYPE_BOOL_ID; break; |
| 2306 | case BuiltinType::Char_U: ID = pch::PREDEF_TYPE_CHAR_U_ID; break; |
| 2307 | case BuiltinType::UChar: ID = pch::PREDEF_TYPE_UCHAR_ID; break; |
| 2308 | case BuiltinType::UShort: ID = pch::PREDEF_TYPE_USHORT_ID; break; |
| 2309 | case BuiltinType::UInt: ID = pch::PREDEF_TYPE_UINT_ID; break; |
| 2310 | case BuiltinType::ULong: ID = pch::PREDEF_TYPE_ULONG_ID; break; |
| 2311 | case BuiltinType::ULongLong: ID = pch::PREDEF_TYPE_ULONGLONG_ID; break; |
Chris Lattner | 2df9ced | 2009-04-30 02:43:43 +0000 | [diff] [blame] | 2312 | case BuiltinType::UInt128: ID = pch::PREDEF_TYPE_UINT128_ID; break; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2313 | case BuiltinType::Char_S: ID = pch::PREDEF_TYPE_CHAR_S_ID; break; |
| 2314 | case BuiltinType::SChar: ID = pch::PREDEF_TYPE_SCHAR_ID; break; |
| 2315 | case BuiltinType::WChar: ID = pch::PREDEF_TYPE_WCHAR_ID; break; |
| 2316 | case BuiltinType::Short: ID = pch::PREDEF_TYPE_SHORT_ID; break; |
| 2317 | case BuiltinType::Int: ID = pch::PREDEF_TYPE_INT_ID; break; |
| 2318 | case BuiltinType::Long: ID = pch::PREDEF_TYPE_LONG_ID; break; |
| 2319 | case BuiltinType::LongLong: ID = pch::PREDEF_TYPE_LONGLONG_ID; break; |
Chris Lattner | 2df9ced | 2009-04-30 02:43:43 +0000 | [diff] [blame] | 2320 | case BuiltinType::Int128: ID = pch::PREDEF_TYPE_INT128_ID; break; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2321 | case BuiltinType::Float: ID = pch::PREDEF_TYPE_FLOAT_ID; break; |
| 2322 | case BuiltinType::Double: ID = pch::PREDEF_TYPE_DOUBLE_ID; break; |
| 2323 | case BuiltinType::LongDouble: ID = pch::PREDEF_TYPE_LONGDOUBLE_ID; break; |
Sebastian Redl | 6e8ed16 | 2009-05-10 18:38:11 +0000 | [diff] [blame] | 2324 | case BuiltinType::NullPtr: ID = pch::PREDEF_TYPE_NULLPTR_ID; break; |
Alisdair Meredith | f5c209d | 2009-07-14 06:30:34 +0000 | [diff] [blame] | 2325 | case BuiltinType::Char16: ID = pch::PREDEF_TYPE_CHAR16_ID; break; |
| 2326 | case BuiltinType::Char32: ID = pch::PREDEF_TYPE_CHAR32_ID; break; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2327 | case BuiltinType::Overload: ID = pch::PREDEF_TYPE_OVERLOAD_ID; break; |
| 2328 | case BuiltinType::Dependent: ID = pch::PREDEF_TYPE_DEPENDENT_ID; break; |
Steve Naroff | de2e22d | 2009-07-15 18:40:39 +0000 | [diff] [blame] | 2329 | case BuiltinType::ObjCId: ID = pch::PREDEF_TYPE_OBJC_ID; break; |
| 2330 | case BuiltinType::ObjCClass: ID = pch::PREDEF_TYPE_OBJC_CLASS; break; |
Fariborz Jahanian | 13dcd00 | 2009-11-21 19:53:08 +0000 | [diff] [blame] | 2331 | case BuiltinType::ObjCSel: ID = pch::PREDEF_TYPE_OBJC_SEL; break; |
Anders Carlsson | e89d159 | 2009-06-26 18:41:36 +0000 | [diff] [blame] | 2332 | case BuiltinType::UndeducedAuto: |
| 2333 | assert(0 && "Should not see undeduced auto here"); |
| 2334 | break; |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2335 | } |
| 2336 | |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 2337 | Record.push_back((ID << Qualifiers::FastWidth) | FastQuals); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2338 | return; |
| 2339 | } |
| 2340 | |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 2341 | pch::TypeID &ID = TypeIDs[T]; |
Douglas Gregor | 366809a | 2009-04-26 03:49:13 +0000 | [diff] [blame] | 2342 | if (ID == 0) { |
| 2343 | // 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] | 2344 | // into the queue of types to emit. |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2345 | ID = NextTypeID++; |
Douglas Gregor | 61d60ee | 2009-10-17 00:13:19 +0000 | [diff] [blame] | 2346 | DeclTypesToEmit.push(T); |
Douglas Gregor | 366809a | 2009-04-26 03:49:13 +0000 | [diff] [blame] | 2347 | } |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2348 | |
| 2349 | // Encode the type qualifiers in the type reference. |
John McCall | 0953e76 | 2009-09-24 19:53:00 +0000 | [diff] [blame] | 2350 | Record.push_back((ID << Qualifiers::FastWidth) | FastQuals); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2351 | } |
| 2352 | |
| 2353 | void PCHWriter::AddDeclRef(const Decl *D, RecordData &Record) { |
| 2354 | if (D == 0) { |
| 2355 | Record.push_back(0); |
| 2356 | return; |
| 2357 | } |
| 2358 | |
Douglas Gregor | 8038d51 | 2009-04-10 17:25:41 +0000 | [diff] [blame] | 2359 | pch::DeclID &ID = DeclIDs[D]; |
Mike Stump | 1eb4433 | 2009-09-09 15:08:12 +0000 | [diff] [blame] | 2360 | if (ID == 0) { |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2361 | // We haven't seen this declaration before. Give it a new ID and |
| 2362 | // enqueue it in the list of declarations to emit. |
| 2363 | ID = DeclIDs.size(); |
Douglas Gregor | 61d60ee | 2009-10-17 00:13:19 +0000 | [diff] [blame] | 2364 | DeclTypesToEmit.push(const_cast<Decl *>(D)); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2365 | } |
| 2366 | |
| 2367 | Record.push_back(ID); |
| 2368 | } |
| 2369 | |
Douglas Gregor | 3251ceb | 2009-04-20 20:36:09 +0000 | [diff] [blame] | 2370 | pch::DeclID PCHWriter::getDeclID(const Decl *D) { |
| 2371 | if (D == 0) |
| 2372 | return 0; |
| 2373 | |
| 2374 | assert(DeclIDs.find(D) != DeclIDs.end() && "Declaration not emitted!"); |
| 2375 | return DeclIDs[D]; |
| 2376 | } |
| 2377 | |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2378 | void PCHWriter::AddDeclarationName(DeclarationName Name, RecordData &Record) { |
Chris Lattner | ea5ce47 | 2009-04-27 07:35:58 +0000 | [diff] [blame] | 2379 | // FIXME: Emit a stable enum for NameKind. 0 = Identifier etc. |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2380 | Record.push_back(Name.getNameKind()); |
| 2381 | switch (Name.getNameKind()) { |
| 2382 | case DeclarationName::Identifier: |
| 2383 | AddIdentifierRef(Name.getAsIdentifierInfo(), Record); |
| 2384 | break; |
| 2385 | |
| 2386 | case DeclarationName::ObjCZeroArgSelector: |
| 2387 | case DeclarationName::ObjCOneArgSelector: |
| 2388 | case DeclarationName::ObjCMultiArgSelector: |
Steve Naroff | 90cd1bb | 2009-04-23 10:39:46 +0000 | [diff] [blame] | 2389 | AddSelectorRef(Name.getObjCSelector(), Record); |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2390 | break; |
| 2391 | |
| 2392 | case DeclarationName::CXXConstructorName: |
| 2393 | case DeclarationName::CXXDestructorName: |
| 2394 | case DeclarationName::CXXConversionFunctionName: |
| 2395 | AddTypeRef(Name.getCXXNameType(), Record); |
| 2396 | break; |
| 2397 | |
| 2398 | case DeclarationName::CXXOperatorName: |
| 2399 | Record.push_back(Name.getCXXOverloadedOperator()); |
| 2400 | break; |
| 2401 | |
Sean Hunt | 3e518bd | 2009-11-29 07:34:05 +0000 | [diff] [blame] | 2402 | case DeclarationName::CXXLiteralOperatorName: |
| 2403 | AddIdentifierRef(Name.getCXXLiteralIdentifier(), Record); |
| 2404 | break; |
| 2405 | |
Douglas Gregor | 2cf2634 | 2009-04-09 22:27:44 +0000 | [diff] [blame] | 2406 | case DeclarationName::CXXUsingDirective: |
| 2407 | // No extra data to emit |
| 2408 | break; |
| 2409 | } |
| 2410 | } |