aboutsummaryrefslogtreecommitdiff
path: root/gdb/make-target-delegates.py
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/make-target-delegates.py')
-rwxr-xr-xgdb/make-target-delegates.py44
1 files changed, 25 insertions, 19 deletions
diff --git a/gdb/make-target-delegates.py b/gdb/make-target-delegates.py
index 051efce..f6f2bf0 100755
--- a/gdb/make-target-delegates.py
+++ b/gdb/make-target-delegates.py
@@ -290,28 +290,34 @@ def write_debugmethod(
print(", ".join(names), file=f, end="")
print(");", file=f)
- # Now print the arguments.
- print(
- ' gdb_printf (gdb_stdlog, "<- %s->'
- + name
- + ' (", this->beneath ()->shortname ());',
- file=f,
+ # Generate the debug printf call.
+ args_fmt = ", ".join(["%s"] * len(argtypes))
+ args = "".join(
+ [
+ (",\n\t {printer} (arg{i}).c_str ()").format(
+ printer=munge_type(t), i=i
+ )
+ for i, t in enumerate(argtypes)
+ ]
)
- for i in range(len(argtypes)):
- if i > 0:
- print(' gdb_puts (", ", gdb_stdlog);', file=f)
- printer = munge_type(argtypes[i])
- print(
- " gdb_puts (" + printer + " (" + names[i] + "), gdb_stdlog);",
- file=f,
- )
+
if return_type != "void":
- print(' gdb_puts (") = ", gdb_stdlog);', file=f)
- printer = munge_type(return_type)
- print(" " + printer + " (result);", file=f)
- print(' gdb_puts ("\\n", gdb_stdlog);', file=f)
+ ret_fmt = " = %s"
+ ret = ",\n\t {printer} (result).c_str ()".format(
+ printer=munge_type(return_type)
+ )
else:
- print(' gdb_puts (")\\n", gdb_stdlog);', file=f)
+ ret_fmt = ""
+ ret = ""
+
+ print(
+ (
+ " gdb_printf (gdb_stdlog,\n"
+ '\t "<- %s->{name} ({args_fmt}){ret_fmt}\\n",\n'
+ "\t this->beneath ()->shortname (){args}{ret});"
+ ).format(name=name, args_fmt=args_fmt, args=args, ret_fmt=ret_fmt, ret=ret),
+ file=f,
+ )
if return_type != "void":
print(" return result;", file=f)