Home
last modified time | relevance | path

Searched refs:ToolOutputFile (Results 1 – 25 of 76) sorted by relevance

1234

/external/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DToolOutputFile.cpp18 ToolOutputFile::CleanupInstaller::CleanupInstaller(StringRef Filename) in CleanupInstaller()
25 ToolOutputFile::CleanupInstaller::~CleanupInstaller() { in ~CleanupInstaller()
36 ToolOutputFile::ToolOutputFile(StringRef Filename, std::error_code &EC, in ToolOutputFile() function in ToolOutputFile
44 ToolOutputFile::ToolOutputFile(StringRef Filename, int FD) in ToolOutputFile() function in ToolOutputFile
DCodeGenCoverage.cpp105 std::unique_ptr<ToolOutputFile> CoverageFile = in emit()
106 std::make_unique<ToolOutputFile>(CoverageFilename, EC, OpenFlags); in emit()
/external/llvm-project/llvm/lib/Support/
DToolOutputFile.cpp20 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
DCodeGenCoverage.cpp92 std::unique_ptr<ToolOutputFile> CoverageFile = in emit()
93 std::make_unique<ToolOutputFile>(CoverageFilename, EC, OpenFlags); in emit()
/external/llvm-project/llvm/tools/opt/
DNewPMDriver.h30 class ToolOutputFile; variable
67 TargetLibraryInfoImpl *TLII, ToolOutputFile *Out,
68 ToolOutputFile *ThinLinkOut, ToolOutputFile *OptRemarkFile,
Dopt.cpp587 Expected<std::unique_ptr<ToolOutputFile>> RemarksFileOrErr = in main()
595 std::unique_ptr<ToolOutputFile> RemarksFile = std::move(*RemarksFileOrErr); in main()
649 std::unique_ptr<ToolOutputFile> Out; in main()
650 std::unique_ptr<ToolOutputFile> ThinLinkOut; in main()
663 Out.reset(new ToolOutputFile(OutputFilename, EC, Flags)); in main()
671 new ToolOutputFile(ThinLinkBitcodeFile, EC, sys::fs::OF_None)); in main()
818 Out = std::make_unique<ToolOutputFile>(OutputFilename, EC, in main()
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DToolOutputFile.h25 class ToolOutputFile {
47 ToolOutputFile(StringRef Filename, std::error_code &EC,
50 ToolOutputFile(StringRef Filename, int FD);
/external/llvm-project/llvm/include/llvm/Support/
DToolOutputFile.h26 class ToolOutputFile {
52 ToolOutputFile(StringRef Filename, std::error_code &EC,
55 ToolOutputFile(StringRef Filename, int FD);
/external/llvm-project/clang/unittests/Frontend/
DASTUnitTest.cpp31 std::unique_ptr<ToolOutputFile> input_file;
39 input_file = std::make_unique<ToolOutputFile>(InputFileName, FD); in createASTUnit()
86 ToolOutputFile ast_file(ASTFileName, FD); in TEST_F()
156 input_file = std::make_unique<ToolOutputFile>(InputFileName, FD); in TEST_F()
/external/llvm-project/mlir/include/mlir/Support/
DFileUtilities.h21 class ToolOutputFile; variable
35 std::unique_ptr<llvm::ToolOutputFile>
/external/llvm-project/mlir/lib/Support/
DFileUtilities.cpp34 std::unique_ptr<llvm::ToolOutputFile>
37 auto result = std::make_unique<llvm::ToolOutputFile>(outputFilename, error, in openOutputFile()
/external/llvm-project/polly/lib/Support/
DDumpModulePass.cpp64 std::unique_ptr<ToolOutputFile> Out; in runOnModule()
66 Out.reset(new ToolOutputFile(Dumpfile, EC, sys::fs::OF_None)); in runOnModule()
/external/llvm-project/llvm/tools/llvm-split/
Dllvm-split.cpp57 std::unique_ptr<ToolOutputFile> Out( in main()
58 new ToolOutputFile(OutputFilename + utostr(I++), EC, sys::fs::OF_None)); in main()
/external/llvm-project/llvm/tools/llvm-modextract/
Dllvm-modextract.cpp56 std::unique_ptr<ToolOutputFile> Out( in main()
57 new ToolOutputFile(OutputFilename, EC, sys::fs::OF_None)); in main()
/external/llvm-project/llvm/tools/llc/
Dllc.cpp194 static std::unique_ptr<ToolOutputFile> GetOutputStream(const char *TargetName, in GetOutputStream()
252 auto FDOut = std::make_unique<ToolOutputFile>(OutputFilename, EC, OpenFlags); in GetOutputStream()
343 Expected<std::unique_ptr<ToolOutputFile>> RemarksFileOrErr = in main()
351 std::unique_ptr<ToolOutputFile> RemarksFile = std::move(*RemarksFileOrErr); in main()
537 std::unique_ptr<ToolOutputFile> Out = in compileModule()
541 std::unique_ptr<ToolOutputFile> DwoOut; in compileModule()
544 DwoOut = std::make_unique<ToolOutputFile>(SplitDwarfOutputFile, EC, in compileModule()
/external/llvm-project/clang/unittests/CrossTU/
DCrossTranslationUnitTest.cpp57 llvm::ToolOutputFile ASTFile(ASTFileName, ASTFD); in HandleTranslationUnit()
63 llvm::ToolOutputFile IndexFile(IndexFileName, IndexFD); in HandleTranslationUnit()
74 llvm::ToolOutputFile SourceFile(SourceFileName, SourceFD); in HandleTranslationUnit()
186 llvm::ToolOutputFile IndexFile(IndexFileName, IndexFD); in TEST()
/external/llvm-project/llvm/tools/split-file/
Dsplit-file.cpp111 std::vector<std::unique_ptr<ToolOutputFile>> outputFiles; in handle()
120 auto f = std::make_unique<ToolOutputFile>(partPath.str(), ec, in handle()
133 for (std::unique_ptr<ToolOutputFile> &outputFile : outputFiles) in handle()
/external/llvm-project/libclc/utils/
Dprepare-builtins.cpp97 std::unique_ptr<ToolOutputFile> Out( in main()
98 new ToolOutputFile(OutputFilename, EC, sys::fs::F_None)); in main()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/TableGen/
DMain.cpp70 ToolOutputFile DepOut(DependFilename, EC, sys::fs::OF_None); in createDependencyFile()
130 ToolOutputFile OutFile(OutputFilename, EC, sys::fs::OF_None); in TableGenMain()
/external/llvm-project/llvm/lib/TableGen/
DMain.cpp73 ToolOutputFile DepOut(DependFilename, EC, sys::fs::OF_None); in createDependencyFile()
146 ToolOutputFile OutFile(OutputFilename, EC, sys::fs::OF_None); in TableGenMain()
/external/llvm-project/llvm/tools/yaml2obj/
Dyaml2obj.cpp119 std::unique_ptr<ToolOutputFile> Out( in main()
120 new ToolOutputFile(OutputFilename, EC, sys::fs::OF_None)); in main()
/external/llvm-project/llvm/tools/bugpoint/
DOptimizerDriver.cpp53 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()
/external/llvm-project/llvm/include/llvm/LTO/legacy/
DLTOCodeGenerator.h244 std::unique_ptr<ToolOutputFile> DiagnosticOutputFile;
246 std::unique_ptr<ToolOutputFile> StatsFile = nullptr;
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/LTO/legacy/
DLTOCodeGenerator.h244 std::unique_ptr<ToolOutputFile> DiagnosticOutputFile;
246 std::unique_ptr<ToolOutputFile> StatsFile = nullptr;
/external/llvm-project/llvm/unittests/Support/
DToolOutputFileTest.cpp19 EXPECT_EQ(&ToolOutputFile("-", EC, sys::fs::OF_None).os(), &outs()); in TEST()

1234