1 /* Motorola m68k native support for GNU/Linux.
3 Copyright (C) 1996, 1998, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007
4 Free Software Foundation, Inc.
6 This file is part of GDB.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 51 Franklin Street, Fifth Floor,
21 Boston, MA 02110-1301, USA. */
28 #include "gdb_string.h"
31 #include "linux-nat.h"
33 #include "m68k-tdep.h"
35 #include <sys/param.h>
38 #include <sys/ptrace.h>
40 #include <sys/ioctl.h>
42 #include <sys/procfs.h>
51 #include "floatformat.h"
55 /* Prototypes for supply_gregset etc. */
58 /* This table must line up with REGISTER_NAME in "m68k-tdep.c". */
59 static const int regmap[] =
61 PT_D0, PT_D1, PT_D2, PT_D3, PT_D4, PT_D5, PT_D6, PT_D7,
62 PT_A0, PT_A1, PT_A2, PT_A3, PT_A4, PT_A5, PT_A6, PT_USP,
64 /* PT_FP0, ..., PT_FP7 */
65 21, 24, 27, 30, 33, 36, 39, 42,
66 /* PT_FPCR, PT_FPSR, PT_FPIAR */
70 /* Which ptrace request retrieves which registers?
71 These apply to the corresponding SET requests as well. */
72 #define NUM_GREGS (18)
73 #define MAX_NUM_REGS (NUM_GREGS + 11)
76 getregs_supplies (int regno)
78 return 0 <= regno && regno < NUM_GREGS;
82 getfpregs_supplies (int regno)
84 return FP0_REGNUM <= regno && regno <= M68K_FPI_REGNUM;
87 /* Does the current host support the GETREGS request? */
88 int have_ptrace_getregs =
89 #ifdef HAVE_PTRACE_GETREGS
98 /* Fetching registers directly from the U area, one at a time. */
100 /* FIXME: This duplicates code from `inptrace.c'. The problem is that we
101 define FETCH_INFERIOR_REGISTERS since we want to use our own versions
102 of {fetch,store}_inferior_registers that use the GETREGS request. This
103 means that the code in `infptrace.c' is #ifdef'd out. But we need to
104 fall back on that code when GDB is running on top of a kernel that
105 doesn't support the GETREGS request. */
108 #define PT_READ_U PTRACE_PEEKUSR
111 #define PT_WRITE_U PTRACE_POKEUSR
114 /* Fetch one register. */
117 fetch_register (int regno)
119 /* This isn't really an address. But ptrace thinks of it as one. */
121 char mess[128]; /* For messages */
123 char buf[MAX_REGISTER_SIZE];
126 if (CANNOT_FETCH_REGISTER (regno))
128 memset (buf, '\0', register_size (current_gdbarch, regno)); /* Supply zeroes */
129 regcache_raw_supply (current_regcache, regno, buf);
133 /* Overload thread id onto process id */
134 tid = TIDGET (inferior_ptid);
136 tid = PIDGET (inferior_ptid); /* no thread id, just use process id */
138 regaddr = 4 * regmap[regno];
139 for (i = 0; i < register_size (current_gdbarch, regno);
140 i += sizeof (PTRACE_TYPE_RET))
143 *(PTRACE_TYPE_RET *) &buf[i] = ptrace (PT_READ_U, tid,
144 (PTRACE_TYPE_ARG3) regaddr, 0);
145 regaddr += sizeof (PTRACE_TYPE_RET);
148 sprintf (mess, "reading register %s (#%d)",
149 REGISTER_NAME (regno), regno);
150 perror_with_name (mess);
153 regcache_raw_supply (current_regcache, regno, buf);
156 /* Fetch register values from the inferior.
157 If REGNO is negative, do this for all registers.
158 Otherwise, REGNO specifies which register (so we can save time). */
161 old_fetch_inferior_registers (int regno)
165 fetch_register (regno);
169 for (regno = 0; regno < NUM_REGS; regno++)
171 fetch_register (regno);
176 /* Store one register. */
179 store_register (int regno)
181 /* This isn't really an address. But ptrace thinks of it as one. */
183 char mess[128]; /* For messages */
186 char buf[MAX_REGISTER_SIZE];
188 if (CANNOT_STORE_REGISTER (regno))
193 /* Overload thread id onto process id */
194 tid = TIDGET (inferior_ptid);
196 tid = PIDGET (inferior_ptid); /* no thread id, just use process id */
198 regaddr = 4 * regmap[regno];
200 /* Put the contents of regno into a local buffer */
201 regcache_raw_collect (current_regcache, regno, buf);
203 /* Store the local buffer into the inferior a chunk at the time. */
204 for (i = 0; i < register_size (current_gdbarch, regno);
205 i += sizeof (PTRACE_TYPE_RET))
208 ptrace (PT_WRITE_U, tid, (PTRACE_TYPE_ARG3) regaddr,
209 *(PTRACE_TYPE_RET *) (buf + i));
210 regaddr += sizeof (PTRACE_TYPE_RET);
213 sprintf (mess, "writing register %s (#%d)",
214 REGISTER_NAME (regno), regno);
215 perror_with_name (mess);
220 /* Store our register values back into the inferior.
221 If REGNO is negative, do this for all registers.
222 Otherwise, REGNO specifies which register (so we can save time). */
225 old_store_inferior_registers (int regno)
229 store_register (regno);
233 for (regno = 0; regno < NUM_REGS; regno++)
235 store_register (regno);
240 /* Given a pointer to a general register set in /proc format
241 (elf_gregset_t *), unpack the register contents and supply
242 them as gdb's idea of the current register values. */
245 supply_gregset (elf_gregset_t *gregsetp)
247 elf_greg_t *regp = (elf_greg_t *) gregsetp;
250 for (regi = M68K_D0_REGNUM; regi <= SP_REGNUM; regi++)
251 regcache_raw_supply (current_regcache, regi, (char *) ®p[regmap[regi]]);
252 regcache_raw_supply (current_regcache, PS_REGNUM, (char *) ®p[PT_SR]);
253 regcache_raw_supply (current_regcache, PC_REGNUM, (char *) ®p[PT_PC]);
256 /* Fill register REGNO (if it is a general-purpose register) in
257 *GREGSETPS with the value in GDB's register array. If REGNO is -1,
258 do this for all registers. */
260 fill_gregset (elf_gregset_t *gregsetp, int regno)
262 elf_greg_t *regp = (elf_greg_t *) gregsetp;
265 for (i = 0; i < NUM_GREGS; i++)
266 if (regno == -1 || regno == i)
267 regcache_raw_collect (current_regcache, i, regp + regmap[i]);
270 #ifdef HAVE_PTRACE_GETREGS
272 /* Fetch all general-purpose registers from process/thread TID and
273 store their values in GDB's register array. */
280 if (ptrace (PTRACE_GETREGS, tid, 0, (int) ®s) < 0)
284 /* The kernel we're running on doesn't support the GETREGS
285 request. Reset `have_ptrace_getregs'. */
286 have_ptrace_getregs = 0;
290 perror_with_name (_("Couldn't get registers"));
293 supply_gregset (®s);
296 /* Store all valid general-purpose registers in GDB's register array
297 into the process/thread specified by TID. */
300 store_regs (int tid, int regno)
304 if (ptrace (PTRACE_GETREGS, tid, 0, (int) ®s) < 0)
305 perror_with_name (_("Couldn't get registers"));
307 fill_gregset (®s, regno);
309 if (ptrace (PTRACE_SETREGS, tid, 0, (int) ®s) < 0)
310 perror_with_name (_("Couldn't write registers"));
315 static void fetch_regs (int tid) {}
316 static void store_regs (int tid, int regno) {}
321 /* Transfering floating-point registers between GDB, inferiors and cores. */
323 /* What is the address of fpN within the floating-point register set F? */
324 #define FPREG_ADDR(f, n) ((char *) &(f)->fpregs[(n) * 3])
326 /* Fill GDB's register array with the floating-point register values in
330 supply_fpregset (elf_fpregset_t *fpregsetp)
334 for (regi = FP0_REGNUM; regi < FP0_REGNUM + 8; regi++)
335 regcache_raw_supply (current_regcache, regi,
336 FPREG_ADDR (fpregsetp, regi - FP0_REGNUM));
337 regcache_raw_supply (current_regcache, M68K_FPC_REGNUM,
338 (char *) &fpregsetp->fpcntl[0]);
339 regcache_raw_supply (current_regcache, M68K_FPS_REGNUM,
340 (char *) &fpregsetp->fpcntl[1]);
341 regcache_raw_supply (current_regcache, M68K_FPI_REGNUM,
342 (char *) &fpregsetp->fpcntl[2]);
345 /* Fill register REGNO (if it is a floating-point register) in
346 *FPREGSETP with the value in GDB's register array. If REGNO is -1,
347 do this for all registers. */
350 fill_fpregset (elf_fpregset_t *fpregsetp, int regno)
354 /* Fill in the floating-point registers. */
355 for (i = FP0_REGNUM; i < FP0_REGNUM + 8; i++)
356 if (regno == -1 || regno == i)
357 regcache_raw_collect (current_regcache, i,
358 FPREG_ADDR (fpregsetp, i - FP0_REGNUM));
360 /* Fill in the floating-point control registers. */
361 for (i = M68K_FPC_REGNUM; i <= M68K_FPI_REGNUM; i++)
362 if (regno == -1 || regno == i)
363 regcache_raw_collect (current_regcache, i,
364 (char *) &fpregsetp->fpcntl[i - M68K_FPC_REGNUM]);
367 #ifdef HAVE_PTRACE_GETREGS
369 /* Fetch all floating-point registers from process/thread TID and store
370 thier values in GDB's register array. */
373 fetch_fpregs (int tid)
375 elf_fpregset_t fpregs;
377 if (ptrace (PTRACE_GETFPREGS, tid, 0, (int) &fpregs) < 0)
378 perror_with_name (_("Couldn't get floating point status"));
380 supply_fpregset (&fpregs);
383 /* Store all valid floating-point registers in GDB's register array
384 into the process/thread specified by TID. */
387 store_fpregs (int tid, int regno)
389 elf_fpregset_t fpregs;
391 if (ptrace (PTRACE_GETFPREGS, tid, 0, (int) &fpregs) < 0)
392 perror_with_name (_("Couldn't get floating point status"));
394 fill_fpregset (&fpregs, regno);
396 if (ptrace (PTRACE_SETFPREGS, tid, 0, (int) &fpregs) < 0)
397 perror_with_name (_("Couldn't write floating point status"));
402 static void fetch_fpregs (int tid) {}
403 static void store_fpregs (int tid, int regno) {}
407 /* Transferring arbitrary registers between GDB and inferior. */
409 /* Fetch register REGNO from the child process. If REGNO is -1, do
410 this for all registers (including the floating point and SSE
414 m68k_linux_fetch_inferior_registers (int regno)
418 /* Use the old method of peeking around in `struct user' if the
419 GETREGS request isn't available. */
420 if (! have_ptrace_getregs)
422 old_fetch_inferior_registers (regno);
426 /* GNU/Linux LWP ID's are process ID's. */
427 tid = TIDGET (inferior_ptid);
429 tid = PIDGET (inferior_ptid); /* Not a threaded program. */
431 /* Use the PTRACE_GETFPXREGS request whenever possible, since it
432 transfers more registers in one system call, and we'll cache the
433 results. But remember that fetch_fpxregs can fail, and return
439 /* The call above might reset `have_ptrace_getregs'. */
440 if (! have_ptrace_getregs)
442 old_fetch_inferior_registers (-1);
450 if (getregs_supplies (regno))
456 if (getfpregs_supplies (regno))
462 internal_error (__FILE__, __LINE__,
463 _("Got request for bad register number %d."), regno);
466 /* Store register REGNO back into the child process. If REGNO is -1,
467 do this for all registers (including the floating point and SSE
470 m68k_linux_store_inferior_registers (int regno)
474 /* Use the old method of poking around in `struct user' if the
475 SETREGS request isn't available. */
476 if (! have_ptrace_getregs)
478 old_store_inferior_registers (regno);
482 /* GNU/Linux LWP ID's are process ID's. */
483 tid = TIDGET (inferior_ptid);
485 tid = PIDGET (inferior_ptid); /* Not a threaded program. */
487 /* Use the PTRACE_SETFPREGS requests whenever possible, since it
488 transfers more registers in one system call. But remember that
489 store_fpregs can fail, and return zero. */
492 store_regs (tid, regno);
493 store_fpregs (tid, regno);
497 if (getregs_supplies (regno))
499 store_regs (tid, regno);
503 if (getfpregs_supplies (regno))
505 store_fpregs (tid, regno);
509 internal_error (__FILE__, __LINE__,
510 _("Got request to store bad register number %d."), regno);
513 /* Interpreting register set info found in core files. */
515 /* Provide registers to GDB from a core file.
517 (We can't use the generic version of this function in
518 core-regset.c, because we need to use elf_gregset_t instead of
521 CORE_REG_SECT points to an array of bytes, which are the contents
522 of a `note' from a core file which BFD thinks might contain
523 register contents. CORE_REG_SIZE is its size.
525 WHICH says which register set corelow suspects this is:
526 0 --- the general-purpose register set, in elf_gregset_t format
527 2 --- the floating-point register set, in elf_fpregset_t format
529 REG_ADDR isn't used on GNU/Linux. */
532 fetch_core_registers (char *core_reg_sect, unsigned core_reg_size,
533 int which, CORE_ADDR reg_addr)
535 elf_gregset_t gregset;
536 elf_fpregset_t fpregset;
541 if (core_reg_size != sizeof (gregset))
542 warning (_("Wrong size gregset in core file."));
545 memcpy (&gregset, core_reg_sect, sizeof (gregset));
546 supply_gregset (&gregset);
551 if (core_reg_size != sizeof (fpregset))
552 warning (_("Wrong size fpregset in core file."));
555 memcpy (&fpregset, core_reg_sect, sizeof (fpregset));
556 supply_fpregset (&fpregset);
561 /* We've covered all the kinds of registers we know about here,
562 so this must be something we wouldn't know what to do with
563 anyway. Just ignore it. */
569 /* Register that we are able to handle GNU/Linux ELF core file
572 static struct core_fns linux_elf_core_fns =
574 bfd_target_elf_flavour, /* core_flavour */
575 default_check_format, /* check_format */
576 default_core_sniffer, /* core_sniffer */
577 fetch_core_registers, /* core_read_registers */
581 void _initialize_m68k_linux_nat (void);
584 _initialize_m68k_linux_nat (void)
586 struct target_ops *t;
588 /* Fill in the generic GNU/Linux methods. */
591 /* Add our register access methods. */
592 t->to_fetch_registers = m68k_linux_fetch_inferior_registers;
593 t->to_store_registers = m68k_linux_store_inferior_registers;
595 /* Register the target. */
596 linux_nat_add_target (t);
598 deprecated_add_core_fns (&linux_elf_core_fns);