2020-02-28 16:04:28 +00:00
|
|
|
/*
|
|
|
|
DingusPPC - The Experimental PowerPC Macintosh emulator
|
|
|
|
Copyright (C) 2018-20 divingkatae and maximum
|
|
|
|
(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. */
|
|
|
|
|
|
|
|
#include <setjmp.h>
|
2020-02-23 15:41:44 +00:00
|
|
|
#include <string>
|
|
|
|
#include <stdexcept>
|
2020-01-11 20:48:56 +00:00
|
|
|
#include "ppcemu.h"
|
|
|
|
|
|
|
|
jmp_buf exc_env; /* Global exception environment. */
|
|
|
|
|
|
|
|
[[noreturn]] void ppc_exception_handler(Except_Type exception_type,
|
|
|
|
uint32_t srr1_bits)
|
|
|
|
{
|
|
|
|
grab_exception = true;
|
2020-01-15 03:50:01 +00:00
|
|
|
#ifdef PROFILER
|
|
|
|
exceptions_performed++;
|
|
|
|
#endif
|
2020-01-11 20:48:56 +00:00
|
|
|
bb_kind = BB_end_kind::BB_EXCEPTION;
|
|
|
|
|
2020-02-04 13:20:10 +00:00
|
|
|
switch(exception_type) {
|
2020-01-11 20:48:56 +00:00
|
|
|
case Except_Type::EXC_SYSTEM_RESET:
|
2020-03-01 16:24:16 +00:00
|
|
|
ppc_state.ppc_spr[SPR::SRR0] = ppc_state.ppc_pc & 0xFFFFFFFC;
|
2020-01-11 20:48:56 +00:00
|
|
|
ppc_next_instruction_address = 0x0100;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Except_Type::EXC_MACHINE_CHECK:
|
|
|
|
if (!(ppc_state.ppc_msr & 0x1000)) {
|
|
|
|
/* TODO: handle internal checkstop */
|
|
|
|
}
|
2020-03-01 16:24:16 +00:00
|
|
|
ppc_state.ppc_spr[SPR::SRR0] = ppc_state.ppc_pc & 0xFFFFFFFC;
|
2020-01-11 20:48:56 +00:00
|
|
|
ppc_next_instruction_address = 0x0200;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Except_Type::EXC_DSI:
|
2020-03-01 16:24:16 +00:00
|
|
|
ppc_state.ppc_spr[SPR::SRR0] = ppc_state.ppc_pc & 0xFFFFFFFC;
|
2020-01-11 20:48:56 +00:00
|
|
|
ppc_next_instruction_address = 0x0300;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Except_Type::EXC_ISI:
|
2020-01-28 03:39:23 +00:00
|
|
|
ppc_state.ppc_spr[SPR::SRR0] = ppc_next_instruction_address;
|
2020-01-11 20:48:56 +00:00
|
|
|
ppc_next_instruction_address = 0x0400;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Except_Type::EXC_EXT_INT:
|
2020-01-28 03:39:23 +00:00
|
|
|
ppc_state.ppc_spr[SPR::SRR0] = ppc_next_instruction_address;
|
2020-01-11 20:48:56 +00:00
|
|
|
ppc_next_instruction_address = 0x0500;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Except_Type::EXC_ALIGNMENT:
|
2020-03-01 16:24:16 +00:00
|
|
|
ppc_state.ppc_spr[SPR::SRR0] = ppc_state.ppc_pc & 0xFFFFFFFC;
|
2020-01-11 20:48:56 +00:00
|
|
|
ppc_next_instruction_address = 0x0600;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Except_Type::EXC_PROGRAM:
|
2020-03-01 16:24:16 +00:00
|
|
|
ppc_state.ppc_spr[SPR::SRR0] = ppc_state.ppc_pc & 0xFFFFFFFC;
|
2020-01-11 20:48:56 +00:00
|
|
|
ppc_next_instruction_address = 0x0700;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Except_Type::EXC_NO_FPU:
|
2020-03-01 16:24:16 +00:00
|
|
|
ppc_state.ppc_spr[SPR::SRR0] = ppc_state.ppc_pc & 0xFFFFFFFC;
|
2020-01-11 20:48:56 +00:00
|
|
|
ppc_next_instruction_address = 0x0800;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Except_Type::EXC_DECR:
|
2020-03-01 16:24:16 +00:00
|
|
|
ppc_state.ppc_spr[SPR::SRR0] = (ppc_state.ppc_pc & 0xFFFFFFFC) + 4;
|
2020-01-11 20:48:56 +00:00
|
|
|
ppc_next_instruction_address = 0x0900;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Except_Type::EXC_SYSCALL:
|
2020-03-01 16:24:16 +00:00
|
|
|
ppc_state.ppc_spr[SPR::SRR0] = (ppc_state.ppc_pc & 0xFFFFFFFC) + 4;
|
2020-01-11 20:48:56 +00:00
|
|
|
ppc_next_instruction_address = 0x0C00;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Except_Type::EXC_TRACE:
|
2020-03-01 16:24:16 +00:00
|
|
|
ppc_state.ppc_spr[SPR::SRR0] = (ppc_state.ppc_pc & 0xFFFFFFFC) + 4;
|
2020-01-11 20:48:56 +00:00
|
|
|
ppc_next_instruction_address = 0x0D00;
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
//printf("Unknown exception occured: %X\n", exception_type);
|
|
|
|
//exit(-1);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2020-01-28 03:39:23 +00:00
|
|
|
ppc_state.ppc_spr[SPR::SRR1] = (ppc_state.ppc_msr & 0x0000FF73) | srr1_bits;
|
2020-01-11 20:48:56 +00:00
|
|
|
ppc_state.ppc_msr &= 0xFFFB1041;
|
|
|
|
/* copy MSR[ILE] to MSR[LE] */
|
|
|
|
ppc_state.ppc_msr = (ppc_state.ppc_msr & 0xFFFFFFFE) |
|
|
|
|
((ppc_state.ppc_msr >> 16) & 1);
|
|
|
|
|
|
|
|
if (ppc_state.ppc_msr & 0x40) {
|
|
|
|
ppc_next_instruction_address |= 0xFFF00000;
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
|
|
|
|
|
|
|
[[noreturn]] void dbg_exception_handler(Except_Type exception_type,
|
|
|
|
uint32_t srr1_bits)
|
|
|
|
{
|
|
|
|
std::string exc_descriptor;
|
|
|
|
|
|
|
|
switch(exception_type) {
|
|
|
|
case Except_Type::EXC_SYSTEM_RESET:
|
|
|
|
exc_descriptor = "System reset exception occured";
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Except_Type::EXC_MACHINE_CHECK:
|
|
|
|
exc_descriptor = "Machine check exception occured";
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Except_Type::EXC_DSI:
|
|
|
|
case Except_Type::EXC_ISI:
|
|
|
|
if (ppc_state.ppc_spr[SPR::DSISR] & 0x40000000)
|
|
|
|
exc_descriptor = "DSI/ISI exception: unmapped memory access";
|
|
|
|
else if (ppc_state.ppc_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:
|
|
|
|
exc_descriptor = "External interrupt exception occured";
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Except_Type::EXC_ALIGNMENT:
|
|
|
|
exc_descriptor = "Alignment exception occured";
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Except_Type::EXC_PROGRAM:
|
|
|
|
exc_descriptor = "Program exception occured";
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Except_Type::EXC_NO_FPU:
|
|
|
|
exc_descriptor = "Floating-Point unavailable exception occured";
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Except_Type::EXC_DECR:
|
|
|
|
exc_descriptor = "Decrementer exception occured";
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Except_Type::EXC_SYSCALL:
|
|
|
|
exc_descriptor = "Syscall exception occured";
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Except_Type::EXC_TRACE:
|
|
|
|
exc_descriptor = "Trace exception occured";
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
throw std::invalid_argument(exc_descriptor);
|
|
|
|
}
|