diff options
author | Richard Henderson <rth@twiddle.net> | 2011-05-20 13:21:15 -0700 |
---|---|---|
committer | Richard Henderson <rth@anchor.twiddle.net> | 2011-05-31 10:18:05 -0700 |
commit | 508b43eaf3dd179363557bf68e911ddea637e58b (patch) | |
tree | 7b2c22681c515dc0a57f0179e61f14e11aefa661 /target-alpha/op_helper.c | |
parent | 8417845ee9dbb2881409bac75365099d17d1cc3d (diff) |
target-alpha: Merge HW_REI and HW_RET implementations.
Signed-off-by: Richard Henderson <rth@twiddle.net>
Diffstat (limited to 'target-alpha/op_helper.c')
-rw-r--r-- | target-alpha/op_helper.c | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/target-alpha/op_helper.c b/target-alpha/op_helper.c index a90c7a6490..ea11cd2cc9 100644 --- a/target-alpha/op_helper.c +++ b/target-alpha/op_helper.c @@ -1156,22 +1156,12 @@ uint64_t helper_cvtqg (uint64_t a) /* PALcode support special instructions */ #if !defined (CONFIG_USER_ONLY) -void helper_hw_rei (void) -{ - env->pc = env->ipr[IPR_EXC_ADDR] & ~3; - env->ipr[IPR_EXC_ADDR] = env->ipr[IPR_EXC_ADDR] & 1; - env->intr_flag = 0; - env->lock_addr = -1; - /* XXX: re-enable interrupts and memory mapping */ -} - void helper_hw_ret (uint64_t a) { env->pc = a & ~3; env->ipr[IPR_EXC_ADDR] = a & 1; env->intr_flag = 0; env->lock_addr = -1; - /* XXX: re-enable interrupts and memory mapping */ } uint64_t helper_mfpr (int iprn, uint64_t val) |