2012-09-02 07:33:34 +00:00
|
|
|
/*
|
|
|
|
* S/390 memory access helper routines
|
|
|
|
*
|
|
|
|
* Copyright (c) 2009 Ulrich Hecht
|
|
|
|
* Copyright (c) 2009 Alexander Graf
|
|
|
|
*
|
|
|
|
* 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
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* 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 18:17:00 +00:00
|
|
|
#include "qemu/osdep.h"
|
2012-09-02 07:33:34 +00:00
|
|
|
#include "cpu.h"
|
2017-05-18 17:26:40 +00:00
|
|
|
#include "exec/address-spaces.h"
|
2014-04-08 05:31:41 +00:00
|
|
|
#include "exec/helper-proto.h"
|
2016-03-15 12:18:37 +00:00
|
|
|
#include "exec/exec-all.h"
|
2014-03-28 18:42:10 +00:00
|
|
|
#include "exec/cpu_ldst.h"
|
2017-03-01 00:39:01 +00:00
|
|
|
#include "qemu/int128.h"
|
2014-06-27 06:40:04 +00:00
|
|
|
|
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
2015-06-26 18:01:00 +00:00
|
|
|
#include "hw/s390x/storage-keys.h"
|
2014-06-27 06:40:04 +00:00
|
|
|
#endif
|
2012-09-02 07:33:34 +00:00
|
|
|
|
|
|
|
/*****************************************************************************/
|
|
|
|
/* Softmmu support */
|
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
|
|
|
|
|
|
|
/* try to fill the TLB and return an exception if error. If retaddr is
|
|
|
|
NULL, it means that the function was called in C code (i.e. not
|
|
|
|
from generated code or from helper.c) */
|
|
|
|
/* XXX: fix it to restore all registers */
|
2016-06-14 12:26:17 +00:00
|
|
|
void tlb_fill(CPUState *cs, target_ulong addr, MMUAccessType access_type,
|
|
|
|
int mmu_idx, uintptr_t retaddr)
|
2012-09-02 07:33:34 +00:00
|
|
|
{
|
2017-05-18 19:10:53 +00:00
|
|
|
int ret = s390_cpu_handle_mmu_fault(cs, addr, access_type, mmu_idx);
|
2012-09-02 07:33:34 +00:00
|
|
|
if (unlikely(ret != 0)) {
|
2017-05-18 19:10:53 +00:00
|
|
|
cpu_loop_exit_restore(cs, retaddr);
|
2012-09-02 07:33:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* #define DEBUG_HELPER */
|
|
|
|
#ifdef DEBUG_HELPER
|
|
|
|
#define HELPER_LOG(x...) qemu_log(x)
|
|
|
|
#else
|
|
|
|
#define HELPER_LOG(x...)
|
|
|
|
#endif
|
|
|
|
|
2015-06-12 22:45:50 +00:00
|
|
|
/* Reduce the length so that addr + len doesn't cross a page boundary. */
|
2017-05-19 16:53:31 +00:00
|
|
|
static inline uint32_t adj_len_to_page(uint32_t len, uint64_t addr)
|
2015-06-12 22:45:50 +00:00
|
|
|
{
|
|
|
|
#ifndef CONFIG_USER_ONLY
|
|
|
|
if ((addr & ~TARGET_PAGE_MASK) + len - 1 >= TARGET_PAGE_SIZE) {
|
2017-05-31 22:01:18 +00:00
|
|
|
return -(addr | TARGET_PAGE_MASK);
|
2015-06-12 22:45:50 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
return len;
|
|
|
|
}
|
|
|
|
|
2017-05-31 22:01:20 +00:00
|
|
|
/* Trigger a SPECIFICATION exception if an address or a length is not
|
|
|
|
naturally aligned. */
|
|
|
|
static inline void check_alignment(CPUS390XState *env, uint64_t v,
|
|
|
|
int wordsize, uintptr_t ra)
|
|
|
|
{
|
|
|
|
if (v % wordsize) {
|
|
|
|
CPUState *cs = CPU(s390_env_get_cpu(env));
|
|
|
|
cpu_restore_state(cs, ra);
|
|
|
|
program_interrupt(env, PGM_SPECIFICATION, 6);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Load a value from memory according to its size. */
|
|
|
|
static inline uint64_t cpu_ldusize_data_ra(CPUS390XState *env, uint64_t addr,
|
|
|
|
int wordsize, uintptr_t ra)
|
|
|
|
{
|
|
|
|
switch (wordsize) {
|
|
|
|
case 1:
|
|
|
|
return cpu_ldub_data_ra(env, addr, ra);
|
|
|
|
case 2:
|
|
|
|
return cpu_lduw_data_ra(env, addr, ra);
|
|
|
|
default:
|
|
|
|
abort();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-12 22:45:51 +00:00
|
|
|
static void fast_memset(CPUS390XState *env, uint64_t dest, uint8_t byte,
|
2017-05-19 16:53:31 +00:00
|
|
|
uint32_t l, uintptr_t ra)
|
2012-09-02 07:33:34 +00:00
|
|
|
{
|
2015-08-17 07:34:10 +00:00
|
|
|
int mmu_idx = cpu_mmu_index(env, false);
|
2015-06-12 22:45:51 +00:00
|
|
|
|
|
|
|
while (l > 0) {
|
|
|
|
void *p = tlb_vaddr_to_host(env, dest, MMU_DATA_STORE, mmu_idx);
|
|
|
|
if (p) {
|
|
|
|
/* Access to the whole page in write mode granted. */
|
2017-05-19 16:53:31 +00:00
|
|
|
uint32_t l_adj = adj_len_to_page(l, dest);
|
2015-06-12 22:45:51 +00:00
|
|
|
memset(p, byte, l_adj);
|
|
|
|
dest += l_adj;
|
|
|
|
l -= l_adj;
|
|
|
|
} else {
|
|
|
|
/* We failed to get access to the whole page. The next write
|
|
|
|
access will likely fill the QEMU TLB for the next iteration. */
|
2017-05-19 16:53:31 +00:00
|
|
|
cpu_stb_data_ra(env, dest, byte, ra);
|
2015-06-12 22:45:51 +00:00
|
|
|
dest++;
|
|
|
|
l--;
|
|
|
|
}
|
2012-09-02 07:33:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-12 22:45:52 +00:00
|
|
|
static void fast_memmove(CPUS390XState *env, uint64_t dest, uint64_t src,
|
2017-05-19 16:59:53 +00:00
|
|
|
uint32_t l, uintptr_t ra)
|
2012-09-02 07:33:34 +00:00
|
|
|
{
|
2015-08-17 07:34:10 +00:00
|
|
|
int mmu_idx = cpu_mmu_index(env, false);
|
2012-09-02 07:33:34 +00:00
|
|
|
|
2015-06-12 22:45:52 +00:00
|
|
|
while (l > 0) {
|
|
|
|
void *src_p = tlb_vaddr_to_host(env, src, MMU_DATA_LOAD, mmu_idx);
|
|
|
|
void *dest_p = tlb_vaddr_to_host(env, dest, MMU_DATA_STORE, mmu_idx);
|
|
|
|
if (src_p && dest_p) {
|
|
|
|
/* Access to both whole pages granted. */
|
2017-05-19 16:53:31 +00:00
|
|
|
uint32_t l_adj = adj_len_to_page(l, src);
|
2015-06-12 22:45:52 +00:00
|
|
|
l_adj = adj_len_to_page(l_adj, dest);
|
|
|
|
memmove(dest_p, src_p, l_adj);
|
|
|
|
src += l_adj;
|
|
|
|
dest += l_adj;
|
|
|
|
l -= l_adj;
|
|
|
|
} else {
|
|
|
|
/* We failed to get access to one or both whole pages. The next
|
|
|
|
read or write access will likely fill the QEMU TLB for the
|
|
|
|
next iteration. */
|
2017-05-19 16:59:53 +00:00
|
|
|
cpu_stb_data_ra(env, dest, cpu_ldub_data_ra(env, src, ra), ra);
|
2015-06-12 22:45:52 +00:00
|
|
|
src++;
|
|
|
|
dest++;
|
|
|
|
l--;
|
|
|
|
}
|
2012-09-02 07:33:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* and on array */
|
2017-05-19 16:41:29 +00:00
|
|
|
static uint32_t do_helper_nc(CPUS390XState *env, uint32_t l, uint64_t dest,
|
|
|
|
uint64_t src, uintptr_t ra)
|
2012-09-02 07:33:34 +00:00
|
|
|
{
|
2017-05-19 16:41:29 +00:00
|
|
|
uint32_t i;
|
|
|
|
uint8_t c = 0;
|
2012-09-02 07:33:34 +00:00
|
|
|
|
|
|
|
HELPER_LOG("%s l %d dest %" PRIx64 " src %" PRIx64 "\n",
|
|
|
|
__func__, l, dest, src);
|
2017-05-19 16:41:29 +00:00
|
|
|
|
2012-09-02 07:33:34 +00:00
|
|
|
for (i = 0; i <= l; i++) {
|
2017-05-19 16:41:29 +00:00
|
|
|
uint8_t x = cpu_ldub_data_ra(env, src + i, ra);
|
|
|
|
x &= cpu_ldub_data_ra(env, dest + i, ra);
|
|
|
|
c |= x;
|
|
|
|
cpu_stb_data_ra(env, dest + i, x, ra);
|
2012-09-02 07:33:34 +00:00
|
|
|
}
|
2017-05-19 16:41:29 +00:00
|
|
|
return c != 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t HELPER(nc)(CPUS390XState *env, uint32_t l, uint64_t dest,
|
|
|
|
uint64_t src)
|
|
|
|
{
|
|
|
|
return do_helper_nc(env, l, dest, src, GETPC());
|
2012-09-02 07:33:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* xor on array */
|
2017-05-19 16:53:31 +00:00
|
|
|
static uint32_t do_helper_xc(CPUS390XState *env, uint32_t l, uint64_t dest,
|
|
|
|
uint64_t src, uintptr_t ra)
|
2012-09-02 07:33:34 +00:00
|
|
|
{
|
2017-05-19 16:53:31 +00:00
|
|
|
uint32_t i;
|
|
|
|
uint8_t c = 0;
|
2012-09-02 07:33:34 +00:00
|
|
|
|
|
|
|
HELPER_LOG("%s l %d dest %" PRIx64 " src %" PRIx64 "\n",
|
|
|
|
__func__, l, dest, src);
|
|
|
|
|
|
|
|
/* xor with itself is the same as memset(0) */
|
|
|
|
if (src == dest) {
|
2017-05-19 16:53:31 +00:00
|
|
|
fast_memset(env, dest, 0, l + 1, ra);
|
2012-09-02 07:33:34 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i <= l; i++) {
|
2017-05-19 16:53:31 +00:00
|
|
|
uint8_t x = cpu_ldub_data_ra(env, src + i, ra);
|
|
|
|
x ^= cpu_ldub_data_ra(env, dest + i, ra);
|
|
|
|
c |= x;
|
|
|
|
cpu_stb_data_ra(env, dest + i, x, ra);
|
2012-09-02 07:33:34 +00:00
|
|
|
}
|
2017-05-19 16:53:31 +00:00
|
|
|
return c != 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t HELPER(xc)(CPUS390XState *env, uint32_t l, uint64_t dest,
|
|
|
|
uint64_t src)
|
|
|
|
{
|
|
|
|
return do_helper_xc(env, l, dest, src, GETPC());
|
2012-09-02 07:33:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* or on array */
|
2017-05-19 16:42:18 +00:00
|
|
|
static uint32_t do_helper_oc(CPUS390XState *env, uint32_t l, uint64_t dest,
|
|
|
|
uint64_t src, uintptr_t ra)
|
2012-09-02 07:33:34 +00:00
|
|
|
{
|
2017-05-19 16:42:18 +00:00
|
|
|
uint32_t i;
|
|
|
|
uint8_t c = 0;
|
2012-09-02 07:33:34 +00:00
|
|
|
|
|
|
|
HELPER_LOG("%s l %d dest %" PRIx64 " src %" PRIx64 "\n",
|
|
|
|
__func__, l, dest, src);
|
2017-05-19 16:42:18 +00:00
|
|
|
|
2012-09-02 07:33:34 +00:00
|
|
|
for (i = 0; i <= l; i++) {
|
2017-05-19 16:42:18 +00:00
|
|
|
uint8_t x = cpu_ldub_data_ra(env, src + i, ra);
|
|
|
|
x |= cpu_ldub_data_ra(env, dest + i, ra);
|
|
|
|
c |= x;
|
|
|
|
cpu_stb_data_ra(env, dest + i, x, ra);
|
2012-09-02 07:33:34 +00:00
|
|
|
}
|
2017-05-19 16:42:18 +00:00
|
|
|
return c != 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t HELPER(oc)(CPUS390XState *env, uint32_t l, uint64_t dest,
|
|
|
|
uint64_t src)
|
|
|
|
{
|
|
|
|
return do_helper_oc(env, l, dest, src, GETPC());
|
2012-09-02 07:33:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* memmove */
|
2017-05-24 21:34:10 +00:00
|
|
|
static uint32_t do_helper_mvc(CPUS390XState *env, uint32_t l, uint64_t dest,
|
|
|
|
uint64_t src, uintptr_t ra)
|
2012-09-02 07:33:34 +00:00
|
|
|
{
|
2017-05-19 16:59:53 +00:00
|
|
|
uint32_t i;
|
2012-09-02 07:33:34 +00:00
|
|
|
|
|
|
|
HELPER_LOG("%s l %d dest %" PRIx64 " src %" PRIx64 "\n",
|
|
|
|
__func__, l, dest, src);
|
|
|
|
|
2017-05-24 21:34:10 +00:00
|
|
|
/* mvc and memmove do not behave the same when areas overlap! */
|
2015-06-12 22:45:51 +00:00
|
|
|
/* mvc with source pointing to the byte after the destination is the
|
|
|
|
same as memset with the first source byte */
|
2017-05-19 16:59:53 +00:00
|
|
|
if (dest == src + 1) {
|
|
|
|
fast_memset(env, dest, cpu_ldub_data_ra(env, src, ra), l + 1, ra);
|
2017-05-24 21:34:10 +00:00
|
|
|
} else if (dest < src || src + l < dest) {
|
2017-05-19 16:59:53 +00:00
|
|
|
fast_memmove(env, dest, src, l + 1, ra);
|
2017-05-24 21:34:10 +00:00
|
|
|
} else {
|
|
|
|
/* slow version with byte accesses which always work */
|
|
|
|
for (i = 0; i <= l; i++) {
|
|
|
|
uint8_t x = cpu_ldub_data_ra(env, src + i, ra);
|
|
|
|
cpu_stb_data_ra(env, dest + i, x, ra);
|
|
|
|
}
|
2012-09-02 07:33:34 +00:00
|
|
|
}
|
|
|
|
|
2017-05-24 21:34:10 +00:00
|
|
|
return env->cc_op;
|
2012-09-02 07:33:34 +00:00
|
|
|
}
|
|
|
|
|
2017-05-19 16:59:53 +00:00
|
|
|
void HELPER(mvc)(CPUS390XState *env, uint32_t l, uint64_t dest, uint64_t src)
|
|
|
|
{
|
|
|
|
do_helper_mvc(env, l, dest, src, GETPC());
|
|
|
|
}
|
|
|
|
|
2017-05-31 22:01:09 +00:00
|
|
|
/* move inverse */
|
|
|
|
void HELPER(mvcin)(CPUS390XState *env, uint32_t l, uint64_t dest, uint64_t src)
|
|
|
|
{
|
|
|
|
uintptr_t ra = GETPC();
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i <= l; i++) {
|
|
|
|
uint8_t v = cpu_ldub_data_ra(env, src - i, ra);
|
|
|
|
cpu_stb_data_ra(env, dest + i, v, ra);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-31 22:01:10 +00:00
|
|
|
/* move numerics */
|
|
|
|
void HELPER(mvn)(CPUS390XState *env, uint32_t l, uint64_t dest, uint64_t src)
|
|
|
|
{
|
|
|
|
uintptr_t ra = GETPC();
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i <= l; i++) {
|
|
|
|
uint8_t v = cpu_ldub_data_ra(env, dest + i, ra) & 0xf0;
|
|
|
|
v |= cpu_ldub_data_ra(env, src + i, ra) & 0x0f;
|
|
|
|
cpu_stb_data_ra(env, dest + i, v, ra);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-31 22:01:11 +00:00
|
|
|
/* move with offset */
|
|
|
|
void HELPER(mvo)(CPUS390XState *env, uint32_t l, uint64_t dest, uint64_t src)
|
|
|
|
{
|
|
|
|
uintptr_t ra = GETPC();
|
|
|
|
int len_dest = l >> 4;
|
|
|
|
int len_src = l & 0xf;
|
|
|
|
uint8_t byte_dest, byte_src;
|
|
|
|
int i;
|
|
|
|
|
|
|
|
src += len_src;
|
|
|
|
dest += len_dest;
|
|
|
|
|
|
|
|
/* Handle rightmost byte */
|
|
|
|
byte_src = cpu_ldub_data_ra(env, src, ra);
|
|
|
|
byte_dest = cpu_ldub_data_ra(env, dest, ra);
|
|
|
|
byte_dest = (byte_dest & 0x0f) | (byte_src << 4);
|
|
|
|
cpu_stb_data_ra(env, dest, byte_dest, ra);
|
|
|
|
|
|
|
|
/* Process remaining bytes from right to left */
|
|
|
|
for (i = 1; i <= len_dest; i++) {
|
|
|
|
byte_dest = byte_src >> 4;
|
|
|
|
if (len_src - i >= 0) {
|
|
|
|
byte_src = cpu_ldub_data_ra(env, src - i, ra);
|
|
|
|
} else {
|
|
|
|
byte_src = 0;
|
|
|
|
}
|
|
|
|
byte_dest |= byte_src << 4;
|
|
|
|
cpu_stb_data_ra(env, dest - i, byte_dest, ra);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-31 22:01:12 +00:00
|
|
|
/* move zones */
|
|
|
|
void HELPER(mvz)(CPUS390XState *env, uint32_t l, uint64_t dest, uint64_t src)
|
|
|
|
{
|
|
|
|
uintptr_t ra = GETPC();
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i <= l; i++) {
|
|
|
|
uint8_t b = cpu_ldub_data_ra(env, dest + i, ra) & 0x0f;
|
|
|
|
b |= cpu_ldub_data_ra(env, src + i, ra) & 0xf0;
|
|
|
|
cpu_stb_data_ra(env, dest + i, b, ra);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-02 07:33:34 +00:00
|
|
|
/* compare unsigned byte arrays */
|
2017-05-19 17:06:23 +00:00
|
|
|
static uint32_t do_helper_clc(CPUS390XState *env, uint32_t l, uint64_t s1,
|
|
|
|
uint64_t s2, uintptr_t ra)
|
2012-09-02 07:33:34 +00:00
|
|
|
{
|
2017-05-19 17:06:23 +00:00
|
|
|
uint32_t i;
|
|
|
|
uint32_t cc = 0;
|
2012-09-02 07:33:34 +00:00
|
|
|
|
|
|
|
HELPER_LOG("%s l %d s1 %" PRIx64 " s2 %" PRIx64 "\n",
|
|
|
|
__func__, l, s1, s2);
|
2017-05-19 17:06:23 +00:00
|
|
|
|
2012-09-02 07:33:34 +00:00
|
|
|
for (i = 0; i <= l; i++) {
|
2017-05-19 17:06:23 +00:00
|
|
|
uint8_t x = cpu_ldub_data_ra(env, s1 + i, ra);
|
|
|
|
uint8_t y = cpu_ldub_data_ra(env, s2 + i, ra);
|
2012-09-02 07:33:34 +00:00
|
|
|
HELPER_LOG("%02x (%c)/%02x (%c) ", x, x, y, y);
|
|
|
|
if (x < y) {
|
|
|
|
cc = 1;
|
2017-05-19 17:06:23 +00:00
|
|
|
break;
|
2012-09-02 07:33:34 +00:00
|
|
|
} else if (x > y) {
|
|
|
|
cc = 2;
|
2017-05-19 17:06:23 +00:00
|
|
|
break;
|
2012-09-02 07:33:34 +00:00
|
|
|
}
|
|
|
|
}
|
2017-05-19 17:06:23 +00:00
|
|
|
|
2012-09-02 07:33:34 +00:00
|
|
|
HELPER_LOG("\n");
|
|
|
|
return cc;
|
|
|
|
}
|
|
|
|
|
2017-05-19 17:06:23 +00:00
|
|
|
uint32_t HELPER(clc)(CPUS390XState *env, uint32_t l, uint64_t s1, uint64_t s2)
|
|
|
|
{
|
|
|
|
return do_helper_clc(env, l, s1, s2, GETPC());
|
|
|
|
}
|
|
|
|
|
2012-09-02 07:33:34 +00:00
|
|
|
/* compare logical under mask */
|
2012-09-02 07:33:40 +00:00
|
|
|
uint32_t HELPER(clm)(CPUS390XState *env, uint32_t r1, uint32_t mask,
|
|
|
|
uint64_t addr)
|
2012-09-02 07:33:34 +00:00
|
|
|
{
|
2017-05-19 17:10:58 +00:00
|
|
|
uintptr_t ra = GETPC();
|
|
|
|
uint32_t cc = 0;
|
2012-09-02 07:33:34 +00:00
|
|
|
|
|
|
|
HELPER_LOG("%s: r1 0x%x mask 0x%x addr 0x%" PRIx64 "\n", __func__, r1,
|
|
|
|
mask, addr);
|
2017-05-19 17:10:58 +00:00
|
|
|
|
2012-09-02 07:33:34 +00:00
|
|
|
while (mask) {
|
|
|
|
if (mask & 8) {
|
2017-05-19 17:10:58 +00:00
|
|
|
uint8_t d = cpu_ldub_data_ra(env, addr, ra);
|
|
|
|
uint8_t r = extract32(r1, 24, 8);
|
2012-09-02 07:33:34 +00:00
|
|
|
HELPER_LOG("mask 0x%x %02x/%02x (0x%" PRIx64 ") ", mask, r, d,
|
|
|
|
addr);
|
|
|
|
if (r < d) {
|
|
|
|
cc = 1;
|
|
|
|
break;
|
|
|
|
} else if (r > d) {
|
|
|
|
cc = 2;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
addr++;
|
|
|
|
}
|
|
|
|
mask = (mask << 1) & 0xf;
|
|
|
|
r1 <<= 8;
|
|
|
|
}
|
2017-05-19 17:10:58 +00:00
|
|
|
|
2012-09-02 07:33:34 +00:00
|
|
|
HELPER_LOG("\n");
|
|
|
|
return cc;
|
|
|
|
}
|
|
|
|
|
2017-05-31 22:01:13 +00:00
|
|
|
static inline uint64_t wrap_address(CPUS390XState *env, uint64_t a)
|
2012-09-05 17:20:53 +00:00
|
|
|
{
|
|
|
|
if (!(env->psw.mask & PSW_MASK_64)) {
|
2017-05-31 22:01:13 +00:00
|
|
|
if (!(env->psw.mask & PSW_MASK_32)) {
|
|
|
|
/* 24-Bit mode */
|
|
|
|
a &= 0x00ffffff;
|
|
|
|
} else {
|
|
|
|
/* 31-Bit mode */
|
|
|
|
a &= 0x7fffffff;
|
|
|
|
}
|
2012-09-05 17:20:53 +00:00
|
|
|
}
|
|
|
|
return a;
|
|
|
|
}
|
|
|
|
|
2017-05-31 22:01:13 +00:00
|
|
|
static inline uint64_t get_address(CPUS390XState *env, int reg)
|
2012-09-02 07:33:34 +00:00
|
|
|
{
|
2017-05-31 22:01:13 +00:00
|
|
|
return wrap_address(env, env->regs[reg]);
|
2012-09-02 07:33:34 +00:00
|
|
|
}
|
|
|
|
|
2017-05-31 22:01:14 +00:00
|
|
|
static inline void set_address(CPUS390XState *env, int reg, uint64_t address)
|
|
|
|
{
|
|
|
|
if (env->psw.mask & PSW_MASK_64) {
|
|
|
|
/* 64-Bit mode */
|
|
|
|
env->regs[reg] = address;
|
|
|
|
} else {
|
|
|
|
if (!(env->psw.mask & PSW_MASK_32)) {
|
|
|
|
/* 24-Bit mode. According to the PoO it is implementation
|
|
|
|
dependent if bits 32-39 remain unchanged or are set to
|
|
|
|
zeros. Choose the former so that the function can also be
|
|
|
|
used for TRT. */
|
|
|
|
env->regs[reg] = deposit64(env->regs[reg], 0, 24, address);
|
|
|
|
} else {
|
|
|
|
/* 31-Bit mode. According to the PoO it is implementation
|
|
|
|
dependent if bit 32 remains unchanged or is set to zero.
|
|
|
|
Choose the latter so that the function can also be used for
|
|
|
|
TRT. */
|
|
|
|
address &= 0x7fffffff;
|
|
|
|
env->regs[reg] = deposit64(env->regs[reg], 0, 32, address);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-31 22:01:15 +00:00
|
|
|
static inline uint64_t wrap_length(CPUS390XState *env, uint64_t length)
|
|
|
|
{
|
|
|
|
if (!(env->psw.mask & PSW_MASK_64)) {
|
|
|
|
/* 24-Bit and 31-Bit mode */
|
|
|
|
length &= 0x7fffffff;
|
|
|
|
}
|
|
|
|
return length;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline uint64_t get_length(CPUS390XState *env, int reg)
|
|
|
|
{
|
|
|
|
return wrap_length(env, env->regs[reg]);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void set_length(CPUS390XState *env, int reg, uint64_t length)
|
|
|
|
{
|
|
|
|
if (env->psw.mask & PSW_MASK_64) {
|
|
|
|
/* 64-Bit mode */
|
|
|
|
env->regs[reg] = length;
|
|
|
|
} else {
|
|
|
|
/* 24-Bit and 31-Bit mode */
|
|
|
|
env->regs[reg] = deposit64(env->regs[reg], 0, 32, length);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-02 07:33:34 +00:00
|
|
|
/* search string (c is byte to search, r2 is string, r1 end of string) */
|
2012-08-24 21:27:42 +00:00
|
|
|
uint64_t HELPER(srst)(CPUS390XState *env, uint64_t r0, uint64_t end,
|
|
|
|
uint64_t str)
|
2012-09-02 07:33:34 +00:00
|
|
|
{
|
2017-05-19 17:13:22 +00:00
|
|
|
uintptr_t ra = GETPC();
|
2012-08-24 21:27:42 +00:00
|
|
|
uint32_t len;
|
|
|
|
uint8_t v, c = r0;
|
2012-09-02 07:33:34 +00:00
|
|
|
|
2017-05-31 22:01:13 +00:00
|
|
|
str = wrap_address(env, str);
|
|
|
|
end = wrap_address(env, end);
|
2012-09-02 07:33:34 +00:00
|
|
|
|
2012-08-24 21:27:42 +00:00
|
|
|
/* Assume for now that R2 is unmodified. */
|
|
|
|
env->retxl = str;
|
|
|
|
|
|
|
|
/* Lest we fail to service interrupts in a timely manner, limit the
|
2013-04-09 11:48:19 +00:00
|
|
|
amount of work we're willing to do. For now, let's cap at 8k. */
|
2012-08-24 21:27:42 +00:00
|
|
|
for (len = 0; len < 0x2000; ++len) {
|
|
|
|
if (str + len == end) {
|
|
|
|
/* Character not found. R1 & R2 are unmodified. */
|
|
|
|
env->cc_op = 2;
|
|
|
|
return end;
|
|
|
|
}
|
2017-05-19 17:13:22 +00:00
|
|
|
v = cpu_ldub_data_ra(env, str + len, ra);
|
2012-08-24 21:27:42 +00:00
|
|
|
if (v == c) {
|
|
|
|
/* Character found. Set R1 to the location; R2 is unmodified. */
|
|
|
|
env->cc_op = 1;
|
|
|
|
return str + len;
|
2012-09-02 07:33:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-08-24 21:27:42 +00:00
|
|
|
/* CPU-determined bytes processed. Advance R2 to next byte to process. */
|
|
|
|
env->retxl = str + len;
|
|
|
|
env->cc_op = 3;
|
|
|
|
return end;
|
2012-09-02 07:33:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* unsigned string compare (c is string terminator) */
|
2012-09-05 17:20:53 +00:00
|
|
|
uint64_t HELPER(clst)(CPUS390XState *env, uint64_t c, uint64_t s1, uint64_t s2)
|
2012-09-02 07:33:34 +00:00
|
|
|
{
|
2017-05-19 17:16:24 +00:00
|
|
|
uintptr_t ra = GETPC();
|
2012-09-05 17:20:53 +00:00
|
|
|
uint32_t len;
|
2012-09-02 07:33:34 +00:00
|
|
|
|
|
|
|
c = c & 0xff;
|
2017-05-31 22:01:13 +00:00
|
|
|
s1 = wrap_address(env, s1);
|
|
|
|
s2 = wrap_address(env, s2);
|
2012-09-05 17:20:53 +00:00
|
|
|
|
|
|
|
/* Lest we fail to service interrupts in a timely manner, limit the
|
2013-04-09 11:48:19 +00:00
|
|
|
amount of work we're willing to do. For now, let's cap at 8k. */
|
2012-09-05 17:20:53 +00:00
|
|
|
for (len = 0; len < 0x2000; ++len) {
|
2017-05-19 17:16:24 +00:00
|
|
|
uint8_t v1 = cpu_ldub_data_ra(env, s1 + len, ra);
|
|
|
|
uint8_t v2 = cpu_ldub_data_ra(env, s2 + len, ra);
|
2012-09-05 17:20:53 +00:00
|
|
|
if (v1 == v2) {
|
|
|
|
if (v1 == c) {
|
|
|
|
/* Equal. CC=0, and don't advance the registers. */
|
|
|
|
env->cc_op = 0;
|
|
|
|
env->retxl = s2;
|
|
|
|
return s1;
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
/* Unequal. CC={1,2}, and advance the registers. Note that
|
|
|
|
the terminator need not be zero, but the string that contains
|
|
|
|
the terminator is by definition "low". */
|
|
|
|
env->cc_op = (v1 == c ? 1 : v2 == c ? 2 : v1 < v2 ? 1 : 2);
|
|
|
|
env->retxl = s2 + len;
|
|
|
|
return s1 + len;
|
2012-09-02 07:33:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-05 17:20:53 +00:00
|
|
|
/* CPU-determined bytes equal; advance the registers. */
|
|
|
|
env->cc_op = 3;
|
|
|
|
env->retxl = s2 + len;
|
|
|
|
return s1 + len;
|
2012-09-02 07:33:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* move page */
|
2017-05-19 18:15:25 +00:00
|
|
|
uint32_t HELPER(mvpg)(CPUS390XState *env, uint64_t r0, uint64_t r1, uint64_t r2)
|
2012-09-02 07:33:34 +00:00
|
|
|
{
|
2017-05-19 18:15:25 +00:00
|
|
|
/* ??? missing r0 handling, which includes access keys, but more
|
|
|
|
importantly optional suppression of the exception! */
|
|
|
|
fast_memmove(env, r1, r2, TARGET_PAGE_SIZE, GETPC());
|
|
|
|
return 0; /* data moved */
|
2012-09-02 07:33:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* string copy (c is string terminator) */
|
2012-09-05 17:20:53 +00:00
|
|
|
uint64_t HELPER(mvst)(CPUS390XState *env, uint64_t c, uint64_t d, uint64_t s)
|
2012-09-02 07:33:34 +00:00
|
|
|
{
|
2017-05-19 18:17:50 +00:00
|
|
|
uintptr_t ra = GETPC();
|
2012-09-05 17:20:53 +00:00
|
|
|
uint32_t len;
|
2012-09-02 07:33:34 +00:00
|
|
|
|
|
|
|
c = c & 0xff;
|
2017-05-31 22:01:13 +00:00
|
|
|
d = wrap_address(env, d);
|
|
|
|
s = wrap_address(env, s);
|
2012-09-05 17:20:53 +00:00
|
|
|
|
|
|
|
/* Lest we fail to service interrupts in a timely manner, limit the
|
2013-04-09 11:48:19 +00:00
|
|
|
amount of work we're willing to do. For now, let's cap at 8k. */
|
2012-09-05 17:20:53 +00:00
|
|
|
for (len = 0; len < 0x2000; ++len) {
|
2017-05-19 18:17:50 +00:00
|
|
|
uint8_t v = cpu_ldub_data_ra(env, s + len, ra);
|
|
|
|
cpu_stb_data_ra(env, d + len, v, ra);
|
2012-09-02 07:33:34 +00:00
|
|
|
if (v == c) {
|
2012-09-05 17:20:53 +00:00
|
|
|
/* Complete. Set CC=1 and advance R1. */
|
|
|
|
env->cc_op = 1;
|
|
|
|
env->retxl = s;
|
|
|
|
return d + len;
|
2012-09-02 07:33:34 +00:00
|
|
|
}
|
|
|
|
}
|
2012-09-05 17:20:53 +00:00
|
|
|
|
|
|
|
/* Incomplete. Set CC=3 and signal to advance R1 and R2. */
|
|
|
|
env->cc_op = 3;
|
|
|
|
env->retxl = s + len;
|
|
|
|
return d + len;
|
2012-09-02 07:33:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* load access registers r1 to r3 from memory at a2 */
|
2012-09-02 07:33:40 +00:00
|
|
|
void HELPER(lam)(CPUS390XState *env, uint32_t r1, uint64_t a2, uint32_t r3)
|
2012-09-02 07:33:34 +00:00
|
|
|
{
|
2017-05-19 18:20:48 +00:00
|
|
|
uintptr_t ra = GETPC();
|
2012-09-02 07:33:34 +00:00
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = r1;; i = (i + 1) % 16) {
|
2017-05-19 18:20:48 +00:00
|
|
|
env->aregs[i] = cpu_ldl_data_ra(env, a2, ra);
|
2012-09-02 07:33:34 +00:00
|
|
|
a2 += 4;
|
|
|
|
|
|
|
|
if (i == r3) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* store access registers r1 to r3 in memory at a2 */
|
2012-09-02 07:33:40 +00:00
|
|
|
void HELPER(stam)(CPUS390XState *env, uint32_t r1, uint64_t a2, uint32_t r3)
|
2012-09-02 07:33:34 +00:00
|
|
|
{
|
2017-05-19 18:23:15 +00:00
|
|
|
uintptr_t ra = GETPC();
|
2012-09-02 07:33:34 +00:00
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = r1;; i = (i + 1) % 16) {
|
2017-05-19 18:23:15 +00:00
|
|
|
cpu_stl_data_ra(env, a2, env->aregs[i], ra);
|
2012-09-02 07:33:34 +00:00
|
|
|
a2 += 4;
|
|
|
|
|
|
|
|
if (i == r3) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-31 22:01:19 +00:00
|
|
|
/* move long helper */
|
|
|
|
static inline uint32_t do_mvcl(CPUS390XState *env,
|
|
|
|
uint64_t *dest, uint64_t *destlen,
|
|
|
|
uint64_t *src, uint64_t *srclen,
|
|
|
|
uint8_t pad, uintptr_t ra)
|
2012-09-02 07:33:34 +00:00
|
|
|
{
|
2017-05-31 22:01:19 +00:00
|
|
|
uint64_t len = MIN(*srclen, *destlen);
|
2012-09-02 07:33:34 +00:00
|
|
|
uint32_t cc;
|
|
|
|
|
2017-05-31 22:01:19 +00:00
|
|
|
if (*destlen == *srclen) {
|
2012-09-02 07:33:34 +00:00
|
|
|
cc = 0;
|
2017-05-31 22:01:19 +00:00
|
|
|
} else if (*destlen < *srclen) {
|
2012-09-02 07:33:34 +00:00
|
|
|
cc = 1;
|
|
|
|
} else {
|
|
|
|
cc = 2;
|
|
|
|
}
|
|
|
|
|
2017-05-31 22:01:19 +00:00
|
|
|
/* Copy the src array */
|
|
|
|
fast_memmove(env, *dest, *src, len, ra);
|
|
|
|
*src += len;
|
|
|
|
*srclen -= len;
|
|
|
|
*dest += len;
|
|
|
|
*destlen -= len;
|
2012-09-02 07:33:34 +00:00
|
|
|
|
2017-05-31 22:01:19 +00:00
|
|
|
/* Pad the remaining area */
|
|
|
|
fast_memset(env, *dest, pad, *destlen, ra);
|
|
|
|
*dest += *destlen;
|
|
|
|
*destlen = 0;
|
2012-09-02 07:33:34 +00:00
|
|
|
|
2017-05-31 22:01:19 +00:00
|
|
|
return cc;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* move long */
|
|
|
|
uint32_t HELPER(mvcl)(CPUS390XState *env, uint32_t r1, uint32_t r2)
|
|
|
|
{
|
|
|
|
uintptr_t ra = GETPC();
|
|
|
|
uint64_t destlen = env->regs[r1 + 1] & 0xffffff;
|
|
|
|
uint64_t dest = get_address(env, r1);
|
|
|
|
uint64_t srclen = env->regs[r2 + 1] & 0xffffff;
|
|
|
|
uint64_t src = get_address(env, r2);
|
|
|
|
uint8_t pad = env->regs[r2 + 1] >> 24;
|
|
|
|
uint32_t cc;
|
|
|
|
|
|
|
|
cc = do_mvcl(env, &dest, &destlen, &src, &srclen, pad, ra);
|
2012-09-02 07:33:34 +00:00
|
|
|
|
2017-05-31 22:01:19 +00:00
|
|
|
env->regs[r1 + 1] = deposit64(env->regs[r1 + 1], 0, 24, destlen);
|
|
|
|
env->regs[r2 + 1] = deposit64(env->regs[r2 + 1], 0, 24, srclen);
|
2017-05-31 22:01:14 +00:00
|
|
|
set_address(env, r1, dest);
|
|
|
|
set_address(env, r2, src);
|
2012-09-02 07:33:34 +00:00
|
|
|
|
|
|
|
return cc;
|
|
|
|
}
|
|
|
|
|
2017-05-31 22:01:19 +00:00
|
|
|
/* move long extended */
|
2012-09-02 07:33:40 +00:00
|
|
|
uint32_t HELPER(mvcle)(CPUS390XState *env, uint32_t r1, uint64_t a2,
|
|
|
|
uint32_t r3)
|
2012-09-02 07:33:34 +00:00
|
|
|
{
|
2017-05-19 18:28:30 +00:00
|
|
|
uintptr_t ra = GETPC();
|
2017-05-31 22:01:15 +00:00
|
|
|
uint64_t destlen = get_length(env, r1 + 1);
|
2017-05-31 22:01:13 +00:00
|
|
|
uint64_t dest = get_address(env, r1);
|
2017-05-31 22:01:15 +00:00
|
|
|
uint64_t srclen = get_length(env, r3 + 1);
|
2017-05-31 22:01:13 +00:00
|
|
|
uint64_t src = get_address(env, r3);
|
2017-05-31 22:01:19 +00:00
|
|
|
uint8_t pad = a2;
|
2012-09-02 07:33:34 +00:00
|
|
|
uint32_t cc;
|
|
|
|
|
2017-05-31 22:01:19 +00:00
|
|
|
cc = do_mvcl(env, &dest, &destlen, &src, &srclen, pad, ra);
|
2012-09-02 07:33:34 +00:00
|
|
|
|
2017-05-31 22:01:19 +00:00
|
|
|
set_length(env, r1 + 1, destlen);
|
|
|
|
set_length(env, r3 + 1, srclen);
|
2017-05-31 22:01:14 +00:00
|
|
|
set_address(env, r1, dest);
|
|
|
|
set_address(env, r3, src);
|
2012-09-02 07:33:34 +00:00
|
|
|
|
|
|
|
return cc;
|
|
|
|
}
|
|
|
|
|
2017-05-31 22:01:17 +00:00
|
|
|
/* compare logical long helper */
|
|
|
|
static inline uint32_t do_clcl(CPUS390XState *env,
|
|
|
|
uint64_t *src1, uint64_t *src1len,
|
|
|
|
uint64_t *src3, uint64_t *src3len,
|
2017-05-31 22:01:20 +00:00
|
|
|
uint16_t pad, uint64_t limit,
|
|
|
|
int wordsize, uintptr_t ra)
|
2017-05-31 22:01:17 +00:00
|
|
|
{
|
|
|
|
uint64_t len = MAX(*src1len, *src3len);
|
2012-09-02 07:33:34 +00:00
|
|
|
uint32_t cc = 0;
|
|
|
|
|
2017-05-31 22:01:20 +00:00
|
|
|
check_alignment(env, *src1len | *src3len, wordsize, ra);
|
|
|
|
|
2017-05-31 22:01:16 +00:00
|
|
|
if (!len) {
|
2012-09-02 07:33:34 +00:00
|
|
|
return cc;
|
|
|
|
}
|
|
|
|
|
2017-05-31 22:01:16 +00:00
|
|
|
/* Lest we fail to service interrupts in a timely manner, limit the
|
2017-05-31 22:01:17 +00:00
|
|
|
amount of work we're willing to do. */
|
|
|
|
if (len > limit) {
|
|
|
|
len = limit;
|
2017-05-31 22:01:16 +00:00
|
|
|
cc = 3;
|
2012-09-02 07:33:34 +00:00
|
|
|
}
|
|
|
|
|
2017-05-31 22:01:20 +00:00
|
|
|
for (; len; len -= wordsize) {
|
|
|
|
uint16_t v1 = pad;
|
|
|
|
uint16_t v3 = pad;
|
2017-05-31 22:01:16 +00:00
|
|
|
|
2017-05-31 22:01:17 +00:00
|
|
|
if (*src1len) {
|
2017-05-31 22:01:20 +00:00
|
|
|
v1 = cpu_ldusize_data_ra(env, *src1, wordsize, ra);
|
2017-05-31 22:01:16 +00:00
|
|
|
}
|
2017-05-31 22:01:17 +00:00
|
|
|
if (*src3len) {
|
2017-05-31 22:01:20 +00:00
|
|
|
v3 = cpu_ldusize_data_ra(env, *src3, wordsize, ra);
|
2017-05-31 22:01:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (v1 != v3) {
|
|
|
|
cc = (v1 < v3) ? 1 : 2;
|
2012-09-02 07:33:34 +00:00
|
|
|
break;
|
|
|
|
}
|
2017-05-31 22:01:16 +00:00
|
|
|
|
2017-05-31 22:01:17 +00:00
|
|
|
if (*src1len) {
|
2017-05-31 22:01:20 +00:00
|
|
|
*src1 += wordsize;
|
|
|
|
*src1len -= wordsize;
|
2017-05-31 22:01:16 +00:00
|
|
|
}
|
2017-05-31 22:01:17 +00:00
|
|
|
if (*src3len) {
|
2017-05-31 22:01:20 +00:00
|
|
|
*src3 += wordsize;
|
|
|
|
*src3len -= wordsize;
|
2017-05-31 22:01:16 +00:00
|
|
|
}
|
2012-09-02 07:33:34 +00:00
|
|
|
}
|
|
|
|
|
2017-05-31 22:01:17 +00:00
|
|
|
return cc;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* compare logical long */
|
|
|
|
uint32_t HELPER(clcl)(CPUS390XState *env, uint32_t r1, uint32_t r2)
|
|
|
|
{
|
|
|
|
uintptr_t ra = GETPC();
|
|
|
|
uint64_t src1len = extract64(env->regs[r1 + 1], 0, 24);
|
|
|
|
uint64_t src1 = get_address(env, r1);
|
|
|
|
uint64_t src3len = extract64(env->regs[r2 + 1], 0, 24);
|
|
|
|
uint64_t src3 = get_address(env, r2);
|
|
|
|
uint8_t pad = env->regs[r2 + 1] >> 24;
|
|
|
|
uint32_t cc;
|
|
|
|
|
2017-05-31 22:01:20 +00:00
|
|
|
cc = do_clcl(env, &src1, &src1len, &src3, &src3len, pad, -1, 1, ra);
|
2017-05-31 22:01:17 +00:00
|
|
|
|
|
|
|
env->regs[r1 + 1] = deposit64(env->regs[r1 + 1], 0, 24, src1len);
|
|
|
|
env->regs[r2 + 1] = deposit64(env->regs[r2 + 1], 0, 24, src3len);
|
|
|
|
set_address(env, r1, src1);
|
|
|
|
set_address(env, r2, src3);
|
|
|
|
|
|
|
|
return cc;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* compare logical long extended memcompare insn with padding */
|
|
|
|
uint32_t HELPER(clcle)(CPUS390XState *env, uint32_t r1, uint64_t a2,
|
|
|
|
uint32_t r3)
|
|
|
|
{
|
|
|
|
uintptr_t ra = GETPC();
|
|
|
|
uint64_t src1len = get_length(env, r1 + 1);
|
|
|
|
uint64_t src1 = get_address(env, r1);
|
|
|
|
uint64_t src3len = get_length(env, r3 + 1);
|
|
|
|
uint64_t src3 = get_address(env, r3);
|
|
|
|
uint8_t pad = a2;
|
|
|
|
uint32_t cc;
|
|
|
|
|
2017-05-31 22:01:20 +00:00
|
|
|
cc = do_clcl(env, &src1, &src1len, &src3, &src3len, pad, 0x2000, 1, ra);
|
|
|
|
|
|
|
|
set_length(env, r1 + 1, src1len);
|
|
|
|
set_length(env, r3 + 1, src3len);
|
|
|
|
set_address(env, r1, src1);
|
|
|
|
set_address(env, r3, src3);
|
|
|
|
|
|
|
|
return cc;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* compare logical long unicode memcompare insn with padding */
|
|
|
|
uint32_t HELPER(clclu)(CPUS390XState *env, uint32_t r1, uint64_t a2,
|
|
|
|
uint32_t r3)
|
|
|
|
{
|
|
|
|
uintptr_t ra = GETPC();
|
|
|
|
uint64_t src1len = get_length(env, r1 + 1);
|
|
|
|
uint64_t src1 = get_address(env, r1);
|
|
|
|
uint64_t src3len = get_length(env, r3 + 1);
|
|
|
|
uint64_t src3 = get_address(env, r3);
|
|
|
|
uint16_t pad = a2;
|
|
|
|
uint32_t cc = 0;
|
|
|
|
|
|
|
|
cc = do_clcl(env, &src1, &src1len, &src3, &src3len, pad, 0x1000, 2, ra);
|
2017-05-31 22:01:17 +00:00
|
|
|
|
2017-05-31 22:01:16 +00:00
|
|
|
set_length(env, r1 + 1, src1len);
|
|
|
|
set_length(env, r3 + 1, src3len);
|
|
|
|
set_address(env, r1, src1);
|
|
|
|
set_address(env, r3, src3);
|
2012-09-02 07:33:34 +00:00
|
|
|
|
|
|
|
return cc;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* checksum */
|
2012-08-24 18:38:12 +00:00
|
|
|
uint64_t HELPER(cksm)(CPUS390XState *env, uint64_t r1,
|
|
|
|
uint64_t src, uint64_t src_len)
|
2012-09-02 07:33:34 +00:00
|
|
|
{
|
2017-05-19 18:34:43 +00:00
|
|
|
uintptr_t ra = GETPC();
|
2012-08-24 18:38:12 +00:00
|
|
|
uint64_t max_len, len;
|
|
|
|
uint64_t cksm = (uint32_t)r1;
|
2012-09-02 07:33:34 +00:00
|
|
|
|
2012-08-24 18:38:12 +00:00
|
|
|
/* Lest we fail to service interrupts in a timely manner, limit the
|
2013-04-09 11:48:19 +00:00
|
|
|
amount of work we're willing to do. For now, let's cap at 8k. */
|
2012-08-24 18:38:12 +00:00
|
|
|
max_len = (src_len > 0x2000 ? 0x2000 : src_len);
|
2012-09-02 07:33:34 +00:00
|
|
|
|
2012-08-24 18:38:12 +00:00
|
|
|
/* Process full words as available. */
|
|
|
|
for (len = 0; len + 4 <= max_len; len += 4, src += 4) {
|
2017-05-19 18:34:43 +00:00
|
|
|
cksm += (uint32_t)cpu_ldl_data_ra(env, src, ra);
|
2012-09-02 07:33:34 +00:00
|
|
|
}
|
|
|
|
|
2012-08-24 18:38:12 +00:00
|
|
|
switch (max_len - len) {
|
2012-09-02 07:33:34 +00:00
|
|
|
case 1:
|
2017-05-19 18:34:43 +00:00
|
|
|
cksm += cpu_ldub_data_ra(env, src, ra) << 24;
|
2012-08-24 18:38:12 +00:00
|
|
|
len += 1;
|
2012-09-02 07:33:34 +00:00
|
|
|
break;
|
|
|
|
case 2:
|
2017-05-19 18:34:43 +00:00
|
|
|
cksm += cpu_lduw_data_ra(env, src, ra) << 16;
|
2012-08-24 18:38:12 +00:00
|
|
|
len += 2;
|
2012-09-02 07:33:34 +00:00
|
|
|
break;
|
|
|
|
case 3:
|
2017-05-19 18:34:43 +00:00
|
|
|
cksm += cpu_lduw_data_ra(env, src, ra) << 16;
|
|
|
|
cksm += cpu_ldub_data_ra(env, src + 2, ra) << 8;
|
2012-08-24 18:38:12 +00:00
|
|
|
len += 3;
|
2012-09-02 07:33:34 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2012-08-24 18:38:12 +00:00
|
|
|
/* Fold the carry from the checksum. Note that we can see carry-out
|
|
|
|
during folding more than once (but probably not more than twice). */
|
|
|
|
while (cksm > 0xffffffffull) {
|
|
|
|
cksm = (uint32_t)cksm + (cksm >> 32);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Indicate whether or not we've processed everything. */
|
|
|
|
env->cc_op = (len == src_len ? 0 : 3);
|
2012-09-02 07:33:34 +00:00
|
|
|
|
2012-08-24 18:38:12 +00:00
|
|
|
/* Return both cksm and processed length. */
|
|
|
|
env->retxl = cksm;
|
|
|
|
return len;
|
2012-09-02 07:33:34 +00:00
|
|
|
}
|
|
|
|
|
2017-05-31 22:01:05 +00:00
|
|
|
void HELPER(pack)(CPUS390XState *env, uint32_t len, uint64_t dest, uint64_t src)
|
|
|
|
{
|
|
|
|
uintptr_t ra = GETPC();
|
|
|
|
int len_dest = len >> 4;
|
|
|
|
int len_src = len & 0xf;
|
|
|
|
uint8_t b;
|
|
|
|
|
|
|
|
dest += len_dest;
|
|
|
|
src += len_src;
|
|
|
|
|
|
|
|
/* last byte is special, it only flips the nibbles */
|
|
|
|
b = cpu_ldub_data_ra(env, src, ra);
|
|
|
|
cpu_stb_data_ra(env, dest, (b << 4) | (b >> 4), ra);
|
|
|
|
src--;
|
|
|
|
len_src--;
|
|
|
|
|
|
|
|
/* now pack every value */
|
|
|
|
while (len_dest >= 0) {
|
|
|
|
b = 0;
|
|
|
|
|
|
|
|
if (len_src > 0) {
|
|
|
|
b = cpu_ldub_data_ra(env, src, ra) & 0x0f;
|
|
|
|
src--;
|
|
|
|
len_src--;
|
|
|
|
}
|
|
|
|
if (len_src > 0) {
|
|
|
|
b |= cpu_ldub_data_ra(env, src, ra) << 4;
|
|
|
|
src--;
|
|
|
|
len_src--;
|
|
|
|
}
|
|
|
|
|
|
|
|
len_dest--;
|
|
|
|
dest--;
|
|
|
|
cpu_stb_data_ra(env, dest, b, ra);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-02 07:33:40 +00:00
|
|
|
void HELPER(unpk)(CPUS390XState *env, uint32_t len, uint64_t dest,
|
|
|
|
uint64_t src)
|
2012-09-02 07:33:34 +00:00
|
|
|
{
|
2017-05-19 18:37:55 +00:00
|
|
|
uintptr_t ra = GETPC();
|
2012-09-02 07:33:34 +00:00
|
|
|
int len_dest = len >> 4;
|
|
|
|
int len_src = len & 0xf;
|
|
|
|
uint8_t b;
|
|
|
|
int second_nibble = 0;
|
|
|
|
|
|
|
|
dest += len_dest;
|
|
|
|
src += len_src;
|
|
|
|
|
|
|
|
/* last byte is special, it only flips the nibbles */
|
2017-05-19 18:37:55 +00:00
|
|
|
b = cpu_ldub_data_ra(env, src, ra);
|
|
|
|
cpu_stb_data_ra(env, dest, (b << 4) | (b >> 4), ra);
|
2012-09-02 07:33:34 +00:00
|
|
|
src--;
|
|
|
|
len_src--;
|
|
|
|
|
|
|
|
/* now pad every nibble with 0xf0 */
|
|
|
|
|
|
|
|
while (len_dest > 0) {
|
|
|
|
uint8_t cur_byte = 0;
|
|
|
|
|
|
|
|
if (len_src > 0) {
|
2017-05-19 18:37:55 +00:00
|
|
|
cur_byte = cpu_ldub_data_ra(env, src, ra);
|
2012-09-02 07:33:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
len_dest--;
|
|
|
|
dest--;
|
|
|
|
|
|
|
|
/* only advance one nibble at a time */
|
|
|
|
if (second_nibble) {
|
|
|
|
cur_byte >>= 4;
|
|
|
|
len_src--;
|
|
|
|
src--;
|
|
|
|
}
|
|
|
|
second_nibble = !second_nibble;
|
|
|
|
|
|
|
|
/* digit */
|
|
|
|
cur_byte = (cur_byte & 0xf);
|
|
|
|
/* zone bits */
|
|
|
|
cur_byte |= 0xf0;
|
|
|
|
|
2017-05-19 18:37:55 +00:00
|
|
|
cpu_stb_data_ra(env, dest, cur_byte, ra);
|
2012-09-02 07:33:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-24 21:34:10 +00:00
|
|
|
static uint32_t do_helper_tr(CPUS390XState *env, uint32_t len, uint64_t array,
|
|
|
|
uint64_t trans, uintptr_t ra)
|
2012-09-02 07:33:34 +00:00
|
|
|
{
|
2017-05-19 18:43:08 +00:00
|
|
|
uint32_t i;
|
2012-09-02 07:33:34 +00:00
|
|
|
|
|
|
|
for (i = 0; i <= len; i++) {
|
2017-05-19 18:43:08 +00:00
|
|
|
uint8_t byte = cpu_ldub_data_ra(env, array + i, ra);
|
|
|
|
uint8_t new_byte = cpu_ldub_data_ra(env, trans + byte, ra);
|
|
|
|
cpu_stb_data_ra(env, array + i, new_byte, ra);
|
2012-09-02 07:33:34 +00:00
|
|
|
}
|
2017-05-24 21:34:10 +00:00
|
|
|
|
|
|
|
return env->cc_op;
|
2012-09-02 07:33:34 +00:00
|
|
|
}
|
|
|
|
|
2017-05-19 18:43:08 +00:00
|
|
|
void HELPER(tr)(CPUS390XState *env, uint32_t len, uint64_t array,
|
|
|
|
uint64_t trans)
|
|
|
|
{
|
2017-05-24 21:34:10 +00:00
|
|
|
do_helper_tr(env, len, array, trans, GETPC());
|
2017-05-19 18:43:08 +00:00
|
|
|
}
|
|
|
|
|
2015-06-03 21:09:48 +00:00
|
|
|
uint64_t HELPER(tre)(CPUS390XState *env, uint64_t array,
|
|
|
|
uint64_t len, uint64_t trans)
|
|
|
|
{
|
2017-05-19 18:46:25 +00:00
|
|
|
uintptr_t ra = GETPC();
|
2015-06-03 21:09:48 +00:00
|
|
|
uint8_t end = env->regs[0] & 0xff;
|
|
|
|
uint64_t l = len;
|
|
|
|
uint64_t i;
|
2017-05-19 18:46:25 +00:00
|
|
|
uint32_t cc = 0;
|
2015-06-03 21:09:48 +00:00
|
|
|
|
|
|
|
if (!(env->psw.mask & PSW_MASK_64)) {
|
|
|
|
array &= 0x7fffffff;
|
|
|
|
l = (uint32_t)l;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Lest we fail to service interrupts in a timely manner, limit the
|
|
|
|
amount of work we're willing to do. For now, let's cap at 8k. */
|
|
|
|
if (l > 0x2000) {
|
|
|
|
l = 0x2000;
|
2017-05-19 18:46:25 +00:00
|
|
|
cc = 3;
|
2015-06-03 21:09:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < l; i++) {
|
|
|
|
uint8_t byte, new_byte;
|
|
|
|
|
2017-05-19 18:46:25 +00:00
|
|
|
byte = cpu_ldub_data_ra(env, array + i, ra);
|
2015-06-03 21:09:48 +00:00
|
|
|
|
|
|
|
if (byte == end) {
|
2017-05-19 18:46:25 +00:00
|
|
|
cc = 1;
|
2015-06-03 21:09:48 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2017-05-19 18:46:25 +00:00
|
|
|
new_byte = cpu_ldub_data_ra(env, trans + byte, ra);
|
|
|
|
cpu_stb_data_ra(env, array + i, new_byte, ra);
|
2015-06-03 21:09:48 +00:00
|
|
|
}
|
|
|
|
|
2017-05-19 18:46:25 +00:00
|
|
|
env->cc_op = cc;
|
2015-06-03 21:09:48 +00:00
|
|
|
env->retxl = len - i;
|
|
|
|
return array + i;
|
|
|
|
}
|
|
|
|
|
2017-05-22 18:59:43 +00:00
|
|
|
static uint32_t do_helper_trt(CPUS390XState *env, uint32_t len, uint64_t array,
|
|
|
|
uint64_t trans, uintptr_t ra)
|
2015-06-03 21:09:47 +00:00
|
|
|
{
|
2017-05-22 18:59:43 +00:00
|
|
|
uint32_t i;
|
2015-06-03 21:09:47 +00:00
|
|
|
|
|
|
|
for (i = 0; i <= len; i++) {
|
2017-05-22 18:59:43 +00:00
|
|
|
uint8_t byte = cpu_ldub_data_ra(env, array + i, ra);
|
|
|
|
uint8_t sbyte = cpu_ldub_data_ra(env, trans + byte, ra);
|
2015-06-03 21:09:47 +00:00
|
|
|
|
|
|
|
if (sbyte != 0) {
|
2017-05-31 22:01:14 +00:00
|
|
|
set_address(env, 1, array + i);
|
2017-05-22 18:59:43 +00:00
|
|
|
env->regs[2] = deposit64(env->regs[2], 0, 8, sbyte);
|
|
|
|
return (i == len) ? 2 : 1;
|
2015-06-03 21:09:47 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-22 18:59:43 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t HELPER(trt)(CPUS390XState *env, uint32_t len, uint64_t array,
|
|
|
|
uint64_t trans)
|
|
|
|
{
|
|
|
|
return do_helper_trt(env, len, array, trans, GETPC());
|
2015-06-03 21:09:47 +00:00
|
|
|
}
|
|
|
|
|
2017-03-01 00:39:01 +00:00
|
|
|
void HELPER(cdsg)(CPUS390XState *env, uint64_t addr,
|
|
|
|
uint32_t r1, uint32_t r3)
|
|
|
|
{
|
|
|
|
uintptr_t ra = GETPC();
|
|
|
|
Int128 cmpv = int128_make128(env->regs[r1 + 1], env->regs[r1]);
|
|
|
|
Int128 newv = int128_make128(env->regs[r3 + 1], env->regs[r3]);
|
|
|
|
Int128 oldv;
|
|
|
|
bool fail;
|
|
|
|
|
|
|
|
if (parallel_cpus) {
|
|
|
|
#ifndef CONFIG_ATOMIC128
|
|
|
|
cpu_loop_exit_atomic(ENV_GET_CPU(env), ra);
|
|
|
|
#else
|
|
|
|
int mem_idx = cpu_mmu_index(env, false);
|
|
|
|
TCGMemOpIdx oi = make_memop_idx(MO_TEQ | MO_ALIGN_16, mem_idx);
|
|
|
|
oldv = helper_atomic_cmpxchgo_be_mmu(env, addr, cmpv, newv, oi, ra);
|
|
|
|
fail = !int128_eq(oldv, cmpv);
|
|
|
|
#endif
|
|
|
|
} else {
|
|
|
|
uint64_t oldh, oldl;
|
|
|
|
|
|
|
|
oldh = cpu_ldq_data_ra(env, addr + 0, ra);
|
|
|
|
oldl = cpu_ldq_data_ra(env, addr + 8, ra);
|
|
|
|
|
|
|
|
oldv = int128_make128(oldl, oldh);
|
|
|
|
fail = !int128_eq(oldv, cmpv);
|
|
|
|
if (fail) {
|
|
|
|
newv = oldv;
|
|
|
|
}
|
|
|
|
|
|
|
|
cpu_stq_data_ra(env, addr + 0, int128_gethi(newv), ra);
|
|
|
|
cpu_stq_data_ra(env, addr + 8, int128_getlo(newv), ra);
|
|
|
|
}
|
|
|
|
|
|
|
|
env->cc_op = fail;
|
|
|
|
env->regs[r1] = int128_gethi(oldv);
|
|
|
|
env->regs[r1 + 1] = int128_getlo(oldv);
|
|
|
|
}
|
|
|
|
|
2012-09-02 07:33:34 +00:00
|
|
|
#if !defined(CONFIG_USER_ONLY)
|
2012-09-02 07:33:40 +00:00
|
|
|
void HELPER(lctlg)(CPUS390XState *env, uint32_t r1, uint64_t a2, uint32_t r3)
|
2012-09-02 07:33:34 +00:00
|
|
|
{
|
2017-05-22 19:14:58 +00:00
|
|
|
uintptr_t ra = GETPC();
|
2013-09-04 00:19:44 +00:00
|
|
|
S390CPU *cpu = s390_env_get_cpu(env);
|
2015-06-12 22:46:00 +00:00
|
|
|
bool PERchanged = false;
|
2012-09-02 07:33:34 +00:00
|
|
|
uint64_t src = a2;
|
2017-05-22 19:14:58 +00:00
|
|
|
uint32_t i;
|
2012-09-02 07:33:34 +00:00
|
|
|
|
|
|
|
for (i = r1;; i = (i + 1) % 16) {
|
2017-05-22 19:14:58 +00:00
|
|
|
uint64_t val = cpu_ldq_data_ra(env, src, ra);
|
2015-06-12 22:46:00 +00:00
|
|
|
if (env->cregs[i] != val && i >= 9 && i <= 11) {
|
|
|
|
PERchanged = true;
|
|
|
|
}
|
|
|
|
env->cregs[i] = val;
|
2012-09-02 07:33:34 +00:00
|
|
|
HELPER_LOG("load ctl %d from 0x%" PRIx64 " == 0x%" PRIx64 "\n",
|
2017-05-22 19:14:58 +00:00
|
|
|
i, src, val);
|
2012-09-02 07:33:34 +00:00
|
|
|
src += sizeof(uint64_t);
|
|
|
|
|
|
|
|
if (i == r3) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-12 22:46:00 +00:00
|
|
|
if (PERchanged && env->psw.mask & PSW_MASK_PER) {
|
|
|
|
s390_cpu_recompute_watchpoints(CPU(cpu));
|
|
|
|
}
|
|
|
|
|
2016-11-14 14:17:28 +00:00
|
|
|
tlb_flush(CPU(cpu));
|
2012-09-02 07:33:34 +00:00
|
|
|
}
|
|
|
|
|
2012-09-02 07:33:40 +00:00
|
|
|
void HELPER(lctl)(CPUS390XState *env, uint32_t r1, uint64_t a2, uint32_t r3)
|
2012-09-02 07:33:34 +00:00
|
|
|
{
|
2017-05-22 19:18:42 +00:00
|
|
|
uintptr_t ra = GETPC();
|
2013-09-04 00:19:44 +00:00
|
|
|
S390CPU *cpu = s390_env_get_cpu(env);
|
2015-06-12 22:46:00 +00:00
|
|
|
bool PERchanged = false;
|
2012-09-02 07:33:34 +00:00
|
|
|
uint64_t src = a2;
|
2017-05-22 19:18:42 +00:00
|
|
|
uint32_t i;
|
2012-09-02 07:33:34 +00:00
|
|
|
|
|
|
|
for (i = r1;; i = (i + 1) % 16) {
|
2017-05-22 19:18:42 +00:00
|
|
|
uint32_t val = cpu_ldl_data_ra(env, src, ra);
|
2015-06-12 22:46:00 +00:00
|
|
|
if ((uint32_t)env->cregs[i] != val && i >= 9 && i <= 11) {
|
|
|
|
PERchanged = true;
|
|
|
|
}
|
2017-05-22 19:18:42 +00:00
|
|
|
env->cregs[i] = deposit64(env->cregs[i], 0, 32, val);
|
|
|
|
HELPER_LOG("load ctl %d from 0x%" PRIx64 " == 0x%x\n", i, src, val);
|
2012-09-02 07:33:34 +00:00
|
|
|
src += sizeof(uint32_t);
|
|
|
|
|
|
|
|
if (i == r3) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-06-12 22:46:00 +00:00
|
|
|
if (PERchanged && env->psw.mask & PSW_MASK_PER) {
|
|
|
|
s390_cpu_recompute_watchpoints(CPU(cpu));
|
|
|
|
}
|
|
|
|
|
2016-11-14 14:17:28 +00:00
|
|
|
tlb_flush(CPU(cpu));
|
2012-09-02 07:33:34 +00:00
|
|
|
}
|
|
|
|
|
2012-09-02 07:33:40 +00:00
|
|
|
void HELPER(stctg)(CPUS390XState *env, uint32_t r1, uint64_t a2, uint32_t r3)
|
2012-09-02 07:33:34 +00:00
|
|
|
{
|
2017-05-22 19:43:23 +00:00
|
|
|
uintptr_t ra = GETPC();
|
2012-09-02 07:33:34 +00:00
|
|
|
uint64_t dest = a2;
|
2017-05-22 19:43:23 +00:00
|
|
|
uint32_t i;
|
2012-09-02 07:33:34 +00:00
|
|
|
|
|
|
|
for (i = r1;; i = (i + 1) % 16) {
|
2017-05-22 19:43:23 +00:00
|
|
|
cpu_stq_data_ra(env, dest, env->cregs[i], ra);
|
2012-09-02 07:33:34 +00:00
|
|
|
dest += sizeof(uint64_t);
|
|
|
|
|
|
|
|
if (i == r3) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-02 07:33:40 +00:00
|
|
|
void HELPER(stctl)(CPUS390XState *env, uint32_t r1, uint64_t a2, uint32_t r3)
|
2012-09-02 07:33:34 +00:00
|
|
|
{
|
2017-05-22 19:43:23 +00:00
|
|
|
uintptr_t ra = GETPC();
|
2012-09-02 07:33:34 +00:00
|
|
|
uint64_t dest = a2;
|
2017-05-22 19:43:23 +00:00
|
|
|
uint32_t i;
|
2012-09-02 07:33:34 +00:00
|
|
|
|
|
|
|
for (i = r1;; i = (i + 1) % 16) {
|
2017-05-22 19:43:23 +00:00
|
|
|
cpu_stl_data_ra(env, dest, env->cregs[i], ra);
|
2012-09-02 07:33:34 +00:00
|
|
|
dest += sizeof(uint32_t);
|
|
|
|
|
|
|
|
if (i == r3) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-05-18 17:26:40 +00:00
|
|
|
uint32_t HELPER(testblock)(CPUS390XState *env, uint64_t real_addr)
|
|
|
|
{
|
2017-05-22 19:53:32 +00:00
|
|
|
uintptr_t ra = GETPC();
|
2017-05-18 17:26:40 +00:00
|
|
|
CPUState *cs = CPU(s390_env_get_cpu(env));
|
|
|
|
uint64_t abs_addr;
|
|
|
|
int i;
|
|
|
|
|
2017-05-31 22:01:13 +00:00
|
|
|
real_addr = wrap_address(env, real_addr);
|
2017-05-18 17:26:40 +00:00
|
|
|
abs_addr = mmu_real2abs(env, real_addr) & TARGET_PAGE_MASK;
|
|
|
|
if (!address_space_access_valid(&address_space_memory, abs_addr,
|
|
|
|
TARGET_PAGE_SIZE, true)) {
|
2017-05-22 19:53:32 +00:00
|
|
|
cpu_restore_state(cs, ra);
|
2017-05-18 17:26:40 +00:00
|
|
|
program_interrupt(env, PGM_ADDRESSING, 4);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Check low-address protection */
|
|
|
|
if ((env->cregs[0] & CR0_LOWPROT) && real_addr < 0x2000) {
|
2017-05-22 19:53:32 +00:00
|
|
|
cpu_restore_state(cs, ra);
|
2017-05-18 17:26:40 +00:00
|
|
|
program_interrupt(env, PGM_PROTECTION, 4);
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < TARGET_PAGE_SIZE; i += 8) {
|
|
|
|
stq_phys(cs->as, abs_addr + i, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-09-02 07:33:34 +00:00
|
|
|
uint32_t HELPER(tprot)(uint64_t a1, uint64_t a2)
|
|
|
|
{
|
|
|
|
/* XXX implement */
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* insert storage key extended */
|
2012-09-02 07:33:40 +00:00
|
|
|
uint64_t HELPER(iske)(CPUS390XState *env, uint64_t r2)
|
2012-09-02 07:33:34 +00:00
|
|
|
{
|
2015-06-26 18:01:00 +00:00
|
|
|
static S390SKeysState *ss;
|
|
|
|
static S390SKeysClass *skeyclass;
|
2017-05-31 22:01:13 +00:00
|
|
|
uint64_t addr = wrap_address(env, r2);
|
2015-06-26 18:01:00 +00:00
|
|
|
uint8_t key;
|
2012-09-02 07:33:34 +00:00
|
|
|
|
|
|
|
if (addr > ram_size) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-06-26 18:01:00 +00:00
|
|
|
if (unlikely(!ss)) {
|
|
|
|
ss = s390_get_skeys_device();
|
|
|
|
skeyclass = S390_SKEYS_GET_CLASS(ss);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (skeyclass->get_skeys(ss, addr / TARGET_PAGE_SIZE, 1, &key)) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
return key;
|
2012-09-02 07:33:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* set storage key extended */
|
2012-08-27 16:18:01 +00:00
|
|
|
void HELPER(sske)(CPUS390XState *env, uint64_t r1, uint64_t r2)
|
2012-09-02 07:33:34 +00:00
|
|
|
{
|
2015-06-26 18:01:00 +00:00
|
|
|
static S390SKeysState *ss;
|
|
|
|
static S390SKeysClass *skeyclass;
|
2017-05-31 22:01:13 +00:00
|
|
|
uint64_t addr = wrap_address(env, r2);
|
2015-06-26 18:01:00 +00:00
|
|
|
uint8_t key;
|
2012-09-02 07:33:34 +00:00
|
|
|
|
|
|
|
if (addr > ram_size) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2015-06-26 18:01:00 +00:00
|
|
|
if (unlikely(!ss)) {
|
|
|
|
ss = s390_get_skeys_device();
|
|
|
|
skeyclass = S390_SKEYS_GET_CLASS(ss);
|
|
|
|
}
|
|
|
|
|
|
|
|
key = (uint8_t) r1;
|
|
|
|
skeyclass->set_skeys(ss, addr / TARGET_PAGE_SIZE, 1, &key);
|
2012-09-02 07:33:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* reset reference bit extended */
|
2012-08-27 16:22:13 +00:00
|
|
|
uint32_t HELPER(rrbe)(CPUS390XState *env, uint64_t r2)
|
2012-09-02 07:33:34 +00:00
|
|
|
{
|
2015-06-26 18:01:00 +00:00
|
|
|
static S390SKeysState *ss;
|
|
|
|
static S390SKeysClass *skeyclass;
|
|
|
|
uint8_t re, key;
|
2012-09-02 07:33:34 +00:00
|
|
|
|
|
|
|
if (r2 > ram_size) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-06-26 18:01:00 +00:00
|
|
|
if (unlikely(!ss)) {
|
|
|
|
ss = s390_get_skeys_device();
|
|
|
|
skeyclass = S390_SKEYS_GET_CLASS(ss);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (skeyclass->get_skeys(ss, r2 / TARGET_PAGE_SIZE, 1, &key)) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2012-09-02 07:33:34 +00:00
|
|
|
re = key & (SK_R | SK_C);
|
2015-06-26 18:01:00 +00:00
|
|
|
key &= ~SK_R;
|
|
|
|
|
|
|
|
if (skeyclass->set_skeys(ss, r2 / TARGET_PAGE_SIZE, 1, &key)) {
|
|
|
|
return 0;
|
|
|
|
}
|
2012-09-02 07:33:34 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* cc
|
|
|
|
*
|
|
|
|
* 0 Reference bit zero; change bit zero
|
|
|
|
* 1 Reference bit zero; change bit one
|
|
|
|
* 2 Reference bit one; change bit zero
|
|
|
|
* 3 Reference bit one; change bit one
|
|
|
|
*/
|
|
|
|
|
|
|
|
return re >> 1;
|
|
|
|
}
|
|
|
|
|
2015-06-03 21:09:55 +00:00
|
|
|
uint32_t HELPER(mvcs)(CPUS390XState *env, uint64_t l, uint64_t a1, uint64_t a2)
|
2012-09-02 07:33:34 +00:00
|
|
|
{
|
2017-05-23 02:45:43 +00:00
|
|
|
uintptr_t ra = GETPC();
|
2015-06-03 21:09:55 +00:00
|
|
|
int cc = 0, i;
|
2012-09-02 07:33:34 +00:00
|
|
|
|
2015-06-03 21:09:55 +00:00
|
|
|
HELPER_LOG("%s: %16" PRIx64 " %16" PRIx64 " %16" PRIx64 "\n",
|
|
|
|
__func__, l, a1, a2);
|
|
|
|
|
|
|
|
if (l > 256) {
|
2012-09-02 07:33:34 +00:00
|
|
|
/* max 256 */
|
|
|
|
l = 256;
|
|
|
|
cc = 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* XXX replace w/ memcpy */
|
|
|
|
for (i = 0; i < l; i++) {
|
2017-05-23 02:45:43 +00:00
|
|
|
uint8_t x = cpu_ldub_primary_ra(env, a2 + i, ra);
|
|
|
|
cpu_stb_secondary_ra(env, a1 + i, x, ra);
|
2012-09-02 07:33:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return cc;
|
|
|
|
}
|
|
|
|
|
2015-06-03 21:09:55 +00:00
|
|
|
uint32_t HELPER(mvcp)(CPUS390XState *env, uint64_t l, uint64_t a1, uint64_t a2)
|
2012-09-02 07:33:34 +00:00
|
|
|
{
|
2017-05-23 02:45:43 +00:00
|
|
|
uintptr_t ra = GETPC();
|
2015-06-03 21:09:55 +00:00
|
|
|
int cc = 0, i;
|
|
|
|
|
2012-09-02 07:33:34 +00:00
|
|
|
HELPER_LOG("%s: %16" PRIx64 " %16" PRIx64 " %16" PRIx64 "\n",
|
|
|
|
__func__, l, a1, a2);
|
|
|
|
|
2015-06-03 21:09:55 +00:00
|
|
|
if (l > 256) {
|
|
|
|
/* max 256 */
|
|
|
|
l = 256;
|
|
|
|
cc = 3;
|
|
|
|
}
|
2012-09-02 07:33:34 +00:00
|
|
|
|
2015-06-03 21:09:55 +00:00
|
|
|
/* XXX replace w/ memcpy */
|
|
|
|
for (i = 0; i < l; i++) {
|
2017-05-23 02:45:43 +00:00
|
|
|
uint8_t x = cpu_ldub_secondary_ra(env, a2 + i, ra);
|
|
|
|
cpu_stb_primary_ra(env, a1 + i, x, ra);
|
2015-06-03 21:09:55 +00:00
|
|
|
}
|
2012-09-02 07:33:34 +00:00
|
|
|
|
2015-06-03 21:09:55 +00:00
|
|
|
return cc;
|
2012-09-02 07:33:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/* invalidate pte */
|
2017-05-31 22:01:02 +00:00
|
|
|
void HELPER(ipte)(CPUS390XState *env, uint64_t pto, uint64_t vaddr,
|
|
|
|
uint32_t m4)
|
2012-09-02 07:33:34 +00:00
|
|
|
{
|
2014-03-09 18:40:08 +00:00
|
|
|
CPUState *cs = CPU(s390_env_get_cpu(env));
|
2012-09-02 07:33:34 +00:00
|
|
|
uint64_t page = vaddr & TARGET_PAGE_MASK;
|
2017-05-31 22:01:01 +00:00
|
|
|
uint64_t pte_addr, pte;
|
2012-09-02 07:33:34 +00:00
|
|
|
|
2017-05-31 22:01:01 +00:00
|
|
|
/* Compute the page table entry address */
|
|
|
|
pte_addr = (pto & _SEGMENT_ENTRY_ORIGIN);
|
2017-05-31 22:01:02 +00:00
|
|
|
pte_addr += (vaddr & VADDR_PX) >> 9;
|
2017-05-31 22:01:01 +00:00
|
|
|
|
|
|
|
/* Mark the page table entry as invalid */
|
|
|
|
pte = ldq_phys(cs->as, pte_addr);
|
|
|
|
pte |= _PAGE_INVALID;
|
|
|
|
stq_phys(cs->as, pte_addr, pte);
|
2012-09-02 07:33:34 +00:00
|
|
|
|
|
|
|
/* XXX we exploit the fact that Linux passes the exact virtual
|
|
|
|
address here - it's not obliged to! */
|
2017-05-31 22:01:02 +00:00
|
|
|
/* XXX: the LC bit should be considered as 0 if the local-TLB-clearing
|
|
|
|
facility is not installed. */
|
|
|
|
if (m4 & 1) {
|
|
|
|
tlb_flush_page(cs, page);
|
|
|
|
} else {
|
|
|
|
tlb_flush_page_all_cpus_synced(cs, page);
|
|
|
|
}
|
2012-09-02 07:33:34 +00:00
|
|
|
|
|
|
|
/* XXX 31-bit hack */
|
2017-05-31 22:01:02 +00:00
|
|
|
if (m4 & 1) {
|
|
|
|
tlb_flush_page(cs, page ^ 0x80000000);
|
2012-09-02 07:33:34 +00:00
|
|
|
} else {
|
2017-05-31 22:01:02 +00:00
|
|
|
tlb_flush_page_all_cpus_synced(cs, page ^ 0x80000000);
|
2012-09-02 07:33:34 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* flush local tlb */
|
2012-09-02 07:33:40 +00:00
|
|
|
void HELPER(ptlb)(CPUS390XState *env)
|
2012-09-02 07:33:34 +00:00
|
|
|
{
|
2013-09-04 00:19:44 +00:00
|
|
|
S390CPU *cpu = s390_env_get_cpu(env);
|
|
|
|
|
2016-11-14 14:17:28 +00:00
|
|
|
tlb_flush(CPU(cpu));
|
2012-09-02 07:33:34 +00:00
|
|
|
}
|
|
|
|
|
2017-05-23 01:34:42 +00:00
|
|
|
/* flush global tlb */
|
|
|
|
void HELPER(purge)(CPUS390XState *env)
|
|
|
|
{
|
|
|
|
S390CPU *cpu = s390_env_get_cpu(env);
|
|
|
|
|
|
|
|
tlb_flush_all_cpus_synced(CPU(cpu));
|
|
|
|
}
|
|
|
|
|
2013-09-20 20:04:28 +00:00
|
|
|
/* load using real address */
|
|
|
|
uint64_t HELPER(lura)(CPUS390XState *env, uint64_t addr)
|
|
|
|
{
|
|
|
|
CPUState *cs = CPU(s390_env_get_cpu(env));
|
|
|
|
|
2017-05-31 22:01:13 +00:00
|
|
|
return (uint32_t)ldl_phys(cs->as, wrap_address(env, addr));
|
2013-09-20 20:04:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
uint64_t HELPER(lurag)(CPUS390XState *env, uint64_t addr)
|
|
|
|
{
|
|
|
|
CPUState *cs = CPU(s390_env_get_cpu(env));
|
|
|
|
|
2017-05-31 22:01:13 +00:00
|
|
|
return ldq_phys(cs->as, wrap_address(env, addr));
|
2013-09-20 20:04:28 +00:00
|
|
|
}
|
|
|
|
|
2012-09-02 07:33:34 +00:00
|
|
|
/* store using real address */
|
2012-08-27 16:45:38 +00:00
|
|
|
void HELPER(stura)(CPUS390XState *env, uint64_t addr, uint64_t v1)
|
2012-09-02 07:33:34 +00:00
|
|
|
{
|
2014-03-09 18:40:08 +00:00
|
|
|
CPUState *cs = CPU(s390_env_get_cpu(env));
|
|
|
|
|
2017-05-31 22:01:13 +00:00
|
|
|
stl_phys(cs->as, wrap_address(env, addr), (uint32_t)v1);
|
2015-06-12 22:46:01 +00:00
|
|
|
|
|
|
|
if ((env->psw.mask & PSW_MASK_PER) &&
|
|
|
|
(env->cregs[9] & PER_CR9_EVENT_STORE) &&
|
|
|
|
(env->cregs[9] & PER_CR9_EVENT_STORE_REAL)) {
|
|
|
|
/* PSW is saved just before calling the helper. */
|
|
|
|
env->per_address = env->psw.addr;
|
|
|
|
env->per_perc_atmid = PER_CODE_EVENT_STORE_REAL | get_per_atmid(env);
|
|
|
|
}
|
2012-09-02 07:33:34 +00:00
|
|
|
}
|
|
|
|
|
2013-09-20 20:04:28 +00:00
|
|
|
void HELPER(sturg)(CPUS390XState *env, uint64_t addr, uint64_t v1)
|
|
|
|
{
|
|
|
|
CPUState *cs = CPU(s390_env_get_cpu(env));
|
|
|
|
|
2017-05-31 22:01:13 +00:00
|
|
|
stq_phys(cs->as, wrap_address(env, addr), v1);
|
2015-06-12 22:46:01 +00:00
|
|
|
|
|
|
|
if ((env->psw.mask & PSW_MASK_PER) &&
|
|
|
|
(env->cregs[9] & PER_CR9_EVENT_STORE) &&
|
|
|
|
(env->cregs[9] & PER_CR9_EVENT_STORE_REAL)) {
|
|
|
|
/* PSW is saved just before calling the helper. */
|
|
|
|
env->per_address = env->psw.addr;
|
|
|
|
env->per_perc_atmid = PER_CODE_EVENT_STORE_REAL | get_per_atmid(env);
|
|
|
|
}
|
2013-09-20 20:04:28 +00:00
|
|
|
}
|
|
|
|
|
2012-09-02 07:33:34 +00:00
|
|
|
/* load real address */
|
2012-08-22 20:15:10 +00:00
|
|
|
uint64_t HELPER(lra)(CPUS390XState *env, uint64_t addr)
|
2012-09-02 07:33:34 +00:00
|
|
|
{
|
2013-08-26 06:31:06 +00:00
|
|
|
CPUState *cs = CPU(s390_env_get_cpu(env));
|
2012-09-02 07:33:34 +00:00
|
|
|
uint32_t cc = 0;
|
|
|
|
uint64_t asc = env->psw.mask & PSW_MASK_ASC;
|
|
|
|
uint64_t ret;
|
2017-05-22 20:59:02 +00:00
|
|
|
int old_exc, flags;
|
2012-09-02 07:33:34 +00:00
|
|
|
|
|
|
|
/* XXX incomplete - has more corner cases */
|
|
|
|
if (!(env->psw.mask & PSW_MASK_64) && (addr >> 32)) {
|
2017-05-22 20:59:02 +00:00
|
|
|
cpu_restore_state(cs, GETPC());
|
2012-09-02 07:33:34 +00:00
|
|
|
program_interrupt(env, PGM_SPECIAL_OP, 2);
|
|
|
|
}
|
|
|
|
|
2017-05-22 20:59:02 +00:00
|
|
|
old_exc = cs->exception_index;
|
2015-02-12 17:09:22 +00:00
|
|
|
if (mmu_translate(env, addr, 0, asc, &ret, &flags, true)) {
|
2012-09-02 07:33:34 +00:00
|
|
|
cc = 3;
|
|
|
|
}
|
2013-08-26 06:31:06 +00:00
|
|
|
if (cs->exception_index == EXCP_PGM) {
|
2012-09-02 07:33:34 +00:00
|
|
|
ret = env->int_pgm_code | 0x80000000;
|
|
|
|
} else {
|
|
|
|
ret |= addr & ~TARGET_PAGE_MASK;
|
|
|
|
}
|
2013-08-26 06:31:06 +00:00
|
|
|
cs->exception_index = old_exc;
|
2012-09-02 07:33:34 +00:00
|
|
|
|
2012-08-22 20:15:10 +00:00
|
|
|
env->cc_op = cc;
|
|
|
|
return ret;
|
2012-09-02 07:33:34 +00:00
|
|
|
}
|
|
|
|
#endif
|
2017-05-19 18:39:39 +00:00
|
|
|
|
2017-05-21 16:50:00 +00:00
|
|
|
/* Execute instruction. This instruction executes an insn modified with
|
|
|
|
the contents of r1. It does not change the executed instruction in memory;
|
|
|
|
it does not change the program counter.
|
|
|
|
|
|
|
|
Perform this by recording the modified instruction in env->ex_value.
|
|
|
|
This will be noticed by cpu_get_tb_cpu_state and thus tb translation.
|
2017-05-19 18:39:39 +00:00
|
|
|
*/
|
2017-05-24 18:49:53 +00:00
|
|
|
void HELPER(ex)(CPUS390XState *env, uint32_t ilen, uint64_t r1, uint64_t addr)
|
2017-05-19 18:39:39 +00:00
|
|
|
{
|
2017-05-24 18:49:53 +00:00
|
|
|
uint64_t insn = cpu_lduw_code(env, addr);
|
|
|
|
uint8_t opc = insn >> 8;
|
|
|
|
|
|
|
|
/* Or in the contents of R1[56:63]. */
|
|
|
|
insn |= r1 & 0xff;
|
|
|
|
|
|
|
|
/* Load the rest of the instruction. */
|
|
|
|
insn <<= 48;
|
|
|
|
switch (get_ilen(opc)) {
|
|
|
|
case 2:
|
|
|
|
break;
|
|
|
|
case 4:
|
|
|
|
insn |= (uint64_t)cpu_lduw_code(env, addr + 2) << 32;
|
|
|
|
break;
|
|
|
|
case 6:
|
|
|
|
insn |= (uint64_t)(uint32_t)cpu_ldl_code(env, addr + 2) << 16;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
g_assert_not_reached();
|
|
|
|
}
|
|
|
|
|
2017-05-24 21:34:10 +00:00
|
|
|
/* The very most common cases can be sped up by avoiding a new TB. */
|
|
|
|
if ((opc & 0xf0) == 0xd0) {
|
|
|
|
typedef uint32_t (*dx_helper)(CPUS390XState *, uint32_t, uint64_t,
|
|
|
|
uint64_t, uintptr_t);
|
|
|
|
static const dx_helper dx[16] = {
|
|
|
|
[0x2] = do_helper_mvc,
|
|
|
|
[0x4] = do_helper_nc,
|
|
|
|
[0x5] = do_helper_clc,
|
|
|
|
[0x6] = do_helper_oc,
|
|
|
|
[0x7] = do_helper_xc,
|
|
|
|
[0xc] = do_helper_tr,
|
|
|
|
[0xd] = do_helper_trt,
|
|
|
|
};
|
|
|
|
dx_helper helper = dx[opc & 0xf];
|
|
|
|
|
|
|
|
if (helper) {
|
|
|
|
uint32_t l = extract64(insn, 48, 8);
|
|
|
|
uint32_t b1 = extract64(insn, 44, 4);
|
|
|
|
uint32_t d1 = extract64(insn, 32, 12);
|
|
|
|
uint32_t b2 = extract64(insn, 28, 4);
|
|
|
|
uint32_t d2 = extract64(insn, 16, 12);
|
2017-05-31 22:01:13 +00:00
|
|
|
uint64_t a1 = wrap_address(env, env->regs[b1] + d1);
|
|
|
|
uint64_t a2 = wrap_address(env, env->regs[b2] + d2);
|
2017-05-24 21:34:10 +00:00
|
|
|
|
|
|
|
env->cc_op = helper(env, l, a1, a2, 0);
|
|
|
|
env->psw.addr += ilen;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
} else if (opc == 0x0a) {
|
|
|
|
env->int_svc_code = extract64(insn, 48, 8);
|
|
|
|
env->int_svc_ilen = ilen;
|
|
|
|
helper_exception(env, EXCP_SVC);
|
|
|
|
g_assert_not_reached();
|
|
|
|
}
|
|
|
|
|
2017-05-21 16:50:00 +00:00
|
|
|
/* Record the insn we want to execute as well as the ilen to use
|
|
|
|
during the execution of the target insn. This will also ensure
|
|
|
|
that ex_value is non-zero, which flags that we are in a state
|
|
|
|
that requires such execution. */
|
|
|
|
env->ex_value = insn | ilen;
|
2017-05-19 18:39:39 +00:00
|
|
|
}
|