Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

70 lines
2.3 KiB
C++
Raw Permalink Normal View History

2013-08-06 22:31:59 +00:00
//===- lib/Core/LinkingContext.cpp - Linker Context Object Interface ------===//
2013-01-22 02:15:30 +00: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
2013-01-22 02:15:30 +00:00
//
//===----------------------------------------------------------------------===//
2013-08-06 22:31:59 +00:00
#include "lld/Core/LinkingContext.h"
#include "lld/Core/File.h"
#include "lld/Core/Node.h"
2014-06-11 21:47:51 +00:00
#include "lld/Core/Simple.h"
#include "lld/Core/Writer.h"
#include <algorithm>
2013-01-22 02:15:30 +00:00
namespace lld {
2013-04-04 18:59:24 +00:00
LinkingContext::LinkingContext() = default;
2013-04-04 18:59:24 +00:00
LinkingContext::~LinkingContext() = default;
2013-01-22 02:15:30 +00:00
2018-06-12 02:34:04 +00:00
bool LinkingContext::validate() {
return validateImpl();
2013-06-11 12:36:05 +00:00
}
llvm::Error LinkingContext::writeFile(const File &linkedFile) const {
2013-08-06 22:31:59 +00:00
return this->writer().writeFile(linkedFile, _outputPath);
2013-01-22 02:15:30 +00:00
}
std::unique_ptr<File> LinkingContext::createEntrySymbolFile() const {
return createEntrySymbolFile("<command line option -e>");
2013-12-26 06:35:35 +00:00
}
std::unique_ptr<File>
LinkingContext::createEntrySymbolFile(StringRef filename) const {
if (entrySymbolName().empty())
return nullptr;
std::unique_ptr<SimpleFile> entryFile(new SimpleFile(filename,
File::kindEntryObject));
entryFile->addAtom(
*(new (_allocator) SimpleUndefinedAtom(*entryFile, entrySymbolName())));
return std::move(entryFile);
}
std::unique_ptr<File> LinkingContext::createUndefinedSymbolFile() const {
return createUndefinedSymbolFile("<command line option -u or --defsym>");
2013-12-26 06:35:35 +00:00
}
std::unique_ptr<File>
LinkingContext::createUndefinedSymbolFile(StringRef filename) const {
if (_initialUndefinedSymbols.empty())
return nullptr;
std::unique_ptr<SimpleFile> undefinedSymFile(
new SimpleFile(filename, File::kindUndefinedSymsObject));
for (StringRef undefSym : _initialUndefinedSymbols)
undefinedSymFile->addAtom(*(new (_allocator) SimpleUndefinedAtom(
*undefinedSymFile, undefSym)));
return std::move(undefinedSymFile);
}
void LinkingContext::createInternalFiles(
std::vector<std::unique_ptr<File>> &result) const {
2014-05-22 00:36:36 +00:00
if (std::unique_ptr<File> file = createEntrySymbolFile())
result.push_back(std::move(file));
if (std::unique_ptr<File> file = createUndefinedSymbolFile())
result.push_back(std::move(file));
}
2013-01-22 02:15:30 +00:00
} // end namespace lld