forked from llvm/llvm-project
- Notifications
You must be signed in to change notification settings - Fork 339
/
Copy pathpytracer.py
443 lines (368 loc) · 11.9 KB
/
pytracer.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
importsys
importinspect
fromcollectionsimportOrderedDict
classTracebackFancy:
def__init__(self, traceback):
self.t=traceback
defgetFrame(self):
returnFrameFancy(self.t.tb_frame)
defgetLineNumber(self):
returnself.t.tb_linenoifself.tisnotNoneelseNone
defgetNext(self):
returnTracebackFancy(self.t.tb_next)
def__str__(self):
ifself.tisNone:
return""
str_self="%s @ %s"% (self.getFrame().getName(), self.getLineNumber())
returnstr_self+"\n"+self.getNext().__str__()
classExceptionFancy:
def__init__(self, frame):
self.etraceback=frame.f_exc_traceback
self.etype=frame.exc_type
self.evalue=frame.f_exc_value
def__init__(self, tb, ty, va):
self.etraceback=tb
self.etype=ty
self.evalue=va
defgetTraceback(self):
returnTracebackFancy(self.etraceback)
def__nonzero__(self):
return (
self.etracebackisnotNone
orself.etypeisnotNone
orself.evalueisnotNone
)
defgetType(self):
returnstr(self.etype)
defgetValue(self):
returnself.evalue
classCodeFancy:
def__init__(self, code):
self.c=code
defgetArgCount(self):
returnself.c.co_argcountifself.cisnotNoneelse0
defgetFilename(self):
returnself.c.co_filenameifself.cisnotNoneelse""
defgetVariables(self):
returnself.c.co_varnamesifself.cisnotNoneelse []
defgetName(self):
returnself.c.co_nameifself.cisnotNoneelse""
defgetFileName(self):
returnself.c.co_filenameifself.cisnotNoneelse""
classArgsFancy:
def__init__(self, frame, arginfo):
self.f=frame
self.a=arginfo
def__str__(self):
args, varargs, kwargs=self.getArgs(), self.getVarArgs(), self.getKWArgs()
ret=""
count=0
size=len(args)
forarginargs:
ret=ret+ ("%s = %s"% (arg, args[arg]))
count=count+1
ifcount<size:
ret=ret+", "
ifvarargs:
ifsize>0:
ret=ret+" "
ret=ret+"varargs are "+str(varargs)
ifkwargs:
ifsize>0:
ret=ret+" "
ret=ret+"kwargs are "+str(kwargs)
returnret
defgetNumArgs(wantVarargs=False, wantKWArgs=False):
args, varargs, keywords, values=self.a
size=len(args)
ifvarargsandwantVarargs:
size=size+len(self.getVarArgs())
ifkeywordsandwantKWArgs:
size=size+len(self.getKWArgs())
returnsize
defgetArgs(self):
args, _, _, values=self.a
argWValues=OrderedDict()
forarginargs:
argWValues[arg] =values[arg]
returnargWValues
defgetVarArgs(self):
_, vargs, _, _=self.a
ifvargs:
returnself.f.f_locals[vargs]
return ()
defgetKWArgs(self):
_, _, kwargs, _=self.a
ifkwargs:
returnself.f.f_locals[kwargs]
return {}
classFrameFancy:
def__init__(self, frame):
self.f=frame
defgetCaller(self):
returnFrameFancy(self.f.f_back)
defgetLineNumber(self):
returnself.f.f_linenoifself.fisnotNoneelse0
defgetCodeInformation(self):
returnCodeFancy(self.f.f_code) ifself.fisnotNoneelseNone
defgetExceptionInfo(self):
returnExceptionFancy(self.f) ifself.fisnotNoneelseNone
defgetName(self):
returnself.getCodeInformation().getName() ifself.fisnotNoneelse""
defgetFileName(self):
returnself.getCodeInformation().getFileName() ifself.fisnotNoneelse""
defgetLocals(self):
returnself.f.f_localsifself.fisnotNoneelse {}
defgetArgumentInfo(self):
return (
ArgsFancy(self.f, inspect.getargvalues(self.f))
ifself.fisnotNone
elseNone
)
classTracerClass:
defcallEvent(self, frame):
pass
deflineEvent(self, frame):
pass
defreturnEvent(self, frame, retval):
pass
defexceptionEvent(self, frame, exception, value, traceback):
pass
defcCallEvent(self, frame, cfunct):
pass
defcReturnEvent(self, frame, cfunct):
pass
defcExceptionEvent(self, frame, cfunct):
pass
tracer_impl=TracerClass()
defthe_tracer_entrypoint(frame, event, args):
iftracer_implisNone:
returnNone
ifevent=="call":
call_retval=tracer_impl.callEvent(FrameFancy(frame))
ifnotcall_retval:
returnNone
returnthe_tracer_entrypoint
elifevent=="line":
line_retval=tracer_impl.lineEvent(FrameFancy(frame))
ifnotline_retval:
returnNone
returnthe_tracer_entrypoint
elifevent=="return":
tracer_impl.returnEvent(FrameFancy(frame), args)
elifevent=="exception":
exty, exva, extb=args
exception_retval=tracer_impl.exceptionEvent(
FrameFancy(frame), ExceptionFancy(extb, exty, exva)
)
ifnotexception_retval:
returnNone
returnthe_tracer_entrypoint
elifevent=="c_call":
tracer_impl.cCallEvent(FrameFancy(frame), args)
elifevent=="c_return":
tracer_impl.cReturnEvent(FrameFancy(frame), args)
elifevent=="c_exception":
tracer_impl.cExceptionEvent(FrameFancy(frame), args)
returnNone
defenable(t=None):
globaltracer_impl
ift:
tracer_impl=t
sys.settrace(the_tracer_entrypoint)
defdisable():
sys.settrace(None)
classLoggingTracer:
defcallEvent(self, frame):
print(
"call "
+frame.getName()
+" from "
+frame.getCaller().getName()
+" @ "
+str(frame.getCaller().getLineNumber())
+" args are "
+str(frame.getArgumentInfo())
)
deflineEvent(self, frame):
print(
"running "
+frame.getName()
+" @ "
+str(frame.getLineNumber())
+" locals are "
+str(frame.getLocals())
+" in "
+frame.getFileName()
)
defreturnEvent(self, frame, retval):
print(
"return from "
+frame.getName()
+" value is "
+str(retval)
+" locals are "
+str(frame.getLocals())
)
defexceptionEvent(self, frame, exception):
print(
"exception %s %s raised from %s @ %s"
% (
exception.getType(),
str(exception.getValue()),
frame.getName(),
frame.getLineNumber(),
)
)
print("tb: "+str(exception.getTraceback()))
# the same functionality as LoggingTracer, but with a little more
# lldb-specific smarts
classLLDBAwareTracer:
defcallEvent(self, frame):
ifframe.getName() =="<module>":
return
ifframe.getName() =="run_one_line":
print(
"call run_one_line(%s)"
% (frame.getArgumentInfo().getArgs()["input_string"])
)
return
if"Python.framework"inframe.getFileName():
print("call into Python at "+frame.getName())
return
if (
frame.getName() =="__init__"
andframe.getCaller().getName() =="run_one_line"
andframe.getCaller().getLineNumber() ==101
):
returnFalse
strout="call "+frame.getName()
ifframe.getCaller().getFileName() =="":
strout+=" from LLDB - args are "
args=frame.getArgumentInfo().getArgs()
forarginargs:
ifarg=="dict"orarg=="internal_dict":
continue
strout=strout+ ("%s = %s "% (arg, args[arg]))
else:
strout+= (
" from "
+frame.getCaller().getName()
+" @ "
+str(frame.getCaller().getLineNumber())
+" args are "
+str(frame.getArgumentInfo())
)
print(strout)
deflineEvent(self, frame):
ifframe.getName() =="<module>":
return
ifframe.getName() =="run_one_line":
print(
"running run_one_line(%s) @ %s"
% (
frame.getArgumentInfo().getArgs()["input_string"],
frame.getLineNumber(),
)
)
return
if"Python.framework"inframe.getFileName():
print(
"running into Python at "
+frame.getName()
+" @ "
+str(frame.getLineNumber())
)
return
strout= (
"running "
+frame.getName()
+" @ "
+str(frame.getLineNumber())
+" locals are "
)
ifframe.getCaller().getFileName() =="":
locals=frame.getLocals()
forlocalinlocals:
iflocal=="dict"orlocal=="internal_dict":
continue
strout=strout+ ("%s = %s "% (local, locals[local]))
else:
strout=strout+str(frame.getLocals())
strout=strout+" in "+frame.getFileName()
print(strout)
defreturnEvent(self, frame, retval):
ifframe.getName() =="<module>":
return
ifframe.getName() =="run_one_line":
print(
"return from run_one_line(%s) return value is %s"
% (frame.getArgumentInfo().getArgs()["input_string"], retval)
)
return
if"Python.framework"inframe.getFileName():
print(
"return from Python at "
+frame.getName()
+" return value is "
+str(retval)
)
return
strout= (
"return from "
+frame.getName()
+" return value is "
+str(retval)
+" locals are "
)
ifframe.getCaller().getFileName() =="":
locals=frame.getLocals()
forlocalinlocals:
iflocal=="dict"orlocal=="internal_dict":
continue
strout=strout+ ("%s = %s "% (local, locals[local]))
else:
strout=strout+str(frame.getLocals())
strout=strout+" in "+frame.getFileName()
print(strout)
defexceptionEvent(self, frame, exception):
ifframe.getName() =="<module>":
return
print(
"exception %s %s raised from %s @ %s"
% (
exception.getType(),
str(exception.getValue()),
frame.getName(),
frame.getLineNumber(),
)
)
print("tb: "+str(exception.getTraceback()))
deff(x, y=None):
ifx>0:
return2+f(x-2)
return35
defg(x):
return1.134/x
defprint_keyword_args(**kwargs):
# kwargs is a dict of the keyword args passed to the function
forkey, valueinkwargs.items():
print("%s = %s"% (key, value))
deftotal(initial=5, *numbers, **keywords):
count=initial
fornumberinnumbers:
count+=number
forkeyinkeywords:
count+=keywords[key]
returncount
if__name__=="__main__":
enable(LoggingTracer())
f(5)
f(5, 1)
print_keyword_args(first_name="John", last_name="Doe")
total(10, 1, 2, 3, vegetables=50, fruits=100)
try:
g(0)
except:
pass
disable()