Searched refs:InputFile (Results 1 - 25 of 96) sorted by relevance

1234

/freebsd-13-stable/contrib/llvm-project/lld/MachO/
H A DInputFiles.h37 class InputFile { class in namespace:lld::macho
45 virtual ~InputFile() = default;
55 InputFile(Kind kind, MemoryBufferRef mb) : mb(mb), fileKind(kind) {} function in class:lld::macho::InputFile
69 class ObjFile : public InputFile {
72 static bool classof(const InputFile *f) { return f->kind() == ObjKind; }
76 class DylibFile : public InputFile {
90 static bool classof(const InputFile *f) { return f->kind() == DylibKind; }
99 class ArchiveFile : public InputFile {
102 static bool classof(const InputFile *f) { return f->kind() == ArchiveKind; }
112 extern std::vector<InputFile *> inputFile
[all...]
H A DInputSection.h20 class InputFile;
54 InputFile *file = nullptr;
H A DInputFiles.cpp68 std::vector<InputFile *> macho::inputFiles;
131 void InputFile::parseSections(ArrayRef<section_64> sections) {
166 void InputFile::parseRelocations(const section_64 &sec,
219 void InputFile::parseSymbols(ArrayRef<structs::nlist_64> nList,
305 ObjFile::ObjFile(MemoryBufferRef mb) : InputFile(ObjKind, mb) {
333 : InputFile(DylibKind, mb) {
387 : InputFile(DylibKind, MemoryBufferRef()) {
405 : InputFile(ArchiveKind, f->getMemoryBufferRef()), file(std::move(f)) {
431 std::string lld::toString(const InputFile *file) {
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DExplainOutputStyle.h23 class InputFile;
28 ExplainOutputStyle(InputFile &File, uint64_t FileOffset);
60 InputFile &File;
H A DInputFile.h1 //===- InputFile.h -------------------------------------------- *- C++ --*-===//
33 class InputFile;
40 class InputFile { class in namespace:llvm::pdb
41 InputFile();
58 ~InputFile();
59 InputFile(InputFile &&Other) = default;
61 static Expected<InputFile> open(StringRef Path,
92 explicit SymbolGroup(InputFile *File, uint32_t GroupIndex = 0);
109 const InputFile
[all...]
H A DInputFile.cpp1 //===- InputFile.cpp ------------------------------------------ *- C++ --*-===//
9 #include "InputFile.h"
34 InputFile::InputFile() {} function in class:InputFile
35 InputFile::~InputFile() {}
130 SymbolGroup::SymbolGroup(InputFile *File, uint32_t GroupIndex) : File(File) {
254 Expected<InputFile> InputFile::open(StringRef Path, bool AllowUnknownFile) {
255 InputFile I
[all...]
H A DTypeReferenceTracker.h12 #include "InputFile.h"
31 TypeReferenceTracker(InputFile &File);
54 InputFile &File;
H A DDumpOutputStyle.h36 class InputFile;
69 DumpOutputStyle(InputFile &File);
114 InputFile &File;
/freebsd-13-stable/contrib/llvm-project/lld/COFF/
H A DLTO.h40 class InputFile;
48 std::vector<InputFile *> compile();
H A DInputFiles.h32 class InputFile;
62 class InputFile { class in namespace:lld::coff
73 virtual ~InputFile() {}
93 InputFile(Kind k, MemoryBufferRef m) : mb(m), fileKind(k) {} function in class:lld::coff::InputFile
102 class ArchiveFile : public InputFile {
105 static bool classof(const InputFile *f) { return f->kind() == ArchiveKind; }
119 class LazyObjFile : public InputFile {
121 explicit LazyObjFile(MemoryBufferRef m) : InputFile(LazyObjectKind, m) {}
122 static bool classof(const InputFile *f) {
135 class ObjFile : public InputFile {
[all...]
H A DSymbolTable.h50 void addFile(InputFile *file);
87 Symbol *addUndefined(StringRef name, InputFile *f, bool isWeakAlias);
91 Symbol *addRegular(InputFile *f, StringRef n,
95 addComdat(InputFile *f, StringRef n,
97 Symbol *addCommon(InputFile *f, StringRef n, uint64_t size,
105 void reportDuplicate(Symbol *existing, InputFile *newFile,
125 std::pair<Symbol *, bool> insert(StringRef name, InputFile *f);
/freebsd-13-stable/contrib/llvm-project/lld/ELF/
H A DInputFiles.h30 class InputFile;
38 std::string toString(const elf::InputFile *f);
54 void parseFile(InputFile *file);
57 class InputFile { class in namespace:lld::elf
145 InputFile(Kind k, MemoryBufferRef m);
152 class ELFFileBase : public InputFile {
155 static bool classof(const InputFile *f) { return f->isElf(); }
191 static bool classof(const InputFile *f) { return f->kind() == ObjKind; }
297 class LazyObjFile : public InputFile {
301 : InputFile(LazyObjKin
[all...]
H A DLTO.h40 class InputFile;
49 std::vector<InputFile *> compile();
H A DThunks.h17 class InputFile;
73 const InputFile *file, int64_t addend);
H A DWriter.h20 class InputFile;
61 bool isMipsN32Abi(const InputFile *f);
H A DSymbols.h36 class InputFile;
73 InputFile *file;
233 Symbol(Kind k, InputFile *file, StringRefZ name, uint8_t binding,
237 isUsedInRegularObj(!file || file->kind() == InputFile::ObjKind),
287 Defined(InputFile *file, StringRefZ name, uint8_t binding, uint8_t stOther,
322 CommonSymbol(InputFile *file, StringRefZ name, uint8_t binding,
335 Undefined(InputFile *file, StringRefZ name, uint8_t binding, uint8_t stOther,
350 SharedSymbol(InputFile &file, StringRef name, uint8_t binding,
399 LazyArchive(InputFile &file, const llvm::object::Archive::Symbol s)
415 LazyObject(InputFile
[all...]
H A DDriver.h48 std::vector<InputFile *> files;
H A DSymbolTable.h64 llvm::DenseMap<llvm::CachedHashStringRef, const InputFile *> comdatGroups;
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/LTO/legacy/
H A DThinLTOCodeGenerator.h255 const lto::InputFile &File);
262 const lto::InputFile &File);
269 const lto::InputFile &File);
277 const lto::InputFile &File);
283 const lto::InputFile &File);
312 std::vector<std::unique_ptr<lto::InputFile>> Modules;
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/LTO/
H A DLTO.h100 class InputFile { class in namespace:llvm::lto
107 InputFile() = default;
121 ~InputFile();
123 /// Create an InputFile.
124 static Expected<std::unique_ptr<InputFile>> create(MemoryBufferRef Object);
152 /// A range over the symbols in this InputFile.
161 /// Returns the path to the InputFile.
173 // Returns the only BitcodeModule from InputFile.
254 /// - Create lto::InputFile objects using lto::InputFile
[all...]
/freebsd-13-stable/usr.bin/clang/llvm-pdbutil/
H A DMakefile10 SRCS+= InputFile.cpp
/freebsd-13-stable/contrib/llvm-project/lld/ELF/Arch/
H A DAMDGPU.cpp43 static uint32_t getEFlags(InputFile *file) {
52 for (InputFile *f : makeArrayRef(objectFiles).slice(1)) {
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Serialization/
H A DModuleFile.h64 class InputFile { class in namespace:clang::serialization
73 InputFile() = default;
75 InputFile(const FileEntry *File, function in class:clang::serialization::InputFile
87 static InputFile getNotFound() {
88 InputFile File;
235 std::vector<InputFile> InputFilesLoaded;
/freebsd-13-stable/sys/contrib/dev/acpica/compiler/
H A Dprutils.c473 * PARAMETERS: InputFile - Open file pointer
478 * DESCRIPTION: Push the InputFile onto the file stack, and point the parser
486 FILE *InputFile,
508 "Push InputFile Stack: handle %p\n\n",
509 AslGbl_CurrentLineNumber, InputFile);
517 AslGbl_Files[ASL_FILE_INPUT].Handle = InputFile;
550 "Pop InputFile Stack, Fnode %p\n\n",
485 PrPushInputFileStack( FILE *InputFile, char *Filename) argument
/freebsd-13-stable/contrib/llvm-project/llvm/tools/bugpoint/
H A DToolRunner.cpp158 const std::string &InputFile, const std::string &OutputFile,
167 const std::string &InputFile,
198 return RunProgramWithTimeout(LLIPath, LLIArgs, InputFile, OutputFile,
254 const std::string &InputFile, const std::string &OutputFile,
303 const std::string &InputFile, const std::string &OutputFile,
312 const std::string &InputFile, const std::string &OutputFile,
328 return RunProgramWithTimeout(ExecutionCommand, ProgramArgs, InputFile,
484 const std::string &InputFile,
501 return cc->ExecuteProgram(OutputAsmFile, Args, *FileKind, InputFile,
546 const std::string &InputFile, cons
165 ExecuteProgram(const std::string &Bitcode, const std::vector<std::string> &Args, const std::string &InputFile, const std::string &OutputFile, const std::vector<std::string> &CCArgs, const std::vector<std::string> &SharedLibs, unsigned Timeout, unsigned MemoryLimit) argument
310 ExecuteProgram( const std::string &Bitcode, const std::vector<std::string> &Args, const std::string &InputFile, const std::string &OutputFile, const std::vector<std::string> &CCArgs, const std::vector<std::string> &SharedLibs, unsigned Timeout, unsigned MemoryLimit) argument
482 ExecuteProgram(const std::string &Bitcode, const std::vector<std::string> &Args, const std::string &InputFile, const std::string &OutputFile, const std::vector<std::string> &ArgsForCC, const std::vector<std::string> &SharedLibs, unsigned Timeout, unsigned MemoryLimit) argument
553 ExecuteProgram(const std::string &Bitcode, const std::vector<std::string> &Args, const std::string &InputFile, const std::string &OutputFile, const std::vector<std::string> &CCArgs, const std::vector<std::string> &SharedLibs, unsigned Timeout, unsigned MemoryLimit) argument
622 ExecuteProgram(const std::string &ProgramFile, const std::vector<std::string> &Args, FileType fileType, const std::string &InputFile, const std::string &OutputFile, const std::vector<std::string> &ArgsForCC, unsigned Timeout, unsigned MemoryLimit) argument
765 MakeSharedObject(const std::string &InputFile, FileType fileType, std::string &OutputFile, const std::vector<std::string> &ArgsForCC) argument
[all...]

Completed in 155 milliseconds

1234