⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 m88k-tdep.c

📁 早期freebsd实现
💻 C
📖 第 1 页 / 共 2 页
字号:
/* Target-machine dependent code for Motorola 88000 series, for GDB.   Copyright (C) 1988, 1990, 1991 Free Software Foundation, Inc.This file is part of GDB.This program is free software; you can redistribute it and/or modifyit under the terms of the GNU General Public License as published bythe 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 ofMERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See theGNU General Public License for more details.You should have received a copy of the GNU General Public Licensealong with this program; if not, write to the Free SoftwareFoundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */#include "defs.h"#include "frame.h"#include "inferior.h"#include "value.h"#ifdef USG#include <sys/types.h>#endif#include <sys/param.h>#include <sys/dir.h>#include <signal.h>#include "gdbcore.h"#include <sys/user.h>#ifndef USER			/* added to support BCS ptrace_user */#define USER ptrace_user#endif#include <sys/ioctl.h>#include <fcntl.h>#include <sys/file.h>#include <sys/stat.h>#include "symtab.h"#include "setjmp.h"#include "value.h"void frame_find_saved_regs ();/* Given a GDB frame, determine the address of the calling function's frame.   This will be used to create a new GDB frame struct, and then   INIT_EXTRA_FRAME_INFO and INIT_FRAME_PC will be called for the new frame.   For us, the frame address is its stack pointer value, so we look up   the function prologue to determine the caller's sp value, and return it.  */FRAME_ADDRframe_chain (thisframe)     FRAME thisframe;{  frame_find_saved_regs (thisframe, (struct frame_saved_regs *) 0);  /* NOTE:  this depends on frame_find_saved_regs returning the VALUE, not 	    the ADDRESS, of SP_REGNUM.  It also depends on the cache of	    frame_find_saved_regs results.  */  if (thisframe->fsr->regs[SP_REGNUM])    return thisframe->fsr->regs[SP_REGNUM];  else    return thisframe->frame;	/* Leaf fn -- next frame up has same SP. */}intframeless_function_invocation (frame)     FRAME frame;{  frame_find_saved_regs (frame, (struct frame_saved_regs *) 0);  /* NOTE:  this depends on frame_find_saved_regs returning the VALUE, not 	    the ADDRESS, of SP_REGNUM.  It also depends on the cache of	    frame_find_saved_regs results.  */  if (frame->fsr->regs[SP_REGNUM])    return 0;			/* Frameful -- return addr saved somewhere */  else    return 1;			/* Frameless -- no saved return address */}intframe_chain_valid (chain, thisframe)     CORE_ADDR chain;     struct frame_info *thisframe;{  return (chain != 0       && !inside_entry_file (FRAME_SAVED_PC (thisframe)));}voidinit_extra_frame_info (fromleaf, fi)     int fromleaf;     struct frame_info *fi;{  fi->fsr = 0;			/* Not yet allocated */  fi->args_pointer = 0;		/* Unknown */  fi->locals_pointer = 0;	/* Unknown */}/* Examine an m88k function prologue, recording the addresses at which   registers are saved explicitly by the prologue code, and returning   the address of the first instruction after the prologue (but not   after the instruction at address LIMIT, as explained below).   LIMIT places an upper bound on addresses of the instructions to be   examined.  If the prologue code scan reaches LIMIT, the scan is   aborted and LIMIT is returned.  This is used, when examining the   prologue for the current frame, to keep examine_prologue () from   claiming that a given register has been saved when in fact the   instruction that saves it has not yet been executed.  LIMIT is used   at other times to stop the scan when we hit code after the true   function prologue (e.g. for the first source line) which might   otherwise be mistaken for function prologue.   The format of the function prologue matched by this routine is   derived from examination of the source to gcc 1.95, particularly   the routine output_prologue () in config/out-m88k.c.   subu r31,r31,n			# stack pointer update   (st rn,r31,offset)?			# save incoming regs   (st.d rn,r31,offset)?   (addu r30,r31,n)?			# frame pointer update   (pic sequence)?			# PIC code prologue   (or   rn,rm,0)?			# Move parameters to other regs*//* Macros for extracting fields from instructions.  */#define BITMASK(pos, width) (((0x1 << (width)) - 1) << (pos))#define EXTRACT_FIELD(val, pos, width) ((val) >> (pos) & BITMASK (0, width))/* Prologue code that handles position-independent-code setup.  */struct pic_prologue_code {  unsigned long insn, mask;};static struct pic_prologue_code pic_prologue_code [] = {/* FIXME -- until this is translated to hex, we won't match it... */	0xffffffff, 0,					/* or r10,r1,0  (if not saved) */					/* bsr.n LabN */					/* or.u r25,r0,const */					/*LabN: or r25,r25,const2 */					/* addu r25,r25,1 */					/* or r1,r10,0  (if not saved) */};/* Fetch the instruction at ADDR, returning 0 if ADDR is beyond LIM or   is not the address of a valid instruction, the address of the next   instruction beyond ADDR otherwise.  *PWORD1 receives the first word   of the instruction.  PWORD2 is ignored -- a remnant of the original   i960 version.  */#define NEXT_PROLOGUE_INSN(addr, lim, pword1, pword2) \  (((addr) < (lim)) ? next_insn (addr, pword1) : 0)/* Read the m88k instruction at 'memaddr' and return the address of    the next instruction after that, or 0 if 'memaddr' is not the   address of a valid instruction.  The instruction   is stored at 'pword1'.  */CORE_ADDRnext_insn (memaddr, pword1)     unsigned long *pword1;     CORE_ADDR memaddr;{  unsigned long buf[1];  read_memory (memaddr, buf, sizeof (buf));  *pword1 = buf[0];  SWAP_TARGET_AND_HOST (pword1, sizeof (long));  return memaddr + 4;}/* Read a register from frames called by us (or from the hardware regs).  */intread_next_frame_reg(fi, regno)     FRAME fi;     int regno;{  for (; fi; fi = fi->next) {      if (regno == SP_REGNUM) return fi->frame;      else if (fi->fsr->regs[regno])	return read_memory_integer(fi->fsr->regs[regno], 4);  }  return read_register(regno);}/* Examine the prologue of a function.  `ip' points to the first instruction.   `limit' is the limit of the prologue (e.g. the addr of the first    linenumber, or perhaps the program counter if we're stepping through).   `frame_sp' is the stack pointer value in use in this frame.     `fsr' is a pointer to a frame_saved_regs structure into which we put   info about the registers saved by this frame.     `fi' is a struct frame_info pointer; we fill in various fields in it   to reflect the offsets of the arg pointer and the locals pointer.  */static CORE_ADDRexamine_prologue (ip, limit, frame_sp, fsr, fi)     register CORE_ADDR ip;     register CORE_ADDR limit;     FRAME_ADDR frame_sp;     struct frame_saved_regs *fsr;     struct frame_info *fi;{  register CORE_ADDR next_ip;  register int src;  register struct pic_prologue_code *pcode;  unsigned int insn1, insn2;  int size, offset;  char must_adjust[32];		/* If set, must adjust offsets in fsr */  int sp_offset = -1;		/* -1 means not set (valid must be mult of 8) */  int fp_offset = -1;		/* -1 means not set */  CORE_ADDR frame_fp;  bzero (must_adjust, sizeof (must_adjust));  next_ip = NEXT_PROLOGUE_INSN (ip, limit, &insn1, &insn2);  /* Accept move of incoming registers to other registers, using     "or rd,rs,0" or "or.u rd,rs,0" or "or rd,r0,rs" or "or rd,rs,r0".     We don't have to worry about walking into the first lines of code,     since the first line number will stop us (assuming we have symbols).     What we have actually seen is "or r10,r0,r12".  */#define	OR_MOVE_INSN	0x58000000		/* or/or.u with immed of 0 */#define	OR_MOVE_MASK	0xF800FFFF#define	OR_REG_MOVE1_INSN	0xF4005800	/* or rd,r0,rs */#define	OR_REG_MOVE1_MASK	0xFC1FFFE0#define	OR_REG_MOVE2_INSN	0xF4005800	/* or rd,rs,r0 */#define	OR_REG_MOVE2_MASK	0xFC00FFFF  while (next_ip && 	 ((insn1 & OR_MOVE_MASK) == OR_MOVE_INSN ||	  (insn1 & OR_REG_MOVE1_MASK) == OR_REG_MOVE1_INSN ||	  (insn1 & OR_REG_MOVE2_MASK) == OR_REG_MOVE2_INSN	 )	)    {      /* We don't care what moves to where.  The result of the moves  	 has already been reflected in what the compiler tells us is the	 location of these parameters.  */      ip = next_ip;      next_ip = NEXT_PROLOGUE_INSN (ip, limit, &insn1, &insn2);    }  /* Accept an optional "subu sp,sp,n" to set up the stack pointer.  */#define	SUBU_SP_INSN	0x67ff0000#define	SUBU_SP_MASK	0xffff0007	/* Note offset must be mult. of 8 */#define	SUBU_OFFSET(x)	((unsigned)(x & 0xFFFF))  if (next_ip &&      ((insn1 & SUBU_SP_MASK) == SUBU_SP_INSN))	/* subu r31, r31, N */    {      sp_offset = -SUBU_OFFSET (insn1);      ip = next_ip;      next_ip = NEXT_PROLOGUE_INSN (ip, limit, &insn1, &insn2);    }  /* The function must start with a stack-pointer adjustment, or     we don't know WHAT'S going on... */  if (sp_offset == -1)    return ip;  /* Accept zero or more instances of "st rx,sp,n" or "st.d rx,sp,n".       This may cause us to mistake the copying of a register     parameter to the frame for the saving of a callee-saved     register, but that can't be helped, since with the     "-fcall-saved" flag, any register can be made callee-saved.     This probably doesn't matter, since the ``saved'' caller's values of     non-callee-saved registers are not relevant anyway.  */#define	STD_STACK_INSN	0x201f0000#define	STD_STACK_MASK	0xfc1f0000#define	ST_STACK_INSN	0x241f0000#define	ST_STACK_MASK	0xfc1f0000#define	ST_OFFSET(x)	((unsigned)((x) & 0xFFFF))#define	ST_SRC(x)	EXTRACT_FIELD ((x), 21, 5)  while (next_ip)    {           if ((insn1 & ST_STACK_MASK)  == ST_STACK_INSN) 	size = 1;      else if ((insn1 & STD_STACK_MASK) == STD_STACK_INSN)	size = 2;      else	break;      src = ST_SRC (insn1);      offset = ST_OFFSET (insn1);      while (size--)	{	  must_adjust[src] = 1;	  fsr->regs[src++] = offset;		/* Will be adjusted later */	  offset += 4;	}      ip = next_ip;      next_ip = NEXT_PROLOGUE_INSN (ip, limit, &insn1, &insn2);    }  /* Accept an optional "addu r30,r31,n" to set up the frame pointer.  */#define	ADDU_FP_INSN	0x63df0000#define	ADDU_FP_MASK	0xffff0000#define	ADDU_OFFSET(x)	((unsigned)(x & 0xFFFF))  if (next_ip &&      ((insn1 & ADDU_FP_MASK) == ADDU_FP_INSN))	/* addu r30, r31, N */    {      fp_offset = ADDU_OFFSET (insn1);      ip = next_ip;      next_ip = NEXT_PROLOGUE_INSN (ip, limit, &insn1, &insn2);    }  /* Accept the PIC prologue code if present.  */  pcode = pic_prologue_code;  size = sizeof (pic_prologue_code) / sizeof (*pic_prologue_code);  /* If return addr is saved, we don't use first or last insn of PICstuff.  */  if (fsr->regs[SRP_REGNUM]) {    pcode++;    size-=2;  }  while (size-- && next_ip && (pcode->insn == (pcode->mask & insn1)))    {      pcode++;      ip = next_ip;      next_ip = NEXT_PROLOGUE_INSN (ip, limit, &insn1, &insn2);    }  /* Accept moves of parameter registers to other registers, using     "or rd,rs,0" or "or.u rd,rs,0" or "or rd,r0,rs" or "or rd,rs,r0".     We don't have to worry about walking into the first lines of code,     since the first line number will stop us (assuming we have symbols).     What gcc actually seems to produce is "or rd,r0,rs".  */#define	OR_MOVE_INSN	0x58000000		/* or/or.u with immed of 0 */#define	OR_MOVE_MASK	0xF800FFFF#define	OR_REG_MOVE1_INSN	0xF4005800	/* or rd,r0,rs */#define	OR_REG_MOVE1_MASK	0xFC1FFFE0#define	OR_REG_MOVE2_INSN	0xF4005800	/* or rd,rs,r0 */#define	OR_REG_MOVE2_MASK	0xFC00FFFF  while (next_ip && 	 ((insn1 & OR_MOVE_MASK) == OR_MOVE_INSN ||	  (insn1 & OR_REG_MOVE1_MASK) == OR_REG_MOVE1_INSN ||	  (insn1 & OR_REG_MOVE2_MASK) == OR_REG_MOVE2_INSN	 )	)    {      /* We don't care what moves to where.  The result of the moves  	 has already been reflected in what the compiler tells us is the	 location of these parameters.  */      ip = next_ip;      next_ip = NEXT_PROLOGUE_INSN (ip, limit, &insn1, &insn2);    }  /* We're done with the prologue.  If we don't care about the stack     frame itself, just return.  (Note that fsr->regs has been trashed,     but the one caller who calls with fi==0 passes a dummy there.)  */  if (fi == 0)    return ip;  /* OK, now we have:	sp_offset	original negative displacement of SP	fp_offset	positive displacement between new SP and new FP, or -1	fsr->regs[0..31]	offset from original SP where reg is stored	must_adjust[0..31]	set if corresp. offset was set     The current SP (frame_sp) might not be the original new SP as set     by the function prologue, if alloca has been called.  This can     only occur if fp_offset is set, though (the compiler allocates an     FP when it sees alloca).  In that case, we have the FP,     and can calculate the original new SP from the FP.     Then, we figure out where the arguments and locals are, and     relocate the offsets in fsr->regs to absolute addresses.  */  if (fp_offset != -1) {    /* We have a frame pointer, so get it, and base our calc's on it.  */    frame_fp = (CORE_ADDR) read_next_frame_reg (fi->next, FP_REGNUM);    frame_sp = frame_fp - fp_offset;  } else {    /* We have no frame pointer, therefore frame_sp is still the same value       as set by prologue.  But where is the frame itself?  */    if (must_adjust[SRP_REGNUM]) {      /* Function header saved SRP (r1), the return address.  Frame starts	 4 bytes down from where it was saved.  */      frame_fp = frame_sp + fsr->regs[SRP_REGNUM] - 4;      fi->locals_pointer = frame_fp;    } else {      /* Function header didn't save SRP (r1), so we are in a leaf fn or	 are otherwise confused.  */      frame_fp = -1;    }  }  /* The locals are relative to the FP (whether it exists as an allocated     register, or just as an assumed offset from the SP) */  fi->locals_pointer = frame_fp;  /* The arguments are just above the SP as it was before we adjusted it     on entry.  */  fi->args_pointer = frame_sp - sp_offset;  /* Now that we know the SP value used by the prologue, we know where     it saved all the registers.  */  for (src = 0; src < 32; src++)    if (must_adjust[src])      fsr->regs[src] += frame_sp;   /* The saved value of the SP is always known.  */  /* (we hope...) */  if (fsr->regs[SP_REGNUM] != 0    && fsr->regs[SP_REGNUM] != frame_sp - sp_offset)    fprintf(stderr, "Bad saved SP value %x != %x, offset %x!\n",        fsr->regs[SP_REGNUM],

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -