diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-06-08 05:18:49 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-06-08 05:18:49 +0000 |
commit | 774d9473ee5686d59a8eb398fd78a8a5d591721e (patch) | |
tree | 979ee1490158bfd4061efd07a59235b873972050 /tools/kleaver | |
parent | 08e5f32e11923cdaa46f68c8cc5de1ff9e5036d0 (diff) | |
download | klee-774d9473ee5686d59a8eb398fd78a8a5d591721e.tar.gz |
kleaver: Use raw_ostream, and print some stats.
git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@73045 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/kleaver')
-rw-r--r-- | tools/kleaver/main.cpp | 36 |
1 files changed, 28 insertions, 8 deletions
diff --git a/tools/kleaver/main.cpp b/tools/kleaver/main.cpp index 83e74f79..a575c086 100644 --- a/tools/kleaver/main.cpp +++ b/tools/kleaver/main.cpp @@ -4,6 +4,7 @@ #include "klee/Constraints.h" #include "klee/Expr.h" #include "klee/Solver.h" +#include "klee/Statistics.h" #include "klee/util/ExprPPrinter.h" #include "klee/util/ExprVisitor.h" @@ -11,12 +12,9 @@ #include "llvm/Support/CommandLine.h" #include "llvm/Support/ManagedStatic.h" #include "llvm/Support/MemoryBuffer.h" -#include "llvm/Support/Streams.h" +#include "llvm/Support/raw_ostream.h" #include "llvm/System/Signals.h" -#include <iomanip> -#include <sstream> - using namespace llvm; using namespace klee; using namespace klee::expr; @@ -46,7 +44,8 @@ namespace { } static std::string escapedString(const char *start, unsigned length) { - std::stringstream s; + std::string Str; + llvm::raw_string_ostream s(Str); for (unsigned i=0; i<length; ++i) { char c = start[i]; if (isprint(c)) { @@ -102,7 +101,7 @@ static bool PrintInputAST(const char *Filename, } static bool EvaluateInputAST(const char *Filename, - const MemoryBuffer *MB) { + const MemoryBuffer *MB) { std::vector<Decl*> Decls; Parser *P = Parser::Create(Filename, MB); P->SetMaxErrors(20); @@ -117,11 +116,18 @@ static bool EvaluateInputAST(const char *Filename, success = false; } + if (!success) + return false; + // FIXME: Support choice of solver. - Solver *S, *STP = new STPSolver(true); - S = createCexCachingSolver(STP); + Solver *S, *STP = S = new STPSolver(true); + if (0) + S = createFastCexSolver(S); + S = createCexCachingSolver(S); S = createCachingSolver(S); S = createIndependentSolver(S); + if (0) + S = createValidatingSolver(S, STP); unsigned Index = 0; for (std::vector<Decl*>::iterator it = Decls.begin(), @@ -193,6 +199,20 @@ static bool EvaluateInputAST(const char *Filename, delete S; + if (uint64_t queries = *theStatisticManager->getStatisticByName("Queries")) { + llvm::cout + << "--\n" + << "total queries = " << queries << "\n" + << "total queries constructs = " + << *theStatisticManager->getStatisticByName("QueriesConstructs") << "\n" + << "valid queries = " + << *theStatisticManager->getStatisticByName("QueriesValid") << "\n" + << "invalid queries = " + << *theStatisticManager->getStatisticByName("QueriesInvalid") << "\n" + << "query cex = " + << *theStatisticManager->getStatisticByName("QueriesCEX") << "\n"; + } + return success; } |