4 * Copyright (c) 2005 CodeSourcery, LLC
6 * This library is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU Lesser General Public
8 * License as published by the Free Software Foundation; either
9 * version 2 of the License, or (at your option) any later version.
11 * This library is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * Lesser General Public License for more details.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
22 void raise_exception(int tt
)
24 env
->exception_index
= tt
;
30 spinlock_t global_cpu_lock
= SPIN_LOCK_UNLOCKED
;
34 spin_lock(&global_cpu_lock
);
39 spin_unlock(&global_cpu_lock
);
44 void do_vfp_abss(void)
46 FT0s
= float32_abs(FT0s
);
49 void do_vfp_absd(void)
51 FT0d
= float64_abs(FT0d
);
54 void do_vfp_sqrts(void)
56 FT0s
= float32_sqrt(FT0s
, &env
->vfp
.fp_status
);
59 void do_vfp_sqrtd(void)
61 FT0d
= float64_sqrt(FT0d
, &env
->vfp
.fp_status
);
64 /* XXX: check quiet/signaling case */
65 #define DO_VFP_cmp(p, size) \
66 void do_vfp_cmp##p(void) \
69 switch(float ## size ## _compare_quiet(FT0##p, FT1##p, &env->vfp.fp_status)) {\
70 case 0: flags = 0x6; break;\
71 case -1: flags = 0x8; break;\
72 case 1: flags = 0x2; break;\
73 default: case 2: flags = 0x3; break;\
75 env->vfp.xregs[ARM_VFP_FPSCR] = (flags << 28)\
76 | (env->vfp.xregs[ARM_VFP_FPSCR] & 0x0fffffff); \
80 void do_vfp_cmpe##p(void) \
83 switch(float ## size ## _compare(FT0##p, FT1##p, &env->vfp.fp_status)) {\
84 case 0: flags = 0x6; break;\
85 case -1: flags = 0x8; break;\
86 case 1: flags = 0x2; break;\
87 default: case 2: flags = 0x3; break;\
89 env->vfp.xregs[ARM_VFP_FPSCR] = (flags << 28)\
90 | (env->vfp.xregs[ARM_VFP_FPSCR] & 0x0fffffff); \
97 /* Convert host exception flags to vfp form. */
98 static inline int vfp_exceptbits_from_host(int host_bits
)
102 if (host_bits
& float_flag_invalid
)
104 if (host_bits
& float_flag_divbyzero
)
106 if (host_bits
& float_flag_overflow
)
108 if (host_bits
& float_flag_underflow
)
110 if (host_bits
& float_flag_inexact
)
115 /* Convert vfp exception flags to target form. */
116 static inline int vfp_exceptbits_to_host(int target_bits
)
121 host_bits
|= float_flag_invalid
;
123 host_bits
|= float_flag_divbyzero
;
125 host_bits
|= float_flag_overflow
;
127 host_bits
|= float_flag_underflow
;
128 if (target_bits
& 0x10)
129 host_bits
|= float_flag_inexact
;
133 void do_vfp_set_fpscr(void)
138 changed
= env
->vfp
.xregs
[ARM_VFP_FPSCR
];
139 env
->vfp
.xregs
[ARM_VFP_FPSCR
] = (T0
& 0xffc8ffff);
140 env
->vfp
.vec_len
= (T0
>> 16) & 7;
141 env
->vfp
.vec_stride
= (T0
>> 20) & 3;
144 if (changed
& (3 << 22)) {
148 i
= float_round_nearest_even
;
154 i
= float_round_down
;
157 i
= float_round_to_zero
;
160 set_float_rounding_mode(i
, &env
->vfp
.fp_status
);
163 i
= vfp_exceptbits_to_host((T0
>> 8) & 0x1f);
164 set_float_exception_flags(i
, &env
->vfp
.fp_status
);
165 /* XXX: FZ and DN are not implemented. */
168 void do_vfp_get_fpscr(void)
172 T0
= (env
->vfp
.xregs
[ARM_VFP_FPSCR
] & 0xffc8ffff) | (env
->vfp
.vec_len
<< 16)
173 | (env
->vfp
.vec_stride
<< 20);
174 i
= get_float_exception_flags(&env
->vfp
.fp_status
);
175 T0
|= vfp_exceptbits_from_host(i
);
178 #if !defined(CONFIG_USER_ONLY)
180 #define MMUSUFFIX _mmu
181 #define GETPC() (__builtin_return_address(0))
184 #include "softmmu_template.h"
187 #include "softmmu_template.h"
190 #include "softmmu_template.h"
193 #include "softmmu_template.h"
195 /* try to fill the TLB and return an exception if error. If retaddr is
196 NULL, it means that the function was called in C code (i.e. not
197 from generated code or from helper.c) */
198 /* XXX: fix it to restore all registers */
199 void tlb_fill (target_ulong addr
, int is_write
, int is_user
, void *retaddr
)
201 TranslationBlock
*tb
;
203 target_phys_addr_t pc
;
206 /* XXX: hack to restore env in all cases, even if not called from
209 env
= cpu_single_env
;
210 ret
= cpu_arm_handle_mmu_fault(env
, addr
, is_write
, is_user
, 1);
211 if (__builtin_expect(ret
, 0)) {
213 /* now we have a real cpu fault */
214 pc
= (target_phys_addr_t
)retaddr
;
217 /* the PC is inside the translated code. It means that we have
218 a virtual CPU fault */
219 cpu_restore_state(tb
, env
, pc
, NULL
);
222 raise_exception(env
->exception_index
);