[swfinterp] Remove debugging code
parent
decf2ae400
commit
1b38b5be86
|
@ -361,7 +361,6 @@ class SWFInterpreter(object):
|
||||||
raise ExtractorError('Class %r not found' % class_name)
|
raise ExtractorError('Class %r not found' % class_name)
|
||||||
|
|
||||||
def extract_function(self, avm_class, func_name):
|
def extract_function(self, avm_class, func_name):
|
||||||
print('Extracting %s.%s' % (avm_class.name, func_name))
|
|
||||||
if func_name in avm_class.method_pyfunctions:
|
if func_name in avm_class.method_pyfunctions:
|
||||||
return avm_class.method_pyfunctions[func_name]
|
return avm_class.method_pyfunctions[func_name]
|
||||||
if func_name in self._classes_by_name:
|
if func_name in self._classes_by_name:
|
||||||
|
@ -377,14 +376,12 @@ class SWFInterpreter(object):
|
||||||
s24 = lambda: _s24(coder)
|
s24 = lambda: _s24(coder)
|
||||||
u30 = lambda: _u30(coder)
|
u30 = lambda: _u30(coder)
|
||||||
|
|
||||||
print('Invoking %s.%s(%r)' % (avm_class.name, func_name, tuple(args)))
|
|
||||||
registers = [avm_class.variables] + list(args) + [None] * m.local_count
|
registers = [avm_class.variables] + list(args) + [None] * m.local_count
|
||||||
stack = []
|
stack = []
|
||||||
scopes = collections.deque([
|
scopes = collections.deque([
|
||||||
self._classes_by_name, avm_class.variables])
|
self._classes_by_name, avm_class.variables])
|
||||||
while True:
|
while True:
|
||||||
opcode = _read_byte(coder)
|
opcode = _read_byte(coder)
|
||||||
print('opcode: %r, stack(%d): %r' % (opcode, len(stack), stack))
|
|
||||||
if opcode == 17: # iftrue
|
if opcode == 17: # iftrue
|
||||||
offset = s24()
|
offset = s24()
|
||||||
value = stack.pop()
|
value = stack.pop()
|
||||||
|
@ -539,7 +536,6 @@ class SWFInterpreter(object):
|
||||||
if isinstance(idx, _Multiname):
|
if isinstance(idx, _Multiname):
|
||||||
idx = stack.pop()
|
idx = stack.pop()
|
||||||
obj = stack.pop()
|
obj = stack.pop()
|
||||||
print('Setting %r.%r = %r' % (obj, idx, value))
|
|
||||||
obj[idx] = value
|
obj[idx] = value
|
||||||
elif opcode == 98: # getlocal
|
elif opcode == 98: # getlocal
|
||||||
index = u30()
|
index = u30()
|
||||||
|
|
Loading…
Reference in New Issue