From: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
To: lkml <linux-kernel@vger.kernel.org>
Cc: hch@infradead.org, Andrew Morton <akpm@osdl.org>,
Prasanna S Panchamukhi <prasanna@in.ibm.com>,
Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>,
Jim Keniston <jkenisto@us.ibm.com>,
davem@davemloft.net, schwidefsky@de.ibm.com
Subject: [PATCH 2/3] Add retval_value helper (updated)
Date: Tue, 22 Aug 2006 10:58:41 +0530 [thread overview]
Message-ID: <20060822052841.GB26279@in.ibm.com> (raw)
In-Reply-To: <20060822052448.GA26279@in.ibm.com>
From: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
Add the return_value() macro to extract the return value in an
architecture agnostic manner, given the pt_regs.
Other architecture maintainers may want to add similar helpers.
---
Signed-off-by: Ananth N Mavinakayanahalli <ananth@in.ibm.com>
Signed-off-by: Anil S Keshavamurthy <anil.s.keshavamurthy@intel.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
---
include/asm-i386/ptrace.h | 3 +++
include/asm-ia64/ptrace.h | 3 +++
include/asm-powerpc/ptrace.h | 2 ++
include/asm-s390/ptrace.h | 1 +
include/asm-x86_64/ptrace.h | 2 ++
5 files changed, 11 insertions(+)
Index: linux-2.6.18-rc4/include/asm-i386/ptrace.h
===================================================================
--- linux-2.6.18-rc4.orig/include/asm-i386/ptrace.h
+++ linux-2.6.18-rc4/include/asm-i386/ptrace.h
@@ -79,7 +79,10 @@ static inline int user_mode_vm(struct pt
{
return ((regs->xcs & 3) | (regs->eflags & VM_MASK)) != 0;
}
+
#define instruction_pointer(regs) ((regs)->eip)
+#define return_value(regs) ((regs)->eax)
+
#if defined(CONFIG_SMP) && defined(CONFIG_FRAME_POINTER)
extern unsigned long profile_pc(struct pt_regs *regs);
#else
Index: linux-2.6.18-rc4/include/asm-ia64/ptrace.h
===================================================================
--- linux-2.6.18-rc4.orig/include/asm-ia64/ptrace.h
+++ linux-2.6.18-rc4/include/asm-ia64/ptrace.h
@@ -237,6 +237,9 @@ struct switch_stack {
* the canonical representation by adding to instruction pointer.
*/
# define instruction_pointer(regs) ((regs)->cr_iip + ia64_psr(regs)->ri)
+
+#define return_value(regs) ((regs)->r8)
+
/* Conserve space in histogram by encoding slot bits in address
* bits 2 and 3 rather than bits 0 and 1.
*/
Index: linux-2.6.18-rc4/include/asm-powerpc/ptrace.h
===================================================================
--- linux-2.6.18-rc4.orig/include/asm-powerpc/ptrace.h
+++ linux-2.6.18-rc4/include/asm-powerpc/ptrace.h
@@ -73,6 +73,8 @@ struct pt_regs {
#ifndef __ASSEMBLY__
#define instruction_pointer(regs) ((regs)->nip)
+#define return_value(regs) ((regs)->gpr[3])
+
#ifdef CONFIG_SMP
extern unsigned long profile_pc(struct pt_regs *regs);
#else
Index: linux-2.6.18-rc4/include/asm-s390/ptrace.h
===================================================================
--- linux-2.6.18-rc4.orig/include/asm-s390/ptrace.h
+++ linux-2.6.18-rc4/include/asm-s390/ptrace.h
@@ -472,6 +472,7 @@ struct user_regs_struct
#define user_mode(regs) (((regs)->psw.mask & PSW_MASK_PSTATE) != 0)
#define instruction_pointer(regs) ((regs)->psw.addr & PSW_ADDR_INSN)
+#define return_value(regs)((regs)->gprs[2])
#define profile_pc(regs) instruction_pointer(regs)
extern void show_regs(struct pt_regs * regs);
#endif
Index: linux-2.6.18-rc4/include/asm-x86_64/ptrace.h
===================================================================
--- linux-2.6.18-rc4.orig/include/asm-x86_64/ptrace.h
+++ linux-2.6.18-rc4/include/asm-x86_64/ptrace.h
@@ -84,6 +84,8 @@ struct pt_regs {
#define user_mode(regs) (!!((regs)->cs & 3))
#define user_mode_vm(regs) user_mode(regs)
#define instruction_pointer(regs) ((regs)->rip)
+#define return_value(regs) ((regs)->rax)
+
extern unsigned long profile_pc(struct pt_regs *regs);
void signal_fault(struct pt_regs *regs, void __user *frame, char *where);
next prev parent reply other threads:[~2006-08-22 5:27 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-08-22 5:24 [PATCH 1/3] Kprobes: Make kprobe modules more portable (updated) Ananth N Mavinakayanahalli
2006-08-22 5:28 ` Ananth N Mavinakayanahalli [this message]
2006-08-22 5:30 ` [PATCH 3/3] Update Documentation/kprobes.txt Ananth N Mavinakayanahalli
2006-08-25 7:11 ` Ananth N Mavinakayanahalli
2006-08-22 21:13 ` [PATCH 2/3] Add retval_value helper (updated) Andrew Morton
2006-08-23 1:29 ` Ananth N Mavinakayanahalli
2006-08-25 7:05 ` [PATCH 1/3] Kprobes: Make kprobe modules more portable (updated) Ananth N Mavinakayanahalli
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20060822052841.GB26279@in.ibm.com \
--to=ananth@in.ibm.com \
--cc=akpm@osdl.org \
--cc=anil.s.keshavamurthy@intel.com \
--cc=davem@davemloft.net \
--cc=hch@infradead.org \
--cc=jkenisto@us.ibm.com \
--cc=linux-kernel@vger.kernel.org \
--cc=prasanna@in.ibm.com \
--cc=schwidefsky@de.ibm.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox