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

/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-lto/
H A Dllvm-lto.cpp616 std::string OutputName = OutputFilename; local
617 if (OutputName.empty()) {
618 OutputName = Filename + ".thinlto.bc";
620 OutputName = getThinLTOOutputFile(OutputName, OldPrefix, NewPrefix);
622 raw_fd_ostream OS(OutputName, EC, sys::fs::OpenFlags::OF_None);
623 error(EC, "error opening the file '" + OutputName + "'");
646 std::string OutputName = OutputFilename; local
647 if (OutputName.empty()) {
648 OutputName
676 std::string OutputName = OutputFilename; local
709 std::string OutputName = OutputFilename; local
742 std::string OutputName = OutputFilename; local
767 std::string OutputName = OutputFilename; local
796 std::string OutputName = OutputFilename; local
849 auto OutputName = InputFilenames[BufID] + ".thinlto.o"; local
1042 const char *OutputName = nullptr; local
[all...]
/freebsd-11-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-11-stable/contrib/llvm-project/llvm/include/llvm/LTO/legacy/
H A DThinLTOCodeGenerator.h260 void emitImports(Module &Module, StringRef OutputName,
/freebsd-11-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-11-stable/contrib/llvm-project/llvm/lib/LTO/
H A DThinLTOCodeGenerator.cpp747 void ThinLTOCodeGenerator::emitImports(Module &TheModule, StringRef OutputName, argument
778 if ((EC = EmitImportsFiles(ModuleIdentifier, OutputName,
780 report_fatal_error(Twine("Failed to open ") + OutputName +

Completed in 181 milliseconds