1 /* libunwind - a platform-independent unwind library
2 Copyright (C) 2004 Hewlett-Packard Co
3 Contributed by David Mosberger-Tang <davidm@hpl.hp.com>
5 This file is part of libunwind.
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:
15 The above copyright notice and this permission notice shall be
16 included in all copies or substantial portions of the Software.
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. */
29 unw_get_save_loc (unw_cursor_t
*cursor
, int reg
, unw_save_loc_t
*sloc
)
31 struct cursor
*c
= (struct cursor
*) cursor
;
34 loc
= DWARF_NULL_LOC
; /* default to "not saved" */
38 case UNW_X86_EIP
: loc
= c
->dwarf
.loc
[EIP
]; break;
39 case UNW_X86_CFA
: break;
40 case UNW_X86_EAX
: loc
= c
->dwarf
.loc
[EAX
]; break;
41 case UNW_X86_ECX
: loc
= c
->dwarf
.loc
[ECX
]; break;
42 case UNW_X86_EDX
: loc
= c
->dwarf
.loc
[EDX
]; break;
43 case UNW_X86_EBX
: loc
= c
->dwarf
.loc
[EBX
]; break;
44 case UNW_X86_ESP
: loc
= c
->dwarf
.loc
[ESP
]; break;
45 case UNW_X86_EBP
: loc
= c
->dwarf
.loc
[EBP
]; break;
46 case UNW_X86_ESI
: loc
= c
->dwarf
.loc
[ESI
]; break;
47 case UNW_X86_EDI
: loc
= c
->dwarf
.loc
[EDI
]; break;
48 case UNW_X86_EFLAGS
: loc
= c
->dwarf
.loc
[EFLAGS
]; break;
49 case UNW_X86_TRAPNO
: loc
= c
->dwarf
.loc
[TRAPNO
]; break;
50 case UNW_X86_ST0
: loc
= c
->dwarf
.loc
[ST0
]; break;
69 loc
= x86_scratch_loc (c
, reg
);
72 /* stacked fp registers */
80 /* SSE fp registers */
105 loc
= x86_scratch_loc (c
, reg
);
112 memset (sloc
, 0, sizeof (*sloc
));
114 if (DWARF_IS_NULL_LOC (loc
))
116 sloc
->type
= UNW_SLT_NONE
;
120 #if !defined(UNW_LOCAL_ONLY)
121 if (DWARF_IS_REG_LOC (loc
))
123 sloc
->type
= UNW_SLT_REG
;
124 sloc
->u
.regnum
= DWARF_GET_LOC (loc
);
129 sloc
->type
= UNW_SLT_MEMORY
;
130 sloc
->u
.addr
= DWARF_GET_LOC (loc
);