forked from kframework/c-semantics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
query-kcc-prof
executable file
·218 lines (199 loc) · 4.71 KB
/
query-kcc-prof
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
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
#!/usr/bin/env perl
use strict;
use warnings;
use DBI;
my $RULE_LENGTH = 300;
my $dbh = DBI->connect("dbi:SQLite:dbname=kccProfileDB.sqlite","","");
my %queries = (
'exec' => <<SQL,
SELECT
runName
, count(distinct rule) as numRules
FROM data
WHERE
(kind LIKE 'structural' OR kind LIKE 'computational')
AND rewrites > 0
GROUP BY
runName
ORDER BY
numRules DESC
SQL
'builtin' => <<SQL,
SELECT
ruleName
, rule
, kind
, SUM(matches) as matches
, SUM(rewrites) as rewrites
FROM data
WHERE
kind LIKE 'macro'
OR kind LIKE 'builtin'
OR kind LIKE 'cooling'
OR kind LIKE 'heating'
GROUP BY
rule
ORDER BY
matches DESC
SQL
'program_and_rule' => <<SQL,
SELECT
runName
, ruleName
, rule
, kind
, SUM(matches) as matches
, SUM(rewrites) as rewrites
, locationFile
, locationFrom
, locationTo
FROM data
WHERE
kind LIKE 'structural'
OR kind LIKE 'computational'
GROUP BY
runName
, rule
ORDER BY
matches DESC
SQL
'rule_mismatch' => <<SQL,
SELECT
ruleName
, rule
, kind
, SUM(matches) as matches
, SUM(rewrites) as rewrites
, SUM(matches) - SUM(rewrites) as diff
, locationFile
, locationFrom
, locationTo
FROM data
WHERE
kind LIKE 'structural'
OR kind LIKE 'computational'
GROUP BY
rule
ORDER BY
diff DESC
, locationFile DESC
SQL
'rule' => <<SQL,
SELECT
ruleName
, rule
, kind
, SUM(matches) as matches
, SUM(rewrites) as rewrites
, locationFile
, locationFrom
, locationTo
FROM data
WHERE
kind LIKE 'structural'
OR kind LIKE 'computational'
GROUP BY
rule
ORDER BY
matches DESC
SQL
'semantic_file' => <<SQL,
SELECT
locationFile
, SUM(matches) as matches
, SUM(rewrites) as rewrites
FROM data
GROUP BY
locationFile
ORDER BY
matches DESC
SQL
'rewrites' => <<SQL
SELECT
SUM(matches) as matches
, SUM(rewrites) as rewrites
, SUM(matches) - SUM(rewrites) as misses
FROM data
WHERE
kind LIKE 'structural'
OR kind LIKE 'computational'
ORDER BY
matches DESC
SQL
);
while (my $arg = shift) {
if (defined $queries{$arg}) {
printResults(join " ", $queries{$arg});
} elsif($arg eq '-f' || $arg eq '--file') {
my $file = shift;
open QUERY, "<$file";
printResults(join(" ", <QUERY>));
} elsif($arg eq '-h' || $arg eq '--help') {
printHelp();
}
}
$dbh->disconnect;
exit 0;
sub printHelp {
print "Usage: $0 [<query> <query> ...] [-f <file>] [-h]\n";
print "Runs either the named <query>s, or the SQL contained in <file>, against the\n";
print "profile DB located in the current directory. Each <query> may be one of:\n";
for (sort keys %queries) {
print "\t$_\n";
}
}
sub printField {
my ($s) = (@_);
return "\t\"$s\"";
}
sub printPerFile {
my ($filename) = (@_);
}
sub printResults {
my ($query) = (@_);
my $sth = $dbh->prepare($query) or die $dbh->errstr;
$sth->execute();
my $hash_ref = $sth->fetchrow_hashref;
{
my @fields = ();
foreach my $key ( sort fieldOrder keys %$hash_ref ) {
push(@fields, "\"$key\"");
}
print join("\t", @fields);
print "\n";
}
do {
my @fields = ();
foreach my $key ( sort fieldOrder keys %$hash_ref ) {
if ($key eq 'rule') {
my $rule = substr($hash_ref->{rule}, 0, $RULE_LENGTH);
$rule =~ s/[\n\t\r]/ /g; # turn newlines into spaces
$rule =~ s/["]//g; # remove quotes
$hash_ref->{$key} = $rule;
}
push(@fields, "$hash_ref->{$key}");
}
print join("\t", @fields);
print "\n";
} while ($hash_ref = $sth->fetchrow_hashref);
}
sub fieldOrder {
my %sorting = (x => 0
, runName => 0
, runNum => 5
, ruleName => 10
, locationFile => 15
, locationFrom => 20
, locationTo => 25
, type => 35
, kind => 40
, matches => 45
, rewrites => 50
, rule => 100
);
if (exists $sorting{$a} and exists $sorting{$b}){
$sorting{$a} <=> $sorting{$b};
} else {
$a cmp $b;
}
}