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