]> granicus.if.org Git - clang/commitdiff
Implemented serialization of QualTypes within ASTContext. Clarified
authorTed Kremenek <kremenek@apple.com>
Thu, 1 Nov 2007 18:11:32 +0000 (18:11 +0000)
committerTed Kremenek <kremenek@apple.com>
Thu, 1 Nov 2007 18:11:32 +0000 (18:11 +0000)
ownership model of some type pointers.  Added FIXMEs to serialization.

Added comments to ASTContext indicating which variables we are intentionally
*not* serializing.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@43618 91177308-0d34-0410-b5e6-96231b3b80d8

AST/ASTContext.cpp
include/clang/AST/ASTContext.h

index acba398fb3e5321ec6cc85c57be6973a350b78a7..3ebc1af0cd8e7b0f4bcc567d0f6d8d14ac7d3d4f 100644 (file)
@@ -1419,9 +1419,17 @@ void ASTContext::Emit(llvm::Serializer& S) const {
   EmitSet(VectorTypes,S);
   EmitSet(FunctionTypeNoProtos,S);
   EmitSet(FunctionTypeProtos,S);
-  
   // FIXME: EmitSet(ObjcQualifiedInterfaceTypes,S);
-  // FIXME: RecourdLayoutInfo
+  
+  S.Emit(BuiltinVaListType);
+  S.Emit(ObjcIdType);
+  S.EmitPtr(IdStructType);
+  S.Emit(ObjcProtoType);
+  S.EmitPtr(ProtoStructType);
+  S.Emit(ObjcClassType);
+  S.EmitPtr(ClassStructType);
+  S.Emit(ObjcConstantStringType);
+  // FIXME: S.EmitOwnedPtr(CFConstantStringTypeDecl);
 }
 
 ASTContext* ASTContext::Materialize(llvm::Deserializer& D) {
@@ -1466,6 +1474,17 @@ ASTContext* ASTContext::Materialize(llvm::Deserializer& D) {
   ReadSet(A->VectorTypes, A->Types, D);
   ReadSet(A->FunctionTypeNoProtos, A->Types, D);
   ReadSet(A->FunctionTypeProtos, A->Types, D);
+  // ReadSet(A->ObjcQualifiedInterfaceTypes,D);
+  
+  D.Read(A->BuiltinVaListType);
+  D.Read(A->ObjcIdType);
+  D.ReadPtr(A->IdStructType);
+  D.Read(A->ObjcProtoType);
+  D.ReadPtr(A->ProtoStructType);
+  D.Read(A->ObjcClassType);
+  D.ReadPtr(A->ClassStructType);
+  D.Read(A->ObjcConstantStringType);
+  // FIXME: A->CFConstantStringTypeDecl = D.ReadOwnedPtr<RecordDecl>();
   
   return A;
 }
index d8dc9d49928d910a13145bd7f4726274f410bc45..e236f2a56b675c05b87eb7cf47d426a29fb91093 100644 (file)
@@ -42,6 +42,9 @@ class ASTContext {
   llvm::FoldingSet<FunctionTypeNoProto> FunctionTypeNoProtos;
   llvm::FoldingSet<FunctionTypeProto> FunctionTypeProtos;
   llvm::FoldingSet<ObjcQualifiedInterfaceType> ObjcQualifiedInterfaceTypes;
+  
+  /// RecordLayoutInfo - A cache mapping from RecordDecls to RecordLayoutInfo.
+  ///  This is lazily created.  This is intentionally not serialized.
   llvm::DenseMap<const RecordDecl*, const RecordLayout*> RecordLayoutInfo;
     
   /// BuiltinVaListType - built-in va list type.
@@ -73,6 +76,10 @@ public:
   TargetInfo &Target;
   IdentifierTable &Idents;
   SelectorTable &Selectors;
+  
+  /// This is intentionally not serialized.  It is populated by the
+  /// ASTContext ctor, and there are no external pointers/references to
+  /// internal variables of BuiltinInfo.
   Builtin::Context BuiltinInfo;
 
   // Builtin Types.