1 /* The common simulator framework for GDB, the GNU Debugger.
3 Copyright 2002-2023 Free Software Foundation, Inc.
5 Contributed by Andrew Cagney and Red Hat.
7 This file is part of GDB.
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 3 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program. If not, see <http://www.gnu.org/licenses/>. */
24 #error "N must be #defined"
30 /* N: The number of bytes of data to transfer.
31 M: The number of bytes in the type used to transfer the data */
34 #error "N (nr bytes of data) must be <= M (nr of bytes in data type)"
40 /* NOTE: see end of file for #undef of these macros */
42 #define unsigned_M XCONCAT2(unsigned_,M)
44 #define T2H_M XCONCAT2(T2H_,M)
45 #define H2T_M XCONCAT2(H2T_,M)
46 #define SWAP_M XCONCAT2(SWAP_,M)
48 #define sim_core_read_aligned_N XCONCAT2(sim_core_read_aligned_,N)
49 #define sim_core_read_unaligned_N XCONCAT2(sim_core_read_unaligned_,N)
50 #define sim_core_read_misaligned_N XCONCAT2(sim_core_read_misaligned_,N)
51 #define sim_core_write_aligned_N XCONCAT2(sim_core_write_aligned_,N)
52 #define sim_core_write_unaligned_N XCONCAT2(sim_core_write_unaligned_,N)
53 #define sim_core_write_misaligned_N XCONCAT2(sim_core_write_misaligned_,N)
54 #define sim_core_trace_M XCONCAT2(sim_core_trace_,M)
55 #define sim_core_dummy_M XCONCAT2(sim_core_dummy_,M)
59 /* dummy variable used as a return value when nothing else is
60 available and the compiler is complaining */
61 static unsigned_M sim_core_dummy_M
;
65 /* TAGS: sim_core_trace_1 sim_core_trace_2 */
66 /* TAGS: sim_core_trace_4 sim_core_trace_8 */
67 /* TAGS: sim_core_trace_16 */
71 sim_core_trace_M (sim_cpu
*cpu
,
80 const char *transfer
= (type
== read_transfer
? "read" : "write");
81 const char *direction
= (type
== read_transfer
? "->" : "<-");
83 if (TRACE_DEBUG_P (cpu
))
84 trace_printf (CPU_STATE (cpu
), cpu
, "sim-n-core.h:%d: ", line_nr
);
87 trace_printf (CPU_STATE (cpu
), cpu
,
88 "%s-%d %s:0x%08lx %s 0x%08lx%08lx%08lx%08lx\n",
93 (unsigned long) V4_16 (val
, 0),
94 (unsigned long) V4_16 (val
, 1),
95 (unsigned long) V4_16 (val
, 2),
96 (unsigned long) V4_16 (val
, 3));
99 trace_printf (CPU_STATE (cpu
), cpu
,
100 "%s-%d %s:0x%08lx %s 0x%08lx%08lx\n",
103 (unsigned long) addr
,
105 (unsigned long) V4_8 (val
, 0),
106 (unsigned long) V4_8 (val
, 1));
109 trace_printf (CPU_STATE (cpu
), cpu
,
110 "%s-%d %s:0x%08lx %s 0x%08lx\n",
114 (unsigned long) addr
,
116 (unsigned long) val
);
119 trace_printf (CPU_STATE (cpu
), cpu
,
120 "%s-%d %s:0x%08lx %s 0x%04lx\n",
124 (unsigned long) addr
,
126 (unsigned long) val
);
129 trace_printf (CPU_STATE (cpu
), cpu
,
130 "%s-%d %s:0x%08lx %s 0x%02lx\n",
134 (unsigned long) addr
,
136 (unsigned long) val
);
142 /* TAGS: sim_core_read_aligned_1 sim_core_read_aligned_2 */
143 /* TAGS: sim_core_read_aligned_4 sim_core_read_aligned_8 */
144 /* TAGS: sim_core_read_aligned_16 */
147 INLINE_SIM_CORE(unsigned_M
)
148 sim_core_read_aligned_N(sim_cpu
*cpu
,
153 sim_cpu_core
*cpu_core
= CPU_CORE (cpu
);
154 sim_core_common
*core
= &cpu_core
->common
;
156 sim_core_mapping
*mapping
;
158 #if WITH_XOR_ENDIAN != 0
160 addr
= xaddr
^ cpu_core
->xor[(N
- 1) % WITH_XOR_ENDIAN
];
164 mapping
= sim_core_find_mapping (core
, map
, addr
, N
, read_transfer
, 1 /*abort*/, cpu
, cia
);
168 if (mapping
->device
!= NULL
)
171 sim_cpu_hw_io_read_buffer (cpu
, cia
, mapping
->device
, &data
, mapping
->space
, addr
, N
);
176 val
= T2H_M (*(unsigned_M
*) sim_core_translate (mapping
, addr
));
179 PROFILE_COUNT_CORE (cpu
, addr
, N
, map
);
180 if (TRACE_P (cpu
, TRACE_CORE_IDX
))
181 sim_core_trace_M (cpu
, cia
, __LINE__
, read_transfer
, map
, addr
, val
, N
);
186 /* TAGS: sim_core_read_unaligned_1 sim_core_read_unaligned_2 */
187 /* TAGS: sim_core_read_unaligned_4 sim_core_read_unaligned_8 */
188 /* TAGS: sim_core_read_unaligned_16 */
190 #if (M == N && N > 1)
191 INLINE_SIM_CORE(unsigned_M
)
192 sim_core_read_unaligned_N(sim_cpu
*cpu
,
197 int alignment
= N
- 1;
198 /* if hardwired to forced alignment just do it */
199 if (WITH_ALIGNMENT
== FORCED_ALIGNMENT
)
200 return sim_core_read_aligned_N (cpu
, cia
, map
, addr
& ~alignment
);
201 else if ((addr
& alignment
) == 0)
202 return sim_core_read_aligned_N (cpu
, cia
, map
, addr
);
204 switch (CURRENT_ALIGNMENT
)
206 case STRICT_ALIGNMENT
:
207 SIM_CORE_SIGNAL (CPU_STATE (cpu
), cpu
, cia
, map
, N
, addr
,
208 read_transfer
, sim_core_unaligned_signal
);
209 case NONSTRICT_ALIGNMENT
:
212 if (sim_core_xor_read_buffer (CPU_STATE (cpu
), cpu
, map
, &val
, addr
, N
) != N
)
213 SIM_CORE_SIGNAL (CPU_STATE (cpu
), cpu
, cia
, map
, N
, addr
,
214 read_transfer
, sim_core_unaligned_signal
);
216 PROFILE_COUNT_CORE (cpu
, addr
, N
, map
);
217 if (TRACE_P (cpu
, TRACE_CORE_IDX
))
218 sim_core_trace_M (cpu
, cia
, __LINE__
, read_transfer
, map
, addr
, val
, N
);
221 case FORCED_ALIGNMENT
:
222 return sim_core_read_aligned_N (cpu
, cia
, map
, addr
& ~alignment
);
223 case MIXED_ALIGNMENT
:
224 sim_engine_abort (CPU_STATE (cpu
), cpu
, cia
,
225 "internal error - %s - mixed alignment",
226 XSTRING (sim_core_read_unaligned_N
));
228 sim_engine_abort (CPU_STATE (cpu
), cpu
, cia
,
229 "internal error - %s - bad switch",
230 XSTRING (sim_core_read_unaligned_N
));
231 /* to keep some compilers happy, we return a dummy */
232 return sim_core_dummy_M
;
237 /* TAGS: sim_core_read_misaligned_3 sim_core_read_misaligned_5 */
238 /* TAGS: sim_core_read_misaligned_6 sim_core_read_misaligned_7 */
241 INLINE_SIM_CORE(unsigned_M
)
242 sim_core_read_misaligned_N(sim_cpu
*cpu
,
248 if (sim_core_xor_read_buffer (CPU_STATE (cpu
), cpu
, map
, &val
, addr
, N
) != N
)
249 SIM_CORE_SIGNAL (CPU_STATE (cpu
), cpu
, cia
, map
, N
, addr
,
250 read_transfer
, sim_core_unaligned_signal
);
251 if (HOST_BYTE_ORDER
!= CURRENT_TARGET_BYTE_ORDER
)
253 if (CURRENT_TARGET_BYTE_ORDER
== BFD_ENDIAN_BIG
)
255 PROFILE_COUNT_CORE (cpu
, addr
, N
, map
);
256 if (TRACE_P (cpu
, TRACE_CORE_IDX
))
257 sim_core_trace_M (cpu
, cia
, __LINE__
, read_transfer
, map
, addr
, val
, N
);
262 /* TAGS: sim_core_write_aligned_1 sim_core_write_aligned_2 */
263 /* TAGS: sim_core_write_aligned_4 sim_core_write_aligned_8 */
264 /* TAGS: sim_core_write_aligned_16 */
267 INLINE_SIM_CORE(void)
268 sim_core_write_aligned_N(sim_cpu
*cpu
,
274 sim_cpu_core
*cpu_core
= CPU_CORE (cpu
);
275 sim_core_common
*core
= &cpu_core
->common
;
276 sim_core_mapping
*mapping
;
278 #if WITH_XOR_ENDIAN != 0
280 addr
= xaddr
^ cpu_core
->xor[(N
- 1) % WITH_XOR_ENDIAN
];
284 mapping
= sim_core_find_mapping (core
, map
, addr
, N
, write_transfer
, 1 /*abort*/, cpu
, cia
);
288 if (mapping
->device
!= NULL
)
290 unsigned_M data
= H2T_M (val
);
291 sim_cpu_hw_io_write_buffer (cpu
, cia
, mapping
->device
, &data
, mapping
->space
, addr
, N
);
295 *(unsigned_M
*) sim_core_translate (mapping
, addr
) = H2T_M (val
);
298 PROFILE_COUNT_CORE (cpu
, addr
, N
, map
);
299 if (TRACE_P (cpu
, TRACE_CORE_IDX
))
300 sim_core_trace_M (cpu
, cia
, __LINE__
, write_transfer
, map
, addr
, val
, N
);
304 /* TAGS: sim_core_write_unaligned_1 sim_core_write_unaligned_2 */
305 /* TAGS: sim_core_write_unaligned_4 sim_core_write_unaligned_8 */
306 /* TAGS: sim_core_write_unaligned_16 */
308 #if (M == N && N > 1)
309 INLINE_SIM_CORE(void)
310 sim_core_write_unaligned_N(sim_cpu
*cpu
,
316 int alignment
= N
- 1;
317 /* if hardwired to forced alignment just do it */
318 if (WITH_ALIGNMENT
== FORCED_ALIGNMENT
)
319 sim_core_write_aligned_N (cpu
, cia
, map
, addr
& ~alignment
, val
);
320 else if ((addr
& alignment
) == 0)
321 sim_core_write_aligned_N (cpu
, cia
, map
, addr
, val
);
323 switch (CURRENT_ALIGNMENT
)
325 case STRICT_ALIGNMENT
:
326 SIM_CORE_SIGNAL (CPU_STATE (cpu
), cpu
, cia
, map
, N
, addr
,
327 write_transfer
, sim_core_unaligned_signal
);
329 case NONSTRICT_ALIGNMENT
:
331 unsigned_M data
= H2T_M (val
);
332 if (sim_core_xor_write_buffer (CPU_STATE (cpu
), cpu
, map
, &data
, addr
, N
) != N
)
333 SIM_CORE_SIGNAL (CPU_STATE (cpu
), cpu
, cia
, map
, N
, addr
,
334 write_transfer
, sim_core_unaligned_signal
);
335 PROFILE_COUNT_CORE (cpu
, addr
, N
, map
);
336 if (TRACE_P (cpu
, TRACE_CORE_IDX
))
337 sim_core_trace_M (cpu
, cia
, __LINE__
, write_transfer
, map
, addr
, val
, N
);
340 case FORCED_ALIGNMENT
:
341 sim_core_write_aligned_N (cpu
, cia
, map
, addr
& ~alignment
, val
);
343 case MIXED_ALIGNMENT
:
344 sim_engine_abort (CPU_STATE (cpu
), cpu
, cia
,
345 "internal error - %s - mixed alignment",
346 XSTRING (sim_core_write_unaligned_N
));
349 sim_engine_abort (CPU_STATE (cpu
), cpu
, cia
,
350 "internal error - %s - bad switch",
351 XSTRING (sim_core_write_unaligned_N
));
357 /* TAGS: sim_core_write_misaligned_3 sim_core_write_misaligned_5 */
358 /* TAGS: sim_core_write_misaligned_6 sim_core_write_misaligned_7 */
361 INLINE_SIM_CORE(void)
362 sim_core_write_misaligned_N(sim_cpu
*cpu
,
368 unsigned_M data
= val
;
369 if (CURRENT_TARGET_BYTE_ORDER
== BFD_ENDIAN_BIG
)
370 data
<<= (M
- N
) * 8;
371 if (HOST_BYTE_ORDER
!= CURRENT_TARGET_BYTE_ORDER
)
372 data
= SWAP_M (data
);
373 if (sim_core_xor_write_buffer (CPU_STATE (cpu
), cpu
, map
, &data
, addr
, N
) != N
)
374 SIM_CORE_SIGNAL (CPU_STATE (cpu
), cpu
, cia
, map
, N
, addr
,
375 write_transfer
, sim_core_unaligned_signal
);
376 PROFILE_COUNT_CORE (cpu
, addr
, N
, map
);
377 if (TRACE_P (cpu
, TRACE_CORE_IDX
))
378 sim_core_trace_M (cpu
, cia
, __LINE__
, write_transfer
, map
, addr
, val
, N
);
383 /* NOTE: see start of file for #define of these macros */
388 #undef sim_core_read_aligned_N
389 #undef sim_core_read_unaligned_N
390 #undef sim_core_read_misaligned_N
391 #undef sim_core_write_aligned_N
392 #undef sim_core_write_unaligned_N
393 #undef sim_core_write_misaligned_N
394 #undef sim_core_trace_M
395 #undef sim_core_dummy_M