Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/lld/MachO/
H A DSymbolTable.h21 class ArchiveFile; variable
55 Symbol *addLazyArchive(StringRef name, ArchiveFile *file,
H A DSymbols.h312 LazyArchive(ArchiveFile *file, const llvm::object::Archive::Symbol &sym) in LazyArchive()
315 ArchiveFile *getFile() const { return cast<ArchiveFile>(file); } in getFile()
H A DInputFiles.h286 class ArchiveFile final : public InputFile {
288 explicit ArchiveFile(std::unique_ptr<llvm::object::Archive> &&file, in getArchive()
H A DInputFiles.cpp2138 ArchiveFile::ArchiveFile(std::unique_ptr<object::Archive> &&f, bool forceHidden) in ArchiveFile() function in ArchiveFile
2142 void ArchiveFile::addLazySymbols() { in addLazySymbols()
2195 Error ArchiveFile::fetch(const object::Archive::Child &c, StringRef reason) { in fetch()
2219 void ArchiveFile::fetch(const object::Archive::Symbol &sym) { in fetch()
H A DDriver.cpp268 ArchiveFile *file;
274 static void saveThinArchiveToRepro(ArchiveFile const *file) { in saveThinArchiveToRepro()
310 ArchiveFile *file; in addFile()
318 file = make<ArchiveFile>(std::move(archive), isForceHidden); in addFile()
H A DSymbolTable.cpp293 Symbol *SymbolTable::addLazyArchive(StringRef name, ArchiveFile *file, in addLazyArchive()
/freebsd/contrib/llvm-project/lld/COFF/
H A DSymbols.h32 class ArchiveFile; variable
296 LazyArchive(ArchiveFile *f, const Archive::Symbol s) in LazyArchive()
303 ArchiveFile *file;
H A DInputFiles.h112 class ArchiveFile : public InputFile {
114 explicit ArchiveFile(COFFLinkerContext &ctx, MemoryBufferRef m);
H A DSymbolTable.h91 void addLazyArchive(ArchiveFile *f, const Archive::Symbol &sym);
H A DInputFiles.cpp96 ArchiveFile::ArchiveFile(COFFLinkerContext &ctx, MemoryBufferRef m) in ArchiveFile() function in ArchiveFile
99 void ArchiveFile::parse() { in parse()
109 void ArchiveFile::addMember(const Archive::Symbol &sym) { in addMember()
H A DSymbolTable.cpp599 void SymbolTable::addLazyArchive(ArchiveFile *f, const Archive::Symbol &sym) { in addLazyArchive()
H A DDriver.cpp202 ctx.symtab.addFile(make<ArchiveFile>(ctx, mbref)); in addBuffer()