diff options
author | Mike Frysinger <vapier@gentoo.org> | 2015-12-25 04:27:27 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2015-12-25 04:40:31 -0500 |
commit | 0d58595077841917ad57c9f8d2a61184a504ef40 (patch) | |
tree | 700d848c63f82b4284abebb23b1689a2272eb108 /sim/common/ChangeLog | |
parent | 8a0ebee658862bec66191df192c1d3b09bf0c943 (diff) | |
download | gdb-0d58595077841917ad57c9f8d2a61184a504ef40.zip gdb-0d58595077841917ad57c9f8d2a61184a504ef40.tar.gz gdb-0d58595077841917ad57c9f8d2a61184a504ef40.tar.bz2 |
sim: sim-model: build for everyone
Rather than include this for some targets, set it up so we can build it
all the time via the common code. This makes it easier for targets to
opt into it when they're ready, increases build coverage, and allows us
to centralize much of the logic.
We also get to delete tconfig.h from two more targets -- they were
setting WITH_DEVICES to 0 which has the same behavior as not defining
it at all.
While the SIM_HAVE_MODEL knob is gone, we now have WITH_MODEL_P, but it
is only used by the common sim-model code. We use it to declare dummy
model lists when the arch hasn't created its own.
Diffstat (limited to 'sim/common/ChangeLog')
-rw-r--r-- | sim/common/ChangeLog | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/sim/common/ChangeLog b/sim/common/ChangeLog index e36895a..09f29bb 100644 --- a/sim/common/ChangeLog +++ b/sim/common/ChangeLog @@ -1,5 +1,20 @@ 2015-12-25 Mike Frysinger <vapier@gentoo.org> + * Make-common.in (SIM_NEW_COMMON_OBJS): Add sim-model.o. + * cgen-types.h (SIM_HAVE_MODEL): Delete. + * sim-base.h: Always include sim-model.h. + * sim-config.h (WITH_DEFAULT_MODEL): Delete. + * sim-cpu.h (sim_cpu_base): Always declare mach/model members. + * sim-model.c (sim_model_init): Return when !WITH_MODEL_P. + [!WITH_MODEL_P] (sim_machs): Define. + * sim-model.h: Add some developer docs. + [!WITH_DEFAULT_MODEL] (mach_attr, WITH_DEFAULT_MODEL): Define. + (WITH_MODEL_P): Define. + * sim-module.c (modules): Always include sim_model_install. + * sim-profile.h (WITH_PROFILE_MODEL_P): Delete. + +2015-12-25 Mike Frysinger <vapier@gentoo.org> + * sim-cpu.h: Rename MACH to SIM_MACH and MODEL to SIM_MODEL. * sim-model.c: Likewise. * sim-model.h: Likewise. Rename MACH_IMP_PROPERTIES to |