2020-02-28 16:04:28 +00:00
|
|
|
/*
|
|
|
|
DingusPPC - The Experimental PowerPC Macintosh emulator
|
2023-07-10 12:06:20 +00:00
|
|
|
Copyright (C) 2018-23 divingkatae and maximum
|
2020-02-28 16:04:28 +00:00
|
|
|
(theweirdo) spatium
|
|
|
|
|
|
|
|
(Contact divingkatae#1017 or powermax#2286 on Discord for more info)
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
|
|
it under the terms of the GNU General Public License as published by
|
|
|
|
the Free Software Foundation, either version 3 of the License, or
|
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2020-01-11 20:48:56 +00:00
|
|
|
/** @file Handling of low-level PPC exceptions. */
|
|
|
|
|
2022-03-02 15:55:20 +00:00
|
|
|
#include <loguru.hpp>
|
2020-05-12 18:55:45 +00:00
|
|
|
#include "ppcemu.h"
|
2021-05-15 22:53:15 +00:00
|
|
|
#include "ppcmmu.h"
|
2022-03-02 15:55:20 +00:00
|
|
|
|
2020-01-11 20:48:56 +00:00
|
|
|
#include <setjmp.h>
|
2020-02-23 15:41:44 +00:00
|
|
|
#include <stdexcept>
|
2020-05-12 18:55:45 +00:00
|
|
|
#include <string>
|
2020-01-11 20:48:56 +00:00
|
|
|
|
|
|
|
jmp_buf exc_env; /* Global exception environment. */
|
|
|
|
|
2022-01-10 16:27:27 +00:00
|
|
|
void ppc_exception_handler(Except_Type exception_type, uint32_t srr1_bits) {
|
2021-04-29 00:26:17 +00:00
|
|
|
#ifdef CPU_PROFILING
|
|
|
|
exceptions_processed++;
|
2020-05-12 18:55:45 +00:00
|
|
|
#endif
|
2020-01-11 20:48:56 +00:00
|
|
|
|
2020-05-12 18:55:45 +00:00
|
|
|
switch (exception_type) {
|
|
|
|
case Except_Type::EXC_SYSTEM_RESET:
|
|
|
|
ppc_state.spr[SPR::SRR0] = ppc_state.pc & 0xFFFFFFFC;
|
|
|
|
ppc_next_instruction_address = 0x0100;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Except_Type::EXC_MACHINE_CHECK:
|
2023-11-23 23:56:58 +00:00
|
|
|
if (!(ppc_state.msr & MSR::ME)) {
|
2020-05-12 18:55:45 +00:00
|
|
|
/* TODO: handle internal checkstop */
|
|
|
|
}
|
|
|
|
ppc_state.spr[SPR::SRR0] = ppc_state.pc & 0xFFFFFFFC;
|
|
|
|
ppc_next_instruction_address = 0x0200;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Except_Type::EXC_DSI:
|
|
|
|
ppc_state.spr[SPR::SRR0] = ppc_state.pc & 0xFFFFFFFC;
|
|
|
|
ppc_next_instruction_address = 0x0300;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Except_Type::EXC_ISI:
|
2023-07-10 12:06:20 +00:00
|
|
|
if (exec_flags & ~EXEF_TIMER) {
|
|
|
|
ppc_state.spr[SPR::SRR0] = ppc_next_instruction_address;
|
|
|
|
} else {
|
|
|
|
ppc_state.spr[SPR::SRR0] = ppc_state.pc & 0xFFFFFFFCUL;
|
|
|
|
}
|
2020-05-12 18:55:45 +00:00
|
|
|
ppc_next_instruction_address = 0x0400;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Except_Type::EXC_EXT_INT:
|
2022-03-02 15:55:20 +00:00
|
|
|
if (exec_flags & ~EXEF_TIMER) {
|
2022-01-20 00:32:45 +00:00
|
|
|
ppc_state.spr[SPR::SRR0] = ppc_next_instruction_address;
|
|
|
|
} else {
|
|
|
|
ppc_state.spr[SPR::SRR0] = (ppc_state.pc & 0xFFFFFFFCUL) + 4;
|
|
|
|
}
|
2020-05-12 18:55:45 +00:00
|
|
|
ppc_next_instruction_address = 0x0500;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Except_Type::EXC_ALIGNMENT:
|
|
|
|
ppc_state.spr[SPR::SRR0] = ppc_state.pc & 0xFFFFFFFC;
|
|
|
|
ppc_next_instruction_address = 0x0600;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Except_Type::EXC_PROGRAM:
|
|
|
|
ppc_state.spr[SPR::SRR0] = ppc_state.pc & 0xFFFFFFFC;
|
|
|
|
ppc_next_instruction_address = 0x0700;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Except_Type::EXC_NO_FPU:
|
|
|
|
ppc_state.spr[SPR::SRR0] = ppc_state.pc & 0xFFFFFFFC;
|
|
|
|
ppc_next_instruction_address = 0x0800;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Except_Type::EXC_DECR:
|
2023-08-09 10:53:48 +00:00
|
|
|
if (exec_flags & ~EXEF_TIMER) {
|
|
|
|
ppc_state.spr[SPR::SRR0] = ppc_next_instruction_address;
|
|
|
|
} else {
|
|
|
|
ppc_state.spr[SPR::SRR0] = (ppc_state.pc & 0xFFFFFFFCUL) + 4;
|
|
|
|
}
|
2020-05-12 18:55:45 +00:00
|
|
|
ppc_next_instruction_address = 0x0900;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Except_Type::EXC_SYSCALL:
|
|
|
|
ppc_state.spr[SPR::SRR0] = (ppc_state.pc & 0xFFFFFFFC) + 4;
|
|
|
|
ppc_next_instruction_address = 0x0C00;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Except_Type::EXC_TRACE:
|
|
|
|
ppc_state.spr[SPR::SRR0] = (ppc_state.pc & 0xFFFFFFFC) + 4;
|
|
|
|
ppc_next_instruction_address = 0x0D00;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
2023-08-08 05:47:26 +00:00
|
|
|
ABORT_F("Unknown exception occurred: %X\n", (unsigned)exception_type);
|
2020-05-12 18:55:45 +00:00
|
|
|
break;
|
2020-01-11 20:48:56 +00:00
|
|
|
}
|
|
|
|
|
2020-03-05 04:29:04 +00:00
|
|
|
ppc_state.spr[SPR::SRR1] = (ppc_state.msr & 0x0000FF73) | srr1_bits;
|
|
|
|
ppc_state.msr &= 0xFFFB1041;
|
2020-01-11 20:48:56 +00:00
|
|
|
/* copy MSR[ILE] to MSR[LE] */
|
2020-05-12 18:55:45 +00:00
|
|
|
ppc_state.msr = (ppc_state.msr & 0xFFFFFFFE) | ((ppc_state.msr >> 16) & 1);
|
2020-01-11 20:48:56 +00:00
|
|
|
|
2023-11-23 23:56:58 +00:00
|
|
|
if (ppc_state.msr & MSR::IP) {
|
2020-01-11 20:48:56 +00:00
|
|
|
ppc_next_instruction_address |= 0xFFF00000;
|
|
|
|
}
|
|
|
|
|
2022-03-02 15:55:20 +00:00
|
|
|
exec_flags = EXEF_EXCEPTION;
|
2022-01-20 00:32:45 +00:00
|
|
|
|
2021-10-13 18:58:09 +00:00
|
|
|
// perform context synchronization for recoverable exceptions
|
|
|
|
if (exception_type != Except_Type::EXC_MACHINE_CHECK &&
|
|
|
|
exception_type != Except_Type::EXC_SYSTEM_RESET) {
|
|
|
|
do_ctx_sync();
|
|
|
|
}
|
|
|
|
|
2021-05-15 22:53:15 +00:00
|
|
|
mmu_change_mode();
|
|
|
|
|
2023-08-07 18:11:02 +00:00
|
|
|
if (exception_type != Except_Type::EXC_EXT_INT && exception_type != Except_Type::EXC_DECR) {
|
2022-01-10 16:27:27 +00:00
|
|
|
longjmp(exc_env, 2); /* return to the main execution loop. */
|
|
|
|
}
|
2020-02-04 13:20:10 +00:00
|
|
|
}
|
2020-02-23 15:41:44 +00:00
|
|
|
|
|
|
|
|
2020-05-12 18:55:45 +00:00
|
|
|
[[noreturn]] void dbg_exception_handler(Except_Type exception_type, uint32_t srr1_bits) {
|
2020-02-23 15:41:44 +00:00
|
|
|
std::string exc_descriptor;
|
|
|
|
|
2020-05-12 18:55:45 +00:00
|
|
|
switch (exception_type) {
|
|
|
|
case Except_Type::EXC_SYSTEM_RESET:
|
2023-08-08 05:47:26 +00:00
|
|
|
exc_descriptor = "System reset exception occurred";
|
2020-05-12 18:55:45 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case Except_Type::EXC_MACHINE_CHECK:
|
2023-08-08 05:47:26 +00:00
|
|
|
exc_descriptor = "Machine check exception occurred";
|
2020-05-12 18:55:45 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case Except_Type::EXC_DSI:
|
|
|
|
case Except_Type::EXC_ISI:
|
|
|
|
if (ppc_state.spr[SPR::DSISR] & 0x40000000)
|
|
|
|
exc_descriptor = "DSI/ISI exception: unmapped memory access";
|
|
|
|
else if (ppc_state.spr[SPR::DSISR] & 0x08000000)
|
|
|
|
exc_descriptor = "DSI/ISI exception: access protection violation";
|
|
|
|
else {
|
|
|
|
if (exception_type == Except_Type::EXC_DSI)
|
|
|
|
exc_descriptor = "DSI exception";
|
|
|
|
else
|
|
|
|
exc_descriptor = "ISI exception";
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Except_Type::EXC_EXT_INT:
|
2023-08-08 05:47:26 +00:00
|
|
|
exc_descriptor = "External interrupt exception occurred";
|
2020-05-12 18:55:45 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case Except_Type::EXC_ALIGNMENT:
|
2023-08-08 05:47:26 +00:00
|
|
|
exc_descriptor = "Alignment exception occurred";
|
2020-05-12 18:55:45 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case Except_Type::EXC_PROGRAM:
|
2023-08-08 05:47:26 +00:00
|
|
|
exc_descriptor = "Program exception occurred";
|
2020-05-12 18:55:45 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case Except_Type::EXC_NO_FPU:
|
2023-08-08 05:47:26 +00:00
|
|
|
exc_descriptor = "Floating-Point unavailable exception occurred";
|
2020-05-12 18:55:45 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case Except_Type::EXC_DECR:
|
2023-08-08 05:47:26 +00:00
|
|
|
exc_descriptor = "Decrementer exception occurred";
|
2020-05-12 18:55:45 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case Except_Type::EXC_SYSCALL:
|
2023-08-08 05:47:26 +00:00
|
|
|
exc_descriptor = "Syscall exception occurred";
|
2020-05-12 18:55:45 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case Except_Type::EXC_TRACE:
|
2023-08-08 05:47:26 +00:00
|
|
|
exc_descriptor = "Trace exception occurred";
|
2020-05-12 18:55:45 +00:00
|
|
|
break;
|
2020-02-23 15:41:44 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
throw std::invalid_argument(exc_descriptor);
|
|
|
|
}
|