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

1234

/freebsd-12-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-12-stable/contrib/llvm-project/lld/ELF/
H A DInputFiles.h30 class InputFile;
38 std::string toString(const elf::InputFile *f);
41 class InputFile;
56 void parseFile(InputFile *file);
59 class InputFile { class in namespace:lld::elf
147 InputFile(Kind k, MemoryBufferRef m);
154 class ELFFileBase : public InputFile {
157 static bool classof(const InputFile *f) { return f->isElf(); }
193 static bool classof(const InputFile *f) { return f->kind() == ObjKind; }
296 class LazyObjFile : public InputFile {
[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.h34 class InputFile;
71 InputFile *file;
231 Symbol(Kind k, InputFile *file, StringRefZ name, uint8_t binding,
235 isUsedInRegularObj(!file || file->kind() == InputFile::ObjKind),
282 Defined(InputFile *file, StringRefZ name, uint8_t binding, uint8_t stOther,
317 CommonSymbol(InputFile *file, StringRefZ name, uint8_t binding,
330 Undefined(InputFile *file, StringRefZ name, uint8_t binding, uint8_t stOther,
345 SharedSymbol(InputFile &file, StringRef name, uint8_t binding,
394 LazyArchive(InputFile &file, const llvm::object::Archive::Symbol s)
410 LazyObject(InputFile
[all...]
H A DDriver.h48 std::vector<InputFile *> files;
H A DSymbolTable.h64 llvm::DenseMap<llvm::CachedHashStringRef, const InputFile *> comdatGroups;
/freebsd-12-stable/contrib/llvm-project/lld/COFF/
H A DInputFiles.h31 class InputFile;
61 class InputFile { class in namespace:lld::coff
71 virtual ~InputFile() {}
91 InputFile(Kind k, MemoryBufferRef m) : mb(m), fileKind(k) {} function in class:lld::coff::InputFile
100 class ArchiveFile : public InputFile {
103 static bool classof(const InputFile *f) { return f->kind() == ArchiveKind; }
117 class LazyObjFile : public InputFile {
119 explicit LazyObjFile(MemoryBufferRef m) : InputFile(LazyObjectKind, m) {}
120 static bool classof(const InputFile *f) {
133 class ObjFile : public InputFile {
[all...]
H A DSymbolTable.h50 void addFile(InputFile *file);
88 Symbol *addUndefined(StringRef name, InputFile *f, bool isWeakAlias);
92 Symbol *addRegular(InputFile *f, StringRef n,
96 addComdat(InputFile *f, StringRef n,
98 Symbol *addCommon(InputFile *f, StringRef n, uint64_t size,
106 void reportDuplicate(Symbol *existing, InputFile *newFile,
126 std::pair<Symbol *, bool> insert(StringRef name, InputFile *f);
H A DLTO.h40 class InputFile;
H A DSymbols.h40 class InputFile;
77 InputFile *getFile();
151 DefinedCOFF(Kind k, InputFile *f, StringRef n, const coff_symbol_generic *s)
158 InputFile *getFile() { return file; }
162 InputFile *file;
171 DefinedRegular(InputFile *f, StringRef n, bool isCOMDAT,
193 DefinedCommon(InputFile *f, StringRef n, uint64_t size,
/freebsd-12-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-12-stable/contrib/llvm-project/clang/include/clang/Serialization/
H A DModuleFile.h65 class InputFile { class in namespace:clang::serialization
74 InputFile() = default;
76 InputFile(const FileEntry *File, function in class:clang::serialization::InputFile
88 static InputFile getNotFound() {
89 InputFile File;
229 std::vector<InputFile> InputFilesLoaded;
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/LTO/
H A DLTO.h104 class InputFile { class in namespace:llvm::lto
111 InputFile() = default;
125 ~InputFile();
127 /// Create an InputFile.
128 static Expected<std::unique_ptr<InputFile>> create(MemoryBufferRef Object);
156 /// A range over the symbols in this InputFile.
165 /// Returns the path to the InputFile.
177 // Returns the only BitcodeModule from InputFile.
257 /// - Create lto::InputFile objects using lto::InputFile
[all...]
/freebsd-12-stable/usr.bin/clang/llvm-pdbutil/
H A DMakefile10 SRCS+= InputFile.cpp
/freebsd-12-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-12-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-12-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...]
H A DToolRunner.h57 /// arguments. Standard input is specified with InputFile, and standard
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-12-stable/contrib/llvm-project/llvm/lib/Support/
H A DSignals.cpp144 SmallString<32> InputFile, OutputFile; local
145 sys::fs::createTemporaryFile("symbolizer-input", "", InputFD, InputFile);
147 FileRemover InputRemover(InputFile.c_str());
158 Optional<StringRef> Redirects[] = {StringRef(InputFile),

Completed in 229 milliseconds

1234