1 /* GNU/Linux/CRIS specific low level interface, for the remote server for GDB.
2 Copyright (C) 1995-2014 Free Software Foundation, Inc.
4 This file is part of GDB.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>. */
20 #include "linux-low.h"
21 #include <sys/ptrace.h>
23 /* Defined in auto-generated file reg-crisv32.c. */
24 void init_registers_crisv32 (void);
25 extern const struct target_desc *tdesc_crisv32;
28 #define cris_num_regs 49
30 #ifndef PTRACE_GET_THREAD_AREA
31 #define PTRACE_GET_THREAD_AREA 25
34 /* Note: Ignoring USP (having the stack pointer in two locations causes trouble
35 without any significant gain). */
37 /* Locations need to match <include/asm/arch/ptrace.h>. */
38 static int cris_regmap[] = {
41 9*4, 10*4, 11*4, 12*4,
42 13*4, 14*4, 24*4, 15*4,
52 30*4, 31*4, 32*4, 33*4,
53 34*4, 35*4, 36*4, 37*4,
58 extern int debug_threads;
61 cris_get_pc (struct regcache *regcache)
64 collect_register_by_name (regcache, "pc", &pc);
66 debug_printf ("stop pc is %08lx\n", pc);
71 cris_set_pc (struct regcache *regcache, CORE_ADDR pc)
73 unsigned long newpc = pc;
74 supply_register_by_name (regcache, "pc", &newpc);
77 static const unsigned short cris_breakpoint = 0xe938;
78 #define cris_breakpoint_len 2
81 cris_breakpoint_at (CORE_ADDR where)
85 (*the_target->read_memory) (where, (unsigned char *) &insn,
87 if (insn == cris_breakpoint)
90 /* If necessary, recognize more trap instructions here. GDB only uses the
95 /* We only place breakpoints in empty marker functions, and thread locking
96 is outside of the function. So rather than importing software single-step,
97 we can just run until exit. */
99 /* FIXME: This function should not be needed, since we have PTRACE_SINGLESTEP
100 for CRISv32. Without it, td_ta_event_getmsg in thread_db_create_event
101 will fail when debugging multi-threaded applications. */
104 cris_reinsert_addr (void)
106 struct regcache *regcache = get_thread_regcache (current_thread, 1);
108 collect_register_by_name (regcache, "srp", &pc);
113 cris_write_data_breakpoint (struct regcache *regcache,
114 int bp, unsigned long start, unsigned long end)
119 supply_register_by_name (regcache, "s3", &start);
120 supply_register_by_name (regcache, "s4", &end);
123 supply_register_by_name (regcache, "s5", &start);
124 supply_register_by_name (regcache, "s6", &end);
127 supply_register_by_name (regcache, "s7", &start);
128 supply_register_by_name (regcache, "s8", &end);
131 supply_register_by_name (regcache, "s9", &start);
132 supply_register_by_name (regcache, "s10", &end);
135 supply_register_by_name (regcache, "s11", &start);
136 supply_register_by_name (regcache, "s12", &end);
139 supply_register_by_name (regcache, "s13", &start);
140 supply_register_by_name (regcache, "s14", &end);
146 cris_supports_z_point_type (char z_type)
150 case Z_PACKET_WRITE_WP:
151 case Z_PACKET_READ_WP:
152 case Z_PACKET_ACCESS_WP:
160 cris_insert_point (enum raw_bkpt_type type, CORE_ADDR addr,
161 int len, struct raw_breakpoint *bp)
164 unsigned long bp_ctrl;
165 unsigned long start, end;
167 struct regcache *regcache;
169 regcache = get_thread_regcache (current_thread, 1);
171 /* Read watchpoints are set as access watchpoints, because of GDB's
172 inability to deal with pure read watchpoints. */
173 if (type == raw_bkpt_type_read_wp)
174 type = raw_bkpt_type_access_wp;
176 /* Get the configuration register. */
177 collect_register_by_name (regcache, "s0", &bp_ctrl);
179 /* The watchpoint allocation scheme is the simplest possible.
180 For example, if a region is watched for read and
181 a write watch is requested, a new watchpoint will
182 be used. Also, if a watch for a region that is already
183 covered by one or more existing watchpoints, a new
184 watchpoint will be used. */
186 /* First, find a free data watchpoint. */
187 for (bp = 0; bp < 6; bp++)
189 /* Each data watchpoint's control registers occupy 2 bits
190 (hence the 3), starting at bit 2 for D0 (hence the 2)
191 with 4 bits between for each watchpoint (yes, the 4). */
192 if (!(bp_ctrl & (0x3 << (2 + (bp * 4)))))
198 /* We're out of watchpoints. */
202 /* Configure the control register first. */
203 if (type == raw_bkpt_type_read_wp || type == raw_bkpt_type_access_wp)
205 /* Trigger on read. */
206 bp_ctrl |= (1 << (2 + bp * 4));
208 if (type == raw_bkpt_type_write_wp || type == raw_bkpt_type_access_wp)
210 /* Trigger on write. */
211 bp_ctrl |= (2 << (2 + bp * 4));
214 /* Setup the configuration register. */
215 supply_register_by_name (regcache, "s0", &bp_ctrl);
217 /* Setup the range. */
219 end = addr + len - 1;
221 /* Configure the watchpoint register. */
222 cris_write_data_breakpoint (regcache, bp, start, end);
224 collect_register_by_name (regcache, "ccs", &ccs);
225 /* Set the S1 flag to enable watchpoints. */
227 supply_register_by_name (regcache, "ccs", &ccs);
233 cris_remove_point (enum raw_bkpt_type type, CORE_ADDR addr, int len,
234 struct raw_breakpoint *bp)
237 unsigned long bp_ctrl;
238 unsigned long start, end;
239 struct regcache *regcache;
240 unsigned long bp_d_regs[12];
242 regcache = get_thread_regcache (current_thread, 1);
244 /* Read watchpoints are set as access watchpoints, because of GDB's
245 inability to deal with pure read watchpoints. */
246 if (type == raw_bkpt_type_read_wp)
247 type = raw_bkpt_type_access_wp;
249 /* Get the configuration register. */
250 collect_register_by_name (regcache, "s0", &bp_ctrl);
252 /* Try to find a watchpoint that is configured for the
253 specified range, then check that read/write also matches. */
255 /* Ugly pointer arithmetic, since I cannot rely on a
256 single switch (addr) as there may be several watchpoints with
257 the same start address for example. */
259 /* Get all range registers to simplify search. */
260 collect_register_by_name (regcache, "s3", &bp_d_regs[0]);
261 collect_register_by_name (regcache, "s4", &bp_d_regs[1]);
262 collect_register_by_name (regcache, "s5", &bp_d_regs[2]);
263 collect_register_by_name (regcache, "s6", &bp_d_regs[3]);
264 collect_register_by_name (regcache, "s7", &bp_d_regs[4]);
265 collect_register_by_name (regcache, "s8", &bp_d_regs[5]);
266 collect_register_by_name (regcache, "s9", &bp_d_regs[6]);
267 collect_register_by_name (regcache, "s10", &bp_d_regs[7]);
268 collect_register_by_name (regcache, "s11", &bp_d_regs[8]);
269 collect_register_by_name (regcache, "s12", &bp_d_regs[9]);
270 collect_register_by_name (regcache, "s13", &bp_d_regs[10]);
271 collect_register_by_name (regcache, "s14", &bp_d_regs[11]);
273 for (bp = 0; bp < 6; bp++)
275 if (bp_d_regs[bp * 2] == addr
276 && bp_d_regs[bp * 2 + 1] == (addr + len - 1)) {
277 /* Matching range. */
278 int bitpos = 2 + bp * 4;
281 /* Read/write bits for this BP. */
282 rw_bits = (bp_ctrl & (0x3 << bitpos)) >> bitpos;
284 if ((type == raw_bkpt_type_read_wp && rw_bits == 0x1)
285 || (type == raw_bkpt_type_write_wp && rw_bits == 0x2)
286 || (type == raw_bkpt_type_access_wp && rw_bits == 0x3))
288 /* Read/write matched. */
296 /* No watchpoint matched. */
300 /* Found a matching watchpoint. Now, deconfigure it by
301 both disabling read/write in bp_ctrl and zeroing its
302 start/end addresses. */
303 bp_ctrl &= ~(3 << (2 + (bp * 4)));
304 /* Setup the configuration register. */
305 supply_register_by_name (regcache, "s0", &bp_ctrl);
308 /* Configure the watchpoint register. */
309 cris_write_data_breakpoint (regcache, bp, start, end);
311 /* Note that we don't clear the S1 flag here. It's done when continuing. */
316 cris_stopped_by_watchpoint (void)
319 struct regcache *regcache = get_thread_regcache (current_thread, 1);
321 collect_register_by_name (regcache, "exs", &exs);
323 return (((exs & 0xff00) >> 8) == 0xc);
327 cris_stopped_data_address (void)
330 struct regcache *regcache = get_thread_regcache (current_thread, 1);
332 collect_register_by_name (regcache, "eda", &eda);
334 /* FIXME: Possibly adjust to match watched range. */
339 ps_get_thread_area (const struct ps_prochandle *ph,
340 lwpid_t lwpid, int idx, void **base)
342 if (ptrace (PTRACE_GET_THREAD_AREA, lwpid, NULL, base) != 0)
345 /* IDX is the bias from the thread pointer to the beginning of the
346 thread descriptor. It has to be subtracted due to implementation
347 quirks in libthread_db. */
348 *base = (void *) ((char *) *base - idx);
353 cris_fill_gregset (struct regcache *regcache, void *buf)
357 for (i = 0; i < cris_num_regs; i++)
359 if (cris_regmap[i] != -1)
360 collect_register (regcache, i, ((char *) buf) + cris_regmap[i]);
365 cris_store_gregset (struct regcache *regcache, const void *buf)
369 for (i = 0; i < cris_num_regs; i++)
371 if (cris_regmap[i] != -1)
372 supply_register (regcache, i, ((char *) buf) + cris_regmap[i]);
377 cris_arch_setup (void)
379 current_process ()->tdesc = tdesc_crisv32;
382 static struct regset_info cris_regsets[] = {
383 { PTRACE_GETREGS, PTRACE_SETREGS, 0, cris_num_regs * 4,
384 GENERAL_REGS, cris_fill_gregset, cris_store_gregset },
385 { 0, 0, 0, -1, -1, NULL, NULL }
389 static struct regsets_info cris_regsets_info =
391 cris_regsets, /* regsets */
393 NULL, /* disabled_regsets */
396 static struct usrregs_info cris_usrregs_info =
402 static struct regs_info regs_info =
404 NULL, /* regset_bitmap */
409 static const struct regs_info *
410 cris_regs_info (void)
415 struct linux_target_ops the_low_target = {
420 NULL, /* fetch_register */
423 (const unsigned char *) &cris_breakpoint,
428 cris_supports_z_point_type,
431 cris_stopped_by_watchpoint,
432 cris_stopped_data_address,
436 initialize_low_arch (void)
438 init_registers_crisv32 ();
440 initialize_regsets_info (&cris_regsets_info);