mirror of
https://github.com/darlinghq/darling-gdb.git
synced 2025-02-04 08:08:01 +00:00
* i386-tdep.c: Include "dwarf2-frame.h".
(i386_gdbarch_init): Hook in the DWARF CFI frame unwinder. * Makefile.in (i386-tdep.o): Update dependencies.
This commit is contained in:
parent
7b34ad4ea9
commit
6405b0a631
@ -1,5 +1,9 @@
|
||||
2003-05-31 Mark Kettenis <kettenis@gnu.org>
|
||||
|
||||
* i386-tdep.c: Include "dwarf2-frame.h".
|
||||
(i386_gdbarch_init): Hook in the DWARF CFI frame unwinder.
|
||||
* Makefile.in (i386-tdep.o): Update dependencies.
|
||||
|
||||
* dwarf2-frame.c, dwarf2-frame.h: New files.
|
||||
* Makefile.in (SFILES): Add dwarf2-frame.c.
|
||||
(dwarf2_frame_h): Define.
|
||||
|
@ -1798,11 +1798,11 @@ i386-sol2-tdep.o: i386-sol2-tdep.c $(defs_h) $(value_h) $(i386_tdep_h) \
|
||||
$(osabi_h)
|
||||
i386-stub.o: i386-stub.c
|
||||
i386-tdep.o: i386-tdep.c $(defs_h) $(arch_utils_h) $(command_h) \
|
||||
$(dummy_frame_h) $(doublest_h) $(floatformat_h) $(frame_h) \
|
||||
$(frame_base_h) $(frame_unwind_h) $(inferior_h) $(gdbcmd_h) \
|
||||
$(gdbcore_h) $(objfiles_h) $(osabi_h) $(regcache_h) $(reggroups_h) \
|
||||
$(symfile_h) $(symtab_h) $(target_h) $(value_h) $(gdb_assert_h) \
|
||||
$(gdb_string_h) $(i386_tdep_h) $(i387_tdep_h)
|
||||
$(dummy_frame_h) $(dwarf2_frame_h) $(doublest_h) $(floatformat_h) \
|
||||
$(frame_h) $(frame_base_h) $(frame_unwind_h) $(inferior_h) \
|
||||
$(gdbcmd_h) $(gdbcore_h) $(objfiles_h) $(osabi_h) $(regcache_h) \
|
||||
$(reggroups_h) $(symfile_h) $(symtab_h) $(target_h) $(value_h) \
|
||||
$(gdb_assert_h) $(gdb_string_h) $(i386_tdep_h) $(i387_tdep_h)
|
||||
i386b-nat.o: i386b-nat.c $(defs_h)
|
||||
i386bsd-nat.o: i386bsd-nat.c $(defs_h) $(inferior_h) $(regcache_h) \
|
||||
$(gdb_assert_h) $(gregset_h) $(i386_tdep_h) $(i387_tdep_h) \
|
||||
|
@ -24,6 +24,7 @@
|
||||
#include "arch-utils.h"
|
||||
#include "command.h"
|
||||
#include "dummy-frame.h"
|
||||
#include "dwarf2-frame.h"
|
||||
#include "doublest.h"
|
||||
#include "floatformat.h"
|
||||
#include "frame.h"
|
||||
@ -1714,6 +1715,10 @@ i386_gdbarch_init (struct gdbarch_info info, struct gdbarch_list *arches)
|
||||
i386_add_reggroups (gdbarch);
|
||||
set_gdbarch_register_reggroup_p (gdbarch, i386_register_reggroup_p);
|
||||
|
||||
/* Hook in the DWARF CFI frame unwinder. */
|
||||
frame_unwind_append_predicate (gdbarch, dwarf2_frame_p);
|
||||
set_gdbarch_dwarf2_build_frame_info (gdbarch, dwarf2_build_frame_info);
|
||||
|
||||
frame_base_set_default (gdbarch, &i386_frame_base);
|
||||
|
||||
/* Hook in ABI-specific overrides, if they have been registered. */
|
||||
|
Loading…
x
Reference in New Issue
Block a user