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

/freebsd-13-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DInterfaceStubs.cpp51 SmallString<128> InputFilename(Input.getFilename());
53 llvm::sys::path::replace_extension(InputFilename, ".ifs");
54 CmdArgs.push_back(Args.MakeArgString(InputFilename.c_str()));
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-modextract/
H A Dllvm-modextract.cpp32 InputFilename(cl::Positional, cl::desc("<input bitcode>"), cl::init("-"));
44 ExitOnErr(errorOrToExpected(MemoryBuffer::getFileOrSTDIN(InputFilename)));
/freebsd-13-stable/sys/contrib/dev/acpica/compiler/
H A Daslfiles.c168 char *InputFilename);
173 char *InputFilename);
181 * PARAMETERS: InputFilename - The user-specified ASL source file to be
195 char *InputFilename)
201 if (FlInputFileExists (InputFilename))
203 AslError (ASL_ERROR, ASL_MSG_DUPLICATE_INPUT_FILE, NULL, InputFilename);
286 char *InputFilename)
294 if (!strcmp(Current->Files[ASL_FILE_INPUT].Filename, InputFilename))
300 if (!strcmp (InputFilename, PrevFilename))
832 * PARAMETERS: InputFilename
194 FlInitOneFile( char *InputFilename) argument
285 FlSwitchFileSet( char *InputFilename) argument
844 FlOpenInputFile( char *InputFilename) argument
1275 FlParseInputPathname( char *InputFilename) argument
[all...]
H A Daslcompiler.h1091 char *InputFilename);
1095 char *InputFilename);
1099 char *InputFilename);
1103 char *InputFilename);
1107 char *InputFilename);
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-as/
H A Dllvm-as.cpp35 static cl::opt<std::string> InputFilename(cl::Positional,
74 if (InputFilename == "-") {
77 StringRef IFN = InputFilename;
132 InputFilename, Err, Context, nullptr, SetDataLayout);
134 ModuleAndIndex = parseAssemblyFileWithIndex(InputFilename, Err, Context,
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-bcanalyzer/
H A Dllvm-bcanalyzer.cpp40 InputFilename(cl::Positional, cl::desc("<input bitcode>"), cl::init("-"));
91 std::unique_ptr<MemoryBuffer> MB = ExitOnErr(openBitcodeFile(InputFilename));
112 BA.printStats(O, StringRef(InputFilename.getValue()));
/freebsd-13-stable/contrib/llvm-project/llvm/lib/TableGen/
H A DMain.cpp42 InputFilename(cl::Positional, cl::desc("<input file>"), cl::init("-"));
88 MemoryBuffer::getFileOrSTDIN(InputFilename);
90 return reportError(argv0, "Could not open input file '" + InputFilename +
/freebsd-13-stable/sys/contrib/dev/acpica/common/
H A Dadfile.c293 * PARAMETERS: InputFilename - Original ASL source filename
305 char *InputFilename,
318 strlen (InputFilename) + strlen (Suffix) + 2);
319 strcpy (NewFilename, InputFilename);
371 * PARAMETERS: InputFilename - The user-specified ASL source file to be
304 FlGenerateFilename( char *InputFilename, char *Suffix) argument
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/
H A Dllvm-objcopy.cpp211 return createFileError(Config.InputFilename, std::move(Err));
263 if (Config.InputFilename != "-") {
264 if (auto EC = sys::fs::status(Config.InputFilename, Stat))
265 return createFileError(Config.InputFilename, EC);
284 auto BufOrErr = MemoryBuffer::getFileOrSTDIN(Config.InputFilename);
286 return createFileError(Config.InputFilename, BufOrErr.getError());
292 createBinary(Config.InputFilename);
294 return createFileError(Config.InputFilename, BinaryOrErr.takeError());
H A DCopyConfig.h154 StringRef InputFilename; member in struct:llvm::objcopy::CopyConfig
H A DCopyConfig.cpp472 Config.InputFilename = Positional[0];
771 (Config.OutputFilename == "-" || Config.InputFilename == "-"))
924 Config.InputFilename = Positional[0];
1042 Config.InputFilename = Positional[0];
1059 Config.InputFilename = Filename;
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-dis/
H A Dllvm-dis.cpp39 InputFilename(cl::Positional, cl::desc("<input bitcode>"), cl::init("-"));
160 ExitOnErr(errorOrToExpected(MemoryBuffer::getFileOrSTDIN(InputFilename)));
190 if (InputFilename == "-") {
193 StringRef IFN = InputFilename;
/freebsd-13-stable/sys/contrib/dev/acpica/include/
H A Dacapps.h318 char *InputFilename,
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llc/
H A Dllc.cpp66 InputFilename(cl::Positional, cl::desc("<input bitcode>"), cl::init("-"));
196 if (InputFilename == "-")
199 // If InputFilename ends in .bc or .ll, remove it.
200 StringRef IFN = InputFilename;
477 (InputLanguage == "" && StringRef(InputFilename).endswith(".mir"))) {
478 MIR = createMIRParserFromFile(InputFilename, Err, Context,
483 M = parseIRFile(InputFilename, Err, Context, SetDataLayout);
559 (Twine(argv[0]) + Twine(": ") + Twine(InputFilename)).str();
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/
H A DELFObjcopy.cpp175 return createFileError(Config.InputFilename, std::move(Err));
185 return createFileError(Config.InputFilename, std::move(Err));
189 Config.InputFilename,
814 Config.InputFilename,
821 linkToBuildIdDir(Config, Config.InputFilename,
826 return createFileError(Config.InputFilename, std::move(E));
829 return createFileError(Config.InputFilename, std::move(E));
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-mc/
H A Dllvm-mc.cpp47 InputFilename(cl::Positional, cl::desc("<input file>"), cl::init("-"));
336 MemoryBuffer::getFileOrSTDIN(InputFilename);
339 << InputFilename << ": " << EC.message() << '\n';
434 Ctx.setGenDwarfRootFile(InputFilename, Buffer->getBuffer());
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/wasm/
H A DWasmObjcopy.cpp101 return createFileError(Config.InputFilename, ObjOrErr.takeError());
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/COFF/
H A DCOFFObjcopy.cpp271 return createFileError(Config.InputFilename, ObjOrErr.takeError());
275 return createFileError(Config.InputFilename, std::move(E));
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A Dllvm-pdbutil.h198 extern llvm::cl::list<std::string> InputFilename;
208 extern llvm::cl::list<std::string> InputFilename;
H A Dllvm-pdbutil.cpp629 cl::opt<std::string> InputFilename(cl::Positional,
690 cl::list<std::string> InputFilename(cl::Positional,
705 cl::list<std::string> InputFilename(cl::Positional,
728 cl::list<std::string> InputFilename(cl::Positional,
1351 ExitOnErr(InputFile::open(opts::explain::InputFilename.front(), true));
1362 PDBFile &File = loadPDB(opts::exportstream::InputFilename.front(), Session);
1509 pdb2Yaml(opts::pdb2yaml::InputFilename.front());
1512 SmallString<16> OutputFilename(opts::yaml2pdb::InputFilename.getValue());
1516 yamlToPdb(opts::yaml2pdb::InputFilename);
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-mca/
H A Dllvm-mca.cpp70 static cl::opt<std::string> InputFilename(cl::Positional,
319 MemoryBuffer::getFileOrSTDIN(InputFilename);
321 WithColor::error() << InputFilename << ": " << EC.message() << '\n';
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-extract/
H A Dllvm-extract.cpp39 // InputFilename - The filename to read from.
40 static cl::opt<std::string> InputFilename(cl::Positional,
148 std::unique_ptr<Module> M = getLazyIRFileModule(InputFilename, Err, Context);
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/
H A DMachOObjcopy.cpp366 Config.InputFilename,
371 return createFileError(Config.InputFilename, std::move(E));
/freebsd-13-stable/contrib/llvm-project/llvm/tools/bugpoint/
H A DBugDriver.h275 std::unique_ptr<Module> parseInputFile(StringRef InputFilename,
/freebsd-13-stable/contrib/llvm-project/llvm/tools/opt/
H A Dopt.cpp89 InputFilename(cl::Positional, cl::desc("<input bitcode file>"),
627 InputFilename, Err, Context, nullptr, SetDataLayout)
630 M = parseIRFile(InputFilename, Err, Context, SetDataLayout);
657 errs() << argv[0] << ": " << InputFilename local

Completed in 305 milliseconds