blob: 503484305e6771552f3d993db812d94ab25b7043 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (C) 2000, 2001, 2002 Jeff Dike (jdike@karaya.com)
3 * Licensed under the GPL
4 */
5
6#ifndef __UM_PTRACE_GENERIC_H
7#define __UM_PTRACE_GENERIC_H
8
9#ifndef __ASSEMBLY__
10
11#include "linux/config.h"
12
13#define pt_regs pt_regs_subarch
14#define show_regs show_regs_subarch
15#define send_sigtrap send_sigtrap_subarch
16
17#include "asm/arch/ptrace.h"
18
19#undef pt_regs
20#undef show_regs
21#undef send_sigtrap
22#undef user_mode
23#undef instruction_pointer
24
25#include "sysdep/ptrace.h"
26
27struct pt_regs {
28 union uml_pt_regs regs;
29};
30
Al Viro4d338e12006-03-31 02:30:15 -080031#define EMPTY_REGS { .regs = EMPTY_UML_PT_REGS }
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33#define PT_REGS_IP(r) UPT_IP(&(r)->regs)
34#define PT_REGS_SP(r) UPT_SP(&(r)->regs)
35
36#define PT_REG(r, reg) UPT_REG(&(r)->regs, reg)
37#define PT_REGS_SET(r, reg, val) UPT_SET(&(r)->regs, reg, val)
38
39#define PT_REGS_SET_SYSCALL_RETURN(r, res) \
40 UPT_SET_SYSCALL_RETURN(&(r)->regs, res)
41#define PT_REGS_RESTART_SYSCALL(r) UPT_RESTART_SYSCALL(&(r)->regs)
42
43#define PT_REGS_SYSCALL_NR(r) UPT_SYSCALL_NR(&(r)->regs)
44
45#define PT_REGS_SC(r) UPT_SC(&(r)->regs)
46
47#define instruction_pointer(regs) PT_REGS_IP(regs)
48
49struct task_struct;
50
51extern unsigned long getreg(struct task_struct *child, int regno);
52extern int putreg(struct task_struct *child, int regno, unsigned long value);
53extern int get_fpregs(unsigned long buf, struct task_struct *child);
54extern int set_fpregs(unsigned long buf, struct task_struct *child);
55extern int get_fpxregs(unsigned long buf, struct task_struct *child);
56extern int set_fpxregs(unsigned long buf, struct task_struct *tsk);
57
58extern void show_regs(struct pt_regs *regs);
59
60extern void send_sigtrap(struct task_struct *tsk, union uml_pt_regs *regs,
61 int error_code);
62
Paolo 'Blaisorblade' Giarrussoaa6758d2006-03-31 02:30:22 -080063extern int arch_copy_tls(struct task_struct *new);
64extern void clear_flushed_tls(struct task_struct *task);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065
66#endif
67
Paolo 'Blaisorblade' Giarrussoaa6758d2006-03-31 02:30:22 -080068#endif