From 9addf322a677eef2ee0efeca8bc41a9bda58de94 Mon Sep 17 00:00:00 2001 From: Jim Keniston Date: Mon, 5 May 2008 17:03:49 -0700 Subject: Replaced [u_]arg() with [u]int_arg(), [u]long_arg(), {s|u}32_arg(), {s|u}64_arg(), etc. Added asmlinkage(), fastcall(), regparm(). Dealt with some surprises -- e.g., rax is ZERO-extended eax. Seems to work well with -m32 and -m64 user apps, and with a (small) dwarfless subset of syscall.stp. --- tapsets.cxx | 1 + 1 file changed, 1 insertion(+) (limited to 'tapsets.cxx') diff --git a/tapsets.cxx b/tapsets.cxx index af7e5590..47bb20e2 100644 --- a/tapsets.cxx +++ b/tapsets.cxx @@ -209,6 +209,7 @@ common_probe_entryfn_prologue (translator_output* o, string statestr, o->newline() << "c->unwaddr = 0;"; // reset unwound address cache o->newline() << "c->pi = 0;"; + o->newline() << "c->regparm = 0;"; o->newline() << "c->probe_point = 0;"; if (! interruptible) o->newline() << "c->actionremaining = MAXACTION;"; -- cgit