Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
Jeff Dike | ba180fd | 2007-10-16 01:27:00 -0700 | [diff] [blame] | 2 | * Copyright (C) 2000 - 2007 Jeff Dike (jdike@{addtoit,linux.intel}.com) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 3 | * Licensed under the GPL |
| 4 | */ |
| 5 | |
| 6 | #ifndef __UM_PTRACE_GENERIC_H |
| 7 | #define __UM_PTRACE_GENERIC_H |
| 8 | |
| 9 | #ifndef __ASSEMBLY__ |
| 10 | |
Al Viro | 5077c2a | 2008-08-18 00:19:01 -0400 | [diff] [blame] | 11 | #include <asm/ptrace-abi.h> |
Jeff Dike | e8012b5 | 2007-10-16 01:27:16 -0700 | [diff] [blame] | 12 | #include <asm/user.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | #include "sysdep/ptrace.h" |
| 14 | |
| 15 | struct pt_regs { |
Jeff Dike | 77bf440 | 2007-10-16 01:26:58 -0700 | [diff] [blame] | 16 | struct uml_pt_regs regs; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | }; |
| 18 | |
Christoph Hellwig | 1bd0950 | 2010-03-10 15:22:56 -0800 | [diff] [blame] | 19 | #define arch_has_single_step() (1) |
| 20 | |
Al Viro | 4d338e1 | 2006-03-31 02:30:15 -0800 | [diff] [blame] | 21 | #define EMPTY_REGS { .regs = EMPTY_UML_PT_REGS } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | |
| 23 | #define PT_REGS_IP(r) UPT_IP(&(r)->regs) |
| 24 | #define PT_REGS_SP(r) UPT_SP(&(r)->regs) |
| 25 | |
| 26 | #define PT_REG(r, reg) UPT_REG(&(r)->regs, reg) |
| 27 | #define PT_REGS_SET(r, reg, val) UPT_SET(&(r)->regs, reg, val) |
| 28 | |
| 29 | #define PT_REGS_SET_SYSCALL_RETURN(r, res) \ |
| 30 | UPT_SET_SYSCALL_RETURN(&(r)->regs, res) |
| 31 | #define PT_REGS_RESTART_SYSCALL(r) UPT_RESTART_SYSCALL(&(r)->regs) |
| 32 | |
| 33 | #define PT_REGS_SYSCALL_NR(r) UPT_SYSCALL_NR(&(r)->regs) |
| 34 | |
| 35 | #define PT_REGS_SC(r) UPT_SC(&(r)->regs) |
| 36 | |
| 37 | #define instruction_pointer(regs) PT_REGS_IP(regs) |
| 38 | |
| 39 | struct task_struct; |
| 40 | |
Richard Weinberger | 8818b67 | 2010-11-11 14:05:04 -0800 | [diff] [blame^] | 41 | extern long subarch_ptrace(struct task_struct *child, long request, |
| 42 | unsigned long addr, unsigned long data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | extern unsigned long getreg(struct task_struct *child, int regno); |
| 44 | extern int putreg(struct task_struct *child, int regno, unsigned long value); |
Jeff Dike | e8012b5 | 2007-10-16 01:27:16 -0700 | [diff] [blame] | 45 | extern int get_fpregs(struct user_i387_struct __user *buf, |
| 46 | struct task_struct *child); |
| 47 | extern int set_fpregs(struct user_i387_struct __user *buf, |
| 48 | struct task_struct *child); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | |
| 50 | extern void show_regs(struct pt_regs *regs); |
| 51 | |
Paolo 'Blaisorblade' Giarrusso | aa6758d | 2006-03-31 02:30:22 -0800 | [diff] [blame] | 52 | extern int arch_copy_tls(struct task_struct *new); |
| 53 | extern void clear_flushed_tls(struct task_struct *task); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 54 | |
| 55 | #endif |
| 56 | |
Paolo 'Blaisorblade' Giarrusso | aa6758d | 2006-03-31 02:30:22 -0800 | [diff] [blame] | 57 | #endif |