1 /* Target-dependent code for PowerPC systems using the SVR4 ABI
2 for GDB, the GNU debugger.
4 Copyright (C) 2000, 2001, 2002, 2003, 2005, 2007, 2008, 2009
5 Free Software Foundation, Inc.
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 3 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, see <http://www.gnu.org/licenses/>. */
27 #include "gdb_string.h"
28 #include "gdb_assert.h"
34 /* Pass the arguments in either registers, or in the stack. Using the
35 ppc sysv ABI, the first eight words of the argument list (that might
36 be less than eight parameters if some parameters occupy more than one
37 word) are passed in r3..r10 registers. float and double parameters are
38 passed in fpr's, in addition to that. Rest of the parameters if any
39 are passed in user stack.
41 If the function is returning a structure, then the return address is passed
42 in r3, then the first 7 words of the parametes can be passed in registers,
46 ppc_sysv_abi_push_dummy_call (struct gdbarch
*gdbarch
, struct value
*function
,
47 struct regcache
*regcache
, CORE_ADDR bp_addr
,
48 int nargs
, struct value
**args
, CORE_ADDR sp
,
49 int struct_return
, CORE_ADDR struct_addr
)
51 struct gdbarch_tdep
*tdep
= gdbarch_tdep (gdbarch
);
52 enum bfd_endian byte_order
= gdbarch_byte_order (gdbarch
);
54 int argspace
= 0; /* 0 is an initial wrong guess. */
57 gdb_assert (tdep
->wordsize
== 4);
59 regcache_cooked_read_unsigned (regcache
, gdbarch_sp_regnum (gdbarch
),
62 /* Go through the argument list twice.
64 Pass 1: Figure out how much new stack space is required for
65 arguments and pushed values. Unlike the PowerOpen ABI, the SysV
66 ABI doesn't reserve any extra space for parameters which are put
67 in registers, but does always push structures and then pass their
70 Pass 2: Replay the same computation but this time also write the
71 values out to the target. */
73 for (write_pass
= 0; write_pass
< 2; write_pass
++)
76 /* Next available floating point register for float and double
79 /* Next available general register for non-float, non-vector
82 /* Next available vector register for vector arguments. */
84 /* Arguments start above the "LR save word" and "Back chain". */
85 int argoffset
= 2 * tdep
->wordsize
;
86 /* Structures start after the arguments. */
87 int structoffset
= argoffset
+ argspace
;
89 /* If the function is returning a `struct', then the first word
90 (which will be passed in r3) is used for struct return
91 address. In that case we should advance one word and start
92 from r4 register to copy parameters. */
96 regcache_cooked_write_signed (regcache
,
97 tdep
->ppc_gp0_regnum
+ greg
,
102 for (argno
= 0; argno
< nargs
; argno
++)
104 struct value
*arg
= args
[argno
];
105 struct type
*type
= check_typedef (value_type (arg
));
106 int len
= TYPE_LENGTH (type
);
107 const bfd_byte
*val
= value_contents (arg
);
109 if (TYPE_CODE (type
) == TYPE_CODE_FLT
&& len
<= 8
110 && !tdep
->soft_float
)
112 /* Floating point value converted to "double" then
113 passed in an FP register, when the registers run out,
114 8 byte aligned stack is used. */
119 /* Always store the floating point value using
120 the register's floating-point format. */
121 gdb_byte regval
[MAX_REGISTER_SIZE
];
123 = register_type (gdbarch
, tdep
->ppc_fp0_regnum
+ freg
);
124 convert_typed_floating (val
, type
, regval
, regtype
);
125 regcache_cooked_write (regcache
,
126 tdep
->ppc_fp0_regnum
+ freg
,
133 /* The SysV ABI tells us to convert floats to
134 doubles before writing them to an 8 byte aligned
135 stack location. Unfortunately GCC does not do
136 that, and stores floats into 4 byte aligned
137 locations without converting them to doubles.
138 Since there is no know compiler that actually
139 follows the ABI here, we implement the GCC
142 /* Align to 4 bytes or 8 bytes depending on the type of
143 the argument (float or double). */
144 argoffset
= align_up (argoffset
, len
);
146 write_memory (sp
+ argoffset
, val
, len
);
150 else if (TYPE_CODE (type
) == TYPE_CODE_FLT
153 && (gdbarch_long_double_format (gdbarch
)
154 == floatformats_ibm_long_double
))
156 /* IBM long double passed in two FP registers if
157 available, otherwise 8-byte aligned stack. */
162 regcache_cooked_write (regcache
,
163 tdep
->ppc_fp0_regnum
+ freg
,
165 regcache_cooked_write (regcache
,
166 tdep
->ppc_fp0_regnum
+ freg
+ 1,
173 argoffset
= align_up (argoffset
, 8);
175 write_memory (sp
+ argoffset
, val
, len
);
180 && (TYPE_CODE (type
) == TYPE_CODE_INT
/* long long */
181 || TYPE_CODE (type
) == TYPE_CODE_FLT
/* double */
182 || (TYPE_CODE (type
) == TYPE_CODE_DECFLOAT
183 && tdep
->soft_float
)))
185 /* "long long" or soft-float "double" or "_Decimal64"
186 passed in an odd/even register pair with the low
187 addressed word in the odd register and the high
188 addressed word in the even register, or when the
189 registers run out an 8 byte aligned stack
193 /* Just in case GREG was 10. */
195 argoffset
= align_up (argoffset
, 8);
197 write_memory (sp
+ argoffset
, val
, len
);
202 /* Must start on an odd register - r3/r4 etc. */
207 regcache_cooked_write (regcache
,
208 tdep
->ppc_gp0_regnum
+ greg
+ 0,
210 regcache_cooked_write (regcache
,
211 tdep
->ppc_gp0_regnum
+ greg
+ 1,
218 && ((TYPE_CODE (type
) == TYPE_CODE_FLT
219 && (gdbarch_long_double_format (gdbarch
)
220 == floatformats_ibm_long_double
))
221 || (TYPE_CODE (type
) == TYPE_CODE_DECFLOAT
222 && tdep
->soft_float
)))
224 /* Soft-float IBM long double or _Decimal128 passed in
225 four consecutive registers, or on the stack. The
226 registers are not necessarily odd/even pairs. */
230 argoffset
= align_up (argoffset
, 8);
232 write_memory (sp
+ argoffset
, val
, len
);
239 regcache_cooked_write (regcache
,
240 tdep
->ppc_gp0_regnum
+ greg
+ 0,
242 regcache_cooked_write (regcache
,
243 tdep
->ppc_gp0_regnum
+ greg
+ 1,
245 regcache_cooked_write (regcache
,
246 tdep
->ppc_gp0_regnum
+ greg
+ 2,
248 regcache_cooked_write (regcache
,
249 tdep
->ppc_gp0_regnum
+ greg
+ 3,
255 else if (TYPE_CODE (type
) == TYPE_CODE_DECFLOAT
&& len
<= 8
256 && !tdep
->soft_float
)
258 /* 32-bit and 64-bit decimal floats go in f1 .. f8. They can
265 gdb_byte regval
[MAX_REGISTER_SIZE
];
268 /* 32-bit decimal floats are right aligned in the
270 if (TYPE_LENGTH (type
) == 4)
272 memcpy (regval
+ 4, val
, 4);
278 regcache_cooked_write (regcache
,
279 tdep
->ppc_fp0_regnum
+ freg
, p
);
286 argoffset
= align_up (argoffset
, len
);
289 /* Write value in the stack's parameter save area. */
290 write_memory (sp
+ argoffset
, val
, len
);
295 else if (TYPE_CODE (type
) == TYPE_CODE_DECFLOAT
&& len
== 16
296 && !tdep
->soft_float
)
298 /* 128-bit decimal floats go in f2 .. f7, always in even/odd
299 pairs. They can end up in memory, using two doublewords. */
303 /* Make sure freg is even. */
308 regcache_cooked_write (regcache
,
309 tdep
->ppc_fp0_regnum
+ freg
, val
);
310 regcache_cooked_write (regcache
,
311 tdep
->ppc_fp0_regnum
+ freg
+ 1, val
+ 8);
316 argoffset
= align_up (argoffset
, 8);
319 write_memory (sp
+ argoffset
, val
, 16);
324 /* If a 128-bit decimal float goes to the stack because only f7
325 and f8 are free (thus there's no even/odd register pair
326 available), these registers should be marked as occupied.
327 Hence we increase freg even when writing to memory. */
331 && TYPE_CODE (type
) == TYPE_CODE_ARRAY
332 && TYPE_VECTOR (type
)
333 && tdep
->vector_abi
== POWERPC_VEC_ALTIVEC
)
335 /* Vector parameter passed in an Altivec register, or
336 when that runs out, 16 byte aligned stack location. */
340 regcache_cooked_write (regcache
,
341 tdep
->ppc_vr0_regnum
+ vreg
, val
);
346 argoffset
= align_up (argoffset
, 16);
348 write_memory (sp
+ argoffset
, val
, 16);
353 && TYPE_CODE (type
) == TYPE_CODE_ARRAY
354 && TYPE_VECTOR (type
)
355 && tdep
->vector_abi
== POWERPC_VEC_SPE
)
357 /* Vector parameter passed in an e500 register, or when
358 that runs out, 8 byte aligned stack location. Note
359 that since e500 vector and general purpose registers
360 both map onto the same underlying register set, a
361 "greg" and not a "vreg" is consumed here. A cooked
362 write stores the value in the correct locations
363 within the raw register cache. */
367 regcache_cooked_write (regcache
,
368 tdep
->ppc_ev0_regnum
+ greg
, val
);
373 argoffset
= align_up (argoffset
, 8);
375 write_memory (sp
+ argoffset
, val
, 8);
381 /* Reduce the parameter down to something that fits in a
383 gdb_byte word
[MAX_REGISTER_SIZE
];
384 memset (word
, 0, MAX_REGISTER_SIZE
);
385 if (len
> tdep
->wordsize
386 || TYPE_CODE (type
) == TYPE_CODE_STRUCT
387 || TYPE_CODE (type
) == TYPE_CODE_UNION
)
389 /* Structs and large values are put in an
390 aligned stack slot ... */
391 if (TYPE_CODE (type
) == TYPE_CODE_ARRAY
392 && TYPE_VECTOR (type
)
394 structoffset
= align_up (structoffset
, 16);
396 structoffset
= align_up (structoffset
, 8);
399 write_memory (sp
+ structoffset
, val
, len
);
400 /* ... and then a "word" pointing to that address is
401 passed as the parameter. */
402 store_unsigned_integer (word
, tdep
->wordsize
, byte_order
,
406 else if (TYPE_CODE (type
) == TYPE_CODE_INT
)
407 /* Sign or zero extend the "int" into a "word". */
408 store_unsigned_integer (word
, tdep
->wordsize
, byte_order
,
409 unpack_long (type
, val
));
411 /* Always goes in the low address. */
412 memcpy (word
, val
, len
);
413 /* Store that "word" in a register, or on the stack.
414 The words have "4" byte alignment. */
418 regcache_cooked_write (regcache
,
419 tdep
->ppc_gp0_regnum
+ greg
, word
);
424 argoffset
= align_up (argoffset
, tdep
->wordsize
);
426 write_memory (sp
+ argoffset
, word
, tdep
->wordsize
);
427 argoffset
+= tdep
->wordsize
;
432 /* Compute the actual stack space requirements. */
435 /* Remember the amount of space needed by the arguments. */
436 argspace
= argoffset
;
437 /* Allocate space for both the arguments and the structures. */
438 sp
-= (argoffset
+ structoffset
);
439 /* Ensure that the stack is still 16 byte aligned. */
440 sp
= align_down (sp
, 16);
443 /* The psABI says that "A caller of a function that takes a
444 variable argument list shall set condition register bit 6 to
445 1 if it passes one or more arguments in the floating-point
446 registers. It is strongly recommended that the caller set the
447 bit to 0 otherwise..." Doing this for normal functions too
453 regcache_cooked_read_unsigned (regcache
, tdep
->ppc_cr_regnum
, &cr
);
458 regcache_cooked_write_unsigned (regcache
, tdep
->ppc_cr_regnum
, cr
);
463 regcache_cooked_write_signed (regcache
, gdbarch_sp_regnum (gdbarch
), sp
);
465 /* Write the backchain (it occupies WORDSIZED bytes). */
466 write_memory_signed_integer (sp
, tdep
->wordsize
, byte_order
, saved_sp
);
468 /* Point the inferior function call's return address at the dummy's
470 regcache_cooked_write_signed (regcache
, tdep
->ppc_lr_regnum
, bp_addr
);
475 /* Handle the return-value conventions for Decimal Floating Point values
476 in both ppc32 and ppc64, which are the same. */
478 get_decimal_float_return_value (struct gdbarch
*gdbarch
, struct type
*valtype
,
479 struct regcache
*regcache
, gdb_byte
*readbuf
,
480 const gdb_byte
*writebuf
)
482 struct gdbarch_tdep
*tdep
= gdbarch_tdep (gdbarch
);
484 gdb_assert (TYPE_CODE (valtype
) == TYPE_CODE_DECFLOAT
);
486 /* 32-bit and 64-bit decimal floats in f1. */
487 if (TYPE_LENGTH (valtype
) <= 8)
489 if (writebuf
!= NULL
)
491 gdb_byte regval
[MAX_REGISTER_SIZE
];
494 /* 32-bit decimal float is right aligned in the doubleword. */
495 if (TYPE_LENGTH (valtype
) == 4)
497 memcpy (regval
+ 4, writebuf
, 4);
503 regcache_cooked_write (regcache
, tdep
->ppc_fp0_regnum
+ 1, p
);
507 regcache_cooked_read (regcache
, tdep
->ppc_fp0_regnum
+ 1, readbuf
);
509 /* Left align 32-bit decimal float. */
510 if (TYPE_LENGTH (valtype
) == 4)
511 memcpy (readbuf
, readbuf
+ 4, 4);
514 /* 128-bit decimal floats in f2,f3. */
515 else if (TYPE_LENGTH (valtype
) == 16)
517 if (writebuf
!= NULL
|| readbuf
!= NULL
)
521 for (i
= 0; i
< 2; i
++)
523 if (writebuf
!= NULL
)
524 regcache_cooked_write (regcache
, tdep
->ppc_fp0_regnum
+ 2 + i
,
527 regcache_cooked_read (regcache
, tdep
->ppc_fp0_regnum
+ 2 + i
,
534 internal_error (__FILE__
, __LINE__
, "Unknown decimal float size.");
536 return RETURN_VALUE_REGISTER_CONVENTION
;
539 /* Handle the return-value conventions specified by the SysV 32-bit
540 PowerPC ABI (including all the supplements):
542 no floating-point: floating-point values returned using 32-bit
543 general-purpose registers.
545 Altivec: 128-bit vectors returned using vector registers.
547 e500: 64-bit vectors returned using the full full 64 bit EV
548 register, floating-point values returned using 32-bit
549 general-purpose registers.
551 GCC (broken): Small struct values right (instead of left) aligned
552 when returned in general-purpose registers. */
554 static enum return_value_convention
555 do_ppc_sysv_return_value (struct gdbarch
*gdbarch
, struct type
*type
,
556 struct regcache
*regcache
, gdb_byte
*readbuf
,
557 const gdb_byte
*writebuf
, int broken_gcc
)
559 struct gdbarch_tdep
*tdep
= gdbarch_tdep (gdbarch
);
560 enum bfd_endian byte_order
= gdbarch_byte_order (gdbarch
);
561 gdb_assert (tdep
->wordsize
== 4);
562 if (TYPE_CODE (type
) == TYPE_CODE_FLT
563 && TYPE_LENGTH (type
) <= 8
564 && !tdep
->soft_float
)
568 /* Floats and doubles stored in "f1". Convert the value to
569 the required type. */
570 gdb_byte regval
[MAX_REGISTER_SIZE
];
571 struct type
*regtype
= register_type (gdbarch
,
572 tdep
->ppc_fp0_regnum
+ 1);
573 regcache_cooked_read (regcache
, tdep
->ppc_fp0_regnum
+ 1, regval
);
574 convert_typed_floating (regval
, regtype
, readbuf
, type
);
578 /* Floats and doubles stored in "f1". Convert the value to
579 the register's "double" type. */
580 gdb_byte regval
[MAX_REGISTER_SIZE
];
581 struct type
*regtype
= register_type (gdbarch
, tdep
->ppc_fp0_regnum
);
582 convert_typed_floating (writebuf
, type
, regval
, regtype
);
583 regcache_cooked_write (regcache
, tdep
->ppc_fp0_regnum
+ 1, regval
);
585 return RETURN_VALUE_REGISTER_CONVENTION
;
587 if (TYPE_CODE (type
) == TYPE_CODE_FLT
588 && TYPE_LENGTH (type
) == 16
590 && (gdbarch_long_double_format (gdbarch
) == floatformats_ibm_long_double
))
592 /* IBM long double stored in f1 and f2. */
595 regcache_cooked_read (regcache
, tdep
->ppc_fp0_regnum
+ 1, readbuf
);
596 regcache_cooked_read (regcache
, tdep
->ppc_fp0_regnum
+ 2,
601 regcache_cooked_write (regcache
, tdep
->ppc_fp0_regnum
+ 1, writebuf
);
602 regcache_cooked_write (regcache
, tdep
->ppc_fp0_regnum
+ 2,
605 return RETURN_VALUE_REGISTER_CONVENTION
;
607 if (TYPE_LENGTH (type
) == 16
608 && ((TYPE_CODE (type
) == TYPE_CODE_FLT
609 && (gdbarch_long_double_format (gdbarch
) == floatformats_ibm_long_double
))
610 || (TYPE_CODE (type
) == TYPE_CODE_DECFLOAT
&& tdep
->soft_float
)))
612 /* Soft-float IBM long double or _Decimal128 stored in r3, r4,
616 regcache_cooked_read (regcache
, tdep
->ppc_gp0_regnum
+ 3, readbuf
);
617 regcache_cooked_read (regcache
, tdep
->ppc_gp0_regnum
+ 4,
619 regcache_cooked_read (regcache
, tdep
->ppc_gp0_regnum
+ 5,
621 regcache_cooked_read (regcache
, tdep
->ppc_gp0_regnum
+ 6,
626 regcache_cooked_write (regcache
, tdep
->ppc_gp0_regnum
+ 3, writebuf
);
627 regcache_cooked_write (regcache
, tdep
->ppc_gp0_regnum
+ 4,
629 regcache_cooked_write (regcache
, tdep
->ppc_gp0_regnum
+ 5,
631 regcache_cooked_write (regcache
, tdep
->ppc_gp0_regnum
+ 6,
634 return RETURN_VALUE_REGISTER_CONVENTION
;
636 if ((TYPE_CODE (type
) == TYPE_CODE_INT
&& TYPE_LENGTH (type
) == 8)
637 || (TYPE_CODE (type
) == TYPE_CODE_FLT
&& TYPE_LENGTH (type
) == 8)
638 || (TYPE_CODE (type
) == TYPE_CODE_DECFLOAT
&& TYPE_LENGTH (type
) == 8
639 && tdep
->soft_float
))
643 /* A long long, double or _Decimal64 stored in the 32 bit
645 regcache_cooked_read (regcache
, tdep
->ppc_gp0_regnum
+ 3,
647 regcache_cooked_read (regcache
, tdep
->ppc_gp0_regnum
+ 4,
652 /* A long long, double or _Decimal64 stored in the 32 bit
654 regcache_cooked_write (regcache
, tdep
->ppc_gp0_regnum
+ 3,
656 regcache_cooked_write (regcache
, tdep
->ppc_gp0_regnum
+ 4,
659 return RETURN_VALUE_REGISTER_CONVENTION
;
661 if (TYPE_CODE (type
) == TYPE_CODE_DECFLOAT
&& !tdep
->soft_float
)
662 return get_decimal_float_return_value (gdbarch
, type
, regcache
, readbuf
,
664 else if ((TYPE_CODE (type
) == TYPE_CODE_INT
665 || TYPE_CODE (type
) == TYPE_CODE_CHAR
666 || TYPE_CODE (type
) == TYPE_CODE_BOOL
667 || TYPE_CODE (type
) == TYPE_CODE_PTR
668 || TYPE_CODE (type
) == TYPE_CODE_REF
669 || TYPE_CODE (type
) == TYPE_CODE_ENUM
)
670 && TYPE_LENGTH (type
) <= tdep
->wordsize
)
674 /* Some sort of integer stored in r3. Since TYPE isn't
675 bigger than the register, sign extension isn't a problem
676 - just do everything unsigned. */
678 regcache_cooked_read_unsigned (regcache
, tdep
->ppc_gp0_regnum
+ 3,
680 store_unsigned_integer (readbuf
, TYPE_LENGTH (type
), byte_order
,
685 /* Some sort of integer stored in r3. Use unpack_long since
686 that should handle any required sign extension. */
687 regcache_cooked_write_unsigned (regcache
, tdep
->ppc_gp0_regnum
+ 3,
688 unpack_long (type
, writebuf
));
690 return RETURN_VALUE_REGISTER_CONVENTION
;
692 if (TYPE_LENGTH (type
) == 16
693 && TYPE_CODE (type
) == TYPE_CODE_ARRAY
694 && TYPE_VECTOR (type
)
695 && tdep
->vector_abi
== POWERPC_VEC_ALTIVEC
)
699 /* Altivec places the return value in "v2". */
700 regcache_cooked_read (regcache
, tdep
->ppc_vr0_regnum
+ 2, readbuf
);
704 /* Altivec places the return value in "v2". */
705 regcache_cooked_write (regcache
, tdep
->ppc_vr0_regnum
+ 2, writebuf
);
707 return RETURN_VALUE_REGISTER_CONVENTION
;
709 if (TYPE_LENGTH (type
) == 16
710 && TYPE_CODE (type
) == TYPE_CODE_ARRAY
711 && TYPE_VECTOR (type
)
712 && tdep
->vector_abi
== POWERPC_VEC_GENERIC
)
714 /* GCC -maltivec -mabi=no-altivec returns vectors in r3/r4/r5/r6.
715 GCC without AltiVec returns them in memory, but it warns about
716 ABI risks in that case; we don't try to support it. */
719 regcache_cooked_read (regcache
, tdep
->ppc_gp0_regnum
+ 3,
721 regcache_cooked_read (regcache
, tdep
->ppc_gp0_regnum
+ 4,
723 regcache_cooked_read (regcache
, tdep
->ppc_gp0_regnum
+ 5,
725 regcache_cooked_read (regcache
, tdep
->ppc_gp0_regnum
+ 6,
730 regcache_cooked_write (regcache
, tdep
->ppc_gp0_regnum
+ 3,
732 regcache_cooked_write (regcache
, tdep
->ppc_gp0_regnum
+ 4,
734 regcache_cooked_write (regcache
, tdep
->ppc_gp0_regnum
+ 5,
736 regcache_cooked_write (regcache
, tdep
->ppc_gp0_regnum
+ 6,
739 return RETURN_VALUE_REGISTER_CONVENTION
;
741 if (TYPE_LENGTH (type
) == 8
742 && TYPE_CODE (type
) == TYPE_CODE_ARRAY
743 && TYPE_VECTOR (type
)
744 && tdep
->vector_abi
== POWERPC_VEC_SPE
)
746 /* The e500 ABI places return values for the 64-bit DSP types
747 (__ev64_opaque__) in r3. However, in GDB-speak, ev3
748 corresponds to the entire r3 value for e500, whereas GDB's r3
749 only corresponds to the least significant 32-bits. So place
750 the 64-bit DSP type's value in ev3. */
752 regcache_cooked_read (regcache
, tdep
->ppc_ev0_regnum
+ 3, readbuf
);
754 regcache_cooked_write (regcache
, tdep
->ppc_ev0_regnum
+ 3, writebuf
);
755 return RETURN_VALUE_REGISTER_CONVENTION
;
757 if (broken_gcc
&& TYPE_LENGTH (type
) <= 8)
759 /* GCC screwed up for structures or unions whose size is less
760 than or equal to 8 bytes.. Instead of left-aligning, it
761 right-aligns the data into the buffer formed by r3, r4. */
762 gdb_byte regvals
[MAX_REGISTER_SIZE
* 2];
763 int len
= TYPE_LENGTH (type
);
764 int offset
= (2 * tdep
->wordsize
- len
) % tdep
->wordsize
;
768 regcache_cooked_read (regcache
, tdep
->ppc_gp0_regnum
+ 3,
769 regvals
+ 0 * tdep
->wordsize
);
770 if (len
> tdep
->wordsize
)
771 regcache_cooked_read (regcache
, tdep
->ppc_gp0_regnum
+ 4,
772 regvals
+ 1 * tdep
->wordsize
);
773 memcpy (readbuf
, regvals
+ offset
, len
);
777 memset (regvals
, 0, sizeof regvals
);
778 memcpy (regvals
+ offset
, writebuf
, len
);
779 regcache_cooked_write (regcache
, tdep
->ppc_gp0_regnum
+ 3,
780 regvals
+ 0 * tdep
->wordsize
);
781 if (len
> tdep
->wordsize
)
782 regcache_cooked_write (regcache
, tdep
->ppc_gp0_regnum
+ 4,
783 regvals
+ 1 * tdep
->wordsize
);
786 return RETURN_VALUE_REGISTER_CONVENTION
;
788 if (TYPE_LENGTH (type
) <= 8)
792 /* This matches SVr4 PPC, it does not match GCC. */
793 /* The value is right-padded to 8 bytes and then loaded, as
794 two "words", into r3/r4. */
795 gdb_byte regvals
[MAX_REGISTER_SIZE
* 2];
796 regcache_cooked_read (regcache
, tdep
->ppc_gp0_regnum
+ 3,
797 regvals
+ 0 * tdep
->wordsize
);
798 if (TYPE_LENGTH (type
) > tdep
->wordsize
)
799 regcache_cooked_read (regcache
, tdep
->ppc_gp0_regnum
+ 4,
800 regvals
+ 1 * tdep
->wordsize
);
801 memcpy (readbuf
, regvals
, TYPE_LENGTH (type
));
805 /* This matches SVr4 PPC, it does not match GCC. */
806 /* The value is padded out to 8 bytes and then loaded, as
807 two "words" into r3/r4. */
808 gdb_byte regvals
[MAX_REGISTER_SIZE
* 2];
809 memset (regvals
, 0, sizeof regvals
);
810 memcpy (regvals
, writebuf
, TYPE_LENGTH (type
));
811 regcache_cooked_write (regcache
, tdep
->ppc_gp0_regnum
+ 3,
812 regvals
+ 0 * tdep
->wordsize
);
813 if (TYPE_LENGTH (type
) > tdep
->wordsize
)
814 regcache_cooked_write (regcache
, tdep
->ppc_gp0_regnum
+ 4,
815 regvals
+ 1 * tdep
->wordsize
);
817 return RETURN_VALUE_REGISTER_CONVENTION
;
819 return RETURN_VALUE_STRUCT_CONVENTION
;
822 enum return_value_convention
823 ppc_sysv_abi_return_value (struct gdbarch
*gdbarch
, struct type
*func_type
,
824 struct type
*valtype
, struct regcache
*regcache
,
825 gdb_byte
*readbuf
, const gdb_byte
*writebuf
)
827 return do_ppc_sysv_return_value (gdbarch
, valtype
, regcache
, readbuf
,
831 enum return_value_convention
832 ppc_sysv_abi_broken_return_value (struct gdbarch
*gdbarch
,
833 struct type
*func_type
,
834 struct type
*valtype
,
835 struct regcache
*regcache
,
836 gdb_byte
*readbuf
, const gdb_byte
*writebuf
)
838 return do_ppc_sysv_return_value (gdbarch
, valtype
, regcache
, readbuf
,
842 /* The helper function for 64-bit SYSV push_dummy_call. Converts the
843 function's code address back into the function's descriptor
846 Find a value for the TOC register. Every symbol should have both
847 ".FN" and "FN" in the minimal symbol table. "FN" points at the
848 FN's descriptor, while ".FN" points at the entry point (which
849 matches FUNC_ADDR). Need to reverse from FUNC_ADDR back to the
850 FN's descriptor address (while at the same time being careful to
851 find "FN" in the same object file as ".FN"). */
854 convert_code_addr_to_desc_addr (CORE_ADDR code_addr
, CORE_ADDR
*desc_addr
)
856 struct obj_section
*dot_fn_section
;
857 struct minimal_symbol
*dot_fn
;
858 struct minimal_symbol
*fn
;
860 /* Find the minimal symbol that corresponds to CODE_ADDR (should
861 have a name of the form ".FN"). */
862 dot_fn
= lookup_minimal_symbol_by_pc (code_addr
);
863 if (dot_fn
== NULL
|| SYMBOL_LINKAGE_NAME (dot_fn
)[0] != '.')
865 /* Get the section that contains CODE_ADDR. Need this for the
866 "objfile" that it contains. */
867 dot_fn_section
= find_pc_section (code_addr
);
868 if (dot_fn_section
== NULL
|| dot_fn_section
->objfile
== NULL
)
870 /* Now find the corresponding "FN" (dropping ".") minimal symbol's
871 address. Only look for the minimal symbol in ".FN"'s object file
872 - avoids problems when two object files (i.e., shared libraries)
873 contain a minimal symbol with the same name. */
874 fn
= lookup_minimal_symbol (SYMBOL_LINKAGE_NAME (dot_fn
) + 1, NULL
,
875 dot_fn_section
->objfile
);
878 /* Found a descriptor. */
879 (*desc_addr
) = SYMBOL_VALUE_ADDRESS (fn
);
883 /* Pass the arguments in either registers, or in the stack. Using the
886 This implements a dumbed down version of the ABI. It always writes
887 values to memory, GPR and FPR, even when not necessary. Doing this
888 greatly simplifies the logic. */
891 ppc64_sysv_abi_push_dummy_call (struct gdbarch
*gdbarch
, struct value
*function
,
892 struct regcache
*regcache
, CORE_ADDR bp_addr
,
893 int nargs
, struct value
**args
, CORE_ADDR sp
,
894 int struct_return
, CORE_ADDR struct_addr
)
896 CORE_ADDR func_addr
= find_function_addr (function
, NULL
);
897 struct gdbarch_tdep
*tdep
= gdbarch_tdep (gdbarch
);
898 enum bfd_endian byte_order
= gdbarch_byte_order (gdbarch
);
900 /* See for-loop comment below. */
902 /* Size of the Altivec's vector parameter region, the final value is
903 computed in the for-loop below. */
904 LONGEST vparam_size
= 0;
905 /* Size of the general parameter region, the final value is computed
906 in the for-loop below. */
907 LONGEST gparam_size
= 0;
908 /* Kevin writes ... I don't mind seeing tdep->wordsize used in the
909 calls to align_up(), align_down(), etc. because this makes it
910 easier to reuse this code (in a copy/paste sense) in the future,
911 but it is a 64-bit ABI and asserting that the wordsize is 8 bytes
912 at some point makes it easier to verify that this function is
913 correct without having to do a non-local analysis to figure out
914 the possible values of tdep->wordsize. */
915 gdb_assert (tdep
->wordsize
== 8);
917 /* This function exists to support a calling convention that
918 requires floating-point registers. It shouldn't be used on
919 processors that lack them. */
920 gdb_assert (ppc_floating_point_unit_p (gdbarch
));
922 /* By this stage in the proceedings, SP has been decremented by "red
923 zone size" + "struct return size". Fetch the stack-pointer from
924 before this and use that as the BACK_CHAIN. */
925 regcache_cooked_read_unsigned (regcache
, gdbarch_sp_regnum (gdbarch
),
928 /* Go through the argument list twice.
930 Pass 1: Compute the function call's stack space and register
933 Pass 2: Replay the same computation but this time also write the
934 values out to the target. */
936 for (write_pass
= 0; write_pass
< 2; write_pass
++)
939 /* Next available floating point register for float and double
942 /* Next available general register for non-vector (but possibly
945 /* Next available vector register for vector arguments. */
947 /* The address, at which the next general purpose parameter
948 (integer, struct, float, ...) should be saved. */
950 /* Address, at which the next Altivec vector parameter should be
956 /* During the first pass, GPARAM and VPARAM are more like
957 offsets (start address zero) than addresses. That way
958 they accumulate the total stack space each region
965 /* Decrement the stack pointer making space for the Altivec
966 and general on-stack parameters. Set vparam and gparam
967 to their corresponding regions. */
968 vparam
= align_down (sp
- vparam_size
, 16);
969 gparam
= align_down (vparam
- gparam_size
, 16);
970 /* Add in space for the TOC, link editor double word,
971 compiler double word, LR save area, CR save area. */
972 sp
= align_down (gparam
- 48, 16);
975 /* If the function is returning a `struct', then there is an
976 extra hidden parameter (which will be passed in r3)
977 containing the address of that struct.. In that case we
978 should advance one word and start from r4 register to copy
979 parameters. This also consumes one on-stack parameter slot. */
983 regcache_cooked_write_signed (regcache
,
984 tdep
->ppc_gp0_regnum
+ greg
,
987 gparam
= align_up (gparam
+ tdep
->wordsize
, tdep
->wordsize
);
990 for (argno
= 0; argno
< nargs
; argno
++)
992 struct value
*arg
= args
[argno
];
993 struct type
*type
= check_typedef (value_type (arg
));
994 const bfd_byte
*val
= value_contents (arg
);
996 if (TYPE_CODE (type
) == TYPE_CODE_FLT
&& TYPE_LENGTH (type
) <= 8)
998 /* Floats and Doubles go in f1 .. f13. They also
999 consume a left aligned GREG,, and can end up in
1003 gdb_byte regval
[MAX_REGISTER_SIZE
];
1006 /* Version 1.7 of the 64-bit PowerPC ELF ABI says:
1008 "Single precision floating point values are mapped to
1009 the first word in a single doubleword."
1011 And version 1.9 says:
1013 "Single precision floating point values are mapped to
1014 the second word in a single doubleword."
1016 GDB then writes single precision floating point values
1017 at both words in a doubleword, to support both ABIs. */
1018 if (TYPE_LENGTH (type
) == 4)
1020 memcpy (regval
, val
, 4);
1021 memcpy (regval
+ 4, val
, 4);
1027 /* Write value in the stack's parameter save area. */
1028 write_memory (gparam
, p
, 8);
1032 struct type
*regtype
1033 = register_type (gdbarch
, tdep
->ppc_fp0_regnum
);
1035 convert_typed_floating (val
, type
, regval
, regtype
);
1036 regcache_cooked_write (regcache
,
1037 tdep
->ppc_fp0_regnum
+ freg
,
1041 regcache_cooked_write (regcache
,
1042 tdep
->ppc_gp0_regnum
+ greg
,
1048 /* Always consume parameter stack space. */
1049 gparam
= align_up (gparam
+ 8, tdep
->wordsize
);
1051 else if (TYPE_CODE (type
) == TYPE_CODE_FLT
1052 && TYPE_LENGTH (type
) == 16
1053 && (gdbarch_long_double_format (gdbarch
)
1054 == floatformats_ibm_long_double
))
1056 /* IBM long double stored in two doublewords of the
1057 parameter save area and corresponding registers. */
1060 if (!tdep
->soft_float
&& freg
<= 13)
1062 regcache_cooked_write (regcache
,
1063 tdep
->ppc_fp0_regnum
+ freg
,
1066 regcache_cooked_write (regcache
,
1067 tdep
->ppc_fp0_regnum
+ freg
+ 1,
1072 regcache_cooked_write (regcache
,
1073 tdep
->ppc_gp0_regnum
+ greg
,
1076 regcache_cooked_write (regcache
,
1077 tdep
->ppc_gp0_regnum
+ greg
+ 1,
1080 write_memory (gparam
, val
, TYPE_LENGTH (type
));
1084 gparam
= align_up (gparam
+ TYPE_LENGTH (type
), tdep
->wordsize
);
1086 else if (TYPE_CODE (type
) == TYPE_CODE_DECFLOAT
1087 && TYPE_LENGTH (type
) <= 8)
1089 /* 32-bit and 64-bit decimal floats go in f1 .. f13. They can
1090 end up in memory. */
1093 gdb_byte regval
[MAX_REGISTER_SIZE
];
1096 /* 32-bit decimal floats are right aligned in the
1098 if (TYPE_LENGTH (type
) == 4)
1100 memcpy (regval
+ 4, val
, 4);
1106 /* Write value in the stack's parameter save area. */
1107 write_memory (gparam
, p
, 8);
1110 regcache_cooked_write (regcache
,
1111 tdep
->ppc_fp0_regnum
+ freg
, p
);
1116 /* Always consume parameter stack space. */
1117 gparam
= align_up (gparam
+ 8, tdep
->wordsize
);
1119 else if (TYPE_CODE (type
) == TYPE_CODE_DECFLOAT
&&
1120 TYPE_LENGTH (type
) == 16)
1122 /* 128-bit decimal floats go in f2 .. f12, always in even/odd
1123 pairs. They can end up in memory, using two doublewords. */
1128 /* Make sure freg is even. */
1130 regcache_cooked_write (regcache
,
1131 tdep
->ppc_fp0_regnum
+ freg
, val
);
1132 regcache_cooked_write (regcache
,
1133 tdep
->ppc_fp0_regnum
+ freg
+ 1, val
+ 8);
1136 write_memory (gparam
, val
, TYPE_LENGTH (type
));
1141 gparam
= align_up (gparam
+ TYPE_LENGTH (type
), tdep
->wordsize
);
1143 else if (TYPE_LENGTH (type
) == 16 && TYPE_VECTOR (type
)
1144 && TYPE_CODE (type
) == TYPE_CODE_ARRAY
1145 && tdep
->ppc_vr0_regnum
>= 0)
1147 /* In the Altivec ABI, vectors go in the vector
1148 registers v2 .. v13, or when that runs out, a vector
1149 annex which goes above all the normal parameters.
1150 NOTE: cagney/2003-09-21: This is a guess based on the
1151 PowerOpen Altivec ABI. */
1155 regcache_cooked_write (regcache
,
1156 tdep
->ppc_vr0_regnum
+ vreg
, val
);
1162 write_memory (vparam
, val
, TYPE_LENGTH (type
));
1163 vparam
= align_up (vparam
+ TYPE_LENGTH (type
), 16);
1166 else if ((TYPE_CODE (type
) == TYPE_CODE_INT
1167 || TYPE_CODE (type
) == TYPE_CODE_ENUM
1168 || TYPE_CODE (type
) == TYPE_CODE_BOOL
1169 || TYPE_CODE (type
) == TYPE_CODE_CHAR
1170 || TYPE_CODE (type
) == TYPE_CODE_PTR
1171 || TYPE_CODE (type
) == TYPE_CODE_REF
)
1172 && TYPE_LENGTH (type
) <= 8)
1174 /* Scalars and Pointers get sign[un]extended and go in
1175 gpr3 .. gpr10. They can also end up in memory. */
1178 /* Sign extend the value, then store it unsigned. */
1179 ULONGEST word
= unpack_long (type
, val
);
1180 /* Convert any function code addresses into
1182 if (TYPE_CODE (type
) == TYPE_CODE_PTR
1183 || TYPE_CODE (type
) == TYPE_CODE_REF
)
1185 struct type
*target_type
;
1186 target_type
= check_typedef (TYPE_TARGET_TYPE (type
));
1188 if (TYPE_CODE (target_type
) == TYPE_CODE_FUNC
1189 || TYPE_CODE (target_type
) == TYPE_CODE_METHOD
)
1191 CORE_ADDR desc
= word
;
1192 convert_code_addr_to_desc_addr (word
, &desc
);
1197 regcache_cooked_write_unsigned (regcache
,
1198 tdep
->ppc_gp0_regnum
+
1200 write_memory_unsigned_integer (gparam
, tdep
->wordsize
,
1204 gparam
= align_up (gparam
+ TYPE_LENGTH (type
), tdep
->wordsize
);
1209 for (byte
= 0; byte
< TYPE_LENGTH (type
);
1210 byte
+= tdep
->wordsize
)
1212 if (write_pass
&& greg
<= 10)
1214 gdb_byte regval
[MAX_REGISTER_SIZE
];
1215 int len
= TYPE_LENGTH (type
) - byte
;
1216 if (len
> tdep
->wordsize
)
1217 len
= tdep
->wordsize
;
1218 memset (regval
, 0, sizeof regval
);
1219 /* The ABI (version 1.9) specifies that values
1220 smaller than one doubleword are right-aligned
1221 and those larger are left-aligned. GCC
1222 versions before 3.4 implemented this
1224 <http://gcc.gnu.org/gcc-3.4/powerpc-abi.html>. */
1226 memcpy (regval
+ tdep
->wordsize
- len
,
1229 memcpy (regval
, val
+ byte
, len
);
1230 regcache_cooked_write (regcache
, greg
, regval
);
1236 /* WARNING: cagney/2003-09-21: Strictly speaking, this
1237 isn't necessary, unfortunately, GCC appears to get
1238 "struct convention" parameter passing wrong putting
1239 odd sized structures in memory instead of in a
1240 register. Work around this by always writing the
1241 value to memory. Fortunately, doing this
1242 simplifies the code. */
1243 int len
= TYPE_LENGTH (type
);
1244 if (len
< tdep
->wordsize
)
1245 write_memory (gparam
+ tdep
->wordsize
- len
, val
, len
);
1247 write_memory (gparam
, val
, len
);
1250 && TYPE_CODE (type
) == TYPE_CODE_STRUCT
1251 && TYPE_NFIELDS (type
) == 1
1252 && TYPE_LENGTH (type
) <= 16)
1254 /* The ABI (version 1.9) specifies that structs
1255 containing a single floating-point value, at any
1256 level of nesting of single-member structs, are
1257 passed in floating-point registers. */
1258 while (TYPE_CODE (type
) == TYPE_CODE_STRUCT
1259 && TYPE_NFIELDS (type
) == 1)
1260 type
= check_typedef (TYPE_FIELD_TYPE (type
, 0));
1261 if (TYPE_CODE (type
) == TYPE_CODE_FLT
)
1263 if (TYPE_LENGTH (type
) <= 8)
1267 gdb_byte regval
[MAX_REGISTER_SIZE
];
1268 struct type
*regtype
1269 = register_type (gdbarch
,
1270 tdep
->ppc_fp0_regnum
);
1271 convert_typed_floating (val
, type
, regval
,
1273 regcache_cooked_write (regcache
,
1274 (tdep
->ppc_fp0_regnum
1280 else if (TYPE_LENGTH (type
) == 16
1281 && (gdbarch_long_double_format (gdbarch
)
1282 == floatformats_ibm_long_double
))
1286 regcache_cooked_write (regcache
,
1287 (tdep
->ppc_fp0_regnum
1291 regcache_cooked_write (regcache
,
1292 (tdep
->ppc_fp0_regnum
1300 /* Always consume parameter stack space. */
1301 gparam
= align_up (gparam
+ TYPE_LENGTH (type
), tdep
->wordsize
);
1307 /* Save the true region sizes ready for the second pass. */
1308 vparam_size
= vparam
;
1309 /* Make certain that the general parameter save area is at
1310 least the minimum 8 registers (or doublewords) in size. */
1312 gparam_size
= 8 * tdep
->wordsize
;
1314 gparam_size
= gparam
;
1319 regcache_cooked_write_signed (regcache
, gdbarch_sp_regnum (gdbarch
), sp
);
1321 /* Write the backchain (it occupies WORDSIZED bytes). */
1322 write_memory_signed_integer (sp
, tdep
->wordsize
, byte_order
, back_chain
);
1324 /* Point the inferior function call's return address at the dummy's
1326 regcache_cooked_write_signed (regcache
, tdep
->ppc_lr_regnum
, bp_addr
);
1328 /* Use the func_addr to find the descriptor, and use that to find
1329 the TOC. If we're calling via a function pointer, the pointer
1330 itself identifies the descriptor. */
1332 struct type
*ftype
= check_typedef (value_type (function
));
1333 CORE_ADDR desc_addr
= value_as_address (function
);
1335 if (TYPE_CODE (ftype
) == TYPE_CODE_PTR
1336 || convert_code_addr_to_desc_addr (func_addr
, &desc_addr
))
1338 /* The TOC is the second double word in the descriptor. */
1340 read_memory_unsigned_integer (desc_addr
+ tdep
->wordsize
,
1341 tdep
->wordsize
, byte_order
);
1342 regcache_cooked_write_unsigned (regcache
,
1343 tdep
->ppc_gp0_regnum
+ 2, toc
);
1351 /* The 64 bit ABI return value convention.
1353 Return non-zero if the return-value is stored in a register, return
1354 0 if the return-value is instead stored on the stack (a.k.a.,
1355 struct return convention).
1357 For a return-value stored in a register: when WRITEBUF is non-NULL,
1358 copy the buffer to the corresponding register return-value location
1359 location; when READBUF is non-NULL, fill the buffer from the
1360 corresponding register return-value location. */
1361 enum return_value_convention
1362 ppc64_sysv_abi_return_value (struct gdbarch
*gdbarch
, struct type
*func_type
,
1363 struct type
*valtype
, struct regcache
*regcache
,
1364 gdb_byte
*readbuf
, const gdb_byte
*writebuf
)
1366 struct gdbarch_tdep
*tdep
= gdbarch_tdep (gdbarch
);
1367 enum bfd_endian byte_order
= gdbarch_byte_order (gdbarch
);
1369 /* This function exists to support a calling convention that
1370 requires floating-point registers. It shouldn't be used on
1371 processors that lack them. */
1372 gdb_assert (ppc_floating_point_unit_p (gdbarch
));
1374 /* Floats and doubles in F1. */
1375 if (TYPE_CODE (valtype
) == TYPE_CODE_FLT
&& TYPE_LENGTH (valtype
) <= 8)
1377 gdb_byte regval
[MAX_REGISTER_SIZE
];
1378 struct type
*regtype
= register_type (gdbarch
, tdep
->ppc_fp0_regnum
);
1379 if (writebuf
!= NULL
)
1381 convert_typed_floating (writebuf
, valtype
, regval
, regtype
);
1382 regcache_cooked_write (regcache
, tdep
->ppc_fp0_regnum
+ 1, regval
);
1384 if (readbuf
!= NULL
)
1386 regcache_cooked_read (regcache
, tdep
->ppc_fp0_regnum
+ 1, regval
);
1387 convert_typed_floating (regval
, regtype
, readbuf
, valtype
);
1389 return RETURN_VALUE_REGISTER_CONVENTION
;
1391 if (TYPE_CODE (valtype
) == TYPE_CODE_DECFLOAT
)
1392 return get_decimal_float_return_value (gdbarch
, valtype
, regcache
, readbuf
,
1394 /* Integers in r3. */
1395 if ((TYPE_CODE (valtype
) == TYPE_CODE_INT
1396 || TYPE_CODE (valtype
) == TYPE_CODE_ENUM
1397 || TYPE_CODE (valtype
) == TYPE_CODE_CHAR
1398 || TYPE_CODE (valtype
) == TYPE_CODE_BOOL
)
1399 && TYPE_LENGTH (valtype
) <= 8)
1401 if (writebuf
!= NULL
)
1403 /* Be careful to sign extend the value. */
1404 regcache_cooked_write_unsigned (regcache
, tdep
->ppc_gp0_regnum
+ 3,
1405 unpack_long (valtype
, writebuf
));
1407 if (readbuf
!= NULL
)
1409 /* Extract the integer from r3. Since this is truncating the
1410 value, there isn't a sign extension problem. */
1412 regcache_cooked_read_unsigned (regcache
, tdep
->ppc_gp0_regnum
+ 3,
1414 store_unsigned_integer (readbuf
, TYPE_LENGTH (valtype
), byte_order
,
1417 return RETURN_VALUE_REGISTER_CONVENTION
;
1419 /* All pointers live in r3. */
1420 if (TYPE_CODE (valtype
) == TYPE_CODE_PTR
1421 || TYPE_CODE (valtype
) == TYPE_CODE_REF
)
1423 /* All pointers live in r3. */
1424 if (writebuf
!= NULL
)
1425 regcache_cooked_write (regcache
, tdep
->ppc_gp0_regnum
+ 3, writebuf
);
1426 if (readbuf
!= NULL
)
1427 regcache_cooked_read (regcache
, tdep
->ppc_gp0_regnum
+ 3, readbuf
);
1428 return RETURN_VALUE_REGISTER_CONVENTION
;
1430 /* Array type has more than one use. */
1431 if (TYPE_CODE (valtype
) == TYPE_CODE_ARRAY
)
1433 /* Small character arrays are returned, right justified, in r3. */
1434 if (TYPE_LENGTH (valtype
) <= 8
1435 && TYPE_CODE (TYPE_TARGET_TYPE (valtype
)) == TYPE_CODE_INT
1436 && TYPE_LENGTH (TYPE_TARGET_TYPE (valtype
)) == 1)
1438 int offset
= (register_size (gdbarch
, tdep
->ppc_gp0_regnum
+ 3)
1439 - TYPE_LENGTH (valtype
));
1440 if (writebuf
!= NULL
)
1441 regcache_cooked_write_part (regcache
, tdep
->ppc_gp0_regnum
+ 3,
1442 offset
, TYPE_LENGTH (valtype
), writebuf
);
1443 if (readbuf
!= NULL
)
1444 regcache_cooked_read_part (regcache
, tdep
->ppc_gp0_regnum
+ 3,
1445 offset
, TYPE_LENGTH (valtype
), readbuf
);
1446 return RETURN_VALUE_REGISTER_CONVENTION
;
1448 /* A VMX vector is returned in v2. */
1449 if (TYPE_CODE (valtype
) == TYPE_CODE_ARRAY
1450 && TYPE_VECTOR (valtype
) && tdep
->ppc_vr0_regnum
>= 0)
1453 regcache_cooked_read (regcache
, tdep
->ppc_vr0_regnum
+ 2, readbuf
);
1455 regcache_cooked_write (regcache
, tdep
->ppc_vr0_regnum
+ 2, writebuf
);
1456 return RETURN_VALUE_REGISTER_CONVENTION
;
1459 /* Big floating point values get stored in adjacent floating
1460 point registers, starting with F1. */
1461 if (TYPE_CODE (valtype
) == TYPE_CODE_FLT
1462 && (TYPE_LENGTH (valtype
) == 16 || TYPE_LENGTH (valtype
) == 32))
1464 if (writebuf
|| readbuf
!= NULL
)
1467 for (i
= 0; i
< TYPE_LENGTH (valtype
) / 8; i
++)
1469 if (writebuf
!= NULL
)
1470 regcache_cooked_write (regcache
, tdep
->ppc_fp0_regnum
+ 1 + i
,
1471 (const bfd_byte
*) writebuf
+ i
* 8);
1472 if (readbuf
!= NULL
)
1473 regcache_cooked_read (regcache
, tdep
->ppc_fp0_regnum
+ 1 + i
,
1474 (bfd_byte
*) readbuf
+ i
* 8);
1477 return RETURN_VALUE_REGISTER_CONVENTION
;
1479 /* Complex values get returned in f1:f2, need to convert. */
1480 if (TYPE_CODE (valtype
) == TYPE_CODE_COMPLEX
1481 && (TYPE_LENGTH (valtype
) == 8 || TYPE_LENGTH (valtype
) == 16))
1483 if (regcache
!= NULL
)
1486 for (i
= 0; i
< 2; i
++)
1488 gdb_byte regval
[MAX_REGISTER_SIZE
];
1489 struct type
*regtype
=
1490 register_type (gdbarch
, tdep
->ppc_fp0_regnum
);
1491 if (writebuf
!= NULL
)
1493 convert_typed_floating ((const bfd_byte
*) writebuf
+
1494 i
* (TYPE_LENGTH (valtype
) / 2),
1495 valtype
, regval
, regtype
);
1496 regcache_cooked_write (regcache
,
1497 tdep
->ppc_fp0_regnum
+ 1 + i
,
1500 if (readbuf
!= NULL
)
1502 regcache_cooked_read (regcache
,
1503 tdep
->ppc_fp0_regnum
+ 1 + i
,
1505 convert_typed_floating (regval
, regtype
,
1506 (bfd_byte
*) readbuf
+
1507 i
* (TYPE_LENGTH (valtype
) / 2),
1512 return RETURN_VALUE_REGISTER_CONVENTION
;
1514 /* Big complex values get stored in f1:f4. */
1515 if (TYPE_CODE (valtype
) == TYPE_CODE_COMPLEX
&& TYPE_LENGTH (valtype
) == 32)
1517 if (regcache
!= NULL
)
1520 for (i
= 0; i
< 4; i
++)
1522 if (writebuf
!= NULL
)
1523 regcache_cooked_write (regcache
, tdep
->ppc_fp0_regnum
+ 1 + i
,
1524 (const bfd_byte
*) writebuf
+ i
* 8);
1525 if (readbuf
!= NULL
)
1526 regcache_cooked_read (regcache
, tdep
->ppc_fp0_regnum
+ 1 + i
,
1527 (bfd_byte
*) readbuf
+ i
* 8);
1530 return RETURN_VALUE_REGISTER_CONVENTION
;
1532 return RETURN_VALUE_STRUCT_CONVENTION
;