gdb: Remove casts of NULL during assignment.
[deliverable/binutils-gdb.git] / gdb / alpha-tdep.c
CommitLineData
c906108c 1/* Target-dependent code for the ALPHA architecture, for GDB, the GNU Debugger.
0fd88904 2
32d0add0 3 Copyright (C) 1993-2015 Free Software Foundation, Inc.
c906108c 4
c5aa993b 5 This file is part of GDB.
c906108c 6
c5aa993b
JM
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
c5aa993b 10 (at your option) any later version.
c906108c 11
c5aa993b
JM
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.
c906108c 16
c5aa993b 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/>. */
c906108c
SS
19
20#include "defs.h"
615967cb 21#include "doublest.h"
c906108c 22#include "frame.h"
d2427a71
RH
23#include "frame-unwind.h"
24#include "frame-base.h"
baa490c4 25#include "dwarf2-frame.h"
c906108c
SS
26#include "inferior.h"
27#include "symtab.h"
28#include "value.h"
29#include "gdbcmd.h"
30#include "gdbcore.h"
31#include "dis-asm.h"
32#include "symfile.h"
33#include "objfiles.h"
c5f0f3d0 34#include "linespec.h"
4e052eda 35#include "regcache.h"
615967cb 36#include "reggroups.h"
dc129d82 37#include "arch-utils.h"
4be87837 38#include "osabi.h"
fe898f56 39#include "block.h"
7d9b040b 40#include "infcall.h"
07ea644b 41#include "trad-frame.h"
dc129d82
JT
42
43#include "elf-bfd.h"
44
45#include "alpha-tdep.h"
46
3a48e6ff
JG
47/* Instruction decoding. The notations for registers, immediates and
48 opcodes are the same as the one used in Compaq's Alpha architecture
49 handbook. */
50
51#define INSN_OPCODE(insn) ((insn & 0xfc000000) >> 26)
52
53/* Memory instruction format */
54#define MEM_RA(insn) ((insn & 0x03e00000) >> 21)
55#define MEM_RB(insn) ((insn & 0x001f0000) >> 16)
56#define MEM_DISP(insn) \
57 (((insn & 0x8000) == 0) ? (insn & 0xffff) : -((-insn) & 0xffff))
58
59static const int lda_opcode = 0x08;
60static const int stq_opcode = 0x2d;
61
62/* Branch instruction format */
63#define BR_RA(insn) MEM_RA(insn)
64
46ad3598 65static const int br_opcode = 0x30;
3a48e6ff
JG
66static const int bne_opcode = 0x3d;
67
68/* Operate instruction format */
69#define OPR_FUNCTION(insn) ((insn & 0xfe0) >> 5)
70#define OPR_HAS_IMMEDIATE(insn) ((insn & 0x1000) == 0x1000)
71#define OPR_RA(insn) MEM_RA(insn)
72#define OPR_RC(insn) ((insn & 0x1f))
73#define OPR_LIT(insn) ((insn & 0x1fe000) >> 13)
74
75static const int subq_opcode = 0x10;
76static const int subq_function = 0x29;
77
c906108c 78\f
515921d7
JB
79/* Return the name of the REGNO register.
80
81 An empty name corresponds to a register number that used to
0963b4bd 82 be used for a virtual register. That virtual register has
515921d7
JB
83 been removed, but the index is still reserved to maintain
84 compatibility with existing remote alpha targets. */
85
fa88f677 86static const char *
d93859e2 87alpha_register_name (struct gdbarch *gdbarch, int regno)
636a6dfc 88{
5ab84872 89 static const char * const register_names[] =
636a6dfc
JT
90 {
91 "v0", "t0", "t1", "t2", "t3", "t4", "t5", "t6",
92 "t7", "s0", "s1", "s2", "s3", "s4", "s5", "fp",
93 "a0", "a1", "a2", "a3", "a4", "a5", "t8", "t9",
94 "t10", "t11", "ra", "t12", "at", "gp", "sp", "zero",
95 "f0", "f1", "f2", "f3", "f4", "f5", "f6", "f7",
96 "f8", "f9", "f10", "f11", "f12", "f13", "f14", "f15",
97 "f16", "f17", "f18", "f19", "f20", "f21", "f22", "f23",
98 "f24", "f25", "f26", "f27", "f28", "f29", "f30", "fpcr",
44d88583 99 "pc", "", "unique"
636a6dfc
JT
100 };
101
102 if (regno < 0)
5ab84872 103 return NULL;
e8d2d628 104 if (regno >= ARRAY_SIZE(register_names))
5ab84872
RH
105 return NULL;
106 return register_names[regno];
636a6dfc 107}
d734c450 108
dc129d82 109static int
64a3914f 110alpha_cannot_fetch_register (struct gdbarch *gdbarch, int regno)
d734c450 111{
4a1be8d2 112 return (strlen (alpha_register_name (gdbarch, regno)) == 0);
d734c450
JT
113}
114
dc129d82 115static int
64a3914f 116alpha_cannot_store_register (struct gdbarch *gdbarch, int regno)
d734c450 117{
515921d7 118 return (regno == ALPHA_ZERO_REGNUM
64a3914f 119 || strlen (alpha_register_name (gdbarch, regno)) == 0);
d734c450
JT
120}
121
dc129d82 122static struct type *
c483c494 123alpha_register_type (struct gdbarch *gdbarch, int regno)
0d056799 124{
72667056 125 if (regno == ALPHA_SP_REGNUM || regno == ALPHA_GP_REGNUM)
0dfff4cb 126 return builtin_type (gdbarch)->builtin_data_ptr;
72667056 127 if (regno == ALPHA_PC_REGNUM)
0dfff4cb 128 return builtin_type (gdbarch)->builtin_func_ptr;
72667056
RH
129
130 /* Don't need to worry about little vs big endian until
131 some jerk tries to port to alpha-unicosmk. */
b38b6be2 132 if (regno >= ALPHA_FP0_REGNUM && regno < ALPHA_FP0_REGNUM + 31)
27067745 133 return builtin_type (gdbarch)->builtin_double;
72667056 134
df4df182 135 return builtin_type (gdbarch)->builtin_int64;
0d056799 136}
f8453e34 137
615967cb
RH
138/* Is REGNUM a member of REGGROUP? */
139
140static int
141alpha_register_reggroup_p (struct gdbarch *gdbarch, int regnum,
142 struct reggroup *group)
143{
144 /* Filter out any registers eliminated, but whose regnum is
145 reserved for backward compatibility, e.g. the vfp. */
ec7cc0e8
UW
146 if (gdbarch_register_name (gdbarch, regnum) == NULL
147 || *gdbarch_register_name (gdbarch, regnum) == '\0')
615967cb
RH
148 return 0;
149
df4a182b
RH
150 if (group == all_reggroup)
151 return 1;
152
153 /* Zero should not be saved or restored. Technically it is a general
154 register (just as $f31 would be a float if we represented it), but
155 there's no point displaying it during "info regs", so leave it out
156 of all groups except for "all". */
157 if (regnum == ALPHA_ZERO_REGNUM)
158 return 0;
159
160 /* All other registers are saved and restored. */
161 if (group == save_reggroup || group == restore_reggroup)
615967cb
RH
162 return 1;
163
164 /* All other groups are non-overlapping. */
165
166 /* Since this is really a PALcode memory slot... */
167 if (regnum == ALPHA_UNIQUE_REGNUM)
168 return group == system_reggroup;
169
170 /* Force the FPCR to be considered part of the floating point state. */
171 if (regnum == ALPHA_FPCR_REGNUM)
172 return group == float_reggroup;
173
174 if (regnum >= ALPHA_FP0_REGNUM && regnum < ALPHA_FP0_REGNUM + 31)
175 return group == float_reggroup;
176 else
177 return group == general_reggroup;
178}
179
c483c494
RH
180/* The following represents exactly the conversion performed by
181 the LDS instruction. This applies to both single-precision
182 floating point and 32-bit integers. */
183
184static void
e17a4113 185alpha_lds (struct gdbarch *gdbarch, void *out, const void *in)
c483c494 186{
e17a4113
UW
187 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
188 ULONGEST mem = extract_unsigned_integer (in, 4, byte_order);
c483c494
RH
189 ULONGEST frac = (mem >> 0) & 0x7fffff;
190 ULONGEST sign = (mem >> 31) & 1;
191 ULONGEST exp_msb = (mem >> 30) & 1;
192 ULONGEST exp_low = (mem >> 23) & 0x7f;
193 ULONGEST exp, reg;
194
195 exp = (exp_msb << 10) | exp_low;
196 if (exp_msb)
197 {
198 if (exp_low == 0x7f)
199 exp = 0x7ff;
200 }
201 else
202 {
203 if (exp_low != 0x00)
204 exp |= 0x380;
205 }
206
207 reg = (sign << 63) | (exp << 52) | (frac << 29);
e17a4113 208 store_unsigned_integer (out, 8, byte_order, reg);
c483c494
RH
209}
210
211/* Similarly, this represents exactly the conversion performed by
212 the STS instruction. */
213
39efb398 214static void
e17a4113 215alpha_sts (struct gdbarch *gdbarch, void *out, const void *in)
c483c494 216{
e17a4113 217 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
c483c494
RH
218 ULONGEST reg, mem;
219
e17a4113 220 reg = extract_unsigned_integer (in, 8, byte_order);
c483c494 221 mem = ((reg >> 32) & 0xc0000000) | ((reg >> 29) & 0x3fffffff);
e17a4113 222 store_unsigned_integer (out, 4, byte_order, mem);
c483c494
RH
223}
224
d2427a71
RH
225/* The alpha needs a conversion between register and memory format if the
226 register is a floating point register and memory format is float, as the
227 register format must be double or memory format is an integer with 4
228 bytes or less, as the representation of integers in floating point
0963b4bd 229 registers is different. */
d2427a71 230
c483c494 231static int
0963b4bd
MS
232alpha_convert_register_p (struct gdbarch *gdbarch, int regno,
233 struct type *type)
14696584 234{
83acabca
DJ
235 return (regno >= ALPHA_FP0_REGNUM && regno < ALPHA_FP0_REGNUM + 31
236 && TYPE_LENGTH (type) != 8);
14696584
RH
237}
238
8dccd430 239static int
ff2e87ac 240alpha_register_to_value (struct frame_info *frame, int regnum,
8dccd430
PA
241 struct type *valtype, gdb_byte *out,
242 int *optimizedp, int *unavailablep)
5868c862 243{
8dccd430 244 struct gdbarch *gdbarch = get_frame_arch (frame);
2a1ce6ec
MK
245 gdb_byte in[MAX_REGISTER_SIZE];
246
8dccd430
PA
247 /* Convert to TYPE. */
248 if (!get_frame_register_bytes (frame, regnum, 0,
249 register_size (gdbarch, regnum),
250 in, optimizedp, unavailablep))
251 return 0;
252
253 if (TYPE_LENGTH (valtype) == 4)
d2427a71 254 {
8dccd430
PA
255 alpha_sts (gdbarch, out, in);
256 *optimizedp = *unavailablep = 0;
257 return 1;
d2427a71 258 }
8dccd430
PA
259
260 error (_("Cannot retrieve value from floating point register"));
d2427a71 261}
5868c862 262
d2427a71 263static void
ff2e87ac 264alpha_value_to_register (struct frame_info *frame, int regnum,
5b819568 265 struct type *valtype, const gdb_byte *in)
d2427a71 266{
2a1ce6ec
MK
267 gdb_byte out[MAX_REGISTER_SIZE];
268
c483c494 269 switch (TYPE_LENGTH (valtype))
d2427a71 270 {
c483c494 271 case 4:
e17a4113 272 alpha_lds (get_frame_arch (frame), out, in);
c483c494 273 break;
c483c494 274 default:
323e0a4a 275 error (_("Cannot store value in floating point register"));
d2427a71 276 }
ff2e87ac 277 put_frame_register (frame, regnum, out);
5868c862
JT
278}
279
d2427a71
RH
280\f
281/* The alpha passes the first six arguments in the registers, the rest on
c88e30c0
RH
282 the stack. The register arguments are stored in ARG_REG_BUFFER, and
283 then moved into the register file; this simplifies the passing of a
284 large struct which extends from the registers to the stack, plus avoids
285 three ptrace invocations per word.
286
287 We don't bother tracking which register values should go in integer
288 regs or fp regs; we load the same values into both.
289
d2427a71
RH
290 If the called function is returning a structure, the address of the
291 structure to be returned is passed as a hidden first argument. */
c906108c 292
d2427a71 293static CORE_ADDR
7d9b040b 294alpha_push_dummy_call (struct gdbarch *gdbarch, struct value *function,
c88e30c0
RH
295 struct regcache *regcache, CORE_ADDR bp_addr,
296 int nargs, struct value **args, CORE_ADDR sp,
297 int struct_return, CORE_ADDR struct_addr)
c906108c 298{
e17a4113 299 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
d2427a71
RH
300 int i;
301 int accumulate_size = struct_return ? 8 : 0;
d2427a71 302 struct alpha_arg
c906108c 303 {
f42a0a33 304 const gdb_byte *contents;
d2427a71
RH
305 int len;
306 int offset;
307 };
8d749320 308 struct alpha_arg *alpha_args = XALLOCAVEC (struct alpha_arg, nargs);
52f0bd74 309 struct alpha_arg *m_arg;
2a1ce6ec 310 gdb_byte arg_reg_buffer[ALPHA_REGISTER_SIZE * ALPHA_NUM_ARG_REGS];
d2427a71 311 int required_arg_regs;
7d9b040b 312 CORE_ADDR func_addr = find_function_addr (function, NULL);
c906108c 313
c88e30c0
RH
314 /* The ABI places the address of the called function in T12. */
315 regcache_cooked_write_signed (regcache, ALPHA_T12_REGNUM, func_addr);
316
317 /* Set the return address register to point to the entry point
318 of the program, where a breakpoint lies in wait. */
319 regcache_cooked_write_signed (regcache, ALPHA_RA_REGNUM, bp_addr);
320
321 /* Lay out the arguments in memory. */
d2427a71
RH
322 for (i = 0, m_arg = alpha_args; i < nargs; i++, m_arg++)
323 {
324 struct value *arg = args[i];
4991999e 325 struct type *arg_type = check_typedef (value_type (arg));
c88e30c0 326
d2427a71
RH
327 /* Cast argument to long if necessary as the compiler does it too. */
328 switch (TYPE_CODE (arg_type))
c906108c 329 {
d2427a71
RH
330 case TYPE_CODE_INT:
331 case TYPE_CODE_BOOL:
332 case TYPE_CODE_CHAR:
333 case TYPE_CODE_RANGE:
334 case TYPE_CODE_ENUM:
0ede8eca 335 if (TYPE_LENGTH (arg_type) == 4)
d2427a71 336 {
0ede8eca
RH
337 /* 32-bit values must be sign-extended to 64 bits
338 even if the base data type is unsigned. */
df4df182 339 arg_type = builtin_type (gdbarch)->builtin_int32;
0ede8eca
RH
340 arg = value_cast (arg_type, arg);
341 }
342 if (TYPE_LENGTH (arg_type) < ALPHA_REGISTER_SIZE)
343 {
df4df182 344 arg_type = builtin_type (gdbarch)->builtin_int64;
d2427a71
RH
345 arg = value_cast (arg_type, arg);
346 }
347 break;
7b5e1cb3 348
c88e30c0
RH
349 case TYPE_CODE_FLT:
350 /* "float" arguments loaded in registers must be passed in
351 register format, aka "double". */
352 if (accumulate_size < sizeof (arg_reg_buffer)
353 && TYPE_LENGTH (arg_type) == 4)
354 {
27067745 355 arg_type = builtin_type (gdbarch)->builtin_double;
c88e30c0
RH
356 arg = value_cast (arg_type, arg);
357 }
358 /* Tru64 5.1 has a 128-bit long double, and passes this by
359 invisible reference. No one else uses this data type. */
360 else if (TYPE_LENGTH (arg_type) == 16)
361 {
362 /* Allocate aligned storage. */
363 sp = (sp & -16) - 16;
364
365 /* Write the real data into the stack. */
0fd88904 366 write_memory (sp, value_contents (arg), 16);
c88e30c0
RH
367
368 /* Construct the indirection. */
369 arg_type = lookup_pointer_type (arg_type);
370 arg = value_from_pointer (arg_type, sp);
371 }
372 break;
7b5e1cb3
RH
373
374 case TYPE_CODE_COMPLEX:
375 /* ??? The ABI says that complex values are passed as two
376 separate scalar values. This distinction only matters
377 for complex float. However, GCC does not implement this. */
378
379 /* Tru64 5.1 has a 128-bit long double, and passes this by
380 invisible reference. */
381 if (TYPE_LENGTH (arg_type) == 32)
382 {
383 /* Allocate aligned storage. */
384 sp = (sp & -16) - 16;
385
386 /* Write the real data into the stack. */
0fd88904 387 write_memory (sp, value_contents (arg), 32);
7b5e1cb3
RH
388
389 /* Construct the indirection. */
390 arg_type = lookup_pointer_type (arg_type);
391 arg = value_from_pointer (arg_type, sp);
392 }
393 break;
394
d2427a71
RH
395 default:
396 break;
c906108c 397 }
d2427a71
RH
398 m_arg->len = TYPE_LENGTH (arg_type);
399 m_arg->offset = accumulate_size;
400 accumulate_size = (accumulate_size + m_arg->len + 7) & ~7;
f42a0a33 401 m_arg->contents = value_contents (arg);
c906108c
SS
402 }
403
d2427a71
RH
404 /* Determine required argument register loads, loading an argument register
405 is expensive as it uses three ptrace calls. */
406 required_arg_regs = accumulate_size / 8;
407 if (required_arg_regs > ALPHA_NUM_ARG_REGS)
408 required_arg_regs = ALPHA_NUM_ARG_REGS;
c906108c 409
d2427a71 410 /* Make room for the arguments on the stack. */
c88e30c0
RH
411 if (accumulate_size < sizeof(arg_reg_buffer))
412 accumulate_size = 0;
413 else
414 accumulate_size -= sizeof(arg_reg_buffer);
d2427a71 415 sp -= accumulate_size;
c906108c 416
c88e30c0 417 /* Keep sp aligned to a multiple of 16 as the ABI requires. */
d2427a71 418 sp &= ~15;
c906108c 419
d2427a71
RH
420 /* `Push' arguments on the stack. */
421 for (i = nargs; m_arg--, --i >= 0;)
c906108c 422 {
f42a0a33 423 const gdb_byte *contents = m_arg->contents;
c88e30c0
RH
424 int offset = m_arg->offset;
425 int len = m_arg->len;
426
427 /* Copy the bytes destined for registers into arg_reg_buffer. */
428 if (offset < sizeof(arg_reg_buffer))
429 {
430 if (offset + len <= sizeof(arg_reg_buffer))
431 {
432 memcpy (arg_reg_buffer + offset, contents, len);
433 continue;
434 }
435 else
436 {
437 int tlen = sizeof(arg_reg_buffer) - offset;
438 memcpy (arg_reg_buffer + offset, contents, tlen);
439 offset += tlen;
440 contents += tlen;
441 len -= tlen;
442 }
443 }
444
445 /* Everything else goes to the stack. */
446 write_memory (sp + offset - sizeof(arg_reg_buffer), contents, len);
c906108c 447 }
c88e30c0 448 if (struct_return)
e17a4113
UW
449 store_unsigned_integer (arg_reg_buffer, ALPHA_REGISTER_SIZE,
450 byte_order, struct_addr);
c906108c 451
d2427a71
RH
452 /* Load the argument registers. */
453 for (i = 0; i < required_arg_regs; i++)
454 {
09cc52fd
RH
455 regcache_cooked_write (regcache, ALPHA_A0_REGNUM + i,
456 arg_reg_buffer + i*ALPHA_REGISTER_SIZE);
457 regcache_cooked_write (regcache, ALPHA_FPA0_REGNUM + i,
458 arg_reg_buffer + i*ALPHA_REGISTER_SIZE);
d2427a71 459 }
c906108c 460
09cc52fd
RH
461 /* Finally, update the stack pointer. */
462 regcache_cooked_write_signed (regcache, ALPHA_SP_REGNUM, sp);
463
c88e30c0 464 return sp;
c906108c
SS
465}
466
5ec2bb99
RH
467/* Extract from REGCACHE the value about to be returned from a function
468 and copy it into VALBUF. */
d2427a71 469
dc129d82 470static void
5ec2bb99 471alpha_extract_return_value (struct type *valtype, struct regcache *regcache,
5b819568 472 gdb_byte *valbuf)
140f9984 473{
e17a4113
UW
474 struct gdbarch *gdbarch = get_regcache_arch (regcache);
475 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
2a1ce6ec 476 gdb_byte raw_buffer[ALPHA_REGISTER_SIZE];
5ec2bb99
RH
477 ULONGEST l;
478
479 switch (TYPE_CODE (valtype))
480 {
481 case TYPE_CODE_FLT:
744a8059 482 switch (TYPE_LENGTH (valtype))
5ec2bb99
RH
483 {
484 case 4:
485 regcache_cooked_read (regcache, ALPHA_FP0_REGNUM, raw_buffer);
e17a4113 486 alpha_sts (gdbarch, valbuf, raw_buffer);
5ec2bb99
RH
487 break;
488
489 case 8:
490 regcache_cooked_read (regcache, ALPHA_FP0_REGNUM, valbuf);
491 break;
492
24064b5c
RH
493 case 16:
494 regcache_cooked_read_unsigned (regcache, ALPHA_V0_REGNUM, &l);
495 read_memory (l, valbuf, 16);
496 break;
497
5ec2bb99 498 default:
0963b4bd
MS
499 internal_error (__FILE__, __LINE__,
500 _("unknown floating point width"));
5ec2bb99
RH
501 }
502 break;
503
7b5e1cb3 504 case TYPE_CODE_COMPLEX:
744a8059 505 switch (TYPE_LENGTH (valtype))
7b5e1cb3
RH
506 {
507 case 8:
508 /* ??? This isn't correct wrt the ABI, but it's what GCC does. */
509 regcache_cooked_read (regcache, ALPHA_FP0_REGNUM, valbuf);
510 break;
511
512 case 16:
513 regcache_cooked_read (regcache, ALPHA_FP0_REGNUM, valbuf);
2a1ce6ec 514 regcache_cooked_read (regcache, ALPHA_FP0_REGNUM + 1, valbuf + 8);
7b5e1cb3
RH
515 break;
516
517 case 32:
a9933661 518 regcache_cooked_read_unsigned (regcache, ALPHA_V0_REGNUM, &l);
7b5e1cb3
RH
519 read_memory (l, valbuf, 32);
520 break;
521
522 default:
0963b4bd
MS
523 internal_error (__FILE__, __LINE__,
524 _("unknown floating point width"));
7b5e1cb3
RH
525 }
526 break;
527
5ec2bb99
RH
528 default:
529 /* Assume everything else degenerates to an integer. */
530 regcache_cooked_read_unsigned (regcache, ALPHA_V0_REGNUM, &l);
744a8059 531 store_unsigned_integer (valbuf, TYPE_LENGTH (valtype), byte_order, l);
5ec2bb99
RH
532 break;
533 }
140f9984
JT
534}
535
5ec2bb99
RH
536/* Insert the given value into REGCACHE as if it was being
537 returned by a function. */
0d056799 538
d2427a71 539static void
5ec2bb99 540alpha_store_return_value (struct type *valtype, struct regcache *regcache,
5b819568 541 const gdb_byte *valbuf)
c906108c 542{
df4df182 543 struct gdbarch *gdbarch = get_regcache_arch (regcache);
2a1ce6ec 544 gdb_byte raw_buffer[ALPHA_REGISTER_SIZE];
5ec2bb99 545 ULONGEST l;
d2427a71 546
5ec2bb99 547 switch (TYPE_CODE (valtype))
c906108c 548 {
5ec2bb99 549 case TYPE_CODE_FLT:
744a8059 550 switch (TYPE_LENGTH (valtype))
5ec2bb99
RH
551 {
552 case 4:
e17a4113 553 alpha_lds (gdbarch, raw_buffer, valbuf);
f75d70cc
RH
554 regcache_cooked_write (regcache, ALPHA_FP0_REGNUM, raw_buffer);
555 break;
5ec2bb99
RH
556
557 case 8:
558 regcache_cooked_write (regcache, ALPHA_FP0_REGNUM, valbuf);
559 break;
560
24064b5c
RH
561 case 16:
562 /* FIXME: 128-bit long doubles are returned like structures:
563 by writing into indirect storage provided by the caller
564 as the first argument. */
323e0a4a 565 error (_("Cannot set a 128-bit long double return value."));
24064b5c 566
5ec2bb99 567 default:
0963b4bd
MS
568 internal_error (__FILE__, __LINE__,
569 _("unknown floating point width"));
5ec2bb99
RH
570 }
571 break;
d2427a71 572
7b5e1cb3 573 case TYPE_CODE_COMPLEX:
744a8059 574 switch (TYPE_LENGTH (valtype))
7b5e1cb3
RH
575 {
576 case 8:
577 /* ??? This isn't correct wrt the ABI, but it's what GCC does. */
578 regcache_cooked_write (regcache, ALPHA_FP0_REGNUM, valbuf);
579 break;
580
581 case 16:
582 regcache_cooked_write (regcache, ALPHA_FP0_REGNUM, valbuf);
2a1ce6ec 583 regcache_cooked_write (regcache, ALPHA_FP0_REGNUM + 1, valbuf + 8);
7b5e1cb3
RH
584 break;
585
586 case 32:
587 /* FIXME: 128-bit long doubles are returned like structures:
588 by writing into indirect storage provided by the caller
589 as the first argument. */
323e0a4a 590 error (_("Cannot set a 128-bit long double return value."));
7b5e1cb3
RH
591
592 default:
0963b4bd
MS
593 internal_error (__FILE__, __LINE__,
594 _("unknown floating point width"));
7b5e1cb3
RH
595 }
596 break;
597
5ec2bb99
RH
598 default:
599 /* Assume everything else degenerates to an integer. */
0ede8eca
RH
600 /* 32-bit values must be sign-extended to 64 bits
601 even if the base data type is unsigned. */
744a8059 602 if (TYPE_LENGTH (valtype) == 4)
df4df182 603 valtype = builtin_type (gdbarch)->builtin_int32;
5ec2bb99
RH
604 l = unpack_long (valtype, valbuf);
605 regcache_cooked_write_unsigned (regcache, ALPHA_V0_REGNUM, l);
606 break;
607 }
c906108c
SS
608}
609
9823e921 610static enum return_value_convention
6a3a010b 611alpha_return_value (struct gdbarch *gdbarch, struct value *function,
c055b101
CV
612 struct type *type, struct regcache *regcache,
613 gdb_byte *readbuf, const gdb_byte *writebuf)
9823e921
RH
614{
615 enum type_code code = TYPE_CODE (type);
616
617 if ((code == TYPE_CODE_STRUCT
618 || code == TYPE_CODE_UNION
619 || code == TYPE_CODE_ARRAY)
620 && gdbarch_tdep (gdbarch)->return_in_memory (type))
621 {
622 if (readbuf)
623 {
624 ULONGEST addr;
625 regcache_raw_read_unsigned (regcache, ALPHA_V0_REGNUM, &addr);
626 read_memory (addr, readbuf, TYPE_LENGTH (type));
627 }
628
629 return RETURN_VALUE_ABI_RETURNS_ADDRESS;
630 }
631
632 if (readbuf)
633 alpha_extract_return_value (type, regcache, readbuf);
634 if (writebuf)
635 alpha_store_return_value (type, regcache, writebuf);
636
637 return RETURN_VALUE_REGISTER_CONVENTION;
638}
639
640static int
641alpha_return_in_memory_always (struct type *type)
642{
643 return 1;
644}
d2427a71 645\f
2a1ce6ec 646static const gdb_byte *
67d57894 647alpha_breakpoint_from_pc (struct gdbarch *gdbarch, CORE_ADDR *pc, int *len)
c906108c 648{
2a1ce6ec 649 static const gdb_byte break_insn[] = { 0x80, 0, 0, 0 }; /* call_pal bpt */
c906108c 650
2a1ce6ec
MK
651 *len = sizeof(break_insn);
652 return break_insn;
d2427a71 653}
c906108c 654
d2427a71
RH
655\f
656/* This returns the PC of the first insn after the prologue.
657 If we can't find the prologue, then return 0. */
c906108c 658
d2427a71
RH
659CORE_ADDR
660alpha_after_prologue (CORE_ADDR pc)
c906108c 661{
d2427a71
RH
662 struct symtab_and_line sal;
663 CORE_ADDR func_addr, func_end;
c906108c 664
d2427a71 665 if (!find_pc_partial_function (pc, NULL, &func_addr, &func_end))
c5aa993b 666 return 0;
c906108c 667
d2427a71
RH
668 sal = find_pc_line (func_addr, 0);
669 if (sal.end < func_end)
670 return sal.end;
c5aa993b 671
d2427a71
RH
672 /* The line after the prologue is after the end of the function. In this
673 case, tell the caller to find the prologue the hard way. */
674 return 0;
c906108c
SS
675}
676
d2427a71
RH
677/* Read an instruction from memory at PC, looking through breakpoints. */
678
679unsigned int
e17a4113 680alpha_read_insn (struct gdbarch *gdbarch, CORE_ADDR pc)
c906108c 681{
e17a4113 682 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
e8d2d628 683 gdb_byte buf[ALPHA_INSN_SIZE];
d2427a71 684 int status;
c5aa993b 685
8defab1a 686 status = target_read_memory (pc, buf, sizeof (buf));
d2427a71
RH
687 if (status)
688 memory_error (status, pc);
e17a4113 689 return extract_unsigned_integer (buf, sizeof (buf), byte_order);
d2427a71 690}
c5aa993b 691
d2427a71
RH
692/* To skip prologues, I use this predicate. Returns either PC itself
693 if the code at PC does not look like a function prologue; otherwise
694 returns an address that (if we're lucky) follows the prologue. If
695 LENIENT, then we must skip everything which is involved in setting
696 up the frame (it's OK to skip more, just so long as we don't skip
697 anything which might clobber the registers which are being saved. */
c906108c 698
d2427a71 699static CORE_ADDR
6093d2eb 700alpha_skip_prologue (struct gdbarch *gdbarch, CORE_ADDR pc)
d2427a71
RH
701{
702 unsigned long inst;
703 int offset;
704 CORE_ADDR post_prologue_pc;
e8d2d628 705 gdb_byte buf[ALPHA_INSN_SIZE];
c906108c 706
d2427a71
RH
707 /* Silently return the unaltered pc upon memory errors.
708 This could happen on OSF/1 if decode_line_1 tries to skip the
709 prologue for quickstarted shared library functions when the
710 shared library is not yet mapped in.
711 Reading target memory is slow over serial lines, so we perform
712 this check only if the target has shared libraries (which all
713 Alpha targets do). */
e8d2d628 714 if (target_read_memory (pc, buf, sizeof (buf)))
d2427a71 715 return pc;
c906108c 716
d2427a71
RH
717 /* See if we can determine the end of the prologue via the symbol table.
718 If so, then return either PC, or the PC after the prologue, whichever
719 is greater. */
c906108c 720
d2427a71
RH
721 post_prologue_pc = alpha_after_prologue (pc);
722 if (post_prologue_pc != 0)
723 return max (pc, post_prologue_pc);
c906108c 724
d2427a71
RH
725 /* Can't determine prologue from the symbol table, need to examine
726 instructions. */
dc1b0db2 727
0963b4bd 728 /* Skip the typical prologue instructions. These are the stack adjustment
d2427a71
RH
729 instruction and the instructions that save registers on the stack
730 or in the gcc frame. */
e8d2d628 731 for (offset = 0; offset < 100; offset += ALPHA_INSN_SIZE)
d2427a71 732 {
e17a4113 733 inst = alpha_read_insn (gdbarch, pc + offset);
c906108c 734
d2427a71
RH
735 if ((inst & 0xffff0000) == 0x27bb0000) /* ldah $gp,n($t12) */
736 continue;
737 if ((inst & 0xffff0000) == 0x23bd0000) /* lda $gp,n($gp) */
738 continue;
739 if ((inst & 0xffff0000) == 0x23de0000) /* lda $sp,n($sp) */
740 continue;
741 if ((inst & 0xffe01fff) == 0x43c0153e) /* subq $sp,n,$sp */
742 continue;
c906108c 743
d2427a71
RH
744 if (((inst & 0xfc1f0000) == 0xb41e0000 /* stq reg,n($sp) */
745 || (inst & 0xfc1f0000) == 0x9c1e0000) /* stt reg,n($sp) */
746 && (inst & 0x03e00000) != 0x03e00000) /* reg != $zero */
747 continue;
c906108c 748
d2427a71
RH
749 if (inst == 0x47de040f) /* bis sp,sp,fp */
750 continue;
751 if (inst == 0x47fe040f) /* bis zero,sp,fp */
752 continue;
c906108c 753
d2427a71 754 break;
c906108c 755 }
d2427a71
RH
756 return pc + offset;
757}
c906108c 758
46ad3598
UW
759\f
760static const int ldl_l_opcode = 0x2a;
761static const int ldq_l_opcode = 0x2b;
762static const int stl_c_opcode = 0x2e;
763static const int stq_c_opcode = 0x2f;
764
765/* Checks for an atomic sequence of instructions beginning with a LDL_L/LDQ_L
766 instruction and ending with a STL_C/STQ_C instruction. If such a sequence
767 is found, attempt to step through it. A breakpoint is placed at the end of
768 the sequence. */
769
693be288 770static int
46ad3598
UW
771alpha_deal_with_atomic_sequence (struct frame_info *frame)
772{
773 struct gdbarch *gdbarch = get_frame_arch (frame);
774 struct address_space *aspace = get_frame_address_space (frame);
775 CORE_ADDR pc = get_frame_pc (frame);
776 CORE_ADDR breaks[2] = {-1, -1};
777 CORE_ADDR loc = pc;
778 CORE_ADDR closing_insn; /* Instruction that closes the atomic sequence. */
779 unsigned int insn = alpha_read_insn (gdbarch, loc);
780 int insn_count;
781 int index;
782 int last_breakpoint = 0; /* Defaults to 0 (no breakpoints placed). */
783 const int atomic_sequence_length = 16; /* Instruction sequence length. */
784 int bc_insn_count = 0; /* Conditional branch instruction count. */
785
786 /* Assume all atomic sequences start with a LDL_L/LDQ_L instruction. */
787 if (INSN_OPCODE (insn) != ldl_l_opcode
788 && INSN_OPCODE (insn) != ldq_l_opcode)
789 return 0;
790
791 /* Assume that no atomic sequence is longer than "atomic_sequence_length"
792 instructions. */
793 for (insn_count = 0; insn_count < atomic_sequence_length; ++insn_count)
794 {
795 loc += ALPHA_INSN_SIZE;
796 insn = alpha_read_insn (gdbarch, loc);
797
798 /* Assume that there is at most one branch in the atomic
799 sequence. If a branch is found, put a breakpoint in
800 its destination address. */
801 if (INSN_OPCODE (insn) >= br_opcode)
802 {
803 int immediate = (insn & 0x001fffff) << 2;
804
805 immediate = (immediate ^ 0x400000) - 0x400000;
806
807 if (bc_insn_count >= 1)
808 return 0; /* More than one branch found, fallback
809 to the standard single-step code. */
810
811 breaks[1] = loc + ALPHA_INSN_SIZE + immediate;
812
813 bc_insn_count++;
814 last_breakpoint++;
815 }
816
817 if (INSN_OPCODE (insn) == stl_c_opcode
818 || INSN_OPCODE (insn) == stq_c_opcode)
819 break;
820 }
821
822 /* Assume that the atomic sequence ends with a STL_C/STQ_C instruction. */
823 if (INSN_OPCODE (insn) != stl_c_opcode
824 && INSN_OPCODE (insn) != stq_c_opcode)
825 return 0;
826
827 closing_insn = loc;
828 loc += ALPHA_INSN_SIZE;
829
830 /* Insert a breakpoint right after the end of the atomic sequence. */
831 breaks[0] = loc;
832
833 /* Check for duplicated breakpoints. Check also for a breakpoint
834 placed (branch instruction's destination) anywhere in sequence. */
835 if (last_breakpoint
836 && (breaks[1] == breaks[0]
837 || (breaks[1] >= pc && breaks[1] <= closing_insn)))
838 last_breakpoint = 0;
839
840 /* Effectively inserts the breakpoints. */
841 for (index = 0; index <= last_breakpoint; index++)
842 insert_single_step_breakpoint (gdbarch, aspace, breaks[index]);
843
844 return 1;
845}
846
d2427a71
RH
847\f
848/* Figure out where the longjmp will land.
849 We expect the first arg to be a pointer to the jmp_buf structure from
850 which we extract the PC (JB_PC) that we will land at. The PC is copied
851 into the "pc". This routine returns true on success. */
c906108c
SS
852
853static int
60ade65d 854alpha_get_longjmp_target (struct frame_info *frame, CORE_ADDR *pc)
c906108c 855{
e17a4113
UW
856 struct gdbarch *gdbarch = get_frame_arch (frame);
857 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
858 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
d2427a71 859 CORE_ADDR jb_addr;
2a1ce6ec 860 gdb_byte raw_buffer[ALPHA_REGISTER_SIZE];
c906108c 861
60ade65d 862 jb_addr = get_frame_register_unsigned (frame, ALPHA_A0_REGNUM);
c906108c 863
d2427a71
RH
864 if (target_read_memory (jb_addr + (tdep->jb_pc * tdep->jb_elt_size),
865 raw_buffer, tdep->jb_elt_size))
c906108c 866 return 0;
d2427a71 867
e17a4113 868 *pc = extract_unsigned_integer (raw_buffer, tdep->jb_elt_size, byte_order);
d2427a71 869 return 1;
c906108c
SS
870}
871
d2427a71
RH
872\f
873/* Frame unwinder for signal trampolines. We use alpha tdep bits that
874 describe the location and shape of the sigcontext structure. After
875 that, all registers are in memory, so it's easy. */
876/* ??? Shouldn't we be able to do this generically, rather than with
877 OSABI data specific to Alpha? */
878
879struct alpha_sigtramp_unwind_cache
c906108c 880{
d2427a71
RH
881 CORE_ADDR sigcontext_addr;
882};
c906108c 883
d2427a71 884static struct alpha_sigtramp_unwind_cache *
6834c9bb 885alpha_sigtramp_frame_unwind_cache (struct frame_info *this_frame,
d2427a71
RH
886 void **this_prologue_cache)
887{
888 struct alpha_sigtramp_unwind_cache *info;
889 struct gdbarch_tdep *tdep;
c906108c 890
d2427a71
RH
891 if (*this_prologue_cache)
892 return *this_prologue_cache;
c906108c 893
d2427a71
RH
894 info = FRAME_OBSTACK_ZALLOC (struct alpha_sigtramp_unwind_cache);
895 *this_prologue_cache = info;
c906108c 896
6834c9bb
JB
897 tdep = gdbarch_tdep (get_frame_arch (this_frame));
898 info->sigcontext_addr = tdep->sigcontext_addr (this_frame);
c906108c 899
d2427a71 900 return info;
c906108c
SS
901}
902
138e7be5
MK
903/* Return the address of REGNUM in a sigtramp frame. Since this is
904 all arithmetic, it doesn't seem worthwhile to cache it. */
c5aa993b 905
d2427a71 906static CORE_ADDR
be8626e0
MD
907alpha_sigtramp_register_address (struct gdbarch *gdbarch,
908 CORE_ADDR sigcontext_addr, int regnum)
d2427a71 909{
be8626e0 910 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
138e7be5
MK
911
912 if (regnum >= 0 && regnum < 32)
913 return sigcontext_addr + tdep->sc_regs_offset + regnum * 8;
914 else if (regnum >= ALPHA_FP0_REGNUM && regnum < ALPHA_FP0_REGNUM + 32)
915 return sigcontext_addr + tdep->sc_fpregs_offset + regnum * 8;
916 else if (regnum == ALPHA_PC_REGNUM)
917 return sigcontext_addr + tdep->sc_pc_offset;
c5aa993b 918
d2427a71 919 return 0;
c906108c
SS
920}
921
d2427a71
RH
922/* Given a GDB frame, determine the address of the calling function's
923 frame. This will be used to create a new GDB frame struct. */
140f9984 924
dc129d82 925static void
6834c9bb 926alpha_sigtramp_frame_this_id (struct frame_info *this_frame,
d2427a71
RH
927 void **this_prologue_cache,
928 struct frame_id *this_id)
c906108c 929{
6834c9bb 930 struct gdbarch *gdbarch = get_frame_arch (this_frame);
be8626e0 931 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
d2427a71 932 struct alpha_sigtramp_unwind_cache *info
6834c9bb 933 = alpha_sigtramp_frame_unwind_cache (this_frame, this_prologue_cache);
d2427a71
RH
934 CORE_ADDR stack_addr, code_addr;
935
936 /* If the OSABI couldn't locate the sigcontext, give up. */
937 if (info->sigcontext_addr == 0)
938 return;
939
940 /* If we have dynamic signal trampolines, find their start.
941 If we do not, then we must assume there is a symbol record
942 that can provide the start address. */
d2427a71 943 if (tdep->dynamic_sigtramp_offset)
c906108c 944 {
d2427a71 945 int offset;
6834c9bb 946 code_addr = get_frame_pc (this_frame);
e17a4113 947 offset = tdep->dynamic_sigtramp_offset (gdbarch, code_addr);
d2427a71
RH
948 if (offset >= 0)
949 code_addr -= offset;
c906108c 950 else
d2427a71 951 code_addr = 0;
c906108c 952 }
d2427a71 953 else
6834c9bb 954 code_addr = get_frame_func (this_frame);
c906108c 955
d2427a71 956 /* The stack address is trivially read from the sigcontext. */
be8626e0 957 stack_addr = alpha_sigtramp_register_address (gdbarch, info->sigcontext_addr,
d2427a71 958 ALPHA_SP_REGNUM);
6834c9bb 959 stack_addr = get_frame_memory_unsigned (this_frame, stack_addr,
b21fd293 960 ALPHA_REGISTER_SIZE);
c906108c 961
d2427a71 962 *this_id = frame_id_build (stack_addr, code_addr);
c906108c
SS
963}
964
d2427a71 965/* Retrieve the value of REGNUM in FRAME. Don't give up! */
c906108c 966
6834c9bb
JB
967static struct value *
968alpha_sigtramp_frame_prev_register (struct frame_info *this_frame,
969 void **this_prologue_cache, int regnum)
c906108c 970{
d2427a71 971 struct alpha_sigtramp_unwind_cache *info
6834c9bb 972 = alpha_sigtramp_frame_unwind_cache (this_frame, this_prologue_cache);
d2427a71 973 CORE_ADDR addr;
c906108c 974
d2427a71 975 if (info->sigcontext_addr != 0)
c906108c 976 {
d2427a71 977 /* All integer and fp registers are stored in memory. */
6834c9bb 978 addr = alpha_sigtramp_register_address (get_frame_arch (this_frame),
be8626e0 979 info->sigcontext_addr, regnum);
d2427a71 980 if (addr != 0)
6834c9bb 981 return frame_unwind_got_memory (this_frame, regnum, addr);
c906108c
SS
982 }
983
d2427a71
RH
984 /* This extra register may actually be in the sigcontext, but our
985 current description of it in alpha_sigtramp_frame_unwind_cache
986 doesn't include it. Too bad. Fall back on whatever's in the
987 outer frame. */
6834c9bb 988 return frame_unwind_got_register (this_frame, regnum, regnum);
d2427a71 989}
c906108c 990
6834c9bb
JB
991static int
992alpha_sigtramp_frame_sniffer (const struct frame_unwind *self,
993 struct frame_info *this_frame,
994 void **this_prologue_cache)
d2427a71 995{
6834c9bb
JB
996 struct gdbarch *gdbarch = get_frame_arch (this_frame);
997 CORE_ADDR pc = get_frame_pc (this_frame);
2c02bd72 998 const char *name;
c906108c 999
f2524b93
AC
1000 /* NOTE: cagney/2004-04-30: Do not copy/clone this code. Instead
1001 look at tramp-frame.h and other simplier per-architecture
1002 sigtramp unwinders. */
1003
1004 /* We shouldn't even bother to try if the OSABI didn't register a
1005 sigcontext_addr handler or pc_in_sigtramp hander. */
ec7cc0e8 1006 if (gdbarch_tdep (gdbarch)->sigcontext_addr == NULL)
6834c9bb 1007 return 0;
ec7cc0e8 1008 if (gdbarch_tdep (gdbarch)->pc_in_sigtramp == NULL)
6834c9bb 1009 return 0;
c906108c 1010
d2427a71
RH
1011 /* Otherwise we should be in a signal frame. */
1012 find_pc_partial_function (pc, &name, NULL, NULL);
e17a4113 1013 if (gdbarch_tdep (gdbarch)->pc_in_sigtramp (gdbarch, pc, name))
6834c9bb 1014 return 1;
c906108c 1015
6834c9bb 1016 return 0;
c906108c 1017}
6834c9bb
JB
1018
1019static const struct frame_unwind alpha_sigtramp_frame_unwind = {
1020 SIGTRAMP_FRAME,
8fbca658 1021 default_frame_unwind_stop_reason,
6834c9bb
JB
1022 alpha_sigtramp_frame_this_id,
1023 alpha_sigtramp_frame_prev_register,
1024 NULL,
1025 alpha_sigtramp_frame_sniffer
1026};
1027
d2427a71 1028\f
c906108c 1029
d2427a71
RH
1030/* Heuristic_proc_start may hunt through the text section for a long
1031 time across a 2400 baud serial line. Allows the user to limit this
1032 search. */
44096aee 1033static int heuristic_fence_post = 0;
c906108c 1034
d2427a71
RH
1035/* Attempt to locate the start of the function containing PC. We assume that
1036 the previous function ends with an about_to_return insn. Not foolproof by
1037 any means, since gcc is happy to put the epilogue in the middle of a
1038 function. But we're guessing anyway... */
c906108c 1039
d2427a71 1040static CORE_ADDR
be8626e0 1041alpha_heuristic_proc_start (struct gdbarch *gdbarch, CORE_ADDR pc)
d2427a71 1042{
be8626e0 1043 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
d2427a71
RH
1044 CORE_ADDR last_non_nop = pc;
1045 CORE_ADDR fence = pc - heuristic_fence_post;
1046 CORE_ADDR orig_pc = pc;
fbe586ae 1047 CORE_ADDR func;
d6b48e9c 1048 struct inferior *inf;
9e0b60a8 1049
d2427a71
RH
1050 if (pc == 0)
1051 return 0;
9e0b60a8 1052
fbe586ae
RH
1053 /* First see if we can find the start of the function from minimal
1054 symbol information. This can succeed with a binary that doesn't
1055 have debug info, but hasn't been stripped. */
1056 func = get_pc_function_start (pc);
1057 if (func)
1058 return func;
1059
44096aee 1060 if (heuristic_fence_post == -1
d2427a71
RH
1061 || fence < tdep->vm_min_address)
1062 fence = tdep->vm_min_address;
c906108c 1063
d2427a71
RH
1064 /* Search back for previous return; also stop at a 0, which might be
1065 seen for instance before the start of a code section. Don't include
1066 nops, since this usually indicates padding between functions. */
e8d2d628 1067 for (pc -= ALPHA_INSN_SIZE; pc >= fence; pc -= ALPHA_INSN_SIZE)
c906108c 1068 {
e17a4113 1069 unsigned int insn = alpha_read_insn (gdbarch, pc);
d2427a71 1070 switch (insn)
c906108c 1071 {
d2427a71
RH
1072 case 0: /* invalid insn */
1073 case 0x6bfa8001: /* ret $31,($26),1 */
1074 return last_non_nop;
1075
1076 case 0x2ffe0000: /* unop: ldq_u $31,0($30) */
1077 case 0x47ff041f: /* nop: bis $31,$31,$31 */
1078 break;
1079
1080 default:
1081 last_non_nop = pc;
1082 break;
c906108c 1083 }
d2427a71 1084 }
c906108c 1085
d6b48e9c
PA
1086 inf = current_inferior ();
1087
d2427a71
RH
1088 /* It's not clear to me why we reach this point when stopping quietly,
1089 but with this test, at least we don't print out warnings for every
1090 child forked (eg, on decstation). 22apr93 rich@cygnus.com. */
16c381f0 1091 if (inf->control.stop_soon == NO_STOP_QUIETLY)
d2427a71
RH
1092 {
1093 static int blurb_printed = 0;
c906108c 1094
d2427a71 1095 if (fence == tdep->vm_min_address)
323e0a4a 1096 warning (_("Hit beginning of text section without finding \
5af949e3 1097enclosing function for address %s"), paddress (gdbarch, orig_pc));
c906108c 1098 else
323e0a4a 1099 warning (_("Hit heuristic-fence-post without finding \
5af949e3 1100enclosing function for address %s"), paddress (gdbarch, orig_pc));
c906108c 1101
d2427a71
RH
1102 if (!blurb_printed)
1103 {
323e0a4a 1104 printf_filtered (_("\
d2427a71
RH
1105This warning occurs if you are debugging a function without any symbols\n\
1106(for example, in a stripped executable). In that case, you may wish to\n\
1107increase the size of the search with the `set heuristic-fence-post' command.\n\
1108\n\
1109Otherwise, you told GDB there was a function where there isn't one, or\n\
323e0a4a 1110(more likely) you have encountered a bug in GDB.\n"));
d2427a71
RH
1111 blurb_printed = 1;
1112 }
1113 }
c906108c 1114
d2427a71
RH
1115 return 0;
1116}
c906108c 1117
07ea644b
MD
1118/* Fallback alpha frame unwinder. Uses instruction scanning and knows
1119 something about the traditional layout of alpha stack frames. */
1120
1121struct alpha_heuristic_unwind_cache
1122{
1123 CORE_ADDR vfp;
1124 CORE_ADDR start_pc;
1125 struct trad_frame_saved_reg *saved_regs;
1126 int return_reg;
1127};
1128
3a48e6ff
JG
1129/* If a probing loop sequence starts at PC, simulate it and compute
1130 FRAME_SIZE and PC after its execution. Otherwise, return with PC and
1131 FRAME_SIZE unchanged. */
1132
1133static void
1134alpha_heuristic_analyze_probing_loop (struct gdbarch *gdbarch, CORE_ADDR *pc,
1135 int *frame_size)
1136{
1137 CORE_ADDR cur_pc = *pc;
1138 int cur_frame_size = *frame_size;
1139 int nb_of_iterations, reg_index, reg_probe;
1140 unsigned int insn;
1141
1142 /* The following pattern is recognized as a probing loop:
1143
1144 lda REG_INDEX,NB_OF_ITERATIONS
1145 lda REG_PROBE,<immediate>(sp)
1146
1147 LOOP_START:
1148 stq zero,<immediate>(REG_PROBE)
1149 subq REG_INDEX,0x1,REG_INDEX
1150 lda REG_PROBE,<immediate>(REG_PROBE)
1151 bne REG_INDEX, LOOP_START
1152
1153 lda sp,<immediate>(REG_PROBE)
1154
1155 If anything different is found, the function returns without
1156 changing PC and FRAME_SIZE. Otherwise, PC will point immediately
0963b4bd 1157 after this sequence, and FRAME_SIZE will be updated. */
3a48e6ff
JG
1158
1159 /* lda REG_INDEX,NB_OF_ITERATIONS */
1160
1161 insn = alpha_read_insn (gdbarch, cur_pc);
1162 if (INSN_OPCODE (insn) != lda_opcode)
1163 return;
1164 reg_index = MEM_RA (insn);
1165 nb_of_iterations = MEM_DISP (insn);
1166
1167 /* lda REG_PROBE,<immediate>(sp) */
1168
1169 cur_pc += ALPHA_INSN_SIZE;
1170 insn = alpha_read_insn (gdbarch, cur_pc);
1171 if (INSN_OPCODE (insn) != lda_opcode
1172 || MEM_RB (insn) != ALPHA_SP_REGNUM)
1173 return;
1174 reg_probe = MEM_RA (insn);
1175 cur_frame_size -= MEM_DISP (insn);
1176
1177 /* stq zero,<immediate>(REG_PROBE) */
1178
1179 cur_pc += ALPHA_INSN_SIZE;
1180 insn = alpha_read_insn (gdbarch, cur_pc);
1181 if (INSN_OPCODE (insn) != stq_opcode
1182 || MEM_RA (insn) != 0x1f
1183 || MEM_RB (insn) != reg_probe)
1184 return;
1185
1186 /* subq REG_INDEX,0x1,REG_INDEX */
1187
1188 cur_pc += ALPHA_INSN_SIZE;
1189 insn = alpha_read_insn (gdbarch, cur_pc);
1190 if (INSN_OPCODE (insn) != subq_opcode
1191 || !OPR_HAS_IMMEDIATE (insn)
1192 || OPR_FUNCTION (insn) != subq_function
1193 || OPR_LIT(insn) != 1
1194 || OPR_RA (insn) != reg_index
1195 || OPR_RC (insn) != reg_index)
1196 return;
1197
1198 /* lda REG_PROBE,<immediate>(REG_PROBE) */
1199
1200 cur_pc += ALPHA_INSN_SIZE;
1201 insn = alpha_read_insn (gdbarch, cur_pc);
1202 if (INSN_OPCODE (insn) != lda_opcode
1203 || MEM_RA (insn) != reg_probe
1204 || MEM_RB (insn) != reg_probe)
1205 return;
1206 cur_frame_size -= MEM_DISP (insn) * nb_of_iterations;
1207
1208 /* bne REG_INDEX, LOOP_START */
1209
1210 cur_pc += ALPHA_INSN_SIZE;
1211 insn = alpha_read_insn (gdbarch, cur_pc);
1212 if (INSN_OPCODE (insn) != bne_opcode
1213 || MEM_RA (insn) != reg_index)
1214 return;
1215
1216 /* lda sp,<immediate>(REG_PROBE) */
1217
1218 cur_pc += ALPHA_INSN_SIZE;
1219 insn = alpha_read_insn (gdbarch, cur_pc);
1220 if (INSN_OPCODE (insn) != lda_opcode
1221 || MEM_RA (insn) != ALPHA_SP_REGNUM
1222 || MEM_RB (insn) != reg_probe)
1223 return;
1224 cur_frame_size -= MEM_DISP (insn);
1225
1226 *pc = cur_pc;
1227 *frame_size = cur_frame_size;
1228}
1229
fbe586ae 1230static struct alpha_heuristic_unwind_cache *
6834c9bb 1231alpha_heuristic_frame_unwind_cache (struct frame_info *this_frame,
d2427a71
RH
1232 void **this_prologue_cache,
1233 CORE_ADDR start_pc)
1234{
6834c9bb 1235 struct gdbarch *gdbarch = get_frame_arch (this_frame);
d2427a71
RH
1236 struct alpha_heuristic_unwind_cache *info;
1237 ULONGEST val;
1238 CORE_ADDR limit_pc, cur_pc;
1239 int frame_reg, frame_size, return_reg, reg;
c906108c 1240
d2427a71
RH
1241 if (*this_prologue_cache)
1242 return *this_prologue_cache;
c906108c 1243
d2427a71
RH
1244 info = FRAME_OBSTACK_ZALLOC (struct alpha_heuristic_unwind_cache);
1245 *this_prologue_cache = info;
6834c9bb 1246 info->saved_regs = trad_frame_alloc_saved_regs (this_frame);
c906108c 1247
6834c9bb 1248 limit_pc = get_frame_pc (this_frame);
d2427a71 1249 if (start_pc == 0)
be8626e0 1250 start_pc = alpha_heuristic_proc_start (gdbarch, limit_pc);
d2427a71 1251 info->start_pc = start_pc;
c906108c 1252
d2427a71
RH
1253 frame_reg = ALPHA_SP_REGNUM;
1254 frame_size = 0;
1255 return_reg = -1;
c906108c 1256
d2427a71
RH
1257 /* If we've identified a likely place to start, do code scanning. */
1258 if (start_pc != 0)
c5aa993b 1259 {
d2427a71
RH
1260 /* Limit the forward search to 50 instructions. */
1261 if (start_pc + 200 < limit_pc)
1262 limit_pc = start_pc + 200;
c5aa993b 1263
e8d2d628 1264 for (cur_pc = start_pc; cur_pc < limit_pc; cur_pc += ALPHA_INSN_SIZE)
d2427a71 1265 {
e17a4113 1266 unsigned int word = alpha_read_insn (gdbarch, cur_pc);
c5aa993b 1267
d2427a71
RH
1268 if ((word & 0xffff0000) == 0x23de0000) /* lda $sp,n($sp) */
1269 {
1270 if (word & 0x8000)
1271 {
1272 /* Consider only the first stack allocation instruction
0963b4bd 1273 to contain the static size of the frame. */
d2427a71
RH
1274 if (frame_size == 0)
1275 frame_size = (-word) & 0xffff;
1276 }
1277 else
1278 {
1279 /* Exit loop if a positive stack adjustment is found, which
1280 usually means that the stack cleanup code in the function
1281 epilogue is reached. */
1282 break;
1283 }
1284 }
1285 else if ((word & 0xfc1f0000) == 0xb41e0000) /* stq reg,n($sp) */
1286 {
1287 reg = (word & 0x03e00000) >> 21;
1288
d15bfd3a
AC
1289 /* Ignore this instruction if we have already encountered
1290 an instruction saving the same register earlier in the
1291 function code. The current instruction does not tell
1292 us where the original value upon function entry is saved.
1293 All it says is that the function we are scanning reused
1294 that register for some computation of its own, and is now
1295 saving its result. */
07ea644b 1296 if (trad_frame_addr_p(info->saved_regs, reg))
d15bfd3a
AC
1297 continue;
1298
d2427a71
RH
1299 if (reg == 31)
1300 continue;
1301
1302 /* Do not compute the address where the register was saved yet,
1303 because we don't know yet if the offset will need to be
1304 relative to $sp or $fp (we can not compute the address
1305 relative to $sp if $sp is updated during the execution of
1306 the current subroutine, for instance when doing some alloca).
1307 So just store the offset for the moment, and compute the
1308 address later when we know whether this frame has a frame
1309 pointer or not. */
1310 /* Hack: temporarily add one, so that the offset is non-zero
1311 and we can tell which registers have save offsets below. */
07ea644b 1312 info->saved_regs[reg].addr = (word & 0xffff) + 1;
d2427a71
RH
1313
1314 /* Starting with OSF/1-3.2C, the system libraries are shipped
1315 without local symbols, but they still contain procedure
1316 descriptors without a symbol reference. GDB is currently
1317 unable to find these procedure descriptors and uses
1318 heuristic_proc_desc instead.
1319 As some low level compiler support routines (__div*, __add*)
1320 use a non-standard return address register, we have to
1321 add some heuristics to determine the return address register,
1322 or stepping over these routines will fail.
1323 Usually the return address register is the first register
1324 saved on the stack, but assembler optimization might
1325 rearrange the register saves.
1326 So we recognize only a few registers (t7, t9, ra) within
1327 the procedure prologue as valid return address registers.
1328 If we encounter a return instruction, we extract the
7a9dd1b2 1329 return address register from it.
d2427a71
RH
1330
1331 FIXME: Rewriting GDB to access the procedure descriptors,
0963b4bd
MS
1332 e.g. via the minimal symbol table, might obviate this
1333 hack. */
d2427a71
RH
1334 if (return_reg == -1
1335 && cur_pc < (start_pc + 80)
1336 && (reg == ALPHA_T7_REGNUM
1337 || reg == ALPHA_T9_REGNUM
1338 || reg == ALPHA_RA_REGNUM))
1339 return_reg = reg;
1340 }
1341 else if ((word & 0xffe0ffff) == 0x6be08001) /* ret zero,reg,1 */
1342 return_reg = (word >> 16) & 0x1f;
1343 else if (word == 0x47de040f) /* bis sp,sp,fp */
1344 frame_reg = ALPHA_GCC_FP_REGNUM;
1345 else if (word == 0x47fe040f) /* bis zero,sp,fp */
1346 frame_reg = ALPHA_GCC_FP_REGNUM;
3a48e6ff
JG
1347
1348 alpha_heuristic_analyze_probing_loop (gdbarch, &cur_pc, &frame_size);
d2427a71 1349 }
c5aa993b 1350
d2427a71
RH
1351 /* If we haven't found a valid return address register yet, keep
1352 searching in the procedure prologue. */
1353 if (return_reg == -1)
1354 {
1355 while (cur_pc < (limit_pc + 80) && cur_pc < (start_pc + 80))
1356 {
e17a4113 1357 unsigned int word = alpha_read_insn (gdbarch, cur_pc);
c5aa993b 1358
d2427a71
RH
1359 if ((word & 0xfc1f0000) == 0xb41e0000) /* stq reg,n($sp) */
1360 {
1361 reg = (word & 0x03e00000) >> 21;
1362 if (reg == ALPHA_T7_REGNUM
1363 || reg == ALPHA_T9_REGNUM
1364 || reg == ALPHA_RA_REGNUM)
1365 {
1366 return_reg = reg;
1367 break;
1368 }
1369 }
1370 else if ((word & 0xffe0ffff) == 0x6be08001) /* ret zero,reg,1 */
1371 {
1372 return_reg = (word >> 16) & 0x1f;
1373 break;
1374 }
85b32d22 1375
e8d2d628 1376 cur_pc += ALPHA_INSN_SIZE;
d2427a71
RH
1377 }
1378 }
c906108c 1379 }
c906108c 1380
d2427a71
RH
1381 /* Failing that, do default to the customary RA. */
1382 if (return_reg == -1)
1383 return_reg = ALPHA_RA_REGNUM;
1384 info->return_reg = return_reg;
f8453e34 1385
6834c9bb 1386 val = get_frame_register_unsigned (this_frame, frame_reg);
d2427a71 1387 info->vfp = val + frame_size;
c906108c 1388
d2427a71
RH
1389 /* Convert offsets to absolute addresses. See above about adding
1390 one to the offsets to make all detected offsets non-zero. */
1391 for (reg = 0; reg < ALPHA_NUM_REGS; ++reg)
07ea644b
MD
1392 if (trad_frame_addr_p(info->saved_regs, reg))
1393 info->saved_regs[reg].addr += val - 1;
d2427a71 1394
bfd66dd9
JB
1395 /* The stack pointer of the previous frame is computed by popping
1396 the current stack frame. */
1397 if (!trad_frame_addr_p (info->saved_regs, ALPHA_SP_REGNUM))
1398 trad_frame_set_value (info->saved_regs, ALPHA_SP_REGNUM, info->vfp);
1399
d2427a71 1400 return info;
c906108c 1401}
c906108c 1402
d2427a71
RH
1403/* Given a GDB frame, determine the address of the calling function's
1404 frame. This will be used to create a new GDB frame struct. */
1405
fbe586ae 1406static void
6834c9bb
JB
1407alpha_heuristic_frame_this_id (struct frame_info *this_frame,
1408 void **this_prologue_cache,
1409 struct frame_id *this_id)
c906108c 1410{
d2427a71 1411 struct alpha_heuristic_unwind_cache *info
6834c9bb 1412 = alpha_heuristic_frame_unwind_cache (this_frame, this_prologue_cache, 0);
c906108c 1413
d2427a71 1414 *this_id = frame_id_build (info->vfp, info->start_pc);
c906108c
SS
1415}
1416
d2427a71
RH
1417/* Retrieve the value of REGNUM in FRAME. Don't give up! */
1418
6834c9bb
JB
1419static struct value *
1420alpha_heuristic_frame_prev_register (struct frame_info *this_frame,
1421 void **this_prologue_cache, int regnum)
c906108c 1422{
d2427a71 1423 struct alpha_heuristic_unwind_cache *info
6834c9bb 1424 = alpha_heuristic_frame_unwind_cache (this_frame, this_prologue_cache, 0);
d2427a71
RH
1425
1426 /* The PC of the previous frame is stored in the link register of
1427 the current frame. Frob regnum so that we pull the value from
1428 the correct place. */
1429 if (regnum == ALPHA_PC_REGNUM)
1430 regnum = info->return_reg;
1431
6834c9bb 1432 return trad_frame_get_prev_register (this_frame, info->saved_regs, regnum);
95b80706
JT
1433}
1434
d2427a71
RH
1435static const struct frame_unwind alpha_heuristic_frame_unwind = {
1436 NORMAL_FRAME,
8fbca658 1437 default_frame_unwind_stop_reason,
d2427a71 1438 alpha_heuristic_frame_this_id,
6834c9bb
JB
1439 alpha_heuristic_frame_prev_register,
1440 NULL,
1441 default_frame_sniffer
d2427a71 1442};
c906108c 1443
fbe586ae 1444static CORE_ADDR
6834c9bb 1445alpha_heuristic_frame_base_address (struct frame_info *this_frame,
d2427a71 1446 void **this_prologue_cache)
c906108c 1447{
d2427a71 1448 struct alpha_heuristic_unwind_cache *info
6834c9bb 1449 = alpha_heuristic_frame_unwind_cache (this_frame, this_prologue_cache, 0);
c906108c 1450
d2427a71 1451 return info->vfp;
c906108c
SS
1452}
1453
d2427a71
RH
1454static const struct frame_base alpha_heuristic_frame_base = {
1455 &alpha_heuristic_frame_unwind,
1456 alpha_heuristic_frame_base_address,
1457 alpha_heuristic_frame_base_address,
1458 alpha_heuristic_frame_base_address
1459};
1460
c906108c 1461/* Just like reinit_frame_cache, but with the right arguments to be
d2427a71 1462 callable as an sfunc. Used by the "set heuristic-fence-post" command. */
c906108c
SS
1463
1464static void
fba45db2 1465reinit_frame_cache_sfunc (char *args, int from_tty, struct cmd_list_element *c)
c906108c
SS
1466{
1467 reinit_frame_cache ();
1468}
1469
d2427a71 1470\f
d2427a71
RH
1471/* Assuming NEXT_FRAME->prev is a dummy, return the frame ID of that
1472 dummy frame. The frame ID's base needs to match the TOS value
1473 saved by save_dummy_frame_tos(), and the PC match the dummy frame's
1474 breakpoint. */
d734c450 1475
d2427a71 1476static struct frame_id
6834c9bb 1477alpha_dummy_id (struct gdbarch *gdbarch, struct frame_info *this_frame)
0d056799 1478{
d2427a71 1479 ULONGEST base;
6834c9bb
JB
1480 base = get_frame_register_unsigned (this_frame, ALPHA_SP_REGNUM);
1481 return frame_id_build (base, get_frame_pc (this_frame));
0d056799
JT
1482}
1483
dc129d82 1484static CORE_ADDR
d2427a71 1485alpha_unwind_pc (struct gdbarch *gdbarch, struct frame_info *next_frame)
accc6d1f 1486{
d2427a71 1487 ULONGEST pc;
11411de3 1488 pc = frame_unwind_register_unsigned (next_frame, ALPHA_PC_REGNUM);
d2427a71 1489 return pc;
accc6d1f
JT
1490}
1491
98a8e1e5
RH
1492\f
1493/* Helper routines for alpha*-nat.c files to move register sets to and
1494 from core files. The UNIQUE pointer is allowed to be NULL, as most
1495 targets don't supply this value in their core files. */
1496
1497void
390c1522
UW
1498alpha_supply_int_regs (struct regcache *regcache, int regno,
1499 const void *r0_r30, const void *pc, const void *unique)
98a8e1e5 1500{
2a1ce6ec 1501 const gdb_byte *regs = r0_r30;
98a8e1e5
RH
1502 int i;
1503
1504 for (i = 0; i < 31; ++i)
1505 if (regno == i || regno == -1)
390c1522 1506 regcache_raw_supply (regcache, i, regs + i * 8);
98a8e1e5
RH
1507
1508 if (regno == ALPHA_ZERO_REGNUM || regno == -1)
4a1be8d2
PA
1509 {
1510 const gdb_byte zero[8] = { 0 };
1511
1512 regcache_raw_supply (regcache, ALPHA_ZERO_REGNUM, zero);
1513 }
98a8e1e5
RH
1514
1515 if (regno == ALPHA_PC_REGNUM || regno == -1)
390c1522 1516 regcache_raw_supply (regcache, ALPHA_PC_REGNUM, pc);
98a8e1e5
RH
1517
1518 if (regno == ALPHA_UNIQUE_REGNUM || regno == -1)
390c1522 1519 regcache_raw_supply (regcache, ALPHA_UNIQUE_REGNUM, unique);
98a8e1e5
RH
1520}
1521
1522void
390c1522
UW
1523alpha_fill_int_regs (const struct regcache *regcache,
1524 int regno, void *r0_r30, void *pc, void *unique)
98a8e1e5 1525{
2a1ce6ec 1526 gdb_byte *regs = r0_r30;
98a8e1e5
RH
1527 int i;
1528
1529 for (i = 0; i < 31; ++i)
1530 if (regno == i || regno == -1)
390c1522 1531 regcache_raw_collect (regcache, i, regs + i * 8);
98a8e1e5
RH
1532
1533 if (regno == ALPHA_PC_REGNUM || regno == -1)
390c1522 1534 regcache_raw_collect (regcache, ALPHA_PC_REGNUM, pc);
98a8e1e5
RH
1535
1536 if (unique && (regno == ALPHA_UNIQUE_REGNUM || regno == -1))
390c1522 1537 regcache_raw_collect (regcache, ALPHA_UNIQUE_REGNUM, unique);
98a8e1e5
RH
1538}
1539
1540void
390c1522
UW
1541alpha_supply_fp_regs (struct regcache *regcache, int regno,
1542 const void *f0_f30, const void *fpcr)
98a8e1e5 1543{
2a1ce6ec 1544 const gdb_byte *regs = f0_f30;
98a8e1e5
RH
1545 int i;
1546
1547 for (i = ALPHA_FP0_REGNUM; i < ALPHA_FP0_REGNUM + 31; ++i)
1548 if (regno == i || regno == -1)
390c1522 1549 regcache_raw_supply (regcache, i,
2a1ce6ec 1550 regs + (i - ALPHA_FP0_REGNUM) * 8);
98a8e1e5
RH
1551
1552 if (regno == ALPHA_FPCR_REGNUM || regno == -1)
390c1522 1553 regcache_raw_supply (regcache, ALPHA_FPCR_REGNUM, fpcr);
98a8e1e5
RH
1554}
1555
1556void
390c1522
UW
1557alpha_fill_fp_regs (const struct regcache *regcache,
1558 int regno, void *f0_f30, void *fpcr)
98a8e1e5 1559{
2a1ce6ec 1560 gdb_byte *regs = f0_f30;
98a8e1e5
RH
1561 int i;
1562
1563 for (i = ALPHA_FP0_REGNUM; i < ALPHA_FP0_REGNUM + 31; ++i)
1564 if (regno == i || regno == -1)
390c1522 1565 regcache_raw_collect (regcache, i,
2a1ce6ec 1566 regs + (i - ALPHA_FP0_REGNUM) * 8);
98a8e1e5
RH
1567
1568 if (regno == ALPHA_FPCR_REGNUM || regno == -1)
390c1522 1569 regcache_raw_collect (regcache, ALPHA_FPCR_REGNUM, fpcr);
98a8e1e5
RH
1570}
1571
d2427a71 1572\f
0de94d4b
JB
1573
1574/* Return nonzero if the G_floating register value in REG is equal to
1575 zero for FP control instructions. */
1576
1577static int
1578fp_register_zero_p (LONGEST reg)
1579{
1580 /* Check that all bits except the sign bit are zero. */
1581 const LONGEST zero_mask = ((LONGEST) 1 << 63) ^ -1;
1582
1583 return ((reg & zero_mask) == 0);
1584}
1585
1586/* Return the value of the sign bit for the G_floating register
1587 value held in REG. */
1588
1589static int
1590fp_register_sign_bit (LONGEST reg)
1591{
1592 const LONGEST sign_mask = (LONGEST) 1 << 63;
1593
1594 return ((reg & sign_mask) != 0);
1595}
1596
ec32e4be
JT
1597/* alpha_software_single_step() is called just before we want to resume
1598 the inferior, if we want to single-step it but there is no hardware
1599 or kernel single-step support (NetBSD on Alpha, for example). We find
e0cd558a 1600 the target of the coming instruction and breakpoint it. */
ec32e4be
JT
1601
1602static CORE_ADDR
0b1b3e42 1603alpha_next_pc (struct frame_info *frame, CORE_ADDR pc)
ec32e4be 1604{
e17a4113 1605 struct gdbarch *gdbarch = get_frame_arch (frame);
ec32e4be
JT
1606 unsigned int insn;
1607 unsigned int op;
551e4f2e 1608 int regno;
ec32e4be
JT
1609 int offset;
1610 LONGEST rav;
1611
e17a4113 1612 insn = alpha_read_insn (gdbarch, pc);
ec32e4be 1613
0963b4bd 1614 /* Opcode is top 6 bits. */
ec32e4be
JT
1615 op = (insn >> 26) & 0x3f;
1616
1617 if (op == 0x1a)
1618 {
1619 /* Jump format: target PC is:
1620 RB & ~3 */
0b1b3e42 1621 return (get_frame_register_unsigned (frame, (insn >> 16) & 0x1f) & ~3);
ec32e4be
JT
1622 }
1623
1624 if ((op & 0x30) == 0x30)
1625 {
1626 /* Branch format: target PC is:
1627 (new PC) + (4 * sext(displacement)) */
f8bf5763
PM
1628 if (op == 0x30 /* BR */
1629 || op == 0x34) /* BSR */
ec32e4be
JT
1630 {
1631 branch_taken:
1632 offset = (insn & 0x001fffff);
1633 if (offset & 0x00100000)
1634 offset |= 0xffe00000;
e8d2d628
MK
1635 offset *= ALPHA_INSN_SIZE;
1636 return (pc + ALPHA_INSN_SIZE + offset);
ec32e4be
JT
1637 }
1638
1639 /* Need to determine if branch is taken; read RA. */
551e4f2e
JB
1640 regno = (insn >> 21) & 0x1f;
1641 switch (op)
1642 {
1643 case 0x31: /* FBEQ */
1644 case 0x36: /* FBGE */
1645 case 0x37: /* FBGT */
1646 case 0x33: /* FBLE */
1647 case 0x32: /* FBLT */
1648 case 0x35: /* FBNE */
e17a4113 1649 regno += gdbarch_fp0_regnum (gdbarch);
551e4f2e
JB
1650 }
1651
0b1b3e42 1652 rav = get_frame_register_signed (frame, regno);
0de94d4b 1653
ec32e4be
JT
1654 switch (op)
1655 {
1656 case 0x38: /* BLBC */
1657 if ((rav & 1) == 0)
1658 goto branch_taken;
1659 break;
1660 case 0x3c: /* BLBS */
1661 if (rav & 1)
1662 goto branch_taken;
1663 break;
1664 case 0x39: /* BEQ */
1665 if (rav == 0)
1666 goto branch_taken;
1667 break;
1668 case 0x3d: /* BNE */
1669 if (rav != 0)
1670 goto branch_taken;
1671 break;
1672 case 0x3a: /* BLT */
1673 if (rav < 0)
1674 goto branch_taken;
1675 break;
1676 case 0x3b: /* BLE */
1677 if (rav <= 0)
1678 goto branch_taken;
1679 break;
1680 case 0x3f: /* BGT */
1681 if (rav > 0)
1682 goto branch_taken;
1683 break;
1684 case 0x3e: /* BGE */
1685 if (rav >= 0)
1686 goto branch_taken;
1687 break;
d2427a71 1688
0de94d4b
JB
1689 /* Floating point branches. */
1690
1691 case 0x31: /* FBEQ */
1692 if (fp_register_zero_p (rav))
1693 goto branch_taken;
1694 break;
1695 case 0x36: /* FBGE */
1696 if (fp_register_sign_bit (rav) == 0 || fp_register_zero_p (rav))
1697 goto branch_taken;
1698 break;
1699 case 0x37: /* FBGT */
1700 if (fp_register_sign_bit (rav) == 0 && ! fp_register_zero_p (rav))
1701 goto branch_taken;
1702 break;
1703 case 0x33: /* FBLE */
1704 if (fp_register_sign_bit (rav) == 1 || fp_register_zero_p (rav))
1705 goto branch_taken;
1706 break;
1707 case 0x32: /* FBLT */
1708 if (fp_register_sign_bit (rav) == 1 && ! fp_register_zero_p (rav))
1709 goto branch_taken;
1710 break;
1711 case 0x35: /* FBNE */
1712 if (! fp_register_zero_p (rav))
1713 goto branch_taken;
1714 break;
ec32e4be
JT
1715 }
1716 }
1717
1718 /* Not a branch or branch not taken; target PC is:
1719 pc + 4 */
e8d2d628 1720 return (pc + ALPHA_INSN_SIZE);
ec32e4be
JT
1721}
1722
e6590a1b 1723int
0b1b3e42 1724alpha_software_single_step (struct frame_info *frame)
ec32e4be 1725{
a6d9a66e 1726 struct gdbarch *gdbarch = get_frame_arch (frame);
6c95b8df 1727 struct address_space *aspace = get_frame_address_space (frame);
e0cd558a 1728 CORE_ADDR pc, next_pc;
ec32e4be 1729
0b1b3e42
UW
1730 pc = get_frame_pc (frame);
1731 next_pc = alpha_next_pc (frame, pc);
ec32e4be 1732
6c95b8df 1733 insert_single_step_breakpoint (gdbarch, aspace, next_pc);
e6590a1b 1734 return 1;
c906108c
SS
1735}
1736
dc129d82 1737\f
dc129d82
JT
1738/* Initialize the current architecture based on INFO. If possible, re-use an
1739 architecture from ARCHES, which is a list of architectures already created
1740 during this debugging session.
1741
1742 Called e.g. at program startup, when reading a core file, and when reading
1743 a binary file. */
1744
1745static struct gdbarch *
1746alpha_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches)
1747{
1748 struct gdbarch_tdep *tdep;
1749 struct gdbarch *gdbarch;
dc129d82 1750
dc129d82 1751 /* Find a candidate among extant architectures. */
4be87837
DJ
1752 arches = gdbarch_list_lookup_by_info (arches, &info);
1753 if (arches != NULL)
1754 return arches->gdbarch;
dc129d82 1755
8d749320 1756 tdep = XNEW (struct gdbarch_tdep);
dc129d82
JT
1757 gdbarch = gdbarch_alloc (&info, tdep);
1758
d2427a71
RH
1759 /* Lowest text address. This is used by heuristic_proc_start()
1760 to decide when to stop looking. */
594706e6 1761 tdep->vm_min_address = (CORE_ADDR) 0x120000000LL;
d9b023cc 1762
36a6271d 1763 tdep->dynamic_sigtramp_offset = NULL;
5868c862 1764 tdep->sigcontext_addr = NULL;
138e7be5
MK
1765 tdep->sc_pc_offset = 2 * 8;
1766 tdep->sc_regs_offset = 4 * 8;
1767 tdep->sc_fpregs_offset = tdep->sc_regs_offset + 32 * 8 + 8;
36a6271d 1768
0963b4bd 1769 tdep->jb_pc = -1; /* longjmp support not enabled by default. */
accc6d1f 1770
9823e921
RH
1771 tdep->return_in_memory = alpha_return_in_memory_always;
1772
dc129d82
JT
1773 /* Type sizes */
1774 set_gdbarch_short_bit (gdbarch, 16);
1775 set_gdbarch_int_bit (gdbarch, 32);
1776 set_gdbarch_long_bit (gdbarch, 64);
1777 set_gdbarch_long_long_bit (gdbarch, 64);
1778 set_gdbarch_float_bit (gdbarch, 32);
1779 set_gdbarch_double_bit (gdbarch, 64);
1780 set_gdbarch_long_double_bit (gdbarch, 64);
1781 set_gdbarch_ptr_bit (gdbarch, 64);
1782
1783 /* Register info */
1784 set_gdbarch_num_regs (gdbarch, ALPHA_NUM_REGS);
1785 set_gdbarch_sp_regnum (gdbarch, ALPHA_SP_REGNUM);
dc129d82
JT
1786 set_gdbarch_pc_regnum (gdbarch, ALPHA_PC_REGNUM);
1787 set_gdbarch_fp0_regnum (gdbarch, ALPHA_FP0_REGNUM);
1788
1789 set_gdbarch_register_name (gdbarch, alpha_register_name);
c483c494 1790 set_gdbarch_register_type (gdbarch, alpha_register_type);
dc129d82
JT
1791
1792 set_gdbarch_cannot_fetch_register (gdbarch, alpha_cannot_fetch_register);
1793 set_gdbarch_cannot_store_register (gdbarch, alpha_cannot_store_register);
1794
c483c494
RH
1795 set_gdbarch_convert_register_p (gdbarch, alpha_convert_register_p);
1796 set_gdbarch_register_to_value (gdbarch, alpha_register_to_value);
1797 set_gdbarch_value_to_register (gdbarch, alpha_value_to_register);
dc129d82 1798
615967cb
RH
1799 set_gdbarch_register_reggroup_p (gdbarch, alpha_register_reggroup_p);
1800
d2427a71 1801 /* Prologue heuristics. */
dc129d82
JT
1802 set_gdbarch_skip_prologue (gdbarch, alpha_skip_prologue);
1803
5ef165c2
RH
1804 /* Disassembler. */
1805 set_gdbarch_print_insn (gdbarch, print_insn_alpha);
1806
d2427a71 1807 /* Call info. */
dc129d82 1808
9823e921 1809 set_gdbarch_return_value (gdbarch, alpha_return_value);
dc129d82
JT
1810
1811 /* Settings for calling functions in the inferior. */
c88e30c0 1812 set_gdbarch_push_dummy_call (gdbarch, alpha_push_dummy_call);
d2427a71
RH
1813
1814 /* Methods for saving / extracting a dummy frame's ID. */
6834c9bb 1815 set_gdbarch_dummy_id (gdbarch, alpha_dummy_id);
d2427a71
RH
1816
1817 /* Return the unwound PC value. */
1818 set_gdbarch_unwind_pc (gdbarch, alpha_unwind_pc);
dc129d82
JT
1819
1820 set_gdbarch_inner_than (gdbarch, core_addr_lessthan);
36a6271d 1821 set_gdbarch_skip_trampoline_code (gdbarch, find_solib_trampoline_target);
dc129d82 1822
95b80706 1823 set_gdbarch_breakpoint_from_pc (gdbarch, alpha_breakpoint_from_pc);
e8d2d628 1824 set_gdbarch_decr_pc_after_break (gdbarch, ALPHA_INSN_SIZE);
9d519230 1825 set_gdbarch_cannot_step_breakpoint (gdbarch, 1);
95b80706 1826
46ad3598
UW
1827 /* Handles single stepping of atomic sequences. */
1828 set_gdbarch_software_single_step (gdbarch, alpha_deal_with_atomic_sequence);
1829
44dffaac 1830 /* Hook in ABI-specific overrides, if they have been registered. */
4be87837 1831 gdbarch_init_osabi (info, gdbarch);
44dffaac 1832
accc6d1f
JT
1833 /* Now that we have tuned the configuration, set a few final things
1834 based on what the OS ABI has told us. */
1835
1836 if (tdep->jb_pc >= 0)
1837 set_gdbarch_get_longjmp_target (gdbarch, alpha_get_longjmp_target);
1838
6834c9bb
JB
1839 frame_unwind_append_unwinder (gdbarch, &alpha_sigtramp_frame_unwind);
1840 frame_unwind_append_unwinder (gdbarch, &alpha_heuristic_frame_unwind);
dc129d82 1841
d2427a71 1842 frame_base_set_default (gdbarch, &alpha_heuristic_frame_base);
accc6d1f 1843
d2427a71 1844 return gdbarch;
dc129d82
JT
1845}
1846
baa490c4
RH
1847void
1848alpha_dwarf2_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
1849{
6834c9bb 1850 dwarf2_append_unwinders (gdbarch);
336d1bba 1851 frame_base_append_sniffer (gdbarch, dwarf2_frame_base_sniffer);
baa490c4
RH
1852}
1853
a78f21af
AC
1854extern initialize_file_ftype _initialize_alpha_tdep; /* -Wmissing-prototypes */
1855
c906108c 1856void
fba45db2 1857_initialize_alpha_tdep (void)
c906108c
SS
1858{
1859 struct cmd_list_element *c;
1860
d2427a71 1861 gdbarch_register (bfd_arch_alpha, alpha_gdbarch_init, NULL);
c906108c
SS
1862
1863 /* Let the user set the fence post for heuristic_proc_start. */
1864
1865 /* We really would like to have both "0" and "unlimited" work, but
1866 command.c doesn't deal with that. So make it a var_zinteger
1867 because the user can always use "999999" or some such for unlimited. */
edefbb7c
AC
1868 /* We need to throw away the frame cache when we set this, since it
1869 might change our ability to get backtraces. */
1870 add_setshow_zinteger_cmd ("heuristic-fence-post", class_support,
7915a72c
AC
1871 &heuristic_fence_post, _("\
1872Set the distance searched for the start of a function."), _("\
1873Show the distance searched for the start of a function."), _("\
c906108c
SS
1874If you are debugging a stripped executable, GDB needs to search through the\n\
1875program for the start of a function. This command sets the distance of the\n\
323e0a4a 1876search. The only need to set it is when debugging a stripped executable."),
2c5b56ce 1877 reinit_frame_cache_sfunc,
0963b4bd
MS
1878 NULL, /* FIXME: i18n: The distance searched for
1879 the start of a function is \"%d\". */
edefbb7c 1880 &setlist, &showlist);
c906108c 1881}
This page took 1.316412 seconds and 4 git commands to generate.