| /freebsd-14.2/contrib/llvm-project/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 …]
|
| /freebsd-14.2/contrib/llvm-project/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; 160 class ObjFile final : public InputFile { 209 class OpaqueFile final : public InputFile { 216 class DylibFile final : public InputFile { 286 class ArchiveFile final : public InputFile { 307 class BitcodeFile final : public InputFile { [all …]
|
| H A D | SymbolTable.h | 23 class InputFile; variable 39 Defined *addDefined(StringRef name, InputFile *, InputSection *, 44 Defined *aliasDefined(Defined *src, StringRef target, InputFile *newFile, 47 Symbol *addUndefined(StringRef name, InputFile *, bool isWeakRef); 49 Symbol *addCommon(StringRef name, InputFile *, uint64_t size, uint32_t align, 57 Symbol *addLazyObject(StringRef name, InputFile &file); 68 std::pair<Symbol *, bool> insert(StringRef name, const InputFile *);
|
| H A D | Driver.h | 26 class InputFile; variable 44 InputFile *f, unsigned argc, StringRef data); 70 void printArchiveMemberLoad(StringRef reason, const InputFile *); 89 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, 204 Undefined(StringRefZ name, InputFile *file, RefState refState, in Undefined() 236 CommonSymbol(StringRefZ name, InputFile *file, uint64_t size, uint32_t align, in CommonSymbol() 323 LazyObject(InputFile &file, StringRef name) in LazyObject() 336 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() 127 static void printFileName(raw_fd_ostream &os, const InputFile *f) { in printFileName() 137 const DenseMap<lld::macho::InputFile *, uint32_t> &readerToFileOrdinal, in printStubsEntries() argument 181 DenseMap<lld::macho::InputFile *, uint32_t> readerToFileOrdinal; in writeMapFile() 182 for (InputFile *file : info.files) { in writeMapFile()
|
| /freebsd-14.2/contrib/llvm-project/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 314 class PDBInputFile : public InputFile { 337 class ImportFile : public InputFile { 368 class BitcodeFile : public InputFile { 387 class DLLFile : public InputFile { [all …]
|
| H A D | SymbolTable.h | 51 void addFile(InputFile *file); 90 Symbol *addUndefined(StringRef name, InputFile *f, bool isWeakAlias); 92 void addLazyObject(InputFile *f, StringRef n); 95 Symbol *addRegular(InputFile *f, StringRef n, 100 addComdat(InputFile *f, StringRef n, 102 Symbol *addCommon(InputFile *f, StringRef n, uint64_t size, 110 void reportDuplicate(Symbol *existing, InputFile *newFile, 130 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, 309 LazyObject(InputFile *f, StringRef n) : Symbol(LazyObjectKind, n), file(f) {} in LazyObject() 311 InputFile *file;
|
| /freebsd-14.2/contrib/llvm-project/lld/ELF/ |
| H A D | InputFiles.h | 27 class InputFile; variable 35 std::string toString(const elf::InputFile *f); 49 void parseFile(InputFile *file); 51 void parseArmCMSEImportLib(InputFile *file); 54 class InputFile { 69 InputFile(Kind k, MemoryBufferRef m); 169 class ELFFileBase : public InputFile { 329 class BitcodeFile : public InputFile { 337 std::unique_ptr<llvm::lto::InputFile> obj; 376 class BinaryFile : public InputFile { [all …]
|
| H A D | Symbols.h | 41 class InputFile; variable 85 InputFile *file; 254 Symbol(Kind k, InputFile *file, StringRef name, uint8_t binding, in Symbol() 357 Defined(InputFile *file, StringRef name, uint8_t binding, uint8_t stOther, in Defined() 395 CommonSymbol(InputFile *file, StringRef name, uint8_t binding, in CommonSymbol() 416 Undefined(InputFile *file, StringRef name, uint8_t binding, uint8_t stOther, 438 SharedSymbol(InputFile &file, StringRef name, uint8_t binding, in SharedSymbol() 489 LazySymbol(InputFile &file) in LazySymbol() 558 void reportDuplicate(const Symbol &sym, const InputFile *newFile,
|
| H A D | Config.h | 37 class InputFile; variable 140 std::vector<InputFile *> files; 141 std::optional<InputFile *> armCmseImpLib; 447 const InputFile *file; 468 SmallVector<std::tuple<std::string, const InputFile *, const Symbol &>, 0> 473 std::pair<const InputFile *, const InputFile *>> 477 InputFile *internalFile;
|
| H A D | InputFiles.cpp | 51 bool InputFile::isInGroup; 52 uint32_t InputFile::nextGroupId; 57 std::string lld::toString(const InputFile *f) { in toString() 199 InputFile::InputFile(Kind k, MemoryBufferRef m) in InputFile() function in InputFile 259 static bool isCompatible(InputFile *file) { in isCompatible() 277 InputFile *existing = nullptr; in isCompatible() 309 if (file->kind() == InputFile::ObjKind) { in doParseFile() 385 StringRef InputFile::getNameForScript() const { in getNameForScript() 494 : InputFile(k, mb) { in ELFFileBase() 1645 : InputFile(BitcodeKind, mb) { in BitcodeFile() [all …]
|
| H A D | LinkerScript.h | 29 class InputFile; variable 176 mutable std::optional<std::pair<const InputFile *, bool>> excludesFileCache; 184 bool excludesFile(const InputFile *file) const; 195 mutable std::optional<std::pair<const InputFile *, bool>> matchesFileCache; 207 bool matchesFile(const InputFile *file) const;
|
| H A D | LTO.h | 37 class InputFile; variable 45 std::vector<InputFile *> compile();
|
| /freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-dwarfutil/ |
| H A D | llvm-dwarfutil.cpp | 300 saveSeparateDebugInfo(Opts, InputFile); in splitDebugIntoSeparateFile() 314 ObjectFile &InputFile, in addSectionsFromLinkedData() argument 316 if (isa<ELFObjectFile<ELF32LE>>(&InputFile)) { in addSectionsFromLinkedData() 324 } else if (isa<ELFObjectFile<ELF64LE>>(&InputFile)) { in addSectionsFromLinkedData() 332 } else if (isa<ELFObjectFile<ELF32BE>>(&InputFile)) { in addSectionsFromLinkedData() 340 } else if (isa<ELFObjectFile<ELF64BE>>(&InputFile)) { in addSectionsFromLinkedData() 387 ObjectFile &InputFile, in saveSingleLinkedDebugInfo() argument 411 saveSeparateLinkedDebugInfo(Opts, InputFile, in saveLinkedDebugInfo() 420 if (Error Err = saveSingleLinkedDebugInfo(Opts, InputFile, in saveLinkedDebugInfo() 451 if (Error Err = linkDebugInfo(InputFile, Opts, OutStream)) in applyCLOptions() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/ |
| H A D | InputFile.cpp | 35 InputFile::InputFile() = default; 36 InputFile::~InputFile() = default; 301 Expected<InputFile> InputFile::open(StringRef Path, bool AllowUnknownFile) { in open() 302 InputFile IF; in open() 349 PDBFile &InputFile::pdb() { in pdb() 354 const PDBFile &InputFile::pdb() const { in pdb() 359 object::COFFObjectFile &InputFile::obj() { in obj() 369 MemoryBuffer &InputFile::unknown() { in unknown() 388 bool InputFile::hasTypes() const { in hasTypes() 400 bool InputFile::hasIds() const { in hasIds() [all …]
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/LTO/ |
| H A D | LTO.h | 109 class InputFile { 116 InputFile() = default; 130 ~InputFile(); 133 static Expected<std::unique_ptr<InputFile>> create(MemoryBufferRef Object); 255 friend InputFile; variable 283 Error add(std::unique_ptr<InputFile> Obj, ArrayRef<SymbolResolution> Res); 411 void addModuleToGlobalRes(ArrayRef<InputFile::Symbol> Syms, 419 Error addModule(InputFile &Input, unsigned ModI, 423 addRegularLTO(BitcodeModule BM, ArrayRef<InputFile::Symbol> Syms, 428 Error addThinLTO(BitcodeModule BM, ArrayRef<InputFile::Symbol> Syms,
|
| /freebsd-14.2/contrib/llvm-project/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;
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Serialization/ |
| H A D | ModuleFile.h | 78 class InputFile { 87 InputFile() = default; 89 InputFile(FileEntryRef File, bool isOverridden = false, 101 static InputFile getNotFound() { in getNotFound() 102 InputFile File; in getNotFound() 255 std::vector<InputFile> InputFilesLoaded;
|
| /freebsd-14.2/contrib/llvm-project/llvm/tools/llvm-pdbutil/ |
| H A D | ExplainOutputStyle.h | 22 class InputFile; variable 27 ExplainOutputStyle(InputFile &File, uint64_t FileOffset); 59 InputFile &File;
|
| H A D | DumpOutputStyle.h | 27 class InputFile; variable 60 DumpOutputStyle(InputFile &File); 105 InputFile &File;
|
| /freebsd-14.2/contrib/llvm-project/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 …]
|
| H A D | ToolRunner.h | 64 FileType fileType, const std::string &InputFile, 72 Error MakeSharedObject(const std::string &InputFile, FileType fileType, 137 const std::string &InputFile, const std::string &OutputFile, 171 const std::string &InputFile, const std::string &OutputFile,
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/LTO/ |
| H A D | ThinLTOCodeGenerator.cpp | 150 static StringMap<lto::InputFile *> 152 StringMap<lto::InputFile *> ModuleMap; in generateModuleMap() 216 StringMap<lto::InputFile *> &ModuleMap, in crossImportIntoModule() 296 addUsedSymbolToPreservedGUID(const lto::InputFile &File, in addUsedSymbolToPreservedGUID() 305 static void computeGUIDPreservedSymbols(const lto::InputFile &File, in computeGUIDPreservedSymbols() 319 computeGUIDPreservedSymbols(const lto::InputFile &File, in computeGUIDPreservedSymbols() 561 auto InputOrError = lto::InputFile::create(Buffer); in addModule() 685 const lto::InputFile &File) { in promote() 778 const lto::InputFile &File) { in gatherImportedSummariesForModule() 816 const lto::InputFile &File) { in emitImports() [all …]
|