genode/repos/base-hw/src/core/spec/x86_64/muen/kernel/thread_exception.cc

49 lines
1.1 KiB
C++

/*
* \brief Kernel backend for execution contexts in userland
* \author Adrian-Ken Rueegsegger
* \author Reto Buerki
* \date 2015-04-28
*/
/*
* Copyright (C) 2015 Genode Labs GmbH
*
* This file is part of the Genode OS framework, which is distributed
* under the terms of the GNU General Public License version 2.
*/
/* core includes */
#include <kernel/thread.h>
#include <pic.h>
using namespace Kernel;
void Thread::exception(unsigned const cpu)
{
switch (trapno) {
case PAGE_FAULT:
_mmu_exception();
return;
case NO_MATH_COPROC:
if (_cpu->fpu().fault(*this)) { return; }
Genode::warning(*this, ": FPU error");
_die();
return;
case UNDEFINED_INSTRUCTION:
Genode::warning(*this, ": undefined instruction at ip=", (void*)ip);
_die();
return;
case SUPERVISOR_CALL:
_call();
return;
}
if (trapno >= INTERRUPTS_START && trapno <= INTERRUPTS_END) {
pic()->irq_occurred(trapno);
_interrupt(cpu);
return;
}
Genode::warning(*this, ": triggered unknown exception ", trapno,
" with error code ", errcode, " at ip=%p", (void*)ip);
_die();
}