Home
last modified time | relevance | path

Searched refs:LinkingContext (Results 1 – 13 of 13) sorted by relevance

/freebsd-12.1/contrib/llvm/tools/lld/lib/Core/
H A DLinkingContext.cpp19 LinkingContext::LinkingContext() = default;
21 LinkingContext::~LinkingContext() = default;
23 bool LinkingContext::validate() { in validate()
27 llvm::Error LinkingContext::writeFile(const File &linkedFile) const { in writeFile()
31 std::unique_ptr<File> LinkingContext::createEntrySymbolFile() const { in createEntrySymbolFile()
36 LinkingContext::createEntrySymbolFile(StringRef filename) const { in createEntrySymbolFile()
46 std::unique_ptr<File> LinkingContext::createUndefinedSymbolFile() const { in createUndefinedSymbolFile()
51 LinkingContext::createUndefinedSymbolFile(StringRef filename) const { in createUndefinedSymbolFile()
62 void LinkingContext::createInternalFiles( in createInternalFiles()
H A DCMakeLists.txt9 LinkingContext.cpp
/freebsd-12.1/contrib/llvm/tools/lld/include/lld/Core/
H A DResolver.h29 class LinkingContext; variable
35 Resolver(LinkingContext &ctx) : _ctx(ctx), _result(new MergedFile()) {} in Resolver()
80 LinkingContext &_ctx;
H A DWriter.h20 class LinkingContext; variable
44 std::unique_ptr<Writer> createWriterYAML(const LinkingContext &);
H A DLinkingContext.h38 class LinkingContext {
40 virtual ~LinkingContext();
221 LinkingContext(); // Must be subclassed
H A DSymbolTable.h25 class LinkingContext; variable
H A DReader.h32 class LinkingContext; variable
H A DFile.h28 class LinkingContext; variable
/freebsd-12.1/contrib/llvm/tools/lld/include/lld/ReaderWriter/
H A DYamlContext.h20 class LinkingContext; variable
34 const LinkingContext *_ctx = nullptr;
H A DMachOLinkingContext.h34 class MachOLinkingContext : public LinkingContext {
/freebsd-12.1/usr.bin/clang/lld/
H A DMakefile72 SRCS+= lib/Core/LinkingContext.cpp
/freebsd-12.1/contrib/llvm/tools/lld/lib/ReaderWriter/YAML/
H A DReaderWriterYAML.cpp1298 Writer(const LinkingContext &context) : _ctx(context) {} in Writer()
1321 const LinkingContext &_ctx;
1400 std::unique_ptr<Writer> createWriterYAML(const LinkingContext &context) { in createWriterYAML()
/freebsd-12.1/contrib/llvm/tools/lld/lib/Driver/
H A DDarwinLdDriver.cpp302 static void parseLLVMOptions(const LinkingContext &ctx) { in parseLLVMOptions()