* utils.c, defs.h (warning_begin): Renamed from warning_setup, for
[binutils-gdb.git] / gdb / rs6000-nat.c
1 /* IBM RS/6000 native-dependent code for GDB, the GNU debugger.
2 Copyright 1986, 1987, 1989, 1991, 1992, 1994 Free Software Foundation, Inc.
3
4 This file is part of GDB.
5
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 2 of the License, or
9 (at your option) any later version.
10
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.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
19
20 #include "defs.h"
21 #include "inferior.h"
22 #include "target.h"
23 #include "gdbcore.h"
24 #include "xcoffsolib.h"
25 #include "symfile.h"
26 #include "objfiles.h"
27 #include "libbfd.h" /* For bfd_cache_lookup (FIXME) */
28 #include "bfd.h"
29
30 #include <sys/ptrace.h>
31 #include <sys/reg.h>
32
33 #include <sys/param.h>
34 #include <sys/dir.h>
35 #include <sys/user.h>
36 #include <signal.h>
37 #include <sys/ioctl.h>
38 #include <fcntl.h>
39
40 #include <a.out.h>
41 #include <sys/file.h>
42 #include <sys/stat.h>
43 #include <sys/core.h>
44 #include <sys/ldr.h>
45
46 extern int errno;
47
48 extern struct vmap * map_vmap PARAMS ((bfd *bf, bfd *arch));
49
50 extern struct target_ops exec_ops;
51
52 static void
53 exec_one_dummy_insn PARAMS ((void));
54
55 extern void
56 add_text_to_loadinfo PARAMS ((CORE_ADDR textaddr, CORE_ADDR dataaddr));
57
58 extern void
59 fixup_breakpoints PARAMS ((CORE_ADDR low, CORE_ADDR high, CORE_ADDR delta));
60
61 /* Conversion from gdb-to-system special purpose register numbers.. */
62
63 static int special_regs[] = {
64 IAR, /* PC_REGNUM */
65 MSR, /* PS_REGNUM */
66 CR, /* CR_REGNUM */
67 LR, /* LR_REGNUM */
68 CTR, /* CTR_REGNUM */
69 XER, /* XER_REGNUM */
70 MQ /* MQ_REGNUM */
71 };
72
73 void
74 fetch_inferior_registers (regno)
75 int regno;
76 {
77 int ii;
78 extern char registers[];
79
80 if (regno < 0) { /* for all registers */
81
82 /* read 32 general purpose registers. */
83
84 for (ii=0; ii < 32; ++ii)
85 *(int*)&registers[REGISTER_BYTE (ii)] =
86 ptrace (PT_READ_GPR, inferior_pid, (PTRACE_ARG3_TYPE) ii, 0, 0);
87
88 /* read general purpose floating point registers. */
89
90 for (ii=0; ii < 32; ++ii)
91 ptrace (PT_READ_FPR, inferior_pid,
92 (PTRACE_ARG3_TYPE) &registers [REGISTER_BYTE (FP0_REGNUM+ii)],
93 FPR0+ii, 0);
94
95 /* read special registers. */
96 for (ii=0; ii <= LAST_SP_REGNUM-FIRST_SP_REGNUM; ++ii)
97 *(int*)&registers[REGISTER_BYTE (FIRST_SP_REGNUM+ii)] =
98 ptrace (PT_READ_GPR, inferior_pid, (PTRACE_ARG3_TYPE) special_regs[ii],
99 0, 0);
100
101 registers_fetched ();
102 return;
103 }
104
105 /* else an individual register is addressed. */
106
107 else if (regno < FP0_REGNUM) { /* a GPR */
108 *(int*)&registers[REGISTER_BYTE (regno)] =
109 ptrace (PT_READ_GPR, inferior_pid, (PTRACE_ARG3_TYPE) regno, 0, 0);
110 }
111 else if (regno <= FPLAST_REGNUM) { /* a FPR */
112 ptrace (PT_READ_FPR, inferior_pid,
113 (PTRACE_ARG3_TYPE) &registers [REGISTER_BYTE (regno)],
114 (regno-FP0_REGNUM+FPR0), 0);
115 }
116 else if (regno <= LAST_SP_REGNUM) { /* a special register */
117 *(int*)&registers[REGISTER_BYTE (regno)] =
118 ptrace (PT_READ_GPR, inferior_pid,
119 (PTRACE_ARG3_TYPE) special_regs[regno-FIRST_SP_REGNUM], 0, 0);
120 }
121 else
122 fprintf_unfiltered (gdb_stderr, "gdb error: register no %d not implemented.\n", regno);
123
124 register_valid [regno] = 1;
125 }
126
127 /* Store our register values back into the inferior.
128 If REGNO is -1, do this for all registers.
129 Otherwise, REGNO specifies which register (so we can save time). */
130
131 void
132 store_inferior_registers (regno)
133 int regno;
134 {
135 extern char registers[];
136
137 errno = 0;
138
139 if (regno == -1)
140 { /* for all registers.. */
141 int ii;
142
143 /* execute one dummy instruction (which is a breakpoint) in inferior
144 process. So give kernel a chance to do internal house keeping.
145 Otherwise the following ptrace(2) calls will mess up user stack
146 since kernel will get confused about the bottom of the stack (%sp) */
147
148 exec_one_dummy_insn ();
149
150 /* write general purpose registers first! */
151 for ( ii=GPR0; ii<=GPR31; ++ii)
152 {
153 ptrace (PT_WRITE_GPR, inferior_pid, (PTRACE_ARG3_TYPE) ii,
154 *(int*)&registers[REGISTER_BYTE (ii)], 0);
155 if (errno)
156 {
157 perror ("ptrace write_gpr");
158 errno = 0;
159 }
160 }
161
162 /* write floating point registers now. */
163 for ( ii=0; ii < 32; ++ii)
164 {
165 ptrace (PT_WRITE_FPR, inferior_pid,
166 (PTRACE_ARG3_TYPE) &registers[REGISTER_BYTE (FP0_REGNUM+ii)],
167 FPR0+ii, 0);
168 if (errno)
169 {
170 perror ("ptrace write_fpr");
171 errno = 0;
172 }
173 }
174
175 /* write special registers. */
176 for (ii=0; ii <= LAST_SP_REGNUM-FIRST_SP_REGNUM; ++ii)
177 {
178 ptrace (PT_WRITE_GPR, inferior_pid,
179 (PTRACE_ARG3_TYPE) special_regs[ii],
180 *(int*)&registers[REGISTER_BYTE (FIRST_SP_REGNUM+ii)], 0);
181 if (errno)
182 {
183 perror ("ptrace write_gpr");
184 errno = 0;
185 }
186 }
187 }
188
189 /* else, a specific register number is given... */
190
191 else if (regno < FP0_REGNUM) /* a GPR */
192 {
193 ptrace (PT_WRITE_GPR, inferior_pid, (PTRACE_ARG3_TYPE) regno,
194 *(int*)&registers[REGISTER_BYTE (regno)], 0);
195 }
196
197 else if (regno <= FPLAST_REGNUM) /* a FPR */
198 {
199 ptrace (PT_WRITE_FPR, inferior_pid,
200 (PTRACE_ARG3_TYPE) &registers[REGISTER_BYTE (regno)],
201 regno - FP0_REGNUM + FPR0, 0);
202 }
203
204 else if (regno <= LAST_SP_REGNUM) /* a special register */
205 {
206 ptrace (PT_WRITE_GPR, inferior_pid,
207 (PTRACE_ARG3_TYPE) special_regs [regno-FIRST_SP_REGNUM],
208 *(int*)&registers[REGISTER_BYTE (regno)], 0);
209 }
210
211 else
212 fprintf_unfiltered (gdb_stderr, "Gdb error: register no %d not implemented.\n", regno);
213
214 if (errno)
215 {
216 perror ("ptrace write");
217 errno = 0;
218 }
219 }
220
221 /* Execute one dummy breakpoint instruction. This way we give the kernel
222 a chance to do some housekeeping and update inferior's internal data,
223 including u_area. */
224
225 static void
226 exec_one_dummy_insn ()
227 {
228 #define DUMMY_INSN_ADDR (TEXT_SEGMENT_BASE)+0x200
229
230 char shadow_contents[BREAKPOINT_MAX]; /* Stash old bkpt addr contents */
231 unsigned int status, pid;
232
233 /* We plant one dummy breakpoint into DUMMY_INSN_ADDR address. We assume that
234 this address will never be executed again by the real code. */
235
236 target_insert_breakpoint (DUMMY_INSN_ADDR, shadow_contents);
237
238 errno = 0;
239 ptrace (PT_CONTINUE, inferior_pid, (PTRACE_ARG3_TYPE) DUMMY_INSN_ADDR, 0, 0);
240 if (errno)
241 perror ("pt_continue");
242
243 do {
244 pid = wait (&status);
245 } while (pid != inferior_pid);
246
247 target_remove_breakpoint (DUMMY_INSN_ADDR, shadow_contents);
248 }
249
250 void
251 fetch_core_registers (core_reg_sect, core_reg_size, which, reg_addr)
252 char *core_reg_sect;
253 unsigned core_reg_size;
254 int which;
255 unsigned int reg_addr; /* Unused in this version */
256 {
257 /* fetch GPRs and special registers from the first register section
258 in core bfd. */
259 if (which == 0)
260 {
261 /* copy GPRs first. */
262 memcpy (registers, core_reg_sect, 32 * 4);
263
264 /* gdb's internal register template and bfd's register section layout
265 should share a common include file. FIXMEmgo */
266 /* then comes special registes. They are supposed to be in the same
267 order in gdb template and bfd `.reg' section. */
268 core_reg_sect += (32 * 4);
269 memcpy (&registers [REGISTER_BYTE (FIRST_SP_REGNUM)], core_reg_sect,
270 (LAST_SP_REGNUM - FIRST_SP_REGNUM + 1) * 4);
271 }
272
273 /* fetch floating point registers from register section 2 in core bfd. */
274 else if (which == 2)
275 memcpy (&registers [REGISTER_BYTE (FP0_REGNUM)], core_reg_sect, 32 * 8);
276
277 else
278 fprintf_unfiltered (gdb_stderr, "Gdb error: unknown parameter to fetch_core_registers().\n");
279 }
280 \f
281 /* handle symbol translation on vmapping */
282
283 static void
284 vmap_symtab (vp)
285 register struct vmap *vp;
286 {
287 register struct objfile *objfile;
288 asection *textsec;
289 asection *datasec;
290 asection *bsssec;
291 CORE_ADDR text_delta;
292 CORE_ADDR data_delta;
293 CORE_ADDR bss_delta;
294 struct section_offsets *new_offsets;
295 int i;
296
297 objfile = vp->objfile;
298 if (objfile == NULL)
299 {
300 /* OK, it's not an objfile we opened ourselves.
301 Currently, that can only happen with the exec file, so
302 relocate the symbols for the symfile. */
303 if (symfile_objfile == NULL)
304 return;
305 objfile = symfile_objfile;
306 }
307
308 new_offsets = alloca
309 (sizeof (struct section_offsets)
310 + sizeof (new_offsets->offsets) * objfile->num_sections);
311
312 for (i = 0; i < objfile->num_sections; ++i)
313 ANOFFSET (new_offsets, i) = ANOFFSET (objfile->section_offsets, i);
314
315 textsec = bfd_get_section_by_name (vp->bfd, ".text");
316 text_delta =
317 vp->tstart - ANOFFSET (objfile->section_offsets, textsec->target_index);
318 ANOFFSET (new_offsets, textsec->target_index) = vp->tstart;
319
320 datasec = bfd_get_section_by_name (vp->bfd, ".data");
321 data_delta =
322 vp->dstart - ANOFFSET (objfile->section_offsets, datasec->target_index);
323 ANOFFSET (new_offsets, datasec->target_index) = vp->dstart;
324
325 bsssec = bfd_get_section_by_name (vp->bfd, ".bss");
326 bss_delta =
327 vp->dstart - ANOFFSET (objfile->section_offsets, bsssec->target_index);
328 ANOFFSET (new_offsets, bsssec->target_index) = vp->dstart;
329
330 objfile_relocate (objfile, new_offsets);
331
332 {
333 struct obj_section *s;
334 for (s = objfile->sections; s < objfile->sections_end; ++s)
335 {
336 if (s->the_bfd_section->target_index == textsec->target_index)
337 {
338 s->addr += text_delta;
339 s->endaddr += text_delta;
340 }
341 else if (s->the_bfd_section->target_index == datasec->target_index)
342 {
343 s->addr += data_delta;
344 s->endaddr += data_delta;
345 }
346 else if (s->the_bfd_section->target_index == bsssec->target_index)
347 {
348 s->addr += bss_delta;
349 s->endaddr += bss_delta;
350 }
351 }
352 }
353
354 if (text_delta != 0)
355 /* breakpoints need to be relocated as well. */
356 fixup_breakpoints (0, TEXT_SEGMENT_BASE, text_delta);
357 }
358 \f
359 /* Add symbols for an objfile. */
360
361 static int
362 objfile_symbol_add (arg)
363 char *arg;
364 {
365 struct objfile *obj = (struct objfile *) arg;
366
367 syms_from_objfile (obj, 0, 0, 0);
368 new_symfile_objfile (obj, 0, 0);
369 return 1;
370 }
371
372 /* Add a new vmap entry based on ldinfo() information.
373
374 If ldi->ldinfo_fd is not valid (e.g. this struct ld_info is from a
375 core file), the caller should set it to -1, and we will open the file.
376
377 Return the vmap new entry. */
378
379 static struct vmap *
380 add_vmap (ldi)
381 register struct ld_info *ldi;
382 {
383 bfd *abfd, *last;
384 register char *mem, *objname;
385 struct objfile *obj;
386 struct vmap *vp;
387
388 /* This ldi structure was allocated using alloca() in
389 xcoff_relocate_symtab(). Now we need to have persistent object
390 and member names, so we should save them. */
391
392 mem = ldi->ldinfo_filename + strlen (ldi->ldinfo_filename) + 1;
393 mem = savestring (mem, strlen (mem));
394 objname = savestring (ldi->ldinfo_filename, strlen (ldi->ldinfo_filename));
395
396 if (ldi->ldinfo_fd < 0)
397 /* Note that this opens it once for every member; a possible
398 enhancement would be to only open it once for every object. */
399 abfd = bfd_openr (objname, gnutarget);
400 else
401 abfd = bfd_fdopenr (objname, gnutarget, ldi->ldinfo_fd);
402 if (!abfd)
403 error ("Could not open `%s' as an executable file: %s",
404 objname, bfd_errmsg (bfd_get_error ()));
405
406 /* make sure we have an object file */
407
408 if (bfd_check_format (abfd, bfd_object))
409 vp = map_vmap (abfd, 0);
410
411 else if (bfd_check_format (abfd, bfd_archive))
412 {
413 last = 0;
414 /* FIXME??? am I tossing BFDs? bfd? */
415 while ((last = bfd_openr_next_archived_file (abfd, last)))
416 if (STREQ (mem, last->filename))
417 break;
418
419 if (!last)
420 {
421 bfd_close (abfd);
422 /* FIXME -- should be error */
423 warning ("\"%s\": member \"%s\" missing.", abfd->filename, mem);
424 return;
425 }
426
427 if (!bfd_check_format(last, bfd_object))
428 {
429 bfd_close (last); /* XXX??? */
430 goto obj_err;
431 }
432
433 vp = map_vmap (last, abfd);
434 }
435 else
436 {
437 obj_err:
438 bfd_close (abfd);
439 error ("\"%s\": not in executable format: %s.",
440 objname, bfd_errmsg (bfd_get_error ()));
441 /*NOTREACHED*/
442 }
443 obj = allocate_objfile (vp->bfd, 0);
444 vp->objfile = obj;
445
446 #ifndef SOLIB_SYMBOLS_MANUAL
447 if (catch_errors (objfile_symbol_add, (char *)obj,
448 "Error while reading shared library symbols:\n",
449 RETURN_MASK_ALL))
450 {
451 /* Note this is only done if symbol reading was successful. */
452 vmap_symtab (vp);
453 vp->loaded = 1;
454 }
455 #endif
456 return vp;
457 }
458 \f
459 /* update VMAP info with ldinfo() information
460 Input is ptr to ldinfo() results. */
461
462 static void
463 vmap_ldinfo (ldi)
464 register struct ld_info *ldi;
465 {
466 struct stat ii, vi;
467 register struct vmap *vp;
468 register got_one, retried;
469 CORE_ADDR ostart;
470
471 /* For each *ldi, see if we have a corresponding *vp.
472 If so, update the mapping, and symbol table.
473 If not, add an entry and symbol table. */
474
475 do {
476 char *name = ldi->ldinfo_filename;
477 char *memb = name + strlen(name) + 1;
478
479 retried = 0;
480
481 if (fstat (ldi->ldinfo_fd, &ii) < 0)
482 fatal ("cannot fstat(fd=%d) on %s", ldi->ldinfo_fd, name);
483 retry:
484 for (got_one = 0, vp = vmap; vp; vp = vp->nxt)
485 {
486 FILE *io;
487
488 /* First try to find a `vp', which is the same as in ldinfo.
489 If not the same, just continue and grep the next `vp'. If same,
490 relocate its tstart, tend, dstart, dend values. If no such `vp'
491 found, get out of this for loop, add this ldi entry as a new vmap
492 (add_vmap) and come back, fins its `vp' and so on... */
493
494 /* The filenames are not always sufficient to match on. */
495
496 if ((name[0] == '/' && !STREQ(name, vp->name))
497 || (memb[0] && !STREQ(memb, vp->member)))
498 continue;
499
500 io = bfd_cache_lookup (vp->bfd); /* totally opaque! */
501 if (!io)
502 fatal ("cannot find BFD's iostream for %s", vp->name);
503
504 /* See if we are referring to the same file. */
505 /* An error here is innocuous, most likely meaning that
506 the file descriptor has become worthless. */
507 if (fstat (fileno(io), &vi) < 0)
508 continue;
509
510 if (ii.st_dev != vi.st_dev || ii.st_ino != vi.st_ino)
511 continue;
512
513 if (!retried)
514 close (ldi->ldinfo_fd);
515
516 ++got_one;
517
518 /* found a corresponding VMAP. remap! */
519 ostart = vp->tstart;
520
521 /* We can assume pointer == CORE_ADDR, this code is native only. */
522 vp->tstart = (CORE_ADDR) ldi->ldinfo_textorg;
523 vp->tend = vp->tstart + ldi->ldinfo_textsize;
524 vp->dstart = (CORE_ADDR) ldi->ldinfo_dataorg;
525 vp->dend = vp->dstart + ldi->ldinfo_datasize;
526
527 if (vp->tadj)
528 {
529 vp->tstart += vp->tadj;
530 vp->tend += vp->tadj;
531 }
532
533 /* relocate symbol table(s). */
534 vmap_symtab (vp);
535
536 /* there may be more, so we don't break out of the loop. */
537 }
538
539 /* if there was no matching *vp, we must perforce create the sucker(s) */
540 if (!got_one && !retried)
541 {
542 add_vmap (ldi);
543 ++retried;
544 goto retry;
545 }
546 } while (ldi->ldinfo_next
547 && (ldi = (void *) (ldi->ldinfo_next + (char *) ldi)));
548
549 /* If we don't find the symfile_objfile anywhere in the ldinfo, it
550 is unlikely that the symbol file is relocated to the proper
551 address. And we might have attached to a process which is
552 running a different copy of the same executable. */
553 for (got_one = 0, vp = vmap; vp != NULL; vp = vp->nxt)
554 {
555 if (symfile_objfile == vp->objfile)
556 {
557 got_one = 1;
558 break;
559 }
560 }
561 if (symfile_objfile != NULL && !got_one)
562 {
563 warning_begin ();
564 fputs_unfiltered ("Symbol file ", gdb_stderr);
565 fputs_unfiltered (symfile_objfile->name, gdb_stderr);
566 fputs_unfiltered ("\nis not mapped; discarding it.\n\
567 If in fact that file has symbols which the mapped files listed by\n\
568 \"info files\" lack, you can load symbols with the \"symbol-file\" or\n\
569 \"add-symbol-file\" commands (note that you must take care of relocating\n\
570 symbols to the proper address).\n", gdb_stderr);
571 free_objfile (symfile_objfile);
572 symfile_objfile = NULL;
573 }
574 }
575 \f
576 /* As well as symbol tables, exec_sections need relocation. After
577 the inferior process' termination, there will be a relocated symbol
578 table exist with no corresponding inferior process. At that time, we
579 need to use `exec' bfd, rather than the inferior process's memory space
580 to look up symbols.
581
582 `exec_sections' need to be relocated only once, as long as the exec
583 file remains unchanged.
584 */
585
586 static void
587 vmap_exec ()
588 {
589 static bfd *execbfd;
590 int i;
591
592 if (execbfd == exec_bfd)
593 return;
594
595 execbfd = exec_bfd;
596
597 if (!vmap || !exec_ops.to_sections)
598 error ("vmap_exec: vmap or exec_ops.to_sections == 0\n");
599
600 for (i=0; &exec_ops.to_sections[i] < exec_ops.to_sections_end; i++)
601 {
602 if (STREQ(".text", exec_ops.to_sections[i].the_bfd_section->name))
603 {
604 exec_ops.to_sections[i].addr += vmap->tstart;
605 exec_ops.to_sections[i].endaddr += vmap->tstart;
606 }
607 else if (STREQ(".data", exec_ops.to_sections[i].the_bfd_section->name))
608 {
609 exec_ops.to_sections[i].addr += vmap->dstart;
610 exec_ops.to_sections[i].endaddr += vmap->dstart;
611 }
612 }
613 }
614 \f
615 /* xcoff_relocate_symtab - hook for symbol table relocation.
616 also reads shared libraries.. */
617
618 void
619 xcoff_relocate_symtab (pid)
620 unsigned int pid;
621 {
622 #define MAX_LOAD_SEGS 64 /* maximum number of load segments */
623
624 struct ld_info *ldi;
625
626 ldi = (void *) alloca(MAX_LOAD_SEGS * sizeof (*ldi));
627
628 /* According to my humble theory, AIX has some timing problems and
629 when the user stack grows, kernel doesn't update stack info in time
630 and ptrace calls step on user stack. That is why we sleep here a little,
631 and give kernel to update its internals. */
632
633 usleep (36000);
634
635 errno = 0;
636 ptrace (PT_LDINFO, pid, (PTRACE_ARG3_TYPE) ldi,
637 MAX_LOAD_SEGS * sizeof(*ldi), ldi);
638 if (errno)
639 perror_with_name ("ptrace ldinfo");
640
641 vmap_ldinfo (ldi);
642
643 do {
644 /* We are allowed to assume CORE_ADDR == pointer. This code is
645 native only. */
646 add_text_to_loadinfo ((CORE_ADDR) ldi->ldinfo_textorg,
647 (CORE_ADDR) ldi->ldinfo_dataorg);
648 } while (ldi->ldinfo_next
649 && (ldi = (void *) (ldi->ldinfo_next + (char *) ldi)));
650
651 #if 0
652 /* Now that we've jumbled things around, re-sort them. */
653 sort_minimal_symbols ();
654 #endif
655
656 /* relocate the exec and core sections as well. */
657 vmap_exec ();
658 }
659 \f
660 /* Core file stuff. */
661
662 /* Relocate symtabs and read in shared library info, based on symbols
663 from the core file. */
664
665 void
666 xcoff_relocate_core (target)
667 struct target_ops *target;
668 {
669 /* Offset of member MEMBER in a struct of type TYPE. */
670 #ifndef offsetof
671 #define offsetof(TYPE, MEMBER) ((int) &((TYPE *)0)->MEMBER)
672 #endif
673
674 /* Size of a struct ld_info except for the variable-length filename. */
675 #define LDINFO_SIZE (offsetof (struct ld_info, ldinfo_filename))
676
677 sec_ptr ldinfo_sec;
678 int offset = 0;
679 struct ld_info *ldip;
680 struct vmap *vp;
681
682 /* Allocated size of buffer. */
683 int buffer_size = LDINFO_SIZE;
684 char *buffer = xmalloc (buffer_size);
685 struct cleanup *old = make_cleanup (free_current_contents, &buffer);
686
687 /* FIXME, this restriction should not exist. For now, though I'll
688 avoid coredumps with error() pending a real fix. */
689 if (vmap == NULL)
690 error
691 ("Can't debug a core file without an executable file (on the RS/6000)");
692
693 ldinfo_sec = bfd_get_section_by_name (core_bfd, ".ldinfo");
694 if (ldinfo_sec == NULL)
695 {
696 bfd_err:
697 fprintf_filtered (gdb_stderr, "Couldn't get ldinfo from core file: %s\n",
698 bfd_errmsg (bfd_get_error ()));
699 do_cleanups (old);
700 return;
701 }
702 do
703 {
704 int i;
705 int names_found = 0;
706
707 /* Read in everything but the name. */
708 if (bfd_get_section_contents (core_bfd, ldinfo_sec, buffer,
709 offset, LDINFO_SIZE) == 0)
710 goto bfd_err;
711
712 /* Now the name. */
713 i = LDINFO_SIZE;
714 do
715 {
716 if (i == buffer_size)
717 {
718 buffer_size *= 2;
719 buffer = xrealloc (buffer, buffer_size);
720 }
721 if (bfd_get_section_contents (core_bfd, ldinfo_sec, &buffer[i],
722 offset + i, 1) == 0)
723 goto bfd_err;
724 if (buffer[i++] == '\0')
725 ++names_found;
726 } while (names_found < 2);
727
728 ldip = (struct ld_info *) buffer;
729
730 /* Can't use a file descriptor from the core file; need to open it. */
731 ldip->ldinfo_fd = -1;
732
733 /* The first ldinfo is for the exec file, allocated elsewhere. */
734 if (offset == 0)
735 vp = vmap;
736 else
737 vp = add_vmap (ldip);
738
739 offset += ldip->ldinfo_next;
740
741 /* We can assume pointer == CORE_ADDR, this code is native only. */
742 vp->tstart = (CORE_ADDR) ldip->ldinfo_textorg;
743 vp->tend = vp->tstart + ldip->ldinfo_textsize;
744 vp->dstart = (CORE_ADDR) ldip->ldinfo_dataorg;
745 vp->dend = vp->dstart + ldip->ldinfo_datasize;
746
747 if (vp->tadj != 0)
748 {
749 vp->tstart += vp->tadj;
750 vp->tend += vp->tadj;
751 }
752
753 /* Unless this is the exec file,
754 add our sections to the section table for the core target. */
755 if (vp != vmap)
756 {
757 int count;
758 struct section_table *stp;
759
760 count = target->to_sections_end - target->to_sections;
761 count += 2;
762 target->to_sections = (struct section_table *)
763 xrealloc (target->to_sections,
764 sizeof (struct section_table) * count);
765 target->to_sections_end = target->to_sections + count;
766 stp = target->to_sections_end - 2;
767
768 /* "Why do we add bfd_section_vma?", I hear you cry.
769 Well, the start of the section in the file is actually
770 that far into the section as the struct vmap understands it.
771 So for text sections, bfd_section_vma tends to be 0x200,
772 and if vp->tstart is 0xd0002000, then the first byte of
773 the text section on disk corresponds to address 0xd0002200. */
774 stp->bfd = vp->bfd;
775 stp->the_bfd_section = bfd_get_section_by_name (stp->bfd, ".text");
776 stp->addr = bfd_section_vma (stp->bfd, stp->the_bfd_section) + vp->tstart;
777 stp->endaddr = bfd_section_vma (stp->bfd, stp->the_bfd_section) + vp->tend;
778 stp++;
779
780 stp->bfd = vp->bfd;
781 stp->the_bfd_section = bfd_get_section_by_name (stp->bfd, ".data");
782 stp->addr = bfd_section_vma (stp->bfd, stp->the_bfd_section) + vp->dstart;
783 stp->endaddr = bfd_section_vma (stp->bfd, stp->the_bfd_section) + vp->dend;
784 }
785
786 vmap_symtab (vp);
787
788 add_text_to_loadinfo ((CORE_ADDR)ldip->ldinfo_textorg,
789 (CORE_ADDR)ldip->ldinfo_dataorg);
790 } while (ldip->ldinfo_next != 0);
791 vmap_exec ();
792 do_cleanups (old);
793 }