summaryrefslogtreecommitdiff
path: root/klee/tools
diff options
context:
space:
mode:
authorCristian Cadar <cristic@cs.stanford.edu>2013-01-02 14:33:58 +0000
committerCristian Cadar <cristic@cs.stanford.edu>2013-01-02 14:33:58 +0000
commit465e43b105220151e51d21fbe8704f2535733feb (patch)
tree84366e6bcd3f77cf7f263890d255c98784b1b922 /klee/tools
parent2e4a57a5801352721baf25477530de289b976d24 (diff)
Patch by Tomasz Kuchta adding a new option (min-query-time-to-log) that enables KLEE to log only the queries exceeding a certain duration, or only those that time out.
Diffstat (limited to 'klee/tools')
-rw-r--r--klee/tools/kleaver/main.cpp13
1 files changed, 12 insertions, 1 deletions
diff --git a/klee/tools/kleaver/main.cpp b/klee/tools/kleaver/main.cpp
index 077de3edd49..16a0ea429dc 100644
--- a/klee/tools/kleaver/main.cpp
+++ b/klee/tools/kleaver/main.cpp
@@ -93,9 +93,20 @@ namespace {
UseFastCexSolver("use-fast-cex-solver",
cl::init(false));
+ // FIXME: Command line argument duplicated in Executor.cpp of Klee. Different
+ // output file name used.
cl::opt<bool>
UseSTPQueryPCLog("use-stp-query-pc-log",
cl::init(false));
+
+ // FIXME: Command line argument duplicated in Executor.cpp of Klee
+ cl::opt<unsigned int>
+ MinQueryTimeToLog("min-query-time-to-log",
+ cl::init(0),
+ cl::value_desc("milliseconds"),
+ cl::desc("Set time threshold (in ms) for queries logged in files. "
+ "Only queries longer than threshold will be logged. (default=0)"));
+
}
static std::string escapedString(const char *start, unsigned length) {
@@ -186,7 +197,7 @@ static bool EvaluateInputAST(const char *Filename,
Solver *S, *STP = S =
UseDummySolver ? createDummySolver() : new STPSolver(true);
if (UseSTPQueryPCLog)
- S = createPCLoggingSolver(S, "stp-queries.pc");
+ S = createPCLoggingSolver(S, "stp-queries.pc", MinQueryTimeToLog);
if (UseFastCexSolver)
S = createFastCexSolver(S);
S = createCexCachingSolver(S);