blob: 780100b0ee6e03e1eefa12ea724554548e9bffed (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
//===-- SMTParser.h -------------------------------------------------------===//
//
// The KLEE Symbolic Virtual Machine
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifndef SMT_PARSER_H
#define SMT_PARSER_H
#include "expr/Parser.h"
#include <cassert>
#include <iostream>
#include <map>
#include <stack>
#include <string>
namespace klee {
namespace expr {
class SMTParser : public klee::expr::Parser {
private:
void *buf;
public:
/* For interacting w/ the actual parser, should make this nicer */
static SMTParser* parserTemp;
std::string fileName;
std::istream* is;
int lineNum;
bool done;
bool arraysEnabled;
std::vector<ExprHandle> assumptions;
klee::expr::ExprHandle query;
int bvSize;
bool queryParsed;
SMTParser(const std::string filename);
virtual klee::expr::Decl *ParseTopLevelDecl();
virtual void SetMaxErrors(unsigned N) { }
virtual unsigned GetNumErrors() const { return 1; }
virtual ~SMTParser() {}
void Init(void);
int Error(const std::string& s);
int StringToInt(const std::string& s);
typedef std::map<const std::string, ExprHandle> VarEnv;
typedef std::map<const std::string, ExprHandle> FVarEnv;
std::stack<VarEnv> varEnvs;
std::stack<FVarEnv> fvarEnvs;
void PushVarEnv(void);
void PopVarEnv(void);
void AddVar(std::string name, ExprHandle val); // to current var env
ExprHandle GetVar(std::string name); // from current var env
void PushFVarEnv(void);
void PopFVarEnv(void);
void AddFVar(std::string name, ExprHandle val); // to current fvar env
ExprHandle GetFVar(std::string name); // from current fvar env
};
}
}
#endif
|