Home | History | Annotate | Download | only in ppc64
      1 /* libunwind - a platform-independent unwind library
      2    Copyright (C) 2006-2007 IBM
      3    Contributed by
      4      Corey Ashford <cjashfor (at) us.ibm.com>
      5      Jose Flavio Aguilar Paulino <jflavio (at) br.ibm.com> <joseflavio (at) gmail.com>
      6 
      7 This file is part of libunwind.
      8 
      9 Permission is hereby granted, free of charge, to any person obtaining
     10 a copy of this software and associated documentation files (the
     11 "Software"), to deal in the Software without restriction, including
     12 without limitation the rights to use, copy, modify, merge, publish,
     13 distribute, sublicense, and/or sell copies of the Software, and to
     14 permit persons to whom the Software is furnished to do so, subject to
     15 the following conditions:
     16 
     17 The above copyright notice and this permission notice shall be
     18 included in all copies or substantial portions of the Software.
     19 
     20 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
     21 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
     22 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
     23 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
     24 LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
     25 OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
     26 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.  */
     27 
     28 #include "unwind_i.h"
     29 
     30 HIDDEN int
     31 tdep_access_reg (struct cursor *c, unw_regnum_t reg, unw_word_t *valp,
     32 		 int write)
     33 {
     34   struct dwarf_loc loc;
     35 
     36   switch (reg)
     37     {
     38     case UNW_TDEP_IP:
     39       if (write)
     40 	{
     41 	  c->dwarf.ip = *valp;	/* update the IP cache */
     42 	  if (c->dwarf.pi_valid && (*valp < c->dwarf.pi.start_ip
     43 				    || *valp >= c->dwarf.pi.end_ip))
     44 	    c->dwarf.pi_valid = 0;	/* new IP outside of current proc */
     45 	}
     46       else
     47 	*valp = c->dwarf.ip;
     48       return 0;
     49 
     50     case UNW_TDEP_SP:
     51       if (write)
     52 	return -UNW_EREADONLYREG;
     53       *valp = c->dwarf.cfa;
     54       return 0;
     55 
     56 
     57     default:
     58       break;
     59     }
     60 
     61   /* make sure it's not an FP or VR register */
     62   if ((((unsigned) (reg - UNW_PPC64_F0)) <= 31) ||
     63       (((unsigned) (reg - UNW_PPC64_V0)) <= 31))
     64     return -UNW_EBADREG;
     65 
     66   loc = c->dwarf.loc[reg];
     67 
     68   if (write)
     69     return dwarf_put (&c->dwarf, loc, *valp);
     70   else
     71     return dwarf_get (&c->dwarf, loc, valp);
     72 }
     73 
     74 HIDDEN int
     75 tdep_access_fpreg (struct cursor *c, unw_regnum_t reg, unw_fpreg_t *valp,
     76 		   int write)
     77 {
     78   struct dwarf_loc loc;
     79 
     80   if ((unsigned) (reg - UNW_PPC64_F0) < 32)
     81   {
     82     loc = c->dwarf.loc[reg];
     83     if (write)
     84       return dwarf_putfp (&c->dwarf, loc, *valp);
     85     else
     86       return dwarf_getfp (&c->dwarf, loc, valp);
     87   }
     88   else
     89   if ((unsigned) (reg - UNW_PPC64_V0) < 32)
     90   {
     91     loc = c->dwarf.loc[reg];
     92     if (write)
     93       return dwarf_putvr (&c->dwarf, loc, *valp);
     94     else
     95       return dwarf_getvr (&c->dwarf, loc, valp);
     96   }
     97 
     98   return -UNW_EBADREG;
     99 }
    100 
    101