2004-01-17 Andrew Cagney <cagney@redhat.com>
[deliverable/binutils-gdb.git] / gdb / sparc-tdep.c
... / ...
CommitLineData
1/* Target-dependent code for SPARC.
2
3 Copyright 2003, 2004 Free Software Foundation, Inc.
4
5 This file is part of GDB.
6
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.
11
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.
16
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. */
21
22#include "defs.h"
23#include "arch-utils.h"
24#include "dis-asm.h"
25#include "floatformat.h"
26#include "frame.h"
27#include "frame-base.h"
28#include "frame-unwind.h"
29#include "gdbcore.h"
30#include "gdbtypes.h"
31#include "inferior.h"
32#include "symtab.h"
33#include "objfiles.h"
34#include "osabi.h"
35#include "regcache.h"
36#include "target.h"
37#include "value.h"
38
39#include "gdb_assert.h"
40#include "gdb_string.h"
41
42#include "sparc-tdep.h"
43
44struct regset;
45
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. */
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)
84#define X_I(i) (((i) >> 13) & 1)
85/* Sign extension macros. */
86#define X_DISP22(i) ((X_IMM22 (i) ^ 0x200000) - 0x200000)
87#define X_DISP19(i) ((((i) & 0x7ffff) ^ 0x40000) - 0x40000)
88
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)
94{
95 unsigned char buf[4];
96 unsigned long insn;
97 int i;
98
99 read_memory (pc, buf, sizeof (buf));
100
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. */
108
109static CORE_ADDR
110sparc_address_from_register (int regnum)
111{
112 ULONGEST addr;
113
114 regcache_cooked_read_unsigned (current_regcache, regnum, &addr);
115 return addr;
116}
117\f
118
119/* The functions on this page are intended to be used to classify
120 function arguments. */
121
122/* Check whether TYPE is "Integral or Pointer". */
123
124static int
125sparc_integral_or_pointer_p (const struct type *type)
126{
127 switch (TYPE_CODE (type))
128 {
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 }
153
154 return 0;
155}
156
157/* Check whether TYPE is "Floating". */
158
159static int
160sparc_floating_p (const struct type *type)
161{
162 switch (TYPE_CODE (type))
163 {
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}
175
176/* Check whether TYPE is "Structure or Union". */
177
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;
188 }
189
190 return 0;
191}
192
193/* Register information. */
194
195static const char *sparc32_register_names[] =
196{
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"
208};
209
210/* Total number of registers. */
211#define SPARC32_NUM_REGS ARRAY_SIZE (sparc32_register_names)
212
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)
291{
292 *bp_addr = sp - 4;
293 *real_pc = funcaddr;
294
295 if (using_struct_return (value_type, using_gcc))
296 {
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;
303 }
304
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++)
319 {
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))
325 {
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);
342 }
343 else
344 {
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);
351 }
352 }
353
354 /* Always allocate at least six words. */
355 sp -= max (6, num_elements) * 4;
356
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;
360
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;
365
366 for (i = 0; i < nargs; i++)
367 {
368 char *valbuf = VALUE_CONTENTS (args[i]);
369 struct type *type = VALUE_TYPE (args[i]);
370 int len = TYPE_LENGTH (type);
371
372 gdb_assert (len == 4 || len == 8);
373
374 if (element < 6)
375 {
376 int regnum = SPARC_O0_REGNUM + element;
377
378 regcache_cooked_write (regcache, regnum, valbuf);
379 if (len > 4 && element < 5)
380 regcache_cooked_write (regcache, regnum + 1, valbuf + 4);
381 }
382
383 /* Always store the argument in memory. */
384 write_memory (sp + 4 + element * 4, valbuf, len);
385 element += len / 4;
386 }
387
388 gdb_assert (element == num_elements);
389
390 if (struct_return)
391 {
392 char buf[4];
393
394 store_unsigned_integer (buf, 4, struct_addr);
395 write_memory (sp, buf, 4);
396 }
397
398 return sp;
399}
400
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)
406{
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;
418
419 /* Stack should be doubleword aligned at this point. */
420 gdb_assert (sp % 8 == 0);
421
422 /* Finally, update the stack pointer. */
423 regcache_cooked_write_unsigned (regcache, SPARC_SP_REGNUM, sp);
424
425 return sp;
426}
427\f
428
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 };
439
440 *len = sizeof (break_insn);
441 return break_insn;
442}
443\f
444
445/* Allocate and initialize a frame cache. */
446
447static struct sparc_frame_cache *
448sparc_alloc_frame_cache (void)
449{
450 struct sparc_frame_cache *cache;
451 int i;
452
453 cache = FRAME_OBSTACK_ZALLOC (struct sparc_frame_cache);
454
455 /* Base address. */
456 cache->base = 0;
457 cache->pc = 0;
458
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)
470{
471 struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
472 unsigned long insn;
473 int offset = 0;
474 int dest = -1;
475
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);
491
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)
496 {
497 dest = X_RD (insn);
498 offset += 4;
499
500 insn = sparc_fetch_instruction (pc + 4);
501 }
502
503 /* Allow for an arithmetic operation on DEST or %g1. */
504 if (X_OP (insn) == 2 && X_I (insn)
505 && (X_RD (insn) == 1 || X_RD (insn) == dest))
506 {
507 offset += 4;
508
509 insn = sparc_fetch_instruction (pc + 8);
510 }
511
512 /* Check for the SAVE instruction that sets up the frame. */
513 if (X_OP (insn) == 2 && X_OP3 (insn) == 0x3c)
514 {
515 cache->frameless_p = 0;
516 return pc + offset + 4;
517 }
518
519 return pc;
520}
521
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. */
531
532static CORE_ADDR
533sparc32_skip_prologue (CORE_ADDR start_pc)
534{
535 struct symtab_and_line sal;
536 CORE_ADDR func_start, func_end;
537 struct sparc_frame_cache cache;
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
550 return sparc_analyze_prologue (start_pc, 0xffffffffUL, &cache);
551}
552
553/* Normal frames. */
554
555struct sparc_frame_cache *
556sparc_frame_cache (struct frame_info *next_frame, void **this_cache)
557{
558 struct sparc_frame_cache *cache;
559
560 if (*this_cache)
561 return *this_cache;
562
563 cache = sparc_alloc_frame_cache ();
564 *this_cache = cache;
565
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)
576 {
577 CORE_ADDR addr_in_block = frame_unwind_address_in_block (next_frame);
578 sparc_analyze_prologue (cache->pc, addr_in_block, cache);
579 }
580
581 if (cache->frameless_p)
582 {
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);
587 }
588
589 return cache;
590}
591
592struct sparc_frame_cache *
593sparc32_frame_cache (struct frame_info *next_frame, void **this_cache)
594{
595 struct sparc_frame_cache *cache;
596 struct symbol *sym;
597
598 if (*this_cache)
599 return *this_cache;
600
601 cache = sparc_frame_cache (next_frame, this_cache);
602
603 sym = find_pc_function (cache->pc);
604 if (sym)
605 {
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 }
616 }
617
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}
634
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);
643
644 if (regnum == SPARC32_PC_REGNUM || regnum == SPARC32_NPC_REGNUM)
645 {
646 *optimizedp = 0;
647 *lvalp = not_lval;
648 *addrp = 0;
649 *realnump = -1;
650 if (valuep)
651 {
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);
663 }
664 return;
665 }
666
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)
671 {
672 *optimizedp = 0;
673 *lvalp = lval_memory;
674 *addrp = cache->base + (regnum - SPARC_L0_REGNUM) * 4;
675 *realnump = -1;
676 if (valuep)
677 {
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));
682 }
683 return;
684 }
685
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);
691
692 frame_register_unwind (next_frame, regnum,
693 optimizedp, lvalp, addrp, realnump, valuep);
694}
695
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;
707}
708\f
709
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);
715
716 return cache->base;
717}
718
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};
726
727static struct frame_id
728sparc_unwind_dummy_id (struct gdbarch *gdbarch, struct frame_info *next_frame)
729{
730 CORE_ADDR sp;
731
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
736
737/* Extract from an array REGBUF containing the (raw) register state, a
738 function return value of TYPE, and copy that into VALBUF. */
739
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];
746
747 gdb_assert (!sparc_structure_or_union_p (type));
748 gdb_assert (!(sparc_floating_p (type) && len == 16));
749
750 if (sparc_floating_p (type))
751 {
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);
757 }
758 else
759 {
760 /* Integral and pointer return values. */
761 gdb_assert (sparc_integral_or_pointer_p (type));
762
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}
778
779/* Write into the appropriate registers a function return value stored
780 in VALBUF of type TYPE. */
781
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];
788
789 gdb_assert (!sparc_structure_or_union_p (type));
790 gdb_assert (!(sparc_floating_p (type) && len == 16));
791
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
801 {
802 /* Integral and pointer return values. */
803 gdb_assert (sparc_integral_or_pointer_p (type));
804
805 if (len > 4)
806 {
807 gdb_assert (len == 8);
808 memcpy (buf, valbuf, 8);
809 regcache_cooked_write (regcache, SPARC_O1_REGNUM, buf + 4);
810 }
811 else
812 {
813 /* ??? Do we need to do any sign-extension here? */
814 memcpy (buf + 4 - len, valbuf, len);
815 }
816 regcache_cooked_write (regcache, SPARC_O0_REGNUM, buf);
817 }
818}
819
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
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. */
840
841static CORE_ADDR
842sparc32_extract_struct_value_address (struct regcache *regcache)
843{
844 ULONGEST sp;
845
846 regcache_cooked_read_unsigned (regcache, SPARC_SP_REGNUM, &sp);
847 return read_memory_unsigned_integer (sp + 64, 4);
848}
849
850static int
851sparc32_stabs_argument_has_addr (struct gdbarch *gdbarch, struct type *type)
852{
853 return (sparc_structure_or_union_p (type)
854 || (sparc_floating_p (type) && TYPE_LENGTH (type) == 16));
855}
856
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. */
861
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. */
869
870 if (X_OP (insn) == 0 && X_OP2 (insn) == 3 && (insn & 0x1000000) == 0)
871 {
872 /* Branch on Integer Register with Prediction (BPr). */
873 branch_p = 1;
874 conditional_p = 1;
875 }
876 else if (X_OP (insn) == 0 && X_OP2 (insn) == 6)
877 {
878 /* Branch on Floating-Point Condition Codes (FBfcc). */
879 branch_p = 1;
880 offset = 4 * X_DISP22 (insn);
881 }
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)
896 {
897 /* Branch on Integer Condition Codes with Prediction (BPcc). */
898 branch_p = 1;
899 offset = 4 * X_DISP19 (insn);
900 }
901
902 /* FIXME: Handle DONE and RETRY instructions. */
903
904 /* FIXME: Handle the Trap instruction. */
905
906 if (branch_p)
907 {
908 if (conditional_p)
909 {
910 /* For conditional branches, return nPC + 4 iff the annul
911 bit is 1. */
912 return (X_A (insn) ? *npc + 4 : 0);
913 }
914 else
915 {
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;
927 }
928 }
929
930 return 0;
931}
932
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];
939
940 if (insert_breakpoints_p)
941 {
942 CORE_ADDR pc;
943
944 pc = sparc_address_from_register (tdep->pc_regnum);
945 npc = sparc_address_from_register (tdep->npc_regnum);
946
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);
953
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);
958 }
959 else
960 {
961 if (npc != 0)
962 target_remove_breakpoint (npc, npc_save);
963 if (nnpc != 0)
964 target_remove_breakpoint (nnpc, nnpc_save);
965 }
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. */
997
998 if (name[0] == '$')
999 {
1000 char *p = strrchr (name, '.');
1001 if (p)
1002 return p + 1;
1003 }
1004
1005 return name;
1006}
1007\f
1008
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
1028static struct gdbarch *
1029sparc32_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches)
1030{
1031 struct gdbarch_tdep *tdep;
1032 struct gdbarch *gdbarch;
1033
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;
1038
1039 /* Allocate space for the new architecture. */
1040 tdep = XMALLOC (struct gdbarch_tdep);
1041 gdbarch = gdbarch_alloc (&info, tdep);
1042
1043 tdep->pc_regnum = SPARC32_PC_REGNUM;
1044 tdep->npc_regnum = SPARC32_NPC_REGNUM;
1045 tdep->gregset = NULL;
1046 tdep->sizeof_gregset = 20 * 4;
1047 tdep->fpregset = NULL;
1048 tdep->sizeof_fpregset = 33 * 4;
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
1071 set_gdbarch_return_value (gdbarch, sparc32_return_value);
1072 set_gdbarch_extract_struct_value_address
1073 (gdbarch, sparc32_extract_struct_value_address);
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);
1081
1082 set_gdbarch_breakpoint_from_pc (gdbarch, sparc_breakpoint_from_pc);
1083
1084 set_gdbarch_frame_args_skip (gdbarch, 8);
1085
1086 set_gdbarch_print_insn (gdbarch, print_insn_sparc);
1087
1088 set_gdbarch_software_single_step (gdbarch, sparc_software_single_step);
1089 set_gdbarch_write_pc (gdbarch, sparc_write_pc);
1090
1091 set_gdbarch_unwind_dummy_id (gdbarch, sparc_unwind_dummy_id);
1092
1093 set_gdbarch_unwind_pc (gdbarch, sparc_unwind_pc);
1094
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);
1099
1100 frame_unwind_append_sniffer (gdbarch, sparc32_frame_sniffer);
1101
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
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)
1114{
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;
1123
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
1134 {
1135 /* Registers are 32-bit. Toss any sign-extension of the stack
1136 pointer. */
1137 sp &= 0xffffffffUL;
1138
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)
1142 {
1143 memset (buf, 0, 4);
1144 offset = 4;
1145 }
1146
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 }
1155 }
1156 }
1157}
1158
1159void
1160sparc_collect_rwindow (const struct regcache *regcache,
1161 CORE_ADDR sp, int regnum)
1162{
1163 int offset = 0;
1164 char buf[8];
1165 int i;
1166
1167 if (sp & 1)
1168 {
1169 /* Registers are 64-bit. */
1170 sp += BIAS;
1171
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 }
1180 }
1181 else
1182 {
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 }
1200 }
1201}
1202
1203/* Helper functions for dealing with register sets. */
1204
1205void
1206sparc32_supply_gregset (const struct sparc_gregset *gregset,
1207 struct regcache *regcache,
1208 int regnum, const void *gregs)
1209{
1210 const char *regs = gregs;
1211 int i;
1212
1213 if (regnum == SPARC32_PSR_REGNUM || regnum == -1)
1214 regcache_raw_supply (regcache, SPARC32_PSR_REGNUM,
1215 regs + gregset->r_psr_offset);
1216
1217 if (regnum == SPARC32_PC_REGNUM || regnum == -1)
1218 regcache_raw_supply (regcache, SPARC32_PC_REGNUM,
1219 regs + gregset->r_pc_offset);
1220
1221 if (regnum == SPARC32_NPC_REGNUM || regnum == -1)
1222 regcache_raw_supply (regcache, SPARC32_NPC_REGNUM,
1223 regs + gregset->r_npc_offset);
1224
1225 if (regnum == SPARC32_Y_REGNUM || regnum == -1)
1226 regcache_raw_supply (regcache, SPARC32_Y_REGNUM,
1227 regs + gregset->r_y_offset);
1228
1229 if (regnum == SPARC_G0_REGNUM || regnum == -1)
1230 regcache_raw_supply (regcache, SPARC_G0_REGNUM, NULL);
1231
1232 if ((regnum >= SPARC_G1_REGNUM && regnum <= SPARC_O7_REGNUM) || regnum == -1)
1233 {
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 }
1242 }
1243
1244 if ((regnum >= SPARC_L0_REGNUM && regnum <= SPARC_I7_REGNUM) || regnum == -1)
1245 {
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 }
1266 }
1267}
1268
1269void
1270sparc32_collect_gregset (const struct sparc_gregset *gregset,
1271 const struct regcache *regcache,
1272 int regnum, void *gregs)
1273{
1274 char *regs = gregs;
1275 int i;
1276
1277 if (regnum == SPARC32_PSR_REGNUM || regnum == -1)
1278 regcache_raw_collect (regcache, SPARC32_PSR_REGNUM,
1279 regs + gregset->r_psr_offset);
1280
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);
1288
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)
1294 {
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 }
1304 }
1305
1306 if ((regnum >= SPARC_L0_REGNUM && regnum <= SPARC_I7_REGNUM) || regnum == -1)
1307 {
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 }
1321 }
1322}
1323
1324void
1325sparc32_supply_fpregset (struct regcache *regcache,
1326 int regnum, const void *fpregs)
1327{
1328 const char *regs = fpregs;
1329 int i;
1330
1331 for (i = 0; i < 32; i++)
1332 {
1333 if (regnum == (SPARC_F0_REGNUM + i) || regnum == -1)
1334 regcache_raw_supply (regcache, SPARC_F0_REGNUM + i, regs + (i * 4));
1335 }
1336
1337 if (regnum == SPARC32_FSR_REGNUM || regnum == -1)
1338 regcache_raw_supply (regcache, SPARC32_FSR_REGNUM, regs + (32 * 4) + 4);
1339}
1340
1341void
1342sparc32_collect_fpregset (const struct regcache *regcache,
1343 int regnum, void *fpregs)
1344{
1345 char *regs = fpregs;
1346 int i;
1347
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 }
1353
1354 if (regnum == SPARC32_FSR_REGNUM || regnum == -1)
1355 regcache_raw_collect (regcache, SPARC32_FSR_REGNUM, regs + (32 * 4) + 4);
1356}
1357\f
1358
1359/* SunOS 4. */
1360
1361/* From <machine/reg.h>. */
1362const struct sparc_gregset sparc32_sunos4_gregset =
1363{
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
1374
1375/* Provide a prototype to silence -Wmissing-prototypes. */
1376void _initialize_sparc_tdep (void);
1377
1378void
1379_initialize_sparc_tdep (void)
1380{
1381 register_gdbarch_init (bfd_arch_sparc, sparc32_gdbarch_init);
1382}
This page took 0.027564 seconds and 4 git commands to generate.