Commit | Line | Data |
---|---|---|
dc129d82 | 1 | /* Common target dependent code for GDB on Alpha systems. |
0b302171 JB |
2 | Copyright (C) 1993-1996, 1998-2000, 2002-2003, 2007-2012 Free |
3 | Software Foundation, Inc. | |
dc129d82 JT |
4 | |
5 | This file is part of GDB. | |
6 | ||
7 | This program is free software; you can redistribute it and/or modify | |
8 | it under the terms of the GNU General Public License as published by | |
a9762ec7 | 9 | the Free Software Foundation; either version 3 of the License, or |
dc129d82 JT |
10 | (at your option) any later version. |
11 | ||
12 | This program is distributed in the hope that it will be useful, | |
13 | but WITHOUT ANY WARRANTY; without even the implied warranty of | |
14 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
15 | GNU General Public License for more details. | |
16 | ||
17 | You should have received a copy of the GNU General Public License | |
a9762ec7 | 18 | along with this program. If not, see <http://www.gnu.org/licenses/>. */ |
dc129d82 JT |
19 | |
20 | #ifndef ALPHA_TDEP_H | |
21 | #define ALPHA_TDEP_H | |
22 | ||
390c1522 UW |
23 | struct regcache; |
24 | ||
dc129d82 | 25 | /* Say how long (ordinary) registers are. This is a piece of bogosity |
3acba339 AC |
26 | used in push_word and a few other places; register_size() is the |
27 | real way to know how big a register is. */ | |
dc129d82 JT |
28 | #define ALPHA_REGISTER_SIZE 8 |
29 | ||
30 | /* Number of machine registers. */ | |
87d1b352 | 31 | #define ALPHA_NUM_REGS 67 |
dc129d82 | 32 | |
0ba6dca9 AC |
33 | /* Register numbers of various important registers. Note that most of |
34 | these values are "real" register numbers, and correspond to the | |
44d88583 | 35 | general registers of the machine. */ |
dc129d82 JT |
36 | |
37 | #define ALPHA_V0_REGNUM 0 /* Function integer return value */ | |
38 | #define ALPHA_T7_REGNUM 8 /* Return address register for OSF/1 __add* */ | |
4816ec69 | 39 | #define ALPHA_S0_REGNUM 9 /* First saved register */ |
dc129d82 JT |
40 | #define ALPHA_GCC_FP_REGNUM 15 /* Used by gcc as frame register */ |
41 | #define ALPHA_A0_REGNUM 16 /* Loc of first arg during a subr call */ | |
42 | #define ALPHA_T9_REGNUM 23 /* Return address register for OSF/1 __div* */ | |
72667056 | 43 | #define ALPHA_RA_REGNUM 26 /* Contains return address value */ |
dc129d82 | 44 | #define ALPHA_T12_REGNUM 27 /* Contains start addr of current proc */ |
72667056 | 45 | #define ALPHA_GP_REGNUM 29 /* Contains the global pointer */ |
dc129d82 | 46 | #define ALPHA_SP_REGNUM 30 /* Contains address of top of stack */ |
dc129d82 JT |
47 | #define ALPHA_ZERO_REGNUM 31 /* Read-only register, always 0 */ |
48 | #define ALPHA_FP0_REGNUM 32 /* Floating point register 0 */ | |
49 | #define ALPHA_FPA0_REGNUM 48 /* First float arg during a subr call */ | |
50 | #define ALPHA_FPCR_REGNUM 63 /* Floating point control register */ | |
51 | #define ALPHA_PC_REGNUM 64 /* Contains program counter */ | |
87d1b352 | 52 | #define ALPHA_UNIQUE_REGNUM 66 /* PAL_rduniq value */ |
dc129d82 | 53 | |
24c41760 MK |
54 | /* Instruction size. */ |
55 | #define ALPHA_INSN_SIZE 4 | |
56 | ||
dc129d82 JT |
57 | /* The alpha has two different virtual pointers for arguments and locals. |
58 | ||
59 | The virtual argument pointer is pointing to the bottom of the argument | |
60 | transfer area, which is located immediately below the virtual frame | |
0963b4bd | 61 | pointer. Its size is fixed for the native compiler, it is either zero |
dc129d82 | 62 | (for the no arguments case) or large enough to hold all argument registers. |
0963b4bd | 63 | gcc uses a variable sized argument transfer area. As it has |
dc129d82 JT |
64 | to stay compatible with the native debugging tools it has to use the same |
65 | virtual argument pointer and adjust the argument offsets accordingly. | |
66 | ||
67 | The virtual local pointer is localoff bytes below the virtual frame | |
68 | pointer, the value of localoff is obtained from the PDR. */ | |
69 | #define ALPHA_NUM_ARG_REGS 6 | |
70 | ||
dc129d82 JT |
71 | /* Target-dependent structure in gdbarch. */ |
72 | struct gdbarch_tdep | |
73 | { | |
d2427a71 | 74 | CORE_ADDR vm_min_address; /* Used by alpha_heuristic_proc_start. */ |
36a6271d JT |
75 | |
76 | /* If PC is inside a dynamically-generated signal trampoline function | |
77 | (i.e. one copied onto the user stack at run-time), return how many | |
78 | bytes PC is beyond the start of that function. Otherwise, return -1. */ | |
e17a4113 | 79 | LONGEST (*dynamic_sigtramp_offset) (struct gdbarch *, CORE_ADDR); |
36a6271d | 80 | |
d2427a71 RH |
81 | /* Translate a signal handler stack base address into the address of |
82 | the sigcontext structure for that signal handler. */ | |
5868c862 JT |
83 | CORE_ADDR (*sigcontext_addr) (struct frame_info *); |
84 | ||
f2524b93 AC |
85 | /* Does the PC fall in a signal trampoline. */ |
86 | /* NOTE: cagney/2004-04-30: Do not copy/clone this code. Instead | |
87 | look at tramp-frame.h and other simplier per-architecture | |
88 | sigtramp unwinders. */ | |
2c02bd72 DE |
89 | int (*pc_in_sigtramp) (struct gdbarch *gdbarch, CORE_ADDR pc, |
90 | const char *name); | |
f2524b93 | 91 | |
9823e921 RH |
92 | /* If TYPE will be returned in memory, return true. */ |
93 | int (*return_in_memory) (struct type *type); | |
94 | ||
138e7be5 MK |
95 | /* Offset of registers in `struct sigcontext'. */ |
96 | int sc_pc_offset; | |
97 | int sc_regs_offset; | |
98 | int sc_fpregs_offset; | |
99 | ||
accc6d1f JT |
100 | int jb_pc; /* Offset to PC value in jump buffer. |
101 | If htis is negative, longjmp support | |
102 | will be disabled. */ | |
0963b4bd | 103 | size_t jb_elt_size; /* And the size of each entry in the buf. */ |
dc129d82 JT |
104 | }; |
105 | ||
e17a4113 | 106 | extern unsigned int alpha_read_insn (struct gdbarch *gdbarch, CORE_ADDR pc); |
0b1b3e42 | 107 | extern int alpha_software_single_step (struct frame_info *frame); |
d2427a71 | 108 | extern CORE_ADDR alpha_after_prologue (CORE_ADDR pc); |
d2427a71 RH |
109 | |
110 | extern void alpha_mdebug_init_abi (struct gdbarch_info, struct gdbarch *); | |
baa490c4 | 111 | extern void alpha_dwarf2_init_abi (struct gdbarch_info, struct gdbarch *); |
4bcbd6cb | 112 | |
390c1522 UW |
113 | extern void alpha_supply_int_regs (struct regcache *, int, const void *, |
114 | const void *, const void *); | |
115 | extern void alpha_fill_int_regs (const struct regcache *, int, | |
116 | void *, void *, void *); | |
117 | extern void alpha_supply_fp_regs (struct regcache *, int, | |
118 | const void *, const void *); | |
119 | extern void alpha_fill_fp_regs (const struct regcache *, | |
120 | int, void *, void *); | |
98a8e1e5 | 121 | |
dc129d82 | 122 | #endif /* ALPHA_TDEP_H */ |