diff options
Diffstat (limited to 'arch/sh/include/asm/kprobes.h')
-rw-r--r-- | arch/sh/include/asm/kprobes.h | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/arch/sh/include/asm/kprobes.h b/arch/sh/include/asm/kprobes.h new file mode 100644 index 000000000000..70fc629df904 --- /dev/null +++ b/arch/sh/include/asm/kprobes.h | |||
@@ -0,0 +1,59 @@ | |||
1 | #ifndef __ASM_SH_KPROBES_H | ||
2 | #define __ASM_SH_KPROBES_H | ||
3 | |||
4 | #ifdef CONFIG_KPROBES | ||
5 | |||
6 | #include <linux/types.h> | ||
7 | #include <linux/ptrace.h> | ||
8 | |||
9 | struct pt_regs; | ||
10 | |||
11 | typedef u16 kprobe_opcode_t; | ||
12 | #define BREAKPOINT_INSTRUCTION 0xc3ff | ||
13 | |||
14 | #define MAX_INSN_SIZE 16 | ||
15 | #define MAX_STACK_SIZE 64 | ||
16 | #define MIN_STACK_SIZE(ADDR) (((MAX_STACK_SIZE) < \ | ||
17 | (((unsigned long)current_thread_info()) + THREAD_SIZE - (ADDR))) \ | ||
18 | ? (MAX_STACK_SIZE) \ | ||
19 | : (((unsigned long)current_thread_info()) + THREAD_SIZE - (ADDR))) | ||
20 | |||
21 | #define regs_return_value(regs) ((regs)->regs[0]) | ||
22 | #define flush_insn_slot(p) do { } while (0) | ||
23 | #define kretprobe_blacklist_size 0 | ||
24 | |||
25 | struct kprobe; | ||
26 | |||
27 | void arch_remove_kprobe(struct kprobe *); | ||
28 | void kretprobe_trampoline(void); | ||
29 | void jprobe_return_end(void); | ||
30 | |||
31 | /* Architecture specific copy of original instruction*/ | ||
32 | struct arch_specific_insn { | ||
33 | /* copy of the original instruction */ | ||
34 | kprobe_opcode_t insn[MAX_INSN_SIZE]; | ||
35 | }; | ||
36 | |||
37 | struct prev_kprobe { | ||
38 | struct kprobe *kp; | ||
39 | unsigned long status; | ||
40 | }; | ||
41 | |||
42 | /* per-cpu kprobe control block */ | ||
43 | struct kprobe_ctlblk { | ||
44 | unsigned long kprobe_status; | ||
45 | unsigned long jprobe_saved_r15; | ||
46 | struct pt_regs jprobe_saved_regs; | ||
47 | kprobe_opcode_t jprobes_stack[MAX_STACK_SIZE]; | ||
48 | struct prev_kprobe prev_kprobe; | ||
49 | }; | ||
50 | |||
51 | extern int kprobe_exceptions_notify(struct notifier_block *self, | ||
52 | unsigned long val, void *data); | ||
53 | extern int kprobe_handle_illslot(unsigned long pc); | ||
54 | #else | ||
55 | |||
56 | #define kprobe_handle_illslot(pc) (-1) | ||
57 | |||
58 | #endif /* CONFIG_KPROBES */ | ||
59 | #endif /* __ASM_SH_KPROBES_H */ | ||