mirror of
https://github.com/RPCS3/llvm.git
synced 2026-01-31 01:25:19 +01:00
Summary: The cumulative size of the bitcode files for a very large application can be huge, particularly with -g. In a distributed build environment, all of these files must be sent to the remote build node that performs the thin link step, and this can exceed size limits. The thin link actually only needs the summary along with a bitcode symbol table. Until we have a proper bitcode symbol table, simply stripping the debug metadata results in significant size reduction. Add support for an option to additionally emit minimized bitcode modules, just for use in the thin link step, which for now just strips all debug metadata. I plan to add a cc1 option so this can be invoked easily during the compile step. However, care must be taken to ensure that these minimized thin link bitcode files produce the same index as with the original bitcode files, as these original bitcode files will be used in the backends. Specifically: 1) The module hash used for caching is typically produced by hashing the written bitcode, and we want to include the hash that would correspond to the original bitcode file. This is because we want to ensure that changes in the stripped portions affect caching. Added plumbing to emit the same module hash in the minimized thin link bitcode file. 2) The module paths in the index are constructed from the module ID of each thin linked bitcode, and typically is automatically generated from the input file path. This is the path used for finding the modules to import from, and obviously we need this to point to the original bitcode files. Added gold-plugin support to take a suffix replacement during the thin link that is used to override the identifier on the MemoryBufferRef constructed from the loaded thin link bitcode file. The assumption is that the build system can specify that the minimized bitcode file has a name that is similar but uses a different suffix (e.g. out.thinlink.bc instead of out.o). Added various tests to ensure that we get identical index files out of the thin link step. Reviewers: mehdi_amini, pcc Subscribers: Prazek, llvm-commits Differential Revision: https://reviews.llvm.org/D31027 git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@298638 91177308-0d34-0410-b5e6-96231b3b80d8
100 lines
3.6 KiB
C++
100 lines
3.6 KiB
C++
//===- ModuleSummaryIndexObjectFile.h - Summary index file implementation -=//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// This file declares the ModuleSummaryIndexObjectFile template class.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef LLVM_OBJECT_MODULESUMMARYINDEXOBJECTFILE_H
|
|
#define LLVM_OBJECT_MODULESUMMARYINDEXOBJECTFILE_H
|
|
|
|
#include "llvm/IR/DiagnosticInfo.h"
|
|
#include "llvm/Object/SymbolicFile.h"
|
|
|
|
namespace llvm {
|
|
class ModuleSummaryIndex;
|
|
class Module;
|
|
|
|
namespace object {
|
|
class ObjectFile;
|
|
|
|
/// This class is used to read just the module summary index related
|
|
/// sections out of the given object (which may contain a single module's
|
|
/// bitcode or be a combined index bitcode file). It builds a ModuleSummaryIndex
|
|
/// object.
|
|
class ModuleSummaryIndexObjectFile : public SymbolicFile {
|
|
std::unique_ptr<ModuleSummaryIndex> Index;
|
|
|
|
public:
|
|
ModuleSummaryIndexObjectFile(MemoryBufferRef Object,
|
|
std::unique_ptr<ModuleSummaryIndex> I);
|
|
~ModuleSummaryIndexObjectFile() override;
|
|
|
|
// TODO: Walk through GlobalValueMap entries for symbols.
|
|
// However, currently these interfaces are not used by any consumers.
|
|
void moveSymbolNext(DataRefImpl &Symb) const override {
|
|
llvm_unreachable("not implemented");
|
|
}
|
|
std::error_code printSymbolName(raw_ostream &OS,
|
|
DataRefImpl Symb) const override {
|
|
llvm_unreachable("not implemented");
|
|
return std::error_code();
|
|
}
|
|
uint32_t getSymbolFlags(DataRefImpl Symb) const override {
|
|
llvm_unreachable("not implemented");
|
|
return 0;
|
|
}
|
|
basic_symbol_iterator symbol_begin() const override {
|
|
llvm_unreachable("not implemented");
|
|
return basic_symbol_iterator(BasicSymbolRef());
|
|
}
|
|
basic_symbol_iterator symbol_end() const override {
|
|
llvm_unreachable("not implemented");
|
|
return basic_symbol_iterator(BasicSymbolRef());
|
|
}
|
|
|
|
const ModuleSummaryIndex &getIndex() const {
|
|
return const_cast<ModuleSummaryIndexObjectFile *>(this)->getIndex();
|
|
}
|
|
ModuleSummaryIndex &getIndex() { return *Index; }
|
|
std::unique_ptr<ModuleSummaryIndex> takeIndex();
|
|
|
|
static inline bool classof(const Binary *v) {
|
|
return v->isModuleSummaryIndex();
|
|
}
|
|
|
|
/// \brief Finds and returns bitcode embedded in the given object file, or an
|
|
/// error code if not found.
|
|
static ErrorOr<MemoryBufferRef> findBitcodeInObject(const ObjectFile &Obj);
|
|
|
|
/// \brief Finds and returns bitcode in the given memory buffer (which may
|
|
/// be either a bitcode file or a native object file with embedded bitcode),
|
|
/// or an error code if not found.
|
|
static ErrorOr<MemoryBufferRef>
|
|
findBitcodeInMemBuffer(MemoryBufferRef Object);
|
|
|
|
/// \brief Parse module summary index in the given memory buffer.
|
|
/// Return new ModuleSummaryIndexObjectFile instance containing parsed module
|
|
/// summary/index.
|
|
static Expected<std::unique_ptr<ModuleSummaryIndexObjectFile>>
|
|
create(MemoryBufferRef Object);
|
|
};
|
|
}
|
|
|
|
/// Parse the module summary index out of an IR file and return the module
|
|
/// summary index object if found, or nullptr if not. If Identifier is
|
|
/// non-empty, it is used as the module ID (module path) in the resulting
|
|
/// index. This can be used when the index is being read from a file
|
|
/// containing minimized bitcode just for the thin link.
|
|
Expected<std::unique_ptr<ModuleSummaryIndex>>
|
|
getModuleSummaryIndexForFile(StringRef Path, StringRef Identifier = "");
|
|
}
|
|
|
|
#endif
|