1 /* libunwind - a platform-independent unwind library
2 Copyright (C) 2008 CodeSourcery
3 Copyright (C) 2021 Zhaofeng Li
4
5 This file is part of libunwind.
6
7 Permission is hereby granted, free of charge, to any person obtaining
8 a copy of this software and associated documentation files (the
9 "Software"), to deal in the Software without restriction, including
10 without limitation the rights to use, copy, modify, merge, publish,
11 distribute, sublicense, and/or sell copies of the Software, and to
12 permit persons to whom the Software is furnished to do so, subject to
13 the following conditions:
14
15 The above copyright notice and this permission notice shall be
16 included in all copies or substantial portions of the Software.
17
18 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
19 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
20 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
21 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
22 LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
23 OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
24 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
25
26 #include "unwind_i.h"
27
28 int
unw_get_save_loc(unw_cursor_t * cursor,int reg,unw_save_loc_t * sloc)29 unw_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_RISCV_X1:
37 case UNW_RISCV_X2:
38 case UNW_RISCV_X3:
39 case UNW_RISCV_X4:
40 case UNW_RISCV_X5:
41 case UNW_RISCV_X6:
42 case UNW_RISCV_X7:
43 case UNW_RISCV_X8:
44 case UNW_RISCV_X9:
45 case UNW_RISCV_X10:
46 case UNW_RISCV_X11:
47 case UNW_RISCV_X12:
48 case UNW_RISCV_X13:
49 case UNW_RISCV_X14:
50 case UNW_RISCV_X15:
51 case UNW_RISCV_X16:
52 case UNW_RISCV_X17:
53 case UNW_RISCV_X18:
54 case UNW_RISCV_X19:
55 case UNW_RISCV_X20:
56 case UNW_RISCV_X21:
57 case UNW_RISCV_X22:
58 case UNW_RISCV_X23:
59 case UNW_RISCV_X24:
60 case UNW_RISCV_X25:
61 case UNW_RISCV_X26:
62 case UNW_RISCV_X27:
63 case UNW_RISCV_X28:
64 case UNW_RISCV_X29:
65 case UNW_RISCV_X30:
66 case UNW_RISCV_X31:
67 case UNW_RISCV_PC:
68 loc = c->dwarf.loc[reg - UNW_RISCV_X0];
69 break;
70
71 default:
72 loc = DWARF_NULL_LOC; /* default to "not saved" */
73 break;
74 }
75
76 memset (sloc, 0, sizeof (*sloc));
77
78 if (DWARF_IS_NULL_LOC (loc))
79 {
80 sloc->type = UNW_SLT_NONE;
81 return 0;
82 }
83
84 #if !defined(UNW_LOCAL_ONLY)
85 if (DWARF_IS_REG_LOC (loc))
86 {
87 sloc->type = UNW_SLT_REG;
88 sloc->u.regnum = DWARF_GET_LOC (loc);
89 }
90 else
91 #endif
92 {
93 sloc->type = UNW_SLT_MEMORY;
94 sloc->u.addr = DWARF_GET_LOC (loc);
95 }
96 return 0;
97 }
98