From: Francisco Jerez Date: Tue, 17 May 2016 14:02:58 +0000 (+0200) Subject: clover/llvm: Define function for bitcode print-out. X-Git-Tag: upstream/17.1.0~8147 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=26fa9bfd0dfccf06358180ae740121522d09b51f;p=platform%2Fupstream%2Fmesa.git clover/llvm: Define function for bitcode print-out. Reviewed-by: Serge Martin Tested-by: Jan Vesely --- diff --git a/src/gallium/state_trackers/clover/llvm/invocation.cpp b/src/gallium/state_trackers/clover/llvm/invocation.cpp index d4c8add..a51411d 100644 --- a/src/gallium/state_trackers/clover/llvm/invocation.cpp +++ b/src/gallium/state_trackers/clover/llvm/invocation.cpp @@ -433,6 +433,14 @@ namespace { c); } + std::string + print_module_bitcode(const ::llvm::Module &mod) { + std::string s; + ::llvm::raw_string_ostream os { s }; + mod.print(os, NULL); + return os.str(); + } + std::vector emit_code(::llvm::Module &mod, const target &target, TargetMachine::CodeGenFileType ft, @@ -572,13 +580,8 @@ clover::compile_program_llvm(const std::string &source, optimize(*mod, c->getCodeGenOpts().OptimizationLevel); - if (has_flag(debug::llvm)) { - std::string log; - raw_string_ostream s_log(log); - mod->print(s_log, NULL); - s_log.flush(); - debug::log(".ll", log); - } + if (has_flag(debug::llvm)) + debug::log(".ll", print_module_bitcode(*mod)); module m; // Build the clover::module