Home | History | Annotate | Line # | Download | only in gdb
alpha-mdebug-tdep.c revision 1.6
      1 /* Target-dependent mdebug code for the ALPHA architecture.
      2    Copyright (C) 1993-2016 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 3 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, see <http://www.gnu.org/licenses/>.  */
     18 
     19 #include "defs.h"
     20 #include "frame.h"
     21 #include "frame-unwind.h"
     22 #include "frame-base.h"
     23 #include "symtab.h"
     24 #include "gdbcore.h"
     25 #include "block.h"
     26 #include "trad-frame.h"
     27 
     28 #include "alpha-tdep.h"
     29 #include "mdebugread.h"
     30 
     31 /* FIXME: Some of this code should perhaps be merged with mips.  */
     32 
     33 /* *INDENT-OFF* */
     34 /* Layout of a stack frame on the alpha:
     35 
     36                 |				|
     37  pdr members:	|  7th ... nth arg,		|
     38                 |  `pushed' by caller.		|
     39                 |				|
     40 ----------------|-------------------------------|<--  old_sp == vfp
     41    ^  ^  ^  ^	|				|
     42    |  |  |  |	|				|
     43    |  |localoff	|  Copies of 1st .. 6th		|
     44    |  |  |  |	|  argument if necessary.	|
     45    |  |  |  v	|				|
     46    |  |  |  ---	|-------------------------------|<-- LOCALS_ADDRESS
     47    |  |  |      |				|
     48    |  |  |      |  Locals and temporaries.	|
     49    |  |  |      |				|
     50    |  |  |      |-------------------------------|
     51    |  |  |      |				|
     52    |-fregoffset	|  Saved float registers.	|
     53    |  |  |      |  F9				|
     54    |  |  |      |   .				|
     55    |  |  |      |   .				|
     56    |  |  |      |  F2				|
     57    |  |  v      |				|
     58    |  |  -------|-------------------------------|
     59    |  |         |				|
     60    |  |         |  Saved registers.		|
     61    |  |         |  S6				|
     62    |-regoffset	|   .				|
     63    |  |         |   .				|
     64    |  |         |  S0				|
     65    |  |         |  pdr.pcreg			|
     66    |  v         |				|
     67    |  ----------|-------------------------------|
     68    |            |				|
     69  frameoffset    |  Argument build area, gets	|
     70    |            |  7th ... nth arg for any	|
     71    |            |  called procedure.		|
     72    v            |  				|
     73    -------------|-------------------------------|<-- sp
     74                 |				|
     75 */
     76 /* *INDENT-ON* */
     77 
     78 #define PROC_LOW_ADDR(proc) ((proc)->pdr.adr)
     79 #define PROC_FRAME_OFFSET(proc) ((proc)->pdr.frameoffset)
     80 #define PROC_FRAME_REG(proc) ((proc)->pdr.framereg)
     81 #define PROC_REG_MASK(proc) ((proc)->pdr.regmask)
     82 #define PROC_FREG_MASK(proc) ((proc)->pdr.fregmask)
     83 #define PROC_REG_OFFSET(proc) ((proc)->pdr.regoffset)
     84 #define PROC_FREG_OFFSET(proc) ((proc)->pdr.fregoffset)
     85 #define PROC_PC_REG(proc) ((proc)->pdr.pcreg)
     86 #define PROC_LOCALOFF(proc) ((proc)->pdr.localoff)
     87 
     88 /* Locate the mdebug PDR for the given PC.  Return null if one can't
     90    be found; you'll have to fall back to other methods in that case.  */
     91 
     92 static struct mdebug_extra_func_info *
     93 find_proc_desc (CORE_ADDR pc)
     94 {
     95   const struct block *b = block_for_pc (pc);
     96   struct mdebug_extra_func_info *proc_desc = NULL;
     97   struct symbol *sym = NULL;
     98   const char *sh_name = NULL;
     99 
    100   if (b)
    101     {
    102       CORE_ADDR startaddr;
    103       find_pc_partial_function (pc, &sh_name, &startaddr, NULL);
    104 
    105       if (startaddr > BLOCK_START (b))
    106 	/* This is the "pathological" case referred to in a comment in
    107 	   print_frame_info.  It might be better to move this check into
    108 	   symbol reading.  */
    109 	sym = NULL;
    110       else
    111 	sym = lookup_symbol (MDEBUG_EFI_SYMBOL_NAME, b, LABEL_DOMAIN,
    112 			     0).symbol;
    113     }
    114 
    115   if (sym)
    116     {
    117       proc_desc = (struct mdebug_extra_func_info *) SYMBOL_VALUE_BYTES (sym);
    118 
    119       /* Correct incorrect setjmp procedure descriptor from the library
    120          to make backtrace through setjmp work.  */
    121       if (proc_desc->pdr.pcreg == 0
    122 	  && strcmp (sh_name, "setjmp") == 0)
    123 	{
    124 	  proc_desc->pdr.pcreg = ALPHA_RA_REGNUM;
    125 	  proc_desc->pdr.regmask = 0x80000000;
    126 	  proc_desc->pdr.regoffset = -4;
    127 	}
    128 
    129       /* If we never found a PDR for this function in symbol reading,
    130 	 then examine prologues to find the information.  */
    131       if (proc_desc->pdr.framereg == -1)
    132 	proc_desc = NULL;
    133     }
    134 
    135   return proc_desc;
    136 }
    137 
    138 /* Return a non-zero result if the function is frameless; zero otherwise.  */
    139 
    140 static int
    141 alpha_mdebug_frameless (struct mdebug_extra_func_info *proc_desc)
    142 {
    143   return (PROC_FRAME_REG (proc_desc) == ALPHA_SP_REGNUM
    144 	  && PROC_FRAME_OFFSET (proc_desc) == 0);
    145 }
    146 
    147 /* This returns the PC of the first inst after the prologue.  If we can't
    148    find the prologue, then return 0.  */
    149 
    150 static CORE_ADDR
    151 alpha_mdebug_after_prologue (CORE_ADDR pc,
    152 			     struct mdebug_extra_func_info *proc_desc)
    153 {
    154   if (proc_desc)
    155     {
    156       /* If function is frameless, then we need to do it the hard way.  I
    157          strongly suspect that frameless always means prologueless...  */
    158       if (alpha_mdebug_frameless (proc_desc))
    159 	return 0;
    160     }
    161 
    162   return alpha_after_prologue (pc);
    163 }
    164 
    165 /* Return non-zero if we *might* be in a function prologue.  Return zero
    166    if we are definitively *not* in a function prologue.  */
    167 
    168 static int
    169 alpha_mdebug_in_prologue (CORE_ADDR pc,
    170 			  struct mdebug_extra_func_info *proc_desc)
    171 {
    172   CORE_ADDR after_prologue_pc = alpha_mdebug_after_prologue (pc, proc_desc);
    173   return (after_prologue_pc == 0 || pc < after_prologue_pc);
    174 }
    175 
    176 
    177 /* Frame unwinder that reads mdebug PDRs.  */
    179 
    180 struct alpha_mdebug_unwind_cache
    181 {
    182   struct mdebug_extra_func_info *proc_desc;
    183   CORE_ADDR vfp;
    184   struct trad_frame_saved_reg *saved_regs;
    185 };
    186 
    187 /* Extract all of the information about the frame from PROC_DESC
    188    and store the resulting register save locations in the structure.  */
    189 
    190 static struct alpha_mdebug_unwind_cache *
    191 alpha_mdebug_frame_unwind_cache (struct frame_info *this_frame,
    192 				 void **this_prologue_cache)
    193 {
    194   struct alpha_mdebug_unwind_cache *info;
    195   struct mdebug_extra_func_info *proc_desc;
    196   ULONGEST vfp;
    197   CORE_ADDR pc, reg_position;
    198   unsigned long mask;
    199   int ireg, returnreg;
    200 
    201   if (*this_prologue_cache)
    202     return (struct alpha_mdebug_unwind_cache *) *this_prologue_cache;
    203 
    204   info = FRAME_OBSTACK_ZALLOC (struct alpha_mdebug_unwind_cache);
    205   *this_prologue_cache = info;
    206   pc = get_frame_address_in_block (this_frame);
    207 
    208   /* ??? We don't seem to be able to cache the lookup of the PDR
    209      from alpha_mdebug_frame_p.  It'd be nice if we could change
    210      the arguments to that function.  Oh well.  */
    211   proc_desc = find_proc_desc (pc);
    212   info->proc_desc = proc_desc;
    213   gdb_assert (proc_desc != NULL);
    214 
    215   info->saved_regs = trad_frame_alloc_saved_regs (this_frame);
    216 
    217   /* The VFP of the frame is at FRAME_REG+FRAME_OFFSET.  */
    218   vfp = get_frame_register_unsigned (this_frame, PROC_FRAME_REG (proc_desc));
    219   vfp += PROC_FRAME_OFFSET (info->proc_desc);
    220   info->vfp = vfp;
    221 
    222   /* Fill in the offsets for the registers which gen_mask says were saved.  */
    223 
    224   reg_position = vfp + PROC_REG_OFFSET (proc_desc);
    225   mask = PROC_REG_MASK (proc_desc);
    226   returnreg = PROC_PC_REG (proc_desc);
    227 
    228   /* Note that RA is always saved first, regardless of its actual
    229      register number.  */
    230   if (mask & (1 << returnreg))
    231     {
    232       /* Clear bit for RA so we don't save it again later.  */
    233       mask &= ~(1 << returnreg);
    234 
    235       info->saved_regs[returnreg].addr = reg_position;
    236       reg_position += 8;
    237     }
    238 
    239   for (ireg = 0; ireg <= 31; ++ireg)
    240     if (mask & (1 << ireg))
    241       {
    242 	info->saved_regs[ireg].addr = reg_position;
    243 	reg_position += 8;
    244       }
    245 
    246   reg_position = vfp + PROC_FREG_OFFSET (proc_desc);
    247   mask = PROC_FREG_MASK (proc_desc);
    248 
    249   for (ireg = 0; ireg <= 31; ++ireg)
    250     if (mask & (1 << ireg))
    251       {
    252 	info->saved_regs[ALPHA_FP0_REGNUM + ireg].addr = reg_position;
    253 	reg_position += 8;
    254       }
    255 
    256   /* The stack pointer of the previous frame is computed by popping
    257      the current stack frame.  */
    258   if (!trad_frame_addr_p (info->saved_regs, ALPHA_SP_REGNUM))
    259    trad_frame_set_value (info->saved_regs, ALPHA_SP_REGNUM, vfp);
    260 
    261   return info;
    262 }
    263 
    264 /* Given a GDB frame, determine the address of the calling function's
    265    frame.  This will be used to create a new GDB frame struct.  */
    266 
    267 static void
    268 alpha_mdebug_frame_this_id (struct frame_info *this_frame,
    269 			    void **this_prologue_cache,
    270 			    struct frame_id *this_id)
    271 {
    272   struct alpha_mdebug_unwind_cache *info
    273     = alpha_mdebug_frame_unwind_cache (this_frame, this_prologue_cache);
    274 
    275   *this_id = frame_id_build (info->vfp, get_frame_func (this_frame));
    276 }
    277 
    278 /* Retrieve the value of REGNUM in FRAME.  Don't give up!  */
    279 
    280 static struct value *
    281 alpha_mdebug_frame_prev_register (struct frame_info *this_frame,
    282 				  void **this_prologue_cache, int regnum)
    283 {
    284   struct alpha_mdebug_unwind_cache *info
    285     = alpha_mdebug_frame_unwind_cache (this_frame, this_prologue_cache);
    286 
    287   /* The PC of the previous frame is stored in the link register of
    288      the current frame.  Frob regnum so that we pull the value from
    289      the correct place.  */
    290   if (regnum == ALPHA_PC_REGNUM)
    291     regnum = PROC_PC_REG (info->proc_desc);
    292 
    293   return trad_frame_get_prev_register (this_frame, info->saved_regs, regnum);
    294 }
    295 
    296 /* Return a non-zero result if the size of the stack frame exceeds the
    297    maximum debuggable frame size (512 Kbytes); zero otherwise.  */
    298 
    299 static int
    300 alpha_mdebug_max_frame_size_exceeded (struct mdebug_extra_func_info *proc_desc)
    301 {
    302   /* If frame offset is null, we can be in two cases: either the
    303      function is frameless (the stack frame is null) or its
    304      frame exceeds the maximum debuggable frame size (512 Kbytes).  */
    305 
    306   return (PROC_FRAME_OFFSET (proc_desc) == 0
    307 	  && !alpha_mdebug_frameless (proc_desc));
    308 }
    309 
    310 static int
    311 alpha_mdebug_frame_sniffer (const struct frame_unwind *self,
    312                             struct frame_info *this_frame,
    313                             void **this_cache)
    314 {
    315   CORE_ADDR pc = get_frame_address_in_block (this_frame);
    316   struct mdebug_extra_func_info *proc_desc;
    317 
    318   /* If this PC does not map to a PDR, then clearly this isn't an
    319      mdebug frame.  */
    320   proc_desc = find_proc_desc (pc);
    321   if (proc_desc == NULL)
    322     return 0;
    323 
    324   /* If we're in the prologue, the PDR for this frame is not yet valid.
    325      Say no here and we'll fall back on the heuristic unwinder.  */
    326   if (alpha_mdebug_in_prologue (pc, proc_desc))
    327     return 0;
    328 
    329   /* If the maximum debuggable frame size has been exceeded, the
    330      proc desc is bogus.  Fall back on the heuristic unwinder.  */
    331   if (alpha_mdebug_max_frame_size_exceeded (proc_desc))
    332     return 0;
    333 
    334   return 1;
    335 }
    336 
    337 static const struct frame_unwind alpha_mdebug_frame_unwind = {
    338   NORMAL_FRAME,
    339   default_frame_unwind_stop_reason,
    340   alpha_mdebug_frame_this_id,
    341   alpha_mdebug_frame_prev_register,
    342   NULL,
    343   alpha_mdebug_frame_sniffer
    344 };
    345 
    346 static CORE_ADDR
    347 alpha_mdebug_frame_base_address (struct frame_info *this_frame,
    348 				 void **this_prologue_cache)
    349 {
    350   struct alpha_mdebug_unwind_cache *info
    351     = alpha_mdebug_frame_unwind_cache (this_frame, this_prologue_cache);
    352 
    353   return info->vfp;
    354 }
    355 
    356 static CORE_ADDR
    357 alpha_mdebug_frame_locals_address (struct frame_info *this_frame,
    358 				   void **this_prologue_cache)
    359 {
    360   struct alpha_mdebug_unwind_cache *info
    361     = alpha_mdebug_frame_unwind_cache (this_frame, this_prologue_cache);
    362 
    363   return info->vfp - PROC_LOCALOFF (info->proc_desc);
    364 }
    365 
    366 static CORE_ADDR
    367 alpha_mdebug_frame_args_address (struct frame_info *this_frame,
    368 				 void **this_prologue_cache)
    369 {
    370   struct alpha_mdebug_unwind_cache *info
    371     = alpha_mdebug_frame_unwind_cache (this_frame, this_prologue_cache);
    372 
    373   return info->vfp - ALPHA_NUM_ARG_REGS * 8;
    374 }
    375 
    376 static const struct frame_base alpha_mdebug_frame_base = {
    377   &alpha_mdebug_frame_unwind,
    378   alpha_mdebug_frame_base_address,
    379   alpha_mdebug_frame_locals_address,
    380   alpha_mdebug_frame_args_address
    381 };
    382 
    383 static const struct frame_base *
    384 alpha_mdebug_frame_base_sniffer (struct frame_info *this_frame)
    385 {
    386   CORE_ADDR pc = get_frame_address_in_block (this_frame);
    387   struct mdebug_extra_func_info *proc_desc;
    388 
    389   /* If this PC does not map to a PDR, then clearly this isn't an
    390      mdebug frame.  */
    391   proc_desc = find_proc_desc (pc);
    392   if (proc_desc == NULL)
    393     return NULL;
    394 
    395   /* If the maximum debuggable frame size has been exceeded, the
    396      proc desc is bogus.  Fall back on the heuristic unwinder.  */
    397   if (alpha_mdebug_max_frame_size_exceeded (proc_desc))
    398     return 0;
    399 
    400   return &alpha_mdebug_frame_base;
    401 }
    402 
    403 
    404 void
    406 alpha_mdebug_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
    407 {
    408   frame_unwind_append_unwinder (gdbarch, &alpha_mdebug_frame_unwind);
    409   frame_base_append_sniffer (gdbarch, alpha_mdebug_frame_base_sniffer);
    410 }
    411