/openbsd/gnu/llvm/lld/wasm/ |
H A D | InputFiles.h | 43 class InputFile { 53 virtual ~InputFile() {} in ~InputFile() 73 InputFile(Kind k, MemoryBufferRef m) in InputFile() function 89 class ArchiveFile : public InputFile { 104 class ObjFile : public InputFile { 107 : InputFile(ObjectKind, m) { in ObjFile() 166 class SharedFile : public InputFile { 173 class BitcodeFile : public InputFile { 180 std::unique_ptr<llvm::lto::InputFile> obj; 188 class StubFile : public InputFile { [all …]
|
H A D | SymbolTable.h | 44 void addFile(InputFile *file); 56 Symbol *addDefinedData(StringRef name, uint32_t flags, InputFile *file, 58 Symbol *addDefinedGlobal(StringRef name, uint32_t flags, InputFile *file, 60 Symbol *addDefinedTag(StringRef name, uint32_t flags, InputFile *file, 62 Symbol *addDefinedTable(StringRef name, uint32_t flags, InputFile *file, 68 uint32_t flags, InputFile *file, 75 uint32_t flags, InputFile *file, 79 uint32_t flags, InputFile *file, 83 InputFile *file, const WasmSignature *sig); 114 std::pair<Symbol *, bool> insert(StringRef name, const InputFile *file); [all …]
|
H A D | Symbols.h | 34 class InputFile; variable 97 InputFile *getFile() const { return file; } in getFile() 136 Symbol(StringRef name, Kind k, uint32_t flags, InputFile *f) in Symbol() 143 InputFile *file; 219 DefinedFunction(StringRef name, uint32_t flags, InputFile *f, 239 InputFile *file = nullptr, 359 DefinedGlobal(StringRef name, uint32_t flags, InputFile *file, 373 InputFile *file = nullptr, 410 DefinedTable(StringRef name, uint32_t flags, InputFile *file, 422 InputFile *file, const WasmTableType *type) in UndefinedTable() [all …]
|
H A D | SymbolTable.cpp | 27 void SymbolTable::addFile(InputFile *file) { in addFile() 128 const InputFile *file) { in insert() 133 if (!file || file->kind() == InputFile::ObjectKind) in insert() 178 static void checkTagType(const Symbol *existing, const InputFile *file, in checkTagType() 284 static bool shouldReplace(const Symbol *existing, InputFile *newFile, in shouldReplace() 313 InputFile *file, in addDefinedFunction() 418 InputFile *file, InputTag *tag) { in addDefinedTag() 475 uint32_t flags, InputFile *file) { in setImportAttributes() 568 InputFile *file) { in addUndefinedData() 761 const InputFile *oldFile = s->getFile(); in addLazy() [all …]
|
/openbsd/gnu/llvm/llvm/include/llvm/DebugInfo/PDB/Native/ |
H A D | InputFile.h | 32 class InputFile; variable 39 class InputFile { 40 InputFile(); 57 InputFile(PDBFile *Pdb) { PdbOrObj = Pdb; } in InputFile() function 60 ~InputFile(); 61 InputFile(InputFile &&Other) = default; 63 static Expected<InputFile> open(StringRef Path, 112 const InputFile &getFile() const { return *File; } in getFile() 113 InputFile &getFile() { return *File; } in getFile() 123 InputFile *File = nullptr; [all …]
|
/openbsd/gnu/llvm/lld/MachO/ |
H A D | InputFiles.h | 32 class InputFile; variable 64 class InputFile; variable 68 InputFile *file; 105 class InputFile { 115 virtual ~InputFile() = default; 157 class ObjFile final : public InputFile { 202 class OpaqueFile final : public InputFile { 209 class DylibFile final : public InputFile { 279 class ArchiveFile final : public InputFile { 300 class BitcodeFile final : public InputFile { [all …]
|
H A D | SymbolTable.h | 23 class InputFile; variable 39 Defined *addDefined(StringRef name, InputFile *, InputSection *, 45 Defined *aliasDefined(Defined *src, StringRef target, InputFile *newFile, 48 Symbol *addUndefined(StringRef name, InputFile *, bool isWeakRef); 50 Symbol *addCommon(StringRef name, InputFile *, uint64_t size, uint32_t align, 58 Symbol *addLazyObject(StringRef name, InputFile &file); 69 std::pair<Symbol *, bool> insert(StringRef name, const InputFile *);
|
H A D | Driver.h | 26 class InputFile; variable 43 void parseLCLinkerOption(InputFile *, unsigned argc, StringRef data); 68 void printArchiveMemberLoad(StringRef reason, const InputFile *); 87 const llvm::SetVector<InputFile *> &inputs,
|
H A D | Symbols.h | 96 InputFile *getFile() const { return file; } in getFile() 99 Symbol(Kind k, StringRefZ name, InputFile *file) in Symbol() 106 InputFile *file; 119 Defined(StringRefZ name, InputFile *file, InputSection *isec, uint64_t value, 206 Undefined(StringRefZ name, InputFile *file, RefState refState, in Undefined() 238 CommonSymbol(StringRefZ name, InputFile *file, uint64_t size, uint32_t align, in CommonSymbol() 324 LazyObject(InputFile &file, StringRef name) in LazyObject() 337 AliasSymbol(InputFile *file, StringRef name, StringRef aliasedName, in AliasSymbol()
|
H A D | MapFile.cpp | 56 SmallVector<InputFile *> files; 66 for (InputFile *file : inputFiles) { in gatherMapInfo() 128 const DenseMap<lld::macho::InputFile *, uint32_t> &readerToFileOrdinal, in printStubsEntries() argument 172 DenseMap<lld::macho::InputFile *, uint32_t> readerToFileOrdinal; in writeMapFile() 173 for (InputFile *file : info.files) { in writeMapFile()
|
/openbsd/gnu/llvm/lld/COFF/ |
H A D | InputFiles.h | 33 class InputFile; variable 64 class InputFile { 76 virtual ~InputFile() {} in ~InputFile() 112 class ArchiveFile : public InputFile { 129 class ObjFile : public InputFile { 132 : InputFile(ctx, ObjectKind, m, lazy) {} in InputFile() function 311 class PDBInputFile : public InputFile { 334 class ImportFile : public InputFile { 365 class BitcodeFile : public InputFile { 384 class DLLFile : public InputFile { [all …]
|
H A D | SymbolTable.h | 52 void addFile(InputFile *file); 91 Symbol *addUndefined(StringRef name, InputFile *f, bool isWeakAlias); 93 void addLazyObject(InputFile *f, StringRef n); 96 Symbol *addRegular(InputFile *f, StringRef n, 101 addComdat(InputFile *f, StringRef n, 103 Symbol *addCommon(InputFile *f, StringRef n, uint64_t size, 111 void reportDuplicate(Symbol *existing, InputFile *newFile, 131 std::pair<Symbol *, bool> insert(StringRef name, InputFile *f);
|
H A D | Symbols.h | 34 class InputFile; variable 83 InputFile *getFile(); 180 DefinedCOFF(Kind k, InputFile *f, StringRef n, const coff_symbol_generic *s) in DefinedCOFF() 187 InputFile *getFile() { return file; } in getFile() 191 InputFile *file; 200 DefinedRegular(InputFile *f, StringRef n, bool isCOMDAT, 223 DefinedCommon(InputFile *f, StringRef n, uint64_t size, 308 LazyObject(InputFile *f, StringRef n) : Symbol(LazyObjectKind, n), file(f) {} in LazyObject() 310 InputFile *file;
|
/openbsd/gnu/llvm/llvm/tools/llvm-dwarfutil/ |
H A D | llvm-dwarfutil.cpp | 295 saveSeparateDebugInfo(Opts, InputFile); in splitDebugIntoSeparateFile() 309 ObjectFile &InputFile, in addSectionsFromLinkedData() argument 311 if (isa<ELFObjectFile<ELF32LE>>(&InputFile)) { in addSectionsFromLinkedData() 319 } else if (isa<ELFObjectFile<ELF64LE>>(&InputFile)) { in addSectionsFromLinkedData() 327 } else if (isa<ELFObjectFile<ELF32BE>>(&InputFile)) { in addSectionsFromLinkedData() 335 } else if (isa<ELFObjectFile<ELF64BE>>(&InputFile)) { in addSectionsFromLinkedData() 382 ObjectFile &InputFile, in saveSingleLinkedDebugInfo() argument 406 saveSeparateLinkedDebugInfo(Opts, InputFile, in saveLinkedDebugInfo() 415 if (Error Err = saveSingleLinkedDebugInfo(Opts, InputFile, in saveLinkedDebugInfo() 446 if (Error Err = linkDebugInfo(InputFile, Opts, OutStream)) in applyCLOptions() [all …]
|
/openbsd/gnu/llvm/llvm/lib/DebugInfo/PDB/Native/ |
H A D | InputFile.cpp | 34 InputFile::InputFile() = default; 35 InputFile::~InputFile() = default; 300 Expected<InputFile> InputFile::open(StringRef Path, bool AllowUnknownFile) { in open() 301 InputFile IF; in open() 348 PDBFile &InputFile::pdb() { in pdb() 353 const PDBFile &InputFile::pdb() const { in pdb() 358 object::COFFObjectFile &InputFile::obj() { in obj() 368 MemoryBuffer &InputFile::unknown() { in unknown() 387 bool InputFile::hasTypes() const { in hasTypes() 399 bool InputFile::hasIds() const { in hasIds() [all …]
|
/openbsd/gnu/llvm/lld/ELF/ |
H A D | InputFiles.h | 27 class InputFile; variable 35 std::string toString(const elf::InputFile *f); 51 void parseFile(InputFile *file); 54 class InputFile { 150 InputFile(Kind k, MemoryBufferRef m); 164 class ELFFileBase : public InputFile { 167 static bool classof(const InputFile *f) { return f->isElf(); } in classof() 204 template <typename ELFT> void init(InputFile::Kind k); 322 class BitcodeFile : public InputFile { 330 std::unique_ptr<llvm::lto::InputFile> obj; [all …]
|
H A D | Symbols.h | 41 class InputFile; variable 85 InputFile *file; 257 Symbol(Kind k, InputFile *file, StringRef name, uint8_t binding, in Symbol() 346 Defined(InputFile *file, StringRef name, uint8_t binding, uint8_t stOther, in Defined() 391 CommonSymbol(InputFile *file, StringRef name, uint8_t binding, in CommonSymbol() 412 Undefined(InputFile *file, StringRef name, uint8_t binding, uint8_t stOther, 434 SharedSymbol(InputFile &file, StringRef name, uint8_t binding, in SharedSymbol() 485 LazyObject(InputFile &file) in LazyObject() 554 void reportDuplicate(const Symbol &sym, const InputFile *newFile,
|
/openbsd/gnu/llvm/llvm/include/llvm/LTO/ |
H A D | LTO.h | 105 class InputFile { 112 InputFile() = default; 126 ~InputFile(); 129 static Expected<std::unique_ptr<InputFile>> create(MemoryBufferRef Object); 248 friend InputFile; variable 263 Error add(std::unique_ptr<InputFile> Obj, ArrayRef<SymbolResolution> Res); 389 void addModuleToGlobalRes(ArrayRef<InputFile::Symbol> Syms, 397 Error addModule(InputFile &Input, unsigned ModI, 401 addRegularLTO(BitcodeModule BM, ArrayRef<InputFile::Symbol> Syms, 406 Error addThinLTO(BitcodeModule BM, ArrayRef<InputFile::Symbol> Syms,
|
/openbsd/gnu/llvm/llvm/include/llvm/LTO/legacy/ |
H A D | ThinLTOCodeGenerator.h | 257 const lto::InputFile &File); 264 const lto::InputFile &File); 271 const lto::InputFile &File); 279 const lto::InputFile &File); 285 const lto::InputFile &File); 314 std::vector<std::unique_ptr<lto::InputFile>> Modules;
|
/openbsd/gnu/llvm/clang/include/clang/Serialization/ |
H A D | ModuleFile.h | 76 class InputFile { 85 InputFile() = default; 87 InputFile(FileEntryRef File, bool isOverridden = false, 99 static InputFile getNotFound() { in getNotFound() 100 InputFile File; in getNotFound() 247 std::vector<InputFile> InputFilesLoaded;
|
/openbsd/gnu/llvm/llvm/tools/llvm-pdbutil/ |
H A D | ExplainOutputStyle.h | 24 class InputFile; variable 29 ExplainOutputStyle(InputFile &File, uint64_t FileOffset); 61 InputFile &File;
|
H A D | DumpOutputStyle.h | 29 class InputFile; variable 62 DumpOutputStyle(InputFile &File); 107 InputFile &File;
|
/openbsd/gnu/llvm/llvm/tools/bugpoint/ |
H A D | ToolRunner.cpp | 158 const std::string &InputFile, const std::string &OutputFile, 167 const std::string &InputFile, in ExecuteProgram() argument 254 const std::string &InputFile, const std::string &OutputFile, in ExecuteProgram() argument 303 const std::string &InputFile, const std::string &OutputFile, 312 const std::string &InputFile, const std::string &OutputFile, in ExecuteProgram() argument 484 const std::string &InputFile, in ExecuteProgram() argument 546 const std::string &InputFile, const std::string &OutputFile, 555 const std::string &InputFile, in ExecuteProgram() argument 625 const std::string &InputFile, in ExecuteProgram() argument 770 InputFile + "-%%%%%%%" + LTDL_SHLIB_EXT, UniqueFilename); in MakeSharedObject() [all …]
|
/openbsd/gnu/llvm/clang/tools/clang-offload-packager/ |
H A D | ClangOffloadPackager.cpp | 40 static cl::opt<std::string> InputFile(cl::Positional, variable 127 MemoryBuffer::getFileOrSTDIN(InputFile); in unbundleImages() 129 return createFileError(InputFile, EC); in unbundleImages() 166 ? Saver.save(sys::path::stem(InputFile) + "-" + in unbundleImages() 206 if (!InputFile.empty() && !OutputFile.empty()) in main() 215 } else if (!InputFile.empty()) { in main()
|
/openbsd/gnu/llvm/llvm/tools/dsymutil/ |
H A D | dsymutil.cpp | 502 getOutputFileName(StringRef InputFile, const DsymutilOptions &Options) { in getOutputFileName() argument 509 return OutputLocation(std::string(InputFile)); in getOutputFileName() 519 if (InputFile == "-") in getOutputFileName() 521 return OutputLocation((InputFile + ".dwarf").str()); in getOutputFileName() 536 std::string(InputFile == "-" ? StringRef("a.out") : InputFile); in getOutputFileName() 619 for (auto &InputFile : Options.InputFiles) { in main() local 622 if (!dumpStab(Options.LinkOpts.VFS, InputFile, Options.Archs, in main() 629 parseDebugMap(Options.LinkOpts.VFS, InputFile, Options.Archs, in main() 634 WithColor::error() << "cannot parse the debug map for '" << InputFile in main() 647 Map->addDebugMapObject(InputFile, in main() [all …]
|