Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/lld/lib/Core/
H A DLinkingContext.cpp18 LinkingContext::LinkingContext() = default;
20 LinkingContext::~LinkingContext() = default;
22 bool LinkingContext::validate() { in validate()
26 llvm::Error LinkingContext::writeFile(const File &linkedFile) const { in writeFile()
30 std::unique_ptr<File> LinkingContext::createEntrySymbolFile() const { in createEntrySymbolFile()
35 LinkingContext::createEntrySymbolFile(StringRef filename) const { in createEntrySymbolFile()
45 std::unique_ptr<File> LinkingContext::createUndefinedSymbolFile() const { in createUndefinedSymbolFile()
50 LinkingContext::createUndefinedSymbolFile(StringRef filename) const { in createUndefinedSymbolFile()
61 void LinkingContext::createInternalFiles( in createInternalFiles()
/freebsd-13.1/contrib/llvm-project/lld/include/lld/Core/
H A DResolver.h28 class LinkingContext; variable
34 Resolver(LinkingContext &ctx) : _ctx(ctx), _result(new MergedFile()) {} in Resolver()
79 LinkingContext &_ctx;
H A DWriter.h19 class LinkingContext; variable
43 std::unique_ptr<Writer> createWriterYAML(const LinkingContext &);
H A DLinkingContext.h37 class LinkingContext {
39 virtual ~LinkingContext();
220 LinkingContext(); // Must be subclassed
H A DSymbolTable.h24 class LinkingContext; variable
H A DReader.h31 class LinkingContext; variable
H A DFile.h28 class LinkingContext; variable
/freebsd-13.1/contrib/llvm-project/lld/include/lld/ReaderWriter/
H A DYamlContext.h19 class LinkingContext; variable
33 const LinkingContext *_ctx = nullptr;
H A DMachOLinkingContext.h33 class MachOLinkingContext : public LinkingContext {
/freebsd-13.1/usr.bin/clang/lld/
H A DMakefile80 SRCS+= lib/Core/LinkingContext.cpp
/freebsd-13.1/contrib/llvm-project/lld/lib/ReaderWriter/YAML/
H A DReaderWriterYAML.cpp1297 Writer(const LinkingContext &context) : _ctx(context) {} in Writer()
1320 const LinkingContext &_ctx;
1399 std::unique_ptr<Writer> createWriterYAML(const LinkingContext &context) { in createWriterYAML()
/freebsd-13.1/contrib/llvm-project/lld/lib/Driver/
H A DDarwinLdDriver.cpp301 static void parseLLVMOptions(const LinkingContext &ctx) { in parseLLVMOptions()