Regenerate configure and pot files with updated binutils version number.
[external/binutils.git] / gdb / ppc-sysv-tdep.c
1 /* Target-dependent code for PowerPC systems using the SVR4 ABI
2    for GDB, the GNU debugger.
3
4    Copyright (C) 2000-2018 Free Software Foundation, Inc.
5
6    This file is part of GDB.
7
8    This program is free software; you can redistribute it and/or modify
9    it under the terms of the GNU General Public License as published by
10    the Free Software Foundation; either version 3 of the License, or
11    (at your option) any later version.
12
13    This program is distributed in the hope that it will be useful,
14    but WITHOUT ANY WARRANTY; without even the implied warranty of
15    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16    GNU General Public License for more details.
17
18    You should have received a copy of the GNU General Public License
19    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */
20
21 #include "defs.h"
22 #include "gdbcore.h"
23 #include "inferior.h"
24 #include "regcache.h"
25 #include "value.h"
26 #include "ppc-tdep.h"
27 #include "target.h"
28 #include "objfiles.h"
29 #include "infcall.h"
30 #include "dwarf2.h"
31 #include "target-float.h"
32 #include <algorithm>
33
34
35 /* Check whether FTPYE is a (pointer to) function type that should use
36    the OpenCL vector ABI.  */
37
38 static int
39 ppc_sysv_use_opencl_abi (struct type *ftype)
40 {
41   ftype = check_typedef (ftype);
42
43   if (TYPE_CODE (ftype) == TYPE_CODE_PTR)
44     ftype = check_typedef (TYPE_TARGET_TYPE (ftype));
45
46   return (TYPE_CODE (ftype) == TYPE_CODE_FUNC
47           && TYPE_CALLING_CONVENTION (ftype) == DW_CC_GDB_IBM_OpenCL);
48 }
49
50 /* Pass the arguments in either registers, or in the stack.  Using the
51    ppc sysv ABI, the first eight words of the argument list (that might
52    be less than eight parameters if some parameters occupy more than one
53    word) are passed in r3..r10 registers.  float and double parameters are
54    passed in fpr's, in addition to that.  Rest of the parameters if any
55    are passed in user stack.
56
57    If the function is returning a structure, then the return address is passed
58    in r3, then the first 7 words of the parametes can be passed in registers,
59    starting from r4.  */
60
61 CORE_ADDR
62 ppc_sysv_abi_push_dummy_call (struct gdbarch *gdbarch, struct value *function,
63                               struct regcache *regcache, CORE_ADDR bp_addr,
64                               int nargs, struct value **args, CORE_ADDR sp,
65                               int struct_return, CORE_ADDR struct_addr)
66 {
67   struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
68   enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
69   int opencl_abi = ppc_sysv_use_opencl_abi (value_type (function));
70   ULONGEST saved_sp;
71   int argspace = 0;             /* 0 is an initial wrong guess.  */
72   int write_pass;
73
74   gdb_assert (tdep->wordsize == 4);
75
76   regcache_cooked_read_unsigned (regcache, gdbarch_sp_regnum (gdbarch),
77                                  &saved_sp);
78
79   /* Go through the argument list twice.
80
81      Pass 1: Figure out how much new stack space is required for
82      arguments and pushed values.  Unlike the PowerOpen ABI, the SysV
83      ABI doesn't reserve any extra space for parameters which are put
84      in registers, but does always push structures and then pass their
85      address.
86
87      Pass 2: Replay the same computation but this time also write the
88      values out to the target.  */
89
90   for (write_pass = 0; write_pass < 2; write_pass++)
91     {
92       int argno;
93       /* Next available floating point register for float and double
94          arguments.  */
95       int freg = 1;
96       /* Next available general register for non-float, non-vector
97          arguments.  */
98       int greg = 3;
99       /* Next available vector register for vector arguments.  */
100       int vreg = 2;
101       /* Arguments start above the "LR save word" and "Back chain".  */
102       int argoffset = 2 * tdep->wordsize;
103       /* Structures start after the arguments.  */
104       int structoffset = argoffset + argspace;
105
106       /* If the function is returning a `struct', then the first word
107          (which will be passed in r3) is used for struct return
108          address.  In that case we should advance one word and start
109          from r4 register to copy parameters.  */
110       if (struct_return)
111         {
112           if (write_pass)
113             regcache_cooked_write_signed (regcache,
114                                           tdep->ppc_gp0_regnum + greg,
115                                           struct_addr);
116           greg++;
117         }
118
119       for (argno = 0; argno < nargs; argno++)
120         {
121           struct value *arg = args[argno];
122           struct type *type = check_typedef (value_type (arg));
123           int len = TYPE_LENGTH (type);
124           const bfd_byte *val = value_contents (arg);
125
126           if (TYPE_CODE (type) == TYPE_CODE_FLT && len <= 8
127               && !tdep->soft_float)
128             {
129               /* Floating point value converted to "double" then
130                  passed in an FP register, when the registers run out,
131                  8 byte aligned stack is used.  */
132               if (freg <= 8)
133                 {
134                   if (write_pass)
135                     {
136                       /* Always store the floating point value using
137                          the register's floating-point format.  */
138                       gdb_byte regval[PPC_MAX_REGISTER_SIZE];
139                       struct type *regtype
140                         = register_type (gdbarch, tdep->ppc_fp0_regnum + freg);
141                       target_float_convert (val, type, regval, regtype);
142                       regcache->cooked_write (tdep->ppc_fp0_regnum + freg,
143                                               regval);
144                     }
145                   freg++;
146                 }
147               else
148                 {
149                   /* The SysV ABI tells us to convert floats to
150                      doubles before writing them to an 8 byte aligned
151                      stack location.  Unfortunately GCC does not do
152                      that, and stores floats into 4 byte aligned
153                      locations without converting them to doubles.
154                      Since there is no know compiler that actually
155                      follows the ABI here, we implement the GCC
156                      convention.  */
157
158                   /* Align to 4 bytes or 8 bytes depending on the type of
159                      the argument (float or double).  */
160                   argoffset = align_up (argoffset, len);
161                   if (write_pass)
162                       write_memory (sp + argoffset, val, len);
163                   argoffset += len;
164                 }
165             }
166           else if (TYPE_CODE (type) == TYPE_CODE_FLT
167                    && len == 16
168                    && !tdep->soft_float
169                    && (gdbarch_long_double_format (gdbarch)
170                        == floatformats_ibm_long_double))
171             {
172               /* IBM long double passed in two FP registers if
173                  available, otherwise 8-byte aligned stack.  */
174               if (freg <= 7)
175                 {
176                   if (write_pass)
177                     {
178                       regcache->cooked_write (tdep->ppc_fp0_regnum + freg, val);
179                       regcache->cooked_write (tdep->ppc_fp0_regnum + freg + 1,
180                                               val + 8);
181                     }
182                   freg += 2;
183                 }
184               else
185                 {
186                   argoffset = align_up (argoffset, 8);
187                   if (write_pass)
188                     write_memory (sp + argoffset, val, len);
189                   argoffset += 16;
190                 }
191             }
192           else if (len == 8
193                    && (TYPE_CODE (type) == TYPE_CODE_INT        /* long long */
194                        || TYPE_CODE (type) == TYPE_CODE_FLT     /* double */
195                        || (TYPE_CODE (type) == TYPE_CODE_DECFLOAT
196                            && tdep->soft_float)))
197             {
198               /* "long long" or soft-float "double" or "_Decimal64"
199                  passed in an odd/even register pair with the low
200                  addressed word in the odd register and the high
201                  addressed word in the even register, or when the
202                  registers run out an 8 byte aligned stack
203                  location.  */
204               if (greg > 9)
205                 {
206                   /* Just in case GREG was 10.  */
207                   greg = 11;
208                   argoffset = align_up (argoffset, 8);
209                   if (write_pass)
210                     write_memory (sp + argoffset, val, len);
211                   argoffset += 8;
212                 }
213               else
214                 {
215                   /* Must start on an odd register - r3/r4 etc.  */
216                   if ((greg & 1) == 0)
217                     greg++;
218                   if (write_pass)
219                     {
220                       regcache->cooked_write (tdep->ppc_gp0_regnum + greg + 0,
221                                               val + 0);
222                       regcache->cooked_write (tdep->ppc_gp0_regnum + greg + 1,
223                                               val + 4);
224                     }
225                   greg += 2;
226                 }
227             }
228           else if (len == 16
229                    && ((TYPE_CODE (type) == TYPE_CODE_FLT
230                         && (gdbarch_long_double_format (gdbarch)
231                             == floatformats_ibm_long_double))
232                        || (TYPE_CODE (type) == TYPE_CODE_DECFLOAT
233                            && tdep->soft_float)))
234             {
235               /* Soft-float IBM long double or _Decimal128 passed in
236                  four consecutive registers, or on the stack.  The
237                  registers are not necessarily odd/even pairs.  */
238               if (greg > 7)
239                 {
240                   greg = 11;
241                   argoffset = align_up (argoffset, 8);
242                   if (write_pass)
243                     write_memory (sp + argoffset, val, len);
244                   argoffset += 16;
245                 }
246               else
247                 {
248                   if (write_pass)
249                     {
250                       regcache->cooked_write (tdep->ppc_gp0_regnum + greg + 0,
251                                               val + 0);
252                       regcache->cooked_write (tdep->ppc_gp0_regnum + greg + 1,
253                                               val + 4);
254                       regcache->cooked_write (tdep->ppc_gp0_regnum + greg + 2,
255                                               val + 8);
256                       regcache->cooked_write (tdep->ppc_gp0_regnum + greg + 3,
257                                               val + 12);
258                     }
259                   greg += 4;
260                 }
261             }
262           else if (TYPE_CODE (type) == TYPE_CODE_DECFLOAT && len <= 8
263                    && !tdep->soft_float)
264             {
265               /* 32-bit and 64-bit decimal floats go in f1 .. f8.  They can
266                  end up in memory.  */
267
268               if (freg <= 8)
269                 {
270                   if (write_pass)
271                     {
272                       gdb_byte regval[PPC_MAX_REGISTER_SIZE];
273                       const gdb_byte *p;
274
275                       /* 32-bit decimal floats are right aligned in the
276                          doubleword.  */
277                       if (TYPE_LENGTH (type) == 4)
278                       {
279                         memcpy (regval + 4, val, 4);
280                         p = regval;
281                       }
282                       else
283                         p = val;
284
285                       regcache->cooked_write (tdep->ppc_fp0_regnum + freg, p);
286                     }
287
288                   freg++;
289                 }
290               else
291                 {
292                   argoffset = align_up (argoffset, len);
293
294                   if (write_pass)
295                     /* Write value in the stack's parameter save area.  */
296                     write_memory (sp + argoffset, val, len);
297
298                   argoffset += len;
299                 }
300             }
301           else if (TYPE_CODE (type) == TYPE_CODE_DECFLOAT && len == 16
302                    && !tdep->soft_float)
303             {
304               /* 128-bit decimal floats go in f2 .. f7, always in even/odd
305                  pairs.  They can end up in memory, using two doublewords.  */
306
307               if (freg <= 6)
308                 {
309                   /* Make sure freg is even.  */
310                   freg += freg & 1;
311
312                   if (write_pass)
313                     {
314                       regcache->cooked_write (tdep->ppc_fp0_regnum + freg, val);
315                       regcache->cooked_write (tdep->ppc_fp0_regnum + freg + 1,
316                                               val + 8);
317                     }
318                 }
319               else
320                 {
321                   argoffset = align_up (argoffset, 8);
322
323                   if (write_pass)
324                     write_memory (sp + argoffset, val, 16);
325
326                   argoffset += 16;
327                 }
328
329               /* If a 128-bit decimal float goes to the stack because only f7
330                  and f8 are free (thus there's no even/odd register pair
331                  available), these registers should be marked as occupied.
332                  Hence we increase freg even when writing to memory.  */
333               freg += 2;
334             }
335           else if (len < 16
336                    && TYPE_CODE (type) == TYPE_CODE_ARRAY
337                    && TYPE_VECTOR (type)
338                    && opencl_abi)
339             {
340               /* OpenCL vectors shorter than 16 bytes are passed as if
341                  a series of independent scalars.  */
342               struct type *eltype = check_typedef (TYPE_TARGET_TYPE (type));
343               int i, nelt = TYPE_LENGTH (type) / TYPE_LENGTH (eltype);
344
345               for (i = 0; i < nelt; i++)
346                 {
347                   const gdb_byte *elval = val + i * TYPE_LENGTH (eltype);
348
349                   if (TYPE_CODE (eltype) == TYPE_CODE_FLT && !tdep->soft_float)
350                     {
351                       if (freg <= 8)
352                         {
353                           if (write_pass)
354                             {
355                               int regnum = tdep->ppc_fp0_regnum + freg;
356                               gdb_byte regval[PPC_MAX_REGISTER_SIZE];
357                               struct type *regtype
358                                 = register_type (gdbarch, regnum);
359                               target_float_convert (elval, eltype,
360                                                     regval, regtype);
361                               regcache->cooked_write (regnum, regval);
362                             }
363                           freg++;
364                         }
365                       else
366                         {
367                           argoffset = align_up (argoffset, len);
368                           if (write_pass)
369                             write_memory (sp + argoffset, val, len);
370                           argoffset += len;
371                         }
372                     }
373                   else if (TYPE_LENGTH (eltype) == 8)
374                     {
375                       if (greg > 9)
376                         {
377                           /* Just in case GREG was 10.  */
378                           greg = 11;
379                           argoffset = align_up (argoffset, 8);
380                           if (write_pass)
381                             write_memory (sp + argoffset, elval,
382                                           TYPE_LENGTH (eltype));
383                           argoffset += 8;
384                         }
385                       else
386                         {
387                           /* Must start on an odd register - r3/r4 etc.  */
388                           if ((greg & 1) == 0)
389                             greg++;
390                           if (write_pass)
391                             {
392                               int regnum = tdep->ppc_gp0_regnum + greg;
393                               regcache->cooked_write (regnum + 0, elval + 0);
394                               regcache->cooked_write (regnum + 1, elval + 4);
395                             }
396                           greg += 2;
397                         }
398                     }
399                   else
400                     {
401                       gdb_byte word[PPC_MAX_REGISTER_SIZE];
402                       store_unsigned_integer (word, tdep->wordsize, byte_order,
403                                               unpack_long (eltype, elval));
404
405                       if (greg <= 10)
406                         {
407                           if (write_pass)
408                             regcache->cooked_write (tdep->ppc_gp0_regnum + greg,
409                                                     word);
410                           greg++;
411                         }
412                       else
413                         {
414                           argoffset = align_up (argoffset, tdep->wordsize);
415                           if (write_pass)
416                             write_memory (sp + argoffset, word, tdep->wordsize);
417                           argoffset += tdep->wordsize;
418                         }
419                     }
420                 }
421             }
422           else if (len >= 16
423                    && TYPE_CODE (type) == TYPE_CODE_ARRAY
424                    && TYPE_VECTOR (type)
425                    && opencl_abi)
426             {
427               /* OpenCL vectors 16 bytes or longer are passed as if
428                  a series of AltiVec vectors.  */
429               int i;
430
431               for (i = 0; i < len / 16; i++)
432                 {
433                   const gdb_byte *elval = val + i * 16;
434
435                   if (vreg <= 13)
436                     {
437                       if (write_pass)
438                         regcache->cooked_write (tdep->ppc_vr0_regnum + vreg,
439                                                 elval);
440                       vreg++;
441                     }
442                   else
443                     {
444                       argoffset = align_up (argoffset, 16);
445                       if (write_pass)
446                         write_memory (sp + argoffset, elval, 16);
447                       argoffset += 16;
448                     }
449                 }
450             }
451           else if (len == 16
452                    && TYPE_CODE (type) == TYPE_CODE_ARRAY
453                    && TYPE_VECTOR (type)
454                    && tdep->vector_abi == POWERPC_VEC_ALTIVEC)
455             {
456               /* Vector parameter passed in an Altivec register, or
457                  when that runs out, 16 byte aligned stack location.  */
458               if (vreg <= 13)
459                 {
460                   if (write_pass)
461                     regcache->cooked_write (tdep->ppc_vr0_regnum + vreg, val);
462                   vreg++;
463                 }
464               else
465                 {
466                   argoffset = align_up (argoffset, 16);
467                   if (write_pass)
468                     write_memory (sp + argoffset, val, 16);
469                   argoffset += 16;
470                 }
471             }
472           else if (len == 8
473                    && TYPE_CODE (type) == TYPE_CODE_ARRAY
474                    && TYPE_VECTOR (type)
475                    && tdep->vector_abi == POWERPC_VEC_SPE)
476             {
477               /* Vector parameter passed in an e500 register, or when
478                  that runs out, 8 byte aligned stack location.  Note
479                  that since e500 vector and general purpose registers
480                  both map onto the same underlying register set, a
481                  "greg" and not a "vreg" is consumed here.  A cooked
482                  write stores the value in the correct locations
483                  within the raw register cache.  */
484               if (greg <= 10)
485                 {
486                   if (write_pass)
487                     regcache->cooked_write (tdep->ppc_ev0_regnum + greg, val);
488                   greg++;
489                 }
490               else
491                 {
492                   argoffset = align_up (argoffset, 8);
493                   if (write_pass)
494                     write_memory (sp + argoffset, val, 8);
495                   argoffset += 8;
496                 }
497             }
498           else
499             {
500               /* Reduce the parameter down to something that fits in a
501                  "word".  */
502               gdb_byte word[PPC_MAX_REGISTER_SIZE];
503               memset (word, 0, PPC_MAX_REGISTER_SIZE);
504               if (len > tdep->wordsize
505                   || TYPE_CODE (type) == TYPE_CODE_STRUCT
506                   || TYPE_CODE (type) == TYPE_CODE_UNION)
507                 {
508                   /* Structs and large values are put in an
509                      aligned stack slot ...  */
510                   if (TYPE_CODE (type) == TYPE_CODE_ARRAY
511                       && TYPE_VECTOR (type)
512                       && len >= 16)
513                     structoffset = align_up (structoffset, 16);
514                   else
515                     structoffset = align_up (structoffset, 8);
516
517                   if (write_pass)
518                     write_memory (sp + structoffset, val, len);
519                   /* ... and then a "word" pointing to that address is
520                      passed as the parameter.  */
521                   store_unsigned_integer (word, tdep->wordsize, byte_order,
522                                           sp + structoffset);
523                   structoffset += len;
524                 }
525               else if (TYPE_CODE (type) == TYPE_CODE_INT)
526                 /* Sign or zero extend the "int" into a "word".  */
527                 store_unsigned_integer (word, tdep->wordsize, byte_order,
528                                         unpack_long (type, val));
529               else
530                 /* Always goes in the low address.  */
531                 memcpy (word, val, len);
532               /* Store that "word" in a register, or on the stack.
533                  The words have "4" byte alignment.  */
534               if (greg <= 10)
535                 {
536                   if (write_pass)
537                     regcache->cooked_write (tdep->ppc_gp0_regnum + greg, word);
538                   greg++;
539                 }
540               else
541                 {
542                   argoffset = align_up (argoffset, tdep->wordsize);
543                   if (write_pass)
544                     write_memory (sp + argoffset, word, tdep->wordsize);
545                   argoffset += tdep->wordsize;
546                 }
547             }
548         }
549
550       /* Compute the actual stack space requirements.  */
551       if (!write_pass)
552         {
553           /* Remember the amount of space needed by the arguments.  */
554           argspace = argoffset;
555           /* Allocate space for both the arguments and the structures.  */
556           sp -= (argoffset + structoffset);
557           /* Ensure that the stack is still 16 byte aligned.  */
558           sp = align_down (sp, 16);
559         }
560
561       /* The psABI says that "A caller of a function that takes a
562          variable argument list shall set condition register bit 6 to
563          1 if it passes one or more arguments in the floating-point
564          registers.  It is strongly recommended that the caller set the
565          bit to 0 otherwise..."  Doing this for normal functions too
566          shouldn't hurt.  */
567       if (write_pass)
568         {
569           ULONGEST cr;
570
571           regcache_cooked_read_unsigned (regcache, tdep->ppc_cr_regnum, &cr);
572           if (freg > 1)
573             cr |= 0x02000000;
574           else
575             cr &= ~0x02000000;
576           regcache_cooked_write_unsigned (regcache, tdep->ppc_cr_regnum, cr);
577         }
578     }
579
580   /* Update %sp.   */
581   regcache_cooked_write_signed (regcache, gdbarch_sp_regnum (gdbarch), sp);
582
583   /* Write the backchain (it occupies WORDSIZED bytes).  */
584   write_memory_signed_integer (sp, tdep->wordsize, byte_order, saved_sp);
585
586   /* Point the inferior function call's return address at the dummy's
587      breakpoint.  */
588   regcache_cooked_write_signed (regcache, tdep->ppc_lr_regnum, bp_addr);
589
590   return sp;
591 }
592
593 /* Handle the return-value conventions for Decimal Floating Point values.  */
594 static enum return_value_convention
595 get_decimal_float_return_value (struct gdbarch *gdbarch, struct type *valtype,
596                                 struct regcache *regcache, gdb_byte *readbuf,
597                                 const gdb_byte *writebuf)
598 {
599   struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
600
601   gdb_assert (TYPE_CODE (valtype) == TYPE_CODE_DECFLOAT);
602
603   /* 32-bit and 64-bit decimal floats in f1.  */
604   if (TYPE_LENGTH (valtype) <= 8)
605     {
606       if (writebuf != NULL)
607         {
608           gdb_byte regval[PPC_MAX_REGISTER_SIZE];
609           const gdb_byte *p;
610
611           /* 32-bit decimal float is right aligned in the doubleword.  */
612           if (TYPE_LENGTH (valtype) == 4)
613             {
614               memcpy (regval + 4, writebuf, 4);
615               p = regval;
616             }
617           else
618             p = writebuf;
619
620           regcache->cooked_write (tdep->ppc_fp0_regnum + 1, p);
621         }
622       if (readbuf != NULL)
623         {
624           regcache->cooked_read (tdep->ppc_fp0_regnum + 1, readbuf);
625
626           /* Left align 32-bit decimal float.  */
627           if (TYPE_LENGTH (valtype) == 4)
628             memcpy (readbuf, readbuf + 4, 4);
629         }
630     }
631   /* 128-bit decimal floats in f2,f3.  */
632   else if (TYPE_LENGTH (valtype) == 16)
633     {
634       if (writebuf != NULL || readbuf != NULL)
635         {
636           int i;
637
638           for (i = 0; i < 2; i++)
639             {
640               if (writebuf != NULL)
641                 regcache->cooked_write (tdep->ppc_fp0_regnum + 2 + i,
642                                         writebuf + i * 8);
643               if (readbuf != NULL)
644                 regcache->cooked_read (tdep->ppc_fp0_regnum + 2 + i,
645                                        readbuf + i * 8);
646             }
647         }
648     }
649   else
650     /* Can't happen.  */
651     internal_error (__FILE__, __LINE__, _("Unknown decimal float size."));
652
653   return RETURN_VALUE_REGISTER_CONVENTION;
654 }
655
656 /* Handle the return-value conventions specified by the SysV 32-bit
657    PowerPC ABI (including all the supplements):
658
659    no floating-point: floating-point values returned using 32-bit
660    general-purpose registers.
661
662    Altivec: 128-bit vectors returned using vector registers.
663
664    e500: 64-bit vectors returned using the full full 64 bit EV
665    register, floating-point values returned using 32-bit
666    general-purpose registers.
667
668    GCC (broken): Small struct values right (instead of left) aligned
669    when returned in general-purpose registers.  */
670
671 static enum return_value_convention
672 do_ppc_sysv_return_value (struct gdbarch *gdbarch, struct type *func_type,
673                           struct type *type, struct regcache *regcache,
674                           gdb_byte *readbuf, const gdb_byte *writebuf,
675                           int broken_gcc)
676 {
677   struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
678   enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
679   int opencl_abi = func_type? ppc_sysv_use_opencl_abi (func_type) : 0;
680
681   gdb_assert (tdep->wordsize == 4);
682
683   if (TYPE_CODE (type) == TYPE_CODE_FLT
684       && TYPE_LENGTH (type) <= 8
685       && !tdep->soft_float)
686     {
687       if (readbuf)
688         {
689           /* Floats and doubles stored in "f1".  Convert the value to
690              the required type.  */
691           gdb_byte regval[PPC_MAX_REGISTER_SIZE];
692           struct type *regtype = register_type (gdbarch,
693                                                 tdep->ppc_fp0_regnum + 1);
694           regcache->cooked_read (tdep->ppc_fp0_regnum + 1, regval);
695           target_float_convert (regval, regtype, readbuf, type);
696         }
697       if (writebuf)
698         {
699           /* Floats and doubles stored in "f1".  Convert the value to
700              the register's "double" type.  */
701           gdb_byte regval[PPC_MAX_REGISTER_SIZE];
702           struct type *regtype = register_type (gdbarch, tdep->ppc_fp0_regnum);
703           target_float_convert (writebuf, type, regval, regtype);
704           regcache->cooked_write (tdep->ppc_fp0_regnum + 1, regval);
705         }
706       return RETURN_VALUE_REGISTER_CONVENTION;
707     }
708   if (TYPE_CODE (type) == TYPE_CODE_FLT
709       && TYPE_LENGTH (type) == 16
710       && !tdep->soft_float
711       && (gdbarch_long_double_format (gdbarch)
712           == floatformats_ibm_long_double))
713     {
714       /* IBM long double stored in f1 and f2.  */
715       if (readbuf)
716         {
717           regcache->cooked_read (tdep->ppc_fp0_regnum + 1, readbuf);
718           regcache->cooked_read (tdep->ppc_fp0_regnum + 2, readbuf + 8);
719         }
720       if (writebuf)
721         {
722           regcache->cooked_write (tdep->ppc_fp0_regnum + 1, writebuf);
723           regcache->cooked_write (tdep->ppc_fp0_regnum + 2, writebuf + 8);
724         }
725       return RETURN_VALUE_REGISTER_CONVENTION;
726     }
727   if (TYPE_LENGTH (type) == 16
728       && ((TYPE_CODE (type) == TYPE_CODE_FLT
729            && (gdbarch_long_double_format (gdbarch)
730                == floatformats_ibm_long_double))
731           || (TYPE_CODE (type) == TYPE_CODE_DECFLOAT && tdep->soft_float)))
732     {
733       /* Soft-float IBM long double or _Decimal128 stored in r3, r4,
734          r5, r6.  */
735       if (readbuf)
736         {
737           regcache->cooked_read (tdep->ppc_gp0_regnum + 3, readbuf);
738           regcache->cooked_read (tdep->ppc_gp0_regnum + 4, readbuf + 4);
739           regcache->cooked_read (tdep->ppc_gp0_regnum + 5, readbuf + 8);
740           regcache->cooked_read (tdep->ppc_gp0_regnum + 6, readbuf + 12);
741         }
742       if (writebuf)
743         {
744           regcache->cooked_write (tdep->ppc_gp0_regnum + 3, writebuf);
745           regcache->cooked_write (tdep->ppc_gp0_regnum + 4, writebuf + 4);
746           regcache->cooked_write (tdep->ppc_gp0_regnum + 5, writebuf + 8);
747           regcache->cooked_write (tdep->ppc_gp0_regnum + 6, writebuf + 12);
748         }
749       return RETURN_VALUE_REGISTER_CONVENTION;
750     }
751   if ((TYPE_CODE (type) == TYPE_CODE_INT && TYPE_LENGTH (type) == 8)
752       || (TYPE_CODE (type) == TYPE_CODE_FLT && TYPE_LENGTH (type) == 8)
753       || (TYPE_CODE (type) == TYPE_CODE_DECFLOAT && TYPE_LENGTH (type) == 8
754           && tdep->soft_float))
755     {
756       if (readbuf)
757         {
758           /* A long long, double or _Decimal64 stored in the 32 bit
759              r3/r4.  */
760           regcache->cooked_read (tdep->ppc_gp0_regnum + 3, readbuf + 0);
761           regcache->cooked_read (tdep->ppc_gp0_regnum + 4, readbuf + 4);
762         }
763       if (writebuf)
764         {
765           /* A long long, double or _Decimal64 stored in the 32 bit
766              r3/r4.  */
767           regcache->cooked_write (tdep->ppc_gp0_regnum + 3, writebuf + 0);
768           regcache->cooked_write (tdep->ppc_gp0_regnum + 4, writebuf + 4);
769         }
770       return RETURN_VALUE_REGISTER_CONVENTION;
771     }
772   if (TYPE_CODE (type) == TYPE_CODE_DECFLOAT && !tdep->soft_float)
773     return get_decimal_float_return_value (gdbarch, type, regcache, readbuf,
774                                            writebuf);
775   else if ((TYPE_CODE (type) == TYPE_CODE_INT
776             || TYPE_CODE (type) == TYPE_CODE_CHAR
777             || TYPE_CODE (type) == TYPE_CODE_BOOL
778             || TYPE_CODE (type) == TYPE_CODE_PTR
779             || TYPE_IS_REFERENCE (type)
780             || TYPE_CODE (type) == TYPE_CODE_ENUM)
781            && TYPE_LENGTH (type) <= tdep->wordsize)
782     {
783       if (readbuf)
784         {
785           /* Some sort of integer stored in r3.  Since TYPE isn't
786              bigger than the register, sign extension isn't a problem
787              - just do everything unsigned.  */
788           ULONGEST regval;
789           regcache_cooked_read_unsigned (regcache, tdep->ppc_gp0_regnum + 3,
790                                          &regval);
791           store_unsigned_integer (readbuf, TYPE_LENGTH (type), byte_order,
792                                   regval);
793         }
794       if (writebuf)
795         {
796           /* Some sort of integer stored in r3.  Use unpack_long since
797              that should handle any required sign extension.  */
798           regcache_cooked_write_unsigned (regcache, tdep->ppc_gp0_regnum + 3,
799                                           unpack_long (type, writebuf));
800         }
801       return RETURN_VALUE_REGISTER_CONVENTION;
802     }
803   /* OpenCL vectors < 16 bytes are returned as distinct
804      scalars in f1..f2 or r3..r10.  */
805   if (TYPE_CODE (type) == TYPE_CODE_ARRAY
806       && TYPE_VECTOR (type)
807       && TYPE_LENGTH (type) < 16
808       && opencl_abi)
809     {
810       struct type *eltype = check_typedef (TYPE_TARGET_TYPE (type));
811       int i, nelt = TYPE_LENGTH (type) / TYPE_LENGTH (eltype);
812
813       for (i = 0; i < nelt; i++)
814         {
815           int offset = i * TYPE_LENGTH (eltype);
816
817           if (TYPE_CODE (eltype) == TYPE_CODE_FLT)
818             {
819               int regnum = tdep->ppc_fp0_regnum + 1 + i;
820               gdb_byte regval[PPC_MAX_REGISTER_SIZE];
821               struct type *regtype = register_type (gdbarch, regnum);
822
823               if (writebuf != NULL)
824                 {
825                   target_float_convert (writebuf + offset, eltype,
826                                         regval, regtype);
827                   regcache->cooked_write (regnum, regval);
828                 }
829               if (readbuf != NULL)
830                 {
831                   regcache->cooked_read (regnum, regval);
832                   target_float_convert (regval, regtype,
833                                         readbuf + offset, eltype);
834                 }
835             }
836           else
837             {
838               int regnum = tdep->ppc_gp0_regnum + 3 + i;
839               ULONGEST regval;
840
841               if (writebuf != NULL)
842                 {
843                   regval = unpack_long (eltype, writebuf + offset);
844                   regcache_cooked_write_unsigned (regcache, regnum, regval);
845                 }
846               if (readbuf != NULL)
847                 {
848                   regcache_cooked_read_unsigned (regcache, regnum, &regval);
849                   store_unsigned_integer (readbuf + offset,
850                                           TYPE_LENGTH (eltype), byte_order,
851                                           regval);
852                 }
853             }
854         }
855
856       return RETURN_VALUE_REGISTER_CONVENTION;
857     }
858   /* OpenCL vectors >= 16 bytes are returned in v2..v9.  */
859   if (TYPE_CODE (type) == TYPE_CODE_ARRAY
860       && TYPE_VECTOR (type)
861       && TYPE_LENGTH (type) >= 16
862       && opencl_abi)
863     {
864       int n_regs = TYPE_LENGTH (type) / 16;
865       int i;
866
867       for (i = 0; i < n_regs; i++)
868         {
869           int offset = i * 16;
870           int regnum = tdep->ppc_vr0_regnum + 2 + i;
871
872           if (writebuf != NULL)
873             regcache->cooked_write (regnum, writebuf + offset);
874           if (readbuf != NULL)
875             regcache->cooked_read (regnum, readbuf + offset);
876         }
877
878       return RETURN_VALUE_REGISTER_CONVENTION;
879     }
880   if (TYPE_LENGTH (type) == 16
881       && TYPE_CODE (type) == TYPE_CODE_ARRAY
882       && TYPE_VECTOR (type)
883       && tdep->vector_abi == POWERPC_VEC_ALTIVEC)
884     {
885       if (readbuf)
886         {
887           /* Altivec places the return value in "v2".  */
888           regcache->cooked_read (tdep->ppc_vr0_regnum + 2, readbuf);
889         }
890       if (writebuf)
891         {
892           /* Altivec places the return value in "v2".  */
893           regcache->cooked_write (tdep->ppc_vr0_regnum + 2, writebuf);
894         }
895       return RETURN_VALUE_REGISTER_CONVENTION;
896     }
897   if (TYPE_LENGTH (type) == 16
898       && TYPE_CODE (type) == TYPE_CODE_ARRAY
899       && TYPE_VECTOR (type)
900       && tdep->vector_abi == POWERPC_VEC_GENERIC)
901     {
902       /* GCC -maltivec -mabi=no-altivec returns vectors in r3/r4/r5/r6.
903          GCC without AltiVec returns them in memory, but it warns about
904          ABI risks in that case; we don't try to support it.  */
905       if (readbuf)
906         {
907           regcache->cooked_read (tdep->ppc_gp0_regnum + 3, readbuf + 0);
908           regcache->cooked_read (tdep->ppc_gp0_regnum + 4, readbuf + 4);
909           regcache->cooked_read (tdep->ppc_gp0_regnum + 5, readbuf + 8);
910           regcache->cooked_read (tdep->ppc_gp0_regnum + 6, readbuf + 12);
911         }
912       if (writebuf)
913         {
914           regcache->cooked_write (tdep->ppc_gp0_regnum + 3, writebuf + 0);
915           regcache->cooked_write (tdep->ppc_gp0_regnum + 4, writebuf + 4);
916           regcache->cooked_write (tdep->ppc_gp0_regnum + 5, writebuf + 8);
917           regcache->cooked_write (tdep->ppc_gp0_regnum + 6, writebuf + 12);
918         }
919       return RETURN_VALUE_REGISTER_CONVENTION;
920     }
921   if (TYPE_LENGTH (type) == 8
922       && TYPE_CODE (type) == TYPE_CODE_ARRAY
923       && TYPE_VECTOR (type)
924       && tdep->vector_abi == POWERPC_VEC_SPE)
925     {
926       /* The e500 ABI places return values for the 64-bit DSP types
927          (__ev64_opaque__) in r3.  However, in GDB-speak, ev3
928          corresponds to the entire r3 value for e500, whereas GDB's r3
929          only corresponds to the least significant 32-bits.  So place
930          the 64-bit DSP type's value in ev3.  */
931       if (readbuf)
932         regcache->cooked_read (tdep->ppc_ev0_regnum + 3, readbuf);
933       if (writebuf)
934         regcache->cooked_write (tdep->ppc_ev0_regnum + 3, writebuf);
935       return RETURN_VALUE_REGISTER_CONVENTION;
936     }
937   if (broken_gcc && TYPE_LENGTH (type) <= 8)
938     {
939       /* GCC screwed up for structures or unions whose size is less
940          than or equal to 8 bytes..  Instead of left-aligning, it
941          right-aligns the data into the buffer formed by r3, r4.  */
942       gdb_byte regvals[PPC_MAX_REGISTER_SIZE * 2];
943       int len = TYPE_LENGTH (type);
944       int offset = (2 * tdep->wordsize - len) % tdep->wordsize;
945
946       if (readbuf)
947         {
948           regcache->cooked_read (tdep->ppc_gp0_regnum + 3,
949                                  regvals + 0 * tdep->wordsize);
950           if (len > tdep->wordsize)
951             regcache->cooked_read (tdep->ppc_gp0_regnum + 4,
952                                    regvals + 1 * tdep->wordsize);
953           memcpy (readbuf, regvals + offset, len);
954         }
955       if (writebuf)
956         {
957           memset (regvals, 0, sizeof regvals);
958           memcpy (regvals + offset, writebuf, len);
959           regcache->cooked_write (tdep->ppc_gp0_regnum + 3,
960                                   regvals + 0 * tdep->wordsize);
961           if (len > tdep->wordsize)
962             regcache->cooked_write (tdep->ppc_gp0_regnum + 4,
963                                     regvals + 1 * tdep->wordsize);
964         }
965
966       return RETURN_VALUE_REGISTER_CONVENTION;
967     }
968   if (TYPE_LENGTH (type) <= 8)
969     {
970       if (readbuf)
971         {
972           /* This matches SVr4 PPC, it does not match GCC.  */
973           /* The value is right-padded to 8 bytes and then loaded, as
974              two "words", into r3/r4.  */
975           gdb_byte regvals[PPC_MAX_REGISTER_SIZE * 2];
976           regcache->cooked_read (tdep->ppc_gp0_regnum + 3,
977                                  regvals + 0 * tdep->wordsize);
978           if (TYPE_LENGTH (type) > tdep->wordsize)
979             regcache->cooked_read (tdep->ppc_gp0_regnum + 4,
980                                    regvals + 1 * tdep->wordsize);
981           memcpy (readbuf, regvals, TYPE_LENGTH (type));
982         }
983       if (writebuf)
984         {
985           /* This matches SVr4 PPC, it does not match GCC.  */
986           /* The value is padded out to 8 bytes and then loaded, as
987              two "words" into r3/r4.  */
988           gdb_byte regvals[PPC_MAX_REGISTER_SIZE * 2];
989           memset (regvals, 0, sizeof regvals);
990           memcpy (regvals, writebuf, TYPE_LENGTH (type));
991           regcache->cooked_write (tdep->ppc_gp0_regnum + 3,
992                                   regvals + 0 * tdep->wordsize);
993           if (TYPE_LENGTH (type) > tdep->wordsize)
994             regcache->cooked_write (tdep->ppc_gp0_regnum + 4,
995                                     regvals + 1 * tdep->wordsize);
996         }
997       return RETURN_VALUE_REGISTER_CONVENTION;
998     }
999   return RETURN_VALUE_STRUCT_CONVENTION;
1000 }
1001
1002 enum return_value_convention
1003 ppc_sysv_abi_return_value (struct gdbarch *gdbarch, struct value *function,
1004                            struct type *valtype, struct regcache *regcache,
1005                            gdb_byte *readbuf, const gdb_byte *writebuf)
1006 {
1007   return do_ppc_sysv_return_value (gdbarch,
1008                                    function ? value_type (function) : NULL,
1009                                    valtype, regcache, readbuf, writebuf, 0);
1010 }
1011
1012 enum return_value_convention
1013 ppc_sysv_abi_broken_return_value (struct gdbarch *gdbarch,
1014                                   struct value *function,
1015                                   struct type *valtype,
1016                                   struct regcache *regcache,
1017                                   gdb_byte *readbuf, const gdb_byte *writebuf)
1018 {
1019   return do_ppc_sysv_return_value (gdbarch,
1020                                    function ? value_type (function) : NULL,
1021                                    valtype, regcache, readbuf, writebuf, 1);
1022 }
1023
1024 /* The helper function for 64-bit SYSV push_dummy_call.  Converts the
1025    function's code address back into the function's descriptor
1026    address.
1027
1028    Find a value for the TOC register.  Every symbol should have both
1029    ".FN" and "FN" in the minimal symbol table.  "FN" points at the
1030    FN's descriptor, while ".FN" points at the entry point (which
1031    matches FUNC_ADDR).  Need to reverse from FUNC_ADDR back to the
1032    FN's descriptor address (while at the same time being careful to
1033    find "FN" in the same object file as ".FN").  */
1034
1035 static int
1036 convert_code_addr_to_desc_addr (CORE_ADDR code_addr, CORE_ADDR *desc_addr)
1037 {
1038   struct obj_section *dot_fn_section;
1039   struct bound_minimal_symbol dot_fn;
1040   struct bound_minimal_symbol fn;
1041
1042   /* Find the minimal symbol that corresponds to CODE_ADDR (should
1043      have a name of the form ".FN").  */
1044   dot_fn = lookup_minimal_symbol_by_pc (code_addr);
1045   if (dot_fn.minsym == NULL || MSYMBOL_LINKAGE_NAME (dot_fn.minsym)[0] != '.')
1046     return 0;
1047   /* Get the section that contains CODE_ADDR.  Need this for the
1048      "objfile" that it contains.  */
1049   dot_fn_section = find_pc_section (code_addr);
1050   if (dot_fn_section == NULL || dot_fn_section->objfile == NULL)
1051     return 0;
1052   /* Now find the corresponding "FN" (dropping ".") minimal symbol's
1053      address.  Only look for the minimal symbol in ".FN"'s object file
1054      - avoids problems when two object files (i.e., shared libraries)
1055      contain a minimal symbol with the same name.  */
1056   fn = lookup_minimal_symbol (MSYMBOL_LINKAGE_NAME (dot_fn.minsym) + 1, NULL,
1057                               dot_fn_section->objfile);
1058   if (fn.minsym == NULL)
1059     return 0;
1060   /* Found a descriptor.  */
1061   (*desc_addr) = BMSYMBOL_VALUE_ADDRESS (fn);
1062   return 1;
1063 }
1064
1065 /* Walk down the type tree of TYPE counting consecutive base elements.
1066    If *FIELD_TYPE is NULL, then set it to the first valid floating point
1067    or vector type.  If a non-floating point or vector type is found, or
1068    if a floating point or vector type that doesn't match a non-NULL
1069    *FIELD_TYPE is found, then return -1, otherwise return the count in the
1070    sub-tree.  */
1071
1072 static LONGEST
1073 ppc64_aggregate_candidate (struct type *type,
1074                            struct type **field_type)
1075 {
1076   type = check_typedef (type);
1077
1078   switch (TYPE_CODE (type))
1079     {
1080     case TYPE_CODE_FLT:
1081     case TYPE_CODE_DECFLOAT:
1082       if (!*field_type)
1083         *field_type = type;
1084       if (TYPE_CODE (*field_type) == TYPE_CODE (type)
1085           && TYPE_LENGTH (*field_type) == TYPE_LENGTH (type))
1086         return 1;
1087       break;
1088
1089     case TYPE_CODE_COMPLEX:
1090       type = TYPE_TARGET_TYPE (type);
1091       if (TYPE_CODE (type) == TYPE_CODE_FLT
1092           || TYPE_CODE (type) == TYPE_CODE_DECFLOAT)
1093         {
1094           if (!*field_type)
1095             *field_type = type;
1096           if (TYPE_CODE (*field_type) == TYPE_CODE (type)
1097               && TYPE_LENGTH (*field_type) == TYPE_LENGTH (type))
1098             return 2;
1099         }
1100       break;
1101
1102     case TYPE_CODE_ARRAY:
1103       if (TYPE_VECTOR (type))
1104         {
1105           if (!*field_type)
1106             *field_type = type;
1107           if (TYPE_CODE (*field_type) == TYPE_CODE (type)
1108               && TYPE_LENGTH (*field_type) == TYPE_LENGTH (type))
1109             return 1;
1110         }
1111       else
1112         {
1113           LONGEST count, low_bound, high_bound;
1114
1115           count = ppc64_aggregate_candidate
1116                    (TYPE_TARGET_TYPE (type), field_type);
1117           if (count == -1)
1118             return -1;
1119
1120           if (!get_array_bounds (type, &low_bound, &high_bound))
1121             return -1;
1122           count *= high_bound - low_bound;
1123
1124           /* There must be no padding.  */
1125           if (count == 0)
1126             return TYPE_LENGTH (type) == 0 ? 0 : -1;
1127           else if (TYPE_LENGTH (type) != count * TYPE_LENGTH (*field_type))
1128             return -1;
1129
1130           return count;
1131         }
1132       break;
1133
1134     case TYPE_CODE_STRUCT:
1135     case TYPE_CODE_UNION:
1136         {
1137           LONGEST count = 0;
1138           int i;
1139
1140           for (i = 0; i < TYPE_NFIELDS (type); i++)
1141             {
1142               LONGEST sub_count;
1143
1144               if (field_is_static (&TYPE_FIELD (type, i)))
1145                 continue;
1146
1147               sub_count = ppc64_aggregate_candidate
1148                            (TYPE_FIELD_TYPE (type, i), field_type);
1149               if (sub_count == -1)
1150                 return -1;
1151
1152               if (TYPE_CODE (type) == TYPE_CODE_STRUCT)
1153                 count += sub_count;
1154               else
1155                 count = std::max (count, sub_count);
1156             }
1157
1158           /* There must be no padding.  */
1159           if (count == 0)
1160             return TYPE_LENGTH (type) == 0 ? 0 : -1;
1161           else if (TYPE_LENGTH (type) != count * TYPE_LENGTH (*field_type))
1162             return -1;
1163
1164           return count;
1165         }
1166       break;
1167
1168     default:
1169       break;
1170     }
1171
1172   return -1;
1173 }
1174
1175 /* If an argument of type TYPE is a homogeneous float or vector aggregate
1176    that shall be passed in FP/vector registers according to the ELFv2 ABI,
1177    return the homogeneous element type in *ELT_TYPE and the number of
1178    elements in *N_ELTS, and return non-zero.  Otherwise, return zero.  */
1179
1180 static int
1181 ppc64_elfv2_abi_homogeneous_aggregate (struct type *type,
1182                                        struct type **elt_type, int *n_elts)
1183 {
1184   /* Complex types at the top level are treated separately.  However,
1185      complex types can be elements of homogeneous aggregates.  */
1186   if (TYPE_CODE (type) == TYPE_CODE_STRUCT
1187       || TYPE_CODE (type) == TYPE_CODE_UNION
1188       || (TYPE_CODE (type) == TYPE_CODE_ARRAY && !TYPE_VECTOR (type)))
1189     {
1190       struct type *field_type = NULL;
1191       LONGEST field_count = ppc64_aggregate_candidate (type, &field_type);
1192
1193       if (field_count > 0)
1194         {
1195           int n_regs = ((TYPE_CODE (field_type) == TYPE_CODE_FLT
1196                          || TYPE_CODE (field_type) == TYPE_CODE_DECFLOAT)?
1197                         (TYPE_LENGTH (field_type) + 7) >> 3 : 1);
1198
1199           /* The ELFv2 ABI allows homogeneous aggregates to occupy
1200              up to 8 registers.  */
1201           if (field_count * n_regs <= 8)
1202             {
1203               if (elt_type)
1204                 *elt_type = field_type;
1205               if (n_elts)
1206                 *n_elts = (int) field_count;
1207               /* Note that field_count is LONGEST since it may hold the size
1208                  of an array, while *n_elts is int since its value is bounded
1209                  by the number of registers used for argument passing.  The
1210                  cast cannot overflow due to the bounds checking above.  */
1211               return 1;
1212             }
1213         }
1214     }
1215
1216   return 0;
1217 }
1218
1219 /* Structure holding the next argument position.  */
1220 struct ppc64_sysv_argpos
1221   {
1222     /* Register cache holding argument registers.  If this is NULL,
1223        we only simulate argument processing without actually updating
1224        any registers or memory.  */
1225     struct regcache *regcache;
1226     /* Next available general-purpose argument register.  */
1227     int greg;
1228     /* Next available floating-point argument register.  */
1229     int freg;
1230     /* Next available vector argument register.  */
1231     int vreg;
1232     /* The address, at which the next general purpose parameter
1233        (integer, struct, float, vector, ...) should be saved.  */
1234     CORE_ADDR gparam;
1235     /* The address, at which the next by-reference parameter
1236        (non-Altivec vector, variably-sized type) should be saved.  */
1237     CORE_ADDR refparam;
1238   };
1239
1240 /* VAL is a value of length LEN.  Store it into the argument area on the
1241    stack and load it into the corresponding general-purpose registers
1242    required by the ABI, and update ARGPOS.
1243
1244    If ALIGN is nonzero, it specifies the minimum alignment required
1245    for the on-stack copy of the argument.  */
1246
1247 static void
1248 ppc64_sysv_abi_push_val (struct gdbarch *gdbarch,
1249                          const bfd_byte *val, int len, int align,
1250                          struct ppc64_sysv_argpos *argpos)
1251 {
1252   struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
1253   int offset = 0;
1254
1255   /* Enforce alignment of stack location, if requested.  */
1256   if (align > tdep->wordsize)
1257     {
1258       CORE_ADDR aligned_gparam = align_up (argpos->gparam, align);
1259
1260       argpos->greg += (aligned_gparam - argpos->gparam) / tdep->wordsize;
1261       argpos->gparam = aligned_gparam;
1262     }
1263
1264   /* The ABI (version 1.9) specifies that values smaller than one
1265      doubleword are right-aligned and those larger are left-aligned.
1266      GCC versions before 3.4 implemented this incorrectly; see
1267      <http://gcc.gnu.org/gcc-3.4/powerpc-abi.html>.  */
1268   if (len < tdep->wordsize
1269       && gdbarch_byte_order (gdbarch) == BFD_ENDIAN_BIG)
1270     offset = tdep->wordsize - len;
1271
1272   if (argpos->regcache)
1273     write_memory (argpos->gparam + offset, val, len);
1274   argpos->gparam = align_up (argpos->gparam + len, tdep->wordsize);
1275
1276   while (len >= tdep->wordsize)
1277     {
1278       if (argpos->regcache && argpos->greg <= 10)
1279         argpos->regcache->cooked_write (tdep->ppc_gp0_regnum + argpos->greg,
1280                                         val);
1281       argpos->greg++;
1282       len -= tdep->wordsize;
1283       val += tdep->wordsize;
1284     }
1285
1286   if (len > 0)
1287     {
1288       if (argpos->regcache && argpos->greg <= 10)
1289         argpos->regcache->cooked_write_part
1290           (tdep->ppc_gp0_regnum + argpos->greg, offset, len, val);
1291       argpos->greg++;
1292     }
1293 }
1294
1295 /* The same as ppc64_sysv_abi_push_val, but using a single-word integer
1296    value VAL as argument.  */
1297
1298 static void
1299 ppc64_sysv_abi_push_integer (struct gdbarch *gdbarch, ULONGEST val,
1300                              struct ppc64_sysv_argpos *argpos)
1301 {
1302   struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
1303   enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
1304   gdb_byte buf[PPC_MAX_REGISTER_SIZE];
1305
1306   if (argpos->regcache)
1307     store_unsigned_integer (buf, tdep->wordsize, byte_order, val);
1308   ppc64_sysv_abi_push_val (gdbarch, buf, tdep->wordsize, 0, argpos);
1309 }
1310
1311 /* VAL is a value of TYPE, a (binary or decimal) floating-point type.
1312    Load it into a floating-point register if required by the ABI,
1313    and update ARGPOS.  */
1314
1315 static void
1316 ppc64_sysv_abi_push_freg (struct gdbarch *gdbarch,
1317                           struct type *type, const bfd_byte *val,
1318                           struct ppc64_sysv_argpos *argpos)
1319 {
1320   struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
1321   if (tdep->soft_float)
1322     return;
1323
1324   if (TYPE_LENGTH (type) <= 8
1325       && TYPE_CODE (type) == TYPE_CODE_FLT)
1326     {
1327       /* Floats and doubles go in f1 .. f13.  32-bit floats are converted
1328          to double first.  */
1329       if (argpos->regcache && argpos->freg <= 13)
1330         {
1331           int regnum = tdep->ppc_fp0_regnum + argpos->freg;
1332           struct type *regtype = register_type (gdbarch, regnum);
1333           gdb_byte regval[PPC_MAX_REGISTER_SIZE];
1334
1335           target_float_convert (val, type, regval, regtype);
1336           argpos->regcache->cooked_write (regnum, regval);
1337         }
1338
1339       argpos->freg++;
1340     }
1341   else if (TYPE_LENGTH (type) <= 8
1342            && TYPE_CODE (type) == TYPE_CODE_DECFLOAT)
1343     {
1344       /* Floats and doubles go in f1 .. f13.  32-bit decimal floats are
1345          placed in the least significant word.  */
1346       if (argpos->regcache && argpos->freg <= 13)
1347         {
1348           int regnum = tdep->ppc_fp0_regnum + argpos->freg;
1349           int offset = 0;
1350
1351           if (gdbarch_byte_order (gdbarch) == BFD_ENDIAN_BIG)
1352             offset = 8 - TYPE_LENGTH (type);
1353
1354           argpos->regcache->cooked_write_part (regnum, offset,
1355                                                TYPE_LENGTH (type), val);
1356         }
1357
1358       argpos->freg++;
1359     }
1360   else if (TYPE_LENGTH (type) == 16
1361            && TYPE_CODE (type) == TYPE_CODE_FLT
1362            && (gdbarch_long_double_format (gdbarch)
1363                == floatformats_ibm_long_double))
1364     {
1365       /* IBM long double stored in two consecutive FPRs.  */
1366       if (argpos->regcache && argpos->freg <= 13)
1367         {
1368           int regnum = tdep->ppc_fp0_regnum + argpos->freg;
1369
1370           argpos->regcache->cooked_write (regnum, val);
1371           if (argpos->freg <= 12)
1372             argpos->regcache->cooked_write (regnum + 1, val + 8);
1373         }
1374
1375       argpos->freg += 2;
1376     }
1377   else if (TYPE_LENGTH (type) == 16
1378            && TYPE_CODE (type) == TYPE_CODE_DECFLOAT)
1379     {
1380       /* 128-bit decimal floating-point values are stored in and even/odd
1381          pair of FPRs, with the even FPR holding the most significant half.  */
1382       argpos->freg += argpos->freg & 1;
1383
1384       if (argpos->regcache && argpos->freg <= 12)
1385         {
1386           int regnum = tdep->ppc_fp0_regnum + argpos->freg;
1387           int lopart = gdbarch_byte_order (gdbarch) == BFD_ENDIAN_BIG ? 8 : 0;
1388           int hipart = gdbarch_byte_order (gdbarch) == BFD_ENDIAN_BIG ? 0 : 8;
1389
1390           argpos->regcache->cooked_write (regnum, val + hipart);
1391           argpos->regcache->cooked_write (regnum + 1, val + lopart);
1392         }
1393
1394       argpos->freg += 2;
1395     }
1396 }
1397
1398 /* VAL is a value of AltiVec vector type.  Load it into a vector register
1399    if required by the ABI, and update ARGPOS.  */
1400
1401 static void
1402 ppc64_sysv_abi_push_vreg (struct gdbarch *gdbarch, const bfd_byte *val,
1403                           struct ppc64_sysv_argpos *argpos)
1404 {
1405   struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
1406
1407   if (argpos->regcache && argpos->vreg <= 13)
1408     argpos->regcache->cooked_write (tdep->ppc_vr0_regnum + argpos->vreg, val);
1409
1410   argpos->vreg++;
1411 }
1412
1413 /* VAL is a value of TYPE.  Load it into memory and/or registers
1414    as required by the ABI, and update ARGPOS.  */
1415
1416 static void
1417 ppc64_sysv_abi_push_param (struct gdbarch *gdbarch,
1418                            struct type *type, const bfd_byte *val,
1419                            struct ppc64_sysv_argpos *argpos)
1420 {
1421   struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
1422
1423   if (TYPE_CODE (type) == TYPE_CODE_FLT
1424       || TYPE_CODE (type) == TYPE_CODE_DECFLOAT)
1425     {
1426       /* Floating-point scalars are passed in floating-point registers.  */
1427       ppc64_sysv_abi_push_val (gdbarch, val, TYPE_LENGTH (type), 0, argpos);
1428       ppc64_sysv_abi_push_freg (gdbarch, type, val, argpos);
1429     }
1430   else if (TYPE_CODE (type) == TYPE_CODE_ARRAY && TYPE_VECTOR (type)
1431            && tdep->vector_abi == POWERPC_VEC_ALTIVEC
1432            && TYPE_LENGTH (type) == 16)
1433     {
1434       /* AltiVec vectors are passed aligned, and in vector registers.  */
1435       ppc64_sysv_abi_push_val (gdbarch, val, TYPE_LENGTH (type), 16, argpos);
1436       ppc64_sysv_abi_push_vreg (gdbarch, val, argpos);
1437     }
1438   else if (TYPE_CODE (type) == TYPE_CODE_ARRAY && TYPE_VECTOR (type)
1439            && TYPE_LENGTH (type) >= 16)
1440     {
1441       /* Non-Altivec vectors are passed by reference.  */
1442
1443       /* Copy value onto the stack ...  */
1444       CORE_ADDR addr = align_up (argpos->refparam, 16);
1445       if (argpos->regcache)
1446         write_memory (addr, val, TYPE_LENGTH (type));
1447       argpos->refparam = align_up (addr + TYPE_LENGTH (type), tdep->wordsize);
1448
1449       /* ... and pass a pointer to the copy as parameter.  */
1450       ppc64_sysv_abi_push_integer (gdbarch, addr, argpos);
1451     }
1452   else if ((TYPE_CODE (type) == TYPE_CODE_INT
1453             || TYPE_CODE (type) == TYPE_CODE_ENUM
1454             || TYPE_CODE (type) == TYPE_CODE_BOOL
1455             || TYPE_CODE (type) == TYPE_CODE_CHAR
1456             || TYPE_CODE (type) == TYPE_CODE_PTR
1457             || TYPE_IS_REFERENCE (type))
1458            && TYPE_LENGTH (type) <= tdep->wordsize)
1459     {
1460       ULONGEST word = 0;
1461
1462       if (argpos->regcache)
1463         {
1464           /* Sign extend the value, then store it unsigned.  */
1465           word = unpack_long (type, val);
1466
1467           /* Convert any function code addresses into descriptors.  */
1468           if (tdep->elf_abi == POWERPC_ELF_V1
1469               && (TYPE_CODE (type) == TYPE_CODE_PTR
1470                   || TYPE_CODE (type) == TYPE_CODE_REF))
1471             {
1472               struct type *target_type
1473                 = check_typedef (TYPE_TARGET_TYPE (type));
1474
1475               if (TYPE_CODE (target_type) == TYPE_CODE_FUNC
1476                   || TYPE_CODE (target_type) == TYPE_CODE_METHOD)
1477                 {
1478                   CORE_ADDR desc = word;
1479
1480                   convert_code_addr_to_desc_addr (word, &desc);
1481                   word = desc;
1482                 }
1483             }
1484         }
1485
1486       ppc64_sysv_abi_push_integer (gdbarch, word, argpos);
1487     }
1488   else
1489     {
1490       ppc64_sysv_abi_push_val (gdbarch, val, TYPE_LENGTH (type), 0, argpos);
1491
1492       /* The ABI (version 1.9) specifies that structs containing a
1493          single floating-point value, at any level of nesting of
1494          single-member structs, are passed in floating-point registers.  */
1495       if (TYPE_CODE (type) == TYPE_CODE_STRUCT
1496           && TYPE_NFIELDS (type) == 1)
1497         {
1498           while (TYPE_CODE (type) == TYPE_CODE_STRUCT
1499                  && TYPE_NFIELDS (type) == 1)
1500             type = check_typedef (TYPE_FIELD_TYPE (type, 0));
1501
1502           if (TYPE_CODE (type) == TYPE_CODE_FLT)
1503             ppc64_sysv_abi_push_freg (gdbarch, type, val, argpos);
1504         }
1505
1506       /* In the ELFv2 ABI, homogeneous floating-point or vector
1507          aggregates are passed in a series of registers.  */
1508       if (tdep->elf_abi == POWERPC_ELF_V2)
1509         {
1510           struct type *eltype;
1511           int i, nelt;
1512
1513           if (ppc64_elfv2_abi_homogeneous_aggregate (type, &eltype, &nelt))
1514             for (i = 0; i < nelt; i++)
1515               {
1516                 const gdb_byte *elval = val + i * TYPE_LENGTH (eltype);
1517
1518                 if (TYPE_CODE (eltype) == TYPE_CODE_FLT
1519                     || TYPE_CODE (eltype) == TYPE_CODE_DECFLOAT)
1520                   ppc64_sysv_abi_push_freg (gdbarch, eltype, elval, argpos);
1521                 else if (TYPE_CODE (eltype) == TYPE_CODE_ARRAY
1522                          && TYPE_VECTOR (eltype)
1523                          && tdep->vector_abi == POWERPC_VEC_ALTIVEC
1524                          && TYPE_LENGTH (eltype) == 16)
1525                   ppc64_sysv_abi_push_vreg (gdbarch, elval, argpos);
1526               }
1527         }
1528     }
1529 }
1530
1531 /* Pass the arguments in either registers, or in the stack.  Using the
1532    ppc 64 bit SysV ABI.
1533
1534    This implements a dumbed down version of the ABI.  It always writes
1535    values to memory, GPR and FPR, even when not necessary.  Doing this
1536    greatly simplifies the logic.  */
1537
1538 CORE_ADDR
1539 ppc64_sysv_abi_push_dummy_call (struct gdbarch *gdbarch,
1540                                 struct value *function,
1541                                 struct regcache *regcache, CORE_ADDR bp_addr,
1542                                 int nargs, struct value **args, CORE_ADDR sp,
1543                                 int struct_return, CORE_ADDR struct_addr)
1544 {
1545   CORE_ADDR func_addr = find_function_addr (function, NULL);
1546   struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
1547   enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
1548   int opencl_abi = ppc_sysv_use_opencl_abi (value_type (function));
1549   ULONGEST back_chain;
1550   /* See for-loop comment below.  */
1551   int write_pass;
1552   /* Size of the by-reference parameter copy region, the final value is
1553      computed in the for-loop below.  */
1554   LONGEST refparam_size = 0;
1555   /* Size of the general parameter region, the final value is computed
1556      in the for-loop below.  */
1557   LONGEST gparam_size = 0;
1558   /* Kevin writes ... I don't mind seeing tdep->wordsize used in the
1559      calls to align_up(), align_down(), etc. because this makes it
1560      easier to reuse this code (in a copy/paste sense) in the future,
1561      but it is a 64-bit ABI and asserting that the wordsize is 8 bytes
1562      at some point makes it easier to verify that this function is
1563      correct without having to do a non-local analysis to figure out
1564      the possible values of tdep->wordsize.  */
1565   gdb_assert (tdep->wordsize == 8);
1566
1567   /* This function exists to support a calling convention that
1568      requires floating-point registers.  It shouldn't be used on
1569      processors that lack them.  */
1570   gdb_assert (ppc_floating_point_unit_p (gdbarch));
1571
1572   /* By this stage in the proceedings, SP has been decremented by "red
1573      zone size" + "struct return size".  Fetch the stack-pointer from
1574      before this and use that as the BACK_CHAIN.  */
1575   regcache_cooked_read_unsigned (regcache, gdbarch_sp_regnum (gdbarch),
1576                                  &back_chain);
1577
1578   /* Go through the argument list twice.
1579
1580      Pass 1: Compute the function call's stack space and register
1581      requirements.
1582
1583      Pass 2: Replay the same computation but this time also write the
1584      values out to the target.  */
1585
1586   for (write_pass = 0; write_pass < 2; write_pass++)
1587     {
1588       int argno;
1589
1590       struct ppc64_sysv_argpos argpos;
1591       argpos.greg = 3;
1592       argpos.freg = 1;
1593       argpos.vreg = 2;
1594
1595       if (!write_pass)
1596         {
1597           /* During the first pass, GPARAM and REFPARAM are more like
1598              offsets (start address zero) than addresses.  That way
1599              they accumulate the total stack space each region
1600              requires.  */
1601           argpos.regcache = NULL;
1602           argpos.gparam = 0;
1603           argpos.refparam = 0;
1604         }
1605       else
1606         {
1607           /* Decrement the stack pointer making space for the Altivec
1608              and general on-stack parameters.  Set refparam and gparam
1609              to their corresponding regions.  */
1610           argpos.regcache = regcache;
1611           argpos.refparam = align_down (sp - refparam_size, 16);
1612           argpos.gparam = align_down (argpos.refparam - gparam_size, 16);
1613           /* Add in space for the TOC, link editor double word (v1 only),
1614              compiler double word (v1 only), LR save area, CR save area,
1615              and backchain.  */
1616           if (tdep->elf_abi == POWERPC_ELF_V1)
1617             sp = align_down (argpos.gparam - 48, 16);
1618           else
1619             sp = align_down (argpos.gparam - 32, 16);
1620         }
1621
1622       /* If the function is returning a `struct', then there is an
1623          extra hidden parameter (which will be passed in r3)
1624          containing the address of that struct..  In that case we
1625          should advance one word and start from r4 register to copy
1626          parameters.  This also consumes one on-stack parameter slot.  */
1627       if (struct_return)
1628         ppc64_sysv_abi_push_integer (gdbarch, struct_addr, &argpos);
1629
1630       for (argno = 0; argno < nargs; argno++)
1631         {
1632           struct value *arg = args[argno];
1633           struct type *type = check_typedef (value_type (arg));
1634           const bfd_byte *val = value_contents (arg);
1635
1636           if (TYPE_CODE (type) == TYPE_CODE_COMPLEX)
1637             {
1638               /* Complex types are passed as if two independent scalars.  */
1639               struct type *eltype = check_typedef (TYPE_TARGET_TYPE (type));
1640
1641               ppc64_sysv_abi_push_param (gdbarch, eltype, val, &argpos);
1642               ppc64_sysv_abi_push_param (gdbarch, eltype,
1643                                          val + TYPE_LENGTH (eltype), &argpos);
1644             }
1645           else if (TYPE_CODE (type) == TYPE_CODE_ARRAY && TYPE_VECTOR (type)
1646                    && opencl_abi)
1647             {
1648               /* OpenCL vectors shorter than 16 bytes are passed as if
1649                  a series of independent scalars; OpenCL vectors 16 bytes
1650                  or longer are passed as if a series of AltiVec vectors.  */
1651               struct type *eltype;
1652               int i, nelt;
1653
1654               if (TYPE_LENGTH (type) < 16)
1655                 eltype = check_typedef (TYPE_TARGET_TYPE (type));
1656               else
1657                 eltype = register_type (gdbarch, tdep->ppc_vr0_regnum);
1658
1659               nelt = TYPE_LENGTH (type) / TYPE_LENGTH (eltype);
1660               for (i = 0; i < nelt; i++)
1661                 {
1662                   const gdb_byte *elval = val + i * TYPE_LENGTH (eltype);
1663
1664                   ppc64_sysv_abi_push_param (gdbarch, eltype, elval, &argpos);
1665                 }
1666             }
1667           else
1668             {
1669               /* All other types are passed as single arguments.  */
1670               ppc64_sysv_abi_push_param (gdbarch, type, val, &argpos);
1671             }
1672         }
1673
1674       if (!write_pass)
1675         {
1676           /* Save the true region sizes ready for the second pass.  */
1677           refparam_size = argpos.refparam;
1678           /* Make certain that the general parameter save area is at
1679              least the minimum 8 registers (or doublewords) in size.  */
1680           if (argpos.greg < 8)
1681             gparam_size = 8 * tdep->wordsize;
1682           else
1683             gparam_size = argpos.gparam;
1684         }
1685     }
1686
1687   /* Update %sp.   */
1688   regcache_cooked_write_signed (regcache, gdbarch_sp_regnum (gdbarch), sp);
1689
1690   /* Write the backchain (it occupies WORDSIZED bytes).  */
1691   write_memory_signed_integer (sp, tdep->wordsize, byte_order, back_chain);
1692
1693   /* Point the inferior function call's return address at the dummy's
1694      breakpoint.  */
1695   regcache_cooked_write_signed (regcache, tdep->ppc_lr_regnum, bp_addr);
1696
1697   /* In the ELFv1 ABI, use the func_addr to find the descriptor, and use
1698      that to find the TOC.  If we're calling via a function pointer,
1699      the pointer itself identifies the descriptor.  */
1700   if (tdep->elf_abi == POWERPC_ELF_V1)
1701     {
1702       struct type *ftype = check_typedef (value_type (function));
1703       CORE_ADDR desc_addr = value_as_address (function);
1704
1705       if (TYPE_CODE (ftype) == TYPE_CODE_PTR
1706           || convert_code_addr_to_desc_addr (func_addr, &desc_addr))
1707         {
1708           /* The TOC is the second double word in the descriptor.  */
1709           CORE_ADDR toc =
1710             read_memory_unsigned_integer (desc_addr + tdep->wordsize,
1711                                           tdep->wordsize, byte_order);
1712
1713           regcache_cooked_write_unsigned (regcache,
1714                                           tdep->ppc_gp0_regnum + 2, toc);
1715         }
1716     }
1717
1718   /* In the ELFv2 ABI, we need to pass the target address in r12 since
1719      we may be calling a global entry point.  */
1720   if (tdep->elf_abi == POWERPC_ELF_V2)
1721     regcache_cooked_write_unsigned (regcache,
1722                                     tdep->ppc_gp0_regnum + 12, func_addr);
1723
1724   return sp;
1725 }
1726
1727 /* Subroutine of ppc64_sysv_abi_return_value that handles "base" types:
1728    integer, floating-point, and AltiVec vector types.
1729
1730    This routine also handles components of aggregate return types;
1731    INDEX describes which part of the aggregate is to be handled.
1732
1733    Returns true if VALTYPE is some such base type that could be handled,
1734    false otherwise.  */
1735 static int
1736 ppc64_sysv_abi_return_value_base (struct gdbarch *gdbarch, struct type *valtype,
1737                                   struct regcache *regcache, gdb_byte *readbuf,
1738                                   const gdb_byte *writebuf, int index)
1739 {
1740   struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
1741
1742   /* Integers live in GPRs starting at r3.  */
1743   if ((TYPE_CODE (valtype) == TYPE_CODE_INT
1744        || TYPE_CODE (valtype) == TYPE_CODE_ENUM
1745        || TYPE_CODE (valtype) == TYPE_CODE_CHAR
1746        || TYPE_CODE (valtype) == TYPE_CODE_BOOL)
1747       && TYPE_LENGTH (valtype) <= 8)
1748     {
1749       int regnum = tdep->ppc_gp0_regnum + 3 + index;
1750
1751       if (writebuf != NULL)
1752         {
1753           /* Be careful to sign extend the value.  */
1754           regcache_cooked_write_unsigned (regcache, regnum,
1755                                           unpack_long (valtype, writebuf));
1756         }
1757       if (readbuf != NULL)
1758         {
1759           /* Extract the integer from GPR.  Since this is truncating the
1760              value, there isn't a sign extension problem.  */
1761           ULONGEST regval;
1762
1763           regcache_cooked_read_unsigned (regcache, regnum, &regval);
1764           store_unsigned_integer (readbuf, TYPE_LENGTH (valtype),
1765                                   gdbarch_byte_order (gdbarch), regval);
1766         }
1767       return 1;
1768     }
1769
1770   /* Floats and doubles go in f1 .. f13.  32-bit floats are converted
1771      to double first.  */
1772   if (TYPE_LENGTH (valtype) <= 8
1773       && TYPE_CODE (valtype) == TYPE_CODE_FLT)
1774     {
1775       int regnum = tdep->ppc_fp0_regnum + 1 + index;
1776       struct type *regtype = register_type (gdbarch, regnum);
1777       gdb_byte regval[PPC_MAX_REGISTER_SIZE];
1778
1779       if (writebuf != NULL)
1780         {
1781           target_float_convert (writebuf, valtype, regval, regtype);
1782           regcache->cooked_write (regnum, regval);
1783         }
1784       if (readbuf != NULL)
1785         {
1786           regcache->cooked_read (regnum, regval);
1787           target_float_convert (regval, regtype, readbuf, valtype);
1788         }
1789       return 1;
1790     }
1791
1792   /* Floats and doubles go in f1 .. f13.  32-bit decimal floats are
1793      placed in the least significant word.  */
1794   if (TYPE_LENGTH (valtype) <= 8
1795       && TYPE_CODE (valtype) == TYPE_CODE_DECFLOAT)
1796     {
1797       int regnum = tdep->ppc_fp0_regnum + 1 + index;
1798       int offset = 0;
1799
1800       if (gdbarch_byte_order (gdbarch) == BFD_ENDIAN_BIG)
1801         offset = 8 - TYPE_LENGTH (valtype);
1802
1803       if (writebuf != NULL)
1804         regcache->cooked_write_part (regnum, offset, TYPE_LENGTH (valtype),
1805                                      writebuf);
1806       if (readbuf != NULL)
1807         regcache->cooked_read_part (regnum, offset, TYPE_LENGTH (valtype),
1808                                     readbuf);
1809       return 1;
1810     }
1811
1812   /* IBM long double stored in two consecutive FPRs.  */
1813   if (TYPE_LENGTH (valtype) == 16
1814       && TYPE_CODE (valtype) == TYPE_CODE_FLT
1815       && (gdbarch_long_double_format (gdbarch)
1816           == floatformats_ibm_long_double))
1817     {
1818       int regnum = tdep->ppc_fp0_regnum + 1 + 2 * index;
1819
1820       if (writebuf != NULL)
1821         {
1822           regcache->cooked_write (regnum, writebuf);
1823           regcache->cooked_write (regnum + 1, writebuf + 8);
1824         }
1825       if (readbuf != NULL)
1826         {
1827           regcache->cooked_read (regnum, readbuf);
1828           regcache->cooked_read (regnum + 1, readbuf + 8);
1829         }
1830       return 1;
1831     }
1832
1833   /* 128-bit decimal floating-point values are stored in an even/odd
1834      pair of FPRs, with the even FPR holding the most significant half.  */
1835   if (TYPE_LENGTH (valtype) == 16
1836       && TYPE_CODE (valtype) == TYPE_CODE_DECFLOAT)
1837     {
1838       int regnum = tdep->ppc_fp0_regnum + 2 + 2 * index;
1839       int lopart = gdbarch_byte_order (gdbarch) == BFD_ENDIAN_BIG ? 8 : 0;
1840       int hipart = gdbarch_byte_order (gdbarch) == BFD_ENDIAN_BIG ? 0 : 8;
1841
1842       if (writebuf != NULL)
1843         {
1844           regcache->cooked_write (regnum, writebuf + hipart);
1845           regcache->cooked_write (regnum + 1, writebuf + lopart);
1846         }
1847       if (readbuf != NULL)
1848         {
1849           regcache->cooked_read (regnum, readbuf + hipart);
1850           regcache->cooked_read (regnum + 1, readbuf + lopart);
1851         }
1852       return 1;
1853     }
1854
1855   /* AltiVec vectors are returned in VRs starting at v2.  */
1856   if (TYPE_LENGTH (valtype) == 16
1857       && TYPE_CODE (valtype) == TYPE_CODE_ARRAY && TYPE_VECTOR (valtype)
1858       && tdep->vector_abi == POWERPC_VEC_ALTIVEC)
1859     {
1860       int regnum = tdep->ppc_vr0_regnum + 2 + index;
1861
1862       if (writebuf != NULL)
1863         regcache->cooked_write (regnum, writebuf);
1864       if (readbuf != NULL)
1865         regcache->cooked_read (regnum, readbuf);
1866       return 1;
1867     }
1868
1869   /* Short vectors are returned in GPRs starting at r3.  */
1870   if (TYPE_LENGTH (valtype) <= 8
1871       && TYPE_CODE (valtype) == TYPE_CODE_ARRAY && TYPE_VECTOR (valtype))
1872     {
1873       int regnum = tdep->ppc_gp0_regnum + 3 + index;
1874       int offset = 0;
1875
1876       if (gdbarch_byte_order (gdbarch) == BFD_ENDIAN_BIG)
1877         offset = 8 - TYPE_LENGTH (valtype);
1878
1879       if (writebuf != NULL)
1880         regcache->cooked_write_part (regnum, offset, TYPE_LENGTH (valtype),
1881                                      writebuf);
1882       if (readbuf != NULL)
1883         regcache->cooked_read_part (regnum, offset, TYPE_LENGTH (valtype),
1884                                     readbuf);
1885       return 1;
1886     }
1887
1888   return 0;
1889 }
1890
1891 /* The 64 bit ABI return value convention.
1892
1893    Return non-zero if the return-value is stored in a register, return
1894    0 if the return-value is instead stored on the stack (a.k.a.,
1895    struct return convention).
1896
1897    For a return-value stored in a register: when WRITEBUF is non-NULL,
1898    copy the buffer to the corresponding register return-value location
1899    location; when READBUF is non-NULL, fill the buffer from the
1900    corresponding register return-value location.  */
1901 enum return_value_convention
1902 ppc64_sysv_abi_return_value (struct gdbarch *gdbarch, struct value *function,
1903                              struct type *valtype, struct regcache *regcache,
1904                              gdb_byte *readbuf, const gdb_byte *writebuf)
1905 {
1906   struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
1907   struct type *func_type = function ? value_type (function) : NULL;
1908   int opencl_abi = func_type? ppc_sysv_use_opencl_abi (func_type) : 0;
1909   struct type *eltype;
1910   int nelt, i, ok;
1911
1912   /* This function exists to support a calling convention that
1913      requires floating-point registers.  It shouldn't be used on
1914      processors that lack them.  */
1915   gdb_assert (ppc_floating_point_unit_p (gdbarch));
1916
1917   /* Complex types are returned as if two independent scalars.  */
1918   if (TYPE_CODE (valtype) == TYPE_CODE_COMPLEX)
1919     {
1920       eltype = check_typedef (TYPE_TARGET_TYPE (valtype));
1921
1922       for (i = 0; i < 2; i++)
1923         {
1924           ok = ppc64_sysv_abi_return_value_base (gdbarch, eltype, regcache,
1925                                                  readbuf, writebuf, i);
1926           gdb_assert (ok);
1927
1928           if (readbuf)
1929             readbuf += TYPE_LENGTH (eltype);
1930           if (writebuf)
1931             writebuf += TYPE_LENGTH (eltype);
1932         }
1933       return RETURN_VALUE_REGISTER_CONVENTION;
1934     }
1935
1936   /* OpenCL vectors shorter than 16 bytes are returned as if
1937      a series of independent scalars; OpenCL vectors 16 bytes
1938      or longer are returned as if a series of AltiVec vectors.  */
1939   if (TYPE_CODE (valtype) == TYPE_CODE_ARRAY && TYPE_VECTOR (valtype)
1940       && opencl_abi)
1941     {
1942       if (TYPE_LENGTH (valtype) < 16)
1943         eltype = check_typedef (TYPE_TARGET_TYPE (valtype));
1944       else
1945         eltype = register_type (gdbarch, tdep->ppc_vr0_regnum);
1946
1947       nelt = TYPE_LENGTH (valtype) / TYPE_LENGTH (eltype);
1948       for (i = 0; i < nelt; i++)
1949         {
1950           ok = ppc64_sysv_abi_return_value_base (gdbarch, eltype, regcache,
1951                                                  readbuf, writebuf, i);
1952           gdb_assert (ok);
1953
1954           if (readbuf)
1955             readbuf += TYPE_LENGTH (eltype);
1956           if (writebuf)
1957             writebuf += TYPE_LENGTH (eltype);
1958         }
1959       return RETURN_VALUE_REGISTER_CONVENTION;
1960     }
1961
1962   /* All pointers live in r3.  */
1963   if (TYPE_CODE (valtype) == TYPE_CODE_PTR || TYPE_IS_REFERENCE (valtype))
1964     {
1965       int regnum = tdep->ppc_gp0_regnum + 3;
1966
1967       if (writebuf != NULL)
1968         regcache->cooked_write (regnum, writebuf);
1969       if (readbuf != NULL)
1970         regcache->cooked_read (regnum, readbuf);
1971       return RETURN_VALUE_REGISTER_CONVENTION;
1972     }
1973
1974   /* Small character arrays are returned, right justified, in r3.  */
1975   if (TYPE_CODE (valtype) == TYPE_CODE_ARRAY
1976       && !TYPE_VECTOR (valtype)
1977       && TYPE_LENGTH (valtype) <= 8
1978       && TYPE_CODE (TYPE_TARGET_TYPE (valtype)) == TYPE_CODE_INT
1979       && TYPE_LENGTH (TYPE_TARGET_TYPE (valtype)) == 1)
1980     {
1981       int regnum = tdep->ppc_gp0_regnum + 3;
1982       int offset = (register_size (gdbarch, regnum) - TYPE_LENGTH (valtype));
1983
1984       if (writebuf != NULL)
1985         regcache->cooked_write_part (regnum, offset, TYPE_LENGTH (valtype),
1986                                      writebuf);
1987       if (readbuf != NULL)
1988         regcache->cooked_read_part (regnum, offset, TYPE_LENGTH (valtype),
1989                                     readbuf);
1990       return RETURN_VALUE_REGISTER_CONVENTION;
1991     }
1992
1993   /* In the ELFv2 ABI, homogeneous floating-point or vector
1994      aggregates are returned in registers.  */
1995   if (tdep->elf_abi == POWERPC_ELF_V2
1996       && ppc64_elfv2_abi_homogeneous_aggregate (valtype, &eltype, &nelt)
1997       && (TYPE_CODE (eltype) == TYPE_CODE_FLT
1998           || TYPE_CODE (eltype) == TYPE_CODE_DECFLOAT
1999           || (TYPE_CODE (eltype) == TYPE_CODE_ARRAY
2000               && TYPE_VECTOR (eltype)
2001               && tdep->vector_abi == POWERPC_VEC_ALTIVEC
2002               && TYPE_LENGTH (eltype) == 16)))
2003     {
2004       for (i = 0; i < nelt; i++)
2005         {
2006           ok = ppc64_sysv_abi_return_value_base (gdbarch, eltype, regcache,
2007                                                  readbuf, writebuf, i);
2008           gdb_assert (ok);
2009
2010           if (readbuf)
2011             readbuf += TYPE_LENGTH (eltype);
2012           if (writebuf)
2013             writebuf += TYPE_LENGTH (eltype);
2014         }
2015
2016       return RETURN_VALUE_REGISTER_CONVENTION;
2017     }
2018
2019   /* In the ELFv2 ABI, aggregate types of up to 16 bytes are
2020      returned in registers r3:r4.  */
2021   if (tdep->elf_abi == POWERPC_ELF_V2
2022       && TYPE_LENGTH (valtype) <= 16
2023       && (TYPE_CODE (valtype) == TYPE_CODE_STRUCT
2024           || TYPE_CODE (valtype) == TYPE_CODE_UNION
2025           || (TYPE_CODE (valtype) == TYPE_CODE_ARRAY
2026               && !TYPE_VECTOR (valtype))))
2027     {
2028       int n_regs = ((TYPE_LENGTH (valtype) + tdep->wordsize - 1)
2029                     / tdep->wordsize);
2030       int i;
2031
2032       for (i = 0; i < n_regs; i++)
2033         {
2034           gdb_byte regval[PPC_MAX_REGISTER_SIZE];
2035           int regnum = tdep->ppc_gp0_regnum + 3 + i;
2036           int offset = i * tdep->wordsize;
2037           int len = TYPE_LENGTH (valtype) - offset;
2038
2039           if (len > tdep->wordsize)
2040             len = tdep->wordsize;
2041
2042           if (writebuf != NULL)
2043             {
2044               memset (regval, 0, sizeof regval);
2045               if (gdbarch_byte_order (gdbarch) == BFD_ENDIAN_BIG
2046                   && offset == 0)
2047                 memcpy (regval + tdep->wordsize - len, writebuf, len);
2048               else
2049                 memcpy (regval, writebuf + offset, len);
2050               regcache->cooked_write (regnum, regval);
2051             }
2052           if (readbuf != NULL)
2053             {
2054               regcache->cooked_read (regnum, regval);
2055               if (gdbarch_byte_order (gdbarch) == BFD_ENDIAN_BIG
2056                   && offset == 0)
2057                 memcpy (readbuf, regval + tdep->wordsize - len, len);
2058               else
2059                 memcpy (readbuf + offset, regval, len);
2060             }
2061         }
2062       return RETURN_VALUE_REGISTER_CONVENTION;
2063     }
2064
2065   /* Handle plain base types.  */
2066   if (ppc64_sysv_abi_return_value_base (gdbarch, valtype, regcache,
2067                                         readbuf, writebuf, 0))
2068     return RETURN_VALUE_REGISTER_CONVENTION;
2069
2070   return RETURN_VALUE_STRUCT_CONVENTION;
2071 }
2072