X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=retrace.py;h=392519b02739e6abcf1d6b3364e1940c2c3b032b;hb=c5b741c83e804f1e438caca83565a76e254d0b94;hp=81652e5eddb1afd0bf9ec9ffab8be71fe4552c35;hpb=c017dded3f1b3ebe3043b0e217bb3cd76a4e1a4e;p=apitrace diff --git a/retrace.py b/retrace.py index 81652e5..392519b 100644 --- a/retrace.py +++ b/retrace.py @@ -95,8 +95,9 @@ class ValueExtractor(stdapi.Visitor): def visit_handle(self, handle, lvalue, rvalue): OpaqueValueExtractor().visit(handle.type, lvalue, rvalue); new_lvalue = handle_entry(handle, lvalue) - print ' if (retrace::verbosity >= 2)' + print ' if (retrace::verbosity >= 2) {' print ' std::cout << "%s " << size_t(%s) << " <- " << size_t(%s) << "\\n";' % (handle.name, lvalue, new_lvalue) + print ' }' print ' %s = %s;' % (lvalue, new_lvalue) def visit_blob(self, blob, lvalue, rvalue): @@ -157,8 +158,9 @@ class ValueWrapper(stdapi.Visitor): rvalue = "__orig_result" entry = handle_entry(handle, rvalue) print " %s = %s;" % (entry, lvalue) - print ' if (retrace::verbosity >= 2)' + print ' if (retrace::verbosity >= 2) {' print ' std::cout << "{handle.name} " << {rvalue} << " -> " << {lvalue} << "\\n";'.format(**locals()) + print ' }' else: i = '__h' + handle.id lvalue = "%s + %s" % (lvalue, i) @@ -166,8 +168,9 @@ class ValueWrapper(stdapi.Visitor): entry = handle_entry(handle, rvalue) print ' for ({handle.type} {i} = 0; {i} < {handle.range}; ++{i}) {{'.format(**locals()) print ' {entry} = {lvalue};'.format(**locals()) - print ' if (retrace::verbosity >= 2)' + print ' if (retrace::verbosity >= 2) {' print ' std::cout << "{handle.name} " << ({rvalue}) << " -> " << ({lvalue}) << "\\n";'.format(**locals()) + print ' }' print ' }' def visit_blob(self, blob, lvalue, rvalue): @@ -187,6 +190,7 @@ class Retracer: def retrace_function_body(self, function): if not function.sideeffects: + print ' (void)call;' return success = True @@ -202,7 +206,9 @@ class Retracer: success = False print ' %s = 0; // FIXME' % arg.name if not success: + print ' if (1) {' self.fail_function(function) + print ' }' self.call_function(function) for arg in function.args: if arg.output: @@ -228,12 +234,16 @@ class Retracer: def extract_arg(self, function, arg, arg_type, lvalue, rvalue): ValueExtractor().visit(arg_type, lvalue, rvalue) + + def extract_opaque_arg(self, function, arg, arg_type, lvalue, rvalue): + OpaqueValueExtractor().visit(arg_type, lvalue, rvalue) def call_function(self, function): arg_names = ", ".join([arg.name for arg in function.args]) if function.type is not stdapi.Void: print ' %s __result;' % (function.type) print ' __result = %s(%s);' % (function.name, arg_names) + print ' (void)__result;' else: print ' %s(%s);' % (function.name, arg_names) @@ -247,7 +257,7 @@ class Retracer: self.retrace_function(function) print 'void retrace::retrace_call(Trace::Call &call) {' - print ' const char *name = call.name().c_str();' + print ' const char *name = call.name();' print func_dict = dict([(function.name, function) for function in functions])