* addr2line.c (long_options): Add new option 'section'.
[deliverable/binutils-gdb.git] / gdb / sparc-tdep.c
CommitLineData
386c036b 1/* Target-dependent code for SPARC.
cda5a58a 2
0a8f48b9 3 Copyright (C) 2003, 2004, 2005, 2006 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
9 the Free Software Foundation; either version 2 of the License, or
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
JM
17 You should have received a copy of the GNU General Public License
18 along with this program; if not, write to the Free Software
197e01b6
EZ
19 Foundation, Inc., 51 Franklin Street, Fifth Floor,
20 Boston, MA 02110-1301, USA. */
c906108c 21
c906108c 22#include "defs.h"
5af923b0 23#include "arch-utils.h"
386c036b
MK
24#include "dis-asm.h"
25#include "floatformat.h"
c906108c 26#include "frame.h"
386c036b
MK
27#include "frame-base.h"
28#include "frame-unwind.h"
29#include "gdbcore.h"
30#include "gdbtypes.h"
c906108c 31#include "inferior.h"
386c036b
MK
32#include "symtab.h"
33#include "objfiles.h"
34#include "osabi.h"
35#include "regcache.h"
c906108c
SS
36#include "target.h"
37#include "value.h"
c906108c 38
43bd9a9e 39#include "gdb_assert.h"
386c036b 40#include "gdb_string.h"
c906108c 41
386c036b 42#include "sparc-tdep.h"
c906108c 43
a54124c5
MK
44struct regset;
45
9eb42ed1
MK
46/* This file implements the SPARC 32-bit ABI as defined by the section
47 "Low-Level System Information" of the SPARC Compliance Definition
48 (SCD) 2.4.1, which is the 32-bit System V psABI for SPARC. The SCD
f2e7c15d 49 lists changes with respect to the original 32-bit psABI as defined
9eb42ed1 50 in the "System V ABI, SPARC Processor Supplement".
386c036b
MK
51
52 Note that if we talk about SunOS, we mean SunOS 4.x, which was
53 BSD-based, which is sometimes (retroactively?) referred to as
54 Solaris 1.x. If we talk about Solaris we mean Solaris 2.x and
55 above (Solaris 7, 8 and 9 are nothing but Solaris 2.7, 2.8 and 2.9
56 suffering from severe version number inflation). Solaris 2.x is
57 also known as SunOS 5.x, since that's what uname(1) says. Solaris
58 2.x is SVR4-based. */
59
60/* Please use the sparc32_-prefix for 32-bit specific code, the
61 sparc64_-prefix for 64-bit specific code and the sparc_-prefix for
62 code that can handle both. The 64-bit specific code lives in
63 sparc64-tdep.c; don't add any here. */
64
65/* The SPARC Floating-Point Quad-Precision format is similar to
66 big-endian IA-64 Quad-recision format. */
67#define floatformat_sparc_quad floatformat_ia64_quad_big
68
69/* The stack pointer is offset from the stack frame by a BIAS of 2047
70 (0x7ff) for 64-bit code. BIAS is likely to be defined on SPARC
71 hosts, so undefine it first. */
72#undef BIAS
73#define BIAS 2047
74
75/* Macros to extract fields from SPARC instructions. */
c906108c
SS
76#define X_OP(i) (((i) >> 30) & 0x3)
77#define X_RD(i) (((i) >> 25) & 0x1f)
78#define X_A(i) (((i) >> 29) & 1)
79#define X_COND(i) (((i) >> 25) & 0xf)
80#define X_OP2(i) (((i) >> 22) & 0x7)
81#define X_IMM22(i) ((i) & 0x3fffff)
82#define X_OP3(i) (((i) >> 19) & 0x3f)
075ccec8 83#define X_RS1(i) (((i) >> 14) & 0x1f)
c906108c 84#define X_I(i) (((i) >> 13) & 1)
c906108c 85/* Sign extension macros. */
c906108c 86#define X_DISP22(i) ((X_IMM22 (i) ^ 0x200000) - 0x200000)
c906108c 87#define X_DISP19(i) ((((i) & 0x7ffff) ^ 0x40000) - 0x40000)
075ccec8 88#define X_SIMM13(i) ((((i) & 0x1fff) ^ 0x1000) - 0x1000)
c906108c 89
386c036b
MK
90/* Fetch the instruction at PC. Instructions are always big-endian
91 even if the processor operates in little-endian mode. */
92
93unsigned long
94sparc_fetch_instruction (CORE_ADDR pc)
c906108c 95{
e1613aba 96 gdb_byte buf[4];
386c036b
MK
97 unsigned long insn;
98 int i;
99
690668cc
MK
100 /* If we can't read the instruction at PC, return zero. */
101 if (target_read_memory (pc, buf, sizeof (buf)))
102 return 0;
c906108c 103
386c036b
MK
104 insn = 0;
105 for (i = 0; i < sizeof (buf); i++)
106 insn = (insn << 8) | buf[i];
107 return insn;
108}
42cdca6c
MK
109\f
110
5465445a
JB
111/* Return non-zero if the instruction corresponding to PC is an "unimp"
112 instruction. */
113
114static int
115sparc_is_unimp_insn (CORE_ADDR pc)
116{
117 const unsigned long insn = sparc_fetch_instruction (pc);
118
119 return ((insn & 0xc1c00000) == 0);
120}
121
42cdca6c
MK
122/* OpenBSD/sparc includes StackGhost, which according to the author's
123 website http://stackghost.cerias.purdue.edu "... transparently and
124 automatically protects applications' stack frames; more
125 specifically, it guards the return pointers. The protection
126 mechanisms require no application source or binary modification and
127 imposes only a negligible performance penalty."
128
129 The same website provides the following description of how
130 StackGhost works:
131
132 "StackGhost interfaces with the kernel trap handler that would
133 normally write out registers to the stack and the handler that
134 would read them back in. By XORing a cookie into the
135 return-address saved in the user stack when it is actually written
136 to the stack, and then XOR it out when the return-address is pulled
137 from the stack, StackGhost can cause attacker corrupted return
138 pointers to behave in a manner the attacker cannot predict.
139 StackGhost can also use several unused bits in the return pointer
140 to detect a smashed return pointer and abort the process."
141
142 For GDB this means that whenever we're reading %i7 from a stack
143 frame's window save area, we'll have to XOR the cookie.
144
145 More information on StackGuard can be found on in:
146
147 Mike Frantzen and Mike Shuey. "StackGhost: Hardware Facilitated
148 Stack Protection." 2001. Published in USENIX Security Symposium
149 '01. */
150
151/* Fetch StackGhost Per-Process XOR cookie. */
152
153ULONGEST
154sparc_fetch_wcookie (void)
155{
baf92889 156 struct target_ops *ops = &current_target;
e1613aba 157 gdb_byte buf[8];
baf92889
MK
158 int len;
159
160 len = target_read_partial (ops, TARGET_OBJECT_WCOOKIE, NULL, buf, 0, 8);
161 if (len == -1)
162 return 0;
42cdca6c 163
baf92889
MK
164 /* We should have either an 32-bit or an 64-bit cookie. */
165 gdb_assert (len == 4 || len == 8);
166
167 return extract_unsigned_integer (buf, len);
168}
386c036b 169\f
baf92889 170
386c036b 171/* Return the contents if register REGNUM as an address. */
c906108c 172
c893be75 173CORE_ADDR
386c036b
MK
174sparc_address_from_register (int regnum)
175{
176 ULONGEST addr;
c906108c 177
386c036b
MK
178 regcache_cooked_read_unsigned (current_regcache, regnum, &addr);
179 return addr;
180}
181\f
c906108c 182
386c036b
MK
183/* The functions on this page are intended to be used to classify
184 function arguments. */
c906108c 185
386c036b 186/* Check whether TYPE is "Integral or Pointer". */
c906108c 187
386c036b
MK
188static int
189sparc_integral_or_pointer_p (const struct type *type)
c906108c 190{
80ad1639
MK
191 int len = TYPE_LENGTH (type);
192
386c036b 193 switch (TYPE_CODE (type))
c906108c 194 {
386c036b
MK
195 case TYPE_CODE_INT:
196 case TYPE_CODE_BOOL:
197 case TYPE_CODE_CHAR:
198 case TYPE_CODE_ENUM:
199 case TYPE_CODE_RANGE:
80ad1639
MK
200 /* We have byte, half-word, word and extended-word/doubleword
201 integral types. The doubleword is an extension to the
202 original 32-bit ABI by the SCD 2.4.x. */
203 return (len == 1 || len == 2 || len == 4 || len == 8);
386c036b
MK
204 case TYPE_CODE_PTR:
205 case TYPE_CODE_REF:
80ad1639
MK
206 /* Allow either 32-bit or 64-bit pointers. */
207 return (len == 4 || len == 8);
386c036b
MK
208 default:
209 break;
210 }
c906108c 211
386c036b
MK
212 return 0;
213}
c906108c 214
386c036b 215/* Check whether TYPE is "Floating". */
c906108c 216
386c036b
MK
217static int
218sparc_floating_p (const struct type *type)
219{
220 switch (TYPE_CODE (type))
c906108c 221 {
386c036b
MK
222 case TYPE_CODE_FLT:
223 {
224 int len = TYPE_LENGTH (type);
225 return (len == 4 || len == 8 || len == 16);
226 }
227 default:
228 break;
229 }
230
231 return 0;
232}
c906108c 233
386c036b 234/* Check whether TYPE is "Structure or Union". */
c906108c 235
386c036b
MK
236static int
237sparc_structure_or_union_p (const struct type *type)
238{
239 switch (TYPE_CODE (type))
240 {
241 case TYPE_CODE_STRUCT:
242 case TYPE_CODE_UNION:
243 return 1;
244 default:
245 break;
c906108c 246 }
386c036b
MK
247
248 return 0;
c906108c 249}
386c036b
MK
250
251/* Register information. */
252
253static const char *sparc32_register_names[] =
5af923b0 254{
386c036b
MK
255 "g0", "g1", "g2", "g3", "g4", "g5", "g6", "g7",
256 "o0", "o1", "o2", "o3", "o4", "o5", "sp", "o7",
257 "l0", "l1", "l2", "l3", "l4", "l5", "l6", "l7",
258 "i0", "i1", "i2", "i3", "i4", "i5", "fp", "i7",
259
260 "f0", "f1", "f2", "f3", "f4", "f5", "f6", "f7",
261 "f8", "f9", "f10", "f11", "f12", "f13", "f14", "f15",
262 "f16", "f17", "f18", "f19", "f20", "f21", "f22", "f23",
263 "f24", "f25", "f26", "f27", "f28", "f29", "f30", "f31",
264
265 "y", "psr", "wim", "tbr", "pc", "npc", "fsr", "csr"
5af923b0
MS
266};
267
386c036b
MK
268/* Total number of registers. */
269#define SPARC32_NUM_REGS ARRAY_SIZE (sparc32_register_names)
c906108c 270
386c036b
MK
271/* We provide the aliases %d0..%d30 for the floating registers as
272 "psuedo" registers. */
273
274static const char *sparc32_pseudo_register_names[] =
275{
276 "d0", "d2", "d4", "d6", "d8", "d10", "d12", "d14",
277 "d16", "d18", "d20", "d22", "d24", "d26", "d28", "d30"
278};
279
280/* Total number of pseudo registers. */
281#define SPARC32_NUM_PSEUDO_REGS ARRAY_SIZE (sparc32_pseudo_register_names)
282
283/* Return the name of register REGNUM. */
284
285static const char *
286sparc32_register_name (int regnum)
287{
288 if (regnum >= 0 && regnum < SPARC32_NUM_REGS)
289 return sparc32_register_names[regnum];
290
291 if (regnum < SPARC32_NUM_REGS + SPARC32_NUM_PSEUDO_REGS)
292 return sparc32_pseudo_register_names[regnum - SPARC32_NUM_REGS];
293
294 return NULL;
295}
296
297/* Return the GDB type object for the "standard" data type of data in
298 register REGNUM. */
299
300static struct type *
301sparc32_register_type (struct gdbarch *gdbarch, int regnum)
302{
303 if (regnum >= SPARC_F0_REGNUM && regnum <= SPARC_F31_REGNUM)
304 return builtin_type_float;
305
306 if (regnum >= SPARC32_D0_REGNUM && regnum <= SPARC32_D30_REGNUM)
307 return builtin_type_double;
308
309 if (regnum == SPARC_SP_REGNUM || regnum == SPARC_FP_REGNUM)
310 return builtin_type_void_data_ptr;
311
312 if (regnum == SPARC32_PC_REGNUM || regnum == SPARC32_NPC_REGNUM)
313 return builtin_type_void_func_ptr;
314
315 return builtin_type_int32;
316}
317
318static void
319sparc32_pseudo_register_read (struct gdbarch *gdbarch,
320 struct regcache *regcache,
e1613aba 321 int regnum, gdb_byte *buf)
386c036b
MK
322{
323 gdb_assert (regnum >= SPARC32_D0_REGNUM && regnum <= SPARC32_D30_REGNUM);
324
325 regnum = SPARC_F0_REGNUM + 2 * (regnum - SPARC32_D0_REGNUM);
326 regcache_raw_read (regcache, regnum, buf);
e1613aba 327 regcache_raw_read (regcache, regnum + 1, buf + 4);
386c036b
MK
328}
329
330static void
331sparc32_pseudo_register_write (struct gdbarch *gdbarch,
332 struct regcache *regcache,
e1613aba 333 int regnum, const gdb_byte *buf)
386c036b
MK
334{
335 gdb_assert (regnum >= SPARC32_D0_REGNUM && regnum <= SPARC32_D30_REGNUM);
336
337 regnum = SPARC_F0_REGNUM + 2 * (regnum - SPARC32_D0_REGNUM);
338 regcache_raw_write (regcache, regnum, buf);
e1613aba 339 regcache_raw_write (regcache, regnum + 1, buf + 4);
386c036b
MK
340}
341\f
342
343static CORE_ADDR
344sparc32_push_dummy_code (struct gdbarch *gdbarch, CORE_ADDR sp,
345 CORE_ADDR funcaddr, int using_gcc,
346 struct value **args, int nargs,
347 struct type *value_type,
348 CORE_ADDR *real_pc, CORE_ADDR *bp_addr)
c906108c 349{
386c036b
MK
350 *bp_addr = sp - 4;
351 *real_pc = funcaddr;
352
353 if (using_struct_return (value_type, using_gcc))
c906108c 354 {
e1613aba 355 gdb_byte buf[4];
386c036b
MK
356
357 /* This is an UNIMP instruction. */
358 store_unsigned_integer (buf, 4, TYPE_LENGTH (value_type) & 0x1fff);
359 write_memory (sp - 8, buf, 4);
360 return sp - 8;
c906108c
SS
361 }
362
386c036b
MK
363 return sp - 4;
364}
365
366static CORE_ADDR
367sparc32_store_arguments (struct regcache *regcache, int nargs,
368 struct value **args, CORE_ADDR sp,
369 int struct_return, CORE_ADDR struct_addr)
370{
371 /* Number of words in the "parameter array". */
372 int num_elements = 0;
373 int element = 0;
374 int i;
375
376 for (i = 0; i < nargs; i++)
c906108c 377 {
4991999e 378 struct type *type = value_type (args[i]);
386c036b
MK
379 int len = TYPE_LENGTH (type);
380
381 if (sparc_structure_or_union_p (type)
382 || (sparc_floating_p (type) && len == 16))
c906108c 383 {
386c036b
MK
384 /* Structure, Union and Quad-Precision Arguments. */
385 sp -= len;
386
387 /* Use doubleword alignment for these values. That's always
388 correct, and wasting a few bytes shouldn't be a problem. */
389 sp &= ~0x7;
390
0fd88904 391 write_memory (sp, value_contents (args[i]), len);
386c036b
MK
392 args[i] = value_from_pointer (lookup_pointer_type (type), sp);
393 num_elements++;
394 }
395 else if (sparc_floating_p (type))
396 {
397 /* Floating arguments. */
398 gdb_assert (len == 4 || len == 8);
399 num_elements += (len / 4);
c906108c 400 }
c5aa993b
JM
401 else
402 {
386c036b
MK
403 /* Integral and pointer arguments. */
404 gdb_assert (sparc_integral_or_pointer_p (type));
405
406 if (len < 4)
407 args[i] = value_cast (builtin_type_int32, args[i]);
408 num_elements += ((len + 3) / 4);
c5aa993b 409 }
c906108c 410 }
c906108c 411
386c036b
MK
412 /* Always allocate at least six words. */
413 sp -= max (6, num_elements) * 4;
c906108c 414
386c036b
MK
415 /* The psABI says that "Software convention requires space for the
416 struct/union return value pointer, even if the word is unused." */
417 sp -= 4;
c906108c 418
386c036b
MK
419 /* The psABI says that "Although software convention and the
420 operating system require every stack frame to be doubleword
421 aligned." */
422 sp &= ~0x7;
c906108c 423
386c036b 424 for (i = 0; i < nargs; i++)
c906108c 425 {
0fd88904 426 const bfd_byte *valbuf = value_contents (args[i]);
4991999e 427 struct type *type = value_type (args[i]);
386c036b 428 int len = TYPE_LENGTH (type);
c906108c 429
386c036b 430 gdb_assert (len == 4 || len == 8);
c906108c 431
386c036b
MK
432 if (element < 6)
433 {
434 int regnum = SPARC_O0_REGNUM + element;
c906108c 435
386c036b
MK
436 regcache_cooked_write (regcache, regnum, valbuf);
437 if (len > 4 && element < 5)
438 regcache_cooked_write (regcache, regnum + 1, valbuf + 4);
439 }
5af923b0 440
386c036b
MK
441 /* Always store the argument in memory. */
442 write_memory (sp + 4 + element * 4, valbuf, len);
443 element += len / 4;
444 }
c906108c 445
386c036b 446 gdb_assert (element == num_elements);
c906108c 447
386c036b 448 if (struct_return)
c906108c 449 {
e1613aba 450 gdb_byte buf[4];
c906108c 451
386c036b
MK
452 store_unsigned_integer (buf, 4, struct_addr);
453 write_memory (sp, buf, 4);
454 }
c906108c 455
386c036b 456 return sp;
c906108c
SS
457}
458
386c036b 459static CORE_ADDR
7d9b040b 460sparc32_push_dummy_call (struct gdbarch *gdbarch, struct value *function,
386c036b
MK
461 struct regcache *regcache, CORE_ADDR bp_addr,
462 int nargs, struct value **args, CORE_ADDR sp,
463 int struct_return, CORE_ADDR struct_addr)
c906108c 464{
386c036b
MK
465 CORE_ADDR call_pc = (struct_return ? (bp_addr - 12) : (bp_addr - 8));
466
467 /* Set return address. */
468 regcache_cooked_write_unsigned (regcache, SPARC_O7_REGNUM, call_pc);
469
470 /* Set up function arguments. */
471 sp = sparc32_store_arguments (regcache, nargs, args, sp,
472 struct_return, struct_addr);
473
474 /* Allocate the 16-word window save area. */
475 sp -= 16 * 4;
c906108c 476
386c036b
MK
477 /* Stack should be doubleword aligned at this point. */
478 gdb_assert (sp % 8 == 0);
c906108c 479
386c036b
MK
480 /* Finally, update the stack pointer. */
481 regcache_cooked_write_unsigned (regcache, SPARC_SP_REGNUM, sp);
482
483 return sp;
484}
485\f
c906108c 486
386c036b
MK
487/* Use the program counter to determine the contents and size of a
488 breakpoint instruction. Return a pointer to a string of bytes that
489 encode a breakpoint instruction, store the length of the string in
490 *LEN and optionally adjust *PC to point to the correct memory
491 location for inserting the breakpoint. */
492
e1613aba 493static const gdb_byte *
386c036b
MK
494sparc_breakpoint_from_pc (CORE_ADDR *pc, int *len)
495{
864a1a37 496 static const gdb_byte break_insn[] = { 0x91, 0xd0, 0x20, 0x01 };
c5aa993b 497
386c036b
MK
498 *len = sizeof (break_insn);
499 return break_insn;
c906108c 500}
386c036b 501\f
c906108c 502
386c036b 503/* Allocate and initialize a frame cache. */
c906108c 504
386c036b
MK
505static struct sparc_frame_cache *
506sparc_alloc_frame_cache (void)
507{
508 struct sparc_frame_cache *cache;
509 int i;
c906108c 510
386c036b 511 cache = FRAME_OBSTACK_ZALLOC (struct sparc_frame_cache);
c906108c 512
386c036b
MK
513 /* Base address. */
514 cache->base = 0;
515 cache->pc = 0;
c906108c 516
386c036b
MK
517 /* Frameless until proven otherwise. */
518 cache->frameless_p = 1;
519
520 cache->struct_return_p = 0;
521
522 return cache;
523}
524
525CORE_ADDR
526sparc_analyze_prologue (CORE_ADDR pc, CORE_ADDR current_pc,
527 struct sparc_frame_cache *cache)
c906108c 528{
386c036b
MK
529 struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
530 unsigned long insn;
531 int offset = 0;
c906108c 532 int dest = -1;
c906108c 533
386c036b
MK
534 if (current_pc <= pc)
535 return current_pc;
536
537 /* We have to handle to "Procedure Linkage Table" (PLT) special. On
538 SPARC the linker usually defines a symbol (typically
539 _PROCEDURE_LINKAGE_TABLE_) at the start of the .plt section.
540 This symbol makes us end up here with PC pointing at the start of
541 the PLT and CURRENT_PC probably pointing at a PLT entry. If we
542 would do our normal prologue analysis, we would probably conclude
543 that we've got a frame when in reality we don't, since the
544 dynamic linker patches up the first PLT with some code that
545 starts with a SAVE instruction. Patch up PC such that it points
546 at the start of our PLT entry. */
547 if (tdep->plt_entry_size > 0 && in_plt_section (current_pc, NULL))
548 pc = current_pc - ((current_pc - pc) % tdep->plt_entry_size);
c906108c 549
386c036b
MK
550 insn = sparc_fetch_instruction (pc);
551
552 /* Recognize a SETHI insn and record its destination. */
553 if (X_OP (insn) == 0 && X_OP2 (insn) == 0x04)
c906108c
SS
554 {
555 dest = X_RD (insn);
386c036b
MK
556 offset += 4;
557
558 insn = sparc_fetch_instruction (pc + 4);
c906108c
SS
559 }
560
386c036b
MK
561 /* Allow for an arithmetic operation on DEST or %g1. */
562 if (X_OP (insn) == 2 && X_I (insn)
c906108c
SS
563 && (X_RD (insn) == 1 || X_RD (insn) == dest))
564 {
386c036b 565 offset += 4;
c906108c 566
386c036b 567 insn = sparc_fetch_instruction (pc + 8);
c906108c 568 }
c906108c 569
386c036b
MK
570 /* Check for the SAVE instruction that sets up the frame. */
571 if (X_OP (insn) == 2 && X_OP3 (insn) == 0x3c)
c906108c 572 {
386c036b
MK
573 cache->frameless_p = 0;
574 return pc + offset + 4;
c906108c
SS
575 }
576
577 return pc;
578}
579
386c036b
MK
580static CORE_ADDR
581sparc_unwind_pc (struct gdbarch *gdbarch, struct frame_info *next_frame)
582{
583 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
584 return frame_unwind_register_unsigned (next_frame, tdep->pc_regnum);
585}
586
587/* Return PC of first real instruction of the function starting at
588 START_PC. */
f510d44e 589
386c036b
MK
590static CORE_ADDR
591sparc32_skip_prologue (CORE_ADDR start_pc)
c906108c 592{
f510d44e
DM
593 struct symtab_and_line sal;
594 CORE_ADDR func_start, func_end;
386c036b 595 struct sparc_frame_cache cache;
f510d44e
DM
596
597 /* This is the preferred method, find the end of the prologue by
598 using the debugging information. */
599 if (find_pc_partial_function (start_pc, NULL, &func_start, &func_end))
600 {
601 sal = find_pc_line (func_start, 0);
602
603 if (sal.end < func_end
604 && start_pc <= sal.end)
605 return sal.end;
606 }
607
075ccec8
MK
608 start_pc = sparc_analyze_prologue (start_pc, 0xffffffffUL, &cache);
609
610 /* The psABI says that "Although the first 6 words of arguments
611 reside in registers, the standard stack frame reserves space for
612 them.". It also suggests that a function may use that space to
613 "write incoming arguments 0 to 5" into that space, and that's
614 indeed what GCC seems to be doing. In that case GCC will
615 generate debug information that points to the stack slots instead
616 of the registers, so we should consider the instructions that
617 write out these incoming arguments onto the stack. Of course we
618 only need to do this if we have a stack frame. */
619
620 while (!cache.frameless_p)
621 {
622 unsigned long insn = sparc_fetch_instruction (start_pc);
623
624 /* Recognize instructions that store incoming arguments in
625 %i0...%i5 into the corresponding stack slot. */
626 if (X_OP (insn) == 3 && (X_OP3 (insn) & 0x3c) == 0x04 && X_I (insn)
627 && (X_RD (insn) >= 24 && X_RD (insn) <= 29) && X_RS1 (insn) == 30
628 && X_SIMM13 (insn) == 68 + (X_RD (insn) - 24) * 4)
629 {
630 start_pc += 4;
631 continue;
632 }
633
634 break;
635 }
636
637 return start_pc;
c906108c
SS
638}
639
386c036b 640/* Normal frames. */
9319a2fe 641
386c036b
MK
642struct sparc_frame_cache *
643sparc_frame_cache (struct frame_info *next_frame, void **this_cache)
9319a2fe 644{
386c036b 645 struct sparc_frame_cache *cache;
9319a2fe 646
386c036b
MK
647 if (*this_cache)
648 return *this_cache;
c906108c 649
386c036b
MK
650 cache = sparc_alloc_frame_cache ();
651 *this_cache = cache;
c906108c 652
386c036b
MK
653 cache->pc = frame_func_unwind (next_frame);
654 if (cache->pc != 0)
c906108c 655 {
386c036b
MK
656 CORE_ADDR addr_in_block = frame_unwind_address_in_block (next_frame);
657 sparc_analyze_prologue (cache->pc, addr_in_block, cache);
c906108c 658 }
386c036b
MK
659
660 if (cache->frameless_p)
c906108c 661 {
cbeae229
MK
662 /* This function is frameless, so %fp (%i6) holds the frame
663 pointer for our calling frame. Use %sp (%o6) as this frame's
664 base address. */
665 cache->base =
666 frame_unwind_register_unsigned (next_frame, SPARC_SP_REGNUM);
667 }
668 else
669 {
670 /* For normal frames, %fp (%i6) holds the frame pointer, the
671 base address for the current stack frame. */
672 cache->base =
673 frame_unwind_register_unsigned (next_frame, SPARC_FP_REGNUM);
c906108c 674 }
c906108c 675
5b2d44a0
MK
676 if (cache->base & 1)
677 cache->base += BIAS;
678
386c036b 679 return cache;
c906108c 680}
c906108c 681
386c036b
MK
682struct sparc_frame_cache *
683sparc32_frame_cache (struct frame_info *next_frame, void **this_cache)
c906108c 684{
386c036b
MK
685 struct sparc_frame_cache *cache;
686 struct symbol *sym;
c906108c 687
386c036b
MK
688 if (*this_cache)
689 return *this_cache;
c906108c 690
386c036b 691 cache = sparc_frame_cache (next_frame, this_cache);
c906108c 692
386c036b
MK
693 sym = find_pc_function (cache->pc);
694 if (sym)
c906108c 695 {
386c036b
MK
696 struct type *type = check_typedef (SYMBOL_TYPE (sym));
697 enum type_code code = TYPE_CODE (type);
698
699 if (code == TYPE_CODE_FUNC || code == TYPE_CODE_METHOD)
700 {
701 type = check_typedef (TYPE_TARGET_TYPE (type));
702 if (sparc_structure_or_union_p (type)
703 || (sparc_floating_p (type) && TYPE_LENGTH (type) == 16))
704 cache->struct_return_p = 1;
705 }
c906108c 706 }
5465445a
JB
707 else
708 {
709 /* There is no debugging information for this function to
710 help us determine whether this function returns a struct
711 or not. So we rely on another heuristic which is to check
712 the instruction at the return address and see if this is
713 an "unimp" instruction. If it is, then it is a struct-return
714 function. */
715 CORE_ADDR pc;
716 int regnum = cache->frameless_p ? SPARC_O7_REGNUM : SPARC_I7_REGNUM;
717
718 pc = frame_unwind_register_unsigned (next_frame, regnum) + 8;
719 if (sparc_is_unimp_insn (pc))
720 cache->struct_return_p = 1;
721 }
c906108c 722
386c036b
MK
723 return cache;
724}
725
726static void
727sparc32_frame_this_id (struct frame_info *next_frame, void **this_cache,
728 struct frame_id *this_id)
729{
730 struct sparc_frame_cache *cache =
731 sparc32_frame_cache (next_frame, this_cache);
732
733 /* This marks the outermost frame. */
734 if (cache->base == 0)
735 return;
736
737 (*this_id) = frame_id_build (cache->base, cache->pc);
738}
c906108c 739
386c036b
MK
740static void
741sparc32_frame_prev_register (struct frame_info *next_frame, void **this_cache,
742 int regnum, int *optimizedp,
743 enum lval_type *lvalp, CORE_ADDR *addrp,
47ef841b 744 int *realnump, gdb_byte *valuep)
386c036b
MK
745{
746 struct sparc_frame_cache *cache =
747 sparc32_frame_cache (next_frame, this_cache);
c906108c 748
386c036b 749 if (regnum == SPARC32_PC_REGNUM || regnum == SPARC32_NPC_REGNUM)
c906108c 750 {
386c036b
MK
751 *optimizedp = 0;
752 *lvalp = not_lval;
753 *addrp = 0;
754 *realnump = -1;
755 if (valuep)
c906108c 756 {
386c036b
MK
757 CORE_ADDR pc = (regnum == SPARC32_NPC_REGNUM) ? 4 : 0;
758
759 /* If this functions has a Structure, Union or
760 Quad-Precision return value, we have to skip the UNIMP
761 instruction that encodes the size of the structure. */
762 if (cache->struct_return_p)
763 pc += 4;
764
765 regnum = cache->frameless_p ? SPARC_O7_REGNUM : SPARC_I7_REGNUM;
766 pc += frame_unwind_register_unsigned (next_frame, regnum) + 8;
767 store_unsigned_integer (valuep, 4, pc);
c906108c 768 }
c906108c
SS
769 return;
770 }
771
42cdca6c
MK
772 /* Handle StackGhost. */
773 {
774 ULONGEST wcookie = sparc_fetch_wcookie ();
775
776 if (wcookie != 0 && !cache->frameless_p && regnum == SPARC_I7_REGNUM)
777 {
778 *optimizedp = 0;
779 *lvalp = not_lval;
780 *addrp = 0;
781 *realnump = -1;
782 if (valuep)
783 {
784 CORE_ADDR addr = cache->base + (regnum - SPARC_L0_REGNUM) * 4;
7d34766b 785 ULONGEST i7;
42cdca6c
MK
786
787 /* Read the value in from memory. */
7d34766b
MK
788 i7 = get_frame_memory_unsigned (next_frame, addr, 4);
789 store_unsigned_integer (valuep, 4, i7 ^ wcookie);
42cdca6c
MK
790 }
791 return;
792 }
793 }
794
386c036b
MK
795 /* The previous frame's `local' and `in' registers have been saved
796 in the register save area. */
797 if (!cache->frameless_p
798 && regnum >= SPARC_L0_REGNUM && regnum <= SPARC_I7_REGNUM)
c906108c 799 {
386c036b
MK
800 *optimizedp = 0;
801 *lvalp = lval_memory;
802 *addrp = cache->base + (regnum - SPARC_L0_REGNUM) * 4;
803 *realnump = -1;
804 if (valuep)
c906108c 805 {
386c036b
MK
806 struct gdbarch *gdbarch = get_frame_arch (next_frame);
807
808 /* Read the value in from memory. */
809 read_memory (*addrp, valuep, register_size (gdbarch, regnum));
c906108c 810 }
386c036b
MK
811 return;
812 }
c906108c 813
386c036b
MK
814 /* The previous frame's `out' registers are accessable as the
815 current frame's `in' registers. */
816 if (!cache->frameless_p
817 && regnum >= SPARC_O0_REGNUM && regnum <= SPARC_O7_REGNUM)
818 regnum += (SPARC_I0_REGNUM - SPARC_O0_REGNUM);
5af923b0 819
00b25ff3
AC
820 *optimizedp = 0;
821 *lvalp = lval_register;
822 *addrp = 0;
823 *realnump = regnum;
824 if (valuep)
825 frame_unwind_register (next_frame, (*realnump), valuep);
386c036b 826}
c906108c 827
386c036b
MK
828static const struct frame_unwind sparc32_frame_unwind =
829{
830 NORMAL_FRAME,
831 sparc32_frame_this_id,
832 sparc32_frame_prev_register
833};
834
835static const struct frame_unwind *
836sparc32_frame_sniffer (struct frame_info *next_frame)
837{
838 return &sparc32_frame_unwind;
c906108c 839}
386c036b 840\f
c906108c 841
386c036b
MK
842static CORE_ADDR
843sparc32_frame_base_address (struct frame_info *next_frame, void **this_cache)
844{
845 struct sparc_frame_cache *cache =
846 sparc32_frame_cache (next_frame, this_cache);
c906108c 847
386c036b
MK
848 return cache->base;
849}
c906108c 850
386c036b
MK
851static const struct frame_base sparc32_frame_base =
852{
853 &sparc32_frame_unwind,
854 sparc32_frame_base_address,
855 sparc32_frame_base_address,
856 sparc32_frame_base_address
857};
c906108c 858
386c036b
MK
859static struct frame_id
860sparc_unwind_dummy_id (struct gdbarch *gdbarch, struct frame_info *next_frame)
861{
862 CORE_ADDR sp;
5af923b0 863
386c036b 864 sp = frame_unwind_register_unsigned (next_frame, SPARC_SP_REGNUM);
5b2d44a0
MK
865 if (sp & 1)
866 sp += BIAS;
386c036b
MK
867 return frame_id_build (sp, frame_pc_unwind (next_frame));
868}
869\f
c906108c 870
386c036b
MK
871/* Extract from an array REGBUF containing the (raw) register state, a
872 function return value of TYPE, and copy that into VALBUF. */
5af923b0 873
386c036b
MK
874static void
875sparc32_extract_return_value (struct type *type, struct regcache *regcache,
e1613aba 876 gdb_byte *valbuf)
386c036b
MK
877{
878 int len = TYPE_LENGTH (type);
e1613aba 879 gdb_byte buf[8];
c906108c 880
386c036b
MK
881 gdb_assert (!sparc_structure_or_union_p (type));
882 gdb_assert (!(sparc_floating_p (type) && len == 16));
c906108c 883
386c036b 884 if (sparc_floating_p (type))
5af923b0 885 {
386c036b
MK
886 /* Floating return values. */
887 regcache_cooked_read (regcache, SPARC_F0_REGNUM, buf);
888 if (len > 4)
889 regcache_cooked_read (regcache, SPARC_F1_REGNUM, buf + 4);
890 memcpy (valbuf, buf, len);
5af923b0
MS
891 }
892 else
893 {
386c036b
MK
894 /* Integral and pointer return values. */
895 gdb_assert (sparc_integral_or_pointer_p (type));
c906108c 896
386c036b
MK
897 regcache_cooked_read (regcache, SPARC_O0_REGNUM, buf);
898 if (len > 4)
899 {
900 regcache_cooked_read (regcache, SPARC_O1_REGNUM, buf + 4);
901 gdb_assert (len == 8);
902 memcpy (valbuf, buf, 8);
903 }
904 else
905 {
906 /* Just stripping off any unused bytes should preserve the
907 signed-ness just fine. */
908 memcpy (valbuf, buf + 4 - len, len);
909 }
910 }
911}
c906108c 912
386c036b
MK
913/* Write into the appropriate registers a function return value stored
914 in VALBUF of type TYPE. */
c906108c 915
386c036b
MK
916static void
917sparc32_store_return_value (struct type *type, struct regcache *regcache,
e1613aba 918 const gdb_byte *valbuf)
386c036b
MK
919{
920 int len = TYPE_LENGTH (type);
e1613aba 921 gdb_byte buf[8];
c906108c 922
386c036b
MK
923 gdb_assert (!sparc_structure_or_union_p (type));
924 gdb_assert (!(sparc_floating_p (type) && len == 16));
c906108c 925
386c036b
MK
926 if (sparc_floating_p (type))
927 {
928 /* Floating return values. */
929 memcpy (buf, valbuf, len);
930 regcache_cooked_write (regcache, SPARC_F0_REGNUM, buf);
931 if (len > 4)
932 regcache_cooked_write (regcache, SPARC_F1_REGNUM, buf + 4);
933 }
934 else
c906108c 935 {
386c036b
MK
936 /* Integral and pointer return values. */
937 gdb_assert (sparc_integral_or_pointer_p (type));
938
939 if (len > 4)
2757dd86 940 {
386c036b
MK
941 gdb_assert (len == 8);
942 memcpy (buf, valbuf, 8);
943 regcache_cooked_write (regcache, SPARC_O1_REGNUM, buf + 4);
2757dd86
AC
944 }
945 else
946 {
386c036b
MK
947 /* ??? Do we need to do any sign-extension here? */
948 memcpy (buf + 4 - len, valbuf, len);
2757dd86 949 }
386c036b 950 regcache_cooked_write (regcache, SPARC_O0_REGNUM, buf);
c906108c
SS
951 }
952}
953
b9d4c5ed
MK
954static enum return_value_convention
955sparc32_return_value (struct gdbarch *gdbarch, struct type *type,
e1613aba
MK
956 struct regcache *regcache, gdb_byte *readbuf,
957 const gdb_byte *writebuf)
b9d4c5ed 958{
0a8f48b9
MK
959 /* The psABI says that "...every stack frame reserves the word at
960 %fp+64. If a function returns a structure, union, or
961 quad-precision value, this word should hold the address of the
962 object into which the return value should be copied." This
963 guarantees that we can always find the return value, not just
964 before the function returns. */
965
b9d4c5ed
MK
966 if (sparc_structure_or_union_p (type)
967 || (sparc_floating_p (type) && TYPE_LENGTH (type) == 16))
0a8f48b9
MK
968 {
969 if (readbuf)
970 {
971 ULONGEST sp;
972 CORE_ADDR addr;
973
974 regcache_cooked_read_unsigned (regcache, SPARC_SP_REGNUM, &sp);
975 addr = read_memory_unsigned_integer (sp + 64, 4);
976 read_memory (addr, readbuf, TYPE_LENGTH (type));
977 }
978
979 return RETURN_VALUE_ABI_PRESERVES_ADDRESS;
980 }
b9d4c5ed
MK
981
982 if (readbuf)
983 sparc32_extract_return_value (type, regcache, readbuf);
984 if (writebuf)
985 sparc32_store_return_value (type, regcache, writebuf);
986
987 return RETURN_VALUE_REGISTER_CONVENTION;
988}
989
386c036b
MK
990static int
991sparc32_stabs_argument_has_addr (struct gdbarch *gdbarch, struct type *type)
c906108c 992{
386c036b
MK
993 return (sparc_structure_or_union_p (type)
994 || (sparc_floating_p (type) && TYPE_LENGTH (type) == 16));
995}
c906108c 996
386c036b
MK
997\f
998/* The SPARC Architecture doesn't have hardware single-step support,
999 and most operating systems don't implement it either, so we provide
1000 software single-step mechanism. */
c906108c 1001
386c036b 1002static CORE_ADDR
c893be75
MK
1003sparc_analyze_control_transfer (struct gdbarch *arch,
1004 CORE_ADDR pc, CORE_ADDR *npc)
386c036b
MK
1005{
1006 unsigned long insn = sparc_fetch_instruction (pc);
1007 int conditional_p = X_COND (insn) & 0x7;
1008 int branch_p = 0;
1009 long offset = 0; /* Must be signed for sign-extend. */
c906108c 1010
386c036b 1011 if (X_OP (insn) == 0 && X_OP2 (insn) == 3 && (insn & 0x1000000) == 0)
c906108c 1012 {
386c036b
MK
1013 /* Branch on Integer Register with Prediction (BPr). */
1014 branch_p = 1;
1015 conditional_p = 1;
c906108c 1016 }
386c036b 1017 else if (X_OP (insn) == 0 && X_OP2 (insn) == 6)
c906108c 1018 {
386c036b
MK
1019 /* Branch on Floating-Point Condition Codes (FBfcc). */
1020 branch_p = 1;
1021 offset = 4 * X_DISP22 (insn);
c906108c 1022 }
386c036b
MK
1023 else if (X_OP (insn) == 0 && X_OP2 (insn) == 5)
1024 {
1025 /* Branch on Floating-Point Condition Codes with Prediction
1026 (FBPfcc). */
1027 branch_p = 1;
1028 offset = 4 * X_DISP19 (insn);
1029 }
1030 else if (X_OP (insn) == 0 && X_OP2 (insn) == 2)
1031 {
1032 /* Branch on Integer Condition Codes (Bicc). */
1033 branch_p = 1;
1034 offset = 4 * X_DISP22 (insn);
1035 }
1036 else if (X_OP (insn) == 0 && X_OP2 (insn) == 1)
c906108c 1037 {
386c036b
MK
1038 /* Branch on Integer Condition Codes with Prediction (BPcc). */
1039 branch_p = 1;
1040 offset = 4 * X_DISP19 (insn);
c906108c 1041 }
c893be75
MK
1042 else if (X_OP (insn) == 2 && X_OP3 (insn) == 0x3a)
1043 {
1044 /* Trap instruction (TRAP). */
1045 return gdbarch_tdep (arch)->step_trap (insn);
1046 }
386c036b
MK
1047
1048 /* FIXME: Handle DONE and RETRY instructions. */
1049
386c036b 1050 if (branch_p)
c906108c 1051 {
386c036b 1052 if (conditional_p)
c906108c 1053 {
386c036b
MK
1054 /* For conditional branches, return nPC + 4 iff the annul
1055 bit is 1. */
1056 return (X_A (insn) ? *npc + 4 : 0);
c906108c
SS
1057 }
1058 else
1059 {
386c036b
MK
1060 /* For unconditional branches, return the target if its
1061 specified condition is "always" and return nPC + 4 if the
1062 condition is "never". If the annul bit is 1, set *NPC to
1063 zero. */
1064 if (X_COND (insn) == 0x0)
1065 pc = *npc, offset = 4;
1066 if (X_A (insn))
1067 *npc = 0;
1068
1069 gdb_assert (offset != 0);
1070 return pc + offset;
c906108c
SS
1071 }
1072 }
386c036b
MK
1073
1074 return 0;
c906108c
SS
1075}
1076
c893be75
MK
1077static CORE_ADDR
1078sparc_step_trap (unsigned long insn)
1079{
1080 return 0;
1081}
1082
386c036b
MK
1083void
1084sparc_software_single_step (enum target_signal sig, int insert_breakpoints_p)
1085{
c893be75
MK
1086 struct gdbarch *arch = current_gdbarch;
1087 struct gdbarch_tdep *tdep = gdbarch_tdep (arch);
386c036b 1088 static CORE_ADDR npc, nnpc;
e1613aba 1089 static gdb_byte npc_save[4], nnpc_save[4];
c906108c 1090
386c036b
MK
1091 if (insert_breakpoints_p)
1092 {
8c3900e4 1093 CORE_ADDR pc, orig_npc;
c906108c 1094
386c036b 1095 pc = sparc_address_from_register (tdep->pc_regnum);
8c3900e4 1096 orig_npc = npc = sparc_address_from_register (tdep->npc_regnum);
c906108c 1097
386c036b 1098 /* Analyze the instruction at PC. */
c893be75 1099 nnpc = sparc_analyze_control_transfer (arch, pc, &npc);
386c036b
MK
1100 if (npc != 0)
1101 target_insert_breakpoint (npc, npc_save);
1102 if (nnpc != 0)
1103 target_insert_breakpoint (nnpc, nnpc_save);
c906108c 1104
386c036b 1105 /* Assert that we have set at least one breakpoint, and that
8c3900e4
DJ
1106 they're not set at the same spot - unless we're going
1107 from here straight to NULL, i.e. a call or jump to 0. */
1108 gdb_assert (npc != 0 || nnpc != 0 || orig_npc == 0);
1109 gdb_assert (nnpc != npc || orig_npc == 0);
60054393 1110 }
386c036b 1111 else
c906108c 1112 {
386c036b
MK
1113 if (npc != 0)
1114 target_remove_breakpoint (npc, npc_save);
1115 if (nnpc != 0)
1116 target_remove_breakpoint (nnpc, nnpc_save);
c906108c 1117 }
386c036b
MK
1118}
1119
1120static void
1121sparc_write_pc (CORE_ADDR pc, ptid_t ptid)
1122{
1123 struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
1124
1125 write_register_pid (tdep->pc_regnum, pc, ptid);
1126 write_register_pid (tdep->npc_regnum, pc + 4, ptid);
1127}
1128\f
1129/* Unglobalize NAME. */
1130
1131char *
1132sparc_stabs_unglobalize_name (char *name)
1133{
1134 /* The Sun compilers (Sun ONE Studio, Forte Developer, Sun WorkShop,
1135 SunPRO) convert file static variables into global values, a
1136 process known as globalization. In order to do this, the
1137 compiler will create a unique prefix and prepend it to each file
1138 static variable. For static variables within a function, this
1139 globalization prefix is followed by the function name (nested
1140 static variables within a function are supposed to generate a
1141 warning message, and are left alone). The procedure is
1142 documented in the Stabs Interface Manual, which is distrubuted
1143 with the compilers, although version 4.0 of the manual seems to
1144 be incorrect in some places, at least for SPARC. The
1145 globalization prefix is encoded into an N_OPT stab, with the form
1146 "G=<prefix>". The globalization prefix always seems to start
1147 with a dollar sign '$'; a dot '.' is used as a seperator. So we
1148 simply strip everything up until the last dot. */
c906108c 1149
386c036b 1150 if (name[0] == '$')
c906108c 1151 {
386c036b
MK
1152 char *p = strrchr (name, '.');
1153 if (p)
1154 return p + 1;
c906108c 1155 }
c906108c 1156
386c036b
MK
1157 return name;
1158}
1159\f
5af923b0 1160
a54124c5
MK
1161/* Return the appropriate register set for the core section identified
1162 by SECT_NAME and SECT_SIZE. */
1163
1164const struct regset *
1165sparc_regset_from_core_section (struct gdbarch *gdbarch,
1166 const char *sect_name, size_t sect_size)
1167{
1168 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
1169
c558d81a 1170 if (strcmp (sect_name, ".reg") == 0 && sect_size >= tdep->sizeof_gregset)
a54124c5
MK
1171 return tdep->gregset;
1172
c558d81a 1173 if (strcmp (sect_name, ".reg2") == 0 && sect_size >= tdep->sizeof_fpregset)
a54124c5
MK
1174 return tdep->fpregset;
1175
1176 return NULL;
1177}
1178\f
1179
386c036b
MK
1180static struct gdbarch *
1181sparc32_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches)
1182{
1183 struct gdbarch_tdep *tdep;
1184 struct gdbarch *gdbarch;
c906108c 1185
386c036b
MK
1186 /* If there is already a candidate, use it. */
1187 arches = gdbarch_list_lookup_by_info (arches, &info);
1188 if (arches != NULL)
1189 return arches->gdbarch;
c906108c 1190
386c036b
MK
1191 /* Allocate space for the new architecture. */
1192 tdep = XMALLOC (struct gdbarch_tdep);
1193 gdbarch = gdbarch_alloc (&info, tdep);
5af923b0 1194
386c036b
MK
1195 tdep->pc_regnum = SPARC32_PC_REGNUM;
1196 tdep->npc_regnum = SPARC32_NPC_REGNUM;
a54124c5 1197 tdep->gregset = NULL;
c558d81a 1198 tdep->sizeof_gregset = 0;
a54124c5 1199 tdep->fpregset = NULL;
c558d81a 1200 tdep->sizeof_fpregset = 0;
386c036b 1201 tdep->plt_entry_size = 0;
c893be75 1202 tdep->step_trap = sparc_step_trap;
386c036b
MK
1203
1204 set_gdbarch_long_double_bit (gdbarch, 128);
1205 set_gdbarch_long_double_format (gdbarch, &floatformat_sparc_quad);
1206
1207 set_gdbarch_num_regs (gdbarch, SPARC32_NUM_REGS);
1208 set_gdbarch_register_name (gdbarch, sparc32_register_name);
1209 set_gdbarch_register_type (gdbarch, sparc32_register_type);
1210 set_gdbarch_num_pseudo_regs (gdbarch, SPARC32_NUM_PSEUDO_REGS);
1211 set_gdbarch_pseudo_register_read (gdbarch, sparc32_pseudo_register_read);
1212 set_gdbarch_pseudo_register_write (gdbarch, sparc32_pseudo_register_write);
1213
1214 /* Register numbers of various important registers. */
1215 set_gdbarch_sp_regnum (gdbarch, SPARC_SP_REGNUM); /* %sp */
1216 set_gdbarch_pc_regnum (gdbarch, SPARC32_PC_REGNUM); /* %pc */
1217 set_gdbarch_fp0_regnum (gdbarch, SPARC_F0_REGNUM); /* %f0 */
1218
1219 /* Call dummy code. */
1220 set_gdbarch_call_dummy_location (gdbarch, ON_STACK);
1221 set_gdbarch_push_dummy_code (gdbarch, sparc32_push_dummy_code);
1222 set_gdbarch_push_dummy_call (gdbarch, sparc32_push_dummy_call);
1223
b9d4c5ed 1224 set_gdbarch_return_value (gdbarch, sparc32_return_value);
386c036b
MK
1225 set_gdbarch_stabs_argument_has_addr
1226 (gdbarch, sparc32_stabs_argument_has_addr);
1227
1228 set_gdbarch_skip_prologue (gdbarch, sparc32_skip_prologue);
1229
1230 /* Stack grows downward. */
1231 set_gdbarch_inner_than (gdbarch, core_addr_lessthan);
c906108c 1232
386c036b 1233 set_gdbarch_breakpoint_from_pc (gdbarch, sparc_breakpoint_from_pc);
c906108c 1234
386c036b 1235 set_gdbarch_frame_args_skip (gdbarch, 8);
5af923b0 1236
386c036b 1237 set_gdbarch_print_insn (gdbarch, print_insn_sparc);
c906108c 1238
386c036b
MK
1239 set_gdbarch_software_single_step (gdbarch, sparc_software_single_step);
1240 set_gdbarch_write_pc (gdbarch, sparc_write_pc);
c906108c 1241
386c036b 1242 set_gdbarch_unwind_dummy_id (gdbarch, sparc_unwind_dummy_id);
c906108c 1243
386c036b 1244 set_gdbarch_unwind_pc (gdbarch, sparc_unwind_pc);
c906108c 1245
386c036b
MK
1246 frame_base_set_default (gdbarch, &sparc32_frame_base);
1247
1248 /* Hook in ABI-specific overrides, if they have been registered. */
1249 gdbarch_init_osabi (info, gdbarch);
c906108c 1250
386c036b 1251 frame_unwind_append_sniffer (gdbarch, sparc32_frame_sniffer);
c906108c 1252
a54124c5 1253 /* If we have register sets, enable the generic core file support. */
4c72d57a 1254 if (tdep->gregset)
a54124c5
MK
1255 set_gdbarch_regset_from_core_section (gdbarch,
1256 sparc_regset_from_core_section);
1257
386c036b
MK
1258 return gdbarch;
1259}
1260\f
1261/* Helper functions for dealing with register windows. */
1262
1263void
1264sparc_supply_rwindow (struct regcache *regcache, CORE_ADDR sp, int regnum)
c906108c 1265{
386c036b 1266 int offset = 0;
e1613aba 1267 gdb_byte buf[8];
386c036b
MK
1268 int i;
1269
1270 if (sp & 1)
1271 {
1272 /* Registers are 64-bit. */
1273 sp += BIAS;
c906108c 1274
386c036b
MK
1275 for (i = SPARC_L0_REGNUM; i <= SPARC_I7_REGNUM; i++)
1276 {
1277 if (regnum == i || regnum == -1)
1278 {
1279 target_read_memory (sp + ((i - SPARC_L0_REGNUM) * 8), buf, 8);
f700a364
MK
1280
1281 /* Handle StackGhost. */
1282 if (i == SPARC_I7_REGNUM)
1283 {
1284 ULONGEST wcookie = sparc_fetch_wcookie ();
1285 ULONGEST i7 = extract_unsigned_integer (buf + offset, 8);
1286
1287 store_unsigned_integer (buf + offset, 8, i7 ^ wcookie);
1288 }
1289
386c036b
MK
1290 regcache_raw_supply (regcache, i, buf);
1291 }
1292 }
1293 }
1294 else
c906108c 1295 {
386c036b
MK
1296 /* Registers are 32-bit. Toss any sign-extension of the stack
1297 pointer. */
1298 sp &= 0xffffffffUL;
c906108c 1299
386c036b
MK
1300 /* Clear out the top half of the temporary buffer, and put the
1301 register value in the bottom half if we're in 64-bit mode. */
1302 if (gdbarch_ptr_bit (current_gdbarch) == 64)
c906108c 1303 {
386c036b
MK
1304 memset (buf, 0, 4);
1305 offset = 4;
1306 }
c906108c 1307
386c036b
MK
1308 for (i = SPARC_L0_REGNUM; i <= SPARC_I7_REGNUM; i++)
1309 {
1310 if (regnum == i || regnum == -1)
1311 {
1312 target_read_memory (sp + ((i - SPARC_L0_REGNUM) * 4),
1313 buf + offset, 4);
42cdca6c
MK
1314
1315 /* Handle StackGhost. */
1316 if (i == SPARC_I7_REGNUM)
1317 {
1318 ULONGEST wcookie = sparc_fetch_wcookie ();
7d34766b 1319 ULONGEST i7 = extract_unsigned_integer (buf + offset, 4);
42cdca6c 1320
7d34766b 1321 store_unsigned_integer (buf + offset, 4, i7 ^ wcookie);
42cdca6c
MK
1322 }
1323
386c036b
MK
1324 regcache_raw_supply (regcache, i, buf);
1325 }
c906108c
SS
1326 }
1327 }
c906108c 1328}
c906108c
SS
1329
1330void
386c036b
MK
1331sparc_collect_rwindow (const struct regcache *regcache,
1332 CORE_ADDR sp, int regnum)
c906108c 1333{
386c036b 1334 int offset = 0;
e1613aba 1335 gdb_byte buf[8];
386c036b 1336 int i;
5af923b0 1337
386c036b 1338 if (sp & 1)
5af923b0 1339 {
386c036b
MK
1340 /* Registers are 64-bit. */
1341 sp += BIAS;
c906108c 1342
386c036b
MK
1343 for (i = SPARC_L0_REGNUM; i <= SPARC_I7_REGNUM; i++)
1344 {
1345 if (regnum == -1 || regnum == SPARC_SP_REGNUM || regnum == i)
1346 {
1347 regcache_raw_collect (regcache, i, buf);
f700a364
MK
1348
1349 /* Handle StackGhost. */
1350 if (i == SPARC_I7_REGNUM)
1351 {
1352 ULONGEST wcookie = sparc_fetch_wcookie ();
1353 ULONGEST i7 = extract_unsigned_integer (buf + offset, 8);
1354
1355 store_unsigned_integer (buf, 8, i7 ^ wcookie);
1356 }
1357
386c036b
MK
1358 target_write_memory (sp + ((i - SPARC_L0_REGNUM) * 8), buf, 8);
1359 }
1360 }
5af923b0
MS
1361 }
1362 else
1363 {
386c036b
MK
1364 /* Registers are 32-bit. Toss any sign-extension of the stack
1365 pointer. */
1366 sp &= 0xffffffffUL;
1367
1368 /* Only use the bottom half if we're in 64-bit mode. */
1369 if (gdbarch_ptr_bit (current_gdbarch) == 64)
1370 offset = 4;
1371
1372 for (i = SPARC_L0_REGNUM; i <= SPARC_I7_REGNUM; i++)
1373 {
1374 if (regnum == -1 || regnum == SPARC_SP_REGNUM || regnum == i)
1375 {
1376 regcache_raw_collect (regcache, i, buf);
42cdca6c
MK
1377
1378 /* Handle StackGhost. */
1379 if (i == SPARC_I7_REGNUM)
1380 {
1381 ULONGEST wcookie = sparc_fetch_wcookie ();
7d34766b 1382 ULONGEST i7 = extract_unsigned_integer (buf + offset, 4);
42cdca6c 1383
7d34766b 1384 store_unsigned_integer (buf + offset, 4, i7 ^ wcookie);
42cdca6c
MK
1385 }
1386
386c036b
MK
1387 target_write_memory (sp + ((i - SPARC_L0_REGNUM) * 4),
1388 buf + offset, 4);
1389 }
1390 }
5af923b0 1391 }
c906108c
SS
1392}
1393
386c036b
MK
1394/* Helper functions for dealing with register sets. */
1395
c906108c 1396void
386c036b
MK
1397sparc32_supply_gregset (const struct sparc_gregset *gregset,
1398 struct regcache *regcache,
1399 int regnum, const void *gregs)
c906108c 1400{
e1613aba 1401 const gdb_byte *regs = gregs;
386c036b 1402 int i;
5af923b0 1403
386c036b
MK
1404 if (regnum == SPARC32_PSR_REGNUM || regnum == -1)
1405 regcache_raw_supply (regcache, SPARC32_PSR_REGNUM,
1406 regs + gregset->r_psr_offset);
c906108c 1407
386c036b
MK
1408 if (regnum == SPARC32_PC_REGNUM || regnum == -1)
1409 regcache_raw_supply (regcache, SPARC32_PC_REGNUM,
1410 regs + gregset->r_pc_offset);
5af923b0 1411
386c036b
MK
1412 if (regnum == SPARC32_NPC_REGNUM || regnum == -1)
1413 regcache_raw_supply (regcache, SPARC32_NPC_REGNUM,
1414 regs + gregset->r_npc_offset);
5af923b0 1415
386c036b
MK
1416 if (regnum == SPARC32_Y_REGNUM || regnum == -1)
1417 regcache_raw_supply (regcache, SPARC32_Y_REGNUM,
1418 regs + gregset->r_y_offset);
5af923b0 1419
386c036b
MK
1420 if (regnum == SPARC_G0_REGNUM || regnum == -1)
1421 regcache_raw_supply (regcache, SPARC_G0_REGNUM, NULL);
5af923b0 1422
386c036b 1423 if ((regnum >= SPARC_G1_REGNUM && regnum <= SPARC_O7_REGNUM) || regnum == -1)
c906108c 1424 {
386c036b
MK
1425 int offset = gregset->r_g1_offset;
1426
1427 for (i = SPARC_G1_REGNUM; i <= SPARC_O7_REGNUM; i++)
1428 {
1429 if (regnum == i || regnum == -1)
1430 regcache_raw_supply (regcache, i, regs + offset);
1431 offset += 4;
1432 }
c906108c 1433 }
386c036b
MK
1434
1435 if ((regnum >= SPARC_L0_REGNUM && regnum <= SPARC_I7_REGNUM) || regnum == -1)
c906108c 1436 {
386c036b
MK
1437 /* Not all of the register set variants include Locals and
1438 Inputs. For those that don't, we read them off the stack. */
1439 if (gregset->r_l0_offset == -1)
1440 {
1441 ULONGEST sp;
1442
1443 regcache_cooked_read_unsigned (regcache, SPARC_SP_REGNUM, &sp);
1444 sparc_supply_rwindow (regcache, sp, regnum);
1445 }
1446 else
1447 {
1448 int offset = gregset->r_l0_offset;
1449
1450 for (i = SPARC_L0_REGNUM; i <= SPARC_I7_REGNUM; i++)
1451 {
1452 if (regnum == i || regnum == -1)
1453 regcache_raw_supply (regcache, i, regs + offset);
1454 offset += 4;
1455 }
1456 }
c906108c
SS
1457 }
1458}
1459
c5aa993b 1460void
386c036b
MK
1461sparc32_collect_gregset (const struct sparc_gregset *gregset,
1462 const struct regcache *regcache,
1463 int regnum, void *gregs)
c906108c 1464{
e1613aba 1465 gdb_byte *regs = gregs;
386c036b 1466 int i;
c5aa993b 1467
386c036b
MK
1468 if (regnum == SPARC32_PSR_REGNUM || regnum == -1)
1469 regcache_raw_collect (regcache, SPARC32_PSR_REGNUM,
1470 regs + gregset->r_psr_offset);
60054393 1471
386c036b
MK
1472 if (regnum == SPARC32_PC_REGNUM || regnum == -1)
1473 regcache_raw_collect (regcache, SPARC32_PC_REGNUM,
1474 regs + gregset->r_pc_offset);
1475
1476 if (regnum == SPARC32_NPC_REGNUM || regnum == -1)
1477 regcache_raw_collect (regcache, SPARC32_NPC_REGNUM,
1478 regs + gregset->r_npc_offset);
5af923b0 1479
386c036b
MK
1480 if (regnum == SPARC32_Y_REGNUM || regnum == -1)
1481 regcache_raw_collect (regcache, SPARC32_Y_REGNUM,
1482 regs + gregset->r_y_offset);
1483
1484 if ((regnum >= SPARC_G1_REGNUM && regnum <= SPARC_O7_REGNUM) || regnum == -1)
5af923b0 1485 {
386c036b
MK
1486 int offset = gregset->r_g1_offset;
1487
1488 /* %g0 is always zero. */
1489 for (i = SPARC_G1_REGNUM; i <= SPARC_O7_REGNUM; i++)
1490 {
1491 if (regnum == i || regnum == -1)
1492 regcache_raw_collect (regcache, i, regs + offset);
1493 offset += 4;
1494 }
5af923b0 1495 }
386c036b
MK
1496
1497 if ((regnum >= SPARC_L0_REGNUM && regnum <= SPARC_I7_REGNUM) || regnum == -1)
5af923b0 1498 {
386c036b
MK
1499 /* Not all of the register set variants include Locals and
1500 Inputs. For those that don't, we read them off the stack. */
1501 if (gregset->r_l0_offset != -1)
1502 {
1503 int offset = gregset->r_l0_offset;
1504
1505 for (i = SPARC_L0_REGNUM; i <= SPARC_I7_REGNUM; i++)
1506 {
1507 if (regnum == i || regnum == -1)
1508 regcache_raw_collect (regcache, i, regs + offset);
1509 offset += 4;
1510 }
1511 }
5af923b0 1512 }
c906108c
SS
1513}
1514
c906108c 1515void
386c036b
MK
1516sparc32_supply_fpregset (struct regcache *regcache,
1517 int regnum, const void *fpregs)
c906108c 1518{
e1613aba 1519 const gdb_byte *regs = fpregs;
386c036b 1520 int i;
60054393 1521
386c036b 1522 for (i = 0; i < 32; i++)
c906108c 1523 {
386c036b
MK
1524 if (regnum == (SPARC_F0_REGNUM + i) || regnum == -1)
1525 regcache_raw_supply (regcache, SPARC_F0_REGNUM + i, regs + (i * 4));
c906108c 1526 }
5af923b0 1527
386c036b
MK
1528 if (regnum == SPARC32_FSR_REGNUM || regnum == -1)
1529 regcache_raw_supply (regcache, SPARC32_FSR_REGNUM, regs + (32 * 4) + 4);
c906108c
SS
1530}
1531
386c036b
MK
1532void
1533sparc32_collect_fpregset (const struct regcache *regcache,
1534 int regnum, void *fpregs)
c906108c 1535{
e1613aba 1536 gdb_byte *regs = fpregs;
386c036b 1537 int i;
c906108c 1538
386c036b
MK
1539 for (i = 0; i < 32; i++)
1540 {
1541 if (regnum == (SPARC_F0_REGNUM + i) || regnum == -1)
1542 regcache_raw_collect (regcache, SPARC_F0_REGNUM + i, regs + (i * 4));
1543 }
c906108c 1544
386c036b
MK
1545 if (regnum == SPARC32_FSR_REGNUM || regnum == -1)
1546 regcache_raw_collect (regcache, SPARC32_FSR_REGNUM, regs + (32 * 4) + 4);
c906108c 1547}
c906108c 1548\f
c906108c 1549
386c036b 1550/* SunOS 4. */
c906108c 1551
386c036b
MK
1552/* From <machine/reg.h>. */
1553const struct sparc_gregset sparc32_sunos4_gregset =
c906108c 1554{
386c036b
MK
1555 0 * 4, /* %psr */
1556 1 * 4, /* %pc */
1557 2 * 4, /* %npc */
1558 3 * 4, /* %y */
1559 -1, /* %wim */
1560 -1, /* %tbr */
1561 4 * 4, /* %g1 */
1562 -1 /* %l0 */
1563};
1564\f
c906108c 1565
386c036b
MK
1566/* Provide a prototype to silence -Wmissing-prototypes. */
1567void _initialize_sparc_tdep (void);
c906108c
SS
1568
1569void
386c036b 1570_initialize_sparc_tdep (void)
c906108c 1571{
386c036b 1572 register_gdbarch_init (bfd_arch_sparc, sparc32_gdbarch_init);
ef3cf062 1573}
This page took 1.089296 seconds and 4 git commands to generate.