2 Copyright (C) 1998 Free Software Foundation, Inc.
3 Contributed by Cygnus Solutions.
5 This file is part of GDB, the GNU debugger.
7 This program is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
12 This program is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License along
18 with this program; if not, write to the Free Software Foundation, Inc.,
19 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
21 /* This file is intended to be included by sim-base.h.
23 This file provides an interface between the simulator framework and
29 /* Type of function to return an insn name. */
30 typedef const char * (CPU_INSN_NAME_FN
) (sim_cpu
*, int);
32 /* Types for register access functions.
33 These routines implement the sim_{fetch,store}_register interface. */
34 typedef int (CPUREG_FETCH_FN
) (sim_cpu
*, int, unsigned char *, int);
35 typedef int (CPUREG_STORE_FN
) (sim_cpu
*, int, unsigned char *, int);
37 /* Types for PC access functions.
38 Some simulators require a functional interface to access the program
39 counter [a macro is insufficient as the PC is kept in a cpu-specific part
40 of the sim_cpu struct]. */
41 typedef sim_cia (PC_FETCH_FN
) (sim_cpu
*);
42 typedef void (PC_STORE_FN
) (sim_cpu
*, sim_cia
);
44 /* Pseudo baseclass for each cpu. */
48 /* Backlink to main state struct. */
50 #define CPU_STATE(cpu) ((cpu)->base.state)
52 /* Processor index within the SD_DESC */
54 #define CPU_INDEX(cpu) ((cpu)->base.index)
56 /* The name of the cpu. */
58 #define CPU_NAME(cpu) ((cpu)->base.name)
60 /* Options specific to this cpu. */
61 struct option_list
*options
;
62 #define CPU_OPTIONS(cpu) ((cpu)->base.options)
64 /* Processor specific core data */
66 #define CPU_CORE(cpu) (& (cpu)->base.core)
68 /* Number of instructions (used to iterate over CPU_INSN_NAME). */
69 unsigned int max_insns
;
70 #define CPU_MAX_INSNS(cpu) ((cpu)->base.max_insns)
72 /* Function to return the name of an insn. */
73 CPU_INSN_NAME_FN
*insn_name
;
74 #define CPU_INSN_NAME(cpu) ((cpu)->base.insn_name)
76 /* Trace data. See sim-trace.h. */
77 TRACE_DATA trace_data
;
78 #define CPU_TRACE_DATA(cpu) (& (cpu)->base.trace_data)
80 /* Maximum number of debuggable entities.
81 This debugging is not intended for normal use.
82 It is only enabled when the simulator is configured with --with-debug
83 which shouldn't normally be specified. */
84 #ifndef MAX_DEBUG_VALUES
85 #define MAX_DEBUG_VALUES 4
88 /* Boolean array of specified debugging flags. */
89 char debug_flags
[MAX_DEBUG_VALUES
];
90 #define CPU_DEBUG_FLAGS(cpu) ((cpu)->base.debug_flags)
91 /* Standard values. */
92 #define DEBUG_INSN_IDX 0
93 #define DEBUG_NEXT_IDX 2 /* simulator specific debug bits begin here */
95 /* Debugging output goes to this or stderr if NULL.
96 We can't store `stderr' here as stderr goes through a callback. */
98 #define CPU_DEBUG_FILE(cpu) ((cpu)->base.debug_file)
100 /* Profile data. See sim-profile.h. */
101 PROFILE_DATA profile_data
;
102 #define CPU_PROFILE_DATA(cpu) (& (cpu)->base.profile_data)
104 #ifdef SIM_HAVE_MODEL
105 /* Machine tables for this cpu. See sim-model.h. */
107 #define CPU_MACH(cpu) ((cpu)->base.mach)
108 /* The selected model. */
110 #define CPU_MODEL(cpu) ((cpu)->base.model)
111 /* Model data (profiling state, etc.). */
113 #define CPU_MODEL_DATA(cpu) ((cpu)->base.model_data)
116 /* Routines to fetch/store registers. */
117 CPUREG_FETCH_FN
*reg_fetch
;
118 #define CPU_REG_FETCH(c) ((c)->base.reg_fetch)
119 CPUREG_STORE_FN
*reg_store
;
120 #define CPU_REG_STORE(c) ((c)->base.reg_store)
121 PC_FETCH_FN
*pc_fetch
;
122 #define CPU_PC_FETCH(c) ((c)->base.pc_fetch)
123 PC_STORE_FN
*pc_store
;
124 #define CPU_PC_STORE(c) ((c)->base.pc_store)
128 /* Create all cpus. */
129 extern SIM_RC
sim_cpu_alloc_all (SIM_DESC
, int, int);
131 extern sim_cpu
*sim_cpu_alloc (SIM_DESC
, int);
132 /* Release resources held by all cpus. */
133 extern void sim_cpu_free_all (SIM_DESC
);
134 /* Release resources held by a cpu. */
135 extern void sim_cpu_free (sim_cpu
*);
137 /* Return a pointer to the cpu data for CPU_NAME, or NULL if not found. */
138 extern sim_cpu
*sim_cpu_lookup (SIM_DESC
, const char *);
140 /* Return prefix to use in cpu specific messages. */
141 extern const char *sim_cpu_msg_prefix (sim_cpu
*);
142 /* Cover fn to sim_io_eprintf. */
143 extern void sim_io_eprintf_cpu (sim_cpu
*, const char *, ...);
145 /* Get/set a pc value. */
146 #define CPU_PC_GET(cpu) ((* CPU_PC_FETCH (cpu)) (cpu))
147 #define CPU_PC_SET(cpu,newval) ((* CPU_PC_STORE (cpu)) ((cpu), (newval)))
148 /* External interface to accessing the pc. */
149 sim_cia
sim_pc_get (sim_cpu
*);
150 void sim_pc_set (sim_cpu
*, sim_cia
);
152 #endif /* SIM_CPU_H */