1 /* OpenRISC simulator support code
2 Copyright (C) 2017-2024 Free Software Foundation, Inc.
4 This file is part of GDB, the GNU debugger.
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 3 of the License, or
9 (at your option) any later version.
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program. If not, see <http://www.gnu.org/licenses/>. */
19 /* This must come before any other includes. */
22 #define WANT_CPU_OR1K32BF
34 or1k32bf_fetch_register (sim_cpu
*current_cpu
, int rn
, void *buf
, int len
)
37 SETTWI (buf
, GET_H_GPR (rn
));
42 SETTWI (buf
, GET_H_SYS_PPC ());
45 SETTWI (buf
, GET_H_PC ());
48 SETTWI (buf
, GET_H_SYS_SR ());
53 return sizeof (WI
); /* WI from arch.h */
57 or1k32bf_store_register (sim_cpu
*current_cpu
, int rn
, const void *buf
, int len
)
60 SET_H_GPR (rn
, GETTWI (buf
));
65 SET_H_SYS_PPC (GETTWI (buf
));
68 SET_H_PC (GETTWI (buf
));
71 SET_H_SYS_SR (GETTWI (buf
));
76 return sizeof (WI
); /* WI from arch.h */
80 or1k32bf_model_or1200_u_exec (sim_cpu
*current_cpu
, const IDESC
*idesc
,
81 int unit_num
, int referenced
)
87 or1k32bf_model_or1200nd_u_exec (sim_cpu
*current_cpu
, const IDESC
*idesc
,
88 int unit_num
, int referenced
)
94 or1k32bf_model_insn_before (sim_cpu
*current_cpu
, int first_p
)
99 or1k32bf_model_insn_after (sim_cpu
*current_cpu
, int last_p
, int cycles
)
104 or1k32bf_h_spr_get_raw (sim_cpu
*current_cpu
, USI addr
)
106 SIM_DESC sd
= CPU_STATE (current_cpu
);
107 struct or1k_sim_cpu
*or1k_cpu
= OR1K_SIM_CPU (current_cpu
);
109 SIM_ASSERT (addr
< NUM_SPR
);
110 return or1k_cpu
->spr
[addr
];
114 or1k32bf_h_spr_set_raw (sim_cpu
*current_cpu
, USI addr
, USI val
)
116 SIM_DESC sd
= CPU_STATE (current_cpu
);
117 struct or1k_sim_cpu
*or1k_cpu
= OR1K_SIM_CPU (current_cpu
);
119 SIM_ASSERT (addr
< NUM_SPR
);
120 or1k_cpu
->spr
[addr
] = val
;
124 or1k32bf_h_spr_field_get_raw (sim_cpu
*current_cpu
, USI addr
, int msb
, int lsb
)
126 SIM_DESC sd
= CPU_STATE (current_cpu
);
127 struct or1k_sim_cpu
*or1k_cpu
= OR1K_SIM_CPU (current_cpu
);
129 SIM_ASSERT (addr
< NUM_SPR
);
130 return LSEXTRACTED (or1k_cpu
->spr
[addr
], msb
, lsb
);
134 or1k32bf_h_spr_field_set_raw (sim_cpu
*current_cpu
, USI addr
, int msb
, int lsb
,
137 struct or1k_sim_cpu
*or1k_cpu
= OR1K_SIM_CPU (current_cpu
);
139 or1k_cpu
->spr
[addr
] &= ~LSMASK32 (msb
, lsb
);
140 or1k_cpu
->spr
[addr
] |= LSINSERTED (val
, msb
, lsb
);
143 /* Initialize a sim cpu object. */
145 or1k_cpu_init (SIM_DESC sd
, sim_cpu
*current_cpu
, const USI or1k_vr
,
146 const USI or1k_upr
, const USI or1k_cpucfgr
)
148 struct or1k_sim_cpu
*or1k_cpu
= OR1K_SIM_CPU (current_cpu
);
150 /* Set the configuration registers passed from the user. */
151 SET_H_SYS_VR (or1k_vr
);
152 SET_H_SYS_UPR (or1k_upr
);
153 SET_H_SYS_CPUCFGR (or1k_cpucfgr
);
155 #define CHECK_SPR_FIELD(GROUP, INDEX, FIELD, test) \
158 USI field = GET_H_##SYS##_##INDEX##_##FIELD (); \
161 (sd, "WARNING: unsupported %s field in %s register: 0x%x\n", \
162 #FIELD, #INDEX, field); \
165 /* Set flags indicating if we are in a delay slot or not. */
166 or1k_cpu
->next_delay_slot
= 0;
167 or1k_cpu
->delay_slot
= 0;
169 /* Verify any user passed fields and warn on configurations we don't
171 CHECK_SPR_FIELD (SYS
, UPR
, UP
, field
== 1);
172 CHECK_SPR_FIELD (SYS
, UPR
, DCP
, field
== 0);
173 CHECK_SPR_FIELD (SYS
, UPR
, ICP
, field
== 0);
174 CHECK_SPR_FIELD (SYS
, UPR
, DMP
, field
== 0);
175 CHECK_SPR_FIELD (SYS
, UPR
, MP
, field
== 0);
176 CHECK_SPR_FIELD (SYS
, UPR
, IMP
, field
== 0);
177 CHECK_SPR_FIELD (SYS
, UPR
, DUP
, field
== 0);
178 CHECK_SPR_FIELD (SYS
, UPR
, PCUP
, field
== 0);
179 CHECK_SPR_FIELD (SYS
, UPR
, PICP
, field
== 0);
180 CHECK_SPR_FIELD (SYS
, UPR
, PMP
, field
== 0);
181 CHECK_SPR_FIELD (SYS
, UPR
, TTP
, field
== 0);
182 CHECK_SPR_FIELD (SYS
, UPR
, CUP
, field
== 0);
184 CHECK_SPR_FIELD (SYS
, CPUCFGR
, NSGR
, field
== 0);
185 CHECK_SPR_FIELD (SYS
, CPUCFGR
, CGF
, field
== 0);
186 CHECK_SPR_FIELD (SYS
, CPUCFGR
, OB32S
, field
== 1);
187 CHECK_SPR_FIELD (SYS
, CPUCFGR
, OF32S
, field
== 1);
188 CHECK_SPR_FIELD (SYS
, CPUCFGR
, OB64S
, field
== 0);
189 CHECK_SPR_FIELD (SYS
, CPUCFGR
, OF64S
, field
== 0);
190 CHECK_SPR_FIELD (SYS
, CPUCFGR
, OV64S
, field
== 0);
192 #undef CHECK_SPR_FIELD
194 /* Configure the fpu operations and mark fpu available. */
195 cgen_init_accurate_fpu (current_cpu
, CGEN_CPU_FPU (current_cpu
),
197 SET_H_SYS_CPUCFGR_OF32S (1);
199 /* Set the UPR[UP] flag, even if the user tried to unset it, as we always
200 support the Unit Present Register. */
201 SET_H_SYS_UPR_UP (1);
203 /* Set the supervisor register to indicate we are in supervisor mode and
204 set the Fixed-One bit which must always be set. */
205 SET_H_SYS_SR (SPR_FIELD_MASK_SYS_SR_SM
| SPR_FIELD_MASK_SYS_SR_FO
);
207 /* Clear the floating point control status register. */
212 or1k32bf_insn_before (sim_cpu
*current_cpu
, SEM_PC vpc
, const IDESC
*idesc
)
214 SIM_DESC sd
= CPU_STATE (current_cpu
);
215 struct or1k_sim_cpu
*or1k_cpu
= OR1K_SIM_CPU (current_cpu
);
217 or1k_cpu
->delay_slot
= or1k_cpu
->next_delay_slot
;
218 or1k_cpu
->next_delay_slot
= 0;
220 if (or1k_cpu
->delay_slot
&&
221 CGEN_ATTR_BOOLS (CGEN_INSN_ATTRS ((idesc
)->idata
)) &
222 CGEN_ATTR_MASK (CGEN_INSN_NOT_IN_DELAY_SLOT
))
226 pc
= vpc
->argbuf
.addr
;
230 sim_io_error (sd
, "invalid instruction in a delay slot at PC 0x%08x",
237 or1k32bf_insn_after (sim_cpu
*current_cpu
, SEM_PC vpc
, const IDESC
*idesc
)
239 SIM_DESC sd
= CPU_STATE (current_cpu
);
240 struct or1k_sim_cpu
*or1k_cpu
= OR1K_SIM_CPU (current_cpu
);
244 ppc
= vpc
->argbuf
.addr
;
251 if (!GET_H_SYS_CPUCFGR_ND () &&
252 CGEN_ATTR_BOOLS (CGEN_INSN_ATTRS ((idesc
)->idata
)) &
253 CGEN_ATTR_MASK (CGEN_INSN_DELAYED_CTI
))
255 SIM_ASSERT (!or1k_cpu
->delay_slot
);
256 or1k_cpu
->next_delay_slot
= 1;
261 or1k32bf_nop (sim_cpu
*current_cpu
, USI uimm16
)
263 SIM_DESC sd
= CPU_STATE (current_cpu
);
272 sim_io_printf (CPU_STATE (current_cpu
), "exit(%d)\n", GET_H_GPR (3));
273 ATTRIBUTE_FALLTHROUGH
;
274 case NOP_EXIT_SILENT
:
275 sim_engine_halt (sd
, current_cpu
, NULL
, CPU_PC_GET (current_cpu
),
276 sim_exited
, GET_H_GPR (3));
280 sim_io_printf (CPU_STATE (current_cpu
), "report(0x%08x);\n",
285 sim_io_printf (CPU_STATE (current_cpu
), "%c",
286 (char) (GET_H_GPR (3) & 0xff));
290 sim_io_eprintf (sd
, "WARNING: l.nop with unsupported code 0x%08x\n",
297 /* Build an address value used for load and store instructions. For example,
298 the instruction 'l.lws rD, I(rA)' will require to load data from the 4 byte
299 address represented by rA + I. Here the argument base is rA, offset is I
300 and the size is the read size in bytes. Note, OpenRISC requires that word
301 and half-word access be word and half-word aligned respectively, the check
302 for alignment is not needed here. */
305 or1k32bf_make_load_store_addr (sim_cpu
*current_cpu
, USI base
, SI offset
,
308 SIM_DESC sd
= CPU_STATE (current_cpu
);
310 USI addr
= base
+ offset
;
312 /* If little endian load/store is enabled we adjust the byte and half-word
313 addresses to the little endian equivalent. */
314 if (GET_H_SYS_SR_LEE ())
319 case 4: /* We are retrieving the entire word no adjustment. */
322 case 2: /* Perform half-word adjustment 0 -> 2, 2 -> 0. */
326 case 1: /* Perform byte adjustment, 0 -> 3, 2 -> 3, etc. */
339 /* The find first 1 instruction returns the location of the first set bit
340 in the argument register. */
343 or1k32bf_ff1 (sim_cpu
*current_cpu
, USI val
)
347 for (bit
= 1, ret
= 1; bit
; bit
<<= 1, ret
++)
355 /* The find last 1 instruction returns the location of the last set bit in
356 the argument register. */
359 or1k32bf_fl1 (sim_cpu
*current_cpu
, USI val
)
363 for (bit
= 1 << 31, ret
= 32; bit
; bit
>>= 1, ret
--)