mirror of
https://sourceware.org/git/binutils-gdb.git
synced 2025-02-17 13:10:12 +08:00
sim: model: constify sim_machs storage
The array of pointers is never modified, so mark it const so it ends up in the read-only data section.
This commit is contained in:
parent
aa2e84dee6
commit
ba9666525f
@ -1,3 +1,7 @@
|
||||
2021-06-29 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* machs.c (sim_machs): Mark const.
|
||||
|
||||
2021-06-27 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* Makefile.in: Change to $(SDL_CFLAGS) & $(SDL_LIBS).
|
||||
|
@ -1962,7 +1962,7 @@ static const SIM_MACH bfin_mach =
|
||||
bfin_prepare_run
|
||||
};
|
||||
|
||||
const SIM_MACH *sim_machs[] =
|
||||
const SIM_MACH * const sim_machs[] =
|
||||
{
|
||||
& bfin_mach,
|
||||
NULL
|
||||
|
@ -1,3 +1,7 @@
|
||||
2021-06-29 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* arch.c (sim_machs): Mark const.
|
||||
|
||||
2021-06-28 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* Makefile.in (SIM_WERROR_CFLAGS): Delete.
|
||||
|
@ -25,7 +25,7 @@ This file is part of the GNU simulators.
|
||||
#include "sim-main.h"
|
||||
#include "bfd.h"
|
||||
|
||||
const SIM_MACH *sim_machs[] =
|
||||
const SIM_MACH * const sim_machs[] =
|
||||
{
|
||||
#ifdef HAVE_CPU_BPFBF
|
||||
& bpf_mach,
|
||||
|
@ -1,3 +1,12 @@
|
||||
2021-06-29 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* sim-model.c (model_option_handler): Make machp const.
|
||||
(sim_model_lookup): Likewise.
|
||||
(sim_mach_lookup): Likewise.
|
||||
(sim_mach_lookup_bfd_name): Likewise.
|
||||
(sim_machs): Add const.
|
||||
* sim-model.h (sim_machs): Likewise.
|
||||
|
||||
2021-06-29 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* sim-io.h (sim_io_vprintf): Add ATTRIBUTE_PRINTF.
|
||||
|
@ -74,7 +74,7 @@ model_option_handler (SIM_DESC sd, sim_cpu *cpu, int opt,
|
||||
|
||||
case OPTION_MODEL_INFO :
|
||||
{
|
||||
const SIM_MACH **machp;
|
||||
const SIM_MACH * const *machp;
|
||||
const SIM_MODEL *model;
|
||||
for (machp = & sim_machs[0]; *machp != NULL; ++machp)
|
||||
{
|
||||
@ -140,7 +140,7 @@ sim_model_set (SIM_DESC sd, sim_cpu *cpu, const SIM_MODEL *model)
|
||||
const SIM_MODEL *
|
||||
sim_model_lookup (const char *name)
|
||||
{
|
||||
const SIM_MACH **machp;
|
||||
const SIM_MACH * const *machp;
|
||||
const SIM_MODEL *model;
|
||||
|
||||
for (machp = & sim_machs[0]; *machp != NULL; ++machp)
|
||||
@ -160,7 +160,7 @@ sim_model_lookup (const char *name)
|
||||
const SIM_MACH *
|
||||
sim_mach_lookup (const char *name)
|
||||
{
|
||||
const SIM_MACH **machp;
|
||||
const SIM_MACH * const *machp;
|
||||
|
||||
for (machp = & sim_machs[0]; *machp != NULL; ++machp)
|
||||
{
|
||||
@ -176,7 +176,7 @@ sim_mach_lookup (const char *name)
|
||||
const SIM_MACH *
|
||||
sim_mach_lookup_bfd_name (const char *name)
|
||||
{
|
||||
const SIM_MACH **machp;
|
||||
const SIM_MACH * const *machp;
|
||||
|
||||
for (machp = & sim_machs[0]; *machp != NULL; ++machp)
|
||||
{
|
||||
@ -251,7 +251,7 @@ sim_model_init (SIM_DESC sd)
|
||||
#if !WITH_MODEL_P
|
||||
/* Set up basic model support. This is a stub for ports that do not define
|
||||
models. See sim-model.h for more details. */
|
||||
const SIM_MACH *sim_machs[] =
|
||||
const SIM_MACH * const sim_machs[] =
|
||||
{
|
||||
NULL
|
||||
};
|
||||
|
@ -140,7 +140,7 @@ typedef struct model {
|
||||
/* ??? In a simulator of multiple architectures, will need multiple copies of
|
||||
this. Have an `archs' array that contains a pointer to the machs array
|
||||
for each (which in turn has a pointer to the models array for each). */
|
||||
extern const SIM_MACH *sim_machs[];
|
||||
extern const SIM_MACH * const sim_machs[];
|
||||
|
||||
/* Model module handlers. */
|
||||
extern MODULE_INSTALL_FN sim_model_install;
|
||||
|
@ -1,3 +1,7 @@
|
||||
2021-06-29 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* arch.c (sim_machs): Mark const.
|
||||
|
||||
2021-06-28 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* cpuv10.c (crisv10f_record_trace_results): Delete function.
|
||||
|
@ -24,7 +24,7 @@ This file is part of the GNU simulators.
|
||||
#include "sim-main.h"
|
||||
#include "bfd.h"
|
||||
|
||||
const SIM_MACH *sim_machs[] =
|
||||
const SIM_MACH * const sim_machs[] =
|
||||
{
|
||||
#ifdef HAVE_CPU_CRISV10F
|
||||
& crisv10_mach,
|
||||
|
@ -1,3 +1,7 @@
|
||||
2021-06-29 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* arch.c (sim_machs): Mark const.
|
||||
|
||||
2021-06-28 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* cpu.c (frvbf_record_trace_results): Delete function.
|
||||
|
@ -24,7 +24,7 @@ This file is part of the GNU simulators.
|
||||
#include "sim-main.h"
|
||||
#include "bfd.h"
|
||||
|
||||
const SIM_MACH *sim_machs[] =
|
||||
const SIM_MACH * const sim_machs[] =
|
||||
{
|
||||
#ifdef HAVE_CPU_FRVBF
|
||||
& frv_mach,
|
||||
|
@ -1,3 +1,7 @@
|
||||
2021-06-29 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* arch.c (sim_machs): Mark const.
|
||||
|
||||
2021-06-28 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* cpu.c (iq2000bf_record_trace_results): Delete function.
|
||||
|
@ -24,7 +24,7 @@ This file is part of the GNU simulators.
|
||||
#include "sim-main.h"
|
||||
#include "bfd.h"
|
||||
|
||||
const SIM_MACH *sim_machs[] =
|
||||
const SIM_MACH * const sim_machs[] =
|
||||
{
|
||||
#ifdef HAVE_CPU_IQ2000BF
|
||||
& iq2000_mach,
|
||||
|
@ -1,3 +1,7 @@
|
||||
2021-06-29 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* arch.c (sim_machs): Mark const.
|
||||
|
||||
2021-06-28 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* cpu.c (lm32bf_record_trace_results): Delete function.
|
||||
|
@ -24,7 +24,7 @@ This file is part of the GNU simulators.
|
||||
#include "sim-main.h"
|
||||
#include "bfd.h"
|
||||
|
||||
const SIM_MACH *sim_machs[] =
|
||||
const SIM_MACH * const sim_machs[] =
|
||||
{
|
||||
#ifdef HAVE_CPU_LM32BF
|
||||
& lm32_mach,
|
||||
|
@ -1,3 +1,7 @@
|
||||
2021-06-29 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* arch.c (sim_machs): Mark const.
|
||||
|
||||
2021-06-28 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* cpu.c (m32rbf_record_trace_results): Delete function.
|
||||
|
@ -24,7 +24,7 @@ This file is part of the GNU simulators.
|
||||
#include "sim-main.h"
|
||||
#include "bfd.h"
|
||||
|
||||
const SIM_MACH *sim_machs[] =
|
||||
const SIM_MACH * const sim_machs[] =
|
||||
{
|
||||
#ifdef HAVE_CPU_M32RBF
|
||||
& m32r_mach,
|
||||
|
@ -1,3 +1,7 @@
|
||||
2021-06-29 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* arch.c (sim_machs): Mark const.
|
||||
|
||||
2021-06-28 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* cpu.c (or1k32bf_record_trace_results): Delete function.
|
||||
|
@ -25,7 +25,7 @@ This file is part of the GNU simulators.
|
||||
#include "sim-main.h"
|
||||
#include "bfd.h"
|
||||
|
||||
const SIM_MACH *sim_machs[] =
|
||||
const SIM_MACH * const sim_machs[] =
|
||||
{
|
||||
#ifdef HAVE_CPU_OR1K32BF
|
||||
& or32_mach,
|
||||
|
@ -1,3 +1,7 @@
|
||||
2021-06-29 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* machs.c (sim_machs): Mark const.
|
||||
|
||||
2021-06-22 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* configure: Regenerate.
|
||||
|
@ -111,7 +111,7 @@ static const SIM_MACH rv128i_mach =
|
||||
#endif
|
||||
|
||||
/* Order matters here. */
|
||||
const SIM_MACH *sim_machs[] =
|
||||
const SIM_MACH * const sim_machs[] =
|
||||
{
|
||||
#if WITH_TARGET_WORD_BITSIZE >= 128
|
||||
&rv128i_mach,
|
||||
|
Loading…
Reference in New Issue
Block a user