gdb/aarch64-newlib-tdep.c - gdb

Functions defined

Source code

  1. /* Target-dependent code for Newlib AArch64.

  2.    Copyright (C) 2011-2015 Free Software Foundation, Inc.
  3.    Contributed by ARM Ltd.

  4.    This file is part of GDB.

  5.    This program is free software; you can redistribute it and/or modify
  6.    it under the terms of the GNU General Public License as published by
  7.    the Free Software Foundation; either version 3 of the License, or
  8.    (at your option) any later version.

  9.    This program is distributed in the hope that it will be useful,
  10.    but WITHOUT ANY WARRANTY; without even the implied warranty of
  11.    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  12.    GNU General Public License for more details.

  13.    You should have received a copy of the GNU General Public License
  14.    along with this program.  If not, see <http://www.gnu.org/licenses/>.  */

  15. #include "defs.h"

  16. #include "gdbarch.h"
  17. #include "aarch64-tdep.h"
  18. #include "osabi.h"

  19. /* Implement the 'init_osabi' method of struct gdb_osabi_handler.  */

  20. static void
  21. aarch64_newlib_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
  22. {
  23.   struct gdbarch_tdep *tdep = gdbarch_tdep (gdbarch);

  24.   /* Jump buffer - support for longjmp.
  25.      Offset of original PC in jump buffer (in registers).  */
  26.   tdep->jb_pc = 11;
  27. }

  28. /* Provide a prototype to silence -Wmissing-prototypes.  */
  29. extern initialize_file_ftype _initialize_aarch64_newlib_tdep;

  30. void
  31. _initialize_aarch64_newlib_tdep (void)
  32. {
  33.   gdbarch_register_osabi (bfd_arch_aarch64, 0, GDB_OSABI_NEWLIB,
  34.                           aarch64_newlib_init_abi);
  35. }