1 /* libunwind - a platform-independent unwind library
2 Copyright (C) 2006-2007 IBM
4 Corey Ashford <cjashfor@us.ibm.com>
5 Jose Flavio Aguilar Paulino <jflavio@br.ibm.com> <joseflavio@gmail.com>
7 This file is part of libunwind.
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:
17 The above copyright notice and this permission notice shall be
18 included in all copies or substantial portions of the Software.
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. */
31 tdep_access_reg (struct cursor
*c
, unw_regnum_t reg
, unw_word_t
*valp
,
79 case UNW_PPC64_VRSAVE
:
81 case UNW_PPC64_SPE_ACC
:
82 case UNW_PPC64_SPEFSCR
:
83 loc
= c
->dwarf
.loc
[reg
];
89 c
->dwarf
.ip
= *valp
; /* update the IP cache */
90 if (c
->dwarf
.pi_valid
&& (*valp
< c
->dwarf
.pi
.start_ip
91 || *valp
>= c
->dwarf
.pi
.end_ip
))
92 c
->dwarf
.pi_valid
= 0; /* new IP outside of current proc */
100 return -UNW_EREADONLYREG
;
101 *valp
= c
->dwarf
.cfa
;
110 return dwarf_put (&c
->dwarf
, loc
, *valp
);
112 return dwarf_get (&c
->dwarf
, loc
, valp
);
116 tdep_access_fpreg (struct cursor
*c
, unw_regnum_t reg
, unw_fpreg_t
*valp
,
119 struct dwarf_loc loc
;
121 if ((unsigned) (reg
- UNW_PPC64_F0
) < 32)
123 loc
= c
->dwarf
.loc
[reg
];
125 return dwarf_putfp (&c
->dwarf
, loc
, *valp
);
127 return dwarf_getfp (&c
->dwarf
, loc
, valp
);
130 if ((unsigned) (reg
- UNW_PPC64_V0
) < 32)
132 loc
= c
->dwarf
.loc
[reg
];
134 return dwarf_putvr (&c
->dwarf
, loc
, *valp
);
136 return dwarf_getvr (&c
->dwarf
, loc
, valp
);