2 * S/390 integer helper routines
4 * Copyright (c) 2009 Ulrich Hecht
5 * Copyright (c) 2009 Alexander Graf
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
22 #include "dyngen-exec.h"
23 #include "host-utils.h"
26 /* #define DEBUG_HELPER */
28 #define HELPER_LOG(x...) qemu_log(x)
30 #define HELPER_LOG(x...)
33 /* 64/64 -> 128 unsigned multiplication */
34 void HELPER(mlg)(uint32_t r1, uint64_t v2)
36 #if HOST_LONG_BITS == 64 && defined(__GNUC__)
37 /* assuming 64-bit hosts have __uint128_t */
38 __uint128_t res = (__uint128_t)env->regs[r1 + 1];
40 res *= (__uint128_t)v2;
41 env->regs[r1] = (uint64_t)(res >> 64);
42 env->regs[r1 + 1] = (uint64_t)res;
44 mulu64(&env->regs[r1 + 1], &env->regs[r1], env->regs[r1 + 1], v2);
48 /* 128 -> 64/64 unsigned division */
49 void HELPER(dlg)(uint32_t r1, uint64_t v2)
51 uint64_t divisor = v2;
54 /* 64 -> 64/64 case */
55 env->regs[r1] = env->regs[r1 + 1] % divisor;
56 env->regs[r1 + 1] = env->regs[r1 + 1] / divisor;
59 #if HOST_LONG_BITS == 64 && defined(__GNUC__)
60 /* assuming 64-bit hosts have __uint128_t */
61 __uint128_t dividend = (((__uint128_t)env->regs[r1]) << 64) |
63 __uint128_t quotient = dividend / divisor;
64 __uint128_t remainder = dividend % divisor;
66 env->regs[r1 + 1] = quotient;
67 env->regs[r1] = remainder;
69 /* 32-bit hosts would need special wrapper functionality - just abort if
70 we encounter such a case; it's very unlikely anyways. */
71 cpu_abort(env, "128 -> 64/64 division not implemented\n");
76 /* absolute value 32-bit */
77 uint32_t HELPER(abs_i32)(int32_t val)
86 /* negative absolute value 32-bit */
87 int32_t HELPER(nabs_i32)(int32_t val)
96 /* absolute value 64-bit */
97 uint64_t HELPER(abs_i64)(int64_t val)
99 HELPER_LOG("%s: val 0x%" PRIx64 "\n", __func__, val);
108 /* negative absolute value 64-bit */
109 int64_t HELPER(nabs_i64)(int64_t val)
118 /* add with carry 32-bit unsigned */
119 uint32_t HELPER(addc_u32)(uint32_t cc, uint32_t v1, uint32_t v2)
131 /* subtract unsigned v2 from v1 with borrow */
132 uint32_t HELPER(slb)(uint32_t cc, uint32_t r1, uint32_t v2)
134 uint32_t v1 = env->regs[r1];
135 uint32_t res = v1 + (~v2) + (cc >> 1);
137 env->regs[r1] = (env->regs[r1] & 0xffffffff00000000ULL) | res;
146 /* subtract unsigned v2 from v1 with borrow */
147 uint32_t HELPER(slbg)(uint32_t cc, uint32_t r1, uint64_t v1, uint64_t v2)
149 uint64_t res = v1 + (~v2) + (cc >> 1);
160 /* find leftmost one */
161 uint32_t HELPER(flogr)(uint32_t r1, uint64_t v2)
166 while (!(v2 & 0x8000000000000000ULL) && v2) {
173 env->regs[r1 + 1] = 0;
177 env->regs[r1 + 1] = ov2 & ~(0x8000000000000000ULL >> res);
182 uint64_t HELPER(cvd)(int32_t bin)
193 for (shift = 4; (shift < 64) && bin; shift += 4) {
194 int current_number = bin % 10;
196 dec |= (current_number) << shift;