1 /* libunwind - a platform-independent unwind library
2 Copyright (C) 2001-2004 Hewlett-Packard Co
3 Contributed by David Mosberger-Tang <davidm@hpl.hp.com>
4 Copyright (C) 2013 Linaro Limited
6 This file is part of libunwind.
8 Permission is hereby granted, free of charge, to any person obtaining
9 a copy of this software and associated documentation files (the
10 "Software"), to deal in the Software without restriction, including
11 without limitation the rights to use, copy, modify, merge, publish,
12 distribute, sublicense, and/or sell copies of the Software, and to
13 permit persons to whom the Software is furnished to do so, subject to
14 the following conditions:
16 The above copyright notice and this permission notice shall be
17 included in all copies or substantial portions of the Software.
19 THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
20 EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
21 MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
22 NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
23 LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
24 OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
25 WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */
30 #if defined(__cplusplus) || defined(c_plusplus)
38 #define UNW_TARGET aarch64
39 #define UNW_TARGET_AARCH64 1
41 #define _U_TDEP_QP_TRUE 0 /* see libunwind-dynamic.h */
43 /* This needs to be big enough to accommodate "struct cursor", while
44 leaving some slack for future expansion. Changing this value will
45 require recompiling all users of this library. Stack allocation is
46 relatively cheap and unwind-state copying is relatively rare, so we
47 want to err on making it rather too big than too small. */
49 #define UNW_TDEP_CURSOR_LEN 4096
51 typedef uint64_t unw_word_t
;
52 typedef int64_t unw_sword_t
;
54 typedef long double unw_tdep_fpreg_t
;
58 /* no aarch64-specific auxiliary proc-info */
64 /* 64-bit general registers. */
75 /* Temporary registers. */
84 /* Intra-procedure-call temporary registers. */
88 /* Callee-saved registers. */
101 /* 64-bit frame pointer. */
104 /* 64-bit link register. */
107 /* 64-bit stack pointer. */
112 /* 128-bit FP/Advanced SIMD registers. */
149 /* For AArch64, the CFA is the value of SP (x31) at the call site of the
151 UNW_AARCH64_CFA
= UNW_AARCH64_SP
,
153 UNW_TDEP_LAST_REG
= UNW_AARCH64_FPCR
,
155 UNW_TDEP_IP
= UNW_AARCH64_X30
,
156 UNW_TDEP_SP
= UNW_AARCH64_SP
,
157 UNW_TDEP_EH
= UNW_AARCH64_X0
,
162 /* Use R0 through R3 to pass exception handling information. */
163 #define UNW_TDEP_NUM_EH_REGS 4
165 typedef struct unw_tdep_save_loc
167 /* Additional target-dependent info on a save location. */
172 /* On AArch64, we can directly use ucontext_t as the unwind context. */
173 typedef ucontext_t unw_tdep_context_t
;
175 #include "libunwind-common.h"
176 #include "libunwind-dynamic.h"
178 #define unw_tdep_getcontext(uc) (getcontext (uc), 0)
179 #define unw_tdep_is_fpreg UNW_ARCH_OBJ(is_fpreg)
181 extern int unw_tdep_is_fpreg (int);
183 #if defined(__cplusplus) || defined(c_plusplus)
187 #endif /* LIBUNWIND_H */