diff options
author | Mike Frysinger <vapier@gentoo.org> | 2015-04-15 02:13:23 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2015-04-15 02:19:52 -0400 |
commit | 78e9aa70febc3985a2c88dbc0c7a87d214231c3d (patch) | |
tree | 1a0eb199746ae7edea7336a3a60b53daa42a7275 /sim/common/sim-base.h | |
parent | f95f4ed2c4680fea68399691481b277ece11570e (diff) | |
download | binutils-gdb-78e9aa70febc3985a2c88dbc0c7a87d214231c3d.tar.gz |
sim: unify sim-cpu usage
Now that all the targets are utilizing CPU_PC_{FETCH,STORE}, and the
cpu state is multicore, and the STATE_CPU defines match, we can move
it all to the common code.
Diffstat (limited to 'sim/common/sim-base.h')
-rw-r--r-- | sim/common/sim-base.h | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/sim/common/sim-base.h b/sim/common/sim-base.h index f7a33cd9f4b..0dae541094c 100644 --- a/sim/common/sim-base.h +++ b/sim/common/sim-base.h @@ -44,11 +44,6 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */ struct sim_state { sim_cpu *cpu[MAX_NR_PROCESSORS]; - #if (WITH_SMP) - #define STATE_CPU(sd,n) ((sd)->cpu[n]) - #else - #define STATE_CPU(sd,n) ((sd)->cpu[0]) - #endif ... simulator specific members ... sim_state_base base; }; @@ -116,6 +111,15 @@ extern struct sim_state *current_state; #endif +/* We require all sims to dynamically allocate cpus. See comment up top about + struct sim_state. */ +#if (WITH_SMP) +# define STATE_CPU(sd, n) ((sd)->cpu[n]) +#else +# define STATE_CPU(sd, n) ((sd)->cpu[0]) +#endif + + typedef struct { /* Simulator's argv[0]. */ |