blob: 27242d54da9d77bfd92e1feb5470b552d4d834b8 [file] [log] [blame]
Douglas Gregor98339b92011-08-25 20:47:51 +00001//===--- Module.cpp - Module description ------------------------*- C++ -*-===//
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 implements the Module class, which describes a module that has
11// been loaded from an AST file.
12//
13//===----------------------------------------------------------------------===//
14#include "clang/Serialization/Module.h"
Douglas Gregor98339b92011-08-25 20:47:51 +000015#include "ASTReaderInternals.h"
Chandler Carruth55fc8732012-12-04 09:13:33 +000016#include "llvm/Support/MemoryBuffer.h"
17#include "llvm/Support/raw_ostream.h"
Douglas Gregor98339b92011-08-25 20:47:51 +000018
19using namespace clang;
20using namespace serialization;
21using namespace reader;
22
Douglas Gregor057df202012-01-18 20:56:22 +000023ModuleFile::ModuleFile(ModuleKind Kind, unsigned Generation)
Argyrios Kyrtzidisd64c26f2012-10-03 01:58:42 +000024 : Kind(Kind), File(0), DirectlyImported(false),
25 Generation(Generation), SizeInBits(0),
Douglas Gregor98339b92011-08-25 20:47:51 +000026 LocalNumSLocEntries(0), SLocEntryBaseID(0),
27 SLocEntryBaseOffset(0), SLocEntryOffsets(0),
Douglas Gregor745e6f12012-10-19 00:38:02 +000028 LocalNumIdentifiers(0),
Douglas Gregor98339b92011-08-25 20:47:51 +000029 IdentifierOffsets(0), BaseIdentifierID(0), IdentifierTableData(0),
Douglas Gregora8235d62012-10-09 23:05:51 +000030 IdentifierLookupTable(0),
31 LocalNumMacros(0), MacroOffsets(0),
32 BasePreprocessedEntityID(0),
Argyrios Kyrtzidise24692b2011-09-15 18:02:56 +000033 PreprocessedEntityOffsets(0), NumPreprocessedEntities(0),
34 LocalNumHeaderFileInfos(0),
Douglas Gregor98339b92011-08-25 20:47:51 +000035 HeaderFileInfoTableData(0), HeaderFileInfoTable(0),
Benjamin Kramer4a082682011-12-27 11:15:04 +000036 HeaderFileFrameworkStrings(0), LocalNumSubmodules(0), BaseSubmoduleID(0),
Douglas Gregor98339b92011-08-25 20:47:51 +000037 LocalNumSelectors(0), SelectorOffsets(0), BaseSelectorID(0),
38 SelectorLookupTableData(0), SelectorLookupTable(0), LocalNumDecls(0),
39 DeclOffsets(0), BaseDeclID(0),
40 LocalNumCXXBaseSpecifiers(0), CXXBaseSpecifiersOffsets(0),
Argyrios Kyrtzidis2093e0b2012-10-02 21:09:13 +000041 FileSortedDecls(0), NumFileSortedDecls(0),
42 RedeclarationsMap(0), LocalNumRedeclarationsInMap(0),
Douglas Gregorcff9f262012-01-27 01:47:08 +000043 ObjCCategoriesMap(0), LocalNumObjCCategoriesInMap(0),
Argyrios Kyrtzidis4182ed62012-10-31 20:59:50 +000044 LocalNumTypes(0), TypeOffsets(0), BaseTypeIndex(0)
Douglas Gregor98339b92011-08-25 20:47:51 +000045{}
46
Douglas Gregor1a4761e2011-11-30 23:21:26 +000047ModuleFile::~ModuleFile() {
Douglas Gregor98339b92011-08-25 20:47:51 +000048 for (DeclContextInfosMap::iterator I = DeclContextInfos.begin(),
49 E = DeclContextInfos.end();
50 I != E; ++I) {
51 if (I->second.NameLookupTableData)
Benjamin Kramerb1758c62012-04-15 12:36:49 +000052 delete I->second.NameLookupTableData;
Douglas Gregor98339b92011-08-25 20:47:51 +000053 }
54
55 delete static_cast<ASTIdentifierLookupTable *>(IdentifierLookupTable);
56 delete static_cast<HeaderFileInfoLookupTable *>(HeaderFileInfoTable);
57 delete static_cast<ASTSelectorLookupTable *>(SelectorLookupTable);
58}
59
60template<typename Key, typename Offset, unsigned InitialCapacity>
61static void
62dumpLocalRemap(StringRef Name,
63 const ContinuousRangeMap<Key, Offset, InitialCapacity> &Map) {
64 if (Map.begin() == Map.end())
65 return;
66
67 typedef ContinuousRangeMap<Key, Offset, InitialCapacity> MapType;
68 llvm::errs() << " " << Name << ":\n";
69 for (typename MapType::const_iterator I = Map.begin(), IEnd = Map.end();
70 I != IEnd; ++I) {
71 llvm::errs() << " " << I->first << " -> " << I->second << "\n";
72 }
73}
74
Douglas Gregor1a4761e2011-11-30 23:21:26 +000075void ModuleFile::dump() {
Douglas Gregor98339b92011-08-25 20:47:51 +000076 llvm::errs() << "\nModule: " << FileName << "\n";
77 if (!Imports.empty()) {
78 llvm::errs() << " Imports: ";
79 for (unsigned I = 0, N = Imports.size(); I != N; ++I) {
80 if (I)
81 llvm::errs() << ", ";
82 llvm::errs() << Imports[I]->FileName;
83 }
84 llvm::errs() << "\n";
85 }
86
87 // Remapping tables.
88 llvm::errs() << " Base source location offset: " << SLocEntryBaseOffset
89 << '\n';
90 dumpLocalRemap("Source location offset local -> global map", SLocRemap);
91
92 llvm::errs() << " Base identifier ID: " << BaseIdentifierID << '\n'
93 << " Number of identifiers: " << LocalNumIdentifiers << '\n';
94 dumpLocalRemap("Identifier ID local -> global map", IdentifierRemap);
Douglas Gregor26ced122011-12-01 00:59:36 +000095
Douglas Gregora8235d62012-10-09 23:05:51 +000096 llvm::errs() << " Base macro ID: " << BaseMacroID << '\n'
97 << " Number of macros: " << LocalNumMacros << '\n';
98 dumpLocalRemap("Macro ID local -> global map", MacroRemap);
99
Douglas Gregor26ced122011-12-01 00:59:36 +0000100 llvm::errs() << " Base submodule ID: " << BaseSubmoduleID << '\n'
101 << " Number of submodules: " << LocalNumSubmodules << '\n';
102 dumpLocalRemap("Submodule ID local -> global map", SubmoduleRemap);
103
Douglas Gregor98339b92011-08-25 20:47:51 +0000104 llvm::errs() << " Base selector ID: " << BaseSelectorID << '\n'
105 << " Number of selectors: " << LocalNumSelectors << '\n';
106 dumpLocalRemap("Selector ID local -> global map", SelectorRemap);
107
108 llvm::errs() << " Base preprocessed entity ID: " << BasePreprocessedEntityID
109 << '\n'
110 << " Number of preprocessed entities: "
Argyrios Kyrtzidise24692b2011-09-15 18:02:56 +0000111 << NumPreprocessedEntities << '\n';
Douglas Gregor98339b92011-08-25 20:47:51 +0000112 dumpLocalRemap("Preprocessed entity ID local -> global map",
113 PreprocessedEntityRemap);
114
Douglas Gregor98339b92011-08-25 20:47:51 +0000115 llvm::errs() << " Base type index: " << BaseTypeIndex << '\n'
116 << " Number of types: " << LocalNumTypes << '\n';
117 dumpLocalRemap("Type index local -> global map", TypeRemap);
118
119 llvm::errs() << " Base decl ID: " << BaseDeclID << '\n'
120 << " Number of decls: " << LocalNumDecls << '\n';
121 dumpLocalRemap("Decl ID local -> global map", DeclRemap);
122}