1991-11-12 16:50:47 +01:00
|
|
|
|
/* IBM RS/6000 host-dependent code for GDB, the GNU debugger.
|
|
|
|
|
Copyright (C) 1986, 1987, 1989, 1991 Free Software Foundation, Inc.
|
|
|
|
|
|
|
|
|
|
This file is part of GDB.
|
|
|
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
|
the Free Software Foundation; either version 2 of the License, or
|
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
|
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
|
|
|
|
|
|
|
|
|
|
#include "defs.h"
|
|
|
|
|
#include "frame.h"
|
|
|
|
|
#include "inferior.h"
|
|
|
|
|
#include "symtab.h"
|
|
|
|
|
#include "target.h"
|
|
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
|
#include <sys/dir.h>
|
|
|
|
|
#include <sys/user.h>
|
|
|
|
|
#include <signal.h>
|
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
|
#include <fcntl.h>
|
|
|
|
|
|
|
|
|
|
#include <sys/ptrace.h>
|
|
|
|
|
#include <sys/reg.h>
|
|
|
|
|
|
|
|
|
|
#include <a.out.h>
|
|
|
|
|
#include <sys/file.h>
|
|
|
|
|
#include <sys/stat.h>
|
|
|
|
|
#include <sys/core.h>
|
|
|
|
|
#include <sys/ldr.h>
|
1992-02-29 07:03:43 +01:00
|
|
|
|
#include <sys/utsname.h>
|
1991-11-12 16:50:47 +01:00
|
|
|
|
|
|
|
|
|
extern int errno;
|
|
|
|
|
extern int attach_flag;
|
|
|
|
|
|
|
|
|
|
/* Conversion from gdb-to-system special purpose register numbers.. */
|
|
|
|
|
|
|
|
|
|
static int special_regs[] = {
|
|
|
|
|
IAR, /* PC_REGNUM */
|
|
|
|
|
MSR, /* PS_REGNUM */
|
|
|
|
|
CR, /* CR_REGNUM */
|
|
|
|
|
LR, /* LR_REGNUM */
|
|
|
|
|
CTR, /* CTR_REGNUM */
|
|
|
|
|
XER, /* XER_REGNUM */
|
|
|
|
|
MQ /* MQ_REGNUM */
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Nonzero if we just simulated a single step break. */
|
|
|
|
|
extern int one_stepped;
|
|
|
|
|
|
1992-03-01 02:04:13 +01:00
|
|
|
|
extern char register_valid[];
|
1992-03-02 07:46:32 +01:00
|
|
|
|
extern struct obstack frame_cache_obstack;
|
1992-03-01 02:04:13 +01:00
|
|
|
|
|
1991-11-12 16:50:47 +01:00
|
|
|
|
|
1992-02-29 07:03:43 +01:00
|
|
|
|
void
|
1992-02-22 02:46:16 +01:00
|
|
|
|
fetch_inferior_registers (regno)
|
1992-03-01 02:04:13 +01:00
|
|
|
|
int regno;
|
1991-11-12 16:50:47 +01:00
|
|
|
|
{
|
|
|
|
|
int ii;
|
|
|
|
|
extern char registers[];
|
|
|
|
|
|
1992-03-01 02:04:13 +01:00
|
|
|
|
if (regno < 0) { /* for all registers */
|
1991-11-12 16:50:47 +01:00
|
|
|
|
|
1992-03-01 02:04:13 +01:00
|
|
|
|
/* read 32 general purpose registers. */
|
|
|
|
|
|
|
|
|
|
for (ii=0; ii < 32; ++ii)
|
|
|
|
|
*(int*)®isters[REGISTER_BYTE (ii)] =
|
1991-11-12 16:50:47 +01:00
|
|
|
|
ptrace (PT_READ_GPR, inferior_pid, ii, 0, 0);
|
|
|
|
|
|
1992-03-01 02:04:13 +01:00
|
|
|
|
/* read general purpose floating point registers. */
|
1991-11-12 16:50:47 +01:00
|
|
|
|
|
1992-03-01 02:04:13 +01:00
|
|
|
|
for (ii=0; ii < 32; ++ii)
|
|
|
|
|
ptrace (PT_READ_FPR, inferior_pid,
|
1991-11-12 16:50:47 +01:00
|
|
|
|
(int*)®isters [REGISTER_BYTE (FP0_REGNUM+ii)], FPR0+ii, 0);
|
|
|
|
|
|
1992-03-01 02:04:13 +01:00
|
|
|
|
/* read special registers. */
|
|
|
|
|
for (ii=0; ii <= LAST_SP_REGNUM-FIRST_SP_REGNUM; ++ii)
|
|
|
|
|
*(int*)®isters[REGISTER_BYTE (FIRST_SP_REGNUM+ii)] =
|
1991-11-12 16:50:47 +01:00
|
|
|
|
ptrace (PT_READ_GPR, inferior_pid, special_regs[ii], 0, 0);
|
1992-03-01 02:04:13 +01:00
|
|
|
|
|
|
|
|
|
registers_fetched ();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* else an individual register is addressed. */
|
|
|
|
|
|
|
|
|
|
else if (regno < FP0_REGNUM) { /* a GPR */
|
|
|
|
|
*(int*)®isters[REGISTER_BYTE (regno)] =
|
|
|
|
|
ptrace (PT_READ_GPR, inferior_pid, regno, 0, 0);
|
|
|
|
|
}
|
|
|
|
|
else if (regno <= FPLAST_REGNUM) { /* a FPR */
|
|
|
|
|
ptrace (PT_READ_FPR, inferior_pid,
|
|
|
|
|
(int*)®isters [REGISTER_BYTE (regno)], (regno-FP0_REGNUM+FPR0), 0);
|
|
|
|
|
}
|
|
|
|
|
else if (regno <= LAST_SP_REGNUM) { /* a special register */
|
|
|
|
|
*(int*)®isters[REGISTER_BYTE (regno)] =
|
|
|
|
|
ptrace (PT_READ_GPR, inferior_pid,
|
|
|
|
|
special_regs[regno-FIRST_SP_REGNUM], 0, 0);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
fprintf (stderr, "gdb error: register no %d not implemented.\n", regno);
|
|
|
|
|
|
|
|
|
|
register_valid [regno] = 1;
|
1991-11-12 16:50:47 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Store our register values back into the inferior.
|
|
|
|
|
If REGNO is -1, do this for all registers.
|
|
|
|
|
Otherwise, REGNO specifies which register (so we can save time). */
|
|
|
|
|
|
1992-02-22 02:46:16 +01:00
|
|
|
|
void
|
1991-11-12 16:50:47 +01:00
|
|
|
|
store_inferior_registers (regno)
|
|
|
|
|
int regno;
|
|
|
|
|
{
|
|
|
|
|
extern char registers[];
|
|
|
|
|
|
|
|
|
|
errno = 0;
|
|
|
|
|
|
|
|
|
|
if (regno == -1) { /* for all registers.. */
|
|
|
|
|
int ii;
|
|
|
|
|
|
|
|
|
|
/* execute one dummy instruction (which is a breakpoint) in inferior
|
|
|
|
|
process. So give kernel a chance to do internal house keeping.
|
|
|
|
|
Otherwise the following ptrace(2) calls will mess up user stack
|
|
|
|
|
since kernel will get confused about the bottom of the stack (%sp) */
|
|
|
|
|
|
|
|
|
|
exec_one_dummy_insn ();
|
|
|
|
|
|
|
|
|
|
/* write general purpose registers first! */
|
|
|
|
|
for ( ii=GPR0; ii<=GPR31; ++ii) {
|
|
|
|
|
ptrace (PT_WRITE_GPR, inferior_pid, ii,
|
|
|
|
|
*(int*)®isters[REGISTER_BYTE (ii)], 0);
|
|
|
|
|
if ( errno ) {
|
|
|
|
|
perror ("ptrace write_gpr"); errno = 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* write floating point registers now. */
|
|
|
|
|
for ( ii=0; ii < 32; ++ii) {
|
|
|
|
|
ptrace (PT_WRITE_FPR, inferior_pid,
|
|
|
|
|
(int*)®isters[REGISTER_BYTE (FP0_REGNUM+ii)], FPR0+ii, 0);
|
|
|
|
|
if ( errno ) {
|
|
|
|
|
perror ("ptrace write_fpr"); errno = 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* write special registers. */
|
|
|
|
|
for (ii=0; ii <= LAST_SP_REGNUM-FIRST_SP_REGNUM; ++ii) {
|
|
|
|
|
ptrace (PT_WRITE_GPR, inferior_pid, special_regs[ii],
|
|
|
|
|
*(int*)®isters[REGISTER_BYTE (FIRST_SP_REGNUM+ii)], 0);
|
|
|
|
|
if ( errno ) {
|
|
|
|
|
perror ("ptrace write_gpr"); errno = 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* else, a specific register number is given... */
|
|
|
|
|
|
|
|
|
|
else if (regno < FP0_REGNUM) { /* a GPR */
|
|
|
|
|
|
|
|
|
|
ptrace (PT_WRITE_GPR, inferior_pid, regno,
|
|
|
|
|
*(int*)®isters[REGISTER_BYTE (regno)], 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
else if (regno <= FPLAST_REGNUM) { /* a FPR */
|
|
|
|
|
ptrace (PT_WRITE_FPR, inferior_pid,
|
|
|
|
|
(int*)®isters[REGISTER_BYTE (regno)], regno-FP0_REGNUM+FPR0, 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
else if (regno <= LAST_SP_REGNUM) { /* a special register */
|
|
|
|
|
|
|
|
|
|
ptrace (PT_WRITE_GPR, inferior_pid, special_regs [regno-FIRST_SP_REGNUM],
|
|
|
|
|
*(int*)®isters[REGISTER_BYTE (regno)], 0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
else
|
|
|
|
|
fprintf (stderr, "Gdb error: register no %d not implemented.\n", regno);
|
|
|
|
|
|
|
|
|
|
if ( errno ) {
|
|
|
|
|
perror ("ptrace write"); errno = 0;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
1992-02-22 02:46:16 +01:00
|
|
|
|
fetch_core_registers (core_reg_sect, core_reg_size, which, reg_addr)
|
1991-11-12 16:50:47 +01:00
|
|
|
|
char *core_reg_sect;
|
|
|
|
|
unsigned core_reg_size;
|
|
|
|
|
int which;
|
1992-02-22 02:46:16 +01:00
|
|
|
|
unsigned int reg_addr; /* Unused in this version */
|
1991-11-12 16:50:47 +01:00
|
|
|
|
{
|
|
|
|
|
/* fetch GPRs and special registers from the first register section
|
|
|
|
|
in core bfd. */
|
|
|
|
|
if (which == 0) {
|
|
|
|
|
|
|
|
|
|
/* copy GPRs first. */
|
|
|
|
|
bcopy (core_reg_sect, registers, 32 * 4);
|
|
|
|
|
|
|
|
|
|
/* gdb's internal register template and bfd's register section layout
|
|
|
|
|
should share a common include file. FIXMEmgo */
|
|
|
|
|
/* then comes special registes. They are supposed to be in the same
|
|
|
|
|
order in gdb template and bfd `.reg' section. */
|
|
|
|
|
core_reg_sect += (32 * 4);
|
|
|
|
|
bcopy (core_reg_sect, ®isters [REGISTER_BYTE (FIRST_SP_REGNUM)],
|
|
|
|
|
(LAST_SP_REGNUM - FIRST_SP_REGNUM + 1) * 4);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* fetch floating point registers from register section 2 in core bfd. */
|
|
|
|
|
else if (which == 2)
|
|
|
|
|
bcopy (core_reg_sect, ®isters [REGISTER_BYTE (FP0_REGNUM)], 32 * 8);
|
|
|
|
|
|
|
|
|
|
else
|
|
|
|
|
fprintf (stderr, "Gdb error: unknown parameter to fetch_core_registers().\n");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
frameless_function_invocation (fi)
|
|
|
|
|
struct frame_info *fi;
|
|
|
|
|
{
|
1992-02-29 07:03:43 +01:00
|
|
|
|
CORE_ADDR func_start;
|
1992-03-02 02:55:31 +01:00
|
|
|
|
struct aix_framedata fdata;
|
1991-11-12 16:50:47 +01:00
|
|
|
|
|
|
|
|
|
func_start = get_pc_function_start (fi->pc) + FUNCTION_START_OFFSET;
|
|
|
|
|
|
1992-02-29 07:03:43 +01:00
|
|
|
|
/* If we failed to find the start of the function, it is a mistake
|
|
|
|
|
to inspect the instructions. */
|
|
|
|
|
|
|
|
|
|
if (!func_start)
|
|
|
|
|
return 0;
|
|
|
|
|
|
1992-03-02 02:55:31 +01:00
|
|
|
|
function_frame_info (func_start, &fdata);
|
|
|
|
|
return fdata.frameless;
|
1991-11-12 16:50:47 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
1992-03-02 07:46:32 +01:00
|
|
|
|
/* If saved registers of frame FI are not known yet, read and cache them.
|
|
|
|
|
&FDATAP contains aix_framedata; TDATAP can be NULL,
|
|
|
|
|
in which case the framedata are read.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
frame_get_cache_fsr (fi, fdatap)
|
|
|
|
|
struct frame_info *fi;
|
|
|
|
|
struct aix_framedata *fdatap;
|
|
|
|
|
{
|
|
|
|
|
int ii;
|
|
|
|
|
CORE_ADDR frame_addr;
|
|
|
|
|
struct aix_framedata work_fdata;
|
|
|
|
|
if (fi->cache_fsr)
|
|
|
|
|
return;
|
|
|
|
|
|
1992-04-09 09:57:10 +02:00
|
|
|
|
if (fdatap == NULL) {
|
1992-03-02 07:46:32 +01:00
|
|
|
|
fdatap = &work_fdata;
|
|
|
|
|
function_frame_info (get_pc_function_start (fi->pc), fdatap);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fi->cache_fsr = (struct frame_saved_regs *)
|
|
|
|
|
obstack_alloc (&frame_cache_obstack, sizeof (struct frame_saved_regs));
|
|
|
|
|
bzero (fi->cache_fsr, sizeof (struct frame_saved_regs));
|
|
|
|
|
|
|
|
|
|
if (fi->prev && fi->prev->frame)
|
|
|
|
|
frame_addr = fi->prev->frame;
|
|
|
|
|
else
|
|
|
|
|
frame_addr = read_memory_integer (fi->frame, 4);
|
|
|
|
|
|
|
|
|
|
/* if != -1, fdatap->saved_fpr is the smallest number of saved_fpr.
|
|
|
|
|
All fpr's from saved_fpr to fp31 are saved right underneath caller
|
|
|
|
|
stack pointer, starting from fp31 first. */
|
|
|
|
|
|
|
|
|
|
if (fdatap->saved_fpr >= 0) {
|
|
|
|
|
for (ii=31; ii >= fdatap->saved_fpr; --ii)
|
|
|
|
|
fi->cache_fsr->regs [FP0_REGNUM + ii] = frame_addr - ((32 - ii) * 8);
|
|
|
|
|
frame_addr -= (32 - fdatap->saved_fpr) * 8;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* if != -1, fdatap->saved_gpr is the smallest number of saved_gpr.
|
|
|
|
|
All gpr's from saved_gpr to gpr31 are saved right under saved fprs,
|
|
|
|
|
starting from r31 first. */
|
|
|
|
|
|
|
|
|
|
if (fdatap->saved_gpr >= 0)
|
|
|
|
|
for (ii=31; ii >= fdatap->saved_gpr; --ii)
|
|
|
|
|
fi->cache_fsr->regs [ii] = frame_addr - ((32 - ii) * 4);
|
|
|
|
|
}
|
|
|
|
|
|
1992-03-02 02:55:31 +01:00
|
|
|
|
/* Return the address of a frame. This is the inital %sp value when the frame
|
|
|
|
|
was first allocated. For functions calling alloca(), it might be saved in
|
|
|
|
|
an alloca register. */
|
|
|
|
|
|
|
|
|
|
CORE_ADDR
|
|
|
|
|
frame_initial_stack_address (fi)
|
1992-03-02 07:46:32 +01:00
|
|
|
|
struct frame_info *fi;
|
1992-03-02 02:55:31 +01:00
|
|
|
|
{
|
1992-03-02 07:46:32 +01:00
|
|
|
|
CORE_ADDR tmpaddr;
|
1992-03-02 02:55:31 +01:00
|
|
|
|
struct aix_framedata fdata;
|
|
|
|
|
struct frame_info *callee_fi;
|
|
|
|
|
|
|
|
|
|
/* if the initial stack pointer (frame address) of this frame is known,
|
|
|
|
|
just return it. */
|
|
|
|
|
|
|
|
|
|
if (fi->initial_sp)
|
|
|
|
|
return fi->initial_sp;
|
|
|
|
|
|
|
|
|
|
/* find out if this function is using an alloca register.. */
|
|
|
|
|
|
1992-03-02 07:46:32 +01:00
|
|
|
|
function_frame_info (get_pc_function_start (fi->pc), &fdata);
|
1992-03-02 02:55:31 +01:00
|
|
|
|
|
|
|
|
|
/* if saved registers of this frame are not known yet, read and cache them. */
|
|
|
|
|
|
1992-03-02 07:46:32 +01:00
|
|
|
|
if (!fi->cache_fsr)
|
|
|
|
|
frame_get_cache_fsr (fi, &fdata);
|
1992-03-02 02:55:31 +01:00
|
|
|
|
|
|
|
|
|
/* If no alloca register used, then fi->frame is the value of the %sp for
|
|
|
|
|
this frame, and it is good enough. */
|
|
|
|
|
|
|
|
|
|
if (fdata.alloca_reg < 0) {
|
|
|
|
|
fi->initial_sp = fi->frame;
|
|
|
|
|
return fi->initial_sp;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* This function has an alloca register. If this is the top-most frame
|
|
|
|
|
(with the lowest address), the value in alloca register is good. */
|
|
|
|
|
|
|
|
|
|
if (!fi->next)
|
|
|
|
|
return fi->initial_sp = read_register (fdata.alloca_reg);
|
|
|
|
|
|
1992-03-02 07:46:32 +01:00
|
|
|
|
/* Otherwise, this is a caller frame. Callee has usually already saved
|
1992-03-13 02:42:25 +01:00
|
|
|
|
registers, but there are exceptions (such as when the callee
|
1992-03-02 07:46:32 +01:00
|
|
|
|
has no parameters). Find the address in which caller's alloca
|
|
|
|
|
register is saved. */
|
1992-03-02 02:55:31 +01:00
|
|
|
|
|
|
|
|
|
for (callee_fi = fi->next; callee_fi; callee_fi = callee_fi->next) {
|
|
|
|
|
|
|
|
|
|
if (!callee_fi->cache_fsr)
|
1992-03-02 07:46:32 +01:00
|
|
|
|
frame_get_cache_fsr (fi, NULL);
|
1992-03-02 02:55:31 +01:00
|
|
|
|
|
|
|
|
|
/* this is the address in which alloca register is saved. */
|
|
|
|
|
|
|
|
|
|
tmpaddr = callee_fi->cache_fsr->regs [fdata.alloca_reg];
|
|
|
|
|
if (tmpaddr) {
|
|
|
|
|
fi->initial_sp = read_memory_integer (tmpaddr, 4);
|
|
|
|
|
return fi->initial_sp;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* Go look into deeper levels of the frame chain to see if any one of
|
|
|
|
|
the callees has saved alloca register. */
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/* If alloca register was not saved, by the callee (or any of its callees)
|
|
|
|
|
then the value in the register is still good. */
|
|
|
|
|
|
|
|
|
|
return fi->initial_sp = read_register (fdata.alloca_reg);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1991-11-12 16:50:47 +01:00
|
|
|
|
/* aixcoff_relocate_symtab - hook for symbol table relocation.
|
|
|
|
|
also reads shared libraries.. */
|
|
|
|
|
|
|
|
|
|
aixcoff_relocate_symtab (pid)
|
|
|
|
|
unsigned int pid;
|
|
|
|
|
{
|
|
|
|
|
#define MAX_LOAD_SEGS 64 /* maximum number of load segments */
|
|
|
|
|
|
|
|
|
|
struct ld_info *ldi;
|
|
|
|
|
int temp;
|
|
|
|
|
|
|
|
|
|
ldi = (void *) alloca(MAX_LOAD_SEGS * sizeof (*ldi));
|
|
|
|
|
|
|
|
|
|
/* According to my humble theory, aixcoff has some timing problems and
|
|
|
|
|
when the user stack grows, kernel doesn't update stack info in time
|
|
|
|
|
and ptrace calls step on user stack. That is why we sleep here a little,
|
|
|
|
|
and give kernel to update its internals. */
|
|
|
|
|
|
|
|
|
|
usleep (36000);
|
|
|
|
|
|
|
|
|
|
errno = 0;
|
|
|
|
|
ptrace(PT_LDINFO, pid, ldi, MAX_LOAD_SEGS * sizeof(*ldi), ldi);
|
1992-02-29 07:03:43 +01:00
|
|
|
|
if (errno) {
|
1991-11-12 16:50:47 +01:00
|
|
|
|
perror_with_name ("ptrace ldinfo");
|
1992-02-29 07:03:43 +01:00
|
|
|
|
return 0;
|
|
|
|
|
}
|
1991-11-12 16:50:47 +01:00
|
|
|
|
|
|
|
|
|
vmap_ldinfo(ldi);
|
|
|
|
|
|
|
|
|
|
do {
|
|
|
|
|
add_text_to_loadinfo (ldi->ldinfo_textorg, ldi->ldinfo_dataorg);
|
|
|
|
|
} while (ldi->ldinfo_next
|
|
|
|
|
&& (ldi = (void *) (ldi->ldinfo_next + (char *) ldi)));
|
|
|
|
|
|
1992-02-29 07:03:43 +01:00
|
|
|
|
#if 0
|
1991-11-12 16:50:47 +01:00
|
|
|
|
/* Now that we've jumbled things around, re-sort them. */
|
1992-02-22 02:46:16 +01:00
|
|
|
|
sort_minimal_symbols ();
|
1992-02-29 07:03:43 +01:00
|
|
|
|
#endif
|
1991-11-12 16:50:47 +01:00
|
|
|
|
|
|
|
|
|
/* relocate the exec and core sections as well. */
|
|
|
|
|
vmap_exec ();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Keep an array of load segment information and their TOC table addresses.
|
|
|
|
|
This info will be useful when calling a shared library function by hand. */
|
|
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
|
unsigned long textorg, dataorg, toc_offset;
|
|
|
|
|
} LoadInfo;
|
|
|
|
|
|
|
|
|
|
#define LOADINFOLEN 10
|
|
|
|
|
|
|
|
|
|
static LoadInfo *loadInfo = NULL;
|
|
|
|
|
static int loadInfoLen = 0;
|
|
|
|
|
static int loadInfoTocIndex = 0;
|
1992-02-29 07:03:43 +01:00
|
|
|
|
int aix_loadInfoTextIndex = 0;
|
1991-11-12 16:50:47 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
xcoff_init_loadinfo ()
|
|
|
|
|
{
|
|
|
|
|
loadInfoTocIndex = 0;
|
1992-02-29 07:03:43 +01:00
|
|
|
|
aix_loadInfoTextIndex = 0;
|
1991-11-12 16:50:47 +01:00
|
|
|
|
|
|
|
|
|
if (loadInfoLen == 0) {
|
|
|
|
|
loadInfo = (void*) xmalloc (sizeof (LoadInfo) * LOADINFOLEN);
|
|
|
|
|
loadInfoLen = LOADINFOLEN;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
free_loadinfo ()
|
|
|
|
|
{
|
|
|
|
|
if (loadInfo)
|
|
|
|
|
free (loadInfo);
|
|
|
|
|
loadInfo = NULL;
|
|
|
|
|
loadInfoLen = 0;
|
|
|
|
|
loadInfoTocIndex = 0;
|
1992-02-29 07:03:43 +01:00
|
|
|
|
aix_loadInfoTextIndex = 0;
|
1991-11-12 16:50:47 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
xcoff_add_toc_to_loadinfo (unsigned long tocaddr)
|
|
|
|
|
{
|
|
|
|
|
while (loadInfoTocIndex >= loadInfoLen) {
|
|
|
|
|
loadInfoLen += LOADINFOLEN;
|
|
|
|
|
loadInfo = (void*) xrealloc (loadInfo, sizeof(LoadInfo) * loadInfoLen);
|
|
|
|
|
}
|
|
|
|
|
loadInfo [loadInfoTocIndex++].toc_offset = tocaddr;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
add_text_to_loadinfo (unsigned long textaddr, unsigned long dataaddr)
|
|
|
|
|
{
|
1992-02-29 07:03:43 +01:00
|
|
|
|
while (aix_loadInfoTextIndex >= loadInfoLen) {
|
1991-11-12 16:50:47 +01:00
|
|
|
|
loadInfoLen += LOADINFOLEN;
|
|
|
|
|
loadInfo = (void*) xrealloc (loadInfo, sizeof(LoadInfo) * loadInfoLen);
|
|
|
|
|
}
|
1992-02-29 07:03:43 +01:00
|
|
|
|
loadInfo [aix_loadInfoTextIndex].textorg = textaddr;
|
|
|
|
|
loadInfo [aix_loadInfoTextIndex].dataorg = dataaddr;
|
|
|
|
|
++aix_loadInfoTextIndex;
|
1991-11-12 16:50:47 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
unsigned long
|
|
|
|
|
find_toc_address (unsigned long pc)
|
|
|
|
|
{
|
1992-02-29 07:03:43 +01:00
|
|
|
|
int ii, toc_entry, tocbase = 0;
|
1991-11-12 16:50:47 +01:00
|
|
|
|
|
1992-02-29 07:03:43 +01:00
|
|
|
|
for (ii=0; ii < aix_loadInfoTextIndex; ++ii)
|
|
|
|
|
if (pc > loadInfo [ii].textorg && loadInfo [ii].textorg > tocbase) {
|
1991-11-12 16:50:47 +01:00
|
|
|
|
toc_entry = ii;
|
1992-02-29 07:03:43 +01:00
|
|
|
|
tocbase = loadInfo [ii].textorg;
|
|
|
|
|
}
|
1991-11-12 16:50:47 +01:00
|
|
|
|
|
|
|
|
|
return loadInfo [toc_entry].dataorg + loadInfo [toc_entry].toc_offset;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* execute one dummy breakpoint instruction. This way we give kernel
|
|
|
|
|
a chance to do some housekeeping and update inferior's internal data,
|
|
|
|
|
including u_area. */
|
|
|
|
|
|
|
|
|
|
exec_one_dummy_insn ()
|
|
|
|
|
{
|
1992-02-29 07:03:43 +01:00
|
|
|
|
#define DUMMY_INSN_ADDR (TEXT_SEGMENT_BASE)+0x200
|
1991-11-12 16:50:47 +01:00
|
|
|
|
|
|
|
|
|
unsigned long shadow;
|
|
|
|
|
unsigned int status, pid;
|
|
|
|
|
|
1992-02-29 07:03:43 +01:00
|
|
|
|
/* We plant one dummy breakpoint into DUMMY_INSN_ADDR address. We assume that
|
|
|
|
|
this address will never be executed again by the real code. */
|
|
|
|
|
|
1991-11-12 16:50:47 +01:00
|
|
|
|
target_insert_breakpoint (DUMMY_INSN_ADDR, &shadow);
|
|
|
|
|
|
|
|
|
|
errno = 0;
|
|
|
|
|
ptrace (PT_CONTINUE, inferior_pid, DUMMY_INSN_ADDR, 0, 0);
|
|
|
|
|
if (errno)
|
|
|
|
|
perror ("pt_continue");
|
|
|
|
|
|
|
|
|
|
do {
|
|
|
|
|
pid = wait (&status);
|
|
|
|
|
} while (pid != inferior_pid);
|
|
|
|
|
|
|
|
|
|
target_remove_breakpoint (DUMMY_INSN_ADDR, &shadow);
|
|
|
|
|
}
|
|
|
|
|
|
1992-02-29 07:03:43 +01:00
|
|
|
|
|
1992-03-30 00:33:35 +02:00
|
|
|
|
#if 0
|
|
|
|
|
|
|
|
|
|
*** not needed anymore ***
|
|
|
|
|
|
1992-02-29 07:03:43 +01:00
|
|
|
|
/* Return the number of initial trap signals we need to ignore once the inferior
|
|
|
|
|
process starts running. This will be `2' for aix-3.1, `3' for aix-3.2 */
|
|
|
|
|
|
|
|
|
|
int
|
|
|
|
|
aix_starting_inferior_traps ()
|
|
|
|
|
{
|
|
|
|
|
struct utsname unamebuf;
|
|
|
|
|
|
|
|
|
|
if (uname (&unamebuf) == -1)
|
|
|
|
|
fatal ("uname(3) failed.");
|
|
|
|
|
|
|
|
|
|
/* Assume the future versions will behave like 3.2 and return '3' for
|
|
|
|
|
anything other than 3.1x. The extra trap in 3.2 is the "trap after the
|
|
|
|
|
program is loaded" signal. */
|
|
|
|
|
|
|
|
|
|
if (unamebuf.version[0] == '3' && unamebuf.release[0] == '1')
|
|
|
|
|
return 2;
|
|
|
|
|
else
|
|
|
|
|
return 3;
|
|
|
|
|
}
|
1992-03-30 00:33:35 +02:00
|
|
|
|
#endif
|