2012-07-20 09:50:42 +02:00
|
|
|
/*
|
|
|
|
* OpenRISC exception helper routines
|
|
|
|
*
|
|
|
|
* Copyright (c) 2011-2012 Jia Liu <proljc@gmail.com>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
2019-02-13 14:46:50 +01:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2012-07-20 09:50:42 +02:00
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
2016-01-26 19:17:22 +01:00
|
|
|
#include "qemu/osdep.h"
|
2012-07-20 09:50:42 +02:00
|
|
|
#include "cpu.h"
|
2016-04-06 04:43:40 +02:00
|
|
|
#include "exec/exec-all.h"
|
2014-04-08 07:31:41 +02:00
|
|
|
#include "exec/helper-proto.h"
|
2012-07-20 09:50:42 +02:00
|
|
|
#include "exception.h"
|
|
|
|
|
|
|
|
void HELPER(exception)(CPUOpenRISCState *env, uint32_t excp)
|
|
|
|
{
|
2019-03-23 02:48:56 +01:00
|
|
|
OpenRISCCPU *cpu = env_archcpu(env);
|
2012-07-20 09:50:42 +02:00
|
|
|
|
|
|
|
raise_exception(cpu, excp);
|
|
|
|
}
|
2015-04-07 22:31:50 +02:00
|
|
|
|
2022-04-20 15:26:02 +02:00
|
|
|
static G_NORETURN
|
|
|
|
void do_range(CPUOpenRISCState *env, uintptr_t pc)
|
2015-04-07 22:31:50 +02:00
|
|
|
{
|
2019-03-23 02:48:56 +01:00
|
|
|
CPUState *cs = env_cpu(env);
|
2015-02-18 22:26:26 +01:00
|
|
|
|
|
|
|
cs->exception_index = EXCP_RANGE;
|
|
|
|
cpu_loop_exit_restore(cs, pc);
|
|
|
|
}
|
|
|
|
|
|
|
|
void HELPER(ove_cy)(CPUOpenRISCState *env)
|
|
|
|
{
|
|
|
|
if (env->sr_cy) {
|
|
|
|
do_range(env, GETPC());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void HELPER(ove_ov)(CPUOpenRISCState *env)
|
|
|
|
{
|
|
|
|
if (env->sr_ov < 0) {
|
|
|
|
do_range(env, GETPC());
|
|
|
|
}
|
|
|
|
}
|
2015-04-07 22:31:50 +02:00
|
|
|
|
2015-02-18 22:26:26 +01:00
|
|
|
void HELPER(ove_cyov)(CPUOpenRISCState *env)
|
|
|
|
{
|
|
|
|
if (env->sr_cy || env->sr_ov < 0) {
|
|
|
|
do_range(env, GETPC());
|
2015-04-07 22:31:50 +02:00
|
|
|
}
|
|
|
|
}
|