X-Git-Url: http://review.tizen.org/git/?a=blobdiff_plain;f=gdb%2Fi386-nto-tdep.c;h=91f99da0c1eb8693b066aca319ff82251e9ece2f;hb=0fee5d8d9b56cdd8fa3ca69c4dbdd3ad879ae133;hp=aaa47f12970ef96d6813e3a1c7ef761437c58ac9;hpb=e17a4113357102b55cfa5b80557d590a46a43300;p=external%2Fbinutils.git diff --git a/gdb/i386-nto-tdep.c b/gdb/i386-nto-tdep.c index aaa47f1..91f99da 100644 --- a/gdb/i386-nto-tdep.c +++ b/gdb/i386-nto-tdep.c @@ -1,6 +1,6 @@ /* Target-dependent code for QNX Neutrino x86. - Copyright (C) 2003, 2004, 2007, 2008, 2009 Free Software Foundation, Inc. + Copyright (C) 2003-2019 Free Software Foundation, Inc. Contributed by QNX Software Systems Ltd. @@ -25,9 +25,6 @@ #include "regcache.h" #include "target.h" -#include "gdb_assert.h" -#include "gdb_string.h" - #include "i386-tdep.h" #include "i387-tdep.h" #include "nto-tdep.h" @@ -79,16 +76,12 @@ nto_reg_offset (int regnum) static void i386nto_supply_gregset (struct regcache *regcache, char *gpregs) { - struct gdbarch *gdbarch = get_regcache_arch (regcache); + struct gdbarch *gdbarch = regcache->arch (); struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch); - if(tdep->gregset == NULL) - tdep->gregset = regset_alloc (gdbarch, i386_supply_gregset, - i386_collect_gregset); - gdb_assert (tdep->gregset_reg_offset == i386nto_gregset_reg_offset); - tdep->gregset->supply_regset (tdep->gregset, regcache, -1, - gpregs, NUM_GPREGS * 4); + i386_gregset.supply_regset (&i386_gregset, regcache, -1, + gpregs, NUM_GPREGS * 4); } static void @@ -121,7 +114,7 @@ i386nto_regset_id (int regno) return NTO_REG_END; else if (regno < I386_NUM_GREGS) return NTO_REG_GENERAL; - else if (regno < I386_NUM_GREGS + I386_NUM_FREGS) + else if (regno < I386_NUM_GREGS + I387_NUM_REGS) return NTO_REG_FLOAT; else if (regno < I386_SSE_NUM_REGS) return NTO_REG_FLOAT; /* We store xmm registers in fxsave_area. */ @@ -134,7 +127,6 @@ i386nto_register_area (struct gdbarch *gdbarch, int regno, int regset, unsigned *off) { struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch); - int len; *off = 0; if (regset == NTO_REG_GENERAL) @@ -258,7 +250,7 @@ i386nto_regset_fill (const struct regcache *regcache, int regset, char *data) { int offset = nto_reg_offset (regno); if (offset != -1) - regcache_raw_collect (regcache, regno, data + offset); + regcache->raw_collect (regno, data + offset); } } else if (regset == NTO_REG_FLOAT) @@ -281,7 +273,7 @@ static int i386nto_sigtramp_p (struct frame_info *this_frame) { CORE_ADDR pc = get_frame_pc (this_frame); - char *name; + const char *name; find_pc_partial_function (pc, &name, NULL, NULL); return name && strcmp ("__signalstub", name) == 0; @@ -295,7 +287,7 @@ i386nto_sigcontext_addr (struct frame_info *this_frame) { struct gdbarch *gdbarch = get_frame_arch (this_frame); enum bfd_endian byte_order = gdbarch_byte_order (gdbarch); - char buf[4]; + gdb_byte buf[4]; CORE_ADDR ptrctx; /* We store __ucontext_t addr in EDI register. */ @@ -370,10 +362,10 @@ i386nto_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch) = nto_in_dynsym_resolve_code; } set_solib_ops (gdbarch, &nto_svr4_so_ops); -} -/* Provide a prototype to silence -Wmissing-prototypes. */ -extern initialize_file_ftype _initialize_i386nto_tdep; + set_gdbarch_wchar_bit (gdbarch, 32); + set_gdbarch_wchar_signed (gdbarch, 0); +} void _initialize_i386nto_tdep (void)