Searched refs:OutputName (Results 1 – 7 of 7) sorted by relevance
/freebsd/contrib/llvm-project/llvm/tools/llvm-lto/ |
H A D | llvm-lto.cpp | 699 std::string OutputName = OutputFilename; in distributedIndexes() local 700 if (OutputName.empty()) { in distributedIndexes() 701 OutputName = Filename + ".thinlto.bc"; in distributedIndexes() 703 OutputName = getThinLTOOutputFile(OutputName, OldPrefix, NewPrefix); in distributedIndexes() 705 raw_fd_ostream OS(OutputName, EC, sys::fs::OpenFlags::OF_None); in distributedIndexes() 706 error(EC, "error opening the file '" + OutputName + "'"); in distributedIndexes() 729 std::string OutputName = OutputFilename; in emitImports() local 730 if (OutputName.empty()) { in emitImports() 731 OutputName = Filename + ".imports"; in emitImports() 733 OutputName = in emitImports() [all …]
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-tli-checker/ |
H A D | llvm-tli-checker.cpp | 100 std::string OutputName = "'"; in reportArchiveChildIssue() 101 OutputName += Name; in reportArchiveChildIssue() 102 OutputName += "'"; in reportArchiveChildIssue() 105 OutputName += " aka "; 106 OutputName += DemangledName; in getPrintableName() 108 return OutputName; in getPrintableName() 107 std::string OutputName = "'"; getPrintableName() local
|
/freebsd/contrib/llvm-project/compiler-rt/lib/profile/ |
H A D | InstrProfilingFile.c | 499 static FILE *getFileObject(const char *OutputName) { in getFileObject() argument 506 return fopen(OutputName, "ab"); in getFileObject() 510 static int writeFile(const char *OutputName) { in writeFile() argument 517 OutputFile = openFileForMerging(OutputName, &MergeDone); in writeFile() 519 OutputFile = getFileObject(OutputName); in writeFile() 543 static int writeOrderFile(const char *OutputName) { in writeOrderFile() argument 547 OutputFile = fopen(OutputName, "w"); in writeOrderFile() 550 PROF_WARN("can't open file with mode ab: %s\n", OutputName); in writeOrderFile()
|
/freebsd/contrib/llvm-project/clang/lib/Driver/ToolChains/ |
H A D | ZOS.cpp | 149 StringRef OutputName = Output.getFilename(); in ConstructJob() local 152 size_t Suffix = OutputName.find_last_of('.'); in ConstructJob() 154 Args.MakeArgString(OutputName.substr(0, Suffix) + ".x"); in ConstructJob()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/LTO/legacy/ |
H A D | ThinLTOCodeGenerator.h | 262 void emitImports(Module &Module, StringRef OutputName,
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaStmtAsm.cpp | 269 StringRef OutputName; in ActOnGCCAsmStmt() local 271 OutputName = Names[i]->getName(); in ActOnGCCAsmStmt() 273 TargetInfo::ConstraintInfo Info(Literal->getString(), OutputName); in ActOnGCCAsmStmt()
|
/freebsd/contrib/llvm-project/llvm/lib/LTO/ |
H A D | ThinLTOCodeGenerator.cpp | 806 void ThinLTOCodeGenerator::emitImports(Module &TheModule, StringRef OutputName, in emitImports() argument 846 if ((EC = EmitImportsFiles(ModuleIdentifier, OutputName, in emitImports() 848 report_fatal_error(Twine("Failed to open ") + OutputName + in emitImports()
|