1/* libunwind - a platform-independent unwind library
2   Copyright (C) 2008 CodeSourcery
3   Copyright (C) 2012 Tommi Rantala <tt.rantala@gmail.com>
4
5This file is part of libunwind.
6
7Permission is hereby granted, free of charge, to any person obtaining
8a copy of this software and associated documentation files (the
9"Software"), to deal in the Software without restriction, including
10without limitation the rights to use, copy, modify, merge, publish,
11distribute, sublicense, and/or sell copies of the Software, and to
12permit persons to whom the Software is furnished to do so, subject to
13the following conditions:
14
15The above copyright notice and this permission notice shall be
16included in all copies or substantial portions of the Software.
17
18THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
19EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
21NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
22LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
23OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
24WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.  */
25
26#include "unwind_i.h"
27
28PROTECTED int
29unw_get_save_loc (unw_cursor_t *cursor, int reg, unw_save_loc_t *sloc)
30{
31  struct cursor *c = (struct cursor *) cursor;
32  dwarf_loc_t loc;
33
34  switch (reg)
35    {
36    case UNW_SH_R0:
37    case UNW_SH_R1:
38    case UNW_SH_R2:
39    case UNW_SH_R3:
40    case UNW_SH_R4:
41    case UNW_SH_R5:
42    case UNW_SH_R6:
43    case UNW_SH_R7:
44    case UNW_SH_R8:
45    case UNW_SH_R9:
46    case UNW_SH_R10:
47    case UNW_SH_R11:
48    case UNW_SH_R12:
49    case UNW_SH_R13:
50    case UNW_SH_R14:
51    case UNW_SH_R15:
52    case UNW_SH_PC:
53    case UNW_SH_PR:
54      loc = c->dwarf.loc[reg];
55      break;
56
57    default:
58      loc = DWARF_NULL_LOC;	/* default to "not saved" */
59      break;
60    }
61
62  memset (sloc, 0, sizeof (*sloc));
63
64  if (DWARF_IS_NULL_LOC (loc))
65    {
66      sloc->type = UNW_SLT_NONE;
67      return 0;
68    }
69
70#if !defined(UNW_LOCAL_ONLY)
71  if (DWARF_IS_REG_LOC (loc))
72    {
73      sloc->type = UNW_SLT_REG;
74      sloc->u.regnum = DWARF_GET_LOC (loc);
75    }
76  else
77#endif
78    {
79      sloc->type = UNW_SLT_MEMORY;
80      sloc->u.addr = DWARF_GET_LOC (loc);
81    }
82  return 0;
83}
84