2018-04-12 04:57:28 +08:00
|
|
|
//===- Module.cpp - Module description ------------------------------------===//
|
2011-08-26 04:47:51 +08:00
|
|
|
//
|
2019-01-19 16:50:56 +08:00
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2011-08-26 04:47:51 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file implements the Module class, which describes a module that has
|
|
|
|
// been loaded from an AST file.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2018-04-12 04:57:28 +08:00
|
|
|
|
2011-08-26 04:47:51 +08:00
|
|
|
#include "clang/Serialization/Module.h"
|
|
|
|
#include "ASTReaderInternals.h"
|
2018-04-12 04:57:28 +08:00
|
|
|
#include "clang/Serialization/ContinuousRangeMap.h"
|
|
|
|
#include "llvm/ADT/StringRef.h"
|
|
|
|
#include "llvm/Support/Compiler.h"
|
2012-12-04 17:13:33 +08:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2011-08-26 04:47:51 +08:00
|
|
|
|
|
|
|
using namespace clang;
|
|
|
|
using namespace serialization;
|
|
|
|
using namespace reader;
|
|
|
|
|
2011-12-01 07:21:26 +08:00
|
|
|
ModuleFile::~ModuleFile() {
|
2011-08-26 04:47:51 +08:00
|
|
|
delete static_cast<ASTIdentifierLookupTable *>(IdentifierLookupTable);
|
|
|
|
delete static_cast<HeaderFileInfoLookupTable *>(HeaderFileInfoTable);
|
|
|
|
delete static_cast<ASTSelectorLookupTable *>(SelectorLookupTable);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename Key, typename Offset, unsigned InitialCapacity>
|
2018-07-31 03:24:48 +08:00
|
|
|
static void
|
2011-08-26 04:47:51 +08:00
|
|
|
dumpLocalRemap(StringRef Name,
|
|
|
|
const ContinuousRangeMap<Key, Offset, InitialCapacity> &Map) {
|
|
|
|
if (Map.begin() == Map.end())
|
|
|
|
return;
|
2018-07-31 03:24:48 +08:00
|
|
|
|
2018-04-12 04:57:28 +08:00
|
|
|
using MapType = ContinuousRangeMap<Key, Offset, InitialCapacity>;
|
|
|
|
|
2011-08-26 04:47:51 +08:00
|
|
|
llvm::errs() << " " << Name << ":\n";
|
2018-07-31 03:24:48 +08:00
|
|
|
for (typename MapType::const_iterator I = Map.begin(), IEnd = Map.end();
|
2011-08-26 04:47:51 +08:00
|
|
|
I != IEnd; ++I) {
|
|
|
|
llvm::errs() << " " << I->first << " -> " << I->second << "\n";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-01-30 03:38:18 +08:00
|
|
|
LLVM_DUMP_METHOD void ModuleFile::dump() {
|
2011-08-26 04:47:51 +08:00
|
|
|
llvm::errs() << "\nModule: " << FileName << "\n";
|
|
|
|
if (!Imports.empty()) {
|
|
|
|
llvm::errs() << " Imports: ";
|
|
|
|
for (unsigned I = 0, N = Imports.size(); I != N; ++I) {
|
|
|
|
if (I)
|
|
|
|
llvm::errs() << ", ";
|
|
|
|
llvm::errs() << Imports[I]->FileName;
|
|
|
|
}
|
|
|
|
llvm::errs() << "\n";
|
|
|
|
}
|
2018-07-31 03:24:48 +08:00
|
|
|
|
2011-08-26 04:47:51 +08:00
|
|
|
// Remapping tables.
|
2018-07-31 03:24:48 +08:00
|
|
|
llvm::errs() << " Base source location offset: " << SLocEntryBaseOffset
|
2011-08-26 04:47:51 +08:00
|
|
|
<< '\n';
|
|
|
|
dumpLocalRemap("Source location offset local -> global map", SLocRemap);
|
2018-07-31 03:24:48 +08:00
|
|
|
|
2011-08-26 04:47:51 +08:00
|
|
|
llvm::errs() << " Base identifier ID: " << BaseIdentifierID << '\n'
|
|
|
|
<< " Number of identifiers: " << LocalNumIdentifiers << '\n';
|
|
|
|
dumpLocalRemap("Identifier ID local -> global map", IdentifierRemap);
|
2011-12-01 08:59:36 +08:00
|
|
|
|
2012-10-10 07:05:51 +08:00
|
|
|
llvm::errs() << " Base macro ID: " << BaseMacroID << '\n'
|
|
|
|
<< " Number of macros: " << LocalNumMacros << '\n';
|
|
|
|
dumpLocalRemap("Macro ID local -> global map", MacroRemap);
|
|
|
|
|
2011-12-01 08:59:36 +08:00
|
|
|
llvm::errs() << " Base submodule ID: " << BaseSubmoduleID << '\n'
|
|
|
|
<< " Number of submodules: " << LocalNumSubmodules << '\n';
|
|
|
|
dumpLocalRemap("Submodule ID local -> global map", SubmoduleRemap);
|
|
|
|
|
2011-08-26 04:47:51 +08:00
|
|
|
llvm::errs() << " Base selector ID: " << BaseSelectorID << '\n'
|
|
|
|
<< " Number of selectors: " << LocalNumSelectors << '\n';
|
|
|
|
dumpLocalRemap("Selector ID local -> global map", SelectorRemap);
|
2018-07-31 03:24:48 +08:00
|
|
|
|
2011-08-26 04:47:51 +08:00
|
|
|
llvm::errs() << " Base preprocessed entity ID: " << BasePreprocessedEntityID
|
2018-07-31 03:24:48 +08:00
|
|
|
<< '\n'
|
|
|
|
<< " Number of preprocessed entities: "
|
2011-09-16 02:02:56 +08:00
|
|
|
<< NumPreprocessedEntities << '\n';
|
2018-07-31 03:24:48 +08:00
|
|
|
dumpLocalRemap("Preprocessed entity ID local -> global map",
|
2011-08-26 04:47:51 +08:00
|
|
|
PreprocessedEntityRemap);
|
2018-07-31 03:24:48 +08:00
|
|
|
|
2011-08-26 04:47:51 +08:00
|
|
|
llvm::errs() << " Base type index: " << BaseTypeIndex << '\n'
|
|
|
|
<< " Number of types: " << LocalNumTypes << '\n';
|
|
|
|
dumpLocalRemap("Type index local -> global map", TypeRemap);
|
2018-07-31 03:24:48 +08:00
|
|
|
|
2011-08-26 04:47:51 +08:00
|
|
|
llvm::errs() << " Base decl ID: " << BaseDeclID << '\n'
|
|
|
|
<< " Number of decls: " << LocalNumDecls << '\n';
|
|
|
|
dumpLocalRemap("Decl ID local -> global map", DeclRemap);
|
|
|
|
}
|