static void
bfin_initialize_cpu (SIM_DESC sd, SIM_CPU *cpu)
{
- memset (&cpu->state, 0, sizeof (cpu->state));
-
PROFILE_TOTAL_INSN_COUNT (CPU_PROFILE_DATA (cpu)) = 0;
bfin_model_cpu_init (sd, cpu);
current_target_byte_order = BFD_ENDIAN_LITTLE;
/* The cpu data is kept in a separately allocated chunk of memory. */
- if (sim_cpu_alloc_all (sd, 1) != SIM_RC_OK)
+ if (sim_cpu_alloc_all_extra (sd, 1, sizeof (struct bfin_cpu_state))
+ != SIM_RC_OK)
{
free_state (sd);
return 0;
#ifndef _BFIN_MAIN_SIM_H_
#define _BFIN_MAIN_SIM_H_
+#define SIM_HAVE_COMMON_SIM_CPU
+
#include "sim-basics.h"
#include "arch.h"
#include "sim-base.h"
#include "machs.h"
-struct _sim_cpu {
- /* ... simulator specific members ... */
- struct bfin_cpu_state state;
- sim_cpu_base base;
-};
-#define BFIN_CPU_STATE ((cpu)->state)
-
+#define BFIN_CPU_STATE (*(struct bfin_cpu_state *) CPU_ARCH_DATA (cpu))
#define STATE_BOARD_DATA(sd) ((struct bfin_board_data *) STATE_ARCH_DATA (sd))
#include "sim-config.h"