blob: f6edc10aa0d338e2041de62d4359f03c85662596 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef __ASM_SH_PTRACE_H
2#define __ASM_SH_PTRACE_H
3
Linus Torvalds1da177e2005-04-16 15:20:36 -07004/*
5 * Copyright (C) 1999, 2000 Niibe Yutaka
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07007
Paul Mundt934135c2008-09-12 19:52:36 +09008#define PTRACE_GETREGS 12 /* General registers */
9#define PTRACE_SETREGS 13
10
11#define PTRACE_GETFPREGS 14 /* FPU registers */
12#define PTRACE_SETFPREGS 15
13
Paul Mundt3bc24a12008-05-19 13:40:12 +090014#define PTRACE_GETFDPIC 31 /* get the ELF fdpic loadmap address */
15
16#define PTRACE_GETFDPIC_EXEC 0 /* [addr] request the executable loadmap */
17#define PTRACE_GETFDPIC_INTERP 1 /* [addr] request the interpreter loadmap */
18
Paul Mundt934135c2008-09-12 19:52:36 +090019#define PTRACE_GETDSPREGS 55 /* DSP registers */
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#define PTRACE_SETDSPREGS 56
21
Paul Mundtb0f3ae02010-02-12 15:40:00 +090022#define PT_TEXT_END_ADDR 240
23#define PT_TEXT_ADDR 244 /* &(struct user)->start_code */
24#define PT_DATA_ADDR 248 /* &(struct user)->start_data */
Kieran Binghambe6514c2009-05-08 15:48:15 +010025#define PT_TEXT_LEN 252
26
Paul Mundtda28c592010-06-14 16:02:47 +090027#if defined(__SH5__) || defined(CONFIG_CPU_SH5)
28#include "ptrace_64.h"
29#else
30#include "ptrace_32.h"
31#endif
32
Linus Torvalds1da177e2005-04-16 15:20:36 -070033#ifdef __KERNEL__
Paul Mundtda28c592010-06-14 16:02:47 +090034
35#include <linux/stringify.h>
36#include <linux/stddef.h>
37#include <linux/thread_info.h>
Paul Mundt33f242e2007-11-09 16:57:27 +090038#include <asm/addrspace.h>
Paul Mundtb0f3ae02010-02-12 15:40:00 +090039#include <asm/page.h>
40#include <asm/system.h>
Paul Mundt33f242e2007-11-09 16:57:27 +090041
42#define user_mode(regs) (((regs)->sr & 0x40000000)==0)
Paul Mundteaaaeef2010-06-14 15:16:53 +090043#define user_stack_pointer(regs) ((unsigned long)(regs)->regs[15])
44#define kernel_stack_pointer(regs) ((unsigned long)(regs)->regs[15])
Paul Mundt5a4f7c62007-11-20 18:08:06 +090045#define instruction_pointer(regs) ((unsigned long)(regs)->pc)
Paul Mundt33f242e2007-11-09 16:57:27 +090046
Linus Torvalds1da177e2005-04-16 15:20:36 -070047extern void show_regs(struct pt_regs *);
48
Paul Mundtc459dbf2008-07-30 19:09:31 +090049#define arch_has_single_step() (1)
Paul Mundtc459dbf2008-07-30 19:09:31 +090050
Paul Mundteaaaeef2010-06-14 15:16:53 +090051/*
52 * kprobe-based event tracer support
53 */
Paul Mundteaaaeef2010-06-14 15:16:53 +090054struct pt_regs_offset {
55 const char *name;
56 int offset;
57};
58
59#define REG_OFFSET_NAME(r) {.name = #r, .offset = offsetof(struct pt_regs, r)}
60#define REGS_OFFSET_NAME(num) \
61 {.name = __stringify(r##num), .offset = offsetof(struct pt_regs, regs[num])}
Paul Mundtda28c592010-06-14 16:02:47 +090062#define TREGS_OFFSET_NAME(num) \
63 {.name = __stringify(tr##num), .offset = offsetof(struct pt_regs, tregs[num])}
Paul Mundteaaaeef2010-06-14 15:16:53 +090064#define REG_OFFSET_END {.name = NULL, .offset = 0}
65
66/* Query offset/name of register from its name/offset */
67extern int regs_query_register_offset(const char *name);
68extern const char *regs_query_register_name(unsigned int offset);
69
70extern const struct pt_regs_offset regoffset_table[];
71
72/**
73 * regs_get_register() - get register value from its offset
74 * @regs: pt_regs from which register value is gotten.
75 * @offset: offset number of the register.
76 *
77 * regs_get_register returns the value of a register. The @offset is the
78 * offset of the register in struct pt_regs address which specified by @regs.
79 * If @offset is bigger than MAX_REG_OFFSET, this returns 0.
80 */
81static inline unsigned long regs_get_register(struct pt_regs *regs,
82 unsigned int offset)
83{
84 if (unlikely(offset > MAX_REG_OFFSET))
85 return 0;
86 return *(unsigned long *)((unsigned long)regs + offset);
87}
88
89/**
90 * regs_within_kernel_stack() - check the address in the stack
91 * @regs: pt_regs which contains kernel stack pointer.
92 * @addr: address which is checked.
93 *
94 * regs_within_kernel_stack() checks @addr is within the kernel stack page(s).
95 * If @addr is within the kernel stack, it returns true. If not, returns false.
96 */
97static inline int regs_within_kernel_stack(struct pt_regs *regs,
98 unsigned long addr)
99{
100 return ((addr & ~(THREAD_SIZE - 1)) ==
101 (kernel_stack_pointer(regs) & ~(THREAD_SIZE - 1)));
102}
103
104/**
105 * regs_get_kernel_stack_nth() - get Nth entry of the stack
106 * @regs: pt_regs which contains kernel stack pointer.
107 * @n: stack entry number.
108 *
109 * regs_get_kernel_stack_nth() returns @n th entry of the kernel stack which
110 * is specified by @regs. If the @n th entry is NOT in the kernel stack,
111 * this returns 0.
112 */
113static inline unsigned long regs_get_kernel_stack_nth(struct pt_regs *regs,
114 unsigned int n)
115{
116 unsigned long *addr = (unsigned long *)kernel_stack_pointer(regs);
117 addr += n;
118 if (regs_within_kernel_stack(regs, (unsigned long)addr))
119 return *addr;
120 else
121 return 0;
122}
123
Paul Mundt34d0b5a2009-12-28 17:53:47 +0900124struct perf_event;
125struct perf_sample_data;
126
127extern void ptrace_triggered(struct perf_event *bp, int nmi,
128 struct perf_sample_data *data, struct pt_regs *regs);
129
Al Viro3cf0f4e2006-01-12 01:05:44 -0800130#define task_pt_regs(task) \
Magnus Damm4f099eb2009-02-23 07:16:34 +0000131 ((struct pt_regs *) (task_stack_page(task) + THREAD_SIZE) - 1)
Al Viro3cf0f4e2006-01-12 01:05:44 -0800132
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133static inline unsigned long profile_pc(struct pt_regs *regs)
134{
135 unsigned long pc = instruction_pointer(regs);
136
Paul Mundt9edef282010-02-17 16:28:00 +0900137 if (virt_addr_uncached(pc))
138 return CAC_ADDR(pc);
Paul Mundt33f242e2007-11-09 16:57:27 +0900139
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 return pc;
141}
Paul Mundt33f242e2007-11-09 16:57:27 +0900142#endif /* __KERNEL__ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
144#endif /* __ASM_SH_PTRACE_H */