| /openbsd-src/gnu/llvm/llvm/lib/Support/ |
| H A D | ToolOutputFile.cpp | 20 ToolOutputFile::CleanupInstaller::CleanupInstaller(StringRef Filename) in CleanupInstaller() 27 ToolOutputFile::CleanupInstaller::~CleanupInstaller() { in ~CleanupInstaller() 40 ToolOutputFile::ToolOutputFile(StringRef Filename, std::error_code &EC, in ToolOutputFile() function in ToolOutputFile 55 ToolOutputFile::ToolOutputFile(StringRef Filename, int FD) in ToolOutputFile() function in ToolOutputFile
|
| H A D | CodeGenCoverage.cpp | 92 std::unique_ptr<ToolOutputFile> CoverageFile = in emit() 93 std::make_unique<ToolOutputFile>(CoverageFilename, EC, OpenFlags); in emit()
|
| /openbsd-src/gnu/llvm/llvm/tools/opt/ |
| H A D | NewPMDriver.h | 30 class ToolOutputFile; variable 68 TargetLibraryInfoImpl *TLII, ToolOutputFile *Out, 69 ToolOutputFile *ThinLinkOut, ToolOutputFile *OptRemarkFile,
|
| H A D | opt.cpp | 526 Expected<std::unique_ptr<ToolOutputFile>> RemarksFileOrErr = in main() 534 std::unique_ptr<ToolOutputFile> RemarksFile = std::move(*RemarksFileOrErr); in main() 590 std::unique_ptr<ToolOutputFile> Out; in main() 591 std::unique_ptr<ToolOutputFile> ThinLinkOut; in main() 604 Out.reset(new ToolOutputFile(OutputFilename, EC, Flags)); in main() 612 new ToolOutputFile(ThinLinkBitcodeFile, EC, sys::fs::OF_None)); in main() 793 Out = std::make_unique<ToolOutputFile>(OutputFilename, EC, in main()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/Support/ |
| H A D | ToolOutputFile.h | 26 class ToolOutputFile { 54 ToolOutputFile(StringRef Filename, std::error_code &EC, 57 ToolOutputFile(StringRef Filename, int FD);
|
| /openbsd-src/gnu/llvm/llvm/tools/lli/ |
| H A D | ExecutionUtils.h | 48 std::unique_ptr<ToolOutputFile> TestOut; 55 static std::unique_ptr<ToolOutputFile> createToolOutput();
|
| H A D | ExecutionUtils.cpp | 135 std::unique_ptr<ToolOutputFile> 138 auto TestOut = std::make_unique<ToolOutputFile>("-", EC, sys::fs::OF_None); in createToolOutput()
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-split/ |
| H A D | llvm-split.cpp | 68 std::unique_ptr<ToolOutputFile> Out(new ToolOutputFile( in main()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/IR/ |
| H A D | LLVMRemarkStreamer.h | 27 class ToolOutputFile; variable 85 Expected<std::unique_ptr<ToolOutputFile>>
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-modextract/ |
| H A D | llvm-modextract.cpp | 66 std::unique_ptr<ToolOutputFile> Out( in main() 67 new ToolOutputFile(OutputFilename, EC, sys::fs::OF_None)); in main()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/LTO/ |
| H A D | LTO.h | 38 class ToolOutputFile; variable 86 Expected<std::unique_ptr<ToolOutputFile>> setupLLVMOptimizationRemarks( 92 Expected<std::unique_ptr<ToolOutputFile>> 425 std::unique_ptr<ToolOutputFile> DiagnosticOutputFile;
|
| /openbsd-src/gnu/llvm/llvm/tools/llc/ |
| H A D | llc.cpp | 239 static std::unique_ptr<ToolOutputFile> GetOutputStream(const char *TargetName, in GetOutputStream() 297 auto FDOut = std::make_unique<ToolOutputFile>(OutputFilename, EC, OpenFlags); in GetOutputStream() 406 Expected<std::unique_ptr<ToolOutputFile>> RemarksFileOrErr = in main() 412 std::unique_ptr<ToolOutputFile> RemarksFile = std::move(*RemarksFileOrErr); in main() 618 std::unique_ptr<ToolOutputFile> Out = in compileModule() 625 std::unique_ptr<ToolOutputFile> DwoOut; in compileModule() 628 DwoOut = std::make_unique<ToolOutputFile>(SplitDwarfOutputFile, EC, in compileModule()
|
| /openbsd-src/gnu/llvm/llvm/utils/split-file/ |
| H A D | split-file.cpp | 116 std::vector<std::unique_ptr<ToolOutputFile>> outputFiles; in handle() 125 auto f = std::make_unique<ToolOutputFile>(partPath.str(), ec, in handle() 138 for (std::unique_ptr<ToolOutputFile> &outputFile : outputFiles) in handle()
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-sim/ |
| H A D | llvm-sim.cpp | 66 std::unique_ptr<ToolOutputFile> Out( in exportToFile() 67 new ToolOutputFile(FilePath, EC, sys::fs::OF_None)); in exportToFile()
|
| /openbsd-src/gnu/llvm/llvm/lib/TableGen/ |
| H A D | Main.cpp | 75 ToolOutputFile DepOut(DependFilename, EC, sys::fs::OF_Text); in createDependencyFile() 149 ToolOutputFile OutFile(OutputFilename, EC, sys::fs::OF_Text); in TableGenMain()
|
| /openbsd-src/gnu/llvm/llvm/tools/bugpoint/ |
| H A D | OptimizerDriver.cpp | 53 static bool writeProgramToFileAux(ToolOutputFile &Out, const Module &M) { in writeProgramToFileAux() 65 ToolOutputFile Out(Filename, FD); in writeProgramToFile() 82 ToolOutputFile Out(Filename, EC, sys::fs::OF_None); in writeProgramToFile()
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-remarkutil/ |
| H A D | RemarkUtil.cpp | 94 static Expected<std::unique_ptr<ToolOutputFile>> 99 auto OF = std::make_unique<ToolOutputFile>(OutputFileName, ErrorCode, Flags); in getOutputFileWithFlags() 109 static Expected<std::unique_ptr<ToolOutputFile>>
|
| /openbsd-src/gnu/llvm/llvm/tools/obj2yaml/ |
| H A D | obj2yaml.cpp | 110 std::unique_ptr<ToolOutputFile> Out( in main() 111 new ToolOutputFile(OutputFilename, EC, sys::fs::OF_Text)); in main()
|
| /openbsd-src/gnu/llvm/llvm/tools/yaml2obj/ |
| H A D | yaml2obj.cpp | 125 std::unique_ptr<ToolOutputFile> Out( in main() 126 new ToolOutputFile(OutputFilename, EC, sys::fs::OF_None)); in main()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/LTO/legacy/ |
| H A D | LTOCodeGenerator.h | 245 std::unique_ptr<ToolOutputFile> DiagnosticOutputFile; 246 std::unique_ptr<ToolOutputFile> StatsFile = nullptr;
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-as/ |
| H A D | llvm-as.cpp | 84 std::unique_ptr<ToolOutputFile> Out( in WriteOutputFile() 85 new ToolOutputFile(OutputFilename, EC, sys::fs::OF_None)); in WriteOutputFile()
|
| /openbsd-src/gnu/llvm/llvm/lib/IR/ |
| H A D | LLVMRemarkStreamer.cpp | 95 Expected<std::unique_ptr<ToolOutputFile>> llvm::setupLLVMOptimizationRemarks( in setupLLVMOptimizationRemarks() 115 std::make_unique<ToolOutputFile>(RemarksFilename, EC, Flags); in setupLLVMOptimizationRemarks()
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-mc/ |
| H A D | llvm-mc.cpp | 252 static std::unique_ptr<ToolOutputFile> GetOutputStream(StringRef Path, in GetOutputStream() 255 auto Out = std::make_unique<ToolOutputFile>(Path, EC, Flags); in GetOutputStream() 495 std::unique_ptr<ToolOutputFile> Out = GetOutputStream(OutputFilename, Flags); in main() 499 std::unique_ptr<ToolOutputFile> DwoOut; in main()
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-remark-size-diff/ |
| H A D | RemarkSizeDiff.cpp | 383 static ErrorOr<std::unique_ptr<ToolOutputFile>> getOutputStream() { in getOutputStream() 387 auto Out = std::make_unique<ToolOutputFile>(OutputFilename, EC, in getOutputStream() 477 std::unique_ptr<ToolOutputFile> OF = std::move(*MaybeOF); in outputAllDiffs()
|
| /openbsd-src/gnu/llvm/llvm/tools/llvm-dis/ |
| H A D | llvm-dis.cpp | 239 std::unique_ptr<ToolOutputFile> Out( in main() 240 new ToolOutputFile(FinalFilename, EC, sys::fs::OF_TextWithCRLF)); in main()
|