2004-01-17 Andrew Cagney <cagney@redhat.com>
[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
386c036b
MK
837/* Extract from REGCACHE, which contains the (raw) register state, the
838 address in which a function should return its structure value, as a
839 CORE_ADDR. */
c906108c 840
386c036b 841static CORE_ADDR
ca9d58e9 842sparc32_extract_struct_value_address (struct regcache *regcache)
386c036b 843{
9515395e 844 ULONGEST sp;
c906108c 845
9515395e
MK
846 regcache_cooked_read_unsigned (regcache, SPARC_SP_REGNUM, &sp);
847 return read_memory_unsigned_integer (sp + 64, 4);
386c036b 848}
c906108c 849
386c036b
MK
850static int
851sparc32_stabs_argument_has_addr (struct gdbarch *gdbarch, struct type *type)
c906108c 852{
386c036b
MK
853 return (sparc_structure_or_union_p (type)
854 || (sparc_floating_p (type) && TYPE_LENGTH (type) == 16));
855}
c906108c 856
386c036b
MK
857\f
858/* The SPARC Architecture doesn't have hardware single-step support,
859 and most operating systems don't implement it either, so we provide
860 software single-step mechanism. */
c906108c 861
386c036b
MK
862static CORE_ADDR
863sparc_analyze_control_transfer (CORE_ADDR pc, CORE_ADDR *npc)
864{
865 unsigned long insn = sparc_fetch_instruction (pc);
866 int conditional_p = X_COND (insn) & 0x7;
867 int branch_p = 0;
868 long offset = 0; /* Must be signed for sign-extend. */
c906108c 869
386c036b 870 if (X_OP (insn) == 0 && X_OP2 (insn) == 3 && (insn & 0x1000000) == 0)
c906108c 871 {
386c036b
MK
872 /* Branch on Integer Register with Prediction (BPr). */
873 branch_p = 1;
874 conditional_p = 1;
c906108c 875 }
386c036b 876 else if (X_OP (insn) == 0 && X_OP2 (insn) == 6)
c906108c 877 {
386c036b
MK
878 /* Branch on Floating-Point Condition Codes (FBfcc). */
879 branch_p = 1;
880 offset = 4 * X_DISP22 (insn);
c906108c 881 }
386c036b
MK
882 else if (X_OP (insn) == 0 && X_OP2 (insn) == 5)
883 {
884 /* Branch on Floating-Point Condition Codes with Prediction
885 (FBPfcc). */
886 branch_p = 1;
887 offset = 4 * X_DISP19 (insn);
888 }
889 else if (X_OP (insn) == 0 && X_OP2 (insn) == 2)
890 {
891 /* Branch on Integer Condition Codes (Bicc). */
892 branch_p = 1;
893 offset = 4 * X_DISP22 (insn);
894 }
895 else if (X_OP (insn) == 0 && X_OP2 (insn) == 1)
c906108c 896 {
386c036b
MK
897 /* Branch on Integer Condition Codes with Prediction (BPcc). */
898 branch_p = 1;
899 offset = 4 * X_DISP19 (insn);
c906108c 900 }
386c036b
MK
901
902 /* FIXME: Handle DONE and RETRY instructions. */
903
904 /* FIXME: Handle the Trap instruction. */
905
906 if (branch_p)
c906108c 907 {
386c036b 908 if (conditional_p)
c906108c 909 {
386c036b
MK
910 /* For conditional branches, return nPC + 4 iff the annul
911 bit is 1. */
912 return (X_A (insn) ? *npc + 4 : 0);
c906108c
SS
913 }
914 else
915 {
386c036b
MK
916 /* For unconditional branches, return the target if its
917 specified condition is "always" and return nPC + 4 if the
918 condition is "never". If the annul bit is 1, set *NPC to
919 zero. */
920 if (X_COND (insn) == 0x0)
921 pc = *npc, offset = 4;
922 if (X_A (insn))
923 *npc = 0;
924
925 gdb_assert (offset != 0);
926 return pc + offset;
c906108c
SS
927 }
928 }
386c036b
MK
929
930 return 0;
c906108c
SS
931}
932
386c036b
MK
933void
934sparc_software_single_step (enum target_signal sig, int insert_breakpoints_p)
935{
936 struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
937 static CORE_ADDR npc, nnpc;
938 static char npc_save[4], nnpc_save[4];
c906108c 939
386c036b
MK
940 if (insert_breakpoints_p)
941 {
942 CORE_ADDR pc;
c906108c 943
386c036b
MK
944 pc = sparc_address_from_register (tdep->pc_regnum);
945 npc = sparc_address_from_register (tdep->npc_regnum);
c906108c 946
386c036b
MK
947 /* Analyze the instruction at PC. */
948 nnpc = sparc_analyze_control_transfer (pc, &npc);
949 if (npc != 0)
950 target_insert_breakpoint (npc, npc_save);
951 if (nnpc != 0)
952 target_insert_breakpoint (nnpc, nnpc_save);
c906108c 953
386c036b
MK
954 /* Assert that we have set at least one breakpoint, and that
955 they're not set at the same spot. */
956 gdb_assert (npc != 0 || nnpc != 0);
957 gdb_assert (nnpc != npc);
60054393 958 }
386c036b 959 else
c906108c 960 {
386c036b
MK
961 if (npc != 0)
962 target_remove_breakpoint (npc, npc_save);
963 if (nnpc != 0)
964 target_remove_breakpoint (nnpc, nnpc_save);
c906108c 965 }
386c036b
MK
966}
967
968static void
969sparc_write_pc (CORE_ADDR pc, ptid_t ptid)
970{
971 struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
972
973 write_register_pid (tdep->pc_regnum, pc, ptid);
974 write_register_pid (tdep->npc_regnum, pc + 4, ptid);
975}
976\f
977/* Unglobalize NAME. */
978
979char *
980sparc_stabs_unglobalize_name (char *name)
981{
982 /* The Sun compilers (Sun ONE Studio, Forte Developer, Sun WorkShop,
983 SunPRO) convert file static variables into global values, a
984 process known as globalization. In order to do this, the
985 compiler will create a unique prefix and prepend it to each file
986 static variable. For static variables within a function, this
987 globalization prefix is followed by the function name (nested
988 static variables within a function are supposed to generate a
989 warning message, and are left alone). The procedure is
990 documented in the Stabs Interface Manual, which is distrubuted
991 with the compilers, although version 4.0 of the manual seems to
992 be incorrect in some places, at least for SPARC. The
993 globalization prefix is encoded into an N_OPT stab, with the form
994 "G=<prefix>". The globalization prefix always seems to start
995 with a dollar sign '$'; a dot '.' is used as a seperator. So we
996 simply strip everything up until the last dot. */
c906108c 997
386c036b 998 if (name[0] == '$')
c906108c 999 {
386c036b
MK
1000 char *p = strrchr (name, '.');
1001 if (p)
1002 return p + 1;
c906108c 1003 }
c906108c 1004
386c036b
MK
1005 return name;
1006}
1007\f
5af923b0 1008
a54124c5
MK
1009/* Return the appropriate register set for the core section identified
1010 by SECT_NAME and SECT_SIZE. */
1011
1012const struct regset *
1013sparc_regset_from_core_section (struct gdbarch *gdbarch,
1014 const char *sect_name, size_t sect_size)
1015{
1016 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
1017
1018 if (strcmp (sect_name, ".reg") == 0 && sect_size == tdep->sizeof_gregset)
1019 return tdep->gregset;
1020
1021 if (strcmp (sect_name, ".reg2") == 0 && sect_size == tdep->sizeof_fpregset)
1022 return tdep->fpregset;
1023
1024 return NULL;
1025}
1026\f
1027
386c036b
MK
1028static struct gdbarch *
1029sparc32_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches)
1030{
1031 struct gdbarch_tdep *tdep;
1032 struct gdbarch *gdbarch;
c906108c 1033
386c036b
MK
1034 /* If there is already a candidate, use it. */
1035 arches = gdbarch_list_lookup_by_info (arches, &info);
1036 if (arches != NULL)
1037 return arches->gdbarch;
c906108c 1038
386c036b
MK
1039 /* Allocate space for the new architecture. */
1040 tdep = XMALLOC (struct gdbarch_tdep);
1041 gdbarch = gdbarch_alloc (&info, tdep);
5af923b0 1042
386c036b
MK
1043 tdep->pc_regnum = SPARC32_PC_REGNUM;
1044 tdep->npc_regnum = SPARC32_NPC_REGNUM;
a54124c5
MK
1045 tdep->gregset = NULL;
1046 tdep->sizeof_gregset = 20 * 4;
1047 tdep->fpregset = NULL;
1048 tdep->sizeof_fpregset = 33 * 4;
386c036b
MK
1049 tdep->plt_entry_size = 0;
1050
1051 set_gdbarch_long_double_bit (gdbarch, 128);
1052 set_gdbarch_long_double_format (gdbarch, &floatformat_sparc_quad);
1053
1054 set_gdbarch_num_regs (gdbarch, SPARC32_NUM_REGS);
1055 set_gdbarch_register_name (gdbarch, sparc32_register_name);
1056 set_gdbarch_register_type (gdbarch, sparc32_register_type);
1057 set_gdbarch_num_pseudo_regs (gdbarch, SPARC32_NUM_PSEUDO_REGS);
1058 set_gdbarch_pseudo_register_read (gdbarch, sparc32_pseudo_register_read);
1059 set_gdbarch_pseudo_register_write (gdbarch, sparc32_pseudo_register_write);
1060
1061 /* Register numbers of various important registers. */
1062 set_gdbarch_sp_regnum (gdbarch, SPARC_SP_REGNUM); /* %sp */
1063 set_gdbarch_pc_regnum (gdbarch, SPARC32_PC_REGNUM); /* %pc */
1064 set_gdbarch_fp0_regnum (gdbarch, SPARC_F0_REGNUM); /* %f0 */
1065
1066 /* Call dummy code. */
1067 set_gdbarch_call_dummy_location (gdbarch, ON_STACK);
1068 set_gdbarch_push_dummy_code (gdbarch, sparc32_push_dummy_code);
1069 set_gdbarch_push_dummy_call (gdbarch, sparc32_push_dummy_call);
1070
b9d4c5ed 1071 set_gdbarch_return_value (gdbarch, sparc32_return_value);
ca9d58e9
MK
1072 set_gdbarch_extract_struct_value_address
1073 (gdbarch, sparc32_extract_struct_value_address);
386c036b
MK
1074 set_gdbarch_stabs_argument_has_addr
1075 (gdbarch, sparc32_stabs_argument_has_addr);
1076
1077 set_gdbarch_skip_prologue (gdbarch, sparc32_skip_prologue);
1078
1079 /* Stack grows downward. */
1080 set_gdbarch_inner_than (gdbarch, core_addr_lessthan);
c906108c 1081
386c036b 1082 set_gdbarch_breakpoint_from_pc (gdbarch, sparc_breakpoint_from_pc);
c906108c 1083
386c036b 1084 set_gdbarch_frame_args_skip (gdbarch, 8);
5af923b0 1085
386c036b 1086 set_gdbarch_print_insn (gdbarch, print_insn_sparc);
c906108c 1087
386c036b
MK
1088 set_gdbarch_software_single_step (gdbarch, sparc_software_single_step);
1089 set_gdbarch_write_pc (gdbarch, sparc_write_pc);
c906108c 1090
386c036b 1091 set_gdbarch_unwind_dummy_id (gdbarch, sparc_unwind_dummy_id);
c906108c 1092
386c036b 1093 set_gdbarch_unwind_pc (gdbarch, sparc_unwind_pc);
c906108c 1094
386c036b
MK
1095 frame_base_set_default (gdbarch, &sparc32_frame_base);
1096
1097 /* Hook in ABI-specific overrides, if they have been registered. */
1098 gdbarch_init_osabi (info, gdbarch);
c906108c 1099
386c036b 1100 frame_unwind_append_sniffer (gdbarch, sparc32_frame_sniffer);
c906108c 1101
a54124c5
MK
1102 /* If we have register sets, enable the generic core file support. */
1103 if (tdep->gregset && tdep->fpregset)
1104 set_gdbarch_regset_from_core_section (gdbarch,
1105 sparc_regset_from_core_section);
1106
386c036b
MK
1107 return gdbarch;
1108}
1109\f
1110/* Helper functions for dealing with register windows. */
1111
1112void
1113sparc_supply_rwindow (struct regcache *regcache, CORE_ADDR sp, int regnum)
c906108c 1114{
386c036b
MK
1115 int offset = 0;
1116 char buf[8];
1117 int i;
1118
1119 if (sp & 1)
1120 {
1121 /* Registers are 64-bit. */
1122 sp += BIAS;
c906108c 1123
386c036b
MK
1124 for (i = SPARC_L0_REGNUM; i <= SPARC_I7_REGNUM; i++)
1125 {
1126 if (regnum == i || regnum == -1)
1127 {
1128 target_read_memory (sp + ((i - SPARC_L0_REGNUM) * 8), buf, 8);
1129 regcache_raw_supply (regcache, i, buf);
1130 }
1131 }
1132 }
1133 else
c906108c 1134 {
386c036b
MK
1135 /* Registers are 32-bit. Toss any sign-extension of the stack
1136 pointer. */
1137 sp &= 0xffffffffUL;
c906108c 1138
386c036b
MK
1139 /* Clear out the top half of the temporary buffer, and put the
1140 register value in the bottom half if we're in 64-bit mode. */
1141 if (gdbarch_ptr_bit (current_gdbarch) == 64)
c906108c 1142 {
386c036b
MK
1143 memset (buf, 0, 4);
1144 offset = 4;
1145 }
c906108c 1146
386c036b
MK
1147 for (i = SPARC_L0_REGNUM; i <= SPARC_I7_REGNUM; i++)
1148 {
1149 if (regnum == i || regnum == -1)
1150 {
1151 target_read_memory (sp + ((i - SPARC_L0_REGNUM) * 4),
1152 buf + offset, 4);
1153 regcache_raw_supply (regcache, i, buf);
1154 }
c906108c
SS
1155 }
1156 }
c906108c 1157}
c906108c
SS
1158
1159void
386c036b
MK
1160sparc_collect_rwindow (const struct regcache *regcache,
1161 CORE_ADDR sp, int regnum)
c906108c 1162{
386c036b
MK
1163 int offset = 0;
1164 char buf[8];
1165 int i;
5af923b0 1166
386c036b 1167 if (sp & 1)
5af923b0 1168 {
386c036b
MK
1169 /* Registers are 64-bit. */
1170 sp += BIAS;
c906108c 1171
386c036b
MK
1172 for (i = SPARC_L0_REGNUM; i <= SPARC_I7_REGNUM; i++)
1173 {
1174 if (regnum == -1 || regnum == SPARC_SP_REGNUM || regnum == i)
1175 {
1176 regcache_raw_collect (regcache, i, buf);
1177 target_write_memory (sp + ((i - SPARC_L0_REGNUM) * 8), buf, 8);
1178 }
1179 }
5af923b0
MS
1180 }
1181 else
1182 {
386c036b
MK
1183 /* Registers are 32-bit. Toss any sign-extension of the stack
1184 pointer. */
1185 sp &= 0xffffffffUL;
1186
1187 /* Only use the bottom half if we're in 64-bit mode. */
1188 if (gdbarch_ptr_bit (current_gdbarch) == 64)
1189 offset = 4;
1190
1191 for (i = SPARC_L0_REGNUM; i <= SPARC_I7_REGNUM; i++)
1192 {
1193 if (regnum == -1 || regnum == SPARC_SP_REGNUM || regnum == i)
1194 {
1195 regcache_raw_collect (regcache, i, buf);
1196 target_write_memory (sp + ((i - SPARC_L0_REGNUM) * 4),
1197 buf + offset, 4);
1198 }
1199 }
5af923b0 1200 }
c906108c
SS
1201}
1202
386c036b
MK
1203/* Helper functions for dealing with register sets. */
1204
c906108c 1205void
386c036b
MK
1206sparc32_supply_gregset (const struct sparc_gregset *gregset,
1207 struct regcache *regcache,
1208 int regnum, const void *gregs)
c906108c 1209{
386c036b
MK
1210 const char *regs = gregs;
1211 int i;
5af923b0 1212
386c036b
MK
1213 if (regnum == SPARC32_PSR_REGNUM || regnum == -1)
1214 regcache_raw_supply (regcache, SPARC32_PSR_REGNUM,
1215 regs + gregset->r_psr_offset);
c906108c 1216
386c036b
MK
1217 if (regnum == SPARC32_PC_REGNUM || regnum == -1)
1218 regcache_raw_supply (regcache, SPARC32_PC_REGNUM,
1219 regs + gregset->r_pc_offset);
5af923b0 1220
386c036b
MK
1221 if (regnum == SPARC32_NPC_REGNUM || regnum == -1)
1222 regcache_raw_supply (regcache, SPARC32_NPC_REGNUM,
1223 regs + gregset->r_npc_offset);
5af923b0 1224
386c036b
MK
1225 if (regnum == SPARC32_Y_REGNUM || regnum == -1)
1226 regcache_raw_supply (regcache, SPARC32_Y_REGNUM,
1227 regs + gregset->r_y_offset);
5af923b0 1228
386c036b
MK
1229 if (regnum == SPARC_G0_REGNUM || regnum == -1)
1230 regcache_raw_supply (regcache, SPARC_G0_REGNUM, NULL);
5af923b0 1231
386c036b 1232 if ((regnum >= SPARC_G1_REGNUM && regnum <= SPARC_O7_REGNUM) || regnum == -1)
c906108c 1233 {
386c036b
MK
1234 int offset = gregset->r_g1_offset;
1235
1236 for (i = SPARC_G1_REGNUM; i <= SPARC_O7_REGNUM; i++)
1237 {
1238 if (regnum == i || regnum == -1)
1239 regcache_raw_supply (regcache, i, regs + offset);
1240 offset += 4;
1241 }
c906108c 1242 }
386c036b
MK
1243
1244 if ((regnum >= SPARC_L0_REGNUM && regnum <= SPARC_I7_REGNUM) || regnum == -1)
c906108c 1245 {
386c036b
MK
1246 /* Not all of the register set variants include Locals and
1247 Inputs. For those that don't, we read them off the stack. */
1248 if (gregset->r_l0_offset == -1)
1249 {
1250 ULONGEST sp;
1251
1252 regcache_cooked_read_unsigned (regcache, SPARC_SP_REGNUM, &sp);
1253 sparc_supply_rwindow (regcache, sp, regnum);
1254 }
1255 else
1256 {
1257 int offset = gregset->r_l0_offset;
1258
1259 for (i = SPARC_L0_REGNUM; i <= SPARC_I7_REGNUM; i++)
1260 {
1261 if (regnum == i || regnum == -1)
1262 regcache_raw_supply (regcache, i, regs + offset);
1263 offset += 4;
1264 }
1265 }
c906108c
SS
1266 }
1267}
1268
c5aa993b 1269void
386c036b
MK
1270sparc32_collect_gregset (const struct sparc_gregset *gregset,
1271 const struct regcache *regcache,
1272 int regnum, void *gregs)
c906108c 1273{
386c036b
MK
1274 char *regs = gregs;
1275 int i;
c5aa993b 1276
386c036b
MK
1277 if (regnum == SPARC32_PSR_REGNUM || regnum == -1)
1278 regcache_raw_collect (regcache, SPARC32_PSR_REGNUM,
1279 regs + gregset->r_psr_offset);
60054393 1280
386c036b
MK
1281 if (regnum == SPARC32_PC_REGNUM || regnum == -1)
1282 regcache_raw_collect (regcache, SPARC32_PC_REGNUM,
1283 regs + gregset->r_pc_offset);
1284
1285 if (regnum == SPARC32_NPC_REGNUM || regnum == -1)
1286 regcache_raw_collect (regcache, SPARC32_NPC_REGNUM,
1287 regs + gregset->r_npc_offset);
5af923b0 1288
386c036b
MK
1289 if (regnum == SPARC32_Y_REGNUM || regnum == -1)
1290 regcache_raw_collect (regcache, SPARC32_Y_REGNUM,
1291 regs + gregset->r_y_offset);
1292
1293 if ((regnum >= SPARC_G1_REGNUM && regnum <= SPARC_O7_REGNUM) || regnum == -1)
5af923b0 1294 {
386c036b
MK
1295 int offset = gregset->r_g1_offset;
1296
1297 /* %g0 is always zero. */
1298 for (i = SPARC_G1_REGNUM; i <= SPARC_O7_REGNUM; i++)
1299 {
1300 if (regnum == i || regnum == -1)
1301 regcache_raw_collect (regcache, i, regs + offset);
1302 offset += 4;
1303 }
5af923b0 1304 }
386c036b
MK
1305
1306 if ((regnum >= SPARC_L0_REGNUM && regnum <= SPARC_I7_REGNUM) || regnum == -1)
5af923b0 1307 {
386c036b
MK
1308 /* Not all of the register set variants include Locals and
1309 Inputs. For those that don't, we read them off the stack. */
1310 if (gregset->r_l0_offset != -1)
1311 {
1312 int offset = gregset->r_l0_offset;
1313
1314 for (i = SPARC_L0_REGNUM; i <= SPARC_I7_REGNUM; i++)
1315 {
1316 if (regnum == i || regnum == -1)
1317 regcache_raw_collect (regcache, i, regs + offset);
1318 offset += 4;
1319 }
1320 }
5af923b0 1321 }
c906108c
SS
1322}
1323
c906108c 1324void
386c036b
MK
1325sparc32_supply_fpregset (struct regcache *regcache,
1326 int regnum, const void *fpregs)
c906108c 1327{
386c036b
MK
1328 const char *regs = fpregs;
1329 int i;
60054393 1330
386c036b 1331 for (i = 0; i < 32; i++)
c906108c 1332 {
386c036b
MK
1333 if (regnum == (SPARC_F0_REGNUM + i) || regnum == -1)
1334 regcache_raw_supply (regcache, SPARC_F0_REGNUM + i, regs + (i * 4));
c906108c 1335 }
5af923b0 1336
386c036b
MK
1337 if (regnum == SPARC32_FSR_REGNUM || regnum == -1)
1338 regcache_raw_supply (regcache, SPARC32_FSR_REGNUM, regs + (32 * 4) + 4);
c906108c
SS
1339}
1340
386c036b
MK
1341void
1342sparc32_collect_fpregset (const struct regcache *regcache,
1343 int regnum, void *fpregs)
c906108c 1344{
386c036b
MK
1345 char *regs = fpregs;
1346 int i;
c906108c 1347
386c036b
MK
1348 for (i = 0; i < 32; i++)
1349 {
1350 if (regnum == (SPARC_F0_REGNUM + i) || regnum == -1)
1351 regcache_raw_collect (regcache, SPARC_F0_REGNUM + i, regs + (i * 4));
1352 }
c906108c 1353
386c036b
MK
1354 if (regnum == SPARC32_FSR_REGNUM || regnum == -1)
1355 regcache_raw_collect (regcache, SPARC32_FSR_REGNUM, regs + (32 * 4) + 4);
c906108c 1356}
c906108c 1357\f
c906108c 1358
386c036b 1359/* SunOS 4. */
c906108c 1360
386c036b
MK
1361/* From <machine/reg.h>. */
1362const struct sparc_gregset sparc32_sunos4_gregset =
c906108c 1363{
386c036b
MK
1364 0 * 4, /* %psr */
1365 1 * 4, /* %pc */
1366 2 * 4, /* %npc */
1367 3 * 4, /* %y */
1368 -1, /* %wim */
1369 -1, /* %tbr */
1370 4 * 4, /* %g1 */
1371 -1 /* %l0 */
1372};
1373\f
c906108c 1374
386c036b
MK
1375/* Provide a prototype to silence -Wmissing-prototypes. */
1376void _initialize_sparc_tdep (void);
c906108c
SS
1377
1378void
386c036b 1379_initialize_sparc_tdep (void)
c906108c 1380{
386c036b 1381 register_gdbarch_init (bfd_arch_sparc, sparc32_gdbarch_init);
ef3cf062 1382}
This page took 0.557697 seconds and 4 git commands to generate.