-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathgrokexplain.py
1689 lines (1431 loc) · 60.1 KB
/
grokexplain.py
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
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Attempt to understand what is happening in a SQLite EXPLAIN-ation and
# build a useful control-flow diagram. (We can also do some data-flow
# stuff, but it never really turned out to be too useful.)
#
# Info on the opcodes and what not can be found at:
# http://www.sqlite.org/opcode.html
#
# Andrew Sutherland <asutherland@asutherland.org>
import pygraphviz
import cStringIO as StringIO
import os, os.path, textwrap
import optparse
from cgi import escape as escapeHTML
import subprocess
class TableSchema(object):
'''
Table meta-data; the name of a table and its columns.
'''
def __init__(self, name, colnames):
self.name = name
self.columns = colnames
class SchemaGrokker(object):
'''
Parses a schema dump like "sqlite3 DATABASE .schema" outputs for info
about tables and virtual tables.
Huh, so, it seems like we don't actually use this at the current time.
I think this was relevant originally, but once I discovered that the debug
build would include basically the same info in the comment column, it
became significantly less important.
'''
def __init__(self):
self.tables = {}
self.virtualTables = {}
def grok(self, file_or_lines):
for line in file_or_lines:
if line.startswith('CREATE TABLE'):
name = line.split(' ')[2]
# Not sure what the rationale was for this, but this is no good
#if '_' in name:
# # HACK virtual table fallout detection
# continue
insideParens = line[line.find('(')+1:line.rfind(';')-1]
columnNames = []
for coldef in insideParens.split(', '):
columnNames.append(coldef.split()[0])
table = TableSchema(name, columnNames)
self.tables[name] = table
if line.startswith('CREATE VIRTUAL TABLE'):
name = line.split(' ')[3]
if '_' in name:
# HACK virtual table fallout detection
continue
insideParens = line[line.find('(')+1:line.rfind(';')-1]
columnNames = []
for coldef in insideParens.split(', ')[1:]:
columnNames.append(coldef.split()[0])
columnNames.append('everything?')
columnNames.append('docid')
table = TableSchema(name, columnNames)
self.virtualTables[name] = table
class Table(object):
def __init__(self, **kwargs):
self.name = kwargs.pop('name')
self.columns = kwargs.pop('columns', 0)
# meh, this should probably be a single mode
self.ephemeral = kwargs.pop('ephemeral', False)
self.virtual = kwargs.pop('virtual', False)
self.pseudo = kwargs.pop('pseudo', False)
self.openedAt = kwargs.pop('openedAt', None)
self.closedAt = kwargs.pop('closedAt', None)
self.schema = kwargs.pop('schema', None)
if self.schema:
self.name = self.schema.name
# a table is just a table
self.on = None
def __str__(self):
return '%s, %d columns' % (
self.name,
self.columns)
class Index(object):
def __init__(self, **kwargs):
self.on = kwargs.pop('table', None)
self.name = kwargs.pop('name')
self.columns = kwargs.pop('columns')
self.openedAt = kwargs.pop('openedAt', None)
self.closedAt = kwargs.pop('closedAt', None)
self.schema = kwargs.pop('schema', None)
def __str__(self):
return 'Index on [%s], %d columns' % (self.on, self.columns,)
class Cursor(object):
def __init__(self, **kwargs):
self.handle = kwargs.pop('handle')
# the goal of id is to be unique for the entire body. of course,
# we can't guarantee this, so we just copy it over. but hopefully
# we keep the concept and its usage distinct...
self.id = self.handle
self.on = kwargs.pop('on')
self.writable = kwargs.pop('writable', True)
self.openedAt = kwargs.pop('openedAt', None)
self.closedAt = kwargs.pop('closedAt', None)
self.writesAffectedBy = set()
self.seeksAffectedBy = set()
def __str__(self):
return 'Cursor %d on %s' % (self.handle, self.on,)
class RegStates(object):
def __init__(self, copyFrom=None):
#: maps register number to a set of cursors that have impacted this reg
self.regCursorImpacts = {}
#: maps register number to a set of values that this register may
#: contain
self.regValues = {}
if copyFrom:
for reg, cursors in copyFrom.regCursorImpacts.items():
self.regCursorImpacts[reg] = cursors.copy()
if VERBOSE:
print ' copying cursors', reg, cursors
for reg, values in copyFrom.regValues.items():
if VERBOSE:
print ' copying values', reg, values
self.regValues[reg] = values.copy()
def getRegCursorImpacts(self, reg):
# I think there is defaultdict stuff we could use now...
if reg in self.regCursorImpacts:
return self.regCursorImpacts[reg]
else:
return set()
def setRegCursorImpacts(self, reg, cursors):
self.regCursorImpacts[reg] = cursors.copy()
def addRegValue(self, reg, value):
if reg in self.regValues:
values = self.regValues[reg]
else:
values = self.regValues[reg] = set()
alreadyPresent = value in values
values.add(value)
return not alreadyPresent
def setRegValue(self, reg, value):
self.regValues[reg] = set([value])
def getRegValues(self, reg):
if reg in self.regValues:
return self.regValues[reg]
else:
return set()
def checkDelta(self, other):
# -- cursor impact
# update regs the other guy also has
for reg, cursors in self.regCursorImpacts.items():
if reg in other.regCursorImpacts:
# difference if they don't match
if cursors != other.regCursorImpacts[reg]:
return True
else: # difference if he didn't have it
return True
# different if he has something we don't have
for reg, cursors in other.regCursorImpacts.items():
if not reg in self.regCursorImpacts:
return True
# -- values
for reg, values in self.regValues.items():
if reg in other.regValues:
# diff if they don't match
if values != other.regValues[reg]:
return True
else: # difference if he didn't have it
return True
# different if he has something we don't have
for reg, values in other.regValues.items():
if not reg in self.regValues:
return True
def copy(self):
return RegStates(self)
def update(self, other):
'''
Update the states of our registers with the states of the registers in
the other RegStates object.
'''
# -- cursor impact
# update regs the other guy also has
for reg, cursors in self.regCursorImpacts.items():
# this sorta defeats our getitem magic...
if reg in other.regCursorImpacts:
cursors.update(other.regCursorImpacts[reg])
# copy regs we don't have (but the other guy does)
for reg, cursors in other.regCursorImpacts.items():
if not reg in self.regCursorImpacts:
self.regCursorImpacts[reg] = cursors.copy()
# -- values
for reg, values in self.regValues.items():
# this sorta defeats our getitem magic...
if reg in other.regValues:
values.update(other.regValues[reg])
# copy regs we don't have (but the other guy does)
for reg, values in other.regValues.items():
if not reg in self.regValues:
self.regValues[reg] = values.copy()
def __str__(self):
return '\n cursor impacts: %s\n values: %s' % (
repr(self.regCursorImpacts), repr(self.regValues))
def graphStr(self):
s = ''
for reg, values in self.regValues.items():
s += ' r%s: %s' % (reg, values)
if HAVE_COUNTS:
s = "<tr><td align='left'>%s</td><td></td><td></td></tr>" % (s,)
else:
s = "<tr><td align='left'>%s</td></tr>" % (s,)
return s
class BasicBlock(object):
def __init__(self, ops):
self.ops = ops
self.inRegs = RegStates()
self.outRegs = RegStates()
self.done = False
# establish a back-link for us lazy-types
for op in self.ops:
op.block = self
@property
def id(self):
return self.ops[0].addr
@property
def lastAddr(self):
return self.ops[-1].addr
@property
def comeFrom(self):
return self.ops[0].comeFrom
@property
def goTo(self):
lastOp = self.ops[-1]
# if we have explicit goto's, use them
if lastOp.goTo:
return lastOp.goTo
# otherwise assume we should flow to the next guy if we're non-terminal
if lastOp.terminate:
return []
else:
return [self.ops[-1].addr + 1]
def __str__(self):
return 'Block id: %d last: %d comeFrom: %s goTo: %s' % (
self.id, self.lastAddr, self.comeFrom, self.goTo)
class GenericOpInfo(object):
'''
Simple op meta-info.
'''
def __init__(self, addr, name, params, comment):
self.addr = addr
self.name = name
self.params = params
self.comment = comment
#: opcode addresses that may jump/flow to this opcode
self.comeFrom = []
#: opcode addresses that we may transfer control to (jump or next)
self.goTo = []
#: database handle-y things created by this opcode
self.births = []
#: database handle-y things closed by this opcode
self.kills = []
#: register numbers that we (may) read from
self.regReads = []
#: register numbers that we (may) write to
self.regWrites = []
#: the immediate value this opcode uses (if it uses one).
#: We can't represent some immediates, so this may just be true
self.usesImmediate = None
#: the Cursor this opcode uses for read purposes, if any
self.usesCursor = None
#: the Cursor this opcode uses for write purposes, if any. implies uses
self.writesCursor = None
#: the Cursor this opcode performs a seek operation on
self.seeksCursor = None
#: the column numbers (on the cursor) this op accesses
self.usesColumns = None
#: does this opcode terminate program execution
self.terminate = False
#: does this opcode engage in dynamic jumps (and as such we should hint
#: to the basic block engine to create a block)
self.dynamicGoTo = False
#: used by Gosub to track the register it writes to
self.dynamicWritePC = None
#: (potentially normalized) number of times opcode invoked
self.invocCount = None
#: (potentially normalized) number of btree pages accessed
self.pageCount = None
self.affectedByCursors = set()
def ensureJumpTargets(self, addrs, adjustment=1):
'''
Make sure this opcode knows that it can jump to the given addresses
(probably with an adjustment). Returns the set of targets that were
unknown.
'''
unknown = set()
for addr in addrs:
realAddr = addr + adjustment
if realAddr not in self.goTo:
self.goTo.append(realAddr)
unknown.add(realAddr)
return unknown
HIGHLIGHT_OPS = {'Yield': '#ff00ff',
'Gosub': '#ff00ff',
'Return': '#ff00ff'}
INVOC_THRESHOLDS = [0, 1, 2, 10, 100, 1000]
PAGE_THRESHOLDS = [0, 1, 2, 8, 64, 256]
def graphStr(self, schemaInfo):
def bar(count, thresholds):
if count == thresholds[0]:
return "<font color='#ffffff'>||||| </font>"
elif count == thresholds[1]:
return ("<font color='#4aba4a'>|</font>" +
"<font color='#ffffff'>|||| </font>")
elif count == thresholds[2]:
return ("<font color='#119125'>|</font>" +
"<font color='#ffffff'>|||| </font>")
elif count <= thresholds[3]:
return ("<font color='#119125'>||</font>" +
"<font color='#ffffff'>||| </font>")
elif count <= thresholds[4]:
return ("<font color='#cccf3c'>|||</font>" +
"<font color='#ffffff'>|| </font>")
elif count <= thresholds[5]:
return ("<font color='#ad1316'>||||</font>" +
"<font color='#ffffff'>| </font>")
else:
return "<font color='#ad1316'>||||| </font>"
if HAVE_COUNTS:
s = bar(self.invocCount or 0, self.INVOC_THRESHOLDS)
s += bar(self.pageCount or 0, self.PAGE_THRESHOLDS)
else:
s = ''
if self.usesCursor:
s += "<font color='%s'>%d %s [%s]</font>" % (
self.usesCursor.color, self.addr, self.name,
self.usesCursor.handle)
elif self.name in self.HIGHLIGHT_OPS:
s += "%d <font color='%s'>%s</font>" % (
self.addr, self.HIGHLIGHT_OPS[self.name],
escapeHTML(self.name))
else:
s += '%d %s' % (self.addr, escapeHTML(self.name))
if self.affectedByCursors:
cursors = list(self.affectedByCursors)
cursors.sort(lambda a, b: a.handle - b.handle)
cursorStrings = []
for cursor in cursors:
if cursor == self.usesCursor:
continue
cursorStrings.append(
"<font color='%s'>%d</font>" % (
cursor.color, cursor.handle))
if cursorStrings:
s += ' (' + ' '.join(cursorStrings) + ')'
if self.usesCursor and self.births:
if self.usesCursor in self.births and self.usesCursor.on:
s += ' %s' % (escapeHTML(self.usesCursor.on.name),)
if self.usesImmediate is not None:
s += ' imm %s' % (self.usesImmediate)
if self.usesColumns:
schema = self.usesCursor.on.schema
if schema:
colNames = []
for colNum in self.usesColumns:
colNames.append(escapeHTML(schema.columns[colNum]))
s += ' col %s' % (', '.join(colNames))
if self.regReads:
s += ' using r%s' % (', r'.join(map(str, self.regReads)),)
if self.regWrites:
s += ' to r%s' % (', r'.join(map(str, self.regWrites)),)
if self.comment:
s += " <font color='#888888'>%s</font>" % (escapeHTML(self.comment),
)
if HAVE_COUNTS:
s = ("<tr><td align='left'>%s</td>" +
" <td align='left'>%d</td><td>%d</td></tr>") % (
s, self.invocCount or 0, self.pageCount or 0)
else:
s = "<tr><td align='left'>%s</td></tr>" % (s,)
return s
def dump(self):
if self.comeFrom:
print ' ', self.comeFrom, '---->'
print '%d %s' % (self.addr, self.name),
print ' reads: %s writes: %s' % (self.regReads, self.regWrites)
if self.goTo:
print ' ---->', self.goTo
class ExplainGrokker(object):
def __init__(self):
self.ephemeralTables = []
self.virtualTables = []
#: maps "vtab:*:*" strings to Table instances...
self.vtableObjs = {}
self.realTables = []
self.realTablesByName = {}
self.pseudoTables = []
self.allTables = []
self.indices = []
self.realIndicesByName = {}
self.cursors = []
self.code = []
self.cursorByHandle = {}
self.resultRowOps = []
def _newEphemeralTable(self, **kwargs):
table = Table(ephemeral=True, openedAt=self.op, **kwargs)
self.ephemeralTables.append(table)
self.allTables.append(table)
self.op.births.append(table)
return table
def _newVirtualTable(self, vtabkey, **kwargs):
table = Table(virtual=True, openedAt=self.op, **kwargs)
self.vtableObjs[vtabkey] = table
self.virtualTables.append(table)
self.allTables.append(table)
self.op.births.append(table)
return table
def _newRealTable(self, nameAndInfo, **kwargs):
rootIdb, name = nameAndInfo.split('; ')
if name in self.realTablesByName:
table = self.realTablesByName[name]
else:
table = Table(name=name, openedAt=self.op, **kwargs)
self.realTables.append(table)
self.realTablesByName[name] = table
self.allTables.append(table)
self.op.births.append(table)
return table
def _newPseudoTable(self, **kwargs):
table = Table(pseudo=True,openedAt=self.op, **kwargs)
self.pseudoTables.append(table)
self.allTables.append(table)
self.op.births.append(table)
return table
def _parseKeyinfo(self, indexDetails):
# see displayP4 in the source
# right now we just care about the first arg, nField which is the
# "number of key colums in the index"
keyparts = indexDetails[2:-1].split(',')
numColumns = int(keyparts[0])
return numColumns
def _newIndexOn(self, indexDetails, nameAndInfo, **kwargs):
# indexDetails is of the form: "keyinfo(%d,"...
numColumns = self._parseKeyinfo(indexDetails)
rootIdb, name = nameAndInfo.split('; ')
if name in self.realIndicesByName:
index = self.realIndicesByName[name]
else:
index = Index(columns=numColumns, openedAt=self.op, name=name,
**kwargs)
self.indices.append(index)
self.realIndicesByName[name] = index
self.op.births.append(index)
return index
def _newCursor(self, handle, thing, **kwargs):
if handle in self.cursorByHandle:
# R/W change is okay
cursor = self.cursorByHandle[handle]
if cursor.on != thing:
raise Exception('ERROR! Cursor handle collision!')
else:
cursor = Cursor(handle=handle, on=thing, openedAt=self.op, **kwargs)
self.cursors.append(cursor)
self.cursorByHandle[handle] = cursor
self.op.births.append(cursor)
self.op.usesCursor = cursor
self.op.affectedByCursors.add(cursor)
return cursor
def _getCursor(self, handle, write=False, seek=False):
cursor = self.cursorByHandle[handle]
self.op.usesCursor = cursor
self.op.writesCursor = write
self.op.seeksCursor = seek
self.op.affectedByCursors.add(cursor)
return cursor
def _getVtable(self, vtabkey, write=False):
'''
Given a P4-resident "vtab:*:*"
'''
if vtabkey in self.cursorByHandle:
cursor = self.cursorByHandle[vtabkey]
else:
cursor = Cursor(handle=vtabkey, on=None)
self.cursors.append(cursor)
self.cursorByHandle[vtabkey] = cursor
self.op.usesCursor = cursor
self.op.writesCursor = write
self.op.affectedByCursors.add(cursor)
return cursor
def _killThing(self, thing):
self.op.kills.append(thing)
thing.closedAt = self.op
if thing.on:
self._killThing(thing.on)
def _killCursor(self, handle):
if handle not in self.cursorByHandle:
print 'Warning; tried to close a non-open cursor; might be our bad'
return
cursor = self._getCursor(handle)
self._killThing(cursor)
def _op_OpenCommon(self, params, writable):
# if P4 is a keyinfo, then it's an index and comment is the name of the
# index.
# if P4 is not a keyinfo, then it's the number of columns in the table
# and comment is the name of the table.
cursorNum = params[0]
if isinstance(params[3], basestring):
indexDetails = params[3]
cursorOn = self._newIndexOn(indexDetails,
self.op.comment)
else:
cursorOn = self._newRealTable(self.op.comment,
columns=params[3])
self._newCursor(cursorNum, cursorOn, writable=writable)
def _op_OpenRead(self, params):
self._op_OpenCommon(params, False)
def _op_OpenWrite(self, params):
self._op_OpenCommon(params, True)
def _op_OpenPseudo(self, params):
# a psuedo-table is a 'fake table with a single row of data'
# cursor is P1
# the pseudo-table is stored into a blob in P2
# number of fields/columns is p3
# XXX our Column opcode might benefit from being aware that it's dealing
# with a cursor to a psuedo table so that it can translate its actions
# into actions on the underlying register too. but we no longer really
# care about that so much these days.
cursorNum = params[0]
table = self._newPseudoTable(
name=("pseudo%d" % (cursorNum,)),
columns=params[2])
self._newCursor(cursorNum, table)
self.op.regWrites.append(params[1])
def _op_VOpen(self, params):
# p1: cursor number
# p4: vtable structure
cursorNum = params[0]
table = self._newVirtualTable(params[3],
name=("virtual%d" % (cursorNum,)))
self._newCursor(cursorNum, table)
def _op_OpenEphemeral(self, params):
cursorNum = params[0]
numColumns = params[1]
indexDetails = params[3]
table = self._newEphemeralTable(
name=("ephemeral%d" % (cursorNum,)),
columns=numColumns)
if indexDetails:
cursorOn = self._newIndexOn(indexDetails,
table=table,
name="eindex%d" % (cursorNum,))
else:
cursorOn = table
self._newCursor(cursorNum, cursorOn)
def _op_SorterOpen(self, params):
# per docs, this is just like OpenEphemeral but it's for "large tables
# using an external merge-sort algorithm".
pass
def _op_SorterInsert(self, params):
# same as IdxInsert
pass
def _op_SorterSort(self, params):
# same as Sort
pass
def _op_SorterData(self, params):
# Its own thing
pass
def _op_SorterNext(self, params):
# advance read cursor to next sorted element
pass
def _op_Permute(self, params):
# it just prints "intarray" at least for non-debug. not very helpful!
pass
def _op_Compare(self, params):
# P1..(P1+P3-1)
self.op.regReads.extend([params[0] + x for x in range(params[2])])
# P2..(P2+P3-1)
self.op.regReads.extend([params[1] + x for x in range(params[2])])
# uh, we don't use this yet.
self._parseKeyinfo(params[3])
# we contaminate the jump decision...
self.op.regWrites.append('for_jump')
def _condJump(self, regs, target):
if regs:
if isinstance(regs, list):
self.op.regReads.extend(regs)
else:
self.op.regReads.append(regs)
self.op.goTo.append(self.op.addr + 1)
self.op.goTo.append(target)
self.op.usesImmediate = target
def _jump(self, target):
self.op.goTo.append(target)
self.op.usesImmediate = target
def _op_Goto(self, params):
self._jump(params[1])
def _op_Init(self, params):
# says to jump to P2 if P2 is not zero
if (params[1]):
self._jump(params[1])
def _op_Jump(self, params):
# we base our decision on the result of the last compare
self.op.regReads.append('for_jump')
self._jump(params[0])
self._jump(params[1])
self._jump(params[2])
self.op.usesImmediate = None # too many for now... XXX
def _op_Gosub(self, params):
self.op.regWrites.append(params[0])
self.op.dynamicWritePC = params[0]
self._jump(params[1])
if NO_YIELDS:
self.op.goTo.append(self.op.addr + 1)
# def _op_InitCoroutine(self, params):
# pass
# def _op_EndCoroutine(self, params):
# pass
def _op_Yield(self, params):
self.op.regReads.append(params[0])
self.op.regWrites.append(params[0])
if not NO_YIELDS:
self.op.dynamicWritePC = params[0]
# we won't know where out goTo goes to until dataflow analysis, nor
# where we would 'come from' to the next opcode. But we do know that
# after us is a basic block break, so let's hint that.
self.op.dynamicGoTo = params[0]
# do not arbitrarily flow to the next dude!
self.op.terminate = True
def _op_Return(self, params):
# just like for Yield, we have no idea where we are going until
# dataflow.
self.op.regReads.append(params[0])
self.op.dynamicGoTo = params[0]
def _op_NullRow(self, params):
# moves us to a no-op row
self._getCursor(params[0], False, True)
def _op_Seek(self, params):
self._getCursor(params[0], False, True)
self.op.regReads.append(params[1])
def _op_SeekCommon(self, params, comparison):
cursor = self._getCursor(params[0], False, True)
if isinstance(cursor.on, Table):
self.op.regReads.append(params[2])
else:
for x in range(params[3]):
self.op.regReads.append(params[2] + x)
if params[1]:
self._condJump(None, params[1])
def _op_SeekLT(self, params):
self._op_SeekCommon(params, '<')
def _op_SeekLE(self, params):
self._op_SeekCommon(params, '<=')
def _op_SeekGE(self, params):
self._op_SeekCommon(params, '>=')
def _op_SeekGT(self, params):
self._op_SeekCommon(params, '>')
def _op_IdxCommon(self, params, comparison):
self._getCursor(params[0])
indexKey_regs = [params[2] + x for x in range(params[3])]
self._condJump(indexKey_regs, params[1])
def _op_IdxLT(self, params):
self._op_IdxCommon(params, '<')
def _op_IdxLE(self, params):
self._op_IdxCommon(params, '<=')
def _op_IdxGE(self, params):
self._op_IdxCommon(params, '>=')
def _op_IdxGT(self, params):
self._op_IdxCommon(params, '>')
def _op_IdxRowid(self, params):
self._getCursor(params[0])
self.op.regWrites.append(params[1])
def _op_Rowid(self, params):
self._op_IdxRowid(params)
def _op_NewRowid(self, params):
self._getCursor(params[0])
self.op.regReads.append(params[2])
self.op.regWrites.extend(params[1:3])
def _op_RowSetAdd(self, params):
# reg[p2] => reg[p1]
self.op.regReads.append(params[1])
self.op.regWrites.append(params[0])
def _op_RowSetRead(self, params):
# extract from reg[p1] => reg[p3], or conditional jump to p2
self._condJump(params[0], params[1])
self.op.regWrites.append(params[2])
def _op_NotExists(self, params):
self._getCursor(params[0], False, True)
self._condJump(params[2], params[1])
def _op_Found(self, params):
self._getCursor(params[0], False, True)
self._condJump(params[2], params[1])
def _op_NotFound(self, params):
self._op_Found(params)
def _op_VBegin(self, params):
# This is used in conjunction with VUpdate without any VOpen. Although
# there is no real cursor that results from this, the usage is akin to a
# cursor...
vtcursor = self._getVtable(params[3])
self.op.births.append(vtcursor)
vtcursor.openedAt=self.op
def _op_VUpdate(self, params):
# performs virtual table INSERT and/or DELETE
# p1 is whether we should update the last_insert_rowid value
# p2 is the number of arguments
# p3 is the register index of the first argument (of which we have p2
# arguments)
# p4 is the vtable we are operating on ("vtab:*:*")
self.op.regReads.extend([params[2] + x for x in range(params[1])])
self._getVtable(params[3], True)
def _op_VFilter(self, params):
self._getCursor(params[0], False, True)
# +1 is actually argc, which we can't see with a bit'o'legwork
# TODOMAYBE: fancy legwork if we can statically know the argc
self.op.regReads.extend([params[2], params[2]+1,
# however, we do know it must be >= 1
params[2] + 2])
self._condJump(None, params[1])
def _op_VNext(self, params):
self._getCursor(params[0], False, True)
self._condJump(None, params[1])
def _op_Next(self, params):
self._op_VNext(params)
def _op_Prev(self, params):
self._op_VNext(params)
def _op_Last(self, params):
self._getCursor(params[0], False, True)
if params[1]:
self._condJump(None, params[1])
def _op_Rewind(self, params):
self._op_Last(params)
_op_Sort = _op_Rewind
def _op_Column(self, params):
self._getCursor(params[0])
self.op.usesColumns = [params[1]]
self.op.regWrites.append(params[2])
def _op_VColumn(self, params):
self._op_Column(params)
def _op_Affinity(self, params):
'''
This sets the data type of a bunch of registers...
Treating this as a nop since it doesn't really do anything.
'''
pass
def _op_MakeRecord(self, params):
self.op.regReads.extend([params[0] + x for x in range(params[1])])
# writes to reg p3
self.op.regWrites.append(params[2])
def _op_ResultRow(self, params):
self.op.regReads.extend([params[0] + x for x in range(params[1])])
self.resultRowOps.append(self.op)
def _op_AggStep(self, params):
# reads are taken from P2 onwards, P5 is the number of args
self.op.regReads.extend([params[1] + x for x in range(int(params[4]))])
# P3 is the accumulator so writes go there
self.op.regWrites = [params[2]]
# p4 is the function def, ex: count(1), currently ignored
pass
def _op_AggFinal(self, params):
# So although P2 is the number of args, the docs say that this function
# really only cares about the accumulator
self.op.regReads = [params[0]]
# P4 is the function def, ex: count(1), currently ignored
def _op_Insert(self, params):
# P4 is the table...
self._getCursor(params[0], True)
self.op.regReads.extend([params[1], params[2]])
def _op_IdxInsert(self, params):
self._getCursor(params[0], True)
self.op.regReads.append(params[1])
def _op_Delete(self, params):
# a delete is a write...
self._getCursor(params[0], True)
def _op_IdxDelete(self, params):
# delete from cursor P1
# index key is packed into p2...p2+p3-1p
self._getCursor(params[0], True)
self.op.regReads.extend([params[1] + x for x in range(params[2])])
def _op_Sequence(self, params):
self._getCursor(params[0])
self.op.regWrites.append(params[1])
def _op_Close(self, params):
self._killCursor(params[0])
def _op_IsNull(self, params):
if params[2]:
regs = [params[0] + x for x in range(params[2])]
else:
regs = params[0]
self._condJump(regs, params[1])
def _op_NotNull(self, params):
self._condJump([params[0]], params[1])
def _op_MustBeInt(self, params):
self.op.regReads.append(params[0])
self.op.goTo.append(self.op.addr + 1)
if params[1]:
self.op.goTo.append(params[1])
else:
# you know what? we don't care about exceptions. screw them.
#self.op.goTo.append('SQLITE_MISMATCH')
pass
def _op_If(self, params):
self._condJump([params[0]], params[1])
def _op_IfNot(self, params):
self._condJump([params[0]], params[1])
def _op_IfPos(self, params):
self._condJump([params[0]], params[1])
def _op_Eq(self, params):
self._condJump([params[0], params[2]], params[1])
def _op_Ne(self, params):
self._condJump([params[0], params[2]], params[1])
def _op_Lt(self, params):
self._condJump([params[0], params[2]], params[1])
def _op_Le(self, params):
self._condJump([params[0], params[2]], params[1])
def _op_Gt(self, params):
self._condJump([params[0], params[2]], params[1])
def _op_Ge(self, params):
self._condJump([params[0], params[2]], params[1])
def _op_IfZero(self, params):
self._condJump([params[0]], params[1])
def _op_Variable(self, params):
# bound parameters P1..P1+P3-1 transferred to regs P2...P2+P3-1
# when P3==1, P4 should hold the name.
self.op.regWrites.extend([params[1] + x for x in range(params[2])])
if params[2] == 1 and params[3]:
# just put the binding name in the commment; it visually works
self.op.comment = params[3]
def _op_Move(self, params):
self.op.regReads.extend([params[0] + x for x in range(params[2])])
self.op.regWrites.extend([params[1] + x for x in range(params[2])])
def _op_Copy(self, params, shallow=False):
self.op.regReads.append(params[0])
self.op.regWrites.append(params[1])
def _op_SCopy(self, params):
self._op_Copy(params, True)
def _op_AddImm(self, params):
self.op.regReads.append(params[0])
self.op.regWrites.append(params[0])
self.op.usesImmediate = params[1]
def _op_String(self, params):
self.op.regWrites.append(params[1])
self.op.usesImmediate = params[3]
def _op_String8(self, params):
self._op_String(params)
def _op_Integer(self, params):
self.op.regWrites.append(params[1])
self.op.usesImmediate = params[0]
def _op_Int64(self, params):
self.op.regWrites.append(params[1])
self.op.usesImmediate = params[3]
def _op_Real(self, params):
self.op.regWrites.append(params[1])
self.op.usesImmediate = params[3]
def _op_Blob(self, params):
self.op.regWrites.append(params[1])
self.op.usesImmediate = '(blob)'
def _op_Null(self, params):
self.op.regWrites.append(params[1])
if (params[2] > params[1]):
for x in xrange(params[1] + 1, params[2] + 1):
self.op.regWrites.append(x)
def _op_Halt(self, params):