mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2024-11-27 12:03:41 +08:00
1d506c26d9
This commit is the result of the following actions: - Running gdb/copyright.py to update all of the copyright headers to include 2024, - Manually updating a few files the copyright.py script told me to update, these files had copyright headers embedded within the file, - Regenerating gdbsupport/Makefile.in to refresh it's copyright date, - Using grep to find other files that still mentioned 2023. If these files were updated last year from 2022 to 2023 then I've updated them this year to 2024. I'm sure I've probably missed some dates. Feel free to fix them up as you spot them.
94 lines
3.0 KiB
C
94 lines
3.0 KiB
C
/* Copyright (C) 2016-2024 Free Software Foundation, Inc.
|
|
|
|
This file is part of GDB.
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
|
it under the terms of the GNU General Public License as published by
|
|
the Free Software Foundation; either version 3 of the License, or
|
|
(at your option) any later version.
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
GNU General Public License for more details.
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>. */
|
|
|
|
#include "defs.h"
|
|
#include "objfiles.h"
|
|
#include "arm-tdep.h"
|
|
#include "osabi.h"
|
|
|
|
/* The gdbarch_register_osabi handler for ARM PikeOS; it performs
|
|
the gdbarch initialization for that platform. */
|
|
|
|
static void
|
|
arm_pikeos_init_abi (struct gdbarch_info info, struct gdbarch *gdbarch)
|
|
{
|
|
/* Single stepping. */
|
|
set_gdbarch_software_single_step (gdbarch, arm_software_single_step);
|
|
}
|
|
|
|
/* The ARM PikeOS OSABI sniffer (see gdbarch_register_osabi_sniffer).
|
|
Returns GDB_OSABI_PIKEOS if the given BFD is a PikeOS binary,
|
|
GDB_OSABI_UNKNOWN otherwise. */
|
|
|
|
static enum gdb_osabi
|
|
arm_pikeos_osabi_sniffer (bfd *abfd)
|
|
{
|
|
long number_of_symbols;
|
|
long i;
|
|
int pikeos_stack_found = 0;
|
|
int pikeos_stack_size_found = 0;
|
|
|
|
/* The BFD target of PikeOS is really just standard elf, so we
|
|
cannot use it to detect this variant. The only common thing that
|
|
may be found in PikeOS modules are symbols _vm_stack/__p4_stack and
|
|
_vm_stack_size/__p4_stack_end. They are used to specify the stack
|
|
location and size; and defined by the default linker script.
|
|
|
|
OS ABI sniffers are called before the minimal symtabs are
|
|
created. So inspect the symbol table using BFD. */
|
|
|
|
long storage_needed = bfd_get_symtab_upper_bound (abfd);
|
|
if (storage_needed <= 0)
|
|
return GDB_OSABI_UNKNOWN;
|
|
|
|
gdb::unique_xmalloc_ptr<asymbol *> symbol_table
|
|
((asymbol **) xmalloc (storage_needed));
|
|
number_of_symbols = bfd_canonicalize_symtab (abfd, symbol_table.get ());
|
|
|
|
if (number_of_symbols <= 0)
|
|
return GDB_OSABI_UNKNOWN;
|
|
|
|
for (i = 0; i < number_of_symbols; i++)
|
|
{
|
|
const char *name = bfd_asymbol_name (symbol_table.get ()[i]);
|
|
|
|
if (strcmp (name, "_vm_stack") == 0
|
|
|| strcmp (name, "__p4_stack") == 0)
|
|
pikeos_stack_found = 1;
|
|
|
|
if (strcmp (name, "_vm_stack_size") == 0
|
|
|| strcmp (name, "__p4_stack_end") == 0)
|
|
pikeos_stack_size_found = 1;
|
|
}
|
|
|
|
if (pikeos_stack_found && pikeos_stack_size_found)
|
|
return GDB_OSABI_PIKEOS;
|
|
else
|
|
return GDB_OSABI_UNKNOWN;
|
|
}
|
|
|
|
void _initialize_arm_pikeos_tdep ();
|
|
void
|
|
_initialize_arm_pikeos_tdep ()
|
|
{
|
|
/* Register the sniffer for the PikeOS targets. */
|
|
gdbarch_register_osabi_sniffer (bfd_arch_arm, bfd_target_elf_flavour,
|
|
arm_pikeos_osabi_sniffer);
|
|
gdbarch_register_osabi (bfd_arch_arm, 0, GDB_OSABI_PIKEOS,
|
|
arm_pikeos_init_abi);
|
|
}
|