1 /* Native support code for PPC AIX, for GDB the GNU debugger.
3 Copyright (C) 2006-2018 Free Software Foundation, Inc.
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/>. */
32 #include "breakpoint.h"
33 #include "rs6000-tdep.h"
35 #include "rs6000-aix-tdep.h"
36 #include "xcoffread.h"
38 #include "solib-aix.h"
39 #include "target-float.h"
40 #include "xml-utils.h"
42 /* If the kernel has to deliver a signal, it pushes a sigcontext
43 structure on the stack and then calls the signal handler, passing
44 the address of the sigcontext in an argument register. Usually
45 the signal handler doesn't save this register, so we have to
46 access the sigcontext structure via an offset from the signal handler
48 The following constants were determined by experimentation on AIX 3.2. */
49 #define SIG_FRAME_PC_OFFSET 96
50 #define SIG_FRAME_LR_OFFSET 108
51 #define SIG_FRAME_FP_OFFSET 284
54 /* Core file support. */
56 static struct ppc_reg_offsets rs6000_aix32_reg_offsets =
58 /* General-purpose registers. */
70 /* Floating-point registers. */
72 56, /* fpscr_offset */
76 static struct ppc_reg_offsets rs6000_aix64_reg_offsets =
78 /* General-purpose registers. */
90 /* Floating-point registers. */
92 296, /* fpscr_offset */
97 /* Supply register REGNUM in the general-purpose register set REGSET
98 from the buffer specified by GREGS and LEN to register cache
99 REGCACHE. If REGNUM is -1, do this for all registers in REGSET. */
102 rs6000_aix_supply_regset (const struct regset *regset,
103 struct regcache *regcache, int regnum,
104 const void *gregs, size_t len)
106 ppc_supply_gregset (regset, regcache, regnum, gregs, len);
107 ppc_supply_fpregset (regset, regcache, regnum, gregs, len);
110 /* Collect register REGNUM in the general-purpose register set
111 REGSET, from register cache REGCACHE into the buffer specified by
112 GREGS and LEN. If REGNUM is -1, do this for all registers in
116 rs6000_aix_collect_regset (const struct regset *regset,
117 const struct regcache *regcache, int regnum,
118 void *gregs, size_t len)
120 ppc_collect_gregset (regset, regcache, regnum, gregs, len);
121 ppc_collect_fpregset (regset, regcache, regnum, gregs, len);
124 /* AIX register set. */
126 static const struct regset rs6000_aix32_regset =
128 &rs6000_aix32_reg_offsets,
129 rs6000_aix_supply_regset,
130 rs6000_aix_collect_regset,
133 static const struct regset rs6000_aix64_regset =
135 &rs6000_aix64_reg_offsets,
136 rs6000_aix_supply_regset,
137 rs6000_aix_collect_regset,
140 /* Iterate over core file register note sections. */
143 rs6000_aix_iterate_over_regset_sections (struct gdbarch *gdbarch,
144 iterate_over_regset_sections_cb *cb,
146 const struct regcache *regcache)
148 if (gdbarch_tdep (gdbarch)->wordsize == 4)
149 cb (".reg", 592, &rs6000_aix32_regset, NULL, cb_data);
151 cb (".reg", 576, &rs6000_aix64_regset, NULL, cb_data);
155 /* Pass the arguments in either registers, or in the stack. In RS/6000,
156 the first eight words of the argument list (that might be less than
157 eight parameters if some parameters occupy more than one word) are
158 passed in r3..r10 registers. Float and double parameters are
159 passed in fpr's, in addition to that. Rest of the parameters if any
160 are passed in user stack. There might be cases in which half of the
161 parameter is copied into registers, the other half is pushed into
164 Stack must be aligned on 64-bit boundaries when synthesizing
167 If the function is returning a structure, then the return address is passed
168 in r3, then the first 7 words of the parameters can be passed in registers,
172 rs6000_push_dummy_call (struct gdbarch *gdbarch, struct value *function,
173 struct regcache *regcache, CORE_ADDR bp_addr,
174 int nargs, struct value **args, CORE_ADDR sp,
175 int struct_return, CORE_ADDR struct_addr)
177 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
178 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
181 int argno; /* current argument number */
182 int argbytes; /* current argument byte */
183 gdb_byte tmp_buffer[50];
184 int f_argno = 0; /* current floating point argno */
185 int wordsize = gdbarch_tdep (gdbarch)->wordsize;
186 CORE_ADDR func_addr = find_function_addr (function, NULL);
188 struct value *arg = 0;
193 /* The calling convention this function implements assumes the
194 processor has floating-point registers. We shouldn't be using it
195 on PPC variants that lack them. */
196 gdb_assert (ppc_floating_point_unit_p (gdbarch));
198 /* The first eight words of ther arguments are passed in registers.
199 Copy them appropriately. */
202 /* If the function is returning a `struct', then the first word
203 (which will be passed in r3) is used for struct return address.
204 In that case we should advance one word and start from r4
205 register to copy parameters. */
208 regcache_raw_write_unsigned (regcache, tdep->ppc_gp0_regnum + 3,
213 /* effectively indirect call... gcc does...
215 return_val example( float, int);
218 float in fp0, int in r3
219 offset of stack on overflow 8/16
220 for varargs, must go by type.
222 float in r3&r4, int in r5
223 offset of stack on overflow different
225 return in r3 or f0. If no float, must study how gcc emulates floats;
226 pay attention to arg promotion.
227 User may have to cast\args to handle promotion correctly
228 since gdb won't know if prototype supplied or not. */
230 for (argno = 0, argbytes = 0; argno < nargs && ii < 8; ++ii)
232 int reg_size = register_size (gdbarch, ii + 3);
235 type = check_typedef (value_type (arg));
236 len = TYPE_LENGTH (type);
238 if (TYPE_CODE (type) == TYPE_CODE_FLT)
240 /* Floating point arguments are passed in fpr's, as well as gpr's.
241 There are 13 fpr's reserved for passing parameters. At this point
242 there is no way we would run out of them.
244 Always store the floating point value using the register's
245 floating-point format. */
246 const int fp_regnum = tdep->ppc_fp0_regnum + 1 + f_argno;
247 gdb_byte reg_val[PPC_MAX_REGISTER_SIZE];
248 struct type *reg_type = register_type (gdbarch, fp_regnum);
250 gdb_assert (len <= 8);
252 target_float_convert (value_contents (arg), type, reg_val, reg_type);
253 regcache->cooked_write (fp_regnum, reg_val);
260 /* Argument takes more than one register. */
261 while (argbytes < len)
263 gdb_byte word[PPC_MAX_REGISTER_SIZE];
264 memset (word, 0, reg_size);
266 ((char *) value_contents (arg)) + argbytes,
267 (len - argbytes) > reg_size
268 ? reg_size : len - argbytes);
269 regcache->cooked_write (tdep->ppc_gp0_regnum + 3 + ii, word);
270 ++ii, argbytes += reg_size;
273 goto ran_out_of_registers_for_arguments;
280 /* Argument can fit in one register. No problem. */
281 gdb_byte word[PPC_MAX_REGISTER_SIZE];
283 memset (word, 0, reg_size);
284 memcpy (word, value_contents (arg), len);
285 regcache->cooked_write (tdep->ppc_gp0_regnum + 3 +ii, word);
290 ran_out_of_registers_for_arguments:
292 regcache_cooked_read_unsigned (regcache,
293 gdbarch_sp_regnum (gdbarch),
296 /* Location for 8 parameters are always reserved. */
299 /* Another six words for back chain, TOC register, link register, etc. */
302 /* Stack pointer must be quadword aligned. */
305 /* If there are more arguments, allocate space for them in
306 the stack, then push them starting from the ninth one. */
308 if ((argno < nargs) || argbytes)
314 space += ((len - argbytes + 3) & -4);
320 for (; jj < nargs; ++jj)
322 struct value *val = args[jj];
323 space += ((TYPE_LENGTH (value_type (val))) + 3) & -4;
326 /* Add location required for the rest of the parameters. */
327 space = (space + 15) & -16;
330 /* This is another instance we need to be concerned about
331 securing our stack space. If we write anything underneath %sp
332 (r1), we might conflict with the kernel who thinks he is free
333 to use this area. So, update %sp first before doing anything
336 regcache_raw_write_signed (regcache,
337 gdbarch_sp_regnum (gdbarch), sp);
339 /* If the last argument copied into the registers didn't fit there
340 completely, push the rest of it into stack. */
344 write_memory (sp + 24 + (ii * 4),
345 value_contents (arg) + argbytes,
348 ii += ((len - argbytes + 3) & -4) / 4;
351 /* Push the rest of the arguments into stack. */
352 for (; argno < nargs; ++argno)
356 type = check_typedef (value_type (arg));
357 len = TYPE_LENGTH (type);
360 /* Float types should be passed in fpr's, as well as in the
362 if (TYPE_CODE (type) == TYPE_CODE_FLT && f_argno < 13)
365 gdb_assert (len <= 8);
367 regcache->cooked_write (tdep->ppc_fp0_regnum + 1 + f_argno,
368 value_contents (arg));
372 write_memory (sp + 24 + (ii * 4), value_contents (arg), len);
373 ii += ((len + 3) & -4) / 4;
377 /* Set the stack pointer. According to the ABI, the SP is meant to
378 be set _before_ the corresponding stack space is used. On AIX,
379 this even applies when the target has been completely stopped!
380 Not doing this can lead to conflicts with the kernel which thinks
381 that it still has control over this not-yet-allocated stack
383 regcache_raw_write_signed (regcache, gdbarch_sp_regnum (gdbarch), sp);
385 /* Set back chain properly. */
386 store_unsigned_integer (tmp_buffer, wordsize, byte_order, saved_sp);
387 write_memory (sp, tmp_buffer, wordsize);
389 /* Point the inferior function call's return address at the dummy's
391 regcache_raw_write_signed (regcache, tdep->ppc_lr_regnum, bp_addr);
393 /* Set the TOC register value. */
394 regcache_raw_write_signed (regcache, tdep->ppc_toc_regnum,
395 solib_aix_get_toc_value (func_addr));
397 target_store_registers (regcache, -1);
401 static enum return_value_convention
402 rs6000_return_value (struct gdbarch *gdbarch, struct value *function,
403 struct type *valtype, struct regcache *regcache,
404 gdb_byte *readbuf, const gdb_byte *writebuf)
406 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
407 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
409 /* The calling convention this function implements assumes the
410 processor has floating-point registers. We shouldn't be using it
411 on PowerPC variants that lack them. */
412 gdb_assert (ppc_floating_point_unit_p (gdbarch));
414 /* AltiVec extension: Functions that declare a vector data type as a
415 return value place that return value in VR2. */
416 if (TYPE_CODE (valtype) == TYPE_CODE_ARRAY && TYPE_VECTOR (valtype)
417 && TYPE_LENGTH (valtype) == 16)
420 regcache->cooked_read (tdep->ppc_vr0_regnum + 2, readbuf);
422 regcache->cooked_write (tdep->ppc_vr0_regnum + 2, writebuf);
424 return RETURN_VALUE_REGISTER_CONVENTION;
427 /* If the called subprogram returns an aggregate, there exists an
428 implicit first argument, whose value is the address of a caller-
429 allocated buffer into which the callee is assumed to store its
430 return value. All explicit parameters are appropriately
432 if (TYPE_CODE (valtype) == TYPE_CODE_STRUCT
433 || TYPE_CODE (valtype) == TYPE_CODE_UNION
434 || TYPE_CODE (valtype) == TYPE_CODE_ARRAY)
435 return RETURN_VALUE_STRUCT_CONVENTION;
437 /* Scalar floating-point values are returned in FPR1 for float or
438 double, and in FPR1:FPR2 for quadword precision. Fortran
439 complex*8 and complex*16 are returned in FPR1:FPR2, and
440 complex*32 is returned in FPR1:FPR4. */
441 if (TYPE_CODE (valtype) == TYPE_CODE_FLT
442 && (TYPE_LENGTH (valtype) == 4 || TYPE_LENGTH (valtype) == 8))
444 struct type *regtype = register_type (gdbarch, tdep->ppc_fp0_regnum);
447 /* FIXME: kettenis/2007-01-01: Add support for quadword
448 precision and complex. */
452 regcache->cooked_read (tdep->ppc_fp0_regnum + 1, regval);
453 target_float_convert (regval, regtype, readbuf, valtype);
457 target_float_convert (writebuf, valtype, regval, regtype);
458 regcache->cooked_write (tdep->ppc_fp0_regnum + 1, regval);
461 return RETURN_VALUE_REGISTER_CONVENTION;
464 /* Values of the types int, long, short, pointer, and char (length
465 is less than or equal to four bytes), as well as bit values of
466 lengths less than or equal to 32 bits, must be returned right
467 justified in GPR3 with signed values sign extended and unsigned
468 values zero extended, as necessary. */
469 if (TYPE_LENGTH (valtype) <= tdep->wordsize)
475 /* For reading we don't have to worry about sign extension. */
476 regcache_cooked_read_unsigned (regcache, tdep->ppc_gp0_regnum + 3,
478 store_unsigned_integer (readbuf, TYPE_LENGTH (valtype), byte_order,
483 /* For writing, use unpack_long since that should handle any
484 required sign extension. */
485 regcache_cooked_write_unsigned (regcache, tdep->ppc_gp0_regnum + 3,
486 unpack_long (valtype, writebuf));
489 return RETURN_VALUE_REGISTER_CONVENTION;
492 /* Eight-byte non-floating-point scalar values must be returned in
495 if (TYPE_LENGTH (valtype) == 8)
497 gdb_assert (TYPE_CODE (valtype) != TYPE_CODE_FLT);
498 gdb_assert (tdep->wordsize == 4);
504 regcache->cooked_read (tdep->ppc_gp0_regnum + 3, regval);
505 regcache->cooked_read (tdep->ppc_gp0_regnum + 4, regval + 4);
506 memcpy (readbuf, regval, 8);
510 regcache->cooked_write (tdep->ppc_gp0_regnum + 3, writebuf);
511 regcache->cooked_write (tdep->ppc_gp0_regnum + 4, writebuf + 4);
514 return RETURN_VALUE_REGISTER_CONVENTION;
517 return RETURN_VALUE_STRUCT_CONVENTION;
520 /* Support for CONVERT_FROM_FUNC_PTR_ADDR (ARCH, ADDR, TARG).
522 Usually a function pointer's representation is simply the address
523 of the function. On the RS/6000 however, a function pointer is
524 represented by a pointer to an OPD entry. This OPD entry contains
525 three words, the first word is the address of the function, the
526 second word is the TOC pointer (r2), and the third word is the
527 static chain value. Throughout GDB it is currently assumed that a
528 function pointer contains the address of the function, which is not
529 easy to fix. In addition, the conversion of a function address to
530 a function pointer would require allocation of an OPD entry in the
531 inferior's memory space, with all its drawbacks. To be able to
532 call C++ virtual methods in the inferior (which are called via
533 function pointers), find_function_addr uses this function to get the
534 function address from a function pointer. */
536 /* Return real function address if ADDR (a function pointer) is in the data
537 space and is therefore a special function pointer. */
540 rs6000_convert_from_func_ptr_addr (struct gdbarch *gdbarch,
542 struct target_ops *targ)
544 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
545 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
546 struct obj_section *s;
548 s = find_pc_section (addr);
550 /* Normally, functions live inside a section that is executable.
551 So, if ADDR points to a non-executable section, then treat it
552 as a function descriptor and return the target address iff
553 the target address itself points to a section that is executable. */
554 if (s && (s->the_bfd_section->flags & SEC_CODE) == 0)
557 struct obj_section *pc_section;
561 pc = read_memory_unsigned_integer (addr, tdep->wordsize, byte_order);
563 CATCH (e, RETURN_MASK_ERROR)
565 /* An error occured during reading. Probably a memory error
566 due to the section not being loaded yet. This address
567 cannot be a function descriptor. */
572 pc_section = find_pc_section (pc);
574 if (pc_section && (pc_section->the_bfd_section->flags & SEC_CODE))
582 /* Calculate the destination of a branch/jump. Return -1 if not a branch. */
585 branch_dest (struct regcache *regcache, int opcode, int instr,
586 CORE_ADDR pc, CORE_ADDR safety)
588 struct gdbarch *gdbarch = regcache->arch ();
589 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
590 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
596 absolute = (int) ((instr >> 1) & 1);
601 immediate = ((instr & ~3) << 6) >> 6; /* br unconditional */
605 dest = pc + immediate;
609 immediate = ((instr & ~3) << 16) >> 16; /* br conditional */
613 dest = pc + immediate;
617 ext_op = (instr >> 1) & 0x3ff;
619 if (ext_op == 16) /* br conditional register */
621 dest = regcache_raw_get_unsigned (regcache, tdep->ppc_lr_regnum) & ~3;
623 /* If we are about to return from a signal handler, dest is
624 something like 0x3c90. The current frame is a signal handler
625 caller frame, upon completion of the sigreturn system call
626 execution will return to the saved PC in the frame. */
627 if (dest < AIX_TEXT_SEGMENT_BASE)
629 struct frame_info *frame = get_current_frame ();
631 dest = read_memory_unsigned_integer
632 (get_frame_base (frame) + SIG_FRAME_PC_OFFSET,
633 tdep->wordsize, byte_order);
637 else if (ext_op == 528) /* br cond to count reg */
639 dest = regcache_raw_get_unsigned (regcache,
640 tdep->ppc_ctr_regnum) & ~3;
642 /* If we are about to execute a system call, dest is something
643 like 0x22fc or 0x3b00. Upon completion the system call
644 will return to the address in the link register. */
645 if (dest < AIX_TEXT_SEGMENT_BASE)
646 dest = regcache_raw_get_unsigned (regcache,
647 tdep->ppc_lr_regnum) & ~3;
656 return (dest < AIX_TEXT_SEGMENT_BASE) ? safety : dest;
659 /* AIX does not support PT_STEP. Simulate it. */
661 static std::vector<CORE_ADDR>
662 rs6000_software_single_step (struct regcache *regcache)
664 struct gdbarch *gdbarch = regcache->arch ();
665 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
671 loc = regcache_read_pc (regcache);
673 insn = read_memory_integer (loc, 4, byte_order);
675 std::vector<CORE_ADDR> next_pcs = ppc_deal_with_atomic_sequence (regcache);
676 if (!next_pcs.empty ())
679 breaks[0] = loc + PPC_INSN_SIZE;
681 breaks[1] = branch_dest (regcache, opcode, insn, loc, breaks[0]);
683 /* Don't put two breakpoints on the same address. */
684 if (breaks[1] == breaks[0])
687 for (ii = 0; ii < 2; ++ii)
689 /* ignore invalid breakpoint. */
690 if (breaks[ii] == -1)
693 next_pcs.push_back (breaks[ii]);
696 errno = 0; /* FIXME, don't ignore errors! */
697 /* What errors? {read,write}_memory call error(). */
701 /* Implement the "auto_wide_charset" gdbarch method for this platform. */
704 rs6000_aix_auto_wide_charset (void)
709 /* Implement an osabi sniffer for RS6000/AIX.
711 This function assumes that ABFD's flavour is XCOFF. In other words,
712 it should be registered as a sniffer for bfd_target_xcoff_flavour
713 objfiles only. A failed assertion will be raised if this condition
716 static enum gdb_osabi
717 rs6000_aix_osabi_sniffer (bfd *abfd)
719 gdb_assert (bfd_get_flavour (abfd) == bfd_target_xcoff_flavour);
721 /* The only noticeable difference between Lynx178 XCOFF files and
722 AIX XCOFF files comes from the fact that there are no shared
723 libraries on Lynx178. On AIX, we are betting that an executable
724 linked with no shared library will never exist. */
725 if (xcoff_get_n_import_files (abfd) <= 0)
726 return GDB_OSABI_UNKNOWN;
728 return GDB_OSABI_AIX;
731 /* A structure encoding the offset and size of a field within
740 /* A structure describing the layout of all the fields of interest
741 in AIX's struct ld_info. Each field in this struct corresponds
742 to the field of the same name in struct ld_info. */
746 struct field_info ldinfo_next;
747 struct field_info ldinfo_fd;
748 struct field_info ldinfo_textorg;
749 struct field_info ldinfo_textsize;
750 struct field_info ldinfo_dataorg;
751 struct field_info ldinfo_datasize;
752 struct field_info ldinfo_filename;
755 /* The following data has been generated by compiling and running
756 the following program on AIX 5.3. */
761 #define __LDINFO_PTRACE32__
762 #define __LDINFO_PTRACE64__
765 #define pinfo(type,member) \
767 struct type ldi = {0}; \
769 printf (" {%d, %d},\t/* %s */\n", \
770 offsetof (struct type, member), \
771 sizeof (ldi.member), \
779 printf ("static const struct ld_info_desc ld_info32_desc =\n{\n");
780 pinfo (__ld_info32, ldinfo_next);
781 pinfo (__ld_info32, ldinfo_fd);
782 pinfo (__ld_info32, ldinfo_textorg);
783 pinfo (__ld_info32, ldinfo_textsize);
784 pinfo (__ld_info32, ldinfo_dataorg);
785 pinfo (__ld_info32, ldinfo_datasize);
786 pinfo (__ld_info32, ldinfo_filename);
791 printf ("static const struct ld_info_desc ld_info64_desc =\n{\n");
792 pinfo (__ld_info64, ldinfo_next);
793 pinfo (__ld_info64, ldinfo_fd);
794 pinfo (__ld_info64, ldinfo_textorg);
795 pinfo (__ld_info64, ldinfo_textsize);
796 pinfo (__ld_info64, ldinfo_dataorg);
797 pinfo (__ld_info64, ldinfo_datasize);
798 pinfo (__ld_info64, ldinfo_filename);
805 /* Layout of the 32bit version of struct ld_info. */
807 static const struct ld_info_desc ld_info32_desc =
809 {0, 4}, /* ldinfo_next */
810 {4, 4}, /* ldinfo_fd */
811 {8, 4}, /* ldinfo_textorg */
812 {12, 4}, /* ldinfo_textsize */
813 {16, 4}, /* ldinfo_dataorg */
814 {20, 4}, /* ldinfo_datasize */
815 {24, 2}, /* ldinfo_filename */
818 /* Layout of the 64bit version of struct ld_info. */
820 static const struct ld_info_desc ld_info64_desc =
822 {0, 4}, /* ldinfo_next */
823 {8, 4}, /* ldinfo_fd */
824 {16, 8}, /* ldinfo_textorg */
825 {24, 8}, /* ldinfo_textsize */
826 {32, 8}, /* ldinfo_dataorg */
827 {40, 8}, /* ldinfo_datasize */
828 {48, 2}, /* ldinfo_filename */
831 /* A structured representation of one entry read from the ld_info
832 binary data provided by the AIX loader. */
846 /* Return a struct ld_info object corresponding to the entry at
849 Note that the filename and member_name strings still point
850 to the data in LDI_BUF. So LDI_BUF must not be deallocated
851 while the struct ld_info object returned is in use. */
853 static struct ld_info
854 rs6000_aix_extract_ld_info (struct gdbarch *gdbarch,
855 const gdb_byte *ldi_buf)
857 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
858 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch);
859 struct type *ptr_type = builtin_type (gdbarch)->builtin_data_ptr;
860 const struct ld_info_desc desc
861 = tdep->wordsize == 8 ? ld_info64_desc : ld_info32_desc;
864 info.next = extract_unsigned_integer (ldi_buf + desc.ldinfo_next.offset,
865 desc.ldinfo_next.size,
867 info.fd = extract_signed_integer (ldi_buf + desc.ldinfo_fd.offset,
870 info.textorg = extract_typed_address (ldi_buf + desc.ldinfo_textorg.offset,
873 = extract_unsigned_integer (ldi_buf + desc.ldinfo_textsize.offset,
874 desc.ldinfo_textsize.size,
876 info.dataorg = extract_typed_address (ldi_buf + desc.ldinfo_dataorg.offset,
879 = extract_unsigned_integer (ldi_buf + desc.ldinfo_datasize.offset,
880 desc.ldinfo_datasize.size,
882 info.filename = (char *) ldi_buf + desc.ldinfo_filename.offset;
883 info.member_name = info.filename + strlen (info.filename) + 1;
888 /* Append to OBJSTACK an XML string description of the shared library
889 corresponding to LDI, following the TARGET_OBJECT_LIBRARIES_AIX
893 rs6000_aix_shared_library_to_xml (struct ld_info *ldi,
894 struct obstack *obstack)
896 obstack_grow_str (obstack, "<library name=\"");
897 std::string p = xml_escape_text (ldi->filename);
898 obstack_grow_str (obstack, p.c_str ());
899 obstack_grow_str (obstack, "\"");
901 if (ldi->member_name[0] != '\0')
903 obstack_grow_str (obstack, " member=\"");
904 p = xml_escape_text (ldi->member_name);
905 obstack_grow_str (obstack, p.c_str ());
906 obstack_grow_str (obstack, "\"");
909 obstack_grow_str (obstack, " text_addr=\"");
910 obstack_grow_str (obstack, core_addr_to_string (ldi->textorg));
911 obstack_grow_str (obstack, "\"");
913 obstack_grow_str (obstack, " text_size=\"");
914 obstack_grow_str (obstack, pulongest (ldi->textsize));
915 obstack_grow_str (obstack, "\"");
917 obstack_grow_str (obstack, " data_addr=\"");
918 obstack_grow_str (obstack, core_addr_to_string (ldi->dataorg));
919 obstack_grow_str (obstack, "\"");
921 obstack_grow_str (obstack, " data_size=\"");
922 obstack_grow_str (obstack, pulongest (ldi->datasize));
923 obstack_grow_str (obstack, "\"");
925 obstack_grow_str (obstack, "></library>");
928 /* Convert the ld_info binary data provided by the AIX loader into
929 an XML representation following the TARGET_OBJECT_LIBRARIES_AIX
932 LDI_BUF is a buffer containing the ld_info data.
933 READBUF, OFFSET and LEN follow the same semantics as target_ops'
934 to_xfer_partial target_ops method.
936 If CLOSE_LDINFO_FD is nonzero, then this routine also closes
937 the ldinfo_fd file descriptor. This is useful when the ldinfo
938 data is obtained via ptrace, as ptrace opens a file descriptor
939 for each and every entry; but we cannot use this descriptor
940 as the consumer of the XML library list might live in a different
944 rs6000_aix_ld_info_to_xml (struct gdbarch *gdbarch, const gdb_byte *ldi_buf,
945 gdb_byte *readbuf, ULONGEST offset, ULONGEST len,
948 struct obstack obstack;
952 obstack_init (&obstack);
953 obstack_grow_str (&obstack, "<library-list-aix version=\"1.0\">\n");
957 struct ld_info ldi = rs6000_aix_extract_ld_info (gdbarch, ldi_buf);
959 rs6000_aix_shared_library_to_xml (&ldi, &obstack);
965 ldi_buf = ldi_buf + ldi.next;
968 obstack_grow_str0 (&obstack, "</library-list-aix>\n");
970 buf = (const char *) obstack_finish (&obstack);
971 len_avail = strlen (buf);
972 if (offset >= len_avail)
976 if (len > len_avail - offset)
977 len = len_avail - offset;
978 memcpy (readbuf, buf + offset, len);
981 obstack_free (&obstack, NULL);
985 /* Implement the core_xfer_shared_libraries_aix gdbarch method. */
988 rs6000_aix_core_xfer_shared_libraries_aix (struct gdbarch *gdbarch,
993 struct bfd_section *ldinfo_sec;
996 ldinfo_sec = bfd_get_section_by_name (core_bfd, ".ldinfo");
997 if (ldinfo_sec == NULL)
998 error (_("cannot find .ldinfo section from core file: %s"),
999 bfd_errmsg (bfd_get_error ()));
1000 ldinfo_size = bfd_get_section_size (ldinfo_sec);
1002 gdb::byte_vector ldinfo_buf (ldinfo_size);
1004 if (! bfd_get_section_contents (core_bfd, ldinfo_sec,
1005 ldinfo_buf.data (), 0, ldinfo_size))
1006 error (_("unable to read .ldinfo section from core file: %s"),
1007 bfd_errmsg (bfd_get_error ()));
1009 return rs6000_aix_ld_info_to_xml (gdbarch, ldinfo_buf.data (), readbuf,
1014 rs6000_aix_init_osabi (struct gdbarch_info info, struct gdbarch *gdbarch)
1016 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);
1018 /* RS6000/AIX does not support PT_STEP. Has to be simulated. */
1019 set_gdbarch_software_single_step (gdbarch, rs6000_software_single_step);
1021 /* Displaced stepping is currently not supported in combination with
1022 software single-stepping. */
1023 set_gdbarch_displaced_step_copy_insn (gdbarch, NULL);
1024 set_gdbarch_displaced_step_fixup (gdbarch, NULL);
1025 set_gdbarch_displaced_step_location (gdbarch, NULL);
1027 set_gdbarch_push_dummy_call (gdbarch, rs6000_push_dummy_call);
1028 set_gdbarch_return_value (gdbarch, rs6000_return_value);
1029 set_gdbarch_long_double_bit (gdbarch, 8 * TARGET_CHAR_BIT);
1031 /* Handle RS/6000 function pointers (which are really function
1033 set_gdbarch_convert_from_func_ptr_addr
1034 (gdbarch, rs6000_convert_from_func_ptr_addr);
1036 /* Core file support. */
1037 set_gdbarch_iterate_over_regset_sections
1038 (gdbarch, rs6000_aix_iterate_over_regset_sections);
1039 set_gdbarch_core_xfer_shared_libraries_aix
1040 (gdbarch, rs6000_aix_core_xfer_shared_libraries_aix);
1042 if (tdep->wordsize == 8)
1043 tdep->lr_frame_offset = 16;
1045 tdep->lr_frame_offset = 8;
1047 if (tdep->wordsize == 4)
1048 /* PowerOpen / AIX 32 bit. The saved area or red zone consists of
1049 19 4 byte GPRS + 18 8 byte FPRs giving a total of 220 bytes.
1050 Problem is, 220 isn't frame (16 byte) aligned. Round it up to
1052 set_gdbarch_frame_red_zone_size (gdbarch, 224);
1054 set_gdbarch_frame_red_zone_size (gdbarch, 0);
1056 if (tdep->wordsize == 8)
1057 set_gdbarch_wchar_bit (gdbarch, 32);
1059 set_gdbarch_wchar_bit (gdbarch, 16);
1060 set_gdbarch_wchar_signed (gdbarch, 0);
1061 set_gdbarch_auto_wide_charset (gdbarch, rs6000_aix_auto_wide_charset);
1063 set_solib_ops (gdbarch, &solib_aix_so_ops);
1067 _initialize_rs6000_aix_tdep (void)
1069 gdbarch_register_osabi_sniffer (bfd_arch_rs6000,
1070 bfd_target_xcoff_flavour,
1071 rs6000_aix_osabi_sniffer);
1072 gdbarch_register_osabi_sniffer (bfd_arch_powerpc,
1073 bfd_target_xcoff_flavour,
1074 rs6000_aix_osabi_sniffer);
1076 gdbarch_register_osabi (bfd_arch_rs6000, 0, GDB_OSABI_AIX,
1077 rs6000_aix_init_osabi);
1078 gdbarch_register_osabi (bfd_arch_powerpc, 0, GDB_OSABI_AIX,
1079 rs6000_aix_init_osabi);