forked from Imagelibrary/binutils-gdb
* gdbarch.sh (target_gdbarch): Remove macro.
(get_target_gdbarch): Rename to target_gdbarch. * gdbarch.c, gdbarch.h: Rebuild. * ada-tasks.c, aix-thread.c, amd64-linux-nat.c, arch-utils.c, arm-tdep.c, auxv.c, breakpoint.c, bsd-uthread.c, corefile.c, darwin-nat-info.c, dcache.c, dsrec.c, exec.c, fbsd-nat.c, filesystem.c, gcore.c, gnu-nat.c, i386-darwin-nat.c, i386-nat.c, ia64-vms-tdep.c, inf-ptrace.c, infcmd.c, jit.c, linux-nat.c, linux-tdep.c, linux-thread-db.c, m32r-rom.c, memattr.c, mep-tdep.c, microblaze-tdep.c, mips-linux-nat.c, mips-linux-tdep.c, mips-tdep.c, monitor.c, moxie-tdep.c, nto-procfs.c, nto-tdep.c, ppc-linux-nat.c, proc-service.c, procfs.c, progspace.c, ravenscar-thread.c, record.c, remote-m32r-sdi.c, remote-mips.c, remote-sim.c, remote.c, rl78-tdep.c, rs6000-nat.c, rx-tdep.c, s390-nat.c, sol-thread.c, solib-darwin.c, solib-dsbt.c, solib-frv.c, solib-ia64-hpux.c, solib-irix.c, solib-pa64.c, solib-som.c, solib-spu.c, solib-sunos.c, solib-svr4.c, solib.c, spu-linux-nat.c, spu-multiarch.c, spu-tdep.c, symfile-mem.c, symfile.c, symtab.c, target-descriptions.c, target.c, target.h, tracepoint.c, windows-nat.c, windows-tdep.c, xcoffsolib.c, cli/cli-dump.c, common/agent.c, mi/mi-interp.c, python/py-finishbreakpoint.c, python/py-inferior.c, python/python.c: Update.
This commit is contained in:
@@ -127,8 +127,8 @@ static void
|
||||
darwin_load_image_infos (struct darwin_info *info)
|
||||
{
|
||||
gdb_byte buf[24];
|
||||
enum bfd_endian byte_order = gdbarch_byte_order (target_gdbarch);
|
||||
struct type *ptr_type = builtin_type (target_gdbarch)->builtin_data_ptr;
|
||||
enum bfd_endian byte_order = gdbarch_byte_order (target_gdbarch ());
|
||||
struct type *ptr_type = builtin_type (target_gdbarch ())->builtin_data_ptr;
|
||||
int len;
|
||||
|
||||
/* If the structure address is not known, don't continue. */
|
||||
@@ -245,8 +245,8 @@ open_symbol_file_object (void *from_ttyp)
|
||||
static struct so_list *
|
||||
darwin_current_sos (void)
|
||||
{
|
||||
struct type *ptr_type = builtin_type (target_gdbarch)->builtin_data_ptr;
|
||||
enum bfd_endian byte_order = gdbarch_byte_order (target_gdbarch);
|
||||
struct type *ptr_type = builtin_type (target_gdbarch ())->builtin_data_ptr;
|
||||
enum bfd_endian byte_order = gdbarch_byte_order (target_gdbarch ());
|
||||
int ptr_len = TYPE_LENGTH (ptr_type);
|
||||
unsigned int image_info_size;
|
||||
struct so_list *head = NULL;
|
||||
@@ -378,7 +378,7 @@ darwin_solib_get_all_image_info_addr_at_init (struct darwin_info *info)
|
||||
|
||||
make_cleanup_bfd_unref (dyld_bfd);
|
||||
sub = bfd_mach_o_fat_extract (dyld_bfd, bfd_object,
|
||||
gdbarch_bfd_arch_info (target_gdbarch));
|
||||
gdbarch_bfd_arch_info (target_gdbarch ()));
|
||||
if (sub)
|
||||
{
|
||||
dyld_bfd = sub;
|
||||
@@ -420,7 +420,7 @@ darwin_solib_read_all_image_info_addr (struct darwin_info *info)
|
||||
{
|
||||
gdb_byte buf[8 + 8 + 4];
|
||||
LONGEST len;
|
||||
enum bfd_endian byte_order = gdbarch_byte_order (target_gdbarch);
|
||||
enum bfd_endian byte_order = gdbarch_byte_order (target_gdbarch ());
|
||||
|
||||
len = target_read (¤t_target, TARGET_OBJECT_DARWIN_DYLD_INFO, NULL,
|
||||
buf, 0, sizeof (buf));
|
||||
@@ -450,7 +450,7 @@ darwin_solib_create_inferior_hook (int from_tty)
|
||||
darwin_load_image_infos (info);
|
||||
|
||||
if (darwin_dyld_version_ok (info))
|
||||
create_solib_event_breakpoint (target_gdbarch, info->all_image.notifier);
|
||||
create_solib_event_breakpoint (target_gdbarch (), info->all_image.notifier);
|
||||
}
|
||||
|
||||
static void
|
||||
@@ -515,7 +515,7 @@ darwin_bfd_open (char *pathname)
|
||||
abfd = solib_bfd_fopen (found_pathname, found_file);
|
||||
|
||||
res = bfd_mach_o_fat_extract (abfd, bfd_object,
|
||||
gdbarch_bfd_arch_info (target_gdbarch));
|
||||
gdbarch_bfd_arch_info (target_gdbarch ()));
|
||||
if (!res)
|
||||
{
|
||||
make_cleanup_bfd_unref (abfd);
|
||||
|
||||
Reference in New Issue
Block a user