| /freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | FileUtilities.h | 85 create(StringRef InputFilename); 95 FilePermissionsApplier(StringRef InputFilename, sys::fs::file_status Status) in FilePermissionsApplier() argument 96 : InputFilename(InputFilename), InputStatus(Status) {} in FilePermissionsApplier() 98 StringRef InputFilename; variable
|
| /freebsd/sys/contrib/dev/acpica/compiler/ |
| H A D | aslfiles.c | 168 char *InputFilename); 173 char *InputFilename); 195 char *InputFilename) in FlInitOneFile() argument 201 if (FlInputFileExists (InputFilename)) in FlInitOneFile() 203 AslError (ASL_ERROR, ASL_MSG_DUPLICATE_INPUT_FILE, NULL, InputFilename); in FlInitOneFile() 286 char *InputFilename) in FlSwitchFileSet() argument 294 if (!strcmp(Current->Files[ASL_FILE_INPUT].Filename, InputFilename)) in FlSwitchFileSet() 300 if (!strcmp (InputFilename, PrevFilename)) in FlSwitchFileSet() 847 char *InputFilename) in FlOpenInputFile() argument 852 FlOpenFile (ASL_FILE_INPUT, InputFilename, "rt"); in FlOpenInputFile() [all …]
|
| H A D | aslcompiler.h | 1091 char *InputFilename); 1095 char *InputFilename); 1099 char *InputFilename); 1103 char *InputFilename); 1107 char *InputFilename);
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-as/ |
| H A D | llvm-as.cpp | 36 InputFilename(cl::Positional, cl::desc("<input .ll file>"), cl::init("-")); variable 73 if (InputFilename == "-") { in WriteOutputFile() 76 StringRef IFN = InputFilename; in WriteOutputFile() 131 InputFilename, Err, Context, nullptr, SetDataLayout); in main() 133 ModuleAndIndex = parseAssemblyFileWithIndex(InputFilename, Err, Context, in main()
|
| /freebsd/contrib/llvm-project/llvm/lib/Support/ |
| H A D | FileUtilities.cpp | 271 FilePermissionsApplier::create(StringRef InputFilename) { in create() argument 274 if (InputFilename != "-") { in create() 275 if (auto EC = sys::fs::status(InputFilename, Status)) in create() 276 return createFileError(InputFilename, EC); in create() 281 return FilePermissionsApplier(InputFilename, Status); in create() 314 if (OutputFilename == InputFilename && OStat.getUser() == 0) in apply() 319 if (OutputFilename != InputFilename) in apply()
|
| /freebsd/contrib/llvm-project/clang/lib/Driver/ToolChains/ |
| H A D | InterfaceStubs.cpp | 52 SmallString<128> InputFilename(Input.getFilename()); in ConstructJob() local 54 llvm::sys::path::replace_extension(InputFilename, ".ifs"); in ConstructJob() 55 CmdArgs.push_back(Args.MakeArgString(InputFilename.c_str())); in ConstructJob()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/LogicalView/Core/ |
| H A D | LVReader.h | 145 std::string InputFilename; variable 186 sys::path::parent_path(InputFilename), in createAlternativePath() 198 LVReader(StringRef InputFilename, StringRef FileFormatName, ScopedPrinter &W, 201 InputFilename(InputFilename), FileFormatName(FileFormatName), W(W), in BinaryType() 263 StringRef getFilename() const { return InputFilename; } in getFilename() 264 void setFilename(std::string Name) { InputFilename = std::move(Name); } in setFilename()
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-objcopy/ |
| H A D | llvm-objcopy.cpp | 128 FilePermissionsApplier::create(Config.InputFilename); in executeObjcopy() 140 MemoryBuffer::getFileOrSTDIN(Config.InputFilename); in executeObjcopy() 142 return createFileError(Config.InputFilename, BufOrErr.getError()); in executeObjcopy() 158 createBinary(Config.InputFilename); in executeObjcopy() 160 return createFileError(Config.InputFilename, BinaryOrErr.takeError()); in executeObjcopy()
|
| H A D | ObjcopyOptions.cpp | 749 Config.InputFilename = Positional[0]; in parseObjcopyOptions() 1231 (Config.OutputFilename == "-" || Config.InputFilename == "-")) in parseObjcopyOptions() 1426 Config.InputFilename = Positional[0]; in parseInstallNameToolOptions() 1430 createBinary(Config.InputFilename); in parseInstallNameToolOptions() 1432 return createFileError(Config.InputFilename, BinaryOrErr.takeError()); in parseInstallNameToolOptions() 1437 Config.InputFilename.str().c_str()); in parseInstallNameToolOptions() 1483 Config.InputFilename = Positional[0]; in parseBitcodeStripOptions() 1633 Config.InputFilename = Positional[0]; in parseStripOptions() 1650 Config.InputFilename = Filename; in parseStripOptions()
|
| /freebsd/contrib/llvm-project/llvm/lib/TableGen/ |
| H A D | Main.cpp | 51 InputFilename(cl::Positional, cl::desc("<input file>"), cl::init("-")); variable 120 MemoryBuffer::getFileOrSTDIN(InputFilename, /*IsText=*/true); in TableGenMain() 122 return reportError(argv0, "Could not open input file '" + InputFilename + in TableGenMain() 125 Records.saveInputFilename(InputFilename); in TableGenMain()
|
| /freebsd/contrib/llvm-project/llvm/lib/ObjCopy/MachO/ |
| H A D | MachOObjcopy.cpp | 309 StringRef InputFilename, Object &Obj) { in dumpSectionToFile() argument 326 return createFileError(InputFilename, object_error::parse_failed, in dumpSectionToFile() 448 dumpSectionToFile(SectionName, FileName, Config.InputFilename, Obj)) in handleArgs() 453 return createFileError(Config.InputFilename, std::move(E)); in handleArgs() 468 return createFileError(Config.InputFilename, std::move(E)); in handleArgs() 470 return createFileError(Config.InputFilename, std::move(E)); in handleArgs() 475 return createFileError(Config.InputFilename, std::move(E)); in handleArgs() 477 return createFileError(Config.InputFilename, std::move(E)); in handleArgs() 481 return createFileError(Config.InputFilename, std::move(E)); in handleArgs() 493 return createFileError(Config.InputFilename, O.takeError()); in executeObjcopyOnBinary() [all …]
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-dis/ |
| H A D | llvm-dis.cpp | 194 for (const auto &InputFilename : InputFilenames) { in main() local 202 MemoryBuffer::getFileOrSTDIN(InputFilename); in main() 204 WithColor::error() << InputFilename << ": " << EC.message() << '\n'; in main() 242 if (InputFilename == "-") { in main() 245 StringRef IFN = InputFilename; in main()
|
| /freebsd/contrib/llvm-project/llvm/lib/ObjCopy/ELF/ |
| H A D | ELFObjcopy.cpp | 189 StringRef InputFilename, Object &Obj) { in dumpSectionToFile() argument 193 return createFileError(InputFilename, object_error::parse_failed, in dumpSectionToFile() 209 return createFileError(InputFilename, object_error::parse_failed, in dumpSectionToFile() 803 dumpSectionToFile(SectionName, FileName, Config.InputFilename, Obj)) in handleArgs() 812 return createFileError(Config.InputFilename, std::move(E)); in handleArgs() 815 return createFileError(Config.InputFilename, std::move(E)); in handleArgs() 832 Config.InputFilename, errc::invalid_argument, in handleArgs() 841 Config.InputFilename, errc::invalid_argument, in handleArgs() 855 Config.InputFilename, object_error::invalid_file_type, in handleArgs() 867 Config.InputFilename, errc::invalid_argument, in handleArgs() [all …]
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-bcanalyzer/ |
| H A D | llvm-bcanalyzer.cpp | 43 static cl::opt<std::string> InputFilename(cl::Positional, variable 110 std::unique_ptr<MemoryBuffer> MB = ExitOnErr(openBitcodeFile(InputFilename)); in main() 133 BA.printStats(O, StringRef(InputFilename.getValue())); in main()
|
| /freebsd/sys/contrib/dev/acpica/common/ |
| H A D | adfile.c | 305 char *InputFilename, in FlGenerateFilename() argument 318 strlen (InputFilename) + strlen (Suffix) + 2); in FlGenerateFilename() 319 strcpy (NewFilename, InputFilename); in FlGenerateFilename()
|
| /freebsd/contrib/llvm-project/llvm/tools/llc/ |
| H A D | llc.cpp | 70 InputFilename(cl::Positional, cl::desc("<input bitcode>"), cl::init("-")); variable 267 if (InputFilename == "-") in GetOutputStream() 271 StringRef IFN = InputFilename; in GetOutputStream() 487 InputFilename); in compileModule() 499 InputFilename); in compileModule() 560 (InputLanguage == "" && StringRef(InputFilename).ends_with(".mir"))) { in compileModule() 561 MIR = createMIRParserFromFile(InputFilename, Err, Context, in compileModule() 566 M = parseIRFile(InputFilename, Err, Context, in compileModule() 641 reportError("input module cannot be verified", InputFilename); in compileModule()
|
| /freebsd/contrib/llvm-project/llvm/lib/ObjCopy/XCOFF/ |
| H A D | XCOFFObjcopy.cpp | 31 return createFileError(Config.InputFilename, ObjOrErr.takeError()); in executeObjcopyOnBinary() 35 return createFileError(Config.InputFilename, std::move(E)); in executeObjcopyOnBinary()
|
| /freebsd/contrib/llvm-project/llvm/lib/ObjCopy/wasm/ |
| H A D | WasmObjcopy.cpp | 41 StringRef InputFilename, Object &Obj) { in dumpSectionToFile() argument 119 dumpSectionToFile(SecName, FileName, Config.InputFilename, Obj)) in handleArgs() 150 return createFileError(Config.InputFilename, ObjOrErr.takeError()); in executeObjcopyOnBinary()
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-modextract/ |
| H A D | llvm-modextract.cpp | 37 static cl::opt<std::string> InputFilename(cl::Positional, variable 54 ExitOnErr(errorOrToExpected(MemoryBuffer::getFileOrSTDIN(InputFilename))); in main()
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-dwarfutil/ |
| H A D | llvm-dwarfutil.cpp | 256 Config.Common.InputFilename = Opts.InputFileName; in saveSeparateDebugInfo() 279 Config.Common.InputFilename = Opts.InputFileName; in saveNonDebugInfo() 362 Config.Common.InputFilename = Opts.InputFileName; in saveSeparateLinkedDebugInfo() 393 Config.Common.InputFilename = Opts.InputFileName; in saveSingleLinkedDebugInfo() 433 Config.Common.InputFilename = Opts.InputFileName; in saveCopyOfFile()
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-mc/ |
| H A D | llvm-mc.cpp | 51 static cl::opt<std::string> InputFilename(cl::Positional, variable 393 MemoryBuffer::getFileOrSTDIN(InputFilename, /*IsText=*/true); in main() 396 << InputFilename << ": " << EC.message() << '\n'; in main() 502 Ctx.setGenDwarfRootFile(InputFilename, Buffer->getBuffer()); in main()
|
| /freebsd/contrib/llvm-project/llvm/tools/opt/ |
| H A D | optdriver.cpp | 100 static cl::opt<std::string> InputFilename(cl::Positional, variable 549 InputFilename, Err, Context, nullptr, SetDataLayout) in optMain() 552 M = parseIRFile(InputFilename, Err, Context, in optMain() 580 errs() << argv[0] << ": " << InputFilename in optMain()
|
| /freebsd/sys/contrib/dev/acpica/include/ |
| H A D | acapps.h | 318 char *InputFilename,
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/ |
| H A D | llvm-pdbutil.h | 199 extern llvm::cl::list<std::string> InputFilename; 209 extern llvm::cl::list<std::string> InputFilename;
|
| H A D | llvm-pdbutil.cpp | 657 cl::opt<std::string> InputFilename(cl::Positional, variable 718 cl::list<std::string> InputFilename(cl::Positional, variable 734 cl::list<std::string> InputFilename(cl::Positional, variable 757 static cl::list<std::string> InputFilename(cl::Positional, variable 1379 ExitOnErr(InputFile::open(opts::explain::InputFilename.front(), true)); in explain() 1390 PDBFile &File = loadPDB(opts::exportstream::InputFilename.front(), Session); in exportStream() 1576 pdb2Yaml(opts::pdb2yaml::InputFilename.front()); in main() 1579 SmallString<16> OutputFilename(opts::yaml2pdb::InputFilename.getValue()); in main() 1583 yamlToPdb(opts::yaml2pdb::InputFilename); in main()
|