diff options
author | MartinNowack <martin.nowack@gmail.com> | 2016-07-08 20:31:33 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-08 20:31:33 +0200 |
commit | 784bbc141946e9c77849cbba13563fd8d0b27c0f (patch) | |
tree | 872ce7432af8b5b0757fbb71d0d39eb9da107238 /lib/Core | |
parent | 7b98c15e45c5d38e9fa9094bbe4f64cd8829675c (diff) | |
parent | 00cdc62b7a8df39d13f734ecc77077e427912f64 (diff) | |
download | klee-784bbc141946e9c77849cbba13563fd8d0b27c0f.tar.gz |
Merge pull request #391 from MartinNowack/feat_zipstream_compress
Support gzip-based compression of raw_outstreams
Diffstat (limited to 'lib/Core')
-rw-r--r-- | lib/Core/Executor.cpp | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/lib/Core/Executor.cpp b/lib/Core/Executor.cpp index f23fb3c0..46e163ea 100644 --- a/lib/Core/Executor.cpp +++ b/lib/Core/Executor.cpp @@ -89,6 +89,10 @@ #include "llvm/IR/CallSite.h" #endif +#ifdef HAVE_ZLIB_H +#include "klee/Internal/Support/CompressionStream.h" +#endif + #include <cassert> #include <algorithm> #include <iomanip> @@ -158,6 +162,11 @@ namespace { "[inst_id]"), clEnumValEnd), llvm::cl::CommaSeparated); +#ifdef HAVE_ZLIB_H + cl::opt<bool> DebugCompressInstructions( + "debug-compress-instructions", cl::init(false), + cl::desc("Compress the logged instructions in gzip format.")); +#endif cl::opt<bool> DebugCheckForImpliedValues("debug-check-for-implied-values"); @@ -332,6 +341,10 @@ Executor::Executor(const InterpreterOptions &opts, InterpreterHandler *ih) std::string debug_file_name = interpreterHandler->getOutputFilename("instructions.txt"); std::string ErrorInfo; +#ifdef HAVE_ZLIB_H + if (!DebugCompressInstructions) { +#endif + #if LLVM_VERSION_CODE >= LLVM_VERSION(3, 5) debugInstFile = new llvm::raw_fd_ostream(debug_file_name.c_str(), ErrorInfo, llvm::sys::fs::OpenFlags::F_Text), @@ -339,6 +352,16 @@ Executor::Executor(const InterpreterOptions &opts, InterpreterHandler *ih) debugInstFile = new llvm::raw_fd_ostream(debug_file_name.c_str(), ErrorInfo); #endif +#ifdef HAVE_ZLIB_H + } else { + debugInstFile = new compressed_fd_ostream( + (debug_file_name + ".gz").c_str(), ErrorInfo); + } +#endif + if (ErrorInfo != "") { + klee_error("Could not open file %s : %s", debug_file_name.c_str(), + ErrorInfo.c_str()); + } } } |