Home
last modified time | relevance | path

Searched refs:tool_output_file (Results 1 – 17 of 17) sorted by relevance

/NextBSD/contrib/llvm/lib/Support/
HDToolOutputFile.cpp19 tool_output_file::CleanupInstaller::CleanupInstaller(StringRef Filename) in CleanupInstaller()
26 tool_output_file::CleanupInstaller::~CleanupInstaller() { in ~CleanupInstaller()
37 tool_output_file::tool_output_file(StringRef Filename, std::error_code &EC, in tool_output_file() function in tool_output_file
45 tool_output_file::tool_output_file(StringRef Filename, int FD) in tool_output_file() function in tool_output_file
/NextBSD/contrib/llvm/include/llvm/Support/
HDToolOutputFile.h26 class tool_output_file {
48 tool_output_file(StringRef Filename, std::error_code &EC,
51 tool_output_file(StringRef Filename, int FD);
/NextBSD/contrib/llvm/tools/opt/
HDNewPMDriver.h30 class tool_output_file; variable
52 TargetMachine *TM, tool_output_file *Out,
HDopt.cpp369 std::unique_ptr<tool_output_file> Out; in main()
380 Out.reset(new tool_output_file(OutputFilename, EC, sys::fs::F_None)); in main()
469 Out = llvm::make_unique<tool_output_file>(OutputFilename, EC, in main()
HDNewPMDriver.cpp40 TargetMachine *TM, tool_output_file *Out, in runPassPipeline()
/NextBSD/contrib/llvm/tools/bugpoint/
HDOptimizerDriver.cpp62 static bool writeProgramToFileAux(tool_output_file &Out, const Module *M) { in writeProgramToFileAux()
74 tool_output_file Out(Filename, FD); in writeProgramToFile()
81 tool_output_file Out(Filename, EC, sys::fs::F_None); in writeProgramToFile()
157 tool_output_file InFile(InputFilename, InputFD); in runPasses()
HDExtractFunction.cpp362 tool_output_file BlocksToNotExtractFile(Filename.c_str(), FD); in extractMappedBlocksFromModule()
/NextBSD/contrib/llvm/lib/TableGen/
HDMain.cpp58 tool_output_file DepOut(DependFilename, EC, sys::fs::F_Text); in createDependencyFile()
98 tool_output_file Out(OutputFilename, EC, sys::fs::F_Text); in TableGenMain()
/NextBSD/contrib/llvm/tools/llvm-as/
HDllvm-as.cpp72 std::unique_ptr<tool_output_file> Out( in WriteOutputFile()
73 new tool_output_file(OutputFilename, EC, sys::fs::F_None)); in WriteOutputFile()
/NextBSD/contrib/llvm/tools/llc/
HDllc.cpp101 static std::unique_ptr<tool_output_file>
159 auto FDOut = llvm::make_unique<tool_output_file>(OutputFilename, EC, in GetOutputStream()
299 std::unique_ptr<tool_output_file> Out = in compileModule()
/NextBSD/contrib/llvm/tools/llvm-dis/
HDllvm-dis.cpp183 std::unique_ptr<tool_output_file> Out( in main()
184 new tool_output_file(OutputFilename, EC, sys::fs::F_None)); in main()
/NextBSD/contrib/llvm/tools/llvm-mc/
HDllvm-mc.cpp210 static std::unique_ptr<tool_output_file> GetOutputStream() { in GetOutputStream()
215 auto Out = llvm::make_unique<tool_output_file>(OutputFilename, EC, in GetOutputStream()
466 std::unique_ptr<tool_output_file> Out = GetOutputStream(); in main()
/NextBSD/contrib/llvm/tools/llvm-link/
HDllvm-link.cpp163 tool_output_file Out(OutputFilename, EC, sys::fs::F_None); in main()
/NextBSD/contrib/llvm/lib/LTO/
HDLTOCodeGenerator.cpp204 tool_output_file Out(path, EC, sys::fs::F_None); in writeMergedModules()
239 tool_output_file objFile(Filename.c_str(), FD); in compileOptimizedToFile()
/NextBSD/contrib/llvm/tools/llvm-extract/
HDllvm-extract.cpp270 tool_output_file Out(OutputFilename, EC, sys::fs::F_None); in main()
/NextBSD/contrib/llvm/tools/llvm-stress/
HDllvm-stress.cpp700 std::unique_ptr<tool_output_file> Out; in main()
706 Out.reset(new tool_output_file(OutputFilename, EC, sys::fs::F_None)); in main()
/NextBSD/contrib/llvm/lib/Object/
HDArchiveWriter.cpp280 tool_output_file Output(TmpArchive, TmpArchiveFD); in writeArchive()