op_helper.c 6.9 KB
Newer Older
B
bellard 已提交
1 2
/*
 *  SH4 emulation
3
 *
B
bellard 已提交
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
 *  Copyright (c) 2005 Samuel Tardieu
 *
 * 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, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 */
#include <assert.h>
#include "exec.h"

#ifndef CONFIG_USER_ONLY

#define MMUSUFFIX _mmu

#define SHIFT 0
#include "softmmu_template.h"

#define SHIFT 1
#include "softmmu_template.h"

#define SHIFT 2
#include "softmmu_template.h"

#define SHIFT 3
#include "softmmu_template.h"

39
void tlb_fill(target_ulong addr, int is_write, int mmu_idx, void *retaddr)
B
bellard 已提交
40 41 42 43 44 45 46 47 48 49
{
    TranslationBlock *tb;
    CPUState *saved_env;
    unsigned long pc;
    int ret;

    /* XXX: hack to restore env in all cases, even if not called from
       generated code */
    saved_env = env;
    env = cpu_single_env;
50
    ret = cpu_sh4_handle_mmu_fault(env, addr, is_write, mmu_idx, 1);
B
bellard 已提交
51 52 53 54 55 56 57 58 59 60 61
    if (ret) {
	if (retaddr) {
	    /* now we have a real cpu fault */
	    pc = (unsigned long) retaddr;
	    tb = tb_find_pc(pc);
	    if (tb) {
		/* the PC is inside the translated code. It means that we have
		   a virtual CPU fault */
		cpu_restore_state(tb, env, pc, NULL);
	    }
	}
A
aurel32 已提交
62
	cpu_loop_exit();
B
bellard 已提交
63 64 65 66 67 68
    }
    env = saved_env;
}

#endif

A
aurel32 已提交
69 70 71 72 73 74 75 76 77 78
void helper_ldtlb(void)
{
#ifdef CONFIG_USER_ONLY
    /* XXXXX */
    assert(0);
#else
    cpu_load_tlb(env);
#endif
}

A
aurel32 已提交
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110
void helper_raise_illegal_instruction(void)
{
    env->exception_index = 0x180;
    cpu_loop_exit();
}

void helper_raise_slot_illegal_instruction(void)
{
    env->exception_index = 0x1a0;
    cpu_loop_exit();
}

void helper_debug(void)
{
    env->exception_index = EXCP_DEBUG;
    cpu_loop_exit();
}

void helper_sleep(void)
{
    env->halted = 1;
    env->exception_index = EXCP_HLT;
    cpu_loop_exit();
}

void helper_trapa(uint32_t tra)
{
    env->tra = tra << 2;
    env->exception_index = 0x160;
    cpu_loop_exit();
}

111
uint32_t helper_addc(uint32_t arg0, uint32_t arg1)
B
bellard 已提交
112 113 114
{
    uint32_t tmp0, tmp1;

115 116 117
    tmp1 = arg0 + arg1;
    tmp0 = arg1;
    arg1 = tmp1 + (env->sr & 1);
B
bellard 已提交
118 119 120 121
    if (tmp0 > tmp1)
	env->sr |= SR_T;
    else
	env->sr &= ~SR_T;
122
    if (tmp1 > arg1)
B
bellard 已提交
123
	env->sr |= SR_T;
124
    return arg1;
B
bellard 已提交
125 126
}

127
uint32_t helper_addv(uint32_t arg0, uint32_t arg1)
B
bellard 已提交
128 129 130
{
    uint32_t dest, src, ans;

131
    if ((int32_t) arg1 >= 0)
B
bellard 已提交
132 133 134
	dest = 0;
    else
	dest = 1;
135
    if ((int32_t) arg0 >= 0)
B
bellard 已提交
136 137 138 139
	src = 0;
    else
	src = 1;
    src += dest;
140 141
    arg1 += arg0;
    if ((int32_t) arg1 >= 0)
B
bellard 已提交
142 143 144 145 146 147 148 149 150 151 152
	ans = 0;
    else
	ans = 1;
    ans += dest;
    if (src == 0 || src == 2) {
	if (ans == 1)
	    env->sr |= SR_T;
	else
	    env->sr &= ~SR_T;
    } else
	env->sr &= ~SR_T;
153
    return arg1;
B
bellard 已提交
154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170
}

#define T (env->sr & SR_T)
#define Q (env->sr & SR_Q ? 1 : 0)
#define M (env->sr & SR_M ? 1 : 0)
#define SETT env->sr |= SR_T
#define CLRT env->sr &= ~SR_T
#define SETQ env->sr |= SR_Q
#define CLRQ env->sr &= ~SR_Q
#define SETM env->sr |= SR_M
#define CLRM env->sr &= ~SR_M

void helper_div1_T0_T1(void)
{
    uint32_t tmp0, tmp2;
    uint8_t old_q, tmp1 = 0xff;

P
pbrook 已提交
171
    //printf("div1 T0=0x%08x T1=0x%08x M=%d Q=%d T=%d\n", T0, T1, M, Q, T);
B
bellard 已提交
172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269
    old_q = Q;
    if ((0x80000000 & T1) != 0)
	SETQ;
    else
	CLRQ;
    tmp2 = T0;
    T1 <<= 1;
    T1 |= T;
    switch (old_q) {
    case 0:
	switch (M) {
	case 0:
	    tmp0 = T1;
	    T1 -= tmp2;
	    tmp1 = T1 > tmp0;
	    switch (Q) {
	    case 0:
		if (tmp1)
		    SETQ;
		else
		    CLRQ;
		break;
	    case 1:
		if (tmp1 == 0)
		    SETQ;
		else
		    CLRQ;
		break;
	    }
	    break;
	case 1:
	    tmp0 = T1;
	    T1 += tmp2;
	    tmp1 = T1 < tmp0;
	    switch (Q) {
	    case 0:
		if (tmp1 == 0)
		    SETQ;
		else
		    CLRQ;
		break;
	    case 1:
		if (tmp1)
		    SETQ;
		else
		    CLRQ;
		break;
	    }
	    break;
	}
	break;
    case 1:
	switch (M) {
	case 0:
	    tmp0 = T1;
	    T1 += tmp2;
	    tmp1 = T1 < tmp0;
	    switch (Q) {
	    case 0:
		if (tmp1)
		    SETQ;
		else
		    CLRQ;
		break;
	    case 1:
		if (tmp1 == 0)
		    SETQ;
		else
		    CLRQ;
		break;
	    }
	    break;
	case 1:
	    tmp0 = T1;
	    T1 -= tmp2;
	    tmp1 = T1 > tmp0;
	    switch (Q) {
	    case 0:
		if (tmp1 == 0)
		    SETQ;
		else
		    CLRQ;
		break;
	    case 1:
		if (tmp1)
		    SETQ;
		else
		    CLRQ;
		break;
	    }
	    break;
	}
	break;
    }
    if (Q == M)
	SETT;
    else
	CLRT;
P
pbrook 已提交
270
    //printf("Output: T1=0x%08x M=%d Q=%d T=%d\n", T1, M, Q, T);
B
bellard 已提交
271 272
}

273
void helper_macl(uint32_t arg0, uint32_t arg1)
B
bellard 已提交
274 275 276 277
{
    int64_t res;

    res = ((uint64_t) env->mach << 32) | env->macl;
278
    res += (int64_t) (int32_t) arg0 *(int64_t) (int32_t) arg1;
B
bellard 已提交
279 280 281 282 283 284 285 286 287 288
    env->mach = (res >> 32) & 0xffffffff;
    env->macl = res & 0xffffffff;
    if (env->sr & SR_S) {
	if (res < 0)
	    env->mach |= 0xffff0000;
	else
	    env->mach &= 0x00007fff;
    }
}

289
void helper_macw(uint32_t arg0, uint32_t arg1)
B
bellard 已提交
290 291 292 293
{
    int64_t res;

    res = ((uint64_t) env->mach << 32) | env->macl;
294
    res += (int64_t) (int16_t) arg0 *(int64_t) (int16_t) arg1;
B
bellard 已提交
295 296 297 298 299 300 301 302 303 304 305 306 307
    env->mach = (res >> 32) & 0xffffffff;
    env->macl = res & 0xffffffff;
    if (env->sr & SR_S) {
	if (res < -0x80000000) {
	    env->mach = 1;
	    env->macl = 0x80000000;
	} else if (res > 0x000000007fffffff) {
	    env->mach = 1;
	    env->macl = 0x7fffffff;
	}
    }
}

308
uint32_t helper_negc(uint32_t arg)
B
bellard 已提交
309 310 311
{
    uint32_t temp;

312 313
    temp = -arg;
    arg = temp - (env->sr & SR_T);
B
bellard 已提交
314 315 316 317
    if (0 < temp)
	env->sr |= SR_T;
    else
	env->sr &= ~SR_T;
318
    if (temp < arg)
B
bellard 已提交
319
	env->sr |= SR_T;
320
    return arg;
B
bellard 已提交
321 322
}

323
uint32_t helper_subc(uint32_t arg0, uint32_t arg1)
B
bellard 已提交
324 325 326
{
    uint32_t tmp0, tmp1;

327 328 329
    tmp1 = arg1 - arg0;
    tmp0 = arg1;
    arg1 = tmp1 - (env->sr & SR_T);
B
bellard 已提交
330 331 332 333
    if (tmp0 < tmp1)
	env->sr |= SR_T;
    else
	env->sr &= ~SR_T;
334
    if (tmp1 < arg1)
B
bellard 已提交
335
	env->sr |= SR_T;
336
    return arg1;
B
bellard 已提交
337 338
}

339
uint32_t helper_subv(uint32_t arg0, uint32_t arg1)
B
bellard 已提交
340 341 342
{
    int32_t dest, src, ans;

343
    if ((int32_t) arg1 >= 0)
B
bellard 已提交
344 345 346
	dest = 0;
    else
	dest = 1;
347
    if ((int32_t) arg0 >= 0)
B
bellard 已提交
348 349 350 351
	src = 0;
    else
	src = 1;
    src += dest;
352 353
    arg1 -= arg0;
    if ((int32_t) arg1 >= 0)
B
bellard 已提交
354 355 356 357 358 359 360 361 362 363 364
	ans = 0;
    else
	ans = 1;
    ans += dest;
    if (src == 1) {
	if (ans == 1)
	    env->sr |= SR_T;
	else
	    env->sr &= ~SR_T;
    } else
	env->sr &= ~SR_T;
365
    return arg1;
B
bellard 已提交
366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390
}

void helper_rotcl(uint32_t * addr)
{
    uint32_t new;

    new = (*addr << 1) | (env->sr & SR_T);
    if (*addr & 0x80000000)
	env->sr |= SR_T;
    else
	env->sr &= ~SR_T;
    *addr = new;
}

void helper_rotcr(uint32_t * addr)
{
    uint32_t new;

    new = (*addr >> 1) | ((env->sr & SR_T) ? 0x80000000 : 0);
    if (*addr & 1)
	env->sr |= SR_T;
    else
	env->sr &= ~SR_T;
    *addr = new;
}