daily update
[deliverable/binutils-gdb.git] / gdb / rs6000-nat.c
CommitLineData
c906108c 1/* IBM RS/6000 native-dependent code for GDB, the GNU debugger.
b6ba6518 2 Copyright 1986, 1987, 1989, 1991, 1992, 1993, 1994, 1995, 1996, 1997,
19caaa45 3 1998, 1999, 2000, 2001, 2002
c5aa993b 4 Free Software Foundation, Inc.
c906108c 5
c5aa993b 6 This file is part of GDB.
c906108c 7
c5aa993b
JM
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.
c906108c 12
c5aa993b
JM
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.
c906108c 17
c5aa993b
JM
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., 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA. */
c906108c
SS
22
23#include "defs.h"
24#include "inferior.h"
25#include "target.h"
26#include "gdbcore.h"
27#include "xcoffsolib.h"
28#include "symfile.h"
29#include "objfiles.h"
c5aa993b 30#include "libbfd.h" /* For bfd_cache_lookup (FIXME) */
c906108c
SS
31#include "bfd.h"
32#include "gdb-stabs.h"
4e052eda 33#include "regcache.h"
19caaa45 34#include "arch-utils.h"
dd7be90a 35#include "language.h" /* for local_hex_string(). */
11bf77db 36#include "ppc-tdep.h"
c906108c
SS
37
38#include <sys/ptrace.h>
39#include <sys/reg.h>
40
41#include <sys/param.h>
42#include <sys/dir.h>
43#include <sys/user.h>
44#include <signal.h>
45#include <sys/ioctl.h>
46#include <fcntl.h>
7a78ae4e 47#include <errno.h>
c906108c
SS
48
49#include <a.out.h>
50#include <sys/file.h>
51#include "gdb_stat.h"
52#include <sys/core.h>
7a78ae4e
ND
53#define __LDINFO_PTRACE32__ /* for __ld_info32 */
54#define __LDINFO_PTRACE64__ /* for __ld_info64 */
c906108c 55#include <sys/ldr.h>
7a78ae4e 56#include <sys/systemcfg.h>
c906108c 57
7a78ae4e
ND
58/* On AIX4.3+, sys/ldr.h provides different versions of struct ld_info for
59 debugging 32-bit and 64-bit processes. Define a typedef and macros for
60 accessing fields in the appropriate structures. */
61
62/* In 32-bit compilation mode (which is the only mode from which ptrace()
63 works on 4.3), __ld_info32 is #defined as equivalent to ld_info. */
64
65#ifdef __ld_info32
66# define ARCH3264
67#endif
68
69/* Return whether the current architecture is 64-bit. */
70
71#ifndef ARCH3264
72# define ARCH64() 0
73#else
74# define ARCH64() (REGISTER_RAW_SIZE (0) == 8)
75#endif
76
77/* Union of 32-bit and 64-bit ".reg" core file sections. */
78
79typedef union {
80#ifdef ARCH3264
81 struct __context64 r64;
82#else
83 struct mstsave r64;
84#endif
85 struct mstsave r32;
86} CoreRegs;
87
88/* Union of 32-bit and 64-bit versions of ld_info. */
89
90typedef union {
91#ifndef ARCH3264
92 struct ld_info l32;
93 struct ld_info l64;
94#else
95 struct __ld_info32 l32;
96 struct __ld_info64 l64;
97#endif
98} LdInfo;
99
100/* If compiling with 32-bit and 64-bit debugging capability (e.g. AIX 4.x),
101 declare and initialize a variable named VAR suitable for use as the arch64
102 parameter to the various LDI_*() macros. */
103
104#ifndef ARCH3264
105# define ARCH64_DECL(var)
106#else
107# define ARCH64_DECL(var) int var = ARCH64 ()
108#endif
109
110/* Return LDI's FIELD for a 64-bit process if ARCH64 and for a 32-bit process
111 otherwise. This technique only works for FIELDs with the same data type in
112 32-bit and 64-bit versions of ld_info. */
113
114#ifndef ARCH3264
115# define LDI_FIELD(ldi, arch64, field) (ldi)->l32.ldinfo_##field
116#else
117# define LDI_FIELD(ldi, arch64, field) \
118 (arch64 ? (ldi)->l64.ldinfo_##field : (ldi)->l32.ldinfo_##field)
119#endif
120
121/* Return various LDI fields for a 64-bit process if ARCH64 and for a 32-bit
122 process otherwise. */
123
124#define LDI_NEXT(ldi, arch64) LDI_FIELD(ldi, arch64, next)
125#define LDI_FD(ldi, arch64) LDI_FIELD(ldi, arch64, fd)
126#define LDI_FILENAME(ldi, arch64) LDI_FIELD(ldi, arch64, filename)
c906108c 127
a14ed312 128extern struct vmap *map_vmap (bfd * bf, bfd * arch);
c906108c
SS
129
130extern struct target_ops exec_ops;
131
a14ed312 132static void vmap_exec (void);
c906108c 133
7a78ae4e 134static void vmap_ldinfo (LdInfo *);
c906108c 135
7a78ae4e 136static struct vmap *add_vmap (LdInfo *);
c906108c 137
7a78ae4e 138static int objfile_symbol_add (void *);
c906108c 139
a14ed312 140static void vmap_symtab (struct vmap *);
c906108c 141
a14ed312 142static void fetch_core_registers (char *, unsigned int, int, CORE_ADDR);
c906108c 143
a14ed312 144static void exec_one_dummy_insn (void);
c906108c
SS
145
146extern void
a14ed312 147fixup_breakpoints (CORE_ADDR low, CORE_ADDR high, CORE_ADDR delta);
c906108c 148
dd7be90a
KB
149/* Given REGNO, a gdb register number, return the corresponding
150 number suitable for use as a ptrace() parameter. Return -1 if
151 there's no suitable mapping. Also, set the int pointed to by
152 ISFLOAT to indicate whether REGNO is a floating point register. */
c906108c 153
dd7be90a
KB
154static int
155regmap (int regno, int *isfloat)
c5aa993b 156{
dd7be90a
KB
157 struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
158
159 *isfloat = 0;
160 if (tdep->ppc_gp0_regnum <= regno && regno <= tdep->ppc_gplast_regnum)
161 return regno;
162 else if (FP0_REGNUM <= regno && regno <= FPLAST_REGNUM)
163 {
164 *isfloat = 1;
165 return regno - FP0_REGNUM + FPR0;
166 }
167 else if (regno == PC_REGNUM)
168 return IAR;
169 else if (regno == tdep->ppc_ps_regnum)
170 return MSR;
171 else if (regno == tdep->ppc_cr_regnum)
172 return CR;
173 else if (regno == tdep->ppc_lr_regnum)
174 return LR;
175 else if (regno == tdep->ppc_ctr_regnum)
176 return CTR;
177 else if (regno == tdep->ppc_xer_regnum)
178 return XER;
0e061eef
KB
179 else if (regno == tdep->ppc_fpscr_regnum)
180 return FPSCR;
dd7be90a
KB
181 else if (tdep->ppc_mq_regnum >= 0 && regno == tdep->ppc_mq_regnum)
182 return MQ;
183 else
184 return -1;
185}
c906108c 186
7a78ae4e 187/* Call ptrace(REQ, ID, ADDR, DATA, BUF). */
c906108c 188
7a78ae4e 189static int
8b5790f2 190rs6000_ptrace32 (int req, int id, int *addr, int data, int *buf)
7a78ae4e
ND
191{
192 int ret = ptrace (req, id, (int *)addr, data, buf);
193#if 0
8b5790f2 194 printf ("rs6000_ptrace32 (%d, %d, 0x%x, %08x, 0x%x) = 0x%x\n",
7a78ae4e
ND
195 req, id, (unsigned int)addr, data, (unsigned int)buf, ret);
196#endif
197 return ret;
198}
c906108c 199
7a78ae4e 200/* Call ptracex(REQ, ID, ADDR, DATA, BUF). */
c906108c 201
7a78ae4e 202static int
8b5790f2 203rs6000_ptrace64 (int req, int id, long long addr, int data, int *buf)
7a78ae4e
ND
204{
205#ifdef ARCH3264
206 int ret = ptracex (req, id, addr, data, buf);
207#else
208 int ret = 0;
209#endif
210#if 0
8b5790f2 211 printf ("rs6000_ptrace64 (%d, %d, 0x%llx, %08x, 0x%x) = 0x%x\n",
7a78ae4e
ND
212 req, id, addr, data, (unsigned int)buf, ret);
213#endif
214 return ret;
215}
c906108c 216
7a78ae4e 217/* Fetch register REGNO from the inferior. */
c906108c 218
7a78ae4e
ND
219static void
220fetch_register (int regno)
221{
11bf77db 222 int *addr = alloca (MAX_REGISTER_RAW_SIZE);
dd7be90a 223 int nr, isfloat;
c906108c 224
7a78ae4e
ND
225 /* Retrieved values may be -1, so infer errors from errno. */
226 errno = 0;
c906108c 227
dd7be90a
KB
228 nr = regmap (regno, &isfloat);
229
7a78ae4e 230 /* Floating-point registers. */
dd7be90a
KB
231 if (isfloat)
232 rs6000_ptrace32 (PT_READ_FPR, PIDGET (inferior_ptid), addr, nr, 0);
c906108c 233
7a78ae4e 234 /* Bogus register number. */
dd7be90a 235 else if (nr < 0)
2a18e3d9
EZ
236 {
237 if (regno >= NUM_REGS)
238 fprintf_unfiltered (gdb_stderr,
239 "gdb error: register no %d not implemented.\n",
240 regno);
dd7be90a 241 return;
2a18e3d9 242 }
c906108c 243
7a78ae4e
ND
244 /* Fixed-point registers. */
245 else
246 {
7a78ae4e 247 if (!ARCH64 ())
8b5790f2 248 *addr = rs6000_ptrace32 (PT_READ_GPR, PIDGET (inferior_ptid), (int *)nr, 0, 0);
7a78ae4e
ND
249 else
250 {
251 /* PT_READ_GPR requires the buffer parameter to point to long long,
252 even if the register is really only 32 bits. */
253 long long buf;
8b5790f2 254 rs6000_ptrace64 (PT_READ_GPR, PIDGET (inferior_ptid), nr, 0, (int *)&buf);
7a78ae4e
ND
255 if (REGISTER_RAW_SIZE (regno) == 8)
256 memcpy (addr, &buf, 8);
257 else
258 *addr = buf;
259 }
260 }
261
262 if (!errno)
11bf77db 263 supply_register (regno, (char *) addr);
7a78ae4e
ND
264 else
265 {
266#if 0
267 /* FIXME: this happens 3 times at the start of each 64-bit program. */
268 perror ("ptrace read");
269#endif
270 errno = 0;
271 }
c906108c
SS
272}
273
7a78ae4e 274/* Store register REGNO back into the inferior. */
c906108c 275
7a78ae4e
ND
276static void
277store_register (int regno)
c906108c 278{
11bf77db 279 int *addr = alloca (MAX_REGISTER_RAW_SIZE);
dd7be90a 280 int nr, isfloat;
c906108c 281
11bf77db
KB
282 /* Fetch the register's value from the register cache. */
283 regcache_collect (regno, addr);
284
7a78ae4e 285 /* -1 can be a successful return value, so infer errors from errno. */
c906108c
SS
286 errno = 0;
287
dd7be90a
KB
288 nr = regmap (regno, &isfloat);
289
7a78ae4e 290 /* Floating-point registers. */
dd7be90a
KB
291 if (isfloat)
292 rs6000_ptrace32 (PT_WRITE_FPR, PIDGET (inferior_ptid), addr, nr, 0);
c906108c 293
7a78ae4e 294 /* Bogus register number. */
dd7be90a 295 else if (nr < 0)
7a78ae4e
ND
296 {
297 if (regno >= NUM_REGS)
298 fprintf_unfiltered (gdb_stderr,
299 "gdb error: register no %d not implemented.\n",
300 regno);
301 }
c906108c 302
7a78ae4e
ND
303 /* Fixed-point registers. */
304 else
305 {
306 if (regno == SP_REGNUM)
307 /* Execute one dummy instruction (which is a breakpoint) in inferior
308 process to give kernel a chance to do internal housekeeping.
309 Otherwise the following ptrace(2) calls will mess up user stack
310 since kernel will get confused about the bottom of the stack
311 (%sp). */
312 exec_one_dummy_insn ();
c906108c 313
11bf77db
KB
314 /* The PT_WRITE_GPR operation is rather odd. For 32-bit inferiors,
315 the register's value is passed by value, but for 64-bit inferiors,
316 the address of a buffer containing the value is passed. */
7a78ae4e 317 if (!ARCH64 ())
8b5790f2 318 rs6000_ptrace32 (PT_WRITE_GPR, PIDGET (inferior_ptid), (int *)nr, *addr, 0);
7a78ae4e 319 else
c906108c 320 {
7a78ae4e
ND
321 /* PT_WRITE_GPR requires the buffer parameter to point to an 8-byte
322 area, even if the register is really only 32 bits. */
323 long long buf;
324 if (REGISTER_RAW_SIZE (regno) == 8)
325 memcpy (&buf, addr, 8);
326 else
327 buf = *addr;
8b5790f2 328 rs6000_ptrace64 (PT_WRITE_GPR, PIDGET (inferior_ptid), nr, 0, (int *)&buf);
c906108c
SS
329 }
330 }
331
7a78ae4e 332 if (errno)
c906108c 333 {
7a78ae4e
ND
334 perror ("ptrace write");
335 errno = 0;
c906108c 336 }
7a78ae4e 337}
c906108c 338
7a78ae4e
ND
339/* Read from the inferior all registers if REGNO == -1 and just register
340 REGNO otherwise. */
c906108c 341
7a78ae4e
ND
342void
343fetch_inferior_registers (int regno)
344{
345 if (regno != -1)
346 fetch_register (regno);
347
348 else
c906108c 349 {
dd7be90a 350 struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
7a78ae4e 351
dd7be90a
KB
352 /* Read 32 general purpose registers. */
353 for (regno = tdep->ppc_gp0_regnum;
354 regno <= tdep->ppc_gplast_regnum;
355 regno++)
356 {
357 fetch_register (regno);
358 }
359
360 /* Read general purpose floating point registers. */
7a78ae4e
ND
361 for (regno = FP0_REGNUM; regno <= FPLAST_REGNUM; regno++)
362 fetch_register (regno);
363
dd7be90a
KB
364 /* Read special registers. */
365 fetch_register (PC_REGNUM);
366 fetch_register (tdep->ppc_ps_regnum);
367 fetch_register (tdep->ppc_cr_regnum);
368 fetch_register (tdep->ppc_lr_regnum);
369 fetch_register (tdep->ppc_ctr_regnum);
370 fetch_register (tdep->ppc_xer_regnum);
0e061eef 371 fetch_register (tdep->ppc_fpscr_regnum);
dd7be90a
KB
372 if (tdep->ppc_mq_regnum >= 0)
373 fetch_register (tdep->ppc_mq_regnum);
c906108c 374 }
7a78ae4e 375}
c906108c 376
7a78ae4e
ND
377/* Store our register values back into the inferior.
378 If REGNO is -1, do this for all registers.
379 Otherwise, REGNO specifies which register (so we can save time). */
380
381void
382store_inferior_registers (int regno)
383{
384 if (regno != -1)
385 store_register (regno);
386
387 else
f6077098 388 {
dd7be90a
KB
389 struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
390
391 /* Write general purpose registers first. */
392 for (regno = tdep->ppc_gp0_regnum;
393 regno <= tdep->ppc_gplast_regnum;
394 regno++)
395 {
396 store_register (regno);
397 }
7a78ae4e 398
dd7be90a 399 /* Write floating point registers. */
7a78ae4e
ND
400 for (regno = FP0_REGNUM; regno <= FPLAST_REGNUM; regno++)
401 store_register (regno);
402
dd7be90a
KB
403 /* Write special registers. */
404 store_register (PC_REGNUM);
405 store_register (tdep->ppc_ps_regnum);
406 store_register (tdep->ppc_cr_regnum);
407 store_register (tdep->ppc_lr_regnum);
408 store_register (tdep->ppc_ctr_regnum);
409 store_register (tdep->ppc_xer_regnum);
0e061eef 410 store_register (tdep->ppc_fpscr_regnum);
dd7be90a
KB
411 if (tdep->ppc_mq_regnum >= 0)
412 store_register (tdep->ppc_mq_regnum);
f6077098 413 }
7a78ae4e 414}
f6077098 415
7a78ae4e
ND
416/* Store in *TO the 32-bit word at 32-bit-aligned ADDR in the child
417 process, which is 64-bit if ARCH64 and 32-bit otherwise. Return
418 success. */
419
420static int
421read_word (CORE_ADDR from, int *to, int arch64)
422{
423 /* Retrieved values may be -1, so infer errors from errno. */
424 errno = 0;
425
426 if (arch64)
8b5790f2 427 *to = rs6000_ptrace64 (PT_READ_I, PIDGET (inferior_ptid), from, 0, NULL);
c906108c 428 else
8b5790f2 429 *to = rs6000_ptrace32 (PT_READ_I, PIDGET (inferior_ptid), (int *)(long) from,
39f77062 430 0, NULL);
c906108c 431
7a78ae4e
ND
432 return !errno;
433}
434
435/* Copy LEN bytes to or from inferior's memory starting at MEMADDR
436 to debugger memory starting at MYADDR. Copy to inferior if
437 WRITE is nonzero.
438
439 Returns the length copied, which is either the LEN argument or zero.
440 This xfer function does not do partial moves, since child_ops
441 doesn't allow memory operations to cross below us in the target stack
442 anyway. */
443
444int
445child_xfer_memory (CORE_ADDR memaddr, char *myaddr, int len,
d737ece6
PS
446 int write, struct mem_attrib *attrib,
447 struct target_ops *target)
7a78ae4e
ND
448{
449 /* Round starting address down to 32-bit word boundary. */
450 int mask = sizeof (int) - 1;
451 CORE_ADDR addr = memaddr & ~(CORE_ADDR)mask;
452
453 /* Round ending address up to 32-bit word boundary. */
454 int count = ((memaddr + len - addr + mask) & ~(CORE_ADDR)mask)
455 / sizeof (int);
456
457 /* Allocate word transfer buffer. */
d33fc4e4
MS
458 /* FIXME (alloca): This code, cloned from infptrace.c, is unsafe
459 because it uses alloca to allocate a buffer of arbitrary size.
460 For very large xfers, this could crash GDB's stack. */
7a78ae4e
ND
461 int *buf = (int *) alloca (count * sizeof (int));
462
463 int arch64 = ARCH64 ();
464 int i;
465
466 if (!write)
c906108c 467 {
7a78ae4e
ND
468 /* Retrieve memory a word at a time. */
469 for (i = 0; i < count; i++, addr += sizeof (int))
470 {
471 if (!read_word (addr, buf + i, arch64))
472 return 0;
473 QUIT;
474 }
475
476 /* Copy memory to supplied buffer. */
477 addr -= count * sizeof (int);
478 memcpy (myaddr, (char *)buf + (memaddr - addr), len);
c906108c 479 }
7a78ae4e
ND
480 else
481 {
482 /* Fetch leading memory needed for alignment. */
483 if (addr < memaddr)
484 if (!read_word (addr, buf, arch64))
485 return 0;
486
487 /* Fetch trailing memory needed for alignment. */
488 if (addr + count * sizeof (int) > memaddr + len)
489 if (!read_word (addr, buf + count - 1, arch64))
490 return 0;
491
492 /* Copy supplied data into memory buffer. */
493 memcpy ((char *)buf + (memaddr - addr), myaddr, len);
494
495 /* Store memory one word at a time. */
496 for (i = 0, errno = 0; i < count; i++, addr += sizeof (int))
497 {
498 if (arch64)
8b5790f2 499 rs6000_ptrace64 (PT_WRITE_D, PIDGET (inferior_ptid), addr, buf[i], NULL);
7a78ae4e 500 else
8b5790f2 501 rs6000_ptrace32 (PT_WRITE_D, PIDGET (inferior_ptid), (int *)(long) addr,
7a78ae4e
ND
502 buf[i], NULL);
503
504 if (errno)
505 return 0;
506 QUIT;
507 }
508 }
509
510 return len;
c906108c
SS
511}
512
513/* Execute one dummy breakpoint instruction. This way we give the kernel
514 a chance to do some housekeeping and update inferior's internal data,
515 including u_area. */
516
517static void
7a78ae4e 518exec_one_dummy_insn (void)
c906108c
SS
519{
520#define DUMMY_INSN_ADDR (TEXT_SEGMENT_BASE)+0x200
521
c5aa993b 522 char shadow_contents[BREAKPOINT_MAX]; /* Stash old bkpt addr contents */
7a78ae4e 523 int ret, status, pid;
c906108c
SS
524 CORE_ADDR prev_pc;
525
526 /* We plant one dummy breakpoint into DUMMY_INSN_ADDR address. We
527 assume that this address will never be executed again by the real
528 code. */
529
530 target_insert_breakpoint (DUMMY_INSN_ADDR, shadow_contents);
531
c906108c
SS
532 /* You might think this could be done with a single ptrace call, and
533 you'd be correct for just about every platform I've ever worked
534 on. However, rs6000-ibm-aix4.1.3 seems to have screwed this up --
535 the inferior never hits the breakpoint (it's also worth noting
536 powerpc-ibm-aix4.1.3 works correctly). */
537 prev_pc = read_pc ();
538 write_pc (DUMMY_INSN_ADDR);
7a78ae4e 539 if (ARCH64 ())
8b5790f2 540 ret = rs6000_ptrace64 (PT_CONTINUE, PIDGET (inferior_ptid), 1, 0, NULL);
7a78ae4e 541 else
8b5790f2 542 ret = rs6000_ptrace32 (PT_CONTINUE, PIDGET (inferior_ptid), (int *)1, 0, NULL);
c906108c 543
7a78ae4e 544 if (ret != 0)
c906108c
SS
545 perror ("pt_continue");
546
c5aa993b
JM
547 do
548 {
549 pid = wait (&status);
550 }
39f77062 551 while (pid != PIDGET (inferior_ptid));
c5aa993b 552
c906108c
SS
553 write_pc (prev_pc);
554 target_remove_breakpoint (DUMMY_INSN_ADDR, shadow_contents);
555}
556
7a78ae4e
ND
557/* Fetch registers from the register section in core bfd. */
558
c906108c 559static void
7a78ae4e
ND
560fetch_core_registers (char *core_reg_sect, unsigned core_reg_size,
561 int which, CORE_ADDR reg_addr)
c906108c 562{
7a78ae4e 563 CoreRegs *regs;
11bf77db
KB
564 int regi;
565 struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
7a78ae4e
ND
566
567 if (which != 0)
c906108c 568 {
7a78ae4e
ND
569 fprintf_unfiltered
570 (gdb_stderr,
571 "Gdb error: unknown parameter to fetch_core_registers().\n");
572 return;
c906108c
SS
573 }
574
7a78ae4e 575 regs = (CoreRegs *) core_reg_sect;
c906108c 576
11bf77db 577 /* Put the register values from the core file section in the regcache. */
7a78ae4e 578
11bf77db 579 if (ARCH64 ())
7a78ae4e 580 {
11bf77db
KB
581 for (regi = 0; regi < 32; regi++)
582 supply_register (regi, (char *) &regs->r64.gpr[regi]);
583
584 for (regi = 0; regi < 32; regi++)
585 supply_register (FP0_REGNUM + regi, (char *) &regs->r64.fpr[regi]);
586
587 supply_register (PC_REGNUM, (char *) &regs->r64.iar);
588 supply_register (tdep->ppc_ps_regnum, (char *) &regs->r64.msr);
589 supply_register (tdep->ppc_cr_regnum, (char *) &regs->r64.cr);
590 supply_register (tdep->ppc_lr_regnum, (char *) &regs->r64.lr);
591 supply_register (tdep->ppc_ctr_regnum, (char *) &regs->r64.ctr);
592 supply_register (tdep->ppc_xer_regnum, (char *) &regs->r64.xer);
0e061eef 593 supply_register (tdep->ppc_fpscr_regnum, (char *) &regs->r64.fpscr);
7a78ae4e 594 }
c906108c 595 else
7a78ae4e 596 {
11bf77db
KB
597 for (regi = 0; regi < 32; regi++)
598 supply_register (regi, (char *) &regs->r32.gpr[regi]);
599
600 for (regi = 0; regi < 32; regi++)
601 supply_register (FP0_REGNUM + regi, (char *) &regs->r32.fpr[regi]);
602
603 supply_register (PC_REGNUM, (char *) &regs->r32.iar);
604 supply_register (tdep->ppc_ps_regnum, (char *) &regs->r32.msr);
605 supply_register (tdep->ppc_cr_regnum, (char *) &regs->r32.cr);
606 supply_register (tdep->ppc_lr_regnum, (char *) &regs->r32.lr);
607 supply_register (tdep->ppc_ctr_regnum, (char *) &regs->r32.ctr);
608 supply_register (tdep->ppc_xer_regnum, (char *) &regs->r32.xer);
0e061eef 609 supply_register (tdep->ppc_fpscr_regnum, (char *) &regs->r32.fpscr);
11bf77db
KB
610 if (tdep->ppc_mq_regnum >= 0)
611 supply_register (tdep->ppc_mq_regnum, (char *) &regs->r32.mq);
7a78ae4e 612 }
c906108c
SS
613}
614\f
7a78ae4e
ND
615
616/* Copy information about text and data sections from LDI to VP for a 64-bit
617 process if ARCH64 and for a 32-bit process otherwise. */
618
619static void
620vmap_secs (struct vmap *vp, LdInfo *ldi, int arch64)
621{
622 if (arch64)
623 {
624 vp->tstart = (CORE_ADDR) ldi->l64.ldinfo_textorg;
625 vp->tend = vp->tstart + ldi->l64.ldinfo_textsize;
626 vp->dstart = (CORE_ADDR) ldi->l64.ldinfo_dataorg;
627 vp->dend = vp->dstart + ldi->l64.ldinfo_datasize;
628 }
629 else
630 {
631 vp->tstart = (unsigned long) ldi->l32.ldinfo_textorg;
632 vp->tend = vp->tstart + ldi->l32.ldinfo_textsize;
633 vp->dstart = (unsigned long) ldi->l32.ldinfo_dataorg;
634 vp->dend = vp->dstart + ldi->l32.ldinfo_datasize;
635 }
636
637 /* The run time loader maps the file header in addition to the text
638 section and returns a pointer to the header in ldinfo_textorg.
639 Adjust the text start address to point to the real start address
640 of the text section. */
641 vp->tstart += vp->toffs;
642}
643
c906108c
SS
644/* handle symbol translation on vmapping */
645
646static void
7a78ae4e 647vmap_symtab (struct vmap *vp)
c906108c
SS
648{
649 register struct objfile *objfile;
650 struct section_offsets *new_offsets;
651 int i;
c5aa993b 652
c906108c
SS
653 objfile = vp->objfile;
654 if (objfile == NULL)
655 {
656 /* OK, it's not an objfile we opened ourselves.
c5aa993b
JM
657 Currently, that can only happen with the exec file, so
658 relocate the symbols for the symfile. */
c906108c
SS
659 if (symfile_objfile == NULL)
660 return;
661 objfile = symfile_objfile;
662 }
63f58cc5
PS
663 else if (!vp->loaded)
664 /* If symbols are not yet loaded, offsets are not yet valid. */
665 return;
c906108c 666
d4f3574e 667 new_offsets = (struct section_offsets *) alloca (SIZEOF_SECTION_OFFSETS);
c906108c
SS
668
669 for (i = 0; i < objfile->num_sections; ++i)
f0a58b0b 670 new_offsets->offsets[i] = ANOFFSET (objfile->section_offsets, i);
c5aa993b 671
c906108c
SS
672 /* The symbols in the object file are linked to the VMA of the section,
673 relocate them VMA relative. */
f0a58b0b
EZ
674 new_offsets->offsets[SECT_OFF_TEXT (objfile)] = vp->tstart - vp->tvma;
675 new_offsets->offsets[SECT_OFF_DATA (objfile)] = vp->dstart - vp->dvma;
676 new_offsets->offsets[SECT_OFF_BSS (objfile)] = vp->dstart - vp->dvma;
c906108c
SS
677
678 objfile_relocate (objfile, new_offsets);
679}
680\f
681/* Add symbols for an objfile. */
682
683static int
7a78ae4e 684objfile_symbol_add (void *arg)
c906108c
SS
685{
686 struct objfile *obj = (struct objfile *) arg;
687
2acceee2 688 syms_from_objfile (obj, NULL, 0, 0);
c906108c
SS
689 new_symfile_objfile (obj, 0, 0);
690 return 1;
691}
692
63f58cc5
PS
693/* Add symbols for a vmap. Return zero upon error. */
694
695int
696vmap_add_symbols (struct vmap *vp)
697{
698 if (catch_errors (objfile_symbol_add, vp->objfile,
699 "Error while reading shared library symbols:\n",
700 RETURN_MASK_ALL))
701 {
702 /* Note this is only done if symbol reading was successful. */
703 vp->loaded = 1;
704 vmap_symtab (vp);
705 return 1;
706 }
707 return 0;
708}
709
c906108c
SS
710/* Add a new vmap entry based on ldinfo() information.
711
712 If ldi->ldinfo_fd is not valid (e.g. this struct ld_info is from a
713 core file), the caller should set it to -1, and we will open the file.
714
715 Return the vmap new entry. */
716
717static struct vmap *
7a78ae4e 718add_vmap (LdInfo *ldi)
c906108c
SS
719{
720 bfd *abfd, *last;
7a78ae4e 721 register char *mem, *objname, *filename;
c906108c
SS
722 struct objfile *obj;
723 struct vmap *vp;
7a78ae4e
ND
724 int fd;
725 ARCH64_DECL (arch64);
c906108c
SS
726
727 /* This ldi structure was allocated using alloca() in
728 xcoff_relocate_symtab(). Now we need to have persistent object
729 and member names, so we should save them. */
730
7a78ae4e
ND
731 filename = LDI_FILENAME (ldi, arch64);
732 mem = filename + strlen (filename) + 1;
c906108c 733 mem = savestring (mem, strlen (mem));
7a78ae4e 734 objname = savestring (filename, strlen (filename));
c906108c 735
7a78ae4e
ND
736 fd = LDI_FD (ldi, arch64);
737 if (fd < 0)
c906108c
SS
738 /* Note that this opens it once for every member; a possible
739 enhancement would be to only open it once for every object. */
740 abfd = bfd_openr (objname, gnutarget);
741 else
7a78ae4e 742 abfd = bfd_fdopenr (objname, gnutarget, fd);
c906108c 743 if (!abfd)
63f58cc5
PS
744 {
745 warning ("Could not open `%s' as an executable file: %s",
746 objname, bfd_errmsg (bfd_get_error ()));
747 return NULL;
748 }
c906108c
SS
749
750 /* make sure we have an object file */
751
752 if (bfd_check_format (abfd, bfd_object))
753 vp = map_vmap (abfd, 0);
754
755 else if (bfd_check_format (abfd, bfd_archive))
756 {
757 last = 0;
758 /* FIXME??? am I tossing BFDs? bfd? */
759 while ((last = bfd_openr_next_archived_file (abfd, last)))
760 if (STREQ (mem, last->filename))
761 break;
762
763 if (!last)
764 {
63f58cc5 765 warning ("\"%s\": member \"%s\" missing.", objname, mem);
c906108c 766 bfd_close (abfd);
63f58cc5 767 return NULL;
c906108c
SS
768 }
769
c5aa993b 770 if (!bfd_check_format (last, bfd_object))
c906108c 771 {
63f58cc5
PS
772 warning ("\"%s\": member \"%s\" not in executable format: %s.",
773 objname, mem, bfd_errmsg (bfd_get_error ()));
774 bfd_close (last);
775 bfd_close (abfd);
776 return NULL;
c906108c
SS
777 }
778
779 vp = map_vmap (last, abfd);
780 }
781 else
782 {
63f58cc5
PS
783 warning ("\"%s\": not in executable format: %s.",
784 objname, bfd_errmsg (bfd_get_error ()));
c906108c 785 bfd_close (abfd);
63f58cc5 786 return NULL;
c906108c 787 }
2df3850c 788 obj = allocate_objfile (vp->bfd, 0);
c906108c
SS
789 vp->objfile = obj;
790
63f58cc5
PS
791 /* Always add symbols for the main objfile. */
792 if (vp == vmap || auto_solib_add)
793 vmap_add_symbols (vp);
c906108c
SS
794 return vp;
795}
796\f
797/* update VMAP info with ldinfo() information
798 Input is ptr to ldinfo() results. */
799
800static void
7a78ae4e 801vmap_ldinfo (LdInfo *ldi)
c906108c
SS
802{
803 struct stat ii, vi;
804 register struct vmap *vp;
805 int got_one, retried;
806 int got_exec_file = 0;
7a78ae4e
ND
807 uint next;
808 int arch64 = ARCH64 ();
c906108c
SS
809
810 /* For each *ldi, see if we have a corresponding *vp.
811 If so, update the mapping, and symbol table.
812 If not, add an entry and symbol table. */
813
c5aa993b
JM
814 do
815 {
7a78ae4e 816 char *name = LDI_FILENAME (ldi, arch64);
c5aa993b 817 char *memb = name + strlen (name) + 1;
7a78ae4e 818 int fd = LDI_FD (ldi, arch64);
c5aa993b
JM
819
820 retried = 0;
821
7a78ae4e 822 if (fstat (fd, &ii) < 0)
c5aa993b
JM
823 {
824 /* The kernel sets ld_info to -1, if the process is still using the
825 object, and the object is removed. Keep the symbol info for the
826 removed object and issue a warning. */
827 warning ("%s (fd=%d) has disappeared, keeping its symbols",
7a78ae4e 828 name, fd);
c906108c 829 continue;
c5aa993b
JM
830 }
831 retry:
832 for (got_one = 0, vp = vmap; vp; vp = vp->nxt)
833 {
834 struct objfile *objfile;
c906108c 835
c5aa993b
JM
836 /* First try to find a `vp', which is the same as in ldinfo.
837 If not the same, just continue and grep the next `vp'. If same,
838 relocate its tstart, tend, dstart, dend values. If no such `vp'
839 found, get out of this for loop, add this ldi entry as a new vmap
840 (add_vmap) and come back, find its `vp' and so on... */
841
842 /* The filenames are not always sufficient to match on. */
843
844 if ((name[0] == '/' && !STREQ (name, vp->name))
845 || (memb[0] && !STREQ (memb, vp->member)))
c906108c 846 continue;
c906108c 847
c5aa993b
JM
848 /* See if we are referring to the same file.
849 We have to check objfile->obfd, symfile.c:reread_symbols might
850 have updated the obfd after a change. */
851 objfile = vp->objfile == NULL ? symfile_objfile : vp->objfile;
852 if (objfile == NULL
853 || objfile->obfd == NULL
854 || bfd_stat (objfile->obfd, &vi) < 0)
855 {
856 warning ("Unable to stat %s, keeping its symbols", name);
857 continue;
858 }
c906108c 859
c5aa993b
JM
860 if (ii.st_dev != vi.st_dev || ii.st_ino != vi.st_ino)
861 continue;
c906108c 862
c5aa993b 863 if (!retried)
7a78ae4e 864 close (fd);
c906108c 865
c5aa993b 866 ++got_one;
c906108c 867
c5aa993b 868 /* Found a corresponding VMAP. Remap! */
c906108c 869
7a78ae4e 870 vmap_secs (vp, ldi, arch64);
c906108c 871
c5aa993b
JM
872 /* The objfile is only NULL for the exec file. */
873 if (vp->objfile == NULL)
874 got_exec_file = 1;
c906108c 875
c5aa993b
JM
876 /* relocate symbol table(s). */
877 vmap_symtab (vp);
c906108c 878
e42dc924
KB
879 /* Announce new object files. Doing this after symbol relocation
880 makes aix-thread.c's job easier. */
881 if (target_new_objfile_hook && vp->objfile)
882 target_new_objfile_hook (vp->objfile);
883
c5aa993b
JM
884 /* There may be more, so we don't break out of the loop. */
885 }
886
887 /* if there was no matching *vp, we must perforce create the sucker(s) */
888 if (!got_one && !retried)
889 {
890 add_vmap (ldi);
891 ++retried;
892 goto retry;
893 }
894 }
7a78ae4e
ND
895 while ((next = LDI_NEXT (ldi, arch64))
896 && (ldi = (void *) (next + (char *) ldi)));
c906108c
SS
897
898 /* If we don't find the symfile_objfile anywhere in the ldinfo, it
899 is unlikely that the symbol file is relocated to the proper
900 address. And we might have attached to a process which is
901 running a different copy of the same executable. */
902 if (symfile_objfile != NULL && !got_exec_file)
903 {
f5a96129 904 warning ("Symbol file %s\nis not mapped; discarding it.\n\
c906108c
SS
905If in fact that file has symbols which the mapped files listed by\n\
906\"info files\" lack, you can load symbols with the \"symbol-file\" or\n\
907\"add-symbol-file\" commands (note that you must take care of relocating\n\
f5a96129
AC
908symbols to the proper address).",
909 symfile_objfile->name);
c906108c
SS
910 free_objfile (symfile_objfile);
911 symfile_objfile = NULL;
912 }
913 breakpoint_re_set ();
914}
915\f
916/* As well as symbol tables, exec_sections need relocation. After
917 the inferior process' termination, there will be a relocated symbol
918 table exist with no corresponding inferior process. At that time, we
919 need to use `exec' bfd, rather than the inferior process's memory space
920 to look up symbols.
921
922 `exec_sections' need to be relocated only once, as long as the exec
923 file remains unchanged.
c5aa993b 924 */
c906108c
SS
925
926static void
7a78ae4e 927vmap_exec (void)
c906108c
SS
928{
929 static bfd *execbfd;
930 int i;
931
932 if (execbfd == exec_bfd)
933 return;
934
935 execbfd = exec_bfd;
936
937 if (!vmap || !exec_ops.to_sections)
938 error ("vmap_exec: vmap or exec_ops.to_sections == 0\n");
939
c5aa993b 940 for (i = 0; &exec_ops.to_sections[i] < exec_ops.to_sections_end; i++)
c906108c 941 {
c5aa993b 942 if (STREQ (".text", exec_ops.to_sections[i].the_bfd_section->name))
c906108c
SS
943 {
944 exec_ops.to_sections[i].addr += vmap->tstart - vmap->tvma;
945 exec_ops.to_sections[i].endaddr += vmap->tstart - vmap->tvma;
946 }
c5aa993b 947 else if (STREQ (".data", exec_ops.to_sections[i].the_bfd_section->name))
c906108c
SS
948 {
949 exec_ops.to_sections[i].addr += vmap->dstart - vmap->dvma;
950 exec_ops.to_sections[i].endaddr += vmap->dstart - vmap->dvma;
951 }
c5aa993b 952 else if (STREQ (".bss", exec_ops.to_sections[i].the_bfd_section->name))
c906108c
SS
953 {
954 exec_ops.to_sections[i].addr += vmap->dstart - vmap->dvma;
955 exec_ops.to_sections[i].endaddr += vmap->dstart - vmap->dvma;
956 }
957 }
958}
7a78ae4e
ND
959
960/* Set the current architecture from the host running GDB. Called when
961 starting a child process. */
962
963static void
964set_host_arch (int pid)
965{
966 enum bfd_architecture arch;
967 unsigned long mach;
968 bfd abfd;
969 struct gdbarch_info info;
970
971 if (__power_rs ())
972 {
973 arch = bfd_arch_rs6000;
974 mach = bfd_mach_rs6k;
975 }
976 else
977 {
978 arch = bfd_arch_powerpc;
979 mach = bfd_mach_ppc;
980 }
19caaa45
PS
981
982 /* FIXME: schauer/2002-02-25:
983 We don't know if we are executing a 32 or 64 bit executable,
984 and have no way to pass the proper word size to rs6000_gdbarch_init.
985 So we have to avoid switching to a new architecture, if the architecture
986 matches already.
987 Blindly calling rs6000_gdbarch_init used to work in older versions of
988 GDB, as rs6000_gdbarch_init incorrectly used the previous tdep to
989 determine the wordsize. */
990 if (exec_bfd)
991 {
992 const struct bfd_arch_info *exec_bfd_arch_info;
993
994 exec_bfd_arch_info = bfd_get_arch_info (exec_bfd);
995 if (arch == exec_bfd_arch_info->arch)
996 return;
997 }
998
7a78ae4e
ND
999 bfd_default_set_arch_mach (&abfd, arch, mach);
1000
fb6ecb0f 1001 gdbarch_info_init (&info);
7a78ae4e
ND
1002 info.bfd_arch_info = bfd_get_arch_info (&abfd);
1003
16f33e29
AC
1004 if (!gdbarch_update_p (info))
1005 {
8e65ff28
AC
1006 internal_error (__FILE__, __LINE__,
1007 "set_host_arch: failed to select architecture");
16f33e29 1008 }
7a78ae4e
ND
1009}
1010
c906108c 1011\f
c5aa993b 1012/* xcoff_relocate_symtab - hook for symbol table relocation.
c906108c
SS
1013 also reads shared libraries.. */
1014
1015void
7a78ae4e 1016xcoff_relocate_symtab (unsigned int pid)
c906108c 1017{
c18e0d23 1018 int load_segs = 64; /* number of load segments */
380b774b 1019 int rc;
7a78ae4e
ND
1020 LdInfo *ldi = NULL;
1021 int arch64 = ARCH64 ();
1022 int ldisize = arch64 ? sizeof (ldi->l64) : sizeof (ldi->l32);
1023 int size;
c906108c 1024
c18e0d23
GM
1025 do
1026 {
7a78ae4e 1027 size = load_segs * ldisize;
3a84337c 1028 ldi = (void *) xrealloc (ldi, size);
c906108c 1029
7a78ae4e 1030#if 0
380b774b
GM
1031 /* According to my humble theory, AIX has some timing problems and
1032 when the user stack grows, kernel doesn't update stack info in time
1033 and ptrace calls step on user stack. That is why we sleep here a
1034 little, and give kernel to update its internals. */
380b774b 1035 usleep (36000);
7a78ae4e
ND
1036#endif
1037
1038 if (arch64)
8b5790f2 1039 rc = rs6000_ptrace64 (PT_LDINFO, pid, (unsigned long) ldi, size, NULL);
7a78ae4e 1040 else
8b5790f2 1041 rc = rs6000_ptrace32 (PT_LDINFO, pid, (int *) ldi, size, NULL);
c906108c 1042
c18e0d23
GM
1043 if (rc == -1)
1044 {
380b774b
GM
1045 if (errno == ENOMEM)
1046 load_segs *= 2;
1047 else
1048 perror_with_name ("ptrace ldinfo");
c18e0d23
GM
1049 }
1050 else
1051 {
380b774b
GM
1052 vmap_ldinfo (ldi);
1053 vmap_exec (); /* relocate the exec and core sections as well. */
c18e0d23
GM
1054 }
1055 } while (rc == -1);
380b774b 1056 if (ldi)
b8c9b27d 1057 xfree (ldi);
c906108c
SS
1058}
1059\f
1060/* Core file stuff. */
1061
1062/* Relocate symtabs and read in shared library info, based on symbols
1063 from the core file. */
1064
1065void
7a78ae4e 1066xcoff_relocate_core (struct target_ops *target)
c906108c 1067{
c906108c
SS
1068 sec_ptr ldinfo_sec;
1069 int offset = 0;
7a78ae4e 1070 LdInfo *ldi;
c906108c 1071 struct vmap *vp;
7a78ae4e
ND
1072 int arch64 = ARCH64 ();
1073
1074 /* Size of a struct ld_info except for the variable-length filename. */
1075 int nonfilesz = (int)LDI_FILENAME ((LdInfo *)0, arch64);
c906108c
SS
1076
1077 /* Allocated size of buffer. */
7a78ae4e 1078 int buffer_size = nonfilesz;
c906108c
SS
1079 char *buffer = xmalloc (buffer_size);
1080 struct cleanup *old = make_cleanup (free_current_contents, &buffer);
c5aa993b 1081
c906108c
SS
1082 ldinfo_sec = bfd_get_section_by_name (core_bfd, ".ldinfo");
1083 if (ldinfo_sec == NULL)
1084 {
1085 bfd_err:
1086 fprintf_filtered (gdb_stderr, "Couldn't get ldinfo from core file: %s\n",
1087 bfd_errmsg (bfd_get_error ()));
1088 do_cleanups (old);
1089 return;
1090 }
1091 do
1092 {
1093 int i;
1094 int names_found = 0;
1095
1096 /* Read in everything but the name. */
1097 if (bfd_get_section_contents (core_bfd, ldinfo_sec, buffer,
7a78ae4e 1098 offset, nonfilesz) == 0)
c906108c
SS
1099 goto bfd_err;
1100
1101 /* Now the name. */
7a78ae4e 1102 i = nonfilesz;
c906108c
SS
1103 do
1104 {
1105 if (i == buffer_size)
1106 {
1107 buffer_size *= 2;
1108 buffer = xrealloc (buffer, buffer_size);
1109 }
1110 if (bfd_get_section_contents (core_bfd, ldinfo_sec, &buffer[i],
1111 offset + i, 1) == 0)
1112 goto bfd_err;
1113 if (buffer[i++] == '\0')
1114 ++names_found;
c5aa993b
JM
1115 }
1116 while (names_found < 2);
c906108c 1117
7a78ae4e 1118 ldi = (LdInfo *) buffer;
c906108c
SS
1119
1120 /* Can't use a file descriptor from the core file; need to open it. */
7a78ae4e
ND
1121 if (arch64)
1122 ldi->l64.ldinfo_fd = -1;
1123 else
1124 ldi->l32.ldinfo_fd = -1;
c5aa993b 1125
c906108c 1126 /* The first ldinfo is for the exec file, allocated elsewhere. */
63f58cc5 1127 if (offset == 0 && vmap != NULL)
c906108c
SS
1128 vp = vmap;
1129 else
7a78ae4e 1130 vp = add_vmap (ldi);
c906108c 1131
63f58cc5 1132 /* Process next shared library upon error. */
7a78ae4e 1133 offset += LDI_NEXT (ldi, arch64);
63f58cc5
PS
1134 if (vp == NULL)
1135 continue;
1136
7a78ae4e 1137 vmap_secs (vp, ldi, arch64);
c906108c
SS
1138
1139 /* Unless this is the exec file,
c5aa993b 1140 add our sections to the section table for the core target. */
c906108c
SS
1141 if (vp != vmap)
1142 {
c906108c 1143 struct section_table *stp;
6426a772
JM
1144
1145 target_resize_to_sections (target, 2);
c906108c
SS
1146 stp = target->to_sections_end - 2;
1147
1148 stp->bfd = vp->bfd;
1149 stp->the_bfd_section = bfd_get_section_by_name (stp->bfd, ".text");
1150 stp->addr = vp->tstart;
1151 stp->endaddr = vp->tend;
1152 stp++;
c5aa993b 1153
c906108c
SS
1154 stp->bfd = vp->bfd;
1155 stp->the_bfd_section = bfd_get_section_by_name (stp->bfd, ".data");
1156 stp->addr = vp->dstart;
1157 stp->endaddr = vp->dend;
1158 }
1159
1160 vmap_symtab (vp);
e42dc924
KB
1161
1162 if (target_new_objfile_hook && vp != vmap && vp->objfile)
1163 target_new_objfile_hook (vp->objfile);
c5aa993b 1164 }
7a78ae4e 1165 while (LDI_NEXT (ldi, arch64) != 0);
c906108c
SS
1166 vmap_exec ();
1167 breakpoint_re_set ();
1168 do_cleanups (old);
1169}
1170
1171int
7a78ae4e 1172kernel_u_size (void)
c906108c
SS
1173{
1174 return (sizeof (struct user));
1175}
1176\f
1177/* Under AIX, we have to pass the correct TOC pointer to a function
1178 when calling functions in the inferior.
1179 We try to find the relative toc offset of the objfile containing PC
1180 and add the current load address of the data segment from the vmap. */
1181
1182static CORE_ADDR
7a78ae4e 1183find_toc_address (CORE_ADDR pc)
c906108c
SS
1184{
1185 struct vmap *vp;
7a78ae4e 1186 extern CORE_ADDR get_toc_offset (struct objfile *); /* xcoffread.c */
c906108c
SS
1187
1188 for (vp = vmap; vp; vp = vp->nxt)
1189 {
1190 if (pc >= vp->tstart && pc < vp->tend)
1191 {
1192 /* vp->objfile is only NULL for the exec file. */
1193 return vp->dstart + get_toc_offset (vp->objfile == NULL
1194 ? symfile_objfile
1195 : vp->objfile);
1196 }
1197 }
11bf77db 1198 error ("Unable to find TOC entry for pc %s\n", local_hex_string (pc));
c906108c
SS
1199}
1200\f
1201/* Register that we are able to handle rs6000 core file formats. */
1202
1203static struct core_fns rs6000_core_fns =
1204{
7a78ae4e 1205 bfd_target_xcoff_flavour, /* core_flavour */
2acceee2
JM
1206 default_check_format, /* check_format */
1207 default_core_sniffer, /* core_sniffer */
1208 fetch_core_registers, /* core_read_registers */
1209 NULL /* next */
c906108c
SS
1210};
1211
1212void
7a78ae4e 1213_initialize_core_rs6000 (void)
c906108c
SS
1214{
1215 /* Initialize hook in rs6000-tdep.c for determining the TOC address when
1216 calling functions in the inferior. */
7a78ae4e
ND
1217 rs6000_find_toc_address_hook = find_toc_address;
1218
1219 /* Initialize hook in rs6000-tdep.c to set the current architecture when
1220 starting a child process. */
1221 rs6000_set_host_arch_hook = set_host_arch;
c906108c 1222
c906108c
SS
1223 add_core_fns (&rs6000_core_fns);
1224}
This page took 0.379658 seconds and 4 git commands to generate.