X-Git-Url: https://git.cworth.org/git?a=blobdiff_plain;f=retrace.py;h=392519b02739e6abcf1d6b3364e1940c2c3b032b;hb=101c49423726ec6700b9a28cdcefc559400b5aee;hp=f931c88988760b883d9cb70b6c54d840274a5cb6;hpb=4d7f1fec7a1561d474592b2b05b43685a29e8426;p=apitrace diff --git a/retrace.py b/retrace.py index f931c88..392519b 100644 --- a/retrace.py +++ b/retrace.py @@ -51,10 +51,8 @@ def handle_entry(handle, value): class ValueExtractor(stdapi.Visitor): def visit_literal(self, literal, lvalue, rvalue): - if literal.format == 'Bool': - print ' %s = static_cast(%s);' % (lvalue, rvalue) - else: - print ' %s = %s;' % (lvalue, rvalue) + #if literal.format in ('Bool', 'UInt'): + print ' %s = (%s).to%s();' % (lvalue, rvalue, literal.format) def visit_const(self, const, lvalue, rvalue): self.visit(const.type, lvalue, rvalue) @@ -63,7 +61,7 @@ class ValueExtractor(stdapi.Visitor): self.visit(alias.type, lvalue, rvalue) def visit_enum(self, enum, lvalue, rvalue): - print ' %s = %s;' % (lvalue, rvalue) + print ' %s = (%s).toSInt();' % (lvalue, rvalue) def visit_bitmask(self, bitmask, lvalue, rvalue): self.visit(bitmask.type, lvalue, rvalue) @@ -97,15 +95,16 @@ 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): - print ' %s = static_cast<%s>((%s).blob());' % (lvalue, blob, rvalue) + print ' %s = static_cast<%s>((%s).toPointer());' % (lvalue, blob, rvalue) def visit_string(self, string, lvalue, rvalue): - print ' %s = (%s)((%s).string());' % (lvalue, string.expr, rvalue) + print ' %s = (%s)((%s).toString());' % (lvalue, string.expr, rvalue) class OpaqueValueExtractor(ValueExtractor): @@ -115,7 +114,7 @@ class OpaqueValueExtractor(ValueExtractor): in the context of handles.''' def visit_opaque(self, opaque, lvalue, rvalue): - print ' %s = static_cast<%s>((%s).blob());' % (lvalue, opaque, rvalue) + print ' %s = static_cast<%s>((%s).toPointer());' % (lvalue, opaque, rvalue) class ValueWrapper(stdapi.Visitor): @@ -159,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) @@ -168,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): @@ -189,6 +190,7 @@ class Retracer: def retrace_function_body(self, function): if not function.sideeffects: + print ' (void)call;' return success = True @@ -204,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: @@ -230,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) @@ -249,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])