Home
last modified time | relevance | path

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

/external/llvm/lib/Support/
DToolOutputFile.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
/external/llvm/include/llvm/Support/
DToolOutputFile.h26 class tool_output_file {
48 tool_output_file(StringRef Filename, std::error_code &EC,
51 tool_output_file(StringRef Filename, int FD);
/external/llvm/tools/opt/
DNewPMDriver.h30 class tool_output_file; variable
52 TargetMachine *TM, tool_output_file *Out,
DNewPMDriver.cpp40 TargetMachine *TM, tool_output_file *Out, in runPassPipeline()
Dopt.cpp374 std::unique_ptr<tool_output_file> Out; in main()
385 Out.reset(new tool_output_file(OutputFilename, EC, sys::fs::F_None)); in main()
474 Out = llvm::make_unique<tool_output_file>(OutputFilename, EC, in main()
/external/llvm/tools/llvm-split/
Dllvm-split.cpp53 std::unique_ptr<tool_output_file> Out(new tool_output_file( in main()
/external/llvm/tools/bugpoint/
DOptimizerDriver.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()
DExtractFunction.cpp387 tool_output_file BlocksToNotExtractFile(Filename.c_str(), FD); in extractMappedBlocksFromModule()
/external/llvm/tools/yaml2obj/
Dyaml2obj.cpp88 std::unique_ptr<tool_output_file> Out( in main()
89 new tool_output_file(OutputFilename, EC, sys::fs::F_None)); in main()
/external/llvm/lib/TableGen/
DMain.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()
/external/llvm/tools/llvm-as/
Dllvm-as.cpp76 std::unique_ptr<tool_output_file> Out( in WriteOutputFile()
77 new tool_output_file(OutputFilename, EC, sys::fs::F_None)); in WriteOutputFile()
/external/llvm/tools/llvm-dis/
Dllvm-dis.cpp183 std::unique_ptr<tool_output_file> Out( in main()
184 new tool_output_file(OutputFilename, EC, sys::fs::F_None)); in main()
/external/llvm/tools/llc/
Dllc.cpp108 static std::unique_ptr<tool_output_file>
166 auto FDOut = llvm::make_unique<tool_output_file>(OutputFilename, EC, in GetOutputStream()
306 std::unique_ptr<tool_output_file> Out = in compileModule()
/external/llvm/tools/llvm-mc/
Dllvm-mc.cpp211 static std::unique_ptr<tool_output_file> GetOutputStream() { in GetOutputStream()
216 auto Out = llvm::make_unique<tool_output_file>(OutputFilename, EC, in GetOutputStream()
467 std::unique_ptr<tool_output_file> Out = GetOutputStream(); in main()
/external/llvm/tools/llvm-lto/
Dllvm-lto.cpp363 std::list<tool_output_file> OSs; in main()
385 for (tool_output_file &OS : OSs) in main()
/external/llvm/lib/LTO/
DLTOCodeGenerator.cpp176 tool_output_file Out(Path, EC, sys::fs::F_None); in writeMergedModules()
216 tool_output_file objFile(Filename.c_str(), FD); in compileOptimizedToFile()
/external/llvm/tools/llvm-extract/
Dllvm-extract.cpp267 tool_output_file Out(OutputFilename, EC, sys::fs::F_None); in main()
/external/llvm/tools/llvm-link/
Dllvm-link.cpp337 tool_output_file Out(OutputFilename, EC, sys::fs::F_None); in main()
/external/llvm/tools/llvm-stress/
Dllvm-stress.cpp701 std::unique_ptr<tool_output_file> Out; in main()
707 Out.reset(new tool_output_file(OutputFilename, EC, sys::fs::F_None)); in main()
/external/llvm/lib/Object/
DArchiveWriter.cpp314 tool_output_file Output(TmpArchive, TmpArchiveFD); in writeArchive()