diff options
author | Daniel Dunbar <daniel@zuster.org> | 2009-06-05 08:03:19 +0000 |
---|---|---|
committer | Daniel Dunbar <daniel@zuster.org> | 2009-06-05 08:03:19 +0000 |
commit | d5102295ea7f5780119108f0b8cf118ad7c04311 (patch) | |
tree | df5b078bea3f9f5bdc0cc2272039afbdca821590 /tools/kleaver/main.cpp | |
parent | e5620b87e1227fb97d08abe85b2f47c14ceae3cc (diff) | |
download | klee-d5102295ea7f5780119108f0b8cf118ad7c04311.tar.gz |
Add evaluation support to kleaver (now the default).
- Currently only handles validity queries. git-svn-id: https://llvm.org/svn/llvm-project/klee/trunk@72933 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/kleaver/main.cpp')
-rw-r--r-- | tools/kleaver/main.cpp | 68 |
1 files changed, 65 insertions, 3 deletions
diff --git a/tools/kleaver/main.cpp b/tools/kleaver/main.cpp index 621776ee..7c437e47 100644 --- a/tools/kleaver/main.cpp +++ b/tools/kleaver/main.cpp @@ -1,6 +1,7 @@ #include "expr/Lexer.h" #include "expr/Parser.h" +#include "klee/Constraints.h" #include "klee/Expr.h" #include "klee/Solver.h" #include "klee/util/ExprPPrinter.h" @@ -27,17 +28,20 @@ namespace { enum ToolActions { PrintTokens, - PrintAST + PrintAST, + Evaluate }; static llvm::cl::opt<ToolActions> ToolAction(llvm::cl::desc("Tool actions:"), - llvm::cl::init(PrintTokens), + llvm::cl::init(Evaluate), llvm::cl::values( clEnumValN(PrintTokens, "print-tokens", "Print tokens from the input file."), clEnumValN(PrintAST, "print-ast", "Print parsed AST nodes from the input file."), + clEnumValN(Evaluate, "evaluate", + "Print parsed AST nodes from the input file."), clEnumValEnd)); } @@ -50,7 +54,9 @@ static std::string escapedString(const char *start, unsigned length) { } else if (c == '\n') { s << "\\n"; } else { - s << "\\x" << hexdigit(((unsigned char) c >> 4) & 0xF) << hexdigit((unsigned char) c & 0xF); + s << "\\x" + << hexdigit(((unsigned char) c >> 4) & 0xF) + << hexdigit((unsigned char) c & 0xF); } } return s.str(); @@ -89,6 +95,58 @@ static bool PrintInputAST(const char *Filename, return success; } +static bool EvaluateInputAST(const char *Filename, + const MemoryBuffer *MB) { + std::vector<Decl*> Decls; + Parser *P = Parser::Create(Filename, MB); + P->SetMaxErrors(20); + while (Decl *D = P->ParseTopLevelDecl()) { + Decls.push_back(D); + } + + bool success = true; + if (unsigned N = P->GetNumErrors()) { + llvm::cerr << Filename << ": parse failure: " + << N << " errors.\n"; + success = false; + } + delete P; + + // FIXME: Support choice of solver. + Solver *S, *STP = new STPSolver(true); + S = createCexCachingSolver(STP); + S = createCachingSolver(S); + S = createIndependentSolver(S); + + unsigned Index = 0; + for (std::vector<Decl*>::iterator it = Decls.begin(), + ie = Decls.end(); it != ie; ++it) { + Decl *D = *it; + if (QueryCommand *QC = dyn_cast<QueryCommand>(D)) { + llvm::cout << "Query " << Index << ":\t"; + + assert(QC->Values.empty() && QC->Objects.empty() && + "FIXME: Support counterexample query commands!"); + bool result; + if (S->mustBeTrue(Query(ConstraintManager(QC->Constraints), QC->Query), + result)) { + llvm::cout << (result ? "VALID" : "INVALID"); + } else { + llvm::cout << "FAIL"; + } + + llvm::cout << "\n"; + ++Index; + } + + delete D; + } + + delete S; + + return success; +} + int main(int argc, char **argv) { bool success = true; @@ -109,6 +167,10 @@ int main(int argc, char **argv) { case PrintAST: success = PrintInputAST(InputFile=="-" ? "<stdin>" : InputFile.c_str(), MB); break; + case Evaluate: + success = EvaluateInputAST(InputFile=="-" ? "<stdin>" : InputFile.c_str(), + MB); + break; default: llvm::cerr << argv[0] << ": ERROR: Unknown program action!\n"; } |