GDB (API)
|
00001 /* Darwin support for GDB, the GNU debugger. 00002 Copyright (C) 1997-2013 Free Software Foundation, Inc. 00003 00004 Contributed by Apple Computer, Inc. 00005 00006 This file is part of GDB. 00007 00008 This program is free software; you can redistribute it and/or modify 00009 it under the terms of the GNU General Public License as published by 00010 the Free Software Foundation; either version 3 of the License, or 00011 (at your option) any later version. 00012 00013 This program is distributed in the hope that it will be useful, 00014 but WITHOUT ANY WARRANTY; without even the implied warranty of 00015 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 00016 GNU General Public License for more details. 00017 00018 You should have received a copy of the GNU General Public License 00019 along with this program. If not, see <http://www.gnu.org/licenses/>. */ 00020 00021 #include "defs.h" 00022 #include "frame.h" 00023 #include "inferior.h" 00024 #include "gdbcore.h" 00025 #include "target.h" 00026 #include "floatformat.h" 00027 #include "symtab.h" 00028 #include "regcache.h" 00029 #include "libbfd.h" 00030 #include "objfiles.h" 00031 00032 #include "i387-tdep.h" 00033 #include "i386-tdep.h" 00034 #include "osabi.h" 00035 #include "ui-out.h" 00036 #include "symtab.h" 00037 #include "frame.h" 00038 #include "gdb_assert.h" 00039 #include "i386-darwin-tdep.h" 00040 #include "solib.h" 00041 #include "solib-darwin.h" 00042 #include "dwarf2-frame.h" 00043 00044 /* Offsets into the struct i386_thread_state where we'll find the saved regs. 00045 From <mach/i386/thread_status.h> and i386-tdep.h. */ 00046 int i386_darwin_thread_state_reg_offset[] = 00047 { 00048 0 * 4, /* EAX */ 00049 2 * 4, /* ECX */ 00050 3 * 4, /* EDX */ 00051 1 * 4, /* EBX */ 00052 7 * 4, /* ESP */ 00053 6 * 4, /* EBP */ 00054 5 * 4, /* ESI */ 00055 4 * 4, /* EDI */ 00056 10 * 4, /* EIP */ 00057 9 * 4, /* EFLAGS */ 00058 11 * 4, /* CS */ 00059 8 * 4, /* SS */ 00060 12 * 4, /* DS */ 00061 13 * 4, /* ES */ 00062 14 * 4, /* FS */ 00063 15 * 4 /* GS */ 00064 }; 00065 00066 const int i386_darwin_thread_state_num_regs = 00067 ARRAY_SIZE (i386_darwin_thread_state_reg_offset); 00068 00069 /* Assuming THIS_FRAME is a Darwin sigtramp routine, return the 00070 address of the associated sigcontext structure. */ 00071 00072 static CORE_ADDR 00073 i386_darwin_sigcontext_addr (struct frame_info *this_frame) 00074 { 00075 struct gdbarch *gdbarch = get_frame_arch (this_frame); 00076 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch); 00077 CORE_ADDR bp; 00078 CORE_ADDR si; 00079 gdb_byte buf[4]; 00080 00081 get_frame_register (this_frame, I386_EBP_REGNUM, buf); 00082 bp = extract_unsigned_integer (buf, 4, byte_order); 00083 00084 /* A pointer to the ucontext is passed as the fourth argument 00085 to the signal handler. */ 00086 read_memory (bp + 24, buf, 4); 00087 si = extract_unsigned_integer (buf, 4, byte_order); 00088 00089 /* The pointer to mcontext is at offset 28. */ 00090 read_memory (si + 28, buf, 4); 00091 00092 /* First register (eax) is at offset 12. */ 00093 return extract_unsigned_integer (buf, 4, byte_order) + 12; 00094 } 00095 00096 /* Return true if the PC of THIS_FRAME is in a signal trampoline which 00097 may have DWARF-2 CFI. 00098 00099 On Darwin, signal trampolines have DWARF-2 CFI but it has only one FDE 00100 that covers only the indirect call to the user handler. 00101 Without this function, the frame is recognized as a normal frame which is 00102 not expected. */ 00103 00104 int 00105 darwin_dwarf_signal_frame_p (struct gdbarch *gdbarch, 00106 struct frame_info *this_frame) 00107 { 00108 return i386_sigtramp_p (this_frame); 00109 } 00110 00111 /* Check wether TYPE is a 128-bit vector (__m128, __m128d or __m128i). */ 00112 00113 static int 00114 i386_m128_p (struct type *type) 00115 { 00116 return (TYPE_CODE (type) == TYPE_CODE_ARRAY && TYPE_VECTOR (type) 00117 && TYPE_LENGTH (type) == 16); 00118 } 00119 00120 /* Return the alignment for TYPE when passed as an argument. */ 00121 00122 static int 00123 i386_darwin_arg_type_alignment (struct type *type) 00124 { 00125 type = check_typedef (type); 00126 /* According to Mac OS X ABI document (passing arguments): 00127 6. The caller places 64-bit vectors (__m64) on the parameter area, 00128 aligned to 8-byte boundaries. 00129 7. [...] The caller aligns 128-bit vectors in the parameter area to 00130 16-byte boundaries. */ 00131 if (TYPE_CODE (type) == TYPE_CODE_ARRAY && TYPE_VECTOR (type)) 00132 return TYPE_LENGTH (type); 00133 /* 4. The caller places all the fields of structures (or unions) with no 00134 vector elements in the parameter area. These structures are 4-byte 00135 aligned. 00136 5. The caller places structures with vector elements on the stack, 00137 16-byte aligned. */ 00138 if (TYPE_CODE (type) == TYPE_CODE_STRUCT 00139 || TYPE_CODE (type) == TYPE_CODE_UNION) 00140 { 00141 int i; 00142 int res = 4; 00143 for (i = 0; i < TYPE_NFIELDS (type); i++) 00144 res = max (res, 00145 i386_darwin_arg_type_alignment (TYPE_FIELD_TYPE (type, i))); 00146 return res; 00147 } 00148 /* 2. The caller aligns nonvector arguments to 4-byte boundaries. */ 00149 return 4; 00150 } 00151 00152 static CORE_ADDR 00153 i386_darwin_push_dummy_call (struct gdbarch *gdbarch, struct value *function, 00154 struct regcache *regcache, CORE_ADDR bp_addr, 00155 int nargs, struct value **args, CORE_ADDR sp, 00156 int struct_return, CORE_ADDR struct_addr) 00157 { 00158 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch); 00159 enum bfd_endian byte_order = gdbarch_byte_order (gdbarch); 00160 gdb_byte buf[4]; 00161 int i; 00162 int write_pass; 00163 00164 /* Determine the total space required for arguments and struct 00165 return address in a first pass, then push arguments in a second pass. */ 00166 00167 for (write_pass = 0; write_pass < 2; write_pass++) 00168 { 00169 int args_space = 0; 00170 int num_m128 = 0; 00171 00172 if (struct_return) 00173 { 00174 if (write_pass) 00175 { 00176 /* Push value address. */ 00177 store_unsigned_integer (buf, 4, byte_order, struct_addr); 00178 write_memory (sp, buf, 4); 00179 } 00180 args_space += 4; 00181 } 00182 00183 for (i = 0; i < nargs; i++) 00184 { 00185 struct type *arg_type = value_enclosing_type (args[i]); 00186 00187 if (i386_m128_p (arg_type) && num_m128 < 4) 00188 { 00189 if (write_pass) 00190 { 00191 const gdb_byte *val = value_contents_all (args[i]); 00192 regcache_raw_write 00193 (regcache, I387_MM0_REGNUM(tdep) + num_m128, val); 00194 } 00195 num_m128++; 00196 } 00197 else 00198 { 00199 args_space = align_up (args_space, 00200 i386_darwin_arg_type_alignment (arg_type)); 00201 if (write_pass) 00202 write_memory (sp + args_space, 00203 value_contents_all (args[i]), 00204 TYPE_LENGTH (arg_type)); 00205 00206 /* The System V ABI says that: 00207 00208 "An argument's size is increased, if necessary, to make it a 00209 multiple of [32-bit] words. This may require tail padding, 00210 depending on the size of the argument." 00211 00212 This makes sure the stack stays word-aligned. */ 00213 args_space += align_up (TYPE_LENGTH (arg_type), 4); 00214 } 00215 } 00216 00217 /* Darwin i386 ABI: 00218 1. The caller ensures that the stack is 16-byte aligned at the point 00219 of the function call. */ 00220 if (!write_pass) 00221 sp = align_down (sp - args_space, 16); 00222 } 00223 00224 /* Store return address. */ 00225 sp -= 4; 00226 store_unsigned_integer (buf, 4, byte_order, bp_addr); 00227 write_memory (sp, buf, 4); 00228 00229 /* Finally, update the stack pointer... */ 00230 store_unsigned_integer (buf, 4, byte_order, sp); 00231 regcache_cooked_write (regcache, I386_ESP_REGNUM, buf); 00232 00233 /* ...and fake a frame pointer. */ 00234 regcache_cooked_write (regcache, I386_EBP_REGNUM, buf); 00235 00236 /* MarkK wrote: This "+ 8" is all over the place: 00237 (i386_frame_this_id, i386_sigtramp_frame_this_id, 00238 i386_dummy_id). It's there, since all frame unwinders for 00239 a given target have to agree (within a certain margin) on the 00240 definition of the stack address of a frame. Otherwise frame id 00241 comparison might not work correctly. Since DWARF2/GCC uses the 00242 stack address *before* the function call as a frame's CFA. On 00243 the i386, when %ebp is used as a frame pointer, the offset 00244 between the contents %ebp and the CFA as defined by GCC. */ 00245 return sp + 8; 00246 } 00247 00248 static void 00249 i386_darwin_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch) 00250 { 00251 struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch); 00252 00253 /* We support the SSE registers. */ 00254 tdep->num_xmm_regs = I386_NUM_XREGS - 1; 00255 set_gdbarch_num_regs (gdbarch, I386_SSE_NUM_REGS); 00256 00257 dwarf2_frame_set_signal_frame_p (gdbarch, darwin_dwarf_signal_frame_p); 00258 set_gdbarch_push_dummy_call (gdbarch, i386_darwin_push_dummy_call); 00259 00260 tdep->struct_return = reg_struct_return; 00261 00262 tdep->sigtramp_p = i386_sigtramp_p; 00263 tdep->sigcontext_addr = i386_darwin_sigcontext_addr; 00264 tdep->sc_reg_offset = i386_darwin_thread_state_reg_offset; 00265 tdep->sc_num_regs = i386_darwin_thread_state_num_regs; 00266 00267 tdep->jb_pc_offset = 48; 00268 00269 /* Although the i387 extended floating-point has only 80 significant 00270 bits, a `long double' actually takes up 128, probably to enforce 00271 alignment. */ 00272 set_gdbarch_long_double_bit (gdbarch, 128); 00273 00274 set_solib_ops (gdbarch, &darwin_so_ops); 00275 } 00276 00277 static enum gdb_osabi 00278 i386_mach_o_osabi_sniffer (bfd *abfd) 00279 { 00280 if (!bfd_check_format (abfd, bfd_object)) 00281 return GDB_OSABI_UNKNOWN; 00282 00283 if (bfd_get_arch (abfd) == bfd_arch_i386) 00284 return GDB_OSABI_DARWIN; 00285 00286 return GDB_OSABI_UNKNOWN; 00287 } 00288 00289 /* -Wmissing-prototypes */ 00290 extern initialize_file_ftype _initialize_i386_darwin_tdep; 00291 00292 void 00293 _initialize_i386_darwin_tdep (void) 00294 { 00295 gdbarch_register_osabi_sniffer (bfd_arch_unknown, bfd_target_mach_o_flavour, 00296 i386_mach_o_osabi_sniffer); 00297 00298 gdbarch_register_osabi (bfd_arch_i386, bfd_mach_i386_i386, 00299 GDB_OSABI_DARWIN, i386_darwin_init_abi); 00300 }