1 /* Target-dependent code for the SPARC for GDB, the GNU debugger.
3 Copyright 1986, 1987, 1989, 1990, 1991, 1992, 1993, 1994, 1995,
4 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003 Free Software Foundation,
7 This file is part of GDB.
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 59 Temple Place - Suite 330,
22 Boston, MA 02111-1307, USA. */
24 /* ??? Support for calling functions from gdb in sparc64 is unfinished. */
27 #include "arch-utils.h"
33 #include "gdb_string.h"
38 #include <sys/procfs.h>
39 /* Prototypes for supply_gregset etc. */
44 #include "gdb_assert.h"
46 #include "symfile.h" /* for 'entry_point_address' */
49 * Some local macros that have multi-arch and non-multi-arch versions:
52 #if (GDB_MULTI_ARCH > 0)
55 // OBSOLETE /* Does the target have Floating Point registers? */
56 // OBSOLETE #define SPARC_HAS_FPU (gdbarch_tdep (current_gdbarch)->has_fpu)
58 #define SPARC_HAS_FPU 1
59 /* Number of bytes devoted to Floating Point registers: */
60 #define FP_REGISTER_BYTES (gdbarch_tdep (current_gdbarch)->fp_register_bytes)
61 /* Highest numbered Floating Point register. */
62 #define FP_MAX_REGNUM (gdbarch_tdep (current_gdbarch)->fp_max_regnum)
63 /* Size of a general (integer) register: */
64 #define SPARC_INTREG_SIZE (gdbarch_tdep (current_gdbarch)->intreg_size)
65 /* Offset within the call dummy stack of the saved registers. */
66 #define DUMMY_REG_SAVE_OFFSET (gdbarch_tdep (current_gdbarch)->reg_save_offset)
68 #else /* non-multi-arch */
71 /* Does the target have Floating Point registers? */
73 // OBSOLETE #if defined(TARGET_SPARCLET) || defined(TARGET_SPARCLITE)
74 // OBSOLETE #define SPARC_HAS_FPU 0
76 // OBSOLETE #define SPARC_HAS_FPU 1
79 #define SPARC_HAS_FPU 1
81 /* Number of bytes devoted to Floating Point registers: */
82 #if (GDB_TARGET_IS_SPARC64)
83 #define FP_REGISTER_BYTES (64 * 4)
86 #define FP_REGISTER_BYTES (32 * 4)
88 #define FP_REGISTER_BYTES 0
92 /* Highest numbered Floating Point register. */
93 #if (GDB_TARGET_IS_SPARC64)
94 #define FP_MAX_REGNUM (FP0_REGNUM + 48)
96 #define FP_MAX_REGNUM (FP0_REGNUM + 32)
99 /* Size of a general (integer) register: */
100 #define SPARC_INTREG_SIZE (REGISTER_RAW_SIZE (G0_REGNUM))
102 /* Offset within the call dummy stack of the saved registers. */
103 #if (GDB_TARGET_IS_SPARC64)
104 #define DUMMY_REG_SAVE_OFFSET (128 + 16)
106 #define DUMMY_REG_SAVE_OFFSET 0x60
109 #endif /* GDB_MULTI_ARCH */
114 // OBSOLETE int has_fpu;
116 int fp_register_bytes;
121 int call_dummy_call_offset;
125 /* Now make GDB_TARGET_IS_SPARC64 a runtime test. */
126 /* FIXME MVS: or try testing bfd_arch_info.arch and bfd_arch_info.mach ...
127 * define GDB_TARGET_IS_SPARC64 \
128 * (TARGET_ARCHITECTURE->arch == bfd_arch_sparc && \
129 * (TARGET_ARCHITECTURE->mach == bfd_mach_sparc_v9 || \
130 * TARGET_ARCHITECTURE->mach == bfd_mach_sparc_v9a))
133 /* We don't store all registers immediately when requested, since they
134 get sent over in large chunks anyway. Instead, we accumulate most
135 of the changes and send them over once. "deferred_stores" keeps
136 track of which sets of registers we have locally-changed copies of,
137 so we only need send the groups that have changed. */
139 int deferred_stores = 0; /* Accumulated stores we want to do eventually. */
143 // OBSOLETE /* Some machines, such as Fujitsu SPARClite 86x, have a bi-endian mode
144 // OBSOLETE where instructions are big-endian and data are little-endian.
145 // OBSOLETE This flag is set when we detect that the target is of this type. */
147 // OBSOLETE int bi_endian = 0;
151 const unsigned char *
152 sparc_breakpoint_from_pc (CORE_ADDR *pc, int *len)
154 static const char breakpoint[] = {0x91, 0xd0, 0x20, 0x01};
155 (*len) = sizeof (breakpoint);
159 /* Fetch a single instruction. Even on bi-endian machines
160 such as sparc86x, instructions are always big-endian. */
163 fetch_instruction (CORE_ADDR pc)
165 unsigned long retval;
167 unsigned char buf[4];
169 read_memory (pc, buf, sizeof (buf));
171 /* Start at the most significant end of the integer, and work towards
172 the least significant. */
174 for (i = 0; i < sizeof (buf); ++i)
175 retval = (retval << 8) | buf[i];
180 /* Branches with prediction are treated like their non-predicting cousins. */
181 /* FIXME: What about floating point branches? */
183 /* Macros to extract fields from sparc instructions. */
184 #define X_OP(i) (((i) >> 30) & 0x3)
185 #define X_RD(i) (((i) >> 25) & 0x1f)
186 #define X_A(i) (((i) >> 29) & 1)
187 #define X_COND(i) (((i) >> 25) & 0xf)
188 #define X_OP2(i) (((i) >> 22) & 0x7)
189 #define X_IMM22(i) ((i) & 0x3fffff)
190 #define X_OP3(i) (((i) >> 19) & 0x3f)
191 #define X_RS1(i) (((i) >> 14) & 0x1f)
192 #define X_I(i) (((i) >> 13) & 1)
193 #define X_IMM13(i) ((i) & 0x1fff)
194 /* Sign extension macros. */
195 #define X_SIMM13(i) ((X_IMM13 (i) ^ 0x1000) - 0x1000)
196 #define X_DISP22(i) ((X_IMM22 (i) ^ 0x200000) - 0x200000)
197 #define X_CC(i) (((i) >> 20) & 3)
198 #define X_P(i) (((i) >> 19) & 1)
199 #define X_DISP19(i) ((((i) & 0x7ffff) ^ 0x40000) - 0x40000)
200 #define X_RCOND(i) (((i) >> 25) & 7)
201 #define X_DISP16(i) ((((((i) >> 6) && 0xc000) | ((i) & 0x3fff)) ^ 0x8000) - 0x8000)
202 #define X_FCN(i) (((i) >> 25) & 31)
206 Error, not_branch, bicc, bicca, ba, baa, ticc, ta, done_retry
209 /* Simulate single-step ptrace call for sun4. Code written by Gary
212 /* npc4 and next_pc describe the situation at the time that the
213 step-breakpoint was set, not necessary the current value of NPC_REGNUM. */
214 static CORE_ADDR next_pc, npc4, target;
215 static int brknpc4, brktrg;
216 typedef char binsn_quantum[BREAKPOINT_MAX];
217 static binsn_quantum break_mem[3];
219 static branch_type isbranch (long, CORE_ADDR, CORE_ADDR *);
221 /* single_step() is called just before we want to resume the inferior,
222 if we want to single-step it but there is no hardware or kernel single-step
223 support (as on all SPARCs). We find all the possible targets of the
224 coming instruction and breakpoint them.
226 single_step is also called just after the inferior stops. If we had
227 set up a simulated single-step, we undo our damage. */
230 sparc_software_single_step (enum target_signal ignore, /* pid, but we don't need it */
231 int insert_breakpoints_p)
237 if (insert_breakpoints_p)
239 /* Always set breakpoint for NPC. */
240 next_pc = read_register (NPC_REGNUM);
241 npc4 = next_pc + 4; /* branch not taken */
243 target_insert_breakpoint (next_pc, break_mem[0]);
244 /* printf_unfiltered ("set break at %x\n",next_pc); */
246 pc = read_register (PC_REGNUM);
247 pc_instruction = fetch_instruction (pc);
248 br = isbranch (pc_instruction, pc, &target);
249 brknpc4 = brktrg = 0;
253 /* Conditional annulled branch will either end up at
254 npc (if taken) or at npc+4 (if not taken).
257 target_insert_breakpoint (npc4, break_mem[1]);
259 else if (br == baa && target != next_pc)
261 /* Unconditional annulled branch will always end up at
264 target_insert_breakpoint (target, break_mem[2]);
266 else if (GDB_TARGET_IS_SPARC64 && br == done_retry)
269 target_insert_breakpoint (target, break_mem[2]);
274 /* Remove breakpoints */
275 target_remove_breakpoint (next_pc, break_mem[0]);
278 target_remove_breakpoint (npc4, break_mem[1]);
281 target_remove_breakpoint (target, break_mem[2]);
285 struct frame_extra_info
290 /* Following fields only relevant for flat frames. */
293 /* Add this to ->frame to get the value of the stack pointer at the
294 time of the register saves. */
298 /* Call this for each newly created frame. For SPARC, we need to
299 calculate the bottom of the frame, and do some extra work if the
300 prologue has been generated via the -mflat option to GCC. In
301 particular, we need to know where the previous fp and the pc have
302 been stashed, since their exact position within the frame may vary. */
305 sparc_init_extra_frame_info (int fromleaf, struct frame_info *fi)
308 CORE_ADDR prologue_start, prologue_end;
311 frame_extra_info_zalloc (fi, sizeof (struct frame_extra_info));
312 frame_saved_regs_zalloc (fi);
314 get_frame_extra_info (fi)->bottom =
316 ? (get_frame_base (fi) == get_frame_base (get_next_frame (fi))
317 ? get_frame_extra_info (get_next_frame (fi))->bottom
318 : get_frame_base (get_next_frame (fi)))
321 /* If fi->next is NULL, then we already set ->frame by passing
322 deprecated_read_fp() to create_new_frame. */
323 if (get_next_frame (fi))
325 char buf[MAX_REGISTER_SIZE];
327 /* Compute ->frame as if not flat. If it is flat, we'll change
329 if (get_next_frame (get_next_frame (fi)) != NULL
330 && ((get_frame_type (get_next_frame (get_next_frame (fi))) == SIGTRAMP_FRAME)
331 || deprecated_frame_in_dummy (get_next_frame (get_next_frame (fi))))
332 && frameless_look_for_prologue (get_next_frame (fi)))
334 /* A frameless function interrupted by a signal did not change
335 the frame pointer, fix up frame pointer accordingly. */
336 deprecated_update_frame_base_hack (fi, get_frame_base (get_next_frame (fi)));
337 get_frame_extra_info (fi)->bottom =
338 get_frame_extra_info (get_next_frame (fi))->bottom;
342 /* Should we adjust for stack bias here? */
344 frame_read_unsigned_register (fi, DEPRECATED_FP_REGNUM, &tmp);
345 deprecated_update_frame_base_hack (fi, tmp);
346 if (GDB_TARGET_IS_SPARC64 && (get_frame_base (fi) & 1))
347 deprecated_update_frame_base_hack (fi, get_frame_base (fi) + 2047);
351 /* Decide whether this is a function with a ``flat register window''
352 frame. For such functions, the frame pointer is actually in %i7. */
353 get_frame_extra_info (fi)->flat = 0;
354 get_frame_extra_info (fi)->in_prologue = 0;
355 if (find_pc_partial_function (get_frame_pc (fi), &name, &prologue_start, &prologue_end))
357 /* See if the function starts with an add (which will be of a
358 negative number if a flat frame) to the sp. FIXME: Does not
359 handle large frames which will need more than one instruction
361 insn = fetch_instruction (prologue_start);
362 if (X_OP (insn) == 2 && X_RD (insn) == 14 && X_OP3 (insn) == 0
363 && X_I (insn) && X_SIMM13 (insn) < 0)
365 int offset = X_SIMM13 (insn);
367 /* Then look for a save of %i7 into the frame. */
368 insn = fetch_instruction (prologue_start + 4);
372 && X_RS1 (insn) == 14)
374 char buf[MAX_REGISTER_SIZE];
376 /* We definitely have a flat frame now. */
377 get_frame_extra_info (fi)->flat = 1;
379 get_frame_extra_info (fi)->sp_offset = offset;
381 /* Overwrite the frame's address with the value in %i7. */
384 frame_read_unsigned_register (fi, I7_REGNUM, &tmp);
385 deprecated_update_frame_base_hack (fi, tmp);
388 if (GDB_TARGET_IS_SPARC64 && (get_frame_base (fi) & 1))
389 deprecated_update_frame_base_hack (fi, get_frame_base (fi) + 2047);
391 /* Record where the fp got saved. */
392 get_frame_extra_info (fi)->fp_addr =
393 get_frame_base (fi) + get_frame_extra_info (fi)->sp_offset + X_SIMM13 (insn);
395 /* Also try to collect where the pc got saved to. */
396 get_frame_extra_info (fi)->pc_addr = 0;
397 insn = fetch_instruction (prologue_start + 12);
401 && X_RS1 (insn) == 14)
402 get_frame_extra_info (fi)->pc_addr =
403 get_frame_base (fi) + get_frame_extra_info (fi)->sp_offset + X_SIMM13 (insn);
408 /* Check if the PC is in the function prologue before a SAVE
409 instruction has been executed yet. If so, set the frame
410 to the current value of the stack pointer and set
411 the in_prologue flag. */
413 struct symtab_and_line sal;
415 sal = find_pc_line (prologue_start, 0);
416 if (sal.line == 0) /* no line info, use PC */
417 prologue_end = get_frame_pc (fi);
418 else if (sal.end < prologue_end)
419 prologue_end = sal.end;
420 if (get_frame_pc (fi) < prologue_end)
422 for (addr = prologue_start; addr < get_frame_pc (fi); addr += 4)
424 insn = read_memory_integer (addr, 4);
425 if (X_OP (insn) == 2 && X_OP3 (insn) == 0x3c)
426 break; /* SAVE seen, stop searching */
428 if (addr >= get_frame_pc (fi))
430 get_frame_extra_info (fi)->in_prologue = 1;
431 deprecated_update_frame_base_hack (fi, read_register (SP_REGNUM));
436 if (get_next_frame (fi) && get_frame_base (fi) == 0)
438 /* Kludge to cause init_prev_frame_info to destroy the new frame. */
439 deprecated_update_frame_base_hack (fi, get_frame_base (get_next_frame (fi)));
440 deprecated_update_frame_pc_hack (fi, get_frame_pc (get_next_frame (fi)));
445 sparc_frame_chain (struct frame_info *frame)
447 /* Value that will cause DEPRECATED_FRAME_CHAIN_VALID to not worry
448 about the chain value. If it really is zero, we detect it later
449 in sparc_init_prev_frame.
451 Note: kevinb/2003-02-18: The constant 1 used to be returned here,
452 but, after some recent changes to legacy_frame_chain_valid(),
453 this value is no longer suitable for causing
454 legacy_frame_chain_valid() to "not worry about the chain value."
455 The constant ~0 (i.e, 0xfff...) causes the failing test in
456 legacy_frame_chain_valid() to succeed thus preserving the "not
457 worry" property. I had considered using something like
458 ``get_frame_base (frame) + 1''. However, I think a constant
459 value is better, because when debugging this problem, I knew that
460 something funny was going on as soon as I saw the constant 1
461 being used as the frame chain elsewhere in GDB. */
463 return ~ (CORE_ADDR) 0;
466 /* Find the pc saved in frame FRAME. */
469 sparc_frame_saved_pc (struct frame_info *frame)
471 char buf[MAX_REGISTER_SIZE];
474 if ((get_frame_type (frame) == SIGTRAMP_FRAME))
476 /* This is the signal trampoline frame.
477 Get the saved PC from the sigcontext structure. */
479 #ifndef SIGCONTEXT_PC_OFFSET
480 #define SIGCONTEXT_PC_OFFSET 12
483 CORE_ADDR sigcontext_addr;
485 int saved_pc_offset = SIGCONTEXT_PC_OFFSET;
488 scbuf = alloca (TARGET_PTR_BIT / HOST_CHAR_BIT);
490 /* Solaris2 ucbsigvechandler passes a pointer to a sigcontext
491 as the third parameter. The offset to the saved pc is 12. */
492 find_pc_partial_function (get_frame_pc (frame), &name,
493 (CORE_ADDR *) NULL, (CORE_ADDR *) NULL);
494 if (name && STREQ (name, "ucbsigvechandler"))
495 saved_pc_offset = 12;
497 /* The sigcontext address is contained in register O2. */
500 frame_read_unsigned_register (frame, O0_REGNUM + 2, &tmp);
501 sigcontext_addr = tmp;
504 /* Don't cause a memory_error when accessing sigcontext in case the
505 stack layout has changed or the stack is corrupt. */
506 target_read_memory (sigcontext_addr + saved_pc_offset,
507 scbuf, sizeof (scbuf));
508 return extract_unsigned_integer (scbuf, sizeof (scbuf));
510 else if (get_frame_extra_info (frame)->in_prologue ||
511 (get_next_frame (frame) != NULL &&
512 ((get_frame_type (get_next_frame (frame)) == SIGTRAMP_FRAME) ||
513 deprecated_frame_in_dummy (get_next_frame (frame))) &&
514 frameless_look_for_prologue (frame)))
516 /* A frameless function interrupted by a signal did not save
517 the PC, it is still in %o7. */
519 frame_read_unsigned_register (frame, O7_REGNUM, &tmp);
520 return PC_ADJUST (tmp);
522 if (get_frame_extra_info (frame)->flat)
523 addr = get_frame_extra_info (frame)->pc_addr;
525 addr = get_frame_extra_info (frame)->bottom + FRAME_SAVED_I0 +
526 SPARC_INTREG_SIZE * (I7_REGNUM - I0_REGNUM);
529 /* A flat frame leaf function might not save the PC anywhere,
530 just leave it in %o7. */
531 return PC_ADJUST (read_register (O7_REGNUM));
533 read_memory (addr, buf, SPARC_INTREG_SIZE);
534 return PC_ADJUST (extract_unsigned_integer (buf, SPARC_INTREG_SIZE));
537 /* Since an individual frame in the frame cache is defined by two
538 arguments (a frame pointer and a stack pointer), we need two
539 arguments to get info for an arbitrary stack frame. This routine
540 takes two arguments and makes the cached frames look as if these
541 two arguments defined a frame on the cache. This allows the rest
542 of info frame to extract the important arguments without
546 setup_arbitrary_frame (int argc, CORE_ADDR *argv)
548 struct frame_info *frame;
551 error ("Sparc frame specifications require two arguments: fp and sp");
553 frame = create_new_frame (argv[0], 0);
556 internal_error (__FILE__, __LINE__,
557 "create_new_frame returned invalid frame");
559 get_frame_extra_info (frame)->bottom = argv[1];
560 deprecated_update_frame_pc_hack (frame, DEPRECATED_FRAME_SAVED_PC (frame));
564 /* Given a pc value, skip it forward past the function prologue by
565 disassembling instructions that appear to be a prologue.
567 If FRAMELESS_P is set, we are only testing to see if the function
568 is frameless. This allows a quicker answer.
570 This routine should be more specific in its actions; making sure
571 that it uses the same register in the initial prologue section. */
573 static CORE_ADDR examine_prologue (CORE_ADDR, int, struct frame_info *,
577 examine_prologue (CORE_ADDR start_pc, int frameless_p, struct frame_info *fi,
578 CORE_ADDR *saved_regs)
582 CORE_ADDR pc = start_pc;
585 insn = fetch_instruction (pc);
587 /* Recognize the `sethi' insn and record its destination. */
588 if (X_OP (insn) == 0 && X_OP2 (insn) == 4)
592 insn = fetch_instruction (pc);
595 /* Recognize an add immediate value to register to either %g1 or
596 the destination register recorded above. Actually, this might
597 well recognize several different arithmetic operations.
598 It doesn't check that rs1 == rd because in theory "sub %g0, 5, %g1"
599 followed by "save %sp, %g1, %sp" is a valid prologue (Not that
600 I imagine any compiler really does that, however). */
603 && (X_RD (insn) == 1 || X_RD (insn) == dest))
606 insn = fetch_instruction (pc);
609 /* Recognize any SAVE insn. */
610 if (X_OP (insn) == 2 && X_OP3 (insn) == 60)
613 if (frameless_p) /* If the save is all we care about, */
614 return pc; /* return before doing more work */
615 insn = fetch_instruction (pc);
617 /* Recognize add to %sp. */
618 else if (X_OP (insn) == 2 && X_RD (insn) == 14 && X_OP3 (insn) == 0)
621 if (frameless_p) /* If the add is all we care about, */
622 return pc; /* return before doing more work */
624 insn = fetch_instruction (pc);
625 /* Recognize store of frame pointer (i7). */
629 && X_RS1 (insn) == 14)
632 insn = fetch_instruction (pc);
634 /* Recognize sub %sp, <anything>, %i7. */
637 && X_RS1 (insn) == 14
638 && X_RD (insn) == 31)
641 insn = fetch_instruction (pc);
650 /* Without a save or add instruction, it's not a prologue. */
655 /* Recognize stores into the frame from the input registers.
656 This recognizes all non alternate stores of an input register,
657 into a location offset from the frame pointer between
660 /* The above will fail for arguments that are promoted
661 (eg. shorts to ints or floats to doubles), because the compiler
662 will pass them in positive-offset frame space, but the prologue
663 will save them (after conversion) in negative frame space at an
664 unpredictable offset. Therefore I am going to remove the
665 restriction on the target-address of the save, on the theory
666 that any unbroken sequence of saves from input registers must
667 be part of the prologue. In un-optimized code (at least), I'm
668 fairly sure that the compiler would emit SOME other instruction
669 (eg. a move or add) before emitting another save that is actually
670 a part of the function body.
672 Besides, the reserved stack space is different for SPARC64 anyway.
677 && (X_OP3 (insn) & 0x3c) == 4 /* Store, non-alternate. */
678 && (X_RD (insn) & 0x18) == 0x18 /* Input register. */
679 && X_I (insn) /* Immediate mode. */
680 && X_RS1 (insn) == 30) /* Off of frame pointer. */
681 ; /* empty statement -- fall thru to end of loop */
682 else if (GDB_TARGET_IS_SPARC64
684 && (X_OP3 (insn) & 0x3c) == 12 /* store, extended (64-bit) */
685 && (X_RD (insn) & 0x18) == 0x18 /* input register */
686 && X_I (insn) /* immediate mode */
687 && X_RS1 (insn) == 30) /* off of frame pointer */
688 ; /* empty statement -- fall thru to end of loop */
689 else if (X_OP (insn) == 3
690 && (X_OP3 (insn) & 0x3c) == 36 /* store, floating-point */
691 && X_I (insn) /* immediate mode */
692 && X_RS1 (insn) == 30) /* off of frame pointer */
693 ; /* empty statement -- fall thru to end of loop */
696 && X_OP3 (insn) == 4 /* store? */
697 && X_RS1 (insn) == 14) /* off of frame pointer */
699 if (saved_regs && X_I (insn))
700 saved_regs[X_RD (insn)] =
701 get_frame_base (fi) + get_frame_extra_info (fi)->sp_offset + X_SIMM13 (insn);
706 insn = fetch_instruction (pc);
712 /* Advance PC across any function entry prologue instructions to reach
716 sparc_skip_prologue (CORE_ADDR start_pc)
718 struct symtab_and_line sal;
719 CORE_ADDR func_start, func_end;
721 /* This is the preferred method, find the end of the prologue by
722 using the debugging information. */
723 if (find_pc_partial_function (start_pc, NULL, &func_start, &func_end))
725 sal = find_pc_line (func_start, 0);
727 if (sal.end < func_end
728 && start_pc <= sal.end)
732 /* Oh well, examine the code by hand. */
733 return examine_prologue (start_pc, 0, NULL, NULL);
736 /* Is the prologue at IP frameless? */
739 sparc_prologue_frameless_p (CORE_ADDR ip)
741 return ip == examine_prologue (ip, 1, NULL, NULL);
744 /* Check instruction at ADDR to see if it is a branch.
745 All non-annulled instructions will go to NPC or will trap.
746 Set *TARGET if we find a candidate branch; set to zero if not.
748 This isn't static as it's used by remote-sa.sparc.c. */
751 isbranch (long instruction, CORE_ADDR addr, CORE_ADDR *target)
753 branch_type val = not_branch;
754 long int offset = 0; /* Must be signed for sign-extend. */
758 if (X_OP (instruction) == 0
759 && (X_OP2 (instruction) == 2
760 || X_OP2 (instruction) == 6
761 || X_OP2 (instruction) == 1
762 || X_OP2 (instruction) == 3
763 || X_OP2 (instruction) == 5
764 || (GDB_TARGET_IS_SPARC64 && X_OP2 (instruction) == 7)))
766 if (X_COND (instruction) == 8)
767 val = X_A (instruction) ? baa : ba;
769 val = X_A (instruction) ? bicca : bicc;
770 switch (X_OP2 (instruction))
773 if (!GDB_TARGET_IS_SPARC64)
778 offset = 4 * X_DISP22 (instruction);
782 offset = 4 * X_DISP19 (instruction);
785 offset = 4 * X_DISP16 (instruction);
788 *target = addr + offset;
790 else if (GDB_TARGET_IS_SPARC64
791 && X_OP (instruction) == 2
792 && X_OP3 (instruction) == 62)
794 if (X_FCN (instruction) == 0)
797 *target = read_register (TNPC_REGNUM);
800 else if (X_FCN (instruction) == 1)
803 *target = read_register (TPC_REGNUM);
811 /* Find register number REGNUM relative to FRAME and put its
812 (raw) contents in *RAW_BUFFER. Set *OPTIMIZED if the variable
813 was optimized out (and thus can't be fetched). If the variable
814 was fetched from memory, set *ADDRP to where it was fetched from,
815 otherwise it was fetched from a register.
817 The argument RAW_BUFFER must point to aligned memory. */
820 sparc_get_saved_register (char *raw_buffer, int *optimized, CORE_ADDR *addrp,
821 struct frame_info *frame, int regnum,
822 enum lval_type *lval)
824 struct frame_info *frame1;
827 if (!target_has_registers)
828 error ("No registers.");
835 /* FIXME This code extracted from infcmd.c; should put elsewhere! */
838 /* error ("No selected frame."); */
839 if (!target_has_registers)
840 error ("The program has no registers now.");
841 if (deprecated_selected_frame == NULL)
842 error ("No selected frame.");
843 /* Try to use selected frame */
844 frame = get_prev_frame (deprecated_selected_frame);
846 error ("Cmd not meaningful in the outermost frame.");
850 frame1 = get_next_frame (frame);
852 /* Get saved PC from the frame info if not in innermost frame. */
853 if (regnum == PC_REGNUM && frame1 != NULL)
857 if (raw_buffer != NULL)
859 /* Put it back in target format. */
860 store_unsigned_integer (raw_buffer, REGISTER_RAW_SIZE (regnum), get_frame_pc (frame));
867 while (frame1 != NULL)
869 /* FIXME MVS: wrong test for dummy frame at entry. */
871 if (get_frame_pc (frame1) >= (get_frame_extra_info (frame1)->bottom
872 ? get_frame_extra_info (frame1)->bottom
874 && get_frame_pc (frame1) <= get_frame_base (frame1))
876 /* Dummy frame. All but the window regs are in there somewhere.
877 The window registers are saved on the stack, just like in a
879 if (regnum >= G1_REGNUM && regnum < G1_REGNUM + 7)
880 addr = get_frame_base (frame1) + (regnum - G0_REGNUM) * SPARC_INTREG_SIZE
881 - (FP_REGISTER_BYTES + 8 * SPARC_INTREG_SIZE);
882 else if (regnum >= I0_REGNUM && regnum < I0_REGNUM + 8)
883 /* NOTE: cagney/2002-05-04: The call to get_prev_frame()
884 is safe/cheap - there will always be a prev frame.
885 This is because frame1 is initialized to frame->next
886 (frame1->prev == frame) and is then advanced towards
887 the innermost (next) frame. */
888 addr = (get_frame_extra_info (get_prev_frame (frame1))->bottom
889 + (regnum - I0_REGNUM) * SPARC_INTREG_SIZE
891 else if (regnum >= L0_REGNUM && regnum < L0_REGNUM + 8)
892 /* NOTE: cagney/2002-05-04: The call to get_prev_frame()
893 is safe/cheap - there will always be a prev frame.
894 This is because frame1 is initialized to frame->next
895 (frame1->prev == frame) and is then advanced towards
896 the innermost (next) frame. */
897 addr = (get_frame_extra_info (get_prev_frame (frame1))->bottom
898 + (regnum - L0_REGNUM) * SPARC_INTREG_SIZE
900 else if (regnum >= O0_REGNUM && regnum < O0_REGNUM + 8)
901 addr = get_frame_base (frame1) + (regnum - O0_REGNUM) * SPARC_INTREG_SIZE
902 - (FP_REGISTER_BYTES + 16 * SPARC_INTREG_SIZE);
903 else if (SPARC_HAS_FPU &&
904 regnum >= FP0_REGNUM && regnum < FP0_REGNUM + 32)
905 addr = get_frame_base (frame1) + (regnum - FP0_REGNUM) * 4
906 - (FP_REGISTER_BYTES);
907 else if (GDB_TARGET_IS_SPARC64 && SPARC_HAS_FPU &&
908 regnum >= FP0_REGNUM + 32 && regnum < FP_MAX_REGNUM)
909 addr = get_frame_base (frame1) + 32 * 4 + (regnum - FP0_REGNUM - 32) * 8
910 - (FP_REGISTER_BYTES);
911 else if (regnum >= Y_REGNUM && regnum < NUM_REGS)
912 addr = get_frame_base (frame1) + (regnum - Y_REGNUM) * SPARC_INTREG_SIZE
913 - (FP_REGISTER_BYTES + 24 * SPARC_INTREG_SIZE);
915 else if (get_frame_extra_info (frame1)->flat)
918 if (regnum == RP_REGNUM)
919 addr = get_frame_extra_info (frame1)->pc_addr;
920 else if (regnum == I7_REGNUM)
921 addr = get_frame_extra_info (frame1)->fp_addr;
924 CORE_ADDR func_start;
927 regs = alloca (NUM_REGS * sizeof (CORE_ADDR));
928 memset (regs, 0, NUM_REGS * sizeof (CORE_ADDR));
930 find_pc_partial_function (get_frame_pc (frame1), NULL, &func_start, NULL);
931 examine_prologue (func_start, 0, frame1, regs);
937 /* Normal frame. Local and In registers are saved on stack. */
938 if (regnum >= I0_REGNUM && regnum < I0_REGNUM + 8)
939 addr = (get_frame_extra_info (get_prev_frame (frame1))->bottom
940 + (regnum - I0_REGNUM) * SPARC_INTREG_SIZE
942 else if (regnum >= L0_REGNUM && regnum < L0_REGNUM + 8)
943 addr = (get_frame_extra_info (get_prev_frame (frame1))->bottom
944 + (regnum - L0_REGNUM) * SPARC_INTREG_SIZE
946 else if (regnum >= O0_REGNUM && regnum < O0_REGNUM + 8)
948 /* Outs become ins. */
950 frame_register (frame1, (regnum - O0_REGNUM + I0_REGNUM),
951 optimized, lval, addrp, &realnum, raw_buffer);
957 frame1 = get_next_frame (frame1);
963 if (regnum == SP_REGNUM)
965 if (raw_buffer != NULL)
967 /* Put it back in target format. */
968 store_unsigned_integer (raw_buffer, REGISTER_RAW_SIZE (regnum), addr);
974 if (raw_buffer != NULL)
975 read_memory (addr, raw_buffer, REGISTER_RAW_SIZE (regnum));
980 *lval = lval_register;
981 addr = REGISTER_BYTE (regnum);
982 if (raw_buffer != NULL)
983 deprecated_read_register_gen (regnum, raw_buffer);
989 /* Push an empty stack frame, and record in it the current PC, regs, etc.
991 We save the non-windowed registers and the ins. The locals and outs
992 are new; they don't need to be saved. The i's and l's of
993 the last frame were already saved on the stack. */
995 /* Definitely see tm-sparc.h for more doc of the frame format here. */
997 /* See tm-sparc.h for how this is calculated. */
999 #define DUMMY_STACK_REG_BUF_SIZE \
1000 (((8+8+8) * SPARC_INTREG_SIZE) + FP_REGISTER_BYTES)
1001 #define DUMMY_STACK_SIZE \
1002 (DUMMY_STACK_REG_BUF_SIZE + DUMMY_REG_SAVE_OFFSET)
1005 sparc_push_dummy_frame (void)
1007 CORE_ADDR sp, old_sp;
1008 char *register_temp;
1010 register_temp = alloca (DUMMY_STACK_SIZE);
1012 old_sp = sp = read_sp ();
1014 if (GDB_TARGET_IS_SPARC64)
1016 /* PC, NPC, CCR, FSR, FPRS, Y, ASI */
1017 deprecated_read_register_bytes (REGISTER_BYTE (PC_REGNUM),
1019 REGISTER_RAW_SIZE (PC_REGNUM) * 7);
1020 deprecated_read_register_bytes (REGISTER_BYTE (PSTATE_REGNUM),
1021 ®ister_temp[7 * SPARC_INTREG_SIZE],
1022 REGISTER_RAW_SIZE (PSTATE_REGNUM));
1023 /* FIXME: not sure what needs to be saved here. */
1027 /* Y, PS, WIM, TBR, PC, NPC, FPS, CPS regs */
1028 deprecated_read_register_bytes (REGISTER_BYTE (Y_REGNUM),
1030 REGISTER_RAW_SIZE (Y_REGNUM) * 8);
1033 deprecated_read_register_bytes (REGISTER_BYTE (O0_REGNUM),
1034 ®ister_temp[8 * SPARC_INTREG_SIZE],
1035 SPARC_INTREG_SIZE * 8);
1037 deprecated_read_register_bytes (REGISTER_BYTE (G0_REGNUM),
1038 ®ister_temp[16 * SPARC_INTREG_SIZE],
1039 SPARC_INTREG_SIZE * 8);
1042 deprecated_read_register_bytes (REGISTER_BYTE (FP0_REGNUM),
1043 ®ister_temp[24 * SPARC_INTREG_SIZE],
1046 sp -= DUMMY_STACK_SIZE;
1048 DEPRECATED_DUMMY_WRITE_SP (sp);
1050 write_memory (sp + DUMMY_REG_SAVE_OFFSET, ®ister_temp[0],
1051 DUMMY_STACK_REG_BUF_SIZE);
1053 if (strcmp (target_shortname, "sim") != 0)
1055 /* NOTE: cagney/2002-04-04: The code below originally contained
1056 GDB's _only_ call to write_fp(). That call was eliminated by
1057 inlining the corresponding code. For the 64 bit case, the
1058 old function (sparc64_write_fp) did the below although I'm
1059 not clear why. The same goes for why this is only done when
1060 the underlying target is a simulator. */
1061 if (GDB_TARGET_IS_SPARC64)
1063 /* Target is a 64 bit SPARC. */
1064 CORE_ADDR oldfp = read_register (DEPRECATED_FP_REGNUM);
1066 write_register (DEPRECATED_FP_REGNUM, old_sp - 2047);
1068 write_register (DEPRECATED_FP_REGNUM, old_sp);
1072 /* Target is a 32 bit SPARC. */
1073 write_register (DEPRECATED_FP_REGNUM, old_sp);
1075 /* Set return address register for the call dummy to the current PC. */
1076 write_register (I7_REGNUM, read_pc () - 8);
1080 /* The call dummy will write this value to FP before executing
1081 the 'save'. This ensures that register window flushes work
1082 correctly in the simulator. */
1083 write_register (G0_REGNUM + 1, read_register (DEPRECATED_FP_REGNUM));
1085 /* The call dummy will write this value to FP after executing
1087 write_register (G0_REGNUM + 2, old_sp);
1089 /* The call dummy will write this value to the return address (%i7) after
1090 executing the 'save'. */
1091 write_register (G0_REGNUM + 3, read_pc () - 8);
1093 /* Set the FP that the call dummy will be using after the 'save'.
1094 This makes backtraces from an inferior function call work properly. */
1095 write_register (DEPRECATED_FP_REGNUM, old_sp);
1099 /* sparc_frame_find_saved_regs (). This function is here only because
1100 pop_frame uses it. Note there is an interesting corner case which
1101 I think few ports of GDB get right--if you are popping a frame
1102 which does not save some register that *is* saved by a more inner
1103 frame (such a frame will never be a dummy frame because dummy
1104 frames save all registers).
1106 NOTE: cagney/2003-03-12: Since pop_frame has been rewritten to use
1107 frame_unwind_register() the need for this function is questionable.
1109 Stores, into an array of CORE_ADDR,
1110 the addresses of the saved registers of frame described by FRAME_INFO.
1111 This includes special registers such as pc and fp saved in special
1112 ways in the stack frame. sp is even more special:
1113 the address we return for it IS the sp for the next frame.
1115 Note that on register window machines, we are currently making the
1116 assumption that window registers are being saved somewhere in the
1117 frame in which they are being used. If they are stored in an
1118 inferior frame, find_saved_register will break.
1120 On the Sun 4, the only time all registers are saved is when
1121 a dummy frame is involved. Otherwise, the only saved registers
1122 are the LOCAL and IN registers which are saved as a result
1123 of the "save/restore" opcodes. This condition is determined
1124 by address rather than by value.
1126 The "pc" is not stored in a frame on the SPARC. (What is stored
1127 is a return address minus 8.) sparc_pop_frame knows how to
1128 deal with that. Other routines might or might not.
1130 See tm-sparc.h (PUSH_DUMMY_FRAME and friends) for CRITICAL information
1131 about how this works. */
1133 static void sparc_frame_find_saved_regs (struct frame_info *, CORE_ADDR *);
1136 sparc_frame_find_saved_regs (struct frame_info *fi, CORE_ADDR *saved_regs_addr)
1138 register int regnum;
1139 CORE_ADDR frame_addr = get_frame_base (fi);
1141 gdb_assert (fi != NULL);
1143 memset (saved_regs_addr, 0, NUM_REGS * sizeof (CORE_ADDR));
1145 if (get_frame_pc (fi) >= (get_frame_extra_info (fi)->bottom
1146 ? get_frame_extra_info (fi)->bottom
1148 && get_frame_pc (fi) <= get_frame_base (fi))
1150 /* Dummy frame. All but the window regs are in there somewhere. */
1151 for (regnum = G1_REGNUM; regnum < G1_REGNUM + 7; regnum++)
1152 saved_regs_addr[regnum] =
1153 frame_addr + (regnum - G0_REGNUM) * SPARC_INTREG_SIZE
1154 - DUMMY_STACK_REG_BUF_SIZE + 16 * SPARC_INTREG_SIZE;
1156 for (regnum = I0_REGNUM; regnum < I0_REGNUM + 8; regnum++)
1157 saved_regs_addr[regnum] =
1158 frame_addr + (regnum - I0_REGNUM) * SPARC_INTREG_SIZE
1159 - DUMMY_STACK_REG_BUF_SIZE + 8 * SPARC_INTREG_SIZE;
1162 for (regnum = FP0_REGNUM; regnum < FP_MAX_REGNUM; regnum++)
1163 saved_regs_addr[regnum] = frame_addr + (regnum - FP0_REGNUM) * 4
1164 - DUMMY_STACK_REG_BUF_SIZE + 24 * SPARC_INTREG_SIZE;
1166 if (GDB_TARGET_IS_SPARC64)
1168 for (regnum = PC_REGNUM; regnum < PC_REGNUM + 7; regnum++)
1170 saved_regs_addr[regnum] =
1171 frame_addr + (regnum - PC_REGNUM) * SPARC_INTREG_SIZE
1172 - DUMMY_STACK_REG_BUF_SIZE;
1174 saved_regs_addr[PSTATE_REGNUM] =
1175 frame_addr + 8 * SPARC_INTREG_SIZE - DUMMY_STACK_REG_BUF_SIZE;
1178 for (regnum = Y_REGNUM; regnum < NUM_REGS; regnum++)
1179 saved_regs_addr[regnum] =
1180 frame_addr + (regnum - Y_REGNUM) * SPARC_INTREG_SIZE
1181 - DUMMY_STACK_REG_BUF_SIZE;
1183 frame_addr = (get_frame_extra_info (fi)->bottom
1184 ? get_frame_extra_info (fi)->bottom
1187 else if (get_frame_extra_info (fi)->flat)
1189 CORE_ADDR func_start;
1190 find_pc_partial_function (get_frame_pc (fi), NULL, &func_start, NULL);
1191 examine_prologue (func_start, 0, fi, saved_regs_addr);
1193 /* Flat register window frame. */
1194 saved_regs_addr[RP_REGNUM] = get_frame_extra_info (fi)->pc_addr;
1195 saved_regs_addr[I7_REGNUM] = get_frame_extra_info (fi)->fp_addr;
1199 /* Normal frame. Just Local and In registers */
1200 frame_addr = (get_frame_extra_info (fi)->bottom
1201 ? get_frame_extra_info (fi)->bottom
1203 for (regnum = L0_REGNUM; regnum < L0_REGNUM + 8; regnum++)
1204 saved_regs_addr[regnum] =
1205 (frame_addr + (regnum - L0_REGNUM) * SPARC_INTREG_SIZE
1207 for (regnum = I0_REGNUM; regnum < I0_REGNUM + 8; regnum++)
1208 saved_regs_addr[regnum] =
1209 (frame_addr + (regnum - I0_REGNUM) * SPARC_INTREG_SIZE
1212 if (get_next_frame (fi))
1214 if (get_frame_extra_info (fi)->flat)
1216 saved_regs_addr[O7_REGNUM] = get_frame_extra_info (fi)->pc_addr;
1220 /* Pull off either the next frame pointer or the stack pointer */
1221 CORE_ADDR next_next_frame_addr =
1222 (get_frame_extra_info (get_next_frame (fi))->bottom
1223 ? get_frame_extra_info (get_next_frame (fi))->bottom
1225 for (regnum = O0_REGNUM; regnum < O0_REGNUM + 8; regnum++)
1226 saved_regs_addr[regnum] =
1227 (next_next_frame_addr
1228 + (regnum - O0_REGNUM) * SPARC_INTREG_SIZE
1232 /* Otherwise, whatever we would get from ptrace(GETREGS) is accurate */
1233 /* FIXME -- should this adjust for the sparc64 offset? */
1234 saved_regs_addr[SP_REGNUM] = get_frame_base (fi);
1237 /* Discard from the stack the innermost frame, restoring all saved registers.
1239 Note that the values stored in fsr by
1240 deprecated_get_frame_saved_regs are *in the context of the called
1241 frame*. What this means is that the i regs of fsr must be restored
1242 into the o regs of the (calling) frame that we pop into. We don't
1243 care about the output regs of the calling frame, since unless it's
1244 a dummy frame, it won't have any output regs in it.
1246 We never have to bother with %l (local) regs, since the called routine's
1247 locals get tossed, and the calling routine's locals are already saved
1250 /* Definitely see tm-sparc.h for more doc of the frame format here. */
1253 sparc_pop_frame (void)
1255 register struct frame_info *frame = get_current_frame ();
1256 register CORE_ADDR pc;
1261 fsr = alloca (NUM_REGS * sizeof (CORE_ADDR));
1262 raw_buffer = alloca (DEPRECATED_REGISTER_BYTES);
1263 sparc_frame_find_saved_regs (frame, &fsr[0]);
1266 if (fsr[FP0_REGNUM])
1268 read_memory (fsr[FP0_REGNUM], raw_buffer, FP_REGISTER_BYTES);
1269 deprecated_write_register_bytes (REGISTER_BYTE (FP0_REGNUM),
1270 raw_buffer, FP_REGISTER_BYTES);
1272 if (!(GDB_TARGET_IS_SPARC64))
1274 if (fsr[FPS_REGNUM])
1276 read_memory (fsr[FPS_REGNUM], raw_buffer, SPARC_INTREG_SIZE);
1277 deprecated_write_register_gen (FPS_REGNUM, raw_buffer);
1279 if (fsr[CPS_REGNUM])
1281 read_memory (fsr[CPS_REGNUM], raw_buffer, SPARC_INTREG_SIZE);
1282 deprecated_write_register_gen (CPS_REGNUM, raw_buffer);
1288 read_memory (fsr[G1_REGNUM], raw_buffer, 7 * SPARC_INTREG_SIZE);
1289 deprecated_write_register_bytes (REGISTER_BYTE (G1_REGNUM), raw_buffer,
1290 7 * SPARC_INTREG_SIZE);
1293 if (get_frame_extra_info (frame)->flat)
1295 /* Each register might or might not have been saved, need to test
1297 for (regnum = L0_REGNUM; regnum < L0_REGNUM + 8; ++regnum)
1299 write_register (regnum, read_memory_integer (fsr[regnum],
1300 SPARC_INTREG_SIZE));
1301 for (regnum = I0_REGNUM; regnum < I0_REGNUM + 8; ++regnum)
1303 write_register (regnum, read_memory_integer (fsr[regnum],
1304 SPARC_INTREG_SIZE));
1306 /* Handle all outs except stack pointer (o0-o5; o7). */
1307 for (regnum = O0_REGNUM; regnum < O0_REGNUM + 6; ++regnum)
1309 write_register (regnum, read_memory_integer (fsr[regnum],
1310 SPARC_INTREG_SIZE));
1311 if (fsr[O0_REGNUM + 7])
1312 write_register (O0_REGNUM + 7,
1313 read_memory_integer (fsr[O0_REGNUM + 7],
1314 SPARC_INTREG_SIZE));
1316 DEPRECATED_DUMMY_WRITE_SP (get_frame_base (frame));
1318 else if (fsr[I0_REGNUM])
1324 reg_temp = alloca (SPARC_INTREG_SIZE * 16);
1326 read_memory (fsr[I0_REGNUM], raw_buffer, 8 * SPARC_INTREG_SIZE);
1328 /* Get the ins and locals which we are about to restore. Just
1329 moving the stack pointer is all that is really needed, except
1330 store_inferior_registers is then going to write the ins and
1331 locals from the registers array, so we need to muck with the
1333 sp = fsr[SP_REGNUM];
1335 if (GDB_TARGET_IS_SPARC64 && (sp & 1))
1338 read_memory (sp, reg_temp, SPARC_INTREG_SIZE * 16);
1340 /* Restore the out registers.
1341 Among other things this writes the new stack pointer. */
1342 deprecated_write_register_bytes (REGISTER_BYTE (O0_REGNUM), raw_buffer,
1343 SPARC_INTREG_SIZE * 8);
1345 deprecated_write_register_bytes (REGISTER_BYTE (L0_REGNUM), reg_temp,
1346 SPARC_INTREG_SIZE * 16);
1349 if (!(GDB_TARGET_IS_SPARC64))
1351 write_register (PS_REGNUM,
1352 read_memory_integer (fsr[PS_REGNUM],
1353 REGISTER_RAW_SIZE (PS_REGNUM)));
1356 write_register (Y_REGNUM,
1357 read_memory_integer (fsr[Y_REGNUM],
1358 REGISTER_RAW_SIZE (Y_REGNUM)));
1361 /* Explicitly specified PC (and maybe NPC) -- just restore them. */
1362 write_register (PC_REGNUM,
1363 read_memory_integer (fsr[PC_REGNUM],
1364 REGISTER_RAW_SIZE (PC_REGNUM)));
1365 if (fsr[NPC_REGNUM])
1366 write_register (NPC_REGNUM,
1367 read_memory_integer (fsr[NPC_REGNUM],
1368 REGISTER_RAW_SIZE (NPC_REGNUM)));
1370 else if (get_frame_extra_info (frame)->flat)
1372 if (get_frame_extra_info (frame)->pc_addr)
1373 pc = PC_ADJUST ((CORE_ADDR)
1374 read_memory_integer (get_frame_extra_info (frame)->pc_addr,
1375 REGISTER_RAW_SIZE (PC_REGNUM)));
1378 /* I think this happens only in the innermost frame, if so then
1379 it is a complicated way of saying
1380 "pc = read_register (O7_REGNUM);". */
1382 frame_read_unsigned_register (frame, O7_REGNUM, &tmp);
1383 pc = PC_ADJUST (tmp);
1386 write_register (PC_REGNUM, pc);
1387 write_register (NPC_REGNUM, pc + 4);
1389 else if (fsr[I7_REGNUM])
1391 /* Return address in %i7 -- adjust it, then restore PC and NPC from it */
1392 pc = PC_ADJUST ((CORE_ADDR) read_memory_integer (fsr[I7_REGNUM],
1393 SPARC_INTREG_SIZE));
1394 write_register (PC_REGNUM, pc);
1395 write_register (NPC_REGNUM, pc + 4);
1397 flush_cached_frames ();
1400 /* On the Sun 4 under SunOS, the compile will leave a fake insn which
1401 encodes the structure size being returned. If we detect such
1402 a fake insn, step past it. */
1405 sparc_pc_adjust (CORE_ADDR pc)
1411 err = target_read_memory (pc + 8, buf, 4);
1412 insn = extract_unsigned_integer (buf, 4);
1413 if ((err == 0) && (insn & 0xffc00000) == 0)
1419 /* If pc is in a shared library trampoline, return its target.
1420 The SunOs 4.x linker rewrites the jump table entries for PIC
1421 compiled modules in the main executable to bypass the dynamic linker
1422 with jumps of the form
1425 and removes the corresponding jump table relocation entry in the
1426 dynamic relocations.
1427 find_solib_trampoline_target relies on the presence of the jump
1428 table relocation entry, so we have to detect these jump instructions
1432 sunos4_skip_trampoline_code (CORE_ADDR pc)
1434 unsigned long insn1;
1438 err = target_read_memory (pc, buf, 4);
1439 insn1 = extract_unsigned_integer (buf, 4);
1440 if (err == 0 && (insn1 & 0xffc00000) == 0x03000000)
1442 unsigned long insn2;
1444 err = target_read_memory (pc + 4, buf, 4);
1445 insn2 = extract_unsigned_integer (buf, 4);
1446 if (err == 0 && (insn2 & 0xffffe000) == 0x81c06000)
1448 CORE_ADDR target_pc = (insn1 & 0x3fffff) << 10;
1449 int delta = insn2 & 0x1fff;
1451 /* Sign extend the displacement. */
1454 return target_pc + delta;
1457 return find_solib_trampoline_target (pc);
1460 #ifdef USE_PROC_FS /* Target dependent support for /proc */
1462 /* The /proc interface divides the target machine's register set up into
1463 two different sets, the general register set (gregset) and the floating
1464 point register set (fpregset). For each set, there is an ioctl to get
1465 the current register set and another ioctl to set the current values.
1467 The actual structure passed through the ioctl interface is, of course,
1468 naturally machine dependent, and is different for each set of registers.
1469 For the sparc for example, the general register set is typically defined
1472 typedef int gregset_t[38];
1478 and the floating point set by:
1480 typedef struct prfpregset {
1483 double pr_dregs[16];
1488 u_char pr_q_entrysize;
1493 These routines provide the packing and unpacking of gregset_t and
1494 fpregset_t formatted data.
1499 /* Given a pointer to a general register set in /proc format (gregset_t *),
1500 unpack the register contents and supply them as gdb's idea of the current
1504 supply_gregset (gdb_gregset_t *gregsetp)
1506 prgreg_t *regp = (prgreg_t *) gregsetp;
1507 int regi, offset = 0;
1509 /* If the host is 64-bit sparc, but the target is 32-bit sparc,
1510 then the gregset may contain 64-bit ints while supply_register
1511 is expecting 32-bit ints. Compensate. */
1512 if (sizeof (regp[0]) == 8 && SPARC_INTREG_SIZE == 4)
1515 /* GDB register numbers for Gn, On, Ln, In all match /proc reg numbers. */
1516 /* FIXME MVS: assumes the order of the first 32 elements... */
1517 for (regi = G0_REGNUM; regi <= I7_REGNUM; regi++)
1519 supply_register (regi, ((char *) (regp + regi)) + offset);
1522 /* These require a bit more care. */
1523 supply_register (PC_REGNUM, ((char *) (regp + R_PC)) + offset);
1524 supply_register (NPC_REGNUM, ((char *) (regp + R_nPC)) + offset);
1525 supply_register (Y_REGNUM, ((char *) (regp + R_Y)) + offset);
1527 if (GDB_TARGET_IS_SPARC64)
1530 supply_register (CCR_REGNUM, ((char *) (regp + R_CCR)) + offset);
1532 supply_register (CCR_REGNUM, NULL);
1535 supply_register (FPRS_REGNUM, ((char *) (regp + R_FPRS)) + offset);
1537 supply_register (FPRS_REGNUM, NULL);
1540 supply_register (ASI_REGNUM, ((char *) (regp + R_ASI)) + offset);
1542 supply_register (ASI_REGNUM, NULL);
1548 supply_register (PS_REGNUM, ((char *) (regp + R_PS)) + offset);
1550 supply_register (PS_REGNUM, NULL);
1553 /* For 64-bit hosts, R_WIM and R_TBR may not be defined.
1554 Steal R_ASI and R_FPRS, and hope for the best! */
1556 #if !defined (R_WIM) && defined (R_ASI)
1560 #if !defined (R_TBR) && defined (R_FPRS)
1561 #define R_TBR R_FPRS
1565 supply_register (WIM_REGNUM, ((char *) (regp + R_WIM)) + offset);
1567 supply_register (WIM_REGNUM, NULL);
1571 supply_register (TBR_REGNUM, ((char *) (regp + R_TBR)) + offset);
1573 supply_register (TBR_REGNUM, NULL);
1577 /* Fill inaccessible registers with zero. */
1578 if (GDB_TARGET_IS_SPARC64)
1581 * don't know how to get value of any of the following:
1583 supply_register (VER_REGNUM, NULL);
1584 supply_register (TICK_REGNUM, NULL);
1585 supply_register (PIL_REGNUM, NULL);
1586 supply_register (PSTATE_REGNUM, NULL);
1587 supply_register (TSTATE_REGNUM, NULL);
1588 supply_register (TBA_REGNUM, NULL);
1589 supply_register (TL_REGNUM, NULL);
1590 supply_register (TT_REGNUM, NULL);
1591 supply_register (TPC_REGNUM, NULL);
1592 supply_register (TNPC_REGNUM, NULL);
1593 supply_register (WSTATE_REGNUM, NULL);
1594 supply_register (CWP_REGNUM, NULL);
1595 supply_register (CANSAVE_REGNUM, NULL);
1596 supply_register (CANRESTORE_REGNUM, NULL);
1597 supply_register (CLEANWIN_REGNUM, NULL);
1598 supply_register (OTHERWIN_REGNUM, NULL);
1599 supply_register (ASR16_REGNUM, NULL);
1600 supply_register (ASR17_REGNUM, NULL);
1601 supply_register (ASR18_REGNUM, NULL);
1602 supply_register (ASR19_REGNUM, NULL);
1603 supply_register (ASR20_REGNUM, NULL);
1604 supply_register (ASR21_REGNUM, NULL);
1605 supply_register (ASR22_REGNUM, NULL);
1606 supply_register (ASR23_REGNUM, NULL);
1607 supply_register (ASR24_REGNUM, NULL);
1608 supply_register (ASR25_REGNUM, NULL);
1609 supply_register (ASR26_REGNUM, NULL);
1610 supply_register (ASR27_REGNUM, NULL);
1611 supply_register (ASR28_REGNUM, NULL);
1612 supply_register (ASR29_REGNUM, NULL);
1613 supply_register (ASR30_REGNUM, NULL);
1614 supply_register (ASR31_REGNUM, NULL);
1615 supply_register (ICC_REGNUM, NULL);
1616 supply_register (XCC_REGNUM, NULL);
1620 supply_register (CPS_REGNUM, NULL);
1625 fill_gregset (gdb_gregset_t *gregsetp, int regno)
1627 prgreg_t *regp = (prgreg_t *) gregsetp;
1628 int regi, offset = 0;
1630 /* If the host is 64-bit sparc, but the target is 32-bit sparc,
1631 then the gregset may contain 64-bit ints while supply_register
1632 is expecting 32-bit ints. Compensate. */
1633 if (sizeof (regp[0]) == 8 && SPARC_INTREG_SIZE == 4)
1636 for (regi = 0; regi <= R_I7; regi++)
1637 if ((regno == -1) || (regno == regi))
1638 deprecated_read_register_gen (regi, (char *) (regp + regi) + offset);
1640 if ((regno == -1) || (regno == PC_REGNUM))
1641 deprecated_read_register_gen (PC_REGNUM, (char *) (regp + R_PC) + offset);
1643 if ((regno == -1) || (regno == NPC_REGNUM))
1644 deprecated_read_register_gen (NPC_REGNUM, (char *) (regp + R_nPC) + offset);
1646 if ((regno == -1) || (regno == Y_REGNUM))
1647 deprecated_read_register_gen (Y_REGNUM, (char *) (regp + R_Y) + offset);
1649 if (GDB_TARGET_IS_SPARC64)
1652 if (regno == -1 || regno == CCR_REGNUM)
1653 deprecated_read_register_gen (CCR_REGNUM, ((char *) (regp + R_CCR)) + offset);
1656 if (regno == -1 || regno == FPRS_REGNUM)
1657 deprecated_read_register_gen (FPRS_REGNUM, ((char *) (regp + R_FPRS)) + offset);
1660 if (regno == -1 || regno == ASI_REGNUM)
1661 deprecated_read_register_gen (ASI_REGNUM, ((char *) (regp + R_ASI)) + offset);
1667 if (regno == -1 || regno == PS_REGNUM)
1668 deprecated_read_register_gen (PS_REGNUM, ((char *) (regp + R_PS)) + offset);
1671 /* For 64-bit hosts, R_WIM and R_TBR may not be defined.
1672 Steal R_ASI and R_FPRS, and hope for the best! */
1674 #if !defined (R_WIM) && defined (R_ASI)
1678 #if !defined (R_TBR) && defined (R_FPRS)
1679 #define R_TBR R_FPRS
1683 if (regno == -1 || regno == WIM_REGNUM)
1684 deprecated_read_register_gen (WIM_REGNUM, ((char *) (regp + R_WIM)) + offset);
1686 if (regno == -1 || regno == WIM_REGNUM)
1687 deprecated_read_register_gen (WIM_REGNUM, NULL);
1691 if (regno == -1 || regno == TBR_REGNUM)
1692 deprecated_read_register_gen (TBR_REGNUM, ((char *) (regp + R_TBR)) + offset);
1694 if (regno == -1 || regno == TBR_REGNUM)
1695 deprecated_read_register_gen (TBR_REGNUM, NULL);
1700 /* Given a pointer to a floating point register set in /proc format
1701 (fpregset_t *), unpack the register contents and supply them as gdb's
1702 idea of the current floating point register values. */
1705 supply_fpregset (gdb_fpregset_t *fpregsetp)
1713 for (regi = FP0_REGNUM; regi < FP_MAX_REGNUM; regi++)
1715 from = (char *) &fpregsetp->pr_fr.pr_regs[regi - FP0_REGNUM];
1716 supply_register (regi, from);
1719 if (GDB_TARGET_IS_SPARC64)
1722 * don't know how to get value of the following.
1724 supply_register (FSR_REGNUM, NULL); /* zero it out for now */
1725 supply_register (FCC0_REGNUM, NULL);
1726 supply_register (FCC1_REGNUM, NULL); /* don't know how to get value */
1727 supply_register (FCC2_REGNUM, NULL); /* don't know how to get value */
1728 supply_register (FCC3_REGNUM, NULL); /* don't know how to get value */
1732 supply_register (FPS_REGNUM, (char *) &(fpregsetp->pr_fsr));
1736 /* Given a pointer to a floating point register set in /proc format
1737 (fpregset_t *), update the register specified by REGNO from gdb's idea
1738 of the current floating point register set. If REGNO is -1, update
1740 /* This will probably need some changes for sparc64. */
1743 fill_fpregset (gdb_fpregset_t *fpregsetp, int regno)
1752 for (regi = FP0_REGNUM; regi < FP_MAX_REGNUM; regi++)
1754 if ((regno == -1) || (regno == regi))
1756 from = (char *) &deprecated_registers[REGISTER_BYTE (regi)];
1757 to = (char *) &fpregsetp->pr_fr.pr_regs[regi - FP0_REGNUM];
1758 memcpy (to, from, REGISTER_RAW_SIZE (regi));
1762 if (!(GDB_TARGET_IS_SPARC64)) /* FIXME: does Sparc64 have this register? */
1763 if ((regno == -1) || (regno == FPS_REGNUM))
1765 from = (char *)&deprecated_registers[REGISTER_BYTE (FPS_REGNUM)];
1766 to = (char *) &fpregsetp->pr_fsr;
1767 memcpy (to, from, REGISTER_RAW_SIZE (FPS_REGNUM));
1771 #endif /* USE_PROC_FS */
1773 /* Because of Multi-arch, GET_LONGJMP_TARGET is always defined. So test
1774 for a definition of JB_PC. */
1777 /* Figure out where the longjmp will land. We expect that we have just entered
1778 longjmp and haven't yet setup the stack frame, so the args are still in the
1779 output regs. %o0 (O0_REGNUM) points at the jmp_buf structure from which we
1780 extract the pc (JB_PC) that we will land at. The pc is copied into ADDR.
1781 This routine returns true on success */
1784 get_longjmp_target (CORE_ADDR *pc)
1787 #define LONGJMP_TARGET_SIZE 4
1788 char buf[LONGJMP_TARGET_SIZE];
1790 jb_addr = read_register (O0_REGNUM);
1792 if (target_read_memory (jb_addr + JB_PC * JB_ELEMENT_SIZE, buf,
1793 LONGJMP_TARGET_SIZE))
1796 *pc = extract_unsigned_integer (buf, LONGJMP_TARGET_SIZE);
1800 #endif /* GET_LONGJMP_TARGET */
1802 #ifdef STATIC_TRANSFORM_NAME
1803 /* SunPRO (3.0 at least), encodes the static variables. This is not
1804 related to C++ mangling, it is done for C too. */
1807 sunpro_static_transform_name (char *name)
1812 /* For file-local statics there will be a dollar sign, a bunch
1813 of junk (the contents of which match a string given in the
1814 N_OPT), a period and the name. For function-local statics
1815 there will be a bunch of junk (which seems to change the
1816 second character from 'A' to 'B'), a period, the name of the
1817 function, and the name. So just skip everything before the
1819 p = strrchr (name, '.');
1825 #endif /* STATIC_TRANSFORM_NAME */
1828 /* Utilities for printing registers.
1829 Page numbers refer to the SPARC Architecture Manual. */
1831 static void dump_ccreg (char *, int);
1834 dump_ccreg (char *reg, int val)
1837 printf_unfiltered ("%s:%s,%s,%s,%s", reg,
1838 val & 8 ? "N" : "NN",
1839 val & 4 ? "Z" : "NZ",
1840 val & 2 ? "O" : "NO",
1841 val & 1 ? "C" : "NC");
1845 decode_asi (int val)
1851 return "ASI_NUCLEUS";
1853 return "ASI_NUCLEUS_LITTLE";
1855 return "ASI_AS_IF_USER_PRIMARY";
1857 return "ASI_AS_IF_USER_SECONDARY";
1859 return "ASI_AS_IF_USER_PRIMARY_LITTLE";
1861 return "ASI_AS_IF_USER_SECONDARY_LITTLE";
1863 return "ASI_PRIMARY";
1865 return "ASI_SECONDARY";
1867 return "ASI_PRIMARY_NOFAULT";
1869 return "ASI_SECONDARY_NOFAULT";
1871 return "ASI_PRIMARY_LITTLE";
1873 return "ASI_SECONDARY_LITTLE";
1875 return "ASI_PRIMARY_NOFAULT_LITTLE";
1877 return "ASI_SECONDARY_NOFAULT_LITTLE";
1883 /* Pretty print various registers. */
1884 /* FIXME: Would be nice if this did some fancy things for 32 bit sparc. */
1887 sparc_print_register_hook (int regno)
1891 /* Handle double/quad versions of lower 32 fp regs. */
1892 if (regno >= FP0_REGNUM && regno < FP0_REGNUM + 32
1893 && (regno & 1) == 0)
1897 if (frame_register_read (deprecated_selected_frame, regno, value)
1898 && frame_register_read (deprecated_selected_frame, regno + 1, value + 4))
1900 printf_unfiltered ("\t");
1901 print_floating (value, builtin_type_double, gdb_stdout);
1903 #if 0 /* FIXME: gdb doesn't handle long doubles */
1904 if ((regno & 3) == 0)
1906 if (frame_register_read (deprecated_selected_frame, regno + 2, value + 8)
1907 && frame_register_read (deprecated_selected_frame, regno + 3, value + 12))
1909 printf_unfiltered ("\t");
1910 print_floating (value, builtin_type_long_double, gdb_stdout);
1917 #if 0 /* FIXME: gdb doesn't handle long doubles */
1918 /* Print upper fp regs as long double if appropriate. */
1919 if (regno >= FP0_REGNUM + 32 && regno < FP_MAX_REGNUM
1920 /* We test for even numbered regs and not a multiple of 4 because
1921 the upper fp regs are recorded as doubles. */
1922 && (regno & 1) == 0)
1926 if (frame_register_read (deprecated_selected_frame, regno, value)
1927 && frame_register_read (deprecated_selected_frame, regno + 1, value + 8))
1929 printf_unfiltered ("\t");
1930 print_floating (value, builtin_type_long_double, gdb_stdout);
1936 /* FIXME: Some of these are priviledged registers.
1937 Not sure how they should be handled. */
1939 #define BITS(n, mask) ((int) (((val) >> (n)) & (mask)))
1941 val = read_register (regno);
1944 if (GDB_TARGET_IS_SPARC64)
1948 printf_unfiltered ("\t");
1949 dump_ccreg ("xcc", val >> 4);
1950 printf_unfiltered (", ");
1951 dump_ccreg ("icc", val & 15);
1954 printf ("\tfef:%d, du:%d, dl:%d",
1955 BITS (2, 1), BITS (1, 1), BITS (0, 1));
1959 static char *fcc[4] =
1960 {"=", "<", ">", "?"};
1961 static char *rd[4] =
1962 {"N", "0", "+", "-"};
1963 /* Long, but I'd rather leave it as is and use a wide screen. */
1964 printf_filtered ("\t0:%s, 1:%s, 2:%s, 3:%s, rd:%s, tem:%d, ",
1965 fcc[BITS (10, 3)], fcc[BITS (32, 3)],
1966 fcc[BITS (34, 3)], fcc[BITS (36, 3)],
1967 rd[BITS (30, 3)], BITS (23, 31));
1968 printf_filtered ("ns:%d, ver:%d, ftt:%d, qne:%d, aexc:%d, cexc:%d",
1969 BITS (22, 1), BITS (17, 7), BITS (14, 7),
1970 BITS (13, 1), BITS (5, 31), BITS (0, 31));
1975 char *asi = decode_asi (val);
1977 printf ("\t%s", asi);
1981 printf ("\tmanuf:%d, impl:%d, mask:%d, maxtl:%d, maxwin:%d",
1982 BITS (48, 0xffff), BITS (32, 0xffff),
1983 BITS (24, 0xff), BITS (8, 0xff), BITS (0, 31));
1987 static char *mm[4] =
1988 {"tso", "pso", "rso", "?"};
1989 printf_filtered ("\tcle:%d, tle:%d, mm:%s, red:%d, ",
1990 BITS (9, 1), BITS (8, 1),
1991 mm[BITS (6, 3)], BITS (5, 1));
1992 printf_filtered ("pef:%d, am:%d, priv:%d, ie:%d, ag:%d",
1993 BITS (4, 1), BITS (3, 1), BITS (2, 1),
1994 BITS (1, 1), BITS (0, 1));
1998 /* FIXME: print all 4? */
2001 /* FIXME: print all 4? */
2004 /* FIXME: print all 4? */
2007 /* FIXME: print all 4? */
2010 printf ("\tother:%d, normal:%d", BITS (3, 7), BITS (0, 7));
2013 printf ("\t%d", BITS (0, 31));
2015 case CANSAVE_REGNUM:
2016 printf ("\t%-2d before spill", BITS (0, 31));
2018 case CANRESTORE_REGNUM:
2019 printf ("\t%-2d before fill", BITS (0, 31));
2021 case CLEANWIN_REGNUM:
2022 printf ("\t%-2d before clean", BITS (0, 31));
2024 case OTHERWIN_REGNUM:
2025 printf ("\t%d", BITS (0, 31));
2032 printf ("\ticc:%c%c%c%c, pil:%d, s:%d, ps:%d, et:%d, cwp:%d",
2033 BITS (23, 1) ? 'N' : '-', BITS (22, 1) ? 'Z' : '-',
2034 BITS (21, 1) ? 'V' : '-', BITS (20, 1) ? 'C' : '-',
2035 BITS (8, 15), BITS (7, 1), BITS (6, 1), BITS (5, 1),
2040 static char *fcc[4] =
2041 {"=", "<", ">", "?"};
2042 static char *rd[4] =
2043 {"N", "0", "+", "-"};
2044 /* Long, but I'd rather leave it as is and use a wide screen. */
2045 printf ("\trd:%s, tem:%d, ns:%d, ver:%d, ftt:%d, qne:%d, "
2046 "fcc:%s, aexc:%d, cexc:%d",
2047 rd[BITS (30, 3)], BITS (23, 31), BITS (22, 1), BITS (17, 7),
2048 BITS (14, 7), BITS (13, 1), fcc[BITS (10, 3)], BITS (5, 31),
2058 sparc_print_registers (struct gdbarch *gdbarch,
2059 struct ui_file *file,
2060 struct frame_info *frame,
2061 int regnum, int print_all,
2062 void (*print_register_hook) (int))
2065 const int numregs = NUM_REGS + NUM_PSEUDO_REGS;
2066 char raw_buffer[MAX_REGISTER_SIZE];
2067 char virtual_buffer[MAX_REGISTER_SIZE];
2069 for (i = 0; i < numregs; i++)
2071 /* Decide between printing all regs, non-float / vector regs, or
2077 if (TYPE_CODE (REGISTER_VIRTUAL_TYPE (i)) == TYPE_CODE_FLT)
2079 if (TYPE_VECTOR (REGISTER_VIRTUAL_TYPE (i)))
2089 /* If the register name is empty, it is undefined for this
2090 processor, so don't display anything. */
2091 if (REGISTER_NAME (i) == NULL || *(REGISTER_NAME (i)) == '\0')
2094 fputs_filtered (REGISTER_NAME (i), file);
2095 print_spaces_filtered (15 - strlen (REGISTER_NAME (i)), file);
2097 /* Get the data in raw format. */
2098 if (! frame_register_read (frame, i, raw_buffer))
2100 fprintf_filtered (file, "*value not available*\n");
2104 memcpy (virtual_buffer, raw_buffer, REGISTER_VIRTUAL_SIZE (i));
2106 /* If virtual format is floating, print it that way, and in raw
2108 if (TYPE_CODE (REGISTER_VIRTUAL_TYPE (i)) == TYPE_CODE_FLT)
2112 val_print (REGISTER_VIRTUAL_TYPE (i), virtual_buffer, 0, 0,
2113 file, 0, 1, 0, Val_pretty_default);
2115 fprintf_filtered (file, "\t(raw 0x");
2116 for (j = 0; j < REGISTER_RAW_SIZE (i); j++)
2119 if (TARGET_BYTE_ORDER == BFD_ENDIAN_BIG)
2122 idx = REGISTER_RAW_SIZE (i) - 1 - j;
2123 fprintf_filtered (file, "%02x", (unsigned char) raw_buffer[idx]);
2125 fprintf_filtered (file, ")");
2129 /* Print the register in hex. */
2130 val_print (REGISTER_VIRTUAL_TYPE (i), virtual_buffer, 0, 0,
2131 file, 'x', 1, 0, Val_pretty_default);
2132 /* If not a vector register, print it also according to its
2134 if (TYPE_VECTOR (REGISTER_VIRTUAL_TYPE (i)) == 0)
2136 fprintf_filtered (file, "\t");
2137 val_print (REGISTER_VIRTUAL_TYPE (i), virtual_buffer, 0, 0,
2138 file, 0, 1, 0, Val_pretty_default);
2142 /* Some sparc specific info. */
2143 if (print_register_hook != NULL)
2144 print_register_hook (i);
2146 fprintf_filtered (file, "\n");
2151 sparc_print_registers_info (struct gdbarch *gdbarch,
2152 struct ui_file *file,
2153 struct frame_info *frame,
2154 int regnum, int print_all)
2156 sparc_print_registers (gdbarch, file, frame, regnum, print_all,
2157 sparc_print_register_hook);
2161 sparc_do_registers_info (int regnum, int all)
2163 sparc_print_registers_info (current_gdbarch, gdb_stdout, deprecated_selected_frame,
2168 // OBSOLETE static void
2169 // OBSOLETE sparclet_print_registers_info (struct gdbarch *gdbarch,
2170 // OBSOLETE struct ui_file *file,
2171 // OBSOLETE struct frame_info *frame,
2172 // OBSOLETE int regnum, int print_all)
2174 // OBSOLETE sparc_print_registers (gdbarch, file, frame, regnum, print_all, NULL);
2178 // OBSOLETE sparclet_do_registers_info (int regnum, int all)
2180 // OBSOLETE sparclet_print_registers_info (current_gdbarch, gdb_stdout,
2181 // OBSOLETE deprecated_selected_frame, regnum, all);
2187 gdb_print_insn_sparc (bfd_vma memaddr, disassemble_info *info)
2189 /* It's necessary to override mach again because print_insn messes it up. */
2190 info->mach = TARGET_ARCHITECTURE->mach;
2191 return print_insn_sparc (memaddr, info);
2195 #define SPARC_F0_REGNUM FP0_REGNUM /* %f0 */
2196 #define SPARC_F1_REGNUM (FP0_REGNUM + 1)/* %f1 */
2197 #define SPARC_O0_REGNUM O0_REGNUM /* %o0 */
2198 #define SPARC_O1_REGNUM O1_REGNUM /* %o1 */
2200 /* Push the arguments onto the stack and into the appropriate registers. */
2203 sparc32_do_push_arguments (struct regcache *regcache, int nargs,
2204 struct value **args, CORE_ADDR sp)
2210 /* Structure, union and quad-precision arguments are passed by
2211 reference. We allocate space for these arguments on the stack
2212 and record their addresses in an array. Array elements for
2213 arguments that are passed by value will be set to zero.*/
2214 addr = alloca (nargs * sizeof (CORE_ADDR));
2216 for (i = nargs - 1; i >= 0; i--)
2218 struct type *type = VALUE_ENCLOSING_TYPE (args[i]);
2219 enum type_code code = TYPE_CODE (type);
2220 int len = TYPE_LENGTH (type);
2222 /* Push the contents of structure, union and quad-precision
2223 arguments on the stack. */
2224 if (code == TYPE_CODE_STRUCT || code == TYPE_CODE_UNION || len > 8)
2226 /* Keep the stack doubleword aligned. */
2227 sp -= (len + 7) & ~7;
2228 write_memory (sp, VALUE_CONTENTS_ALL (args[i]), len);
2235 size += (len > 4) ? 8 : 4;
2239 /* The needed space for outgoing arguments should be a multiple of 4. */
2240 gdb_assert (size % 4 == 0);
2242 /* Make sure we reserve space for the first six words of arguments
2243 in the stack frame, even if we don't need them. */
2247 /* Make sure we end up with a doubleword aligned stack in the end.
2248 Reserve an extra word if necessary in order to accomplish this. */
2249 if ((sp - size) % 8 == 0)
2252 /* Now push the arguments onto the stack. */
2253 for (i = nargs - 1; i >=0; i--)
2260 store_unsigned_integer (buf, 4, addr[i]);
2265 struct value *arg = args[i];
2267 len = TYPE_LENGTH (VALUE_ENCLOSING_TYPE (arg));
2269 /* Expand signed and unsigned bytes and halfwords as needed. */
2272 arg = value_cast (builtin_type_long, arg);
2275 else if (len > 4 && len < 8)
2277 arg = value_cast (builtin_type_long_long, arg);
2281 gdb_assert (len == 4 || len == 8);
2282 memcpy (buf, VALUE_CONTENTS_ALL (arg), len);
2285 /* We always write the argument word on the stack. */
2287 write_memory (sp, buf, len);
2289 /* If this argument occupies one of the first 6 words, write it
2290 into the appropriate register too. */
2294 int regnum = SPARC_O0_REGNUM + (size / 4);
2296 regcache_cooked_write (regcache, regnum, buf);
2297 if (len == 8 && size < 20)
2298 regcache_cooked_write (regcache, regnum + 1, buf + 4);
2302 /* Reserve space for the struct/union return value pointer. */
2305 /* Stack should be doubleword aligned at this point. */
2306 gdb_assert (sp % 8 == 0);
2308 /* Return the adjusted stack pointer. */
2312 /* The SPARC passes the arguments on the stack; arguments smaller
2313 than an int are promoted to an int. The first 6 words worth of
2314 args are also passed in registers o0 - o5. */
2317 sparc32_push_arguments (int nargs, struct value **args, CORE_ADDR sp,
2318 int struct_return, CORE_ADDR struct_addr)
2320 sp = sparc32_do_push_arguments (current_regcache, nargs, args, sp);
2322 /* FIXME: kettenis/20030525: We don't let this function set the
2323 struct/union return pointer just yet. */
2329 /* The space for the struct/union return value pointer has
2330 already been reserved. */
2331 store_unsigned_integer (buf, 4, struct_addr);
2341 /* Extract from REGCACHE a function return value of type TYPE and copy
2344 Note that REGCACHE specifies the register values for the frame of
2345 the calling function. This means that we need to fetch the value
2346 form %o0 and %o1, which correspond to %i0 and %i1 in the frame of
2347 the called function. */
2350 sparc32_extract_return_value (struct type *type, struct regcache *regcache,
2353 int len = TYPE_LENGTH (type);
2356 if (TYPE_CODE (type) == TYPE_CODE_FLT && SPARC_HAS_FPU)
2358 if (len == 4 || len == 8)
2360 regcache_cooked_read (regcache, SPARC_F0_REGNUM, buf);
2361 regcache_cooked_read (regcache, SPARC_F1_REGNUM, buf + 4);
2362 memcpy (valbuf, buf, len);
2366 internal_error (__FILE__, __LINE__, "\
2367 Cannot extract floating-point return value of %d bytes long.", len);
2372 regcache_cooked_read (regcache, SPARC_O0_REGNUM, buf);
2373 memcpy (valbuf, buf + 4 - len, len);
2377 regcache_cooked_read (regcache, SPARC_O0_REGNUM, buf);
2378 regcache_cooked_read (regcache, SPARC_O1_REGNUM, buf + 4);
2379 memcpy (valbuf, buf + 8 - len, len);
2382 internal_error (__FILE__, __LINE__,
2383 "Cannot extract return value of %d bytes long.", len);
2386 /* Write into REGBUF a function return value VALBUF of type TYPE. */
2389 sparc32_store_return_value (struct type *type, struct regcache *regcache,
2392 int len = TYPE_LENGTH (type);
2395 if (TYPE_CODE (type) == TYPE_CODE_FLT && SPARC_HAS_FPU)
2397 const char *buf = valbuf;
2401 regcache_cooked_write (regcache, SPARC_F0_REGNUM, buf);
2406 regcache_cooked_write (regcache, SPARC_F0_REGNUM, buf);
2407 regcache_cooked_write (regcache, SPARC_F1_REGNUM, buf + 4);
2411 internal_error (__FILE__, __LINE__, "\
2412 Cannot extract floating-point return value of %d bytes long.", len);
2415 /* Add leading zeros to the value. */
2416 memset (buf, 0, sizeof buf);
2420 memcpy (buf + 4 - len, valbuf, len);
2421 regcache_cooked_write (regcache, SPARC_O0_REGNUM, buf);
2425 memcpy (buf + 8 - len, valbuf, len);
2426 regcache_cooked_write (regcache, SPARC_O0_REGNUM, buf);
2427 regcache_cooked_write (regcache, SPARC_O1_REGNUM, buf);
2430 internal_error (__FILE__, __LINE__,
2431 "Cannot extract return value of %d bytes long.", len);
2434 /* Extract from REGCACHE the address in which a function should return
2435 its structure value. */
2438 sparc_extract_struct_value_address (struct regcache *regcache)
2442 regcache_cooked_read_unsigned (regcache, SPARC_O0_REGNUM, &addr);
2446 /* FIXME: kettenis/2003/05/24: Still used for sparc64. */
2449 sparc_store_return_value (struct type *type, char *valbuf)
2452 char buffer[MAX_REGISTER_SIZE];
2454 if (TYPE_CODE (type) == TYPE_CODE_FLT && SPARC_HAS_FPU)
2455 /* Floating-point values are returned in the register pair */
2456 /* formed by %f0 and %f1 (doubles are, anyway). */
2459 /* Other values are returned in register %o0. */
2462 /* Add leading zeros to the value. */
2463 if (TYPE_LENGTH (type) < REGISTER_RAW_SIZE (regno))
2465 memset (buffer, 0, REGISTER_RAW_SIZE (regno));
2466 memcpy (buffer + REGISTER_RAW_SIZE (regno) - TYPE_LENGTH (type), valbuf,
2467 TYPE_LENGTH (type));
2468 deprecated_write_register_gen (regno, buffer);
2471 deprecated_write_register_bytes (REGISTER_BYTE (regno), valbuf,
2472 TYPE_LENGTH (type));
2476 // OBSOLETE extern void
2477 // OBSOLETE sparclet_store_return_value (struct type *type, char *valbuf)
2479 // OBSOLETE /* Other values are returned in register %o0. */
2480 // OBSOLETE deprecated_write_register_bytes (REGISTER_BYTE (O0_REGNUM), valbuf,
2481 // OBSOLETE TYPE_LENGTH (type));
2486 #ifndef CALL_DUMMY_CALL_OFFSET
2487 #define CALL_DUMMY_CALL_OFFSET \
2488 (gdbarch_tdep (current_gdbarch)->call_dummy_call_offset)
2489 #endif /* CALL_DUMMY_CALL_OFFSET */
2491 /* Insert the function address into a call dummy instruction sequence
2494 For structs and unions, if the function was compiled with Sun cc,
2495 it expects 'unimp' after the call. But gcc doesn't use that
2496 (twisted) convention. So leave a nop there for gcc
2497 (DEPRECATED_FIX_CALL_DUMMY can assume it is operating on a pristine
2498 CALL_DUMMY, not one that has already been customized for a
2499 different function). */
2502 sparc_fix_call_dummy (char *dummy, CORE_ADDR pc, CORE_ADDR fun,
2503 struct type *value_type, int using_gcc)
2507 /* Store the relative adddress of the target function into the
2508 'call' instruction. */
2509 store_unsigned_integer (dummy + CALL_DUMMY_CALL_OFFSET, 4,
2511 | (((fun - (pc + CALL_DUMMY_CALL_OFFSET)) >> 2)
2514 /* If the called function returns an aggregate value, fill in the UNIMP
2515 instruction containing the size of the returned aggregate return value,
2516 which follows the call instruction.
2517 For details see the SPARC Architecture Manual Version 8, Appendix D.3.
2519 Adjust the call_dummy_breakpoint_offset for the bp_call_dummy breakpoint
2520 to the proper address in the call dummy, so that `finish' after a stop
2521 in a call dummy works.
2523 Tweeking current_gdbarch is not an optimal solution, but the call
2524 to sparc_fix_call_dummy is immediately followed by a call to
2525 call_function_by_hand, which is the only function where
2526 dummy_breakpoint_offset is actually used, if it is non-zero. */
2527 if (TYPE_CODE (value_type) == TYPE_CODE_STRUCT
2528 || TYPE_CODE (value_type) == TYPE_CODE_UNION)
2530 store_unsigned_integer (dummy + CALL_DUMMY_CALL_OFFSET + 8, 4,
2531 TYPE_LENGTH (value_type) & 0x1fff);
2532 set_gdbarch_deprecated_call_dummy_breakpoint_offset (current_gdbarch, 0x30);
2535 set_gdbarch_deprecated_call_dummy_breakpoint_offset (current_gdbarch, 0x2c);
2537 if (!(GDB_TARGET_IS_SPARC64))
2539 /* If this is not a simulator target, change the first four
2540 instructions of the call dummy to NOPs. Those instructions
2541 include a 'save' instruction and are designed to work around
2542 problems with register window flushing in the simulator. */
2544 if (strcmp (target_shortname, "sim") != 0)
2546 for (i = 0; i < 4; i++)
2547 store_unsigned_integer (dummy + (i * 4), 4, 0x01000000);
2552 // OBSOLETE /* If this is a bi-endian target, GDB has written the call dummy
2553 // OBSOLETE in little-endian order. We must byte-swap it back to big-endian. */
2554 // OBSOLETE if (bi_endian)
2556 // OBSOLETE for (i = 0; i < CALL_DUMMY_LENGTH; i += 4)
2558 // OBSOLETE char tmp = dummy[i];
2559 // OBSOLETE dummy[i] = dummy[i + 3];
2560 // OBSOLETE dummy[i + 3] = tmp;
2561 // OBSOLETE tmp = dummy[i + 1];
2562 // OBSOLETE dummy[i + 1] = dummy[i + 2];
2563 // OBSOLETE dummy[i + 2] = tmp;
2571 // OBSOLETE /* Set target byte order based on machine type. */
2573 // OBSOLETE static int
2574 // OBSOLETE sparc_target_architecture_hook (const bfd_arch_info_type *ap)
2576 // OBSOLETE int i, j;
2578 // OBSOLETE if (ap->mach == bfd_mach_sparc_sparclite_le)
2580 // OBSOLETE target_byte_order = BFD_ENDIAN_LITTLE;
2581 // OBSOLETE bi_endian = 1;
2584 // OBSOLETE bi_endian = 0;
2585 // OBSOLETE return 1;
2590 * Module "constructor" function.
2593 static struct gdbarch * sparc_gdbarch_init (struct gdbarch_info info,
2594 struct gdbarch_list *arches);
2595 static void sparc_dump_tdep (struct gdbarch *, struct ui_file *);
2597 extern initialize_file_ftype _initialize_sparc_tdep; /* -Wmissing-prototypes */
2600 _initialize_sparc_tdep (void)
2602 /* Hook us into the gdbarch mechanism. */
2603 gdbarch_register (bfd_arch_sparc, sparc_gdbarch_init, sparc_dump_tdep);
2605 deprecated_tm_print_insn = gdb_print_insn_sparc;
2606 deprecated_tm_print_insn_info.mach = TM_PRINT_INSN_MACH; /* Selects sparc/sparclite */
2607 /* OBSOLETE target_architecture_hook = sparc_target_architecture_hook; */
2610 /* Compensate for stack bias. Note that we currently don't handle
2611 mixed 32/64 bit code. */
2614 sparc64_read_sp (void)
2616 CORE_ADDR sp = read_register (SP_REGNUM);
2624 sparc64_read_fp (void)
2626 CORE_ADDR fp = read_register (DEPRECATED_FP_REGNUM);
2634 sparc64_write_sp (CORE_ADDR val)
2636 CORE_ADDR oldsp = read_register (SP_REGNUM);
2638 write_register (SP_REGNUM, val - 2047);
2640 write_register (SP_REGNUM, val);
2643 /* The SPARC 64 ABI passes floating-point arguments in FP0 to FP31,
2644 and all other arguments in O0 to O5. They are also copied onto
2645 the stack in the correct places. Apparently (empirically),
2646 structs of less than 16 bytes are passed member-by-member in
2647 separate registers, but I am unable to figure out the algorithm.
2648 Some members go in floating point regs, but I don't know which.
2650 FIXME: Handle small structs (less than 16 bytes containing floats).
2652 The counting regimen for using both integer and FP registers
2653 for argument passing is rather odd -- a single counter is used
2654 for both; this means that if the arguments alternate between
2655 int and float, we will waste every other register of both types. */
2658 sparc64_push_arguments (int nargs, struct value **args, CORE_ADDR sp,
2659 int struct_return, CORE_ADDR struct_retaddr)
2661 int i, j, register_counter = 0;
2663 struct type *sparc_intreg_type =
2664 TYPE_LENGTH (builtin_type_long) == SPARC_INTREG_SIZE ?
2665 builtin_type_long : builtin_type_long_long;
2667 sp = (sp & ~(((unsigned long) SPARC_INTREG_SIZE) - 1UL));
2669 /* Figure out how much space we'll need. */
2670 for (i = nargs - 1; i >= 0; i--)
2672 int len = TYPE_LENGTH (check_typedef (VALUE_TYPE (args[i])));
2673 struct value *copyarg = args[i];
2676 if (copylen < SPARC_INTREG_SIZE)
2678 copyarg = value_cast (sparc_intreg_type, copyarg);
2679 copylen = SPARC_INTREG_SIZE;
2688 /* if STRUCT_RETURN, then first argument is the struct return location. */
2690 write_register (O0_REGNUM + register_counter++, struct_retaddr);
2692 /* Now write the arguments onto the stack, while writing FP
2693 arguments into the FP registers, and other arguments into the
2694 first six 'O' registers. */
2696 for (i = 0; i < nargs; i++)
2698 int len = TYPE_LENGTH (check_typedef (VALUE_TYPE (args[i])));
2699 struct value *copyarg = args[i];
2700 enum type_code typecode = TYPE_CODE (VALUE_TYPE (args[i]));
2703 if (typecode == TYPE_CODE_INT ||
2704 typecode == TYPE_CODE_BOOL ||
2705 typecode == TYPE_CODE_CHAR ||
2706 typecode == TYPE_CODE_RANGE ||
2707 typecode == TYPE_CODE_ENUM)
2708 if (len < SPARC_INTREG_SIZE)
2710 /* Small ints will all take up the size of one intreg on
2712 copyarg = value_cast (sparc_intreg_type, copyarg);
2713 copylen = SPARC_INTREG_SIZE;
2716 write_memory (tempsp, VALUE_CONTENTS (copyarg), copylen);
2719 /* Corner case: Structs consisting of a single float member are floats.
2720 * FIXME! I don't know about structs containing multiple floats!
2721 * Structs containing mixed floats and ints are even more weird.
2726 /* Separate float args from all other args. */
2727 if (typecode == TYPE_CODE_FLT && SPARC_HAS_FPU)
2729 if (register_counter < 16)
2731 /* This arg gets copied into a FP register. */
2735 case 4: /* Single-precision (float) */
2736 fpreg = FP0_REGNUM + 2 * register_counter + 1;
2737 register_counter += 1;
2739 case 8: /* Double-precision (double) */
2740 fpreg = FP0_REGNUM + 2 * register_counter;
2741 register_counter += 1;
2743 case 16: /* Quad-precision (long double) */
2744 fpreg = FP0_REGNUM + 2 * register_counter;
2745 register_counter += 2;
2748 internal_error (__FILE__, __LINE__, "bad switch");
2750 deprecated_write_register_bytes (REGISTER_BYTE (fpreg),
2751 VALUE_CONTENTS (args[i]),
2755 else /* all other args go into the first six 'o' registers */
2758 j < len && register_counter < 6;
2759 j += SPARC_INTREG_SIZE)
2761 int oreg = O0_REGNUM + register_counter;
2763 deprecated_write_register_gen (oreg, VALUE_CONTENTS (copyarg) + j);
2764 register_counter += 1;
2771 /* Values <= 32 bytes are returned in o0-o3 (floating-point values are
2772 returned in f0-f3). */
2775 sp64_extract_return_value (struct type *type, char *regbuf, char *valbuf,
2778 int typelen = TYPE_LENGTH (type);
2779 int regsize = REGISTER_RAW_SIZE (O0_REGNUM);
2781 if (TYPE_CODE (type) == TYPE_CODE_FLT && SPARC_HAS_FPU)
2783 memcpy (valbuf, ®buf[REGISTER_BYTE (FP0_REGNUM)], typelen);
2787 if (TYPE_CODE (type) != TYPE_CODE_STRUCT
2788 || (TYPE_LENGTH (type) > 32))
2791 ®buf[O0_REGNUM * regsize +
2792 (typelen >= regsize ? 0 : regsize - typelen)],
2798 char *o0 = ®buf[O0_REGNUM * regsize];
2799 char *f0 = ®buf[FP0_REGNUM * regsize];
2802 for (x = 0; x < TYPE_NFIELDS (type); x++)
2804 struct field *f = &TYPE_FIELDS (type)[x];
2805 /* FIXME: We may need to handle static fields here. */
2806 int whichreg = (f->loc.bitpos + bitoffset) / 32;
2807 int remainder = ((f->loc.bitpos + bitoffset) % 32) / 8;
2808 int where = (f->loc.bitpos + bitoffset) / 8;
2809 int size = TYPE_LENGTH (f->type);
2810 int typecode = TYPE_CODE (f->type);
2812 if (typecode == TYPE_CODE_STRUCT)
2814 sp64_extract_return_value (f->type,
2817 bitoffset + f->loc.bitpos);
2819 else if (typecode == TYPE_CODE_FLT && SPARC_HAS_FPU)
2821 memcpy (valbuf + where, &f0[whichreg * 4] + remainder, size);
2825 memcpy (valbuf + where, &o0[whichreg * 4] + remainder, size);
2832 sparc64_extract_return_value (struct type *type, char *regbuf, char *valbuf)
2834 sp64_extract_return_value (type, regbuf, valbuf, 0);
2838 // OBSOLETE extern void
2839 // OBSOLETE sparclet_extract_return_value (struct type *type,
2840 // OBSOLETE char *regbuf,
2841 // OBSOLETE char *valbuf)
2843 // OBSOLETE regbuf += REGISTER_RAW_SIZE (O0_REGNUM) * 8;
2844 // OBSOLETE if (TYPE_LENGTH (type) < REGISTER_RAW_SIZE (O0_REGNUM))
2845 // OBSOLETE regbuf += REGISTER_RAW_SIZE (O0_REGNUM) - TYPE_LENGTH (type);
2847 // OBSOLETE memcpy ((void *) valbuf, regbuf, TYPE_LENGTH (type));
2852 sparc32_stack_align (CORE_ADDR addr)
2854 return ((addr + 7) & -8);
2858 sparc64_stack_align (CORE_ADDR addr)
2860 return ((addr + 15) & -16);
2864 sparc_print_extra_frame_info (struct frame_info *fi)
2866 if (fi && get_frame_extra_info (fi) && get_frame_extra_info (fi)->flat)
2867 printf_filtered (" flat, pc saved at 0x%s, fp saved at 0x%s\n",
2868 paddr_nz (get_frame_extra_info (fi)->pc_addr),
2869 paddr_nz (get_frame_extra_info (fi)->fp_addr));
2872 /* MULTI_ARCH support */
2875 sparc32_register_name (int regno)
2877 static char *register_names[] =
2878 { "g0", "g1", "g2", "g3", "g4", "g5", "g6", "g7",
2879 "o0", "o1", "o2", "o3", "o4", "o5", "sp", "o7",
2880 "l0", "l1", "l2", "l3", "l4", "l5", "l6", "l7",
2881 "i0", "i1", "i2", "i3", "i4", "i5", "fp", "i7",
2883 "f0", "f1", "f2", "f3", "f4", "f5", "f6", "f7",
2884 "f8", "f9", "f10", "f11", "f12", "f13", "f14", "f15",
2885 "f16", "f17", "f18", "f19", "f20", "f21", "f22", "f23",
2886 "f24", "f25", "f26", "f27", "f28", "f29", "f30", "f31",
2888 "y", "psr", "wim", "tbr", "pc", "npc", "fpsr", "cpsr"
2892 regno >= (sizeof (register_names) / sizeof (register_names[0])))
2895 return register_names[regno];
2899 sparc64_register_name (int regno)
2901 static char *register_names[] =
2902 { "g0", "g1", "g2", "g3", "g4", "g5", "g6", "g7",
2903 "o0", "o1", "o2", "o3", "o4", "o5", "sp", "o7",
2904 "l0", "l1", "l2", "l3", "l4", "l5", "l6", "l7",
2905 "i0", "i1", "i2", "i3", "i4", "i5", "fp", "i7",
2907 "f0", "f1", "f2", "f3", "f4", "f5", "f6", "f7",
2908 "f8", "f9", "f10", "f11", "f12", "f13", "f14", "f15",
2909 "f16", "f17", "f18", "f19", "f20", "f21", "f22", "f23",
2910 "f24", "f25", "f26", "f27", "f28", "f29", "f30", "f31",
2911 "f32", "f34", "f36", "f38", "f40", "f42", "f44", "f46",
2912 "f48", "f50", "f52", "f54", "f56", "f58", "f60", "f62",
2914 "pc", "npc", "ccr", "fsr", "fprs", "y", "asi", "ver",
2915 "tick", "pil", "pstate", "tstate", "tba", "tl", "tt", "tpc",
2916 "tnpc", "wstate", "cwp", "cansave", "canrestore", "cleanwin", "otherwin",
2917 "asr16", "asr17", "asr18", "asr19", "asr20", "asr21", "asr22", "asr23",
2918 "asr24", "asr25", "asr26", "asr27", "asr28", "asr29", "asr30", "asr31",
2919 /* These are here at the end to simplify removing them if we have to. */
2920 "icc", "xcc", "fcc0", "fcc1", "fcc2", "fcc3"
2924 regno >= (sizeof (register_names) / sizeof (register_names[0])))
2927 return register_names[regno];
2931 // OBSOLETE static const char *
2932 // OBSOLETE sparclite_register_name (int regno)
2934 // OBSOLETE static char *register_names[] =
2935 // OBSOLETE { "g0", "g1", "g2", "g3", "g4", "g5", "g6", "g7",
2936 // OBSOLETE "o0", "o1", "o2", "o3", "o4", "o5", "sp", "o7",
2937 // OBSOLETE "l0", "l1", "l2", "l3", "l4", "l5", "l6", "l7",
2938 // OBSOLETE "i0", "i1", "i2", "i3", "i4", "i5", "fp", "i7",
2940 // OBSOLETE "f0", "f1", "f2", "f3", "f4", "f5", "f6", "f7",
2941 // OBSOLETE "f8", "f9", "f10", "f11", "f12", "f13", "f14", "f15",
2942 // OBSOLETE "f16", "f17", "f18", "f19", "f20", "f21", "f22", "f23",
2943 // OBSOLETE "f24", "f25", "f26", "f27", "f28", "f29", "f30", "f31",
2945 // OBSOLETE "y", "psr", "wim", "tbr", "pc", "npc", "fpsr", "cpsr",
2946 // OBSOLETE "dia1", "dia2", "dda1", "dda2", "ddv1", "ddv2", "dcr", "dsr"
2949 // OBSOLETE if (regno < 0 ||
2950 // OBSOLETE regno >= (sizeof (register_names) / sizeof (register_names[0])))
2951 // OBSOLETE return NULL;
2953 // OBSOLETE return register_names[regno];
2958 // OBSOLETE static const char *
2959 // OBSOLETE sparclet_register_name (int regno)
2961 // OBSOLETE static char *register_names[] =
2962 // OBSOLETE { "g0", "g1", "g2", "g3", "g4", "g5", "g6", "g7",
2963 // OBSOLETE "o0", "o1", "o2", "o3", "o4", "o5", "sp", "o7",
2964 // OBSOLETE "l0", "l1", "l2", "l3", "l4", "l5", "l6", "l7",
2965 // OBSOLETE "i0", "i1", "i2", "i3", "i4", "i5", "fp", "i7",
2967 // OBSOLETE "", "", "", "", "", "", "", "", /* no floating point registers */
2968 // OBSOLETE "", "", "", "", "", "", "", "",
2969 // OBSOLETE "", "", "", "", "", "", "", "",
2970 // OBSOLETE "", "", "", "", "", "", "", "",
2972 // OBSOLETE "y", "psr", "wim", "tbr", "pc", "npc", "", "", /* no FPSR or CPSR */
2973 // OBSOLETE "ccsr", "ccpr", "cccrcr", "ccor", "ccobr", "ccibr", "ccir", "",
2975 // OBSOLETE /* ASR15 ASR19 (don't display them) */
2976 // OBSOLETE "asr1", "", "asr17", "asr18", "", "asr20", "asr21", "asr22"
2977 // OBSOLETE /* None of the rest get displayed */
2979 // OBSOLETE "awr0", "awr1", "awr2", "awr3", "awr4", "awr5", "awr6", "awr7",
2980 // OBSOLETE "awr8", "awr9", "awr10", "awr11", "awr12", "awr13", "awr14", "awr15",
2981 // OBSOLETE "awr16", "awr17", "awr18", "awr19", "awr20", "awr21", "awr22", "awr23",
2982 // OBSOLETE "awr24", "awr25", "awr26", "awr27", "awr28", "awr29", "awr30", "awr31",
2984 // OBSOLETE #endif /* 0 */
2987 // OBSOLETE if (regno < 0 ||
2988 // OBSOLETE regno >= (sizeof (register_names) / sizeof (register_names[0])))
2989 // OBSOLETE return NULL;
2991 // OBSOLETE return register_names[regno];
2996 sparc_push_return_address (CORE_ADDR pc_unused, CORE_ADDR sp)
2998 if (CALL_DUMMY_LOCATION == AT_ENTRY_POINT)
3000 /* The return PC of the dummy_frame is the former 'current' PC
3001 (where we were before we made the target function call).
3002 This is saved in %i7 by push_dummy_frame.
3004 We will save the 'call dummy location' (ie. the address
3005 to which the target function will return) in %o7.
3006 This address will actually be the program's entry point.
3007 There will be a special call_dummy breakpoint there. */
3009 write_register (O7_REGNUM,
3010 CALL_DUMMY_ADDRESS () - 8);
3016 /* Should call_function allocate stack space for a struct return? */
3019 sparc64_use_struct_convention (int gcc_p, struct type *type)
3021 return (TYPE_LENGTH (type) > 32);
3024 /* Store the address of the place in which to copy the structure the
3025 subroutine will return. This is called from call_function_by_hand.
3026 The ultimate mystery is, tho, what is the value "16"?
3028 MVS: That's the offset from where the sp is now, to where the
3029 subroutine is gonna expect to find the struct return address. */
3032 sparc32_store_struct_return (CORE_ADDR addr, CORE_ADDR sp)
3037 val = alloca (SPARC_INTREG_SIZE);
3038 store_unsigned_integer (val, SPARC_INTREG_SIZE, addr);
3039 write_memory (sp + (16 * SPARC_INTREG_SIZE), val, SPARC_INTREG_SIZE);
3041 if (CALL_DUMMY_LOCATION == AT_ENTRY_POINT)
3043 /* Now adjust the value of the link register, which was previously
3044 stored by push_return_address. Functions that return structs are
3045 peculiar in that they return to link register + 12, rather than
3046 link register + 8. */
3048 o7 = read_register (O7_REGNUM);
3049 write_register (O7_REGNUM, o7 - 4);
3054 sparc64_store_struct_return (CORE_ADDR addr, CORE_ADDR sp)
3056 /* FIXME: V9 uses %o0 for this. */
3057 /* FIXME MVS: Only for small enough structs!!! */
3059 target_write_memory (sp + (16 * SPARC_INTREG_SIZE),
3060 (char *) &addr, SPARC_INTREG_SIZE);
3062 if (CALL_DUMMY_LOCATION == AT_ENTRY_POINT)
3064 /* Now adjust the value of the link register, which was previously
3065 stored by push_return_address. Functions that return structs are
3066 peculiar in that they return to link register + 12, rather than
3067 link register + 8. */
3069 write_register (O7_REGNUM, read_register (O7_REGNUM) - 4);
3074 /* Default target data type for register REGNO. */
3076 static struct type *
3077 sparc32_register_virtual_type (int regno)
3079 if (regno == PC_REGNUM ||
3080 regno == DEPRECATED_FP_REGNUM ||
3082 return builtin_type_unsigned_int;
3084 return builtin_type_int;
3086 return builtin_type_float;
3087 return builtin_type_int;
3090 static struct type *
3091 sparc64_register_virtual_type (int regno)
3093 if (regno == PC_REGNUM ||
3094 regno == DEPRECATED_FP_REGNUM ||
3096 return builtin_type_unsigned_long_long;
3098 return builtin_type_long_long;
3100 return builtin_type_float;
3102 return builtin_type_double;
3103 return builtin_type_long_long;
3106 /* Number of bytes of storage in the actual machine representation for
3110 sparc32_register_size (int regno)
3116 sparc64_register_size (int regno)
3118 return (regno < 32 ? 8 : regno < 64 ? 4 : 8);
3121 /* Index within the `registers' buffer of the first byte of the space
3122 for register REGNO. */
3125 sparc32_register_byte (int regno)
3131 sparc64_register_byte (int regno)
3135 else if (regno < 64)
3136 return 32 * 8 + (regno - 32) * 4;
3137 else if (regno < 80)
3138 return 32 * 8 + 32 * 4 + (regno - 64) * 8;
3140 return 64 * 8 + (regno - 80) * 8;
3143 /* Immediately after a function call, return the saved pc.
3144 Can't go through the frames for this because on some machines
3145 the new frame is not set up until the new function executes
3146 some instructions. */
3149 sparc_saved_pc_after_call (struct frame_info *fi)
3151 return sparc_pc_adjust (read_register (RP_REGNUM));
3154 /* Init saved regs: nothing to do, just a place-holder function. */
3157 sparc_frame_init_saved_regs (struct frame_info *fi_ignored)
3161 /* gdbarch fix call dummy:
3162 All this function does is rearrange the arguments before calling
3163 sparc_fix_call_dummy (which does the real work). */
3166 sparc_gdbarch_fix_call_dummy (char *dummy,
3170 struct value **args,
3174 if (CALL_DUMMY_LOCATION == ON_STACK)
3175 sparc_fix_call_dummy (dummy, pc, fun, type, gcc_p);
3178 /* CALL_DUMMY_ADDRESS: fetch the breakpoint address for a call dummy. */
3181 sparc_call_dummy_address (void)
3183 return (DEPRECATED_CALL_DUMMY_START_OFFSET) + DEPRECATED_CALL_DUMMY_BREAKPOINT_OFFSET;
3186 /* Supply the Y register number to those that need it. */
3189 sparc_y_regnum (void)
3191 return gdbarch_tdep (current_gdbarch)->y_regnum;
3195 sparc_reg_struct_has_addr (int gcc_p, struct type *type)
3197 if (GDB_TARGET_IS_SPARC64)
3198 return (TYPE_LENGTH (type) > 32);
3200 return (gcc_p != 1);
3204 sparc_intreg_size (void)
3206 return SPARC_INTREG_SIZE;
3210 sparc_return_value_on_stack (struct type *type)
3212 if (TYPE_CODE (type) == TYPE_CODE_FLT &&
3213 TYPE_LENGTH (type) > 8)
3219 /* Get the ith function argument for the current function. */
3221 sparc_fetch_pointer_argument (struct frame_info *frame, int argi,
3225 frame_read_register (frame, O0_REGNUM + argi, &addr);
3230 * Gdbarch "constructor" function.
3233 #define SPARC32_CALL_DUMMY_ON_STACK
3235 #define SPARC_SP_REGNUM 14
3236 #define SPARC_FP_REGNUM 30
3237 #define SPARC_FP0_REGNUM 32
3238 #define SPARC32_NPC_REGNUM 69
3239 #define SPARC32_PC_REGNUM 68
3240 #define SPARC32_Y_REGNUM 64
3241 #define SPARC64_PC_REGNUM 80
3242 #define SPARC64_NPC_REGNUM 81
3243 #define SPARC64_Y_REGNUM 85
3245 static struct gdbarch *
3246 sparc_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches)
3248 struct gdbarch *gdbarch;
3249 struct gdbarch_tdep *tdep;
3251 static LONGEST call_dummy_32[] =
3252 { 0xbc100001, 0x9de38000, 0xbc100002, 0xbe100003,
3253 0xda03a058, 0xd803a054, 0xd603a050, 0xd403a04c,
3254 0xd203a048, 0x40000000, 0xd003a044, 0x01000000,
3255 0x91d02001, 0x01000000
3257 static LONGEST call_dummy_64[] =
3258 { 0x9de3bec0fd3fa7f7LL, 0xf93fa7eff53fa7e7LL,
3259 0xf13fa7dfed3fa7d7LL, 0xe93fa7cfe53fa7c7LL,
3260 0xe13fa7bfdd3fa7b7LL, 0xd93fa7afd53fa7a7LL,
3261 0xd13fa79fcd3fa797LL, 0xc93fa78fc53fa787LL,
3262 0xc13fa77fcc3fa777LL, 0xc83fa76fc43fa767LL,
3263 0xc03fa75ffc3fa757LL, 0xf83fa74ff43fa747LL,
3264 0xf03fa73f01000000LL, 0x0100000001000000LL,
3265 0x0100000091580000LL, 0xd027a72b93500000LL,
3266 0xd027a72791480000LL, 0xd027a72391400000LL,
3267 0xd027a71fda5ba8a7LL, 0xd85ba89fd65ba897LL,
3268 0xd45ba88fd25ba887LL, 0x9fc02000d05ba87fLL,
3269 0x0100000091d02001LL, 0x0100000001000000LL
3271 static LONGEST call_dummy_nil[] = {0};
3273 /* Try to determine the OS ABI of the object we are loading. */
3275 if (info.abfd != NULL
3276 && info.osabi == GDB_OSABI_UNKNOWN)
3278 /* If it's an ELF file, assume it's Solaris. */
3279 if (bfd_get_flavour (info.abfd) == bfd_target_elf_flavour)
3280 info.osabi = GDB_OSABI_SOLARIS;
3283 /* First see if there is already a gdbarch that can satisfy the request. */
3284 arches = gdbarch_list_lookup_by_info (arches, &info);
3286 return arches->gdbarch;
3288 /* None found: is the request for a sparc architecture? */
3289 if (info.bfd_arch_info->arch != bfd_arch_sparc)
3290 return NULL; /* No; then it's not for us. */
3292 /* Yes: create a new gdbarch for the specified machine type. */
3293 tdep = (struct gdbarch_tdep *) xmalloc (sizeof (struct gdbarch_tdep));
3294 gdbarch = gdbarch_alloc (&info, tdep);
3296 /* First set settings that are common for all sparc architectures. */
3297 set_gdbarch_believe_pcc_promotion (gdbarch, 1);
3298 set_gdbarch_breakpoint_from_pc (gdbarch, sparc_breakpoint_from_pc);
3299 set_gdbarch_decr_pc_after_break (gdbarch, 0);
3300 set_gdbarch_double_bit (gdbarch, 8 * TARGET_CHAR_BIT);
3301 set_gdbarch_extract_struct_value_address (gdbarch,
3302 sparc_extract_struct_value_address);
3303 set_gdbarch_deprecated_fix_call_dummy (gdbarch, sparc_gdbarch_fix_call_dummy);
3304 set_gdbarch_float_bit (gdbarch, 4 * TARGET_CHAR_BIT);
3305 set_gdbarch_deprecated_fp_regnum (gdbarch, SPARC_FP_REGNUM);
3306 set_gdbarch_fp0_regnum (gdbarch, SPARC_FP0_REGNUM);
3307 set_gdbarch_deprecated_frame_chain (gdbarch, sparc_frame_chain);
3308 set_gdbarch_deprecated_frame_init_saved_regs (gdbarch, sparc_frame_init_saved_regs);
3309 set_gdbarch_deprecated_frame_saved_pc (gdbarch, sparc_frame_saved_pc);
3310 set_gdbarch_frameless_function_invocation (gdbarch,
3311 frameless_look_for_prologue);
3312 set_gdbarch_deprecated_get_saved_register (gdbarch, sparc_get_saved_register);
3313 set_gdbarch_deprecated_init_extra_frame_info (gdbarch, sparc_init_extra_frame_info);
3314 set_gdbarch_inner_than (gdbarch, core_addr_lessthan);
3315 set_gdbarch_int_bit (gdbarch, 4 * TARGET_CHAR_BIT);
3316 set_gdbarch_long_double_bit (gdbarch, 16 * TARGET_CHAR_BIT);
3317 set_gdbarch_long_long_bit (gdbarch, 8 * TARGET_CHAR_BIT);
3318 set_gdbarch_deprecated_max_register_raw_size (gdbarch, 8);
3319 set_gdbarch_deprecated_max_register_virtual_size (gdbarch, 8);
3320 set_gdbarch_deprecated_pop_frame (gdbarch, sparc_pop_frame);
3321 set_gdbarch_deprecated_push_return_address (gdbarch, sparc_push_return_address);
3322 set_gdbarch_deprecated_push_dummy_frame (gdbarch, sparc_push_dummy_frame);
3323 set_gdbarch_reg_struct_has_addr (gdbarch, sparc_reg_struct_has_addr);
3324 set_gdbarch_return_value_on_stack (gdbarch, sparc_return_value_on_stack);
3325 set_gdbarch_deprecated_saved_pc_after_call (gdbarch, sparc_saved_pc_after_call);
3326 set_gdbarch_prologue_frameless_p (gdbarch, sparc_prologue_frameless_p);
3327 set_gdbarch_short_bit (gdbarch, 2 * TARGET_CHAR_BIT);
3328 set_gdbarch_skip_prologue (gdbarch, sparc_skip_prologue);
3329 set_gdbarch_sp_regnum (gdbarch, SPARC_SP_REGNUM);
3330 set_gdbarch_deprecated_use_generic_dummy_frames (gdbarch, 0);
3331 set_gdbarch_write_pc (gdbarch, generic_target_write_pc);
3333 /* Helper for function argument information. */
3334 set_gdbarch_fetch_pointer_argument (gdbarch, sparc_fetch_pointer_argument);
3337 * Settings that depend only on 32/64 bit word size
3340 switch (info.bfd_arch_info->mach)
3342 case bfd_mach_sparc:
3344 // OBSOLETE case bfd_mach_sparc_sparclet:
3345 // OBSOLETE case bfd_mach_sparc_sparclite:
3347 case bfd_mach_sparc_v8plus:
3348 case bfd_mach_sparc_v8plusa:
3350 // OBSOLETE case bfd_mach_sparc_sparclite_le:
3352 /* 32-bit machine types: */
3354 #ifdef SPARC32_CALL_DUMMY_ON_STACK
3355 set_gdbarch_deprecated_pc_in_call_dummy (gdbarch, deprecated_pc_in_call_dummy_on_stack);
3356 set_gdbarch_call_dummy_address (gdbarch, sparc_call_dummy_address);
3357 set_gdbarch_deprecated_call_dummy_breakpoint_offset (gdbarch, 0x30);
3358 set_gdbarch_deprecated_call_dummy_length (gdbarch, 0x38);
3360 /* NOTE: cagney/2003-05-01: Using the just added push_dummy_code
3361 architecture method, it is now possible to implement a
3362 generic dummy frames based inferior function call that stores
3363 the breakpoint (and struct info) on the stack. Further, by
3364 treating a SIGSEG at a breakpoint as equivalent to a SIGTRAP
3365 it is even possible to make this work when the stack is
3368 NOTE: cagney/2002-04-26: Based from info posted by Peter
3369 Schauer around Oct '99. Briefly, due to aspects of the SPARC
3370 ABI, it isn't possible to use ON_STACK with a strictly
3373 Peter Schauer writes ...
3375 No, any call from GDB to a user function returning a
3376 struct/union will fail miserably. Try this:
3395 for (i = 0; i < 4; i++)
3401 Set a breakpoint at the gx = sret () statement, run to it and
3402 issue a `print sret()'. It will not succed with your
3403 approach, and I doubt that continuing the program will work
3406 For details of the ABI see the Sparc Architecture Manual. I
3407 have Version 8 (Prentice Hall ISBN 0-13-825001-4) and the
3408 calling conventions for functions returning aggregate values
3409 are explained in Appendix D.3. */
3411 set_gdbarch_call_dummy_location (gdbarch, ON_STACK);
3412 set_gdbarch_deprecated_call_dummy_words (gdbarch, call_dummy_32);
3414 set_gdbarch_deprecated_pc_in_call_dummy (gdbarch, deprecated_pc_in_call_dummy_at_entry_point);
3415 set_gdbarch_deprecated_call_dummy_words (gdbarch, call_dummy_nil);
3417 set_gdbarch_deprecated_call_dummy_stack_adjust (gdbarch, 68);
3418 set_gdbarch_frame_args_skip (gdbarch, 68);
3419 set_gdbarch_function_start_offset (gdbarch, 0);
3420 set_gdbarch_long_bit (gdbarch, 4 * TARGET_CHAR_BIT);
3421 set_gdbarch_npc_regnum (gdbarch, SPARC32_NPC_REGNUM);
3422 set_gdbarch_pc_regnum (gdbarch, SPARC32_PC_REGNUM);
3423 set_gdbarch_ptr_bit (gdbarch, 4 * TARGET_CHAR_BIT);
3424 set_gdbarch_deprecated_push_arguments (gdbarch, sparc32_push_arguments);
3426 set_gdbarch_deprecated_register_byte (gdbarch, sparc32_register_byte);
3427 set_gdbarch_deprecated_register_raw_size (gdbarch, sparc32_register_size);
3428 set_gdbarch_deprecated_register_size (gdbarch, 4);
3429 set_gdbarch_deprecated_register_virtual_size (gdbarch, sparc32_register_size);
3430 set_gdbarch_deprecated_register_virtual_type (gdbarch, sparc32_register_virtual_type);
3431 #ifdef SPARC32_CALL_DUMMY_ON_STACK
3432 set_gdbarch_deprecated_sizeof_call_dummy_words (gdbarch, sizeof (call_dummy_32));
3434 set_gdbarch_deprecated_sizeof_call_dummy_words (gdbarch, 0);
3436 set_gdbarch_stack_align (gdbarch, sparc32_stack_align);
3437 set_gdbarch_deprecated_extra_stack_alignment_needed (gdbarch, 1);
3438 set_gdbarch_deprecated_store_struct_return (gdbarch, sparc32_store_struct_return);
3439 set_gdbarch_use_struct_convention (gdbarch,
3440 generic_use_struct_convention);
3441 set_gdbarch_deprecated_dummy_write_sp (gdbarch, deprecated_write_sp);
3442 tdep->y_regnum = SPARC32_Y_REGNUM;
3443 tdep->fp_max_regnum = SPARC_FP0_REGNUM + 32;
3444 tdep->intreg_size = 4;
3445 tdep->reg_save_offset = 0x60;
3446 tdep->call_dummy_call_offset = 0x24;
3449 case bfd_mach_sparc_v9:
3450 case bfd_mach_sparc_v9a:
3451 /* 64-bit machine types: */
3452 default: /* Any new machine type is likely to be 64-bit. */
3454 #ifdef SPARC64_CALL_DUMMY_ON_STACK
3455 set_gdbarch_deprecated_pc_in_call_dummy (gdbarch, deprecated_pc_in_call_dummy_on_stack);
3456 set_gdbarch_call_dummy_address (gdbarch, sparc_call_dummy_address);
3457 set_gdbarch_deprecated_call_dummy_breakpoint_offset (gdbarch, 8 * 4);
3458 set_gdbarch_deprecated_call_dummy_length (gdbarch, 192);
3459 set_gdbarch_call_dummy_location (gdbarch, ON_STACK);
3460 set_gdbarch_deprecated_call_dummy_start_offset (gdbarch, 148);
3461 set_gdbarch_deprecated_call_dummy_words (gdbarch, call_dummy_64);
3463 set_gdbarch_deprecated_pc_in_call_dummy (gdbarch, deprecated_pc_in_call_dummy_at_entry_point);
3464 set_gdbarch_deprecated_call_dummy_words (gdbarch, call_dummy_nil);
3466 set_gdbarch_deprecated_call_dummy_stack_adjust (gdbarch, 128);
3467 set_gdbarch_frame_args_skip (gdbarch, 136);
3468 set_gdbarch_function_start_offset (gdbarch, 0);
3469 set_gdbarch_long_bit (gdbarch, 8 * TARGET_CHAR_BIT);
3470 set_gdbarch_npc_regnum (gdbarch, SPARC64_NPC_REGNUM);
3471 set_gdbarch_pc_regnum (gdbarch, SPARC64_PC_REGNUM);
3472 set_gdbarch_ptr_bit (gdbarch, 8 * TARGET_CHAR_BIT);
3473 set_gdbarch_deprecated_push_arguments (gdbarch, sparc64_push_arguments);
3474 /* NOTE different for at_entry */
3475 set_gdbarch_deprecated_target_read_fp (gdbarch, sparc64_read_fp);
3476 set_gdbarch_read_sp (gdbarch, sparc64_read_sp);
3477 /* Some of the registers aren't 64 bits, but it's a lot simpler just
3478 to assume they all are (since most of them are). */
3479 set_gdbarch_deprecated_register_byte (gdbarch, sparc64_register_byte);
3480 set_gdbarch_deprecated_register_raw_size (gdbarch, sparc64_register_size);
3481 set_gdbarch_deprecated_register_size (gdbarch, 8);
3482 set_gdbarch_deprecated_register_virtual_size (gdbarch, sparc64_register_size);
3483 set_gdbarch_deprecated_register_virtual_type (gdbarch, sparc64_register_virtual_type);
3484 #ifdef SPARC64_CALL_DUMMY_ON_STACK
3485 set_gdbarch_deprecated_sizeof_call_dummy_words (gdbarch, sizeof (call_dummy_64));
3487 set_gdbarch_deprecated_sizeof_call_dummy_words (gdbarch, 0);
3489 set_gdbarch_stack_align (gdbarch, sparc64_stack_align);
3490 set_gdbarch_deprecated_extra_stack_alignment_needed (gdbarch, 1);
3491 set_gdbarch_deprecated_store_struct_return (gdbarch, sparc64_store_struct_return);
3492 set_gdbarch_use_struct_convention (gdbarch,
3493 sparc64_use_struct_convention);
3494 set_gdbarch_deprecated_dummy_write_sp (gdbarch, sparc64_write_sp);
3495 tdep->y_regnum = SPARC64_Y_REGNUM;
3496 tdep->fp_max_regnum = SPARC_FP0_REGNUM + 48;
3497 tdep->intreg_size = 8;
3498 tdep->reg_save_offset = 0x90;
3499 tdep->call_dummy_call_offset = 148 + 4 * 5;
3504 * Settings that vary per-architecture:
3507 switch (info.bfd_arch_info->mach)
3509 case bfd_mach_sparc:
3510 set_gdbarch_extract_return_value (gdbarch, sparc32_extract_return_value);
3511 set_gdbarch_store_return_value (gdbarch, sparc32_store_return_value);
3512 set_gdbarch_num_regs (gdbarch, 72);
3513 set_gdbarch_deprecated_register_bytes (gdbarch, 32*4 + 32*4 + 8*4);
3514 set_gdbarch_register_name (gdbarch, sparc32_register_name);
3516 // OBSOLETE tdep->has_fpu = 1; /* (all but sparclet and sparclite) */
3518 tdep->fp_register_bytes = 32 * 4;
3519 tdep->print_insn_mach = bfd_mach_sparc;
3522 // OBSOLETE case bfd_mach_sparc_sparclet:
3523 // OBSOLETE set_gdbarch_deprecated_extract_return_value (gdbarch, sparclet_extract_return_value);
3524 // OBSOLETE set_gdbarch_num_regs (gdbarch, 32 + 32 + 8 + 8 + 8);
3525 // OBSOLETE set_gdbarch_register_bytes (gdbarch, 32*4 + 32*4 + 8*4 + 8*4 + 8*4);
3526 // OBSOLETE set_gdbarch_register_name (gdbarch, sparclet_register_name);
3527 // OBSOLETE set_gdbarch_deprecated_store_return_value (gdbarch, sparclet_store_return_value);
3528 // OBSOLETE tdep->has_fpu = 0; /* (all but sparclet and sparclite) */
3529 // OBSOLETE tdep->fp_register_bytes = 0;
3530 // OBSOLETE tdep->print_insn_mach = bfd_mach_sparc_sparclet;
3534 // OBSOLETE case bfd_mach_sparc_sparclite:
3535 // OBSOLETE set_gdbarch_deprecated_extract_return_value (gdbarch, sparc32_extract_return_value);
3536 // OBSOLETE set_gdbarch_num_regs (gdbarch, 80);
3537 // OBSOLETE set_gdbarch_register_bytes (gdbarch, 32*4 + 32*4 + 8*4 + 8*4);
3538 // OBSOLETE set_gdbarch_register_name (gdbarch, sparclite_register_name);
3539 // OBSOLETE set_gdbarch_deprecated_store_return_value (gdbarch, sparc_store_return_value);
3540 // OBSOLETE tdep->has_fpu = 0; /* (all but sparclet and sparclite) */
3541 // OBSOLETE tdep->fp_register_bytes = 0;
3542 // OBSOLETE tdep->print_insn_mach = bfd_mach_sparc_sparclite;
3545 case bfd_mach_sparc_v8plus:
3546 set_gdbarch_extract_return_value (gdbarch, sparc32_extract_return_value);
3547 set_gdbarch_store_return_value (gdbarch, sparc32_store_return_value);
3548 set_gdbarch_num_regs (gdbarch, 72);
3549 set_gdbarch_deprecated_register_bytes (gdbarch, 32*4 + 32*4 + 8*4);
3550 set_gdbarch_register_name (gdbarch, sparc32_register_name);
3551 tdep->print_insn_mach = bfd_mach_sparc;
3552 tdep->fp_register_bytes = 32 * 4;
3554 // OBSOLETE tdep->has_fpu = 1; /* (all but sparclet and sparclite) */
3557 case bfd_mach_sparc_v8plusa:
3558 set_gdbarch_extract_return_value (gdbarch, sparc32_extract_return_value);
3559 set_gdbarch_store_return_value (gdbarch, sparc32_store_return_value);
3560 set_gdbarch_num_regs (gdbarch, 72);
3561 set_gdbarch_deprecated_register_bytes (gdbarch, 32*4 + 32*4 + 8*4);
3562 set_gdbarch_register_name (gdbarch, sparc32_register_name);
3564 // OBSOLETE tdep->has_fpu = 1; /* (all but sparclet and sparclite) */
3566 tdep->fp_register_bytes = 32 * 4;
3567 tdep->print_insn_mach = bfd_mach_sparc;
3570 // OBSOLETE case bfd_mach_sparc_sparclite_le:
3571 // OBSOLETE set_gdbarch_deprecated_extract_return_value (gdbarch, sparc32_extract_return_value);
3572 // OBSOLETE set_gdbarch_num_regs (gdbarch, 80);
3573 // OBSOLETE set_gdbarch_register_bytes (gdbarch, 32*4 + 32*4 + 8*4 + 8*4);
3574 // OBSOLETE set_gdbarch_register_name (gdbarch, sparclite_register_name);
3575 // OBSOLETE set_gdbarch_deprecated_store_return_value (gdbarch, sparc_store_return_value);
3576 // OBSOLETE tdep->has_fpu = 0; /* (all but sparclet and sparclite) */
3577 // OBSOLETE tdep->fp_register_bytes = 0;
3578 // OBSOLETE tdep->print_insn_mach = bfd_mach_sparc_sparclite;
3581 case bfd_mach_sparc_v9:
3582 set_gdbarch_deprecated_extract_return_value (gdbarch, sparc64_extract_return_value);
3583 set_gdbarch_num_regs (gdbarch, 125);
3584 set_gdbarch_deprecated_register_bytes (gdbarch, 32*8 + 32*8 + 45*8);
3585 set_gdbarch_register_name (gdbarch, sparc64_register_name);
3586 set_gdbarch_deprecated_store_return_value (gdbarch, sparc_store_return_value);
3588 // OBSOLETE tdep->has_fpu = 1; /* (all but sparclet and sparclite) */
3590 tdep->fp_register_bytes = 64 * 4;
3591 tdep->print_insn_mach = bfd_mach_sparc_v9a;
3593 case bfd_mach_sparc_v9a:
3594 set_gdbarch_deprecated_extract_return_value (gdbarch, sparc64_extract_return_value);
3595 set_gdbarch_num_regs (gdbarch, 125);
3596 set_gdbarch_deprecated_register_bytes (gdbarch, 32*8 + 32*8 + 45*8);
3597 set_gdbarch_register_name (gdbarch, sparc64_register_name);
3598 set_gdbarch_deprecated_store_return_value (gdbarch, sparc_store_return_value);
3600 // OBSOLETE tdep->has_fpu = 1; /* (all but sparclet and sparclite) */
3602 tdep->fp_register_bytes = 64 * 4;
3603 tdep->print_insn_mach = bfd_mach_sparc_v9a;
3607 /* Hook in OS ABI-specific overrides, if they have been registered. */
3608 gdbarch_init_osabi (info, gdbarch);
3614 sparc_dump_tdep (struct gdbarch *current_gdbarch, struct ui_file *file)
3616 struct gdbarch_tdep *tdep = gdbarch_tdep (current_gdbarch);
3622 // OBSOLETE fprintf_unfiltered (file, "sparc_dump_tdep: has_fpu = %d\n",
3623 // OBSOLETE tdep->has_fpu);
3625 fprintf_unfiltered (file, "sparc_dump_tdep: fp_register_bytes = %d\n",
3626 tdep->fp_register_bytes);
3627 fprintf_unfiltered (file, "sparc_dump_tdep: y_regnum = %d\n",
3629 fprintf_unfiltered (file, "sparc_dump_tdep: fp_max_regnum = %d\n",
3630 tdep->fp_max_regnum);
3631 fprintf_unfiltered (file, "sparc_dump_tdep: intreg_size = %d\n",
3633 fprintf_unfiltered (file, "sparc_dump_tdep: reg_save_offset = %d\n",
3634 tdep->reg_save_offset);
3635 fprintf_unfiltered (file, "sparc_dump_tdep: call_dummy_call_offset = %d\n",
3636 tdep->call_dummy_call_offset);
3637 fprintf_unfiltered (file, "sparc_dump_tdep: print_insn_match = %d\n",
3638 tdep->print_insn_mach);