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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
|
#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"
#include "klee/util/ExprVisitor.h"
#include "llvm/ADT/StringExtras.h"
#include "llvm/Support/CommandLine.h"
#include "llvm/Support/ManagedStatic.h"
#include "llvm/Support/MemoryBuffer.h"
#include "llvm/Support/Streams.h"
#include "llvm/System/Signals.h"
#include <iomanip>
#include <sstream>
using namespace llvm;
using namespace klee;
using namespace klee::expr;
namespace {
llvm::cl::opt<std::string>
InputFile(llvm::cl::desc("<input query log>"), llvm::cl::Positional,
llvm::cl::init("-"));
enum ToolActions {
PrintTokens,
PrintAST,
Evaluate
};
static llvm::cl::opt<ToolActions>
ToolAction(llvm::cl::desc("Tool actions:"),
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));
}
static std::string escapedString(const char *start, unsigned length) {
std::stringstream s;
for (unsigned i=0; i<length; ++i) {
char c = start[i];
if (isprint(c)) {
s << c;
} else if (c == '\n') {
s << "\\n";
} else {
s << "\\x"
<< hexdigit(((unsigned char) c >> 4) & 0xF)
<< hexdigit((unsigned char) c & 0xF);
}
}
return s.str();
}
static void PrintInputTokens(const MemoryBuffer *MB) {
Lexer L(MB);
Token T;
do {
L.Lex(T);
llvm::cout << "(Token \"" << T.getKindName() << "\" "
<< "\"" << escapedString(T.start, T.length) << "\" "
<< T.length << " "
<< T.line << " " << T.column << ")\n";
} while (T.kind != Token::EndOfFile);
}
static bool PrintInputAST(const char *Filename,
const MemoryBuffer *MB) {
Parser *P = Parser::Create(Filename, MB);
P->SetMaxErrors(20);
while (Decl *D = P->ParseTopLevelDecl()) {
if (!P->GetNumErrors())
D->dump();
delete D;
}
bool success = true;
if (unsigned N = P->GetNumErrors()) {
llvm::cerr << Filename << ": parse failure: "
<< N << " errors.\n";
success = false;
}
delete P;
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;
if (!success) {
for (std::vector<Decl*>::iterator it = Decls.begin(),
ie = Decls.end(); it != ie; ++it)
delete *it;
return success;
}
// 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;
llvm::sys::PrintStackTraceOnErrorSignal();
llvm::cl::ParseCommandLineOptions(argc, argv);
std::string ErrorStr;
MemoryBuffer *MB = MemoryBuffer::getFileOrSTDIN(InputFile.c_str(), &ErrorStr);
if (!MB) {
llvm::cerr << argv[0] << ": error: " << ErrorStr << "\n";
return 1;
}
switch (ToolAction) {
case PrintTokens:
PrintInputTokens(MB);
break;
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";
}
delete MB;
llvm::llvm_shutdown();
return success ? 0 : 1;
}
|