2 * ptrace cpu depend helper functions
4 * Copyright 2003, 2015 Yoshinori Sato <ysato@users.sourceforge.jp>
6 * This file is subject to the terms and conditions of the GNU General
7 * Public License. See the file COPYING in the main directory of
8 * this archive for more details.
11 #include <linux/linkage.h>
12 #include <linux/sched/signal.h>
13 #include <asm/ptrace.h>
15 #define BREAKINST 0x5730 /* trapa #3 */
17 /* disable singlestep */
18 void user_disable_single_step(struct task_struct
*child
)
20 if ((long)child
->thread
.breakinfo
.addr
!= -1L) {
21 *(child
->thread
.breakinfo
.addr
) = child
->thread
.breakinfo
.inst
;
22 child
->thread
.breakinfo
.addr
= (unsigned short *)-1L;
26 /* calculate next pc */
27 enum jump_type
{none
, /* normal instruction */
28 jabs
, /* absolute address jump */
29 ind
, /* indirect address jump */
30 ret
, /* return to subrutine */
31 reg
, /* register indexed jump */
32 relb
, /* pc relative jump (byte offset) */
33 relw
, /* pc relative jump (word offset) */
36 /* opcode decode table define
39 len: instruction length (<0 next table index)
40 jmp: jump operation mode */
42 unsigned char bitpattern
;
43 unsigned char bitmask
;
46 } __packed
__aligned(1);
48 #define OPTABLE(ptn, msk, len, jmp) \
56 static const struct optable optable_0
[] = {
57 OPTABLE(0x00, 0xff, 1, none
), /* 0x00 */
58 OPTABLE(0x01, 0xff, -1, none
), /* 0x01 */
59 OPTABLE(0x02, 0xfe, 1, none
), /* 0x02-0x03 */
60 OPTABLE(0x04, 0xee, 1, none
), /* 0x04-0x05/0x14-0x15 */
61 OPTABLE(0x06, 0xfe, 1, none
), /* 0x06-0x07 */
62 OPTABLE(0x08, 0xea, 1, none
), /* 0x08-0x09/0x0c-0x0d/0x18-0x19/0x1c-0x1d */
63 OPTABLE(0x0a, 0xee, 1, none
), /* 0x0a-0x0b/0x1a-0x1b */
64 OPTABLE(0x0e, 0xee, 1, none
), /* 0x0e-0x0f/0x1e-0x1f */
65 OPTABLE(0x10, 0xfc, 1, none
), /* 0x10-0x13 */
66 OPTABLE(0x16, 0xfe, 1, none
), /* 0x16-0x17 */
67 OPTABLE(0x20, 0xe0, 1, none
), /* 0x20-0x3f */
68 OPTABLE(0x40, 0xf0, 1, relb
), /* 0x40-0x4f */
69 OPTABLE(0x50, 0xfc, 1, none
), /* 0x50-0x53 */
70 OPTABLE(0x54, 0xfd, 1, ret
), /* 0x54/0x56 */
71 OPTABLE(0x55, 0xff, 1, relb
), /* 0x55 */
72 OPTABLE(0x57, 0xff, 1, none
), /* 0x57 */
73 OPTABLE(0x58, 0xfb, 2, relw
), /* 0x58/0x5c */
74 OPTABLE(0x59, 0xfb, 1, reg
), /* 0x59/0x5b */
75 OPTABLE(0x5a, 0xfb, 2, jabs
), /* 0x5a/0x5e */
76 OPTABLE(0x5b, 0xfb, 2, ind
), /* 0x5b/0x5f */
77 OPTABLE(0x60, 0xe8, 1, none
), /* 0x60-0x67/0x70-0x77 */
78 OPTABLE(0x68, 0xfa, 1, none
), /* 0x68-0x69/0x6c-0x6d */
79 OPTABLE(0x6a, 0xfe, -2, none
), /* 0x6a-0x6b */
80 OPTABLE(0x6e, 0xfe, 2, none
), /* 0x6e-0x6f */
81 OPTABLE(0x78, 0xff, 4, none
), /* 0x78 */
82 OPTABLE(0x79, 0xff, 2, none
), /* 0x79 */
83 OPTABLE(0x7a, 0xff, 3, none
), /* 0x7a */
84 OPTABLE(0x7b, 0xff, 2, none
), /* 0x7b */
85 OPTABLE(0x7c, 0xfc, 2, none
), /* 0x7c-0x7f */
86 OPTABLE(0x80, 0x80, 1, none
), /* 0x80-0xff */
89 static const struct optable optable_1
[] = {
90 OPTABLE(0x00, 0xff, -3, none
), /* 0x0100 */
91 OPTABLE(0x40, 0xf0, -3, none
), /* 0x0140-0x14f */
92 OPTABLE(0x80, 0xf0, 1, none
), /* 0x0180-0x018f */
93 OPTABLE(0xc0, 0xc0, 2, none
), /* 0x01c0-0x01ff */
96 static const struct optable optable_2
[] = {
97 OPTABLE(0x00, 0x20, 2, none
), /* 0x6a0?/0x6a8?/0x6b0?/0x6b8? */
98 OPTABLE(0x20, 0x20, 3, none
), /* 0x6a2?/0x6aa?/0x6b2?/0x6ba? */
101 static const struct optable optable_3
[] = {
102 OPTABLE(0x69, 0xfb, 2, none
), /* 0x010069/0x01006d/014069/0x01406d */
103 OPTABLE(0x6b, 0xff, -4, none
), /* 0x01006b/0x01406b */
104 OPTABLE(0x6f, 0xff, 3, none
), /* 0x01006f/0x01406f */
105 OPTABLE(0x78, 0xff, 5, none
), /* 0x010078/0x014078 */
108 static const struct optable optable_4
[] = {
109 /* 0x0100690?/0x01006d0?/0140690?/0x01406d0?/
110 0x0100698?/0x01006d8?/0140698?/0x01406d8? */
111 OPTABLE(0x00, 0x78, 3, none
),
112 /* 0x0100692?/0x01006d2?/0140692?/0x01406d2?/
113 0x010069a?/0x01006da?/014069a?/0x01406da? */
114 OPTABLE(0x20, 0x78, 4, none
),
117 static const struct optables_list
{
118 const struct optable
*ptr
;
121 #define OPTABLES(no) \
123 .ptr = optable_##no, \
124 .size = sizeof(optable_##no) / sizeof(struct optable), \
134 const unsigned char condmask
[] = {
135 0x00, 0x40, 0x01, 0x04, 0x02, 0x08, 0x10, 0x20
138 static int isbranch(struct task_struct
*task
, int reson
)
140 unsigned char cond
= h8300_get_reg(task
, PT_CCR
);
142 /* encode complex conditions */
146 __asm__("bld #3,%w0\n\t"
154 : "=&r"(cond
) : "0"(cond
) : "cc");
155 cond
&= condmask
[reson
>> 1];
162 static unsigned short *decode(struct task_struct
*child
,
163 const struct optable
*op
,
164 char *fetch_p
, unsigned short *pc
,
173 return (unsigned short *)pc
+ op
->length
;
175 addr
= *(unsigned long *)pc
;
176 return (unsigned short *)(addr
& 0x00ffffff);
179 return (unsigned short *)(*(unsigned long *)addr
);
181 sp
= (unsigned long *)h8300_get_reg(child
, PT_USP
);
183 | er0 | temporary saved
185 | exp | exception stack frames
187 | ret pc | userspace return address
189 return (unsigned short *)(*(sp
+2) & 0x00ffffff);
191 regno
= (*pc
>> 4) & 0x07;
193 addr
= h8300_get_reg(child
, PT_ER0
);
195 addr
= h8300_get_reg(child
, regno
-1 + PT_ER1
);
196 return (unsigned short *)addr
;
198 if (inst
== 0x55 || isbranch(child
, inst
& 0x0f))
199 pc
= (unsigned short *)((unsigned long)pc
+
200 ((signed char)(*fetch_p
)));
201 return pc
+1; /* skip myself */
203 if (inst
== 0x5c || isbranch(child
, (*fetch_p
& 0xf0) >> 4))
204 pc
= (unsigned short *)((unsigned long)pc
+
205 ((signed short)(*(pc
+1))));
206 return pc
+2; /* skip myself */
212 static unsigned short *nextpc(struct task_struct
*child
, unsigned short *pc
)
214 const struct optable
*op
;
215 unsigned char *fetch_p
;
219 op
= optables
[0].ptr
;
220 op_len
= optables
[0].size
;
221 fetch_p
= (unsigned char *)pc
;
224 if ((inst
& op
->bitmask
) == op
->bitpattern
) {
225 if (op
->length
< 0) {
226 op
= optables
[-op
->length
].ptr
;
227 op_len
= optables
[-op
->length
].size
+ 1;
230 return decode(child
, op
, fetch_p
, pc
, inst
);
233 } while (--op_len
> 0);
237 /* Set breakpoint(s) to simulate a single step from the current PC. */
239 void user_enable_single_step(struct task_struct
*child
)
241 unsigned short *next
;
243 next
= nextpc(child
, (unsigned short *)h8300_get_reg(child
, PT_PC
));
244 child
->thread
.breakinfo
.addr
= next
;
245 child
->thread
.breakinfo
.inst
= *next
;
249 asmlinkage
void trace_trap(unsigned long bp
)
251 if ((unsigned long)current
->thread
.breakinfo
.addr
== bp
) {
252 user_disable_single_step(current
);
253 force_sig(SIGTRAP
, current
);
255 force_sig(SIGILL
, current
);