Searched refs:OutputName (Results 1 - 6 of 6) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-lto/
H A Dllvm-lto.cpp646 std::string OutputName = OutputFilename; local
647 if (OutputName.empty()) {
648 OutputName = Filename + ".thinlto.bc";
650 OutputName = getThinLTOOutputFile(OutputName, OldPrefix, NewPrefix);
652 raw_fd_ostream OS(OutputName, EC, sys::fs::OpenFlags::OF_None);
653 error(EC, "error opening the file '" + OutputName + "'");
676 std::string OutputName = OutputFilename; local
677 if (OutputName.empty()) {
678 OutputName
706 std::string OutputName = OutputFilename; local
739 std::string OutputName = OutputFilename; local
772 std::string OutputName = OutputFilename; local
797 std::string OutputName = OutputFilename; local
826 std::string OutputName = OutputFilename; local
879 auto OutputName = InputFilenames[BufID] + ".thinlto.o"; local
1073 const char *OutputName = nullptr; local
[all...]
/freebsd-13-stable/contrib/llvm-project/compiler-rt/lib/profile/
H A DInstrProfilingFile.c317 static FILE *getFileObject(const char *OutputName) { argument
324 return fopen(OutputName, "ab");
327 /* Write profile data to file \c OutputName. */
328 static int writeFile(const char *OutputName) { argument
335 OutputFile = openFileForMerging(OutputName, &MergeDone);
337 OutputFile = getFileObject(OutputName);
360 /* Write order data to file \c OutputName. */
361 static int writeOrderFile(const char *OutputName) { argument
365 OutputFile = fopen(OutputName, "w");
368 PROF_WARN("can't open file with mode ab: %s\n", OutputName);
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DInlineSizeEstimatorAnalysis.cpp248 std::vector<std::string> OutputName{"StatefulPartitionedCall"};
250 TFIR2NativeModelPath.getValue().c_str(), InputNames, OutputName);
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/LTO/legacy/
H A DThinLTOCodeGenerator.h260 void emitImports(Module &Module, StringRef OutputName,
/freebsd-13-stable/contrib/llvm-project/clang/lib/Sema/
H A DSemaStmtAsm.cpp267 StringRef OutputName; local
269 OutputName = Names[i]->getName();
271 TargetInfo::ConstraintInfo Info(Literal->getString(), OutputName);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/LTO/
H A DThinLTOCodeGenerator.cpp761 void ThinLTOCodeGenerator::emitImports(Module &TheModule, StringRef OutputName, argument
792 if ((EC = EmitImportsFiles(ModuleIdentifier, OutputName,
794 report_fatal_error(Twine("Failed to open ") + OutputName +

Completed in 141 milliseconds