mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-11-16 12:34:43 +00:00
This patch introduces a new macro, INIT_GDB_FILE. This is used to
replace the current "_initialize_" idiom when introducing a per-file
initialization function. That is, rather than write:
void _initialize_something ();
void
_initialize_something ()
{
...
}
... now you would write:
INIT_GDB_FILE (something)
{
...
}
The macro handles both the declaration and definition of the function.
The point of this approach is that it makes it harder to accidentally
cause an initializer to be omitted; see commit 2711e475 ("Ensure
cooked_index_entry self-tests are run"). Specifically, the regexp now
used by make-init-c seems harder to trick.
New in v2: un-did some erroneous changes made by the script.
The bulk of this patch was written by script.
Regression tested on x86-64 Fedora 41.
76 lines
2.2 KiB
C
76 lines
2.2 KiB
C
/* Native-dependent code for GNU/Linux SPARC.
|
|
Copyright (C) 2005-2025 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 "regcache.h"
|
|
|
|
#include <sys/procfs.h>
|
|
#include "gregset.h"
|
|
|
|
#include "sparc-tdep.h"
|
|
#include "sparc-nat.h"
|
|
#include "inferior.h"
|
|
#include "target.h"
|
|
#include "linux-nat.h"
|
|
|
|
class sparc_linux_nat_target final : public linux_nat_target
|
|
{
|
|
public:
|
|
/* Add our register access methods. */
|
|
void fetch_registers (struct regcache *regcache, int regnum) override
|
|
{ sparc_fetch_inferior_registers (this, regcache, regnum); }
|
|
|
|
void store_registers (struct regcache *regcache, int regnum) override
|
|
{ sparc_store_inferior_registers (this, regcache, regnum); }
|
|
};
|
|
|
|
static sparc_linux_nat_target the_sparc_linux_nat_target;
|
|
|
|
void
|
|
supply_gregset (struct regcache *regcache, const prgregset_t *gregs)
|
|
{
|
|
sparc32_supply_gregset (sparc_gregmap, regcache, -1, gregs);
|
|
}
|
|
|
|
void
|
|
supply_fpregset (struct regcache *regcache, const prfpregset_t *fpregs)
|
|
{
|
|
sparc32_supply_fpregset (sparc_fpregmap, regcache, -1, fpregs);
|
|
}
|
|
|
|
void
|
|
fill_gregset (const struct regcache *regcache, prgregset_t *gregs, int regnum)
|
|
{
|
|
sparc32_collect_gregset (sparc_gregmap, regcache, regnum, gregs);
|
|
}
|
|
|
|
void
|
|
fill_fpregset (const struct regcache *regcache,
|
|
prfpregset_t *fpregs, int regnum)
|
|
{
|
|
sparc32_collect_fpregset (sparc_fpregmap, regcache, regnum, fpregs);
|
|
}
|
|
|
|
INIT_GDB_FILE (sparc_linux_nat)
|
|
{
|
|
sparc_fpregmap = &sparc32_bsd_fpregmap;
|
|
|
|
/* Register the target. */
|
|
linux_target = &the_sparc_linux_nat_target;
|
|
add_inf_child_target (&the_sparc_linux_nat_target);
|
|
}
|