2012-04-29 20:39:13 +04:00
|
|
|
/*
|
|
|
|
* x86 memory access helpers
|
|
|
|
*
|
|
|
|
* Copyright (c) 2003 Fabrice Bellard
|
|
|
|
*
|
|
|
|
* 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
|
2020-10-23 15:28:01 +03:00
|
|
|
* version 2.1 of the License, or (at your option) any later version.
|
2012-04-29 20:39:13 +04: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 21:17:03 +03:00
|
|
|
#include "qemu/osdep.h"
|
2012-04-29 20:39:13 +04:00
|
|
|
#include "cpu.h"
|
2014-04-08 09:31:41 +04:00
|
|
|
#include "exec/helper-proto.h"
|
2016-03-15 15:18:37 +03:00
|
|
|
#include "exec/exec-all.h"
|
2014-03-28 22:42:10 +04:00
|
|
|
#include "exec/cpu_ldst.h"
|
2016-06-27 22:01:51 +03:00
|
|
|
#include "qemu/int128.h"
|
2018-08-16 02:47:59 +03:00
|
|
|
#include "qemu/atomic128.h"
|
2020-01-01 14:23:00 +03:00
|
|
|
#include "tcg/tcg.h"
|
2020-12-12 18:55:14 +03:00
|
|
|
#include "helper-tcg.h"
|
2012-04-29 20:39:13 +04:00
|
|
|
|
2012-04-30 00:35:48 +04:00
|
|
|
void helper_boundw(CPUX86State *env, target_ulong a0, int v)
|
2012-04-29 20:39:13 +04:00
|
|
|
{
|
|
|
|
int low, high;
|
|
|
|
|
2015-07-10 12:57:30 +03:00
|
|
|
low = cpu_ldsw_data_ra(env, a0, GETPC());
|
|
|
|
high = cpu_ldsw_data_ra(env, a0 + 2, GETPC());
|
2012-04-29 20:39:13 +04:00
|
|
|
v = (int16_t)v;
|
|
|
|
if (v < low || v > high) {
|
2015-07-06 21:37:40 +03:00
|
|
|
if (env->hflags & HF_MPX_EN_MASK) {
|
|
|
|
env->bndcs_regs.sts = 0;
|
|
|
|
}
|
2015-07-10 12:57:30 +03:00
|
|
|
raise_exception_ra(env, EXCP05_BOUND, GETPC());
|
2012-04-29 20:39:13 +04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-04-30 00:35:48 +04:00
|
|
|
void helper_boundl(CPUX86State *env, target_ulong a0, int v)
|
2012-04-29 20:39:13 +04:00
|
|
|
{
|
|
|
|
int low, high;
|
|
|
|
|
2015-07-10 12:57:30 +03:00
|
|
|
low = cpu_ldl_data_ra(env, a0, GETPC());
|
|
|
|
high = cpu_ldl_data_ra(env, a0 + 4, GETPC());
|
2012-04-29 20:39:13 +04:00
|
|
|
if (v < low || v > high) {
|
2015-07-06 21:37:40 +03:00
|
|
|
if (env->hflags & HF_MPX_EN_MASK) {
|
|
|
|
env->bndcs_regs.sts = 0;
|
|
|
|
}
|
2015-07-10 12:57:30 +03:00
|
|
|
raise_exception_ra(env, EXCP05_BOUND, GETPC());
|
2012-04-29 20:39:13 +04:00
|
|
|
}
|
|
|
|
}
|