| /freebsd-13.1/contrib/llvm-project/llvm/lib/Support/ |
| H A D | ToolOutputFile.cpp | 21 ToolOutputFile::CleanupInstaller::CleanupInstaller(StringRef Filename) in CleanupInstaller() 28 ToolOutputFile::CleanupInstaller::~CleanupInstaller() { in ~CleanupInstaller() 41 ToolOutputFile::ToolOutputFile(StringRef Filename, std::error_code &EC, in ToolOutputFile() function in ToolOutputFile 56 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()
|
| /freebsd-13.1/contrib/llvm-project/llvm/tools/opt/ |
| H A D | NewPMDriver.h | 30 class ToolOutputFile; variable 69 TargetLibraryInfoImpl *TLII, ToolOutputFile *Out, 70 ToolOutputFile *ThinLinkOut, ToolOutputFile *OptRemarkFile,
|
| H A D | opt.cpp | 631 Expected<std::unique_ptr<ToolOutputFile>> RemarksFileOrErr = in main() 639 std::unique_ptr<ToolOutputFile> RemarksFile = std::move(*RemarksFileOrErr); in main() 694 std::unique_ptr<ToolOutputFile> Out; in main() 695 std::unique_ptr<ToolOutputFile> ThinLinkOut; in main() 708 Out.reset(new ToolOutputFile(OutputFilename, EC, Flags)); in main() 716 new ToolOutputFile(ThinLinkBitcodeFile, EC, sys::fs::OF_None)); in main() 892 Out = std::make_unique<ToolOutputFile>(OutputFilename, EC, in main()
|
| H A D | NewPMDriver.cpp | 238 TargetLibraryInfoImpl *TLII, ToolOutputFile *Out, in runPassPipeline() 239 ToolOutputFile *ThinLTOLinkOut, in runPassPipeline() 240 ToolOutputFile *OptRemarkFile, in runPassPipeline()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | ToolOutputFile.h | 26 class ToolOutputFile { 53 ToolOutputFile(StringRef Filename, std::error_code &EC, 56 ToolOutputFile(StringRef Filename, int FD);
|
| /freebsd-13.1/contrib/llvm-project/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()
|
| /freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-modextract/ |
| H A D | llvm-modextract.cpp | 64 std::unique_ptr<ToolOutputFile> Out( in main() 65 new ToolOutputFile(OutputFilename, EC, sys::fs::OF_None)); in main()
|
| /freebsd-13.1/contrib/llvm-project/llvm/tools/llc/ |
| H A D | llc.cpp | 223 static std::unique_ptr<ToolOutputFile> GetOutputStream(const char *TargetName, in GetOutputStream() 281 auto FDOut = std::make_unique<ToolOutputFile>(OutputFilename, EC, OpenFlags); in GetOutputStream() 376 Expected<std::unique_ptr<ToolOutputFile>> RemarksFileOrErr = in main() 382 std::unique_ptr<ToolOutputFile> RemarksFile = std::move(*RemarksFileOrErr); in main() 577 std::unique_ptr<ToolOutputFile> Out = in compileModule() 581 std::unique_ptr<ToolOutputFile> DwoOut; in compileModule() 584 DwoOut = std::make_unique<ToolOutputFile>(SplitDwarfOutputFile, EC, in compileModule()
|
| /freebsd-13.1/contrib/llvm-project/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()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/TableGen/ |
| H A D | Main.cpp | 73 ToolOutputFile DepOut(DependFilename, EC, sys::fs::OF_Text); in createDependencyFile() 147 ToolOutputFile OutFile(OutputFilename, EC, sys::fs::OF_Text); in TableGenMain()
|
| /freebsd-13.1/contrib/llvm-project/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()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/LTO/legacy/ |
| H A D | LTOCodeGenerator.h | 238 std::unique_ptr<ToolOutputFile> DiagnosticOutputFile; 239 std::unique_ptr<ToolOutputFile> StatsFile = nullptr;
|
| /freebsd-13.1/contrib/llvm-project/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()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/LTO/ |
| H A D | LTO.h | 37 class ToolOutputFile; variable 85 Expected<std::unique_ptr<ToolOutputFile>> setupLLVMOptimizationRemarks( 91 Expected<std::unique_ptr<ToolOutputFile>>
|
| H A D | LTOBackend.h | 62 std::unique_ptr<ToolOutputFile> DiagOutputFile);
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/IR/ |
| H A D | LLVMRemarkStreamer.cpp | 92 Expected<std::unique_ptr<ToolOutputFile>> llvm::setupLLVMOptimizationRemarks( in setupLLVMOptimizationRemarks() 112 std::make_unique<ToolOutputFile>(RemarksFilename, EC, Flags); in setupLLVMOptimizationRemarks()
|
| /freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-dis/ |
| H A D | llvm-dis.cpp | 223 std::unique_ptr<ToolOutputFile> Out( in main() 224 new ToolOutputFile(FinalFilename, EC, sys::fs::OF_TextWithCRLF)); in main()
|
| /freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-mc/ |
| H A D | llvm-mc.cpp | 254 static std::unique_ptr<ToolOutputFile> GetOutputStream(StringRef Path, in GetOutputStream() 257 auto Out = std::make_unique<ToolOutputFile>(Path, EC, Flags); in GetOutputStream() 497 std::unique_ptr<ToolOutputFile> Out = GetOutputStream(OutputFilename, Flags); in main() 501 std::unique_ptr<ToolOutputFile> DwoOut; in main()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | LLVMRemarkStreamer.h | 78 Expected<std::unique_ptr<ToolOutputFile>>
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/LTO/ |
| H A D | LTOBackend.cpp | 385 std::unique_ptr<ToolOutputFile> DwoOut; in codegen() 401 DwoOut = std::make_unique<ToolOutputFile>(DwoFile, EC, sys::fs::OF_None); in codegen() 488 std::unique_ptr<ToolOutputFile> DiagOutputFile) { in finalizeOptimizationRemarks() 579 std::unique_ptr<ToolOutputFile> DiagnosticOutputFile) { in thinBackend()
|
| /freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-mca/ |
| H A D | llvm-mca.cpp | 254 ErrorOr<std::unique_ptr<ToolOutputFile>> getOutputStream() { in getOutputStream() 258 auto Out = std::make_unique<ToolOutputFile>(OutputFilename, EC, in getOutputStream() 499 std::unique_ptr<ToolOutputFile> TOF = std::move(*OF); in main()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CodeGenAction.cpp | 310 Expected<std::unique_ptr<llvm::ToolOutputFile>> OptRecordFileOrErr = in HandleTranslationUnit() 321 std::unique_ptr<llvm::ToolOutputFile> OptRecordFile = in HandleTranslationUnit() 1099 Expected<std::unique_ptr<llvm::ToolOutputFile>> OptRecordFileOrErr = in ExecuteAction() 1109 std::unique_ptr<llvm::ToolOutputFile> OptRecordFile = in ExecuteAction()
|
| /freebsd-13.1/lib/clang/libllvmminimal/ |
| H A D | Makefile | 60 SRCS+= Support/ToolOutputFile.cpp
|