]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - sim/common/sim-cpu.h
Update copyright year range in header of all files managed by GDB
[thirdparty/binutils-gdb.git] / sim / common / sim-cpu.h
CommitLineData
c906108c 1/* CPU support.
1d506c26 2 Copyright (C) 1998-2024 Free Software Foundation, Inc.
c906108c
SS
3 Contributed by Cygnus Solutions.
4
5This file is part of GDB, the GNU debugger.
6
7This program is free software; you can redistribute it and/or modify
8it under the terms of the GNU General Public License as published by
4744ac1b
JB
9the Free Software Foundation; either version 3 of the License, or
10(at your option) any later version.
c906108c
SS
11
12This program is distributed in the hope that it will be useful,
13but WITHOUT ANY WARRANTY; without even the implied warranty of
14MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15GNU General Public License for more details.
16
4744ac1b
JB
17You should have received a copy of the GNU General Public License
18along with this program. If not, see <http://www.gnu.org/licenses/>. */
c906108c
SS
19
20/* This file is intended to be included by sim-base.h.
21
22 This file provides an interface between the simulator framework and
23 the selected cpu. */
24
25#ifndef SIM_CPU_H
26#define SIM_CPU_H
27
28/* Type of function to return an insn name. */
29typedef const char * (CPU_INSN_NAME_FN) (sim_cpu *, int);
30
53891d9a
MF
31#ifdef CGEN_ARCH
32# include "cgen-cpu.h"
33#endif
34
c906108c
SS
35/* Types for register access functions.
36 These routines implement the sim_{fetch,store}_register interface. */
ee1cffd3
MF
37typedef int (CPUREG_FETCH_FN) (sim_cpu *, int, void *, int);
38typedef int (CPUREG_STORE_FN) (sim_cpu *, int, const void *, int);
c906108c
SS
39
40/* Types for PC access functions.
41 Some simulators require a functional interface to access the program
42 counter [a macro is insufficient as the PC is kept in a cpu-specific part
43 of the sim_cpu struct]. */
44typedef sim_cia (PC_FETCH_FN) (sim_cpu *);
45typedef void (PC_STORE_FN) (sim_cpu *, sim_cia);
46
47/* Pseudo baseclass for each cpu. */
48
8df77a27 49struct _sim_cpu {
c906108c
SS
50 /* Backlink to main state struct. */
51 SIM_DESC state;
8df77a27 52#define CPU_STATE(cpu) ((cpu)->state)
c906108c
SS
53
54 /* Processor index within the SD_DESC */
55 int index;
8df77a27 56#define CPU_INDEX(cpu) ((cpu)->index)
c906108c
SS
57
58 /* The name of the cpu. */
59 const char *name;
8df77a27 60#define CPU_NAME(cpu) ((cpu)->name)
c906108c
SS
61
62 /* Options specific to this cpu. */
63 struct option_list *options;
8df77a27 64#define CPU_OPTIONS(cpu) ((cpu)->options)
c906108c
SS
65
66 /* Processor specific core data */
67 sim_cpu_core core;
8df77a27 68#define CPU_CORE(cpu) (& (cpu)->core)
c906108c
SS
69
70 /* Number of instructions (used to iterate over CPU_INSN_NAME). */
71 unsigned int max_insns;
8df77a27 72#define CPU_MAX_INSNS(cpu) ((cpu)->max_insns)
c906108c
SS
73
74 /* Function to return the name of an insn. */
75 CPU_INSN_NAME_FN *insn_name;
8df77a27 76#define CPU_INSN_NAME(cpu) ((cpu)->insn_name)
c906108c
SS
77
78 /* Trace data. See sim-trace.h. */
79 TRACE_DATA trace_data;
8df77a27 80#define CPU_TRACE_DATA(cpu) (& (cpu)->trace_data)
c906108c
SS
81
82 /* Maximum number of debuggable entities.
83 This debugging is not intended for normal use.
84 It is only enabled when the simulator is configured with --with-debug
85 which shouldn't normally be specified. */
86#ifndef MAX_DEBUG_VALUES
87#define MAX_DEBUG_VALUES 4
88#endif
89
90 /* Boolean array of specified debugging flags. */
91 char debug_flags[MAX_DEBUG_VALUES];
8df77a27 92#define CPU_DEBUG_FLAGS(cpu) ((cpu)->debug_flags)
c906108c
SS
93 /* Standard values. */
94#define DEBUG_INSN_IDX 0
95#define DEBUG_NEXT_IDX 2 /* simulator specific debug bits begin here */
96
97 /* Debugging output goes to this or stderr if NULL.
98 We can't store `stderr' here as stderr goes through a callback. */
99 FILE *debug_file;
8df77a27 100#define CPU_DEBUG_FILE(cpu) ((cpu)->debug_file)
c906108c
SS
101
102 /* Profile data. See sim-profile.h. */
103 PROFILE_DATA profile_data;
8df77a27 104#define CPU_PROFILE_DATA(cpu) (& (cpu)->profile_data)
c906108c 105
c906108c 106 /* Machine tables for this cpu. See sim-model.h. */
8a0ebee6 107 const SIM_MACH *mach;
8df77a27 108#define CPU_MACH(cpu) ((cpu)->mach)
c906108c 109 /* The selected model. */
8a0ebee6 110 const SIM_MODEL *model;
8df77a27 111#define CPU_MODEL(cpu) ((cpu)->model)
c906108c
SS
112 /* Model data (profiling state, etc.). */
113 void *model_data;
8df77a27 114#define CPU_MODEL_DATA(cpu) ((cpu)->model_data)
c906108c
SS
115
116 /* Routines to fetch/store registers. */
117 CPUREG_FETCH_FN *reg_fetch;
8df77a27 118#define CPU_REG_FETCH(c) ((c)->reg_fetch)
c906108c 119 CPUREG_STORE_FN *reg_store;
8df77a27 120#define CPU_REG_STORE(c) ((c)->reg_store)
c906108c 121 PC_FETCH_FN *pc_fetch;
8df77a27 122#define CPU_PC_FETCH(c) ((c)->pc_fetch)
c906108c 123 PC_STORE_FN *pc_store;
8df77a27 124#define CPU_PC_STORE(c) ((c)->pc_store)
ffeb72b4 125
53891d9a
MF
126#ifdef CGEN_ARCH
127 /* Static parts of cgen. */
128 CGEN_CPU cgen_cpu;
129#define CPU_CGEN_CPU(cpu) ((cpu)->cgen_cpu)
130#endif
131
ffeb72b4
MF
132 /* Pointer for sim target to store arbitrary cpu data. Normally the
133 target should define a struct and use it here. */
134 void *arch_data;
135#define CPU_ARCH_DATA(cpu) ((cpu)->arch_data)
136};
ffeb72b4 137
c906108c 138/* Create all cpus. */
ffeb72b4
MF
139extern SIM_RC sim_cpu_alloc_all_extra (SIM_DESC, int, size_t);
140#define sim_cpu_alloc_all(state, ncpus) sim_cpu_alloc_all_extra (state, ncpus, 0)
c906108c 141/* Create a cpu. */
ffeb72b4
MF
142extern sim_cpu *sim_cpu_alloc_extra (SIM_DESC, size_t);
143#define sim_cpu_alloc(sd) sim_cpu_alloc_extra (sd, 0)
c906108c
SS
144/* Release resources held by all cpus. */
145extern void sim_cpu_free_all (SIM_DESC);
146/* Release resources held by a cpu. */
147extern void sim_cpu_free (sim_cpu *);
148
149/* Return a pointer to the cpu data for CPU_NAME, or NULL if not found. */
150extern sim_cpu *sim_cpu_lookup (SIM_DESC, const char *);
151
152/* Return prefix to use in cpu specific messages. */
153extern const char *sim_cpu_msg_prefix (sim_cpu *);
154/* Cover fn to sim_io_eprintf. */
7aaf9c03
TO
155extern void sim_io_eprintf_cpu (sim_cpu *, const char *, ...)
156 ATTRIBUTE_PRINTF (2, 3);
c906108c
SS
157
158/* Get/set a pc value. */
159#define CPU_PC_GET(cpu) ((* CPU_PC_FETCH (cpu)) (cpu))
160#define CPU_PC_SET(cpu,newval) ((* CPU_PC_STORE (cpu)) ((cpu), (newval)))
161/* External interface to accessing the pc. */
162sim_cia sim_pc_get (sim_cpu *);
163void sim_pc_set (sim_cpu *, sim_cia);
164
165#endif /* SIM_CPU_H */