1 /* Lattice Mico32 exception and system call support.
2 Contributed by Jon Beniston <jon@beniston.com>
4 Copyright (C) 2009-2024 Free Software Foundation, Inc.
6 This file is part of GDB.
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 3 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program. If not, see <http://www.gnu.org/licenses/>. */
21 /* This must come before any other includes. */
24 #define WANT_CPU lm32bf
25 #define WANT_CPU_LM32BF
28 #include "sim-signal.h"
29 #include "sim-syscall.h"
31 #include "target-newlib-syscall.h"
33 /* Handle invalid instructions. */
36 sim_engine_invalid_insn (SIM_CPU
* current_cpu
, IADDR cia
, SEM_PC pc
)
38 SIM_DESC sd
= CPU_STATE (current_cpu
);
40 sim_engine_halt (sd
, current_cpu
, NULL
, cia
, sim_stopped
, SIM_SIGILL
);
45 /* Handle divide instructions. */
48 lm32bf_divu_insn (SIM_CPU
* current_cpu
, IADDR pc
, USI r0
, USI r1
, USI r2
)
50 SIM_DESC sd
= CPU_STATE (current_cpu
);
52 /* Check for divide by zero */
53 if (GET_H_GR (r1
) == 0)
55 if (STATE_ENVIRONMENT (sd
) != OPERATING_ENVIRONMENT
)
56 sim_engine_halt (sd
, current_cpu
, NULL
, pc
, sim_stopped
, SIM_SIGFPE
);
59 /* Save PC in exception address register. */
61 /* Save and clear interrupt enable. */
62 SET_H_CSR (LM32_CSR_IE
, (GET_H_CSR (LM32_CSR_IE
) & 1) << 1);
63 /* Branch to divide by zero exception handler. */
64 return GET_H_CSR (LM32_CSR_EBA
) + LM32_EID_DIVIDE_BY_ZERO
* 32;
69 SET_H_GR (r2
, (USI
) GET_H_GR (r0
) / (USI
) GET_H_GR (r1
));
75 lm32bf_modu_insn (SIM_CPU
* current_cpu
, IADDR pc
, USI r0
, USI r1
, USI r2
)
77 SIM_DESC sd
= CPU_STATE (current_cpu
);
79 /* Check for divide by zero. */
80 if (GET_H_GR (r1
) == 0)
82 if (STATE_ENVIRONMENT (sd
) != OPERATING_ENVIRONMENT
)
83 sim_engine_halt (sd
, current_cpu
, NULL
, pc
, sim_stopped
, SIM_SIGFPE
);
86 /* Save PC in exception address register. */
88 /* Save and clear interrupt enable. */
89 SET_H_CSR (LM32_CSR_IE
, (GET_H_CSR (LM32_CSR_IE
) & 1) << 1);
90 /* Branch to divide by zero exception handler. */
91 return GET_H_CSR (LM32_CSR_EBA
) + LM32_EID_DIVIDE_BY_ZERO
* 32;
96 SET_H_GR (r2
, (USI
) GET_H_GR (r0
) % (USI
) GET_H_GR (r1
));
101 /* Handle break instructions. */
104 lm32bf_break_insn (SIM_CPU
* current_cpu
, IADDR pc
)
106 SIM_DESC sd
= CPU_STATE (current_cpu
);
109 if (STATE_ENVIRONMENT (sd
) != OPERATING_ENVIRONMENT
)
111 sim_engine_halt (sd
, current_cpu
, NULL
, pc
, sim_stopped
, SIM_SIGTRAP
);
116 /* Save PC in breakpoint address register. */
118 /* Save and clear interrupt enable. */
119 SET_H_CSR (LM32_CSR_IE
, (GET_H_CSR (LM32_CSR_IE
) & 1) << 2);
120 /* Branch to breakpoint exception handler. */
121 return GET_H_CSR (LM32_CSR_DEBA
) + LM32_EID_BREAKPOINT
* 32;
125 /* Handle scall instructions. */
128 lm32bf_scall_insn (SIM_CPU
* current_cpu
, IADDR pc
)
130 SIM_DESC sd
= CPU_STATE (current_cpu
);
132 if ((STATE_ENVIRONMENT (sd
) != OPERATING_ENVIRONMENT
)
133 || (GET_H_GR (8) == TARGET_NEWLIB_SYS_exit
))
135 /* Delegate system call to host O/S. */
136 long result
, result2
;
139 /* Perform the system call. */
140 sim_syscall_multi (current_cpu
, GET_H_GR (8), GET_H_GR (1), GET_H_GR (2),
141 GET_H_GR (3), GET_H_GR (4), &result
, &result2
,
143 /* Store the return value in the CPU's registers. */
144 SET_H_GR (1, result
);
145 SET_H_GR (2, result2
);
146 SET_H_GR (3, errcode
);
148 /* Skip over scall instruction. */
153 /* Save PC in exception address register. */
155 /* Save and clear interrupt enable */
156 SET_H_CSR (LM32_CSR_IE
, (GET_H_CSR (LM32_CSR_IE
) & 1) << 1);
157 /* Branch to system call exception handler. */
158 return GET_H_CSR (LM32_CSR_EBA
) + LM32_EID_SYSTEM_CALL
* 32;
162 /* Handle b instructions. */
165 lm32bf_b_insn (SIM_CPU
* current_cpu
, USI r0
, USI f_r0
)
167 /* Restore interrupt enable. */
169 SET_H_CSR (LM32_CSR_IE
, (GET_H_CSR (LM32_CSR_IE
) & 2) >> 1);
171 SET_H_CSR (LM32_CSR_IE
, (GET_H_CSR (LM32_CSR_IE
) & 4) >> 2);
175 /* Handle wcsr instructions. */
178 lm32bf_wcsr_insn (SIM_CPU
* current_cpu
, USI f_csr
, USI r1
)
180 /* Writing a 1 to IP CSR clears a bit, writing 0 has no effect. */
181 if (f_csr
== LM32_CSR_IP
)
182 SET_H_CSR (f_csr
, GET_H_CSR (f_csr
) & ~r1
);
184 SET_H_CSR (f_csr
, r1
);
187 /* Handle signals. */
190 lm32_core_signal (SIM_DESC sd
,
196 transfer_type transfer
, sim_core_signals sig
)
198 const char *copy
= (transfer
== read_transfer
? "read" : "write");
199 address_word ip
= CIA_ADDR (cia
);
200 SIM_CPU
*current_cpu
= cpu
;
204 case sim_core_unmapped_signal
:
206 "core: %d byte %s to unmapped address 0x%lx at 0x%lx\n",
207 nr_bytes
, copy
, (unsigned long) addr
,
210 /* Save and clear interrupt enable. */
211 SET_H_CSR (LM32_CSR_IE
, (GET_H_CSR (LM32_CSR_IE
) & 1) << 1);
212 CPU_PC_SET (cpu
, GET_H_CSR (LM32_CSR_EBA
) + LM32_EID_DATA_BUS_ERROR
* 32);
213 sim_engine_halt (sd
, cpu
, NULL
, LM32_EID_DATA_BUS_ERROR
* 32,
214 sim_stopped
, SIM_SIGSEGV
);
216 case sim_core_unaligned_signal
:
218 "core: %d byte misaligned %s to address 0x%lx at 0x%lx\n",
219 nr_bytes
, copy
, (unsigned long) addr
,
222 /* Save and clear interrupt enable. */
223 SET_H_CSR (LM32_CSR_IE
, (GET_H_CSR (LM32_CSR_IE
) & 1) << 1);
224 CPU_PC_SET (cpu
, GET_H_CSR (LM32_CSR_EBA
) + LM32_EID_DATA_BUS_ERROR
* 32);
225 sim_engine_halt (sd
, cpu
, NULL
, LM32_EID_DATA_BUS_ERROR
* 32,
226 sim_stopped
, SIM_SIGBUS
);
229 sim_engine_abort (sd
, cpu
, cia
,
230 "sim_core_signal - internal error - bad switch");