Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-lto/
H A Dllvm-lto.cpp644 std::string OutputName = OutputFilename; in distributedIndexes() local
645 if (OutputName.empty()) { in distributedIndexes()
646 OutputName = Filename + ".thinlto.bc"; in distributedIndexes()
648 OutputName = getThinLTOOutputFile(OutputName, OldPrefix, NewPrefix); in distributedIndexes()
650 raw_fd_ostream OS(OutputName, EC, sys::fs::OpenFlags::OF_None); in distributedIndexes()
651 error(EC, "error opening the file '" + OutputName + "'"); in distributedIndexes()
674 std::string OutputName = OutputFilename; in emitImports() local
675 if (OutputName.empty()) { in emitImports()
676 OutputName = Filename + ".imports"; in emitImports()
678 OutputName = in emitImports()
[all …]
/netbsd-src/sys/external/bsd/compiler_rt/dist/lib/profile/
H A DPGOProfiling.c59 const char *OutputName = getenv("LLVM_PROFILE_FILE"); in llvm_pgo_writeout_files() local
60 if (OutputName == NULL || OutputName[0] == '\0') in llvm_pgo_writeout_files()
61 OutputName = "default.profdata"; in llvm_pgo_writeout_files()
62 OutputFile = fopen(OutputName, "w"); in llvm_pgo_writeout_files()
H A DInstrProfilingFile.c53 static int writeFileWithName(const char *OutputName) { in writeFileWithName() argument
56 if (!OutputName || !OutputName[0]) in writeFileWithName()
60 OutputFile = fopen(OutputName, "ab"); in writeFileWithName()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/LTO/legacy/
H A DThinLTOCodeGenerator.h260 void emitImports(Module &Module, StringRef OutputName,
/netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/
H A DSemaStmtAsm.cpp267 StringRef OutputName; in ActOnGCCAsmStmt() local
269 OutputName = Names[i]->getName(); in ActOnGCCAsmStmt()
271 TargetInfo::ConstraintInfo Info(Literal->getString(), OutputName); in ActOnGCCAsmStmt()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/LTO/
H A DThinLTOCodeGenerator.cpp779 void ThinLTOCodeGenerator::emitImports(Module &TheModule, StringRef OutputName, in emitImports() argument
810 if ((EC = EmitImportsFiles(ModuleIdentifier, OutputName, in emitImports()
812 report_fatal_error(Twine("Failed to open ") + OutputName + in emitImports()