* dwarf2-frame.c (execute_cfa_program): Move DWA_CFA_nop before
[deliverable/binutils-gdb.git] / gdb / vax-tdep.c
CommitLineData
c906108c 1/* Print VAX instructions for GDB, the GNU debugger.
464e0365
AC
2
3 Copyright 1986, 1989, 1991, 1992, 1995, 1996, 1998, 1999, 2000,
4 2002, 2003, 2004 Free Software Foundation, Inc.
c906108c 5
c5aa993b 6 This file is part of GDB.
c906108c 7
c5aa993b
JM
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
c906108c 12
c5aa993b
JM
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
c906108c 17
c5aa993b
JM
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA. */
c906108c
SS
22
23#include "defs.h"
24#include "symtab.h"
25#include "opcode/vax.h"
c11c3a98 26#include "gdbcore.h"
f267bd6a 27#include "inferior.h"
a33f7558 28#include "regcache.h"
c11c3a98
AC
29#include "frame.h"
30#include "value.h"
f267bd6a 31#include "arch-utils.h"
9bbe19fb 32#include "gdb_string.h"
4be87837 33#include "osabi.h"
a89aa300 34#include "dis-asm.h"
f267bd6a
JT
35
36#include "vax-tdep.h"
37
38static gdbarch_register_name_ftype vax_register_name;
f267bd6a
JT
39
40static gdbarch_skip_prologue_ftype vax_skip_prologue;
f267bd6a 41static gdbarch_frame_num_args_ftype vax_frame_num_args;
618ce49f 42static gdbarch_deprecated_frame_chain_ftype vax_frame_chain;
f267bd6a 43
26e9b323 44static gdbarch_deprecated_extract_return_value_ftype vax_extract_return_value;
f267bd6a 45
f3824013 46static gdbarch_deprecated_push_dummy_frame_ftype vax_push_dummy_frame;
c906108c 47\f
fa88f677 48static const char *
51eb8b08
JT
49vax_register_name (int regno)
50{
51 static char *register_names[] =
52 {
53 "r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7",
54 "r8", "r9", "r10", "r11", "ap", "fp", "sp", "pc",
55 "ps",
56 };
57
58 if (regno < 0)
59 return (NULL);
60 if (regno >= (sizeof(register_names) / sizeof(*register_names)))
61 return (NULL);
62 return (register_names[regno]);
63}
64
f267bd6a 65static int
51eb8b08
JT
66vax_register_byte (int regno)
67{
68 return (regno * 4);
69}
70
f267bd6a 71static int
51eb8b08
JT
72vax_register_raw_size (int regno)
73{
74 return (4);
75}
76
f267bd6a 77static int
51eb8b08
JT
78vax_register_virtual_size (int regno)
79{
80 return (4);
81}
82
f267bd6a 83static struct type *
51eb8b08
JT
84vax_register_virtual_type (int regno)
85{
86 return (builtin_type_int);
87}
88\f
f267bd6a 89static void
ab62c900
JT
90vax_frame_init_saved_regs (struct frame_info *frame)
91{
92 int regnum, regmask;
93 CORE_ADDR next_addr;
94
1b1d3794 95 if (deprecated_get_frame_saved_regs (frame))
ab62c900
JT
96 return;
97
98 frame_saved_regs_zalloc (frame);
99
1e2330ba 100 regmask = read_memory_integer (get_frame_base (frame) + 4, 4) >> 16;
ab62c900 101
1e2330ba 102 next_addr = get_frame_base (frame) + 16;
ab62c900
JT
103
104 /* regmask's low bit is for register 0, which is the first one
105 what would be pushed. */
1d049c5e 106 for (regnum = 0; regnum < VAX_AP_REGNUM; regnum++)
ab62c900
JT
107 {
108 if (regmask & (1 << regnum))
1b1d3794 109 deprecated_get_frame_saved_regs (frame)[regnum] = next_addr += 4;
ab62c900
JT
110 }
111
1b1d3794 112 deprecated_get_frame_saved_regs (frame)[SP_REGNUM] = next_addr + 4;
0ba6dca9 113 if (regmask & (1 << DEPRECATED_FP_REGNUM))
1b1d3794 114 deprecated_get_frame_saved_regs (frame)[SP_REGNUM] +=
ab62c900
JT
115 4 + (4 * read_memory_integer (next_addr + 4, 4));
116
1b1d3794
AC
117 deprecated_get_frame_saved_regs (frame)[PC_REGNUM] = get_frame_base (frame) + 16;
118 deprecated_get_frame_saved_regs (frame)[DEPRECATED_FP_REGNUM] = get_frame_base (frame) + 12;
119 deprecated_get_frame_saved_regs (frame)[VAX_AP_REGNUM] = get_frame_base (frame) + 8;
120 deprecated_get_frame_saved_regs (frame)[PS_REGNUM] = get_frame_base (frame) + 4;
ab62c900 121}
5516aa92 122
f407986f
AC
123/* Get saved user PC for sigtramp from sigcontext for BSD style sigtramp. */
124
125static CORE_ADDR
126vax_sigtramp_saved_pc (struct frame_info *frame)
127{
128 CORE_ADDR sigcontext_addr;
129 char *buf;
130 int ptrbytes = TYPE_LENGTH (builtin_type_void_func_ptr);
131 int sigcontext_offs = (2 * TARGET_INT_BIT) / TARGET_CHAR_BIT;
132
133 buf = alloca (ptrbytes);
134 /* Get sigcontext address, it is the third parameter on the stack. */
11c02a10 135 if (get_next_frame (frame))
f407986f 136 sigcontext_addr = read_memory_typed_address
42efa47a 137 (DEPRECATED_FRAME_ARGS_ADDRESS (get_next_frame (frame))
11c02a10 138 + FRAME_ARGS_SKIP + sigcontext_offs,
f407986f
AC
139 builtin_type_void_data_ptr);
140 else
141 sigcontext_addr = read_memory_typed_address
142 (read_register (SP_REGNUM) + sigcontext_offs, builtin_type_void_data_ptr);
143
144 /* Don't cause a memory_error when accessing sigcontext in case the stack
145 layout has changed or the stack is corrupt. */
146 target_read_memory (sigcontext_addr + SIGCONTEXT_PC_OFFSET, buf, ptrbytes);
147 return extract_typed_address (buf, builtin_type_void_func_ptr);
148}
149
f267bd6a 150static CORE_ADDR
5516aa92
JT
151vax_frame_saved_pc (struct frame_info *frame)
152{
5a203e44 153 if ((get_frame_type (frame) == SIGTRAMP_FRAME))
f407986f 154 return (vax_sigtramp_saved_pc (frame)); /* XXXJRT */
5516aa92 155
1e2330ba 156 return (read_memory_integer (get_frame_base (frame) + 16, 4));
5516aa92
JT
157}
158
f267bd6a 159static CORE_ADDR
5516aa92
JT
160vax_frame_args_address (struct frame_info *frame)
161{
25e3a86b
AC
162 /* In most of GDB, getting the args address is too important to just
163 say "I don't know". This is sometimes wrong for functions that
164 aren't on top of the stack, but c'est la vie. */
11c02a10
AC
165 if (get_next_frame (frame))
166 return (read_memory_integer (get_frame_base (get_next_frame (frame)) + 8, 4));
25e3a86b
AC
167 /* Cannot find the AP register value directly from the FP value.
168 Must find it saved in the frame called by this one, or in the AP
169 register for the innermost frame. However, there is no way to
170 tell the difference between the innermost frame and a frame for
171 which we just don't know the frame that it called (e.g. "info
172 frame 0x7ffec789"). For the sake of argument, suppose that the
173 stack is somewhat trashed (which is one reason that "info frame"
174 exists). So, return 0 (indicating we don't know the address of
175 the arglist) if we don't know what frame this frame calls. */
176 return 0;
5516aa92
JT
177}
178
f267bd6a 179static int
5516aa92
JT
180vax_frame_num_args (struct frame_info *fi)
181{
42efa47a 182 return (0xff & read_memory_integer (DEPRECATED_FRAME_ARGS_ADDRESS (fi), 1));
5516aa92 183}
52efde73 184
f267bd6a 185static CORE_ADDR
52efde73
JT
186vax_frame_chain (struct frame_info *frame)
187{
188 /* In the case of the VAX, the frame's nominal address is the FP value,
189 and 12 bytes later comes the saved previous FP value as a 4-byte word. */
627b3ba2 190 if (deprecated_inside_entry_file (get_frame_pc (frame)))
52efde73
JT
191 return (0);
192
1e2330ba 193 return (read_memory_integer (get_frame_base (frame) + 12, 4));
52efde73
JT
194}
195\f
f267bd6a 196static void
52efde73
JT
197vax_push_dummy_frame (void)
198{
199 CORE_ADDR sp = read_register (SP_REGNUM);
200 int regnum;
201
202 sp = push_word (sp, 0); /* arglist */
203 for (regnum = 11; regnum >= 0; regnum--)
204 sp = push_word (sp, read_register (regnum));
205 sp = push_word (sp, read_register (PC_REGNUM));
0ba6dca9 206 sp = push_word (sp, read_register (DEPRECATED_FP_REGNUM));
1d049c5e 207 sp = push_word (sp, read_register (VAX_AP_REGNUM));
52efde73
JT
208 sp = push_word (sp, (read_register (PS_REGNUM) & 0xffef) + 0x2fff0000);
209 sp = push_word (sp, 0);
210 write_register (SP_REGNUM, sp);
0ba6dca9 211 write_register (DEPRECATED_FP_REGNUM, sp);
1d049c5e 212 write_register (VAX_AP_REGNUM, sp + (17 * 4));
52efde73
JT
213}
214
f267bd6a 215static void
52efde73
JT
216vax_pop_frame (void)
217{
0ba6dca9 218 CORE_ADDR fp = read_register (DEPRECATED_FP_REGNUM);
52efde73
JT
219 int regnum;
220 int regmask = read_memory_integer (fp + 4, 4);
221
222 write_register (PS_REGNUM,
223 (regmask & 0xffff)
224 | (read_register (PS_REGNUM) & 0xffff0000));
225 write_register (PC_REGNUM, read_memory_integer (fp + 16, 4));
0ba6dca9 226 write_register (DEPRECATED_FP_REGNUM, read_memory_integer (fp + 12, 4));
1d049c5e 227 write_register (VAX_AP_REGNUM, read_memory_integer (fp + 8, 4));
52efde73
JT
228 fp += 16;
229 for (regnum = 0; regnum < 12; regnum++)
230 if (regmask & (0x10000 << regnum))
231 write_register (regnum, read_memory_integer (fp += 4, 4));
232 fp = fp + 4 + ((regmask >> 30) & 3);
233 if (regmask & 0x20000000)
234 {
235 regnum = read_memory_integer (fp, 4);
236 fp += (regnum + 1) * 4;
237 }
238 write_register (SP_REGNUM, fp);
239 flush_cached_frames ();
240}
a33f7558
JT
241
242/* The VAX call dummy sequence:
243
244 calls #69, @#32323232
245 bpt
246
247 It is 8 bytes long. The address and argc are patched by
248 vax_fix_call_dummy(). */
f267bd6a
JT
249static LONGEST vax_call_dummy_words[] = { 0x329f69fb, 0x03323232 };
250static int sizeof_vax_call_dummy_words = sizeof(vax_call_dummy_words);
a33f7558 251
f267bd6a 252static void
a33f7558
JT
253vax_fix_call_dummy (char *dummy, CORE_ADDR pc, CORE_ADDR fun, int nargs,
254 struct value **args, struct type *type, int gcc_p)
255{
256 dummy[1] = nargs;
257 store_unsigned_integer (dummy + 3, 4, fun);
258}
ab62c900 259\f
f267bd6a 260static void
ea74468c
JT
261vax_store_struct_return (CORE_ADDR addr, CORE_ADDR sp)
262{
263 write_register (1, addr);
264}
265
f267bd6a 266static void
ea74468c
JT
267vax_extract_return_value (struct type *valtype, char *regbuf, char *valbuf)
268{
62700349 269 memcpy (valbuf, regbuf + DEPRECATED_REGISTER_BYTE (0), TYPE_LENGTH (valtype));
ea74468c
JT
270}
271
f267bd6a 272static void
ea74468c
JT
273vax_store_return_value (struct type *valtype, char *valbuf)
274{
73937e03 275 deprecated_write_register_bytes (0, valbuf, TYPE_LENGTH (valtype));
ea74468c 276}
ea74468c 277\f
1d049c5e
JT
278static const unsigned char *
279vax_breakpoint_from_pc (CORE_ADDR *pcptr, int *lenptr)
280{
281 static const unsigned char vax_breakpoint[] = { 3 };
282
283 *lenptr = sizeof(vax_breakpoint);
284 return (vax_breakpoint);
285}
286\f
b83266a0
SS
287/* Advance PC across any function entry prologue instructions
288 to reach some "real" code. */
289
f267bd6a 290static CORE_ADDR
fba45db2 291vax_skip_prologue (CORE_ADDR pc)
b83266a0 292{
52f0bd74 293 int op = (unsigned char) read_memory_integer (pc, 1);
b83266a0 294 if (op == 0x11)
c5aa993b 295 pc += 2; /* skip brb */
b83266a0 296 if (op == 0x31)
c5aa993b 297 pc += 3; /* skip brw */
b83266a0 298 if (op == 0xC2
c5aa993b
JM
299 && ((unsigned char) read_memory_integer (pc + 2, 1)) == 0x5E)
300 pc += 3; /* skip subl2 */
b83266a0 301 if (op == 0x9E
c5aa993b
JM
302 && ((unsigned char) read_memory_integer (pc + 1, 1)) == 0xAE
303 && ((unsigned char) read_memory_integer (pc + 3, 1)) == 0x5E)
304 pc += 4; /* skip movab */
b83266a0 305 if (op == 0x9E
c5aa993b
JM
306 && ((unsigned char) read_memory_integer (pc + 1, 1)) == 0xCE
307 && ((unsigned char) read_memory_integer (pc + 4, 1)) == 0x5E)
308 pc += 5; /* skip movab */
b83266a0 309 if (op == 0x9E
c5aa993b
JM
310 && ((unsigned char) read_memory_integer (pc + 1, 1)) == 0xEE
311 && ((unsigned char) read_memory_integer (pc + 6, 1)) == 0x5E)
312 pc += 7; /* skip movab */
b83266a0
SS
313 return pc;
314}
315
f267bd6a 316static CORE_ADDR
a33f7558
JT
317vax_saved_pc_after_call (struct frame_info *frame)
318{
8bedc050 319 return (DEPRECATED_FRAME_SAVED_PC(frame));
a33f7558
JT
320}
321\f
f267bd6a
JT
322/* Initialize the current architecture based on INFO. If possible, re-use an
323 architecture from ARCHES, which is a list of architectures already created
324 during this debugging session.
325
326 Called e.g. at program startup, when reading a core file, and when reading
327 a binary file. */
328
329static struct gdbarch *
330vax_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches)
331{
332 struct gdbarch *gdbarch;
333
4be87837
DJ
334 /* If there is already a candidate, use it. */
335 arches = gdbarch_list_lookup_by_info (arches, &info);
336 if (arches != NULL)
337 return arches->gdbarch;
f267bd6a 338
4be87837 339 gdbarch = gdbarch_alloc (&info, NULL);
4791e091 340
a5afb99f
AC
341 /* NOTE: cagney/2002-12-06: This can be deleted when this arch is
342 ready to unwind the PC first (see frame.c:get_prev_frame()). */
0968aa8c 343 set_gdbarch_deprecated_init_frame_pc (gdbarch, deprecated_init_frame_pc_default);
a5afb99f 344
f267bd6a
JT
345 /* Register info */
346 set_gdbarch_num_regs (gdbarch, VAX_NUM_REGS);
347 set_gdbarch_sp_regnum (gdbarch, VAX_SP_REGNUM);
0ba6dca9 348 set_gdbarch_deprecated_fp_regnum (gdbarch, VAX_FP_REGNUM);
f267bd6a
JT
349 set_gdbarch_pc_regnum (gdbarch, VAX_PC_REGNUM);
350 set_gdbarch_ps_regnum (gdbarch, VAX_PS_REGNUM);
351
352 set_gdbarch_register_name (gdbarch, vax_register_name);
b1e29e33 353 set_gdbarch_deprecated_register_size (gdbarch, VAX_REGISTER_SIZE);
b8b527c5 354 set_gdbarch_deprecated_register_bytes (gdbarch, VAX_REGISTER_BYTES);
9c04cab7
AC
355 set_gdbarch_deprecated_register_byte (gdbarch, vax_register_byte);
356 set_gdbarch_deprecated_register_raw_size (gdbarch, vax_register_raw_size);
a0ed5532 357 set_gdbarch_deprecated_max_register_raw_size (gdbarch, VAX_MAX_REGISTER_RAW_SIZE);
9c04cab7 358 set_gdbarch_deprecated_register_virtual_size (gdbarch, vax_register_virtual_size);
a0ed5532 359 set_gdbarch_deprecated_max_register_virtual_size (gdbarch,
f267bd6a 360 VAX_MAX_REGISTER_VIRTUAL_SIZE);
9c04cab7 361 set_gdbarch_deprecated_register_virtual_type (gdbarch, vax_register_virtual_type);
f267bd6a
JT
362
363 /* Frame and stack info */
364 set_gdbarch_skip_prologue (gdbarch, vax_skip_prologue);
6913c89a 365 set_gdbarch_deprecated_saved_pc_after_call (gdbarch, vax_saved_pc_after_call);
f267bd6a
JT
366
367 set_gdbarch_frame_num_args (gdbarch, vax_frame_num_args);
368 set_gdbarch_frameless_function_invocation (gdbarch,
369 generic_frameless_function_invocation_not);
370
618ce49f 371 set_gdbarch_deprecated_frame_chain (gdbarch, vax_frame_chain);
8bedc050 372 set_gdbarch_deprecated_frame_saved_pc (gdbarch, vax_frame_saved_pc);
f267bd6a 373
42efa47a 374 set_gdbarch_deprecated_frame_args_address (gdbarch, vax_frame_args_address);
f267bd6a 375
f30ee0bc 376 set_gdbarch_deprecated_frame_init_saved_regs (gdbarch, vax_frame_init_saved_regs);
f267bd6a
JT
377
378 set_gdbarch_frame_args_skip (gdbarch, 4);
379
f267bd6a
JT
380 set_gdbarch_inner_than (gdbarch, core_addr_lessthan);
381
382 /* Return value info */
4183d812 383 set_gdbarch_deprecated_store_struct_return (gdbarch, vax_store_struct_return);
26e9b323 384 set_gdbarch_deprecated_extract_return_value (gdbarch, vax_extract_return_value);
ebba8386 385 set_gdbarch_deprecated_store_return_value (gdbarch, vax_store_return_value);
f267bd6a
JT
386
387 /* Call dummy info */
f3824013 388 set_gdbarch_deprecated_push_dummy_frame (gdbarch, vax_push_dummy_frame);
749b82f6 389 set_gdbarch_deprecated_pop_frame (gdbarch, vax_pop_frame);
f267bd6a 390 set_gdbarch_call_dummy_location (gdbarch, ON_STACK);
b1e29e33
AC
391 set_gdbarch_deprecated_call_dummy_words (gdbarch, vax_call_dummy_words);
392 set_gdbarch_deprecated_sizeof_call_dummy_words (gdbarch, sizeof_vax_call_dummy_words);
393 set_gdbarch_deprecated_fix_call_dummy (gdbarch, vax_fix_call_dummy);
394 set_gdbarch_deprecated_call_dummy_breakpoint_offset (gdbarch, 7);
07555a72 395 set_gdbarch_deprecated_use_generic_dummy_frames (gdbarch, 0);
ae45cd16 396 set_gdbarch_deprecated_pc_in_call_dummy (gdbarch, deprecated_pc_in_call_dummy_on_stack);
f267bd6a
JT
397
398 /* Breakpoint info */
1d049c5e 399 set_gdbarch_breakpoint_from_pc (gdbarch, vax_breakpoint_from_pc);
f267bd6a
JT
400
401 /* Misc info */
402 set_gdbarch_function_start_offset (gdbarch, 2);
1d049c5e 403 set_gdbarch_believe_pcc_promotion (gdbarch, 1);
f267bd6a 404
6c0e89ed 405 /* Should be using push_dummy_call. */
b46e02f6 406 set_gdbarch_deprecated_dummy_write_sp (gdbarch, deprecated_write_sp);
6c0e89ed 407
4791e091 408 /* Hook in ABI-specific overrides, if they have been registered. */
4be87837 409 gdbarch_init_osabi (info, gdbarch);
4791e091 410
ee2842e2
ILT
411 set_gdbarch_print_insn (gdbarch, print_insn_vax);
412
f267bd6a
JT
413 return (gdbarch);
414}
c906108c 415
a78f21af
AC
416extern initialize_file_ftype _initialize_vax_tdep; /* -Wmissing-prototypes */
417
c906108c 418void
fba45db2 419_initialize_vax_tdep (void)
c906108c 420{
4be87837 421 gdbarch_register (bfd_arch_vax, vax_gdbarch_init, NULL);
c906108c 422}
This page took 0.472471 seconds and 4 git commands to generate.