mostang.com!davidm | 26f6cf7 | 2003-01-21 08:08:32 +0000 | [diff] [blame] | 1 | /* libunwind - a platform-independent unwind library |
hp.com!davidm | c224ec6 | 2005-05-03 09:13:17 +0000 | [diff] [blame^] | 2 | Copyright (C) 2003-2004 Hewlett-Packard Co |
mostang.com!davidm | 26f6cf7 | 2003-01-21 08:08:32 +0000 | [diff] [blame] | 3 | |
| 4 | This file is part of libunwind. |
| 5 | |
| 6 | Permission is hereby granted, free of charge, to any person obtaining |
| 7 | a copy of this software and associated documentation files (the |
| 8 | "Software"), to deal in the Software without restriction, including |
| 9 | without limitation the rights to use, copy, modify, merge, publish, |
| 10 | distribute, sublicense, and/or sell copies of the Software, and to |
| 11 | permit persons to whom the Software is furnished to do so, subject to |
| 12 | the following conditions: |
| 13 | |
| 14 | The above copyright notice and this permission notice shall be |
| 15 | included in all copies or substantial portions of the Software. |
| 16 | |
| 17 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, |
| 18 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF |
| 19 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND |
| 20 | NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE |
| 21 | LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION |
| 22 | OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION |
| 23 | WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. */ |
| 24 | |
| 25 | #ifndef LIBUNWIND_H |
| 26 | #define LIBUNWIND_H |
| 27 | |
mostang.com!davidm | 337c0ad | 2003-03-28 07:43:22 +0000 | [diff] [blame] | 28 | #if defined(__cplusplus) || defined(c_plusplus) |
| 29 | extern "C" { |
| 30 | #endif |
| 31 | |
mostang.com!davidm | 58e0e10 | 2003-03-19 19:25:18 +0000 | [diff] [blame] | 32 | #include <inttypes.h> |
mostang.com!davidm | 26f6cf7 | 2003-01-21 08:08:32 +0000 | [diff] [blame] | 33 | #include <ucontext.h> |
| 34 | |
| 35 | #define UNW_TARGET hppa |
| 36 | #define UNW_TARGET_HPPA 1 |
| 37 | |
hp.com!davidm | c224ec6 | 2005-05-03 09:13:17 +0000 | [diff] [blame^] | 38 | #define _U_TDEP_QP_TRUE 0 /* see libunwind-dynamic.h */ |
| 39 | |
mostang.com!davidm | 26f6cf7 | 2003-01-21 08:08:32 +0000 | [diff] [blame] | 40 | /* This needs to be big enough to accommodate "struct cursor", while |
| 41 | leaving some slack for future expansion. Changing this value will |
| 42 | require recompiling all users of this library. Stack allocation is |
| 43 | relatively cheap and unwind-state copying is relatively rare, so we |
| 44 | want to err on making it rather too big than too small. */ |
hp.com!davidm | c224ec6 | 2005-05-03 09:13:17 +0000 | [diff] [blame^] | 45 | #define UNW_TDEP_CURSOR_LEN 511 |
mostang.com!davidm | 26f6cf7 | 2003-01-21 08:08:32 +0000 | [diff] [blame] | 46 | |
hp.com!davidm | c224ec6 | 2005-05-03 09:13:17 +0000 | [diff] [blame^] | 47 | typedef uint32_t unw_word_t; |
hp.com!davidm | 77b06d6 | 2003-12-20 11:20:42 +0000 | [diff] [blame] | 48 | |
hp.com!davidm | c224ec6 | 2005-05-03 09:13:17 +0000 | [diff] [blame^] | 49 | typedef union |
hp.com!davidm | 77b06d6 | 2003-12-20 11:20:42 +0000 | [diff] [blame] | 50 | { |
hp.com!davidm | c224ec6 | 2005-05-03 09:13:17 +0000 | [diff] [blame^] | 51 | struct { unw_word_t bits[2]; } raw; |
| 52 | double val; |
hp.com!davidm | 77b06d6 | 2003-12-20 11:20:42 +0000 | [diff] [blame] | 53 | } |
hp.com!davidm | c224ec6 | 2005-05-03 09:13:17 +0000 | [diff] [blame^] | 54 | unw_tdep_fpreg_t; |
mostang.com!davidm | 26f6cf7 | 2003-01-21 08:08:32 +0000 | [diff] [blame] | 55 | |
| 56 | typedef enum |
| 57 | { |
hp.com!davidm | c224ec6 | 2005-05-03 09:13:17 +0000 | [diff] [blame^] | 58 | /* Note: general registers are expected to start with index 0. |
mostang.com!davidm | 26f6cf7 | 2003-01-21 08:08:32 +0000 | [diff] [blame] | 59 | This convention facilitates architecture-independent |
| 60 | implementation of the C++ exception handling ABI. See |
| 61 | _Unwind_SetGR() and _Unwind_GetGR() for details. */ |
| 62 | UNW_HPPA_GR = 0, |
hp.com!davidm | c224ec6 | 2005-05-03 09:13:17 +0000 | [diff] [blame^] | 63 | UNW_HPPA_RP = 2, /* return pointer */ |
| 64 | UNW_HPPA_FP = 3, /* frame pointer */ |
mostang.com!davidm | 26f6cf7 | 2003-01-21 08:08:32 +0000 | [diff] [blame] | 65 | UNW_HPPA_SP = UNW_HPPA_GR + 30, |
| 66 | |
| 67 | UNW_HPPA_FR = UNW_HPPA_GR + 32, |
| 68 | |
| 69 | UNW_HPPA_IP = UNW_HPPA_FR + 32, /* instruction pointer */ |
| 70 | |
| 71 | /* other "preserved" registers (fpsr etc.)... */ |
| 72 | |
hp.com!davidm | c224ec6 | 2005-05-03 09:13:17 +0000 | [diff] [blame^] | 73 | /* PA-RISC has 4 exception-argument registers but they're not |
| 74 | contiguous. To deal with this, we define 4 pseudo |
| 75 | exception-handling registers which we then alias to the actual |
| 76 | physical register. */ |
| 77 | |
| 78 | UNW_HPPA_EH0 = UNW_HPPA_IP + 1, /* alias for UNW_HPPA_GR + 20 */ |
| 79 | UNW_HPPA_EH1 = UNW_HPPA_EH0 + 1, /* alias for UNW_HPPA_GR + 21 */ |
| 80 | UNW_HPPA_EH2 = UNW_HPPA_EH1 + 1, /* alias for UNW_HPPA_GR + 22 */ |
| 81 | UNW_HPPA_EH3 = UNW_HPPA_EH2 + 1, /* alias for UNW_HPPA_GR + 31 */ |
| 82 | |
| 83 | /* frame info (read-only) */ |
| 84 | UNW_HPPA_CFA, |
| 85 | |
mostang.com!davidm | 26f6cf7 | 2003-01-21 08:08:32 +0000 | [diff] [blame] | 86 | UNW_TDEP_LAST_REG = UNW_HPPA_IP, |
| 87 | |
| 88 | UNW_TDEP_IP = UNW_HPPA_IP, |
hp.com!davidm | c224ec6 | 2005-05-03 09:13:17 +0000 | [diff] [blame^] | 89 | UNW_TDEP_SP = UNW_HPPA_SP, |
| 90 | UNW_TDEP_EH = UNW_HPPA_EH0 |
mostang.com!davidm | 26f6cf7 | 2003-01-21 08:08:32 +0000 | [diff] [blame] | 91 | } |
| 92 | hppa_regnum_t; |
| 93 | |
hp.com!davidm | c224ec6 | 2005-05-03 09:13:17 +0000 | [diff] [blame^] | 94 | #define UNW_TDEP_NUM_EH_REGS 4 |
| 95 | |
mostang.com!davidm | 26f6cf7 | 2003-01-21 08:08:32 +0000 | [diff] [blame] | 96 | typedef struct unw_tdep_save_loc |
| 97 | { |
| 98 | /* Additional target-dependent info on a save location. */ |
| 99 | } |
| 100 | unw_tdep_save_loc_t; |
| 101 | |
| 102 | /* On PA-RISC, we can directly use ucontext_t as the unwind context. */ |
| 103 | typedef ucontext_t unw_tdep_context_t; |
| 104 | |
hp.com!davidm | c224ec6 | 2005-05-03 09:13:17 +0000 | [diff] [blame^] | 105 | #define unw_tdep_is_fpreg(r) ((unsigned) ((r) - UNW_HPPA_FR) < 32) |
mostang.com!davidm | 26f6cf7 | 2003-01-21 08:08:32 +0000 | [diff] [blame] | 106 | |
hp.com!davidm | 77b06d6 | 2003-12-20 11:20:42 +0000 | [diff] [blame] | 107 | #include "libunwind-dynamic.h" |
hp.com!davidm | c224ec6 | 2005-05-03 09:13:17 +0000 | [diff] [blame^] | 108 | |
| 109 | typedef struct |
| 110 | { |
| 111 | /* no PA-RISC-specific auxiliary proc-info */ |
| 112 | } |
| 113 | unw_tdep_proc_info_t; |
| 114 | |
mostang.com!davidm | 26f6cf7 | 2003-01-21 08:08:32 +0000 | [diff] [blame] | 115 | #include "libunwind-common.h" |
| 116 | |
hp.com!davidm | c224ec6 | 2005-05-03 09:13:17 +0000 | [diff] [blame^] | 117 | #define unw_tdep_getcontext UNW_ARCH_OBJ (getcontext) |
| 118 | extern int unw_tdep_getcontext (unw_tdep_context_t *); |
| 119 | |
mostang.com!davidm | 337c0ad | 2003-03-28 07:43:22 +0000 | [diff] [blame] | 120 | #if defined(__cplusplus) || defined(c_plusplus) |
| 121 | } |
| 122 | #endif |
| 123 | |
mostang.com!davidm | 26f6cf7 | 2003-01-21 08:08:32 +0000 | [diff] [blame] | 124 | #endif /* LIBUNWIND_H */ |