]> git.proxmox.com Git - mirror_qemu.git/blame - target/hppa/translate.c
target/hppa: Pass d to do_sed_cond
[mirror_qemu.git] / target / hppa / translate.c
CommitLineData
61766fe9
RH
1/*
2 * HPPA emulation cpu translation for qemu.
3 *
4 * Copyright (c) 2016 Richard Henderson <rth@twiddle.net>
5 *
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
d6ea4236 9 * version 2.1 of the License, or (at your option) any later version.
61766fe9
RH
10 *
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.
15 *
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
18 */
19
20#include "qemu/osdep.h"
21#include "cpu.h"
22#include "disas/disas.h"
23#include "qemu/host-utils.h"
24#include "exec/exec-all.h"
dcb32f1d 25#include "tcg/tcg-op.h"
61766fe9
RH
26#include "exec/helper-proto.h"
27#include "exec/helper-gen.h"
869051ea 28#include "exec/translator.h"
61766fe9
RH
29#include "exec/log.h"
30
d53106c9
RH
31#define HELPER_H "helper.h"
32#include "exec/helper-info.c.inc"
33#undef HELPER_H
34
35
eaa3783b
RH
36/* Since we have a distinction between register size and address size,
37 we need to redefine all of these. */
38
39#undef TCGv
40#undef tcg_temp_new
eaa3783b 41#undef tcg_global_mem_new
eaa3783b
RH
42
43#if TARGET_LONG_BITS == 64
44#define TCGv_tl TCGv_i64
45#define tcg_temp_new_tl tcg_temp_new_i64
eaa3783b
RH
46#if TARGET_REGISTER_BITS == 64
47#define tcg_gen_extu_reg_tl tcg_gen_mov_i64
48#else
49#define tcg_gen_extu_reg_tl tcg_gen_extu_i32_i64
50#endif
51#else
52#define TCGv_tl TCGv_i32
53#define tcg_temp_new_tl tcg_temp_new_i32
eaa3783b
RH
54#define tcg_gen_extu_reg_tl tcg_gen_mov_i32
55#endif
56
57#if TARGET_REGISTER_BITS == 64
58#define TCGv_reg TCGv_i64
59
60#define tcg_temp_new tcg_temp_new_i64
eaa3783b 61#define tcg_global_mem_new tcg_global_mem_new_i64
eaa3783b
RH
62
63#define tcg_gen_movi_reg tcg_gen_movi_i64
64#define tcg_gen_mov_reg tcg_gen_mov_i64
65#define tcg_gen_ld8u_reg tcg_gen_ld8u_i64
66#define tcg_gen_ld8s_reg tcg_gen_ld8s_i64
67#define tcg_gen_ld16u_reg tcg_gen_ld16u_i64
68#define tcg_gen_ld16s_reg tcg_gen_ld16s_i64
69#define tcg_gen_ld32u_reg tcg_gen_ld32u_i64
70#define tcg_gen_ld32s_reg tcg_gen_ld32s_i64
71#define tcg_gen_ld_reg tcg_gen_ld_i64
72#define tcg_gen_st8_reg tcg_gen_st8_i64
73#define tcg_gen_st16_reg tcg_gen_st16_i64
74#define tcg_gen_st32_reg tcg_gen_st32_i64
75#define tcg_gen_st_reg tcg_gen_st_i64
76#define tcg_gen_add_reg tcg_gen_add_i64
77#define tcg_gen_addi_reg tcg_gen_addi_i64
78#define tcg_gen_sub_reg tcg_gen_sub_i64
79#define tcg_gen_neg_reg tcg_gen_neg_i64
80#define tcg_gen_subfi_reg tcg_gen_subfi_i64
81#define tcg_gen_subi_reg tcg_gen_subi_i64
82#define tcg_gen_and_reg tcg_gen_and_i64
83#define tcg_gen_andi_reg tcg_gen_andi_i64
84#define tcg_gen_or_reg tcg_gen_or_i64
85#define tcg_gen_ori_reg tcg_gen_ori_i64
86#define tcg_gen_xor_reg tcg_gen_xor_i64
87#define tcg_gen_xori_reg tcg_gen_xori_i64
88#define tcg_gen_not_reg tcg_gen_not_i64
89#define tcg_gen_shl_reg tcg_gen_shl_i64
90#define tcg_gen_shli_reg tcg_gen_shli_i64
91#define tcg_gen_shr_reg tcg_gen_shr_i64
92#define tcg_gen_shri_reg tcg_gen_shri_i64
93#define tcg_gen_sar_reg tcg_gen_sar_i64
94#define tcg_gen_sari_reg tcg_gen_sari_i64
95#define tcg_gen_brcond_reg tcg_gen_brcond_i64
96#define tcg_gen_brcondi_reg tcg_gen_brcondi_i64
97#define tcg_gen_setcond_reg tcg_gen_setcond_i64
98#define tcg_gen_setcondi_reg tcg_gen_setcondi_i64
99#define tcg_gen_mul_reg tcg_gen_mul_i64
100#define tcg_gen_muli_reg tcg_gen_muli_i64
101#define tcg_gen_div_reg tcg_gen_div_i64
102#define tcg_gen_rem_reg tcg_gen_rem_i64
103#define tcg_gen_divu_reg tcg_gen_divu_i64
104#define tcg_gen_remu_reg tcg_gen_remu_i64
105#define tcg_gen_discard_reg tcg_gen_discard_i64
106#define tcg_gen_trunc_reg_i32 tcg_gen_extrl_i64_i32
107#define tcg_gen_trunc_i64_reg tcg_gen_mov_i64
108#define tcg_gen_extu_i32_reg tcg_gen_extu_i32_i64
109#define tcg_gen_ext_i32_reg tcg_gen_ext_i32_i64
110#define tcg_gen_extu_reg_i64 tcg_gen_mov_i64
111#define tcg_gen_ext_reg_i64 tcg_gen_mov_i64
112#define tcg_gen_ext8u_reg tcg_gen_ext8u_i64
113#define tcg_gen_ext8s_reg tcg_gen_ext8s_i64
114#define tcg_gen_ext16u_reg tcg_gen_ext16u_i64
115#define tcg_gen_ext16s_reg tcg_gen_ext16s_i64
116#define tcg_gen_ext32u_reg tcg_gen_ext32u_i64
117#define tcg_gen_ext32s_reg tcg_gen_ext32s_i64
118#define tcg_gen_bswap16_reg tcg_gen_bswap16_i64
119#define tcg_gen_bswap32_reg tcg_gen_bswap32_i64
120#define tcg_gen_bswap64_reg tcg_gen_bswap64_i64
121#define tcg_gen_concat_reg_i64 tcg_gen_concat32_i64
122#define tcg_gen_andc_reg tcg_gen_andc_i64
123#define tcg_gen_eqv_reg tcg_gen_eqv_i64
124#define tcg_gen_nand_reg tcg_gen_nand_i64
125#define tcg_gen_nor_reg tcg_gen_nor_i64
126#define tcg_gen_orc_reg tcg_gen_orc_i64
127#define tcg_gen_clz_reg tcg_gen_clz_i64
128#define tcg_gen_ctz_reg tcg_gen_ctz_i64
129#define tcg_gen_clzi_reg tcg_gen_clzi_i64
130#define tcg_gen_ctzi_reg tcg_gen_ctzi_i64
131#define tcg_gen_clrsb_reg tcg_gen_clrsb_i64
132#define tcg_gen_ctpop_reg tcg_gen_ctpop_i64
133#define tcg_gen_rotl_reg tcg_gen_rotl_i64
134#define tcg_gen_rotli_reg tcg_gen_rotli_i64
135#define tcg_gen_rotr_reg tcg_gen_rotr_i64
136#define tcg_gen_rotri_reg tcg_gen_rotri_i64
137#define tcg_gen_deposit_reg tcg_gen_deposit_i64
138#define tcg_gen_deposit_z_reg tcg_gen_deposit_z_i64
139#define tcg_gen_extract_reg tcg_gen_extract_i64
140#define tcg_gen_sextract_reg tcg_gen_sextract_i64
05bfd4db 141#define tcg_gen_extract2_reg tcg_gen_extract2_i64
29dd6f64 142#define tcg_constant_reg tcg_constant_i64
eaa3783b
RH
143#define tcg_gen_movcond_reg tcg_gen_movcond_i64
144#define tcg_gen_add2_reg tcg_gen_add2_i64
145#define tcg_gen_sub2_reg tcg_gen_sub2_i64
146#define tcg_gen_qemu_ld_reg tcg_gen_qemu_ld_i64
147#define tcg_gen_qemu_st_reg tcg_gen_qemu_st_i64
148#define tcg_gen_atomic_xchg_reg tcg_gen_atomic_xchg_i64
5bfa8034 149#define tcg_gen_trunc_reg_ptr tcg_gen_trunc_i64_ptr
eaa3783b
RH
150#else
151#define TCGv_reg TCGv_i32
152#define tcg_temp_new tcg_temp_new_i32
eaa3783b 153#define tcg_global_mem_new tcg_global_mem_new_i32
eaa3783b
RH
154
155#define tcg_gen_movi_reg tcg_gen_movi_i32
156#define tcg_gen_mov_reg tcg_gen_mov_i32
157#define tcg_gen_ld8u_reg tcg_gen_ld8u_i32
158#define tcg_gen_ld8s_reg tcg_gen_ld8s_i32
159#define tcg_gen_ld16u_reg tcg_gen_ld16u_i32
160#define tcg_gen_ld16s_reg tcg_gen_ld16s_i32
161#define tcg_gen_ld32u_reg tcg_gen_ld_i32
162#define tcg_gen_ld32s_reg tcg_gen_ld_i32
163#define tcg_gen_ld_reg tcg_gen_ld_i32
164#define tcg_gen_st8_reg tcg_gen_st8_i32
165#define tcg_gen_st16_reg tcg_gen_st16_i32
166#define tcg_gen_st32_reg tcg_gen_st32_i32
167#define tcg_gen_st_reg tcg_gen_st_i32
168#define tcg_gen_add_reg tcg_gen_add_i32
169#define tcg_gen_addi_reg tcg_gen_addi_i32
170#define tcg_gen_sub_reg tcg_gen_sub_i32
171#define tcg_gen_neg_reg tcg_gen_neg_i32
172#define tcg_gen_subfi_reg tcg_gen_subfi_i32
173#define tcg_gen_subi_reg tcg_gen_subi_i32
174#define tcg_gen_and_reg tcg_gen_and_i32
175#define tcg_gen_andi_reg tcg_gen_andi_i32
176#define tcg_gen_or_reg tcg_gen_or_i32
177#define tcg_gen_ori_reg tcg_gen_ori_i32
178#define tcg_gen_xor_reg tcg_gen_xor_i32
179#define tcg_gen_xori_reg tcg_gen_xori_i32
180#define tcg_gen_not_reg tcg_gen_not_i32
181#define tcg_gen_shl_reg tcg_gen_shl_i32
182#define tcg_gen_shli_reg tcg_gen_shli_i32
183#define tcg_gen_shr_reg tcg_gen_shr_i32
184#define tcg_gen_shri_reg tcg_gen_shri_i32
185#define tcg_gen_sar_reg tcg_gen_sar_i32
186#define tcg_gen_sari_reg tcg_gen_sari_i32
187#define tcg_gen_brcond_reg tcg_gen_brcond_i32
188#define tcg_gen_brcondi_reg tcg_gen_brcondi_i32
189#define tcg_gen_setcond_reg tcg_gen_setcond_i32
190#define tcg_gen_setcondi_reg tcg_gen_setcondi_i32
191#define tcg_gen_mul_reg tcg_gen_mul_i32
192#define tcg_gen_muli_reg tcg_gen_muli_i32
193#define tcg_gen_div_reg tcg_gen_div_i32
194#define tcg_gen_rem_reg tcg_gen_rem_i32
195#define tcg_gen_divu_reg tcg_gen_divu_i32
196#define tcg_gen_remu_reg tcg_gen_remu_i32
197#define tcg_gen_discard_reg tcg_gen_discard_i32
198#define tcg_gen_trunc_reg_i32 tcg_gen_mov_i32
199#define tcg_gen_trunc_i64_reg tcg_gen_extrl_i64_i32
200#define tcg_gen_extu_i32_reg tcg_gen_mov_i32
201#define tcg_gen_ext_i32_reg tcg_gen_mov_i32
202#define tcg_gen_extu_reg_i64 tcg_gen_extu_i32_i64
203#define tcg_gen_ext_reg_i64 tcg_gen_ext_i32_i64
204#define tcg_gen_ext8u_reg tcg_gen_ext8u_i32
205#define tcg_gen_ext8s_reg tcg_gen_ext8s_i32
206#define tcg_gen_ext16u_reg tcg_gen_ext16u_i32
207#define tcg_gen_ext16s_reg tcg_gen_ext16s_i32
208#define tcg_gen_ext32u_reg tcg_gen_mov_i32
209#define tcg_gen_ext32s_reg tcg_gen_mov_i32
210#define tcg_gen_bswap16_reg tcg_gen_bswap16_i32
211#define tcg_gen_bswap32_reg tcg_gen_bswap32_i32
212#define tcg_gen_concat_reg_i64 tcg_gen_concat_i32_i64
213#define tcg_gen_andc_reg tcg_gen_andc_i32
214#define tcg_gen_eqv_reg tcg_gen_eqv_i32
215#define tcg_gen_nand_reg tcg_gen_nand_i32
216#define tcg_gen_nor_reg tcg_gen_nor_i32
217#define tcg_gen_orc_reg tcg_gen_orc_i32
218#define tcg_gen_clz_reg tcg_gen_clz_i32
219#define tcg_gen_ctz_reg tcg_gen_ctz_i32
220#define tcg_gen_clzi_reg tcg_gen_clzi_i32
221#define tcg_gen_ctzi_reg tcg_gen_ctzi_i32
222#define tcg_gen_clrsb_reg tcg_gen_clrsb_i32
223#define tcg_gen_ctpop_reg tcg_gen_ctpop_i32
224#define tcg_gen_rotl_reg tcg_gen_rotl_i32
225#define tcg_gen_rotli_reg tcg_gen_rotli_i32
226#define tcg_gen_rotr_reg tcg_gen_rotr_i32
227#define tcg_gen_rotri_reg tcg_gen_rotri_i32
228#define tcg_gen_deposit_reg tcg_gen_deposit_i32
229#define tcg_gen_deposit_z_reg tcg_gen_deposit_z_i32
230#define tcg_gen_extract_reg tcg_gen_extract_i32
231#define tcg_gen_sextract_reg tcg_gen_sextract_i32
05bfd4db 232#define tcg_gen_extract2_reg tcg_gen_extract2_i32
29dd6f64 233#define tcg_constant_reg tcg_constant_i32
eaa3783b
RH
234#define tcg_gen_movcond_reg tcg_gen_movcond_i32
235#define tcg_gen_add2_reg tcg_gen_add2_i32
236#define tcg_gen_sub2_reg tcg_gen_sub2_i32
237#define tcg_gen_qemu_ld_reg tcg_gen_qemu_ld_i32
238#define tcg_gen_qemu_st_reg tcg_gen_qemu_st_i32
239#define tcg_gen_atomic_xchg_reg tcg_gen_atomic_xchg_i32
5bfa8034 240#define tcg_gen_trunc_reg_ptr tcg_gen_ext_i32_ptr
eaa3783b
RH
241#endif /* TARGET_REGISTER_BITS */
242
61766fe9
RH
243typedef struct DisasCond {
244 TCGCond c;
eaa3783b 245 TCGv_reg a0, a1;
61766fe9
RH
246} DisasCond;
247
248typedef struct DisasContext {
d01a3625 249 DisasContextBase base;
61766fe9
RH
250 CPUState *cs;
251
eaa3783b
RH
252 target_ureg iaoq_f;
253 target_ureg iaoq_b;
254 target_ureg iaoq_n;
255 TCGv_reg iaoq_n_var;
61766fe9 256
61766fe9
RH
257 DisasCond null_cond;
258 TCGLabel *null_lab;
259
1a19da0d 260 uint32_t insn;
494737b7 261 uint32_t tb_flags;
3d68ee7b
RH
262 int mmu_idx;
263 int privilege;
61766fe9 264 bool psw_n_nonzero;
bd6243a3 265 bool is_pa20;
217d1a5e
RH
266
267#ifdef CONFIG_USER_ONLY
268 MemOp unalign;
269#endif
61766fe9
RH
270} DisasContext;
271
217d1a5e
RH
272#ifdef CONFIG_USER_ONLY
273#define UNALIGN(C) (C)->unalign
274#else
2d4afb03 275#define UNALIGN(C) MO_ALIGN
217d1a5e
RH
276#endif
277
e36f27ef 278/* Note that ssm/rsm instructions number PSW_W and PSW_E differently. */
451e4ffd 279static int expand_sm_imm(DisasContext *ctx, int val)
e36f27ef
RH
280{
281 if (val & PSW_SM_E) {
282 val = (val & ~PSW_SM_E) | PSW_E;
283 }
284 if (val & PSW_SM_W) {
285 val = (val & ~PSW_SM_W) | PSW_W;
286 }
287 return val;
288}
289
deee69a1 290/* Inverted space register indicates 0 means sr0 not inferred from base. */
451e4ffd 291static int expand_sr3x(DisasContext *ctx, int val)
deee69a1
RH
292{
293 return ~val;
294}
295
1cd012a5
RH
296/* Convert the M:A bits within a memory insn to the tri-state value
297 we use for the final M. */
451e4ffd 298static int ma_to_m(DisasContext *ctx, int val)
1cd012a5
RH
299{
300 return val & 2 ? (val & 1 ? -1 : 1) : 0;
301}
302
740038d7 303/* Convert the sign of the displacement to a pre or post-modify. */
451e4ffd 304static int pos_to_m(DisasContext *ctx, int val)
740038d7
RH
305{
306 return val ? 1 : -1;
307}
308
451e4ffd 309static int neg_to_m(DisasContext *ctx, int val)
740038d7
RH
310{
311 return val ? -1 : 1;
312}
313
314/* Used for branch targets and fp memory ops. */
451e4ffd 315static int expand_shl2(DisasContext *ctx, int val)
01afb7be
RH
316{
317 return val << 2;
318}
319
740038d7 320/* Used for fp memory ops. */
451e4ffd 321static int expand_shl3(DisasContext *ctx, int val)
740038d7
RH
322{
323 return val << 3;
324}
325
0588e061 326/* Used for assemble_21. */
451e4ffd 327static int expand_shl11(DisasContext *ctx, int val)
0588e061
RH
328{
329 return val << 11;
330}
331
01afb7be 332
40f9f908 333/* Include the auto-generated decoder. */
abff1abf 334#include "decode-insns.c.inc"
40f9f908 335
869051ea
RH
336/* We are not using a goto_tb (for whatever reason), but have updated
337 the iaq (for whatever reason), so don't do it again on exit. */
338#define DISAS_IAQ_N_UPDATED DISAS_TARGET_0
61766fe9 339
869051ea
RH
340/* We are exiting the TB, but have neither emitted a goto_tb, nor
341 updated the iaq for the next instruction to be executed. */
342#define DISAS_IAQ_N_STALE DISAS_TARGET_1
61766fe9 343
e1b5a5ed
RH
344/* Similarly, but we want to return to the main loop immediately
345 to recognize unmasked interrupts. */
346#define DISAS_IAQ_N_STALE_EXIT DISAS_TARGET_2
c5d0aec2 347#define DISAS_EXIT DISAS_TARGET_3
e1b5a5ed 348
61766fe9 349/* global register indexes */
eaa3783b 350static TCGv_reg cpu_gr[32];
33423472 351static TCGv_i64 cpu_sr[4];
494737b7 352static TCGv_i64 cpu_srH;
eaa3783b
RH
353static TCGv_reg cpu_iaoq_f;
354static TCGv_reg cpu_iaoq_b;
c301f34e
RH
355static TCGv_i64 cpu_iasq_f;
356static TCGv_i64 cpu_iasq_b;
eaa3783b
RH
357static TCGv_reg cpu_sar;
358static TCGv_reg cpu_psw_n;
359static TCGv_reg cpu_psw_v;
360static TCGv_reg cpu_psw_cb;
361static TCGv_reg cpu_psw_cb_msb;
61766fe9 362
61766fe9
RH
363void hppa_translate_init(void)
364{
365#define DEF_VAR(V) { &cpu_##V, #V, offsetof(CPUHPPAState, V) }
366
eaa3783b 367 typedef struct { TCGv_reg *var; const char *name; int ofs; } GlobalVar;
61766fe9 368 static const GlobalVar vars[] = {
35136a77 369 { &cpu_sar, "sar", offsetof(CPUHPPAState, cr[CR_SAR]) },
61766fe9
RH
370 DEF_VAR(psw_n),
371 DEF_VAR(psw_v),
372 DEF_VAR(psw_cb),
373 DEF_VAR(psw_cb_msb),
374 DEF_VAR(iaoq_f),
375 DEF_VAR(iaoq_b),
376 };
377
378#undef DEF_VAR
379
380 /* Use the symbolic register names that match the disassembler. */
381 static const char gr_names[32][4] = {
382 "r0", "r1", "r2", "r3", "r4", "r5", "r6", "r7",
383 "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15",
384 "r16", "r17", "r18", "r19", "r20", "r21", "r22", "r23",
385 "r24", "r25", "r26", "r27", "r28", "r29", "r30", "r31"
386 };
33423472 387 /* SR[4-7] are not global registers so that we can index them. */
494737b7
RH
388 static const char sr_names[5][4] = {
389 "sr0", "sr1", "sr2", "sr3", "srH"
33423472 390 };
61766fe9 391
61766fe9
RH
392 int i;
393
f764718d 394 cpu_gr[0] = NULL;
61766fe9 395 for (i = 1; i < 32; i++) {
ad75a51e 396 cpu_gr[i] = tcg_global_mem_new(tcg_env,
61766fe9
RH
397 offsetof(CPUHPPAState, gr[i]),
398 gr_names[i]);
399 }
33423472 400 for (i = 0; i < 4; i++) {
ad75a51e 401 cpu_sr[i] = tcg_global_mem_new_i64(tcg_env,
33423472
RH
402 offsetof(CPUHPPAState, sr[i]),
403 sr_names[i]);
404 }
ad75a51e 405 cpu_srH = tcg_global_mem_new_i64(tcg_env,
494737b7
RH
406 offsetof(CPUHPPAState, sr[4]),
407 sr_names[4]);
61766fe9
RH
408
409 for (i = 0; i < ARRAY_SIZE(vars); ++i) {
410 const GlobalVar *v = &vars[i];
ad75a51e 411 *v->var = tcg_global_mem_new(tcg_env, v->ofs, v->name);
61766fe9 412 }
c301f34e 413
ad75a51e 414 cpu_iasq_f = tcg_global_mem_new_i64(tcg_env,
c301f34e
RH
415 offsetof(CPUHPPAState, iasq_f),
416 "iasq_f");
ad75a51e 417 cpu_iasq_b = tcg_global_mem_new_i64(tcg_env,
c301f34e
RH
418 offsetof(CPUHPPAState, iasq_b),
419 "iasq_b");
61766fe9
RH
420}
421
129e9cc3
RH
422static DisasCond cond_make_f(void)
423{
f764718d
RH
424 return (DisasCond){
425 .c = TCG_COND_NEVER,
426 .a0 = NULL,
427 .a1 = NULL,
428 };
129e9cc3
RH
429}
430
df0232fe
RH
431static DisasCond cond_make_t(void)
432{
433 return (DisasCond){
434 .c = TCG_COND_ALWAYS,
435 .a0 = NULL,
436 .a1 = NULL,
437 };
438}
439
129e9cc3
RH
440static DisasCond cond_make_n(void)
441{
f764718d
RH
442 return (DisasCond){
443 .c = TCG_COND_NE,
444 .a0 = cpu_psw_n,
6e94937a 445 .a1 = tcg_constant_reg(0)
f764718d 446 };
129e9cc3
RH
447}
448
4fe9533a 449static DisasCond cond_make_tmp(TCGCond c, TCGv_reg a0, TCGv_reg a1)
129e9cc3 450{
129e9cc3 451 assert (c != TCG_COND_NEVER && c != TCG_COND_ALWAYS);
4fe9533a
RH
452 return (DisasCond){ .c = c, .a0 = a0, .a1 = a1 };
453}
454
455static DisasCond cond_make_0_tmp(TCGCond c, TCGv_reg a0)
456{
457 return cond_make_tmp(c, a0, tcg_constant_reg(0));
b47a4a02 458}
129e9cc3 459
b47a4a02
SS
460static DisasCond cond_make_0(TCGCond c, TCGv_reg a0)
461{
462 TCGv_reg tmp = tcg_temp_new();
463 tcg_gen_mov_reg(tmp, a0);
464 return cond_make_0_tmp(c, tmp);
129e9cc3
RH
465}
466
eaa3783b 467static DisasCond cond_make(TCGCond c, TCGv_reg a0, TCGv_reg a1)
129e9cc3 468{
4fe9533a
RH
469 TCGv_reg t0 = tcg_temp_new();
470 TCGv_reg t1 = tcg_temp_new();
129e9cc3 471
4fe9533a
RH
472 tcg_gen_mov_reg(t0, a0);
473 tcg_gen_mov_reg(t1, a1);
474 return cond_make_tmp(c, t0, t1);
129e9cc3
RH
475}
476
129e9cc3
RH
477static void cond_free(DisasCond *cond)
478{
479 switch (cond->c) {
480 default:
f764718d
RH
481 cond->a0 = NULL;
482 cond->a1 = NULL;
129e9cc3
RH
483 /* fallthru */
484 case TCG_COND_ALWAYS:
485 cond->c = TCG_COND_NEVER;
486 break;
487 case TCG_COND_NEVER:
488 break;
489 }
490}
491
eaa3783b 492static TCGv_reg load_gpr(DisasContext *ctx, unsigned reg)
61766fe9
RH
493{
494 if (reg == 0) {
e12c6309 495 TCGv_reg t = tcg_temp_new();
eaa3783b 496 tcg_gen_movi_reg(t, 0);
61766fe9
RH
497 return t;
498 } else {
499 return cpu_gr[reg];
500 }
501}
502
eaa3783b 503static TCGv_reg dest_gpr(DisasContext *ctx, unsigned reg)
61766fe9 504{
129e9cc3 505 if (reg == 0 || ctx->null_cond.c != TCG_COND_NEVER) {
e12c6309 506 return tcg_temp_new();
61766fe9
RH
507 } else {
508 return cpu_gr[reg];
509 }
510}
511
eaa3783b 512static void save_or_nullify(DisasContext *ctx, TCGv_reg dest, TCGv_reg t)
129e9cc3
RH
513{
514 if (ctx->null_cond.c != TCG_COND_NEVER) {
eaa3783b 515 tcg_gen_movcond_reg(ctx->null_cond.c, dest, ctx->null_cond.a0,
6e94937a 516 ctx->null_cond.a1, dest, t);
129e9cc3 517 } else {
eaa3783b 518 tcg_gen_mov_reg(dest, t);
129e9cc3
RH
519 }
520}
521
eaa3783b 522static void save_gpr(DisasContext *ctx, unsigned reg, TCGv_reg t)
129e9cc3
RH
523{
524 if (reg != 0) {
525 save_or_nullify(ctx, cpu_gr[reg], t);
526 }
527}
528
e03b5686 529#if HOST_BIG_ENDIAN
96d6407f
RH
530# define HI_OFS 0
531# define LO_OFS 4
532#else
533# define HI_OFS 4
534# define LO_OFS 0
535#endif
536
537static TCGv_i32 load_frw_i32(unsigned rt)
538{
539 TCGv_i32 ret = tcg_temp_new_i32();
ad75a51e 540 tcg_gen_ld_i32(ret, tcg_env,
96d6407f
RH
541 offsetof(CPUHPPAState, fr[rt & 31])
542 + (rt & 32 ? LO_OFS : HI_OFS));
543 return ret;
544}
545
ebe9383c
RH
546static TCGv_i32 load_frw0_i32(unsigned rt)
547{
548 if (rt == 0) {
0992a930
RH
549 TCGv_i32 ret = tcg_temp_new_i32();
550 tcg_gen_movi_i32(ret, 0);
551 return ret;
ebe9383c
RH
552 } else {
553 return load_frw_i32(rt);
554 }
555}
556
557static TCGv_i64 load_frw0_i64(unsigned rt)
558{
0992a930 559 TCGv_i64 ret = tcg_temp_new_i64();
ebe9383c 560 if (rt == 0) {
0992a930 561 tcg_gen_movi_i64(ret, 0);
ebe9383c 562 } else {
ad75a51e 563 tcg_gen_ld32u_i64(ret, tcg_env,
ebe9383c
RH
564 offsetof(CPUHPPAState, fr[rt & 31])
565 + (rt & 32 ? LO_OFS : HI_OFS));
ebe9383c 566 }
0992a930 567 return ret;
ebe9383c
RH
568}
569
96d6407f
RH
570static void save_frw_i32(unsigned rt, TCGv_i32 val)
571{
ad75a51e 572 tcg_gen_st_i32(val, tcg_env,
96d6407f
RH
573 offsetof(CPUHPPAState, fr[rt & 31])
574 + (rt & 32 ? LO_OFS : HI_OFS));
575}
576
577#undef HI_OFS
578#undef LO_OFS
579
580static TCGv_i64 load_frd(unsigned rt)
581{
582 TCGv_i64 ret = tcg_temp_new_i64();
ad75a51e 583 tcg_gen_ld_i64(ret, tcg_env, offsetof(CPUHPPAState, fr[rt]));
96d6407f
RH
584 return ret;
585}
586
ebe9383c
RH
587static TCGv_i64 load_frd0(unsigned rt)
588{
589 if (rt == 0) {
0992a930
RH
590 TCGv_i64 ret = tcg_temp_new_i64();
591 tcg_gen_movi_i64(ret, 0);
592 return ret;
ebe9383c
RH
593 } else {
594 return load_frd(rt);
595 }
596}
597
96d6407f
RH
598static void save_frd(unsigned rt, TCGv_i64 val)
599{
ad75a51e 600 tcg_gen_st_i64(val, tcg_env, offsetof(CPUHPPAState, fr[rt]));
96d6407f
RH
601}
602
33423472
RH
603static void load_spr(DisasContext *ctx, TCGv_i64 dest, unsigned reg)
604{
605#ifdef CONFIG_USER_ONLY
606 tcg_gen_movi_i64(dest, 0);
607#else
608 if (reg < 4) {
609 tcg_gen_mov_i64(dest, cpu_sr[reg]);
494737b7
RH
610 } else if (ctx->tb_flags & TB_FLAG_SR_SAME) {
611 tcg_gen_mov_i64(dest, cpu_srH);
33423472 612 } else {
ad75a51e 613 tcg_gen_ld_i64(dest, tcg_env, offsetof(CPUHPPAState, sr[reg]));
33423472
RH
614 }
615#endif
616}
617
129e9cc3
RH
618/* Skip over the implementation of an insn that has been nullified.
619 Use this when the insn is too complex for a conditional move. */
620static void nullify_over(DisasContext *ctx)
621{
622 if (ctx->null_cond.c != TCG_COND_NEVER) {
623 /* The always condition should have been handled in the main loop. */
624 assert(ctx->null_cond.c != TCG_COND_ALWAYS);
625
626 ctx->null_lab = gen_new_label();
129e9cc3
RH
627
628 /* If we're using PSW[N], copy it to a temp because... */
6e94937a 629 if (ctx->null_cond.a0 == cpu_psw_n) {
129e9cc3 630 ctx->null_cond.a0 = tcg_temp_new();
eaa3783b 631 tcg_gen_mov_reg(ctx->null_cond.a0, cpu_psw_n);
129e9cc3
RH
632 }
633 /* ... we clear it before branching over the implementation,
634 so that (1) it's clear after nullifying this insn and
635 (2) if this insn nullifies the next, PSW[N] is valid. */
636 if (ctx->psw_n_nonzero) {
637 ctx->psw_n_nonzero = false;
eaa3783b 638 tcg_gen_movi_reg(cpu_psw_n, 0);
129e9cc3
RH
639 }
640
eaa3783b 641 tcg_gen_brcond_reg(ctx->null_cond.c, ctx->null_cond.a0,
6e94937a 642 ctx->null_cond.a1, ctx->null_lab);
129e9cc3
RH
643 cond_free(&ctx->null_cond);
644 }
645}
646
647/* Save the current nullification state to PSW[N]. */
648static void nullify_save(DisasContext *ctx)
649{
650 if (ctx->null_cond.c == TCG_COND_NEVER) {
651 if (ctx->psw_n_nonzero) {
eaa3783b 652 tcg_gen_movi_reg(cpu_psw_n, 0);
129e9cc3
RH
653 }
654 return;
655 }
6e94937a 656 if (ctx->null_cond.a0 != cpu_psw_n) {
eaa3783b 657 tcg_gen_setcond_reg(ctx->null_cond.c, cpu_psw_n,
6e94937a 658 ctx->null_cond.a0, ctx->null_cond.a1);
129e9cc3
RH
659 ctx->psw_n_nonzero = true;
660 }
661 cond_free(&ctx->null_cond);
662}
663
664/* Set a PSW[N] to X. The intention is that this is used immediately
665 before a goto_tb/exit_tb, so that there is no fallthru path to other
666 code within the TB. Therefore we do not update psw_n_nonzero. */
667static void nullify_set(DisasContext *ctx, bool x)
668{
669 if (ctx->psw_n_nonzero || x) {
eaa3783b 670 tcg_gen_movi_reg(cpu_psw_n, x);
129e9cc3
RH
671 }
672}
673
674/* Mark the end of an instruction that may have been nullified.
40f9f908
RH
675 This is the pair to nullify_over. Always returns true so that
676 it may be tail-called from a translate function. */
31234768 677static bool nullify_end(DisasContext *ctx)
129e9cc3
RH
678{
679 TCGLabel *null_lab = ctx->null_lab;
31234768 680 DisasJumpType status = ctx->base.is_jmp;
129e9cc3 681
f49b3537
RH
682 /* For NEXT, NORETURN, STALE, we can easily continue (or exit).
683 For UPDATED, we cannot update on the nullified path. */
684 assert(status != DISAS_IAQ_N_UPDATED);
685
129e9cc3
RH
686 if (likely(null_lab == NULL)) {
687 /* The current insn wasn't conditional or handled the condition
688 applied to it without a branch, so the (new) setting of
689 NULL_COND can be applied directly to the next insn. */
31234768 690 return true;
129e9cc3
RH
691 }
692 ctx->null_lab = NULL;
693
694 if (likely(ctx->null_cond.c == TCG_COND_NEVER)) {
695 /* The next instruction will be unconditional,
696 and NULL_COND already reflects that. */
697 gen_set_label(null_lab);
698 } else {
699 /* The insn that we just executed is itself nullifying the next
700 instruction. Store the condition in the PSW[N] global.
701 We asserted PSW[N] = 0 in nullify_over, so that after the
702 label we have the proper value in place. */
703 nullify_save(ctx);
704 gen_set_label(null_lab);
705 ctx->null_cond = cond_make_n();
706 }
869051ea 707 if (status == DISAS_NORETURN) {
31234768 708 ctx->base.is_jmp = DISAS_NEXT;
129e9cc3 709 }
31234768 710 return true;
129e9cc3
RH
711}
712
698240d1
RH
713static target_ureg gva_offset_mask(DisasContext *ctx)
714{
715 return (ctx->tb_flags & PSW_W
716 ? MAKE_64BIT_MASK(0, 62)
717 : MAKE_64BIT_MASK(0, 32));
718}
719
741322f4
RH
720static void copy_iaoq_entry(DisasContext *ctx, TCGv_reg dest,
721 target_ureg ival, TCGv_reg vval)
61766fe9 722{
f13bf343
RH
723 target_ureg mask = gva_offset_mask(ctx);
724
725 if (ival != -1) {
726 tcg_gen_movi_reg(dest, ival & mask);
727 return;
728 }
729 tcg_debug_assert(vval != NULL);
730
731 /*
732 * We know that the IAOQ is already properly masked.
733 * This optimization is primarily for "iaoq_f = iaoq_b".
734 */
735 if (vval == cpu_iaoq_f || vval == cpu_iaoq_b) {
eaa3783b 736 tcg_gen_mov_reg(dest, vval);
61766fe9 737 } else {
f13bf343 738 tcg_gen_andi_reg(dest, vval, mask);
61766fe9
RH
739 }
740}
741
eaa3783b 742static inline target_ureg iaoq_dest(DisasContext *ctx, target_sreg disp)
61766fe9
RH
743{
744 return ctx->iaoq_f + disp + 8;
745}
746
747static void gen_excp_1(int exception)
748{
ad75a51e 749 gen_helper_excp(tcg_env, tcg_constant_i32(exception));
61766fe9
RH
750}
751
31234768 752static void gen_excp(DisasContext *ctx, int exception)
61766fe9 753{
741322f4
RH
754 copy_iaoq_entry(ctx, cpu_iaoq_f, ctx->iaoq_f, cpu_iaoq_f);
755 copy_iaoq_entry(ctx, cpu_iaoq_b, ctx->iaoq_b, cpu_iaoq_b);
129e9cc3 756 nullify_save(ctx);
61766fe9 757 gen_excp_1(exception);
31234768 758 ctx->base.is_jmp = DISAS_NORETURN;
61766fe9
RH
759}
760
31234768 761static bool gen_excp_iir(DisasContext *ctx, int exc)
1a19da0d 762{
31234768 763 nullify_over(ctx);
29dd6f64 764 tcg_gen_st_reg(tcg_constant_reg(ctx->insn),
ad75a51e 765 tcg_env, offsetof(CPUHPPAState, cr[CR_IIR]));
31234768
RH
766 gen_excp(ctx, exc);
767 return nullify_end(ctx);
1a19da0d
RH
768}
769
31234768 770static bool gen_illegal(DisasContext *ctx)
61766fe9 771{
31234768 772 return gen_excp_iir(ctx, EXCP_ILL);
61766fe9
RH
773}
774
40f9f908
RH
775#ifdef CONFIG_USER_ONLY
776#define CHECK_MOST_PRIVILEGED(EXCP) \
777 return gen_excp_iir(ctx, EXCP)
778#else
779#define CHECK_MOST_PRIVILEGED(EXCP) \
31234768
RH
780 do { \
781 if (ctx->privilege != 0) { \
782 return gen_excp_iir(ctx, EXCP); \
783 } \
e1b5a5ed 784 } while (0)
40f9f908 785#endif
e1b5a5ed 786
eaa3783b 787static bool use_goto_tb(DisasContext *ctx, target_ureg dest)
61766fe9 788{
57f91498 789 return translator_use_goto_tb(&ctx->base, dest);
61766fe9
RH
790}
791
129e9cc3
RH
792/* If the next insn is to be nullified, and it's on the same page,
793 and we're not attempting to set a breakpoint on it, then we can
794 totally skip the nullified insn. This avoids creating and
795 executing a TB that merely branches to the next TB. */
796static bool use_nullify_skip(DisasContext *ctx)
797{
798 return (((ctx->iaoq_b ^ ctx->iaoq_f) & TARGET_PAGE_MASK) == 0
799 && !cpu_breakpoint_test(ctx->cs, ctx->iaoq_b, BP_ANY));
800}
801
61766fe9 802static void gen_goto_tb(DisasContext *ctx, int which,
eaa3783b 803 target_ureg f, target_ureg b)
61766fe9
RH
804{
805 if (f != -1 && b != -1 && use_goto_tb(ctx, f)) {
806 tcg_gen_goto_tb(which);
a0180973
RH
807 copy_iaoq_entry(ctx, cpu_iaoq_f, f, NULL);
808 copy_iaoq_entry(ctx, cpu_iaoq_b, b, NULL);
07ea28b4 809 tcg_gen_exit_tb(ctx->base.tb, which);
61766fe9 810 } else {
741322f4
RH
811 copy_iaoq_entry(ctx, cpu_iaoq_f, f, cpu_iaoq_b);
812 copy_iaoq_entry(ctx, cpu_iaoq_b, b, ctx->iaoq_n_var);
8532a14e 813 tcg_gen_lookup_and_goto_ptr();
61766fe9
RH
814 }
815}
816
b47a4a02
SS
817static bool cond_need_sv(int c)
818{
819 return c == 2 || c == 3 || c == 6;
820}
821
822static bool cond_need_cb(int c)
823{
824 return c == 4 || c == 5;
825}
826
72ca8753
RH
827/* Need extensions from TCGv_i32 to TCGv_reg. */
828static bool cond_need_ext(DisasContext *ctx, bool d)
829{
a751eb31 830 return TARGET_REGISTER_BITS == 64 && !(ctx->is_pa20 && d);
72ca8753
RH
831}
832
b47a4a02
SS
833/*
834 * Compute conditional for arithmetic. See Page 5-3, Table 5-1, of
835 * the Parisc 1.1 Architecture Reference Manual for details.
836 */
b2167459 837
a751eb31
RH
838static DisasCond do_cond(DisasContext *ctx, unsigned cf, bool d,
839 TCGv_reg res, TCGv_reg cb_msb, TCGv_reg sv)
b2167459
RH
840{
841 DisasCond cond;
eaa3783b 842 TCGv_reg tmp;
b2167459
RH
843
844 switch (cf >> 1) {
b47a4a02 845 case 0: /* Never / TR (0 / 1) */
b2167459
RH
846 cond = cond_make_f();
847 break;
848 case 1: /* = / <> (Z / !Z) */
a751eb31
RH
849 if (cond_need_ext(ctx, d)) {
850 tmp = tcg_temp_new();
851 tcg_gen_ext32u_reg(tmp, res);
852 res = tmp;
853 }
b2167459
RH
854 cond = cond_make_0(TCG_COND_EQ, res);
855 break;
b47a4a02
SS
856 case 2: /* < / >= (N ^ V / !(N ^ V) */
857 tmp = tcg_temp_new();
858 tcg_gen_xor_reg(tmp, res, sv);
a751eb31
RH
859 if (cond_need_ext(ctx, d)) {
860 tcg_gen_ext32s_reg(tmp, tmp);
861 }
b47a4a02 862 cond = cond_make_0_tmp(TCG_COND_LT, tmp);
b2167459 863 break;
b47a4a02
SS
864 case 3: /* <= / > (N ^ V) | Z / !((N ^ V) | Z) */
865 /*
866 * Simplify:
867 * (N ^ V) | Z
868 * ((res < 0) ^ (sv < 0)) | !res
869 * ((res ^ sv) < 0) | !res
870 * (~(res ^ sv) >= 0) | !res
871 * !(~(res ^ sv) >> 31) | !res
872 * !(~(res ^ sv) >> 31 & res)
873 */
874 tmp = tcg_temp_new();
875 tcg_gen_eqv_reg(tmp, res, sv);
a751eb31
RH
876 if (cond_need_ext(ctx, d)) {
877 tcg_gen_sextract_reg(tmp, tmp, 31, 1);
878 tcg_gen_and_reg(tmp, tmp, res);
879 tcg_gen_ext32u_reg(tmp, tmp);
880 } else {
881 tcg_gen_sari_reg(tmp, tmp, TARGET_REGISTER_BITS - 1);
882 tcg_gen_and_reg(tmp, tmp, res);
883 }
b47a4a02 884 cond = cond_make_0_tmp(TCG_COND_EQ, tmp);
b2167459
RH
885 break;
886 case 4: /* NUV / UV (!C / C) */
a751eb31 887 /* Only bit 0 of cb_msb is ever set. */
b2167459
RH
888 cond = cond_make_0(TCG_COND_EQ, cb_msb);
889 break;
890 case 5: /* ZNV / VNZ (!C | Z / C & !Z) */
891 tmp = tcg_temp_new();
eaa3783b
RH
892 tcg_gen_neg_reg(tmp, cb_msb);
893 tcg_gen_and_reg(tmp, tmp, res);
a751eb31
RH
894 if (cond_need_ext(ctx, d)) {
895 tcg_gen_ext32u_reg(tmp, tmp);
896 }
b47a4a02 897 cond = cond_make_0_tmp(TCG_COND_EQ, tmp);
b2167459
RH
898 break;
899 case 6: /* SV / NSV (V / !V) */
a751eb31
RH
900 if (cond_need_ext(ctx, d)) {
901 tmp = tcg_temp_new();
902 tcg_gen_ext32s_reg(tmp, sv);
903 sv = tmp;
904 }
b2167459
RH
905 cond = cond_make_0(TCG_COND_LT, sv);
906 break;
907 case 7: /* OD / EV */
908 tmp = tcg_temp_new();
eaa3783b 909 tcg_gen_andi_reg(tmp, res, 1);
b47a4a02 910 cond = cond_make_0_tmp(TCG_COND_NE, tmp);
b2167459
RH
911 break;
912 default:
913 g_assert_not_reached();
914 }
915 if (cf & 1) {
916 cond.c = tcg_invert_cond(cond.c);
917 }
918
919 return cond;
920}
921
922/* Similar, but for the special case of subtraction without borrow, we
923 can use the inputs directly. This can allow other computation to be
924 deleted as unused. */
925
4fe9533a
RH
926static DisasCond do_sub_cond(DisasContext *ctx, unsigned cf, bool d,
927 TCGv_reg res, TCGv_reg in1,
928 TCGv_reg in2, TCGv_reg sv)
b2167459 929{
4fe9533a
RH
930 TCGCond tc;
931 bool ext_uns;
b2167459
RH
932
933 switch (cf >> 1) {
934 case 1: /* = / <> */
4fe9533a
RH
935 tc = TCG_COND_EQ;
936 ext_uns = true;
b2167459
RH
937 break;
938 case 2: /* < / >= */
4fe9533a
RH
939 tc = TCG_COND_LT;
940 ext_uns = false;
b2167459
RH
941 break;
942 case 3: /* <= / > */
4fe9533a
RH
943 tc = TCG_COND_LE;
944 ext_uns = false;
b2167459
RH
945 break;
946 case 4: /* << / >>= */
4fe9533a
RH
947 tc = TCG_COND_LTU;
948 ext_uns = true;
b2167459
RH
949 break;
950 case 5: /* <<= / >> */
4fe9533a
RH
951 tc = TCG_COND_LEU;
952 ext_uns = true;
b2167459
RH
953 break;
954 default:
a751eb31 955 return do_cond(ctx, cf, d, res, NULL, sv);
b2167459 956 }
4fe9533a 957
b2167459 958 if (cf & 1) {
4fe9533a 959 tc = tcg_invert_cond(tc);
b2167459 960 }
4fe9533a
RH
961 if (cond_need_ext(ctx, d)) {
962 TCGv_reg t1 = tcg_temp_new();
963 TCGv_reg t2 = tcg_temp_new();
b2167459 964
4fe9533a
RH
965 if (ext_uns) {
966 tcg_gen_ext32u_reg(t1, in1);
967 tcg_gen_ext32u_reg(t2, in2);
968 } else {
969 tcg_gen_ext32s_reg(t1, in1);
970 tcg_gen_ext32s_reg(t2, in2);
971 }
972 return cond_make_tmp(tc, t1, t2);
973 }
974 return cond_make(tc, in1, in2);
b2167459
RH
975}
976
df0232fe
RH
977/*
978 * Similar, but for logicals, where the carry and overflow bits are not
979 * computed, and use of them is undefined.
980 *
981 * Undefined or not, hardware does not trap. It seems reasonable to
982 * assume hardware treats cases c={4,5,6} as if C=0 & V=0, since that's
983 * how cases c={2,3} are treated.
984 */
b2167459 985
b5af8423
RH
986static DisasCond do_log_cond(DisasContext *ctx, unsigned cf, bool d,
987 TCGv_reg res)
b2167459 988{
b5af8423
RH
989 TCGCond tc;
990 bool ext_uns;
a751eb31 991
df0232fe
RH
992 switch (cf) {
993 case 0: /* never */
994 case 9: /* undef, C */
995 case 11: /* undef, C & !Z */
996 case 12: /* undef, V */
997 return cond_make_f();
998
999 case 1: /* true */
1000 case 8: /* undef, !C */
1001 case 10: /* undef, !C | Z */
1002 case 13: /* undef, !V */
1003 return cond_make_t();
1004
1005 case 2: /* == */
b5af8423
RH
1006 tc = TCG_COND_EQ;
1007 ext_uns = true;
1008 break;
df0232fe 1009 case 3: /* <> */
b5af8423
RH
1010 tc = TCG_COND_NE;
1011 ext_uns = true;
1012 break;
df0232fe 1013 case 4: /* < */
b5af8423
RH
1014 tc = TCG_COND_LT;
1015 ext_uns = false;
1016 break;
df0232fe 1017 case 5: /* >= */
b5af8423
RH
1018 tc = TCG_COND_GE;
1019 ext_uns = false;
1020 break;
df0232fe 1021 case 6: /* <= */
b5af8423
RH
1022 tc = TCG_COND_LE;
1023 ext_uns = false;
1024 break;
df0232fe 1025 case 7: /* > */
b5af8423
RH
1026 tc = TCG_COND_GT;
1027 ext_uns = false;
1028 break;
df0232fe
RH
1029
1030 case 14: /* OD */
1031 case 15: /* EV */
a751eb31 1032 return do_cond(ctx, cf, d, res, NULL, NULL);
df0232fe
RH
1033
1034 default:
1035 g_assert_not_reached();
b2167459 1036 }
b5af8423
RH
1037
1038 if (cond_need_ext(ctx, d)) {
1039 TCGv_reg tmp = tcg_temp_new();
1040
1041 if (ext_uns) {
1042 tcg_gen_ext32u_reg(tmp, res);
1043 } else {
1044 tcg_gen_ext32s_reg(tmp, res);
1045 }
1046 return cond_make_0_tmp(tc, tmp);
1047 }
1048 return cond_make_0(tc, res);
b2167459
RH
1049}
1050
98cd9ca7
RH
1051/* Similar, but for shift/extract/deposit conditions. */
1052
4fa52edf
RH
1053static DisasCond do_sed_cond(DisasContext *ctx, unsigned orig, bool d,
1054 TCGv_reg res)
98cd9ca7
RH
1055{
1056 unsigned c, f;
1057
1058 /* Convert the compressed condition codes to standard.
1059 0-2 are the same as logicals (nv,<,<=), while 3 is OD.
1060 4-7 are the reverse of 0-3. */
1061 c = orig & 3;
1062 if (c == 3) {
1063 c = 7;
1064 }
1065 f = (orig & 4) / 4;
1066
b5af8423 1067 return do_log_cond(ctx, c * 2 + f, d, res);
98cd9ca7
RH
1068}
1069
b2167459
RH
1070/* Similar, but for unit conditions. */
1071
eaa3783b
RH
1072static DisasCond do_unit_cond(unsigned cf, TCGv_reg res,
1073 TCGv_reg in1, TCGv_reg in2)
b2167459
RH
1074{
1075 DisasCond cond;
eaa3783b 1076 TCGv_reg tmp, cb = NULL;
b2167459 1077
b2167459
RH
1078 if (cf & 8) {
1079 /* Since we want to test lots of carry-out bits all at once, do not
1080 * do our normal thing and compute carry-in of bit B+1 since that
1081 * leaves us with carry bits spread across two words.
1082 */
1083 cb = tcg_temp_new();
1084 tmp = tcg_temp_new();
eaa3783b
RH
1085 tcg_gen_or_reg(cb, in1, in2);
1086 tcg_gen_and_reg(tmp, in1, in2);
1087 tcg_gen_andc_reg(cb, cb, res);
1088 tcg_gen_or_reg(cb, cb, tmp);
b2167459
RH
1089 }
1090
1091 switch (cf >> 1) {
1092 case 0: /* never / TR */
1093 case 1: /* undefined */
1094 case 5: /* undefined */
1095 cond = cond_make_f();
1096 break;
1097
1098 case 2: /* SBZ / NBZ */
1099 /* See hasless(v,1) from
1100 * https://graphics.stanford.edu/~seander/bithacks.html#ZeroInWord
1101 */
1102 tmp = tcg_temp_new();
eaa3783b
RH
1103 tcg_gen_subi_reg(tmp, res, 0x01010101u);
1104 tcg_gen_andc_reg(tmp, tmp, res);
1105 tcg_gen_andi_reg(tmp, tmp, 0x80808080u);
b2167459 1106 cond = cond_make_0(TCG_COND_NE, tmp);
b2167459
RH
1107 break;
1108
1109 case 3: /* SHZ / NHZ */
1110 tmp = tcg_temp_new();
eaa3783b
RH
1111 tcg_gen_subi_reg(tmp, res, 0x00010001u);
1112 tcg_gen_andc_reg(tmp, tmp, res);
1113 tcg_gen_andi_reg(tmp, tmp, 0x80008000u);
b2167459 1114 cond = cond_make_0(TCG_COND_NE, tmp);
b2167459
RH
1115 break;
1116
1117 case 4: /* SDC / NDC */
eaa3783b 1118 tcg_gen_andi_reg(cb, cb, 0x88888888u);
b2167459
RH
1119 cond = cond_make_0(TCG_COND_NE, cb);
1120 break;
1121
1122 case 6: /* SBC / NBC */
eaa3783b 1123 tcg_gen_andi_reg(cb, cb, 0x80808080u);
b2167459
RH
1124 cond = cond_make_0(TCG_COND_NE, cb);
1125 break;
1126
1127 case 7: /* SHC / NHC */
eaa3783b 1128 tcg_gen_andi_reg(cb, cb, 0x80008000u);
b2167459
RH
1129 cond = cond_make_0(TCG_COND_NE, cb);
1130 break;
1131
1132 default:
1133 g_assert_not_reached();
1134 }
b2167459
RH
1135 if (cf & 1) {
1136 cond.c = tcg_invert_cond(cond.c);
1137 }
1138
1139 return cond;
1140}
1141
72ca8753
RH
1142static TCGv_reg get_carry(DisasContext *ctx, bool d,
1143 TCGv_reg cb, TCGv_reg cb_msb)
1144{
1145 if (cond_need_ext(ctx, d)) {
1146 TCGv_reg t = tcg_temp_new();
1147 tcg_gen_extract_reg(t, cb, 32, 1);
1148 return t;
1149 }
1150 return cb_msb;
1151}
1152
1153static TCGv_reg get_psw_carry(DisasContext *ctx, bool d)
1154{
1155 return get_carry(ctx, d, cpu_psw_cb, cpu_psw_cb_msb);
1156}
1157
b2167459 1158/* Compute signed overflow for addition. */
eaa3783b
RH
1159static TCGv_reg do_add_sv(DisasContext *ctx, TCGv_reg res,
1160 TCGv_reg in1, TCGv_reg in2)
b2167459 1161{
e12c6309 1162 TCGv_reg sv = tcg_temp_new();
eaa3783b 1163 TCGv_reg tmp = tcg_temp_new();
b2167459 1164
eaa3783b
RH
1165 tcg_gen_xor_reg(sv, res, in1);
1166 tcg_gen_xor_reg(tmp, in1, in2);
1167 tcg_gen_andc_reg(sv, sv, tmp);
b2167459
RH
1168
1169 return sv;
1170}
1171
1172/* Compute signed overflow for subtraction. */
eaa3783b
RH
1173static TCGv_reg do_sub_sv(DisasContext *ctx, TCGv_reg res,
1174 TCGv_reg in1, TCGv_reg in2)
b2167459 1175{
e12c6309 1176 TCGv_reg sv = tcg_temp_new();
eaa3783b 1177 TCGv_reg tmp = tcg_temp_new();
b2167459 1178
eaa3783b
RH
1179 tcg_gen_xor_reg(sv, res, in1);
1180 tcg_gen_xor_reg(tmp, in1, in2);
1181 tcg_gen_and_reg(sv, sv, tmp);
b2167459
RH
1182
1183 return sv;
1184}
1185
31234768
RH
1186static void do_add(DisasContext *ctx, unsigned rt, TCGv_reg in1,
1187 TCGv_reg in2, unsigned shift, bool is_l,
1188 bool is_tsv, bool is_tc, bool is_c, unsigned cf)
b2167459 1189{
bdcccc17 1190 TCGv_reg dest, cb, cb_msb, cb_cond, sv, tmp;
b2167459
RH
1191 unsigned c = cf >> 1;
1192 DisasCond cond;
bdcccc17 1193 bool d = false;
b2167459
RH
1194
1195 dest = tcg_temp_new();
f764718d
RH
1196 cb = NULL;
1197 cb_msb = NULL;
bdcccc17 1198 cb_cond = NULL;
b2167459
RH
1199
1200 if (shift) {
e12c6309 1201 tmp = tcg_temp_new();
eaa3783b 1202 tcg_gen_shli_reg(tmp, in1, shift);
b2167459
RH
1203 in1 = tmp;
1204 }
1205
b47a4a02 1206 if (!is_l || cond_need_cb(c)) {
29dd6f64 1207 TCGv_reg zero = tcg_constant_reg(0);
e12c6309 1208 cb_msb = tcg_temp_new();
bdcccc17
RH
1209 cb = tcg_temp_new();
1210
eaa3783b 1211 tcg_gen_add2_reg(dest, cb_msb, in1, zero, in2, zero);
b2167459 1212 if (is_c) {
bdcccc17
RH
1213 tcg_gen_add2_reg(dest, cb_msb, dest, cb_msb,
1214 get_psw_carry(ctx, d), zero);
b2167459 1215 }
bdcccc17
RH
1216 tcg_gen_xor_reg(cb, in1, in2);
1217 tcg_gen_xor_reg(cb, cb, dest);
1218 if (cond_need_cb(c)) {
1219 cb_cond = get_carry(ctx, d, cb, cb_msb);
b2167459
RH
1220 }
1221 } else {
eaa3783b 1222 tcg_gen_add_reg(dest, in1, in2);
b2167459 1223 if (is_c) {
bdcccc17 1224 tcg_gen_add_reg(dest, dest, get_psw_carry(ctx, d));
b2167459
RH
1225 }
1226 }
1227
1228 /* Compute signed overflow if required. */
f764718d 1229 sv = NULL;
b47a4a02 1230 if (is_tsv || cond_need_sv(c)) {
b2167459
RH
1231 sv = do_add_sv(ctx, dest, in1, in2);
1232 if (is_tsv) {
1233 /* ??? Need to include overflow from shift. */
ad75a51e 1234 gen_helper_tsv(tcg_env, sv);
b2167459
RH
1235 }
1236 }
1237
1238 /* Emit any conditional trap before any writeback. */
a751eb31 1239 cond = do_cond(ctx, cf, d, dest, cb_cond, sv);
b2167459 1240 if (is_tc) {
b2167459 1241 tmp = tcg_temp_new();
eaa3783b 1242 tcg_gen_setcond_reg(cond.c, tmp, cond.a0, cond.a1);
ad75a51e 1243 gen_helper_tcond(tcg_env, tmp);
b2167459
RH
1244 }
1245
1246 /* Write back the result. */
1247 if (!is_l) {
1248 save_or_nullify(ctx, cpu_psw_cb, cb);
1249 save_or_nullify(ctx, cpu_psw_cb_msb, cb_msb);
1250 }
1251 save_gpr(ctx, rt, dest);
b2167459
RH
1252
1253 /* Install the new nullification. */
1254 cond_free(&ctx->null_cond);
1255 ctx->null_cond = cond;
b2167459
RH
1256}
1257
0c982a28
RH
1258static bool do_add_reg(DisasContext *ctx, arg_rrr_cf_sh *a,
1259 bool is_l, bool is_tsv, bool is_tc, bool is_c)
1260{
1261 TCGv_reg tcg_r1, tcg_r2;
1262
1263 if (a->cf) {
1264 nullify_over(ctx);
1265 }
1266 tcg_r1 = load_gpr(ctx, a->r1);
1267 tcg_r2 = load_gpr(ctx, a->r2);
1268 do_add(ctx, a->t, tcg_r1, tcg_r2, a->sh, is_l, is_tsv, is_tc, is_c, a->cf);
1269 return nullify_end(ctx);
1270}
1271
0588e061
RH
1272static bool do_add_imm(DisasContext *ctx, arg_rri_cf *a,
1273 bool is_tsv, bool is_tc)
1274{
1275 TCGv_reg tcg_im, tcg_r2;
1276
1277 if (a->cf) {
1278 nullify_over(ctx);
1279 }
d4e58033 1280 tcg_im = tcg_constant_reg(a->i);
0588e061
RH
1281 tcg_r2 = load_gpr(ctx, a->r);
1282 do_add(ctx, a->t, tcg_im, tcg_r2, 0, 0, is_tsv, is_tc, 0, a->cf);
1283 return nullify_end(ctx);
1284}
1285
31234768
RH
1286static void do_sub(DisasContext *ctx, unsigned rt, TCGv_reg in1,
1287 TCGv_reg in2, bool is_tsv, bool is_b,
1288 bool is_tc, unsigned cf)
b2167459 1289{
eaa3783b 1290 TCGv_reg dest, sv, cb, cb_msb, zero, tmp;
b2167459
RH
1291 unsigned c = cf >> 1;
1292 DisasCond cond;
bdcccc17 1293 bool d = false;
b2167459
RH
1294
1295 dest = tcg_temp_new();
1296 cb = tcg_temp_new();
1297 cb_msb = tcg_temp_new();
1298
29dd6f64 1299 zero = tcg_constant_reg(0);
b2167459
RH
1300 if (is_b) {
1301 /* DEST,C = IN1 + ~IN2 + C. */
eaa3783b 1302 tcg_gen_not_reg(cb, in2);
bdcccc17 1303 tcg_gen_add2_reg(dest, cb_msb, in1, zero, get_psw_carry(ctx, d), zero);
eaa3783b
RH
1304 tcg_gen_add2_reg(dest, cb_msb, dest, cb_msb, cb, zero);
1305 tcg_gen_xor_reg(cb, cb, in1);
1306 tcg_gen_xor_reg(cb, cb, dest);
b2167459 1307 } else {
bdcccc17
RH
1308 /*
1309 * DEST,C = IN1 + ~IN2 + 1. We can produce the same result in fewer
1310 * operations by seeding the high word with 1 and subtracting.
1311 */
1312 TCGv_reg one = tcg_constant_reg(1);
1313 tcg_gen_sub2_reg(dest, cb_msb, in1, one, in2, zero);
eaa3783b
RH
1314 tcg_gen_eqv_reg(cb, in1, in2);
1315 tcg_gen_xor_reg(cb, cb, dest);
b2167459 1316 }
b2167459
RH
1317
1318 /* Compute signed overflow if required. */
f764718d 1319 sv = NULL;
b47a4a02 1320 if (is_tsv || cond_need_sv(c)) {
b2167459
RH
1321 sv = do_sub_sv(ctx, dest, in1, in2);
1322 if (is_tsv) {
ad75a51e 1323 gen_helper_tsv(tcg_env, sv);
b2167459
RH
1324 }
1325 }
1326
1327 /* Compute the condition. We cannot use the special case for borrow. */
1328 if (!is_b) {
4fe9533a 1329 cond = do_sub_cond(ctx, cf, d, dest, in1, in2, sv);
b2167459 1330 } else {
a751eb31 1331 cond = do_cond(ctx, cf, d, dest, get_carry(ctx, d, cb, cb_msb), sv);
b2167459
RH
1332 }
1333
1334 /* Emit any conditional trap before any writeback. */
1335 if (is_tc) {
b2167459 1336 tmp = tcg_temp_new();
eaa3783b 1337 tcg_gen_setcond_reg(cond.c, tmp, cond.a0, cond.a1);
ad75a51e 1338 gen_helper_tcond(tcg_env, tmp);
b2167459
RH
1339 }
1340
1341 /* Write back the result. */
1342 save_or_nullify(ctx, cpu_psw_cb, cb);
1343 save_or_nullify(ctx, cpu_psw_cb_msb, cb_msb);
1344 save_gpr(ctx, rt, dest);
b2167459
RH
1345
1346 /* Install the new nullification. */
1347 cond_free(&ctx->null_cond);
1348 ctx->null_cond = cond;
b2167459
RH
1349}
1350
0c982a28
RH
1351static bool do_sub_reg(DisasContext *ctx, arg_rrr_cf *a,
1352 bool is_tsv, bool is_b, bool is_tc)
1353{
1354 TCGv_reg tcg_r1, tcg_r2;
1355
1356 if (a->cf) {
1357 nullify_over(ctx);
1358 }
1359 tcg_r1 = load_gpr(ctx, a->r1);
1360 tcg_r2 = load_gpr(ctx, a->r2);
1361 do_sub(ctx, a->t, tcg_r1, tcg_r2, is_tsv, is_b, is_tc, a->cf);
1362 return nullify_end(ctx);
1363}
1364
0588e061
RH
1365static bool do_sub_imm(DisasContext *ctx, arg_rri_cf *a, bool is_tsv)
1366{
1367 TCGv_reg tcg_im, tcg_r2;
1368
1369 if (a->cf) {
1370 nullify_over(ctx);
1371 }
d4e58033 1372 tcg_im = tcg_constant_reg(a->i);
0588e061
RH
1373 tcg_r2 = load_gpr(ctx, a->r);
1374 do_sub(ctx, a->t, tcg_im, tcg_r2, is_tsv, 0, 0, a->cf);
1375 return nullify_end(ctx);
1376}
1377
31234768
RH
1378static void do_cmpclr(DisasContext *ctx, unsigned rt, TCGv_reg in1,
1379 TCGv_reg in2, unsigned cf)
b2167459 1380{
eaa3783b 1381 TCGv_reg dest, sv;
b2167459 1382 DisasCond cond;
4fe9533a 1383 bool d = false;
b2167459
RH
1384
1385 dest = tcg_temp_new();
eaa3783b 1386 tcg_gen_sub_reg(dest, in1, in2);
b2167459
RH
1387
1388 /* Compute signed overflow if required. */
f764718d 1389 sv = NULL;
b47a4a02 1390 if (cond_need_sv(cf >> 1)) {
b2167459
RH
1391 sv = do_sub_sv(ctx, dest, in1, in2);
1392 }
1393
1394 /* Form the condition for the compare. */
4fe9533a 1395 cond = do_sub_cond(ctx, cf, d, dest, in1, in2, sv);
b2167459
RH
1396
1397 /* Clear. */
eaa3783b 1398 tcg_gen_movi_reg(dest, 0);
b2167459 1399 save_gpr(ctx, rt, dest);
b2167459
RH
1400
1401 /* Install the new nullification. */
1402 cond_free(&ctx->null_cond);
1403 ctx->null_cond = cond;
b2167459
RH
1404}
1405
31234768
RH
1406static void do_log(DisasContext *ctx, unsigned rt, TCGv_reg in1,
1407 TCGv_reg in2, unsigned cf,
1408 void (*fn)(TCGv_reg, TCGv_reg, TCGv_reg))
b2167459 1409{
eaa3783b 1410 TCGv_reg dest = dest_gpr(ctx, rt);
b5af8423 1411 bool d = false;
b2167459
RH
1412
1413 /* Perform the operation, and writeback. */
1414 fn(dest, in1, in2);
1415 save_gpr(ctx, rt, dest);
1416
1417 /* Install the new nullification. */
1418 cond_free(&ctx->null_cond);
1419 if (cf) {
b5af8423 1420 ctx->null_cond = do_log_cond(ctx, cf, d, dest);
b2167459 1421 }
b2167459
RH
1422}
1423
0c982a28
RH
1424static bool do_log_reg(DisasContext *ctx, arg_rrr_cf *a,
1425 void (*fn)(TCGv_reg, TCGv_reg, TCGv_reg))
1426{
1427 TCGv_reg tcg_r1, tcg_r2;
1428
1429 if (a->cf) {
1430 nullify_over(ctx);
1431 }
1432 tcg_r1 = load_gpr(ctx, a->r1);
1433 tcg_r2 = load_gpr(ctx, a->r2);
1434 do_log(ctx, a->t, tcg_r1, tcg_r2, a->cf, fn);
1435 return nullify_end(ctx);
1436}
1437
31234768
RH
1438static void do_unit(DisasContext *ctx, unsigned rt, TCGv_reg in1,
1439 TCGv_reg in2, unsigned cf, bool is_tc,
1440 void (*fn)(TCGv_reg, TCGv_reg, TCGv_reg))
b2167459 1441{
eaa3783b 1442 TCGv_reg dest;
b2167459
RH
1443 DisasCond cond;
1444
1445 if (cf == 0) {
1446 dest = dest_gpr(ctx, rt);
1447 fn(dest, in1, in2);
1448 save_gpr(ctx, rt, dest);
1449 cond_free(&ctx->null_cond);
1450 } else {
1451 dest = tcg_temp_new();
1452 fn(dest, in1, in2);
1453
1454 cond = do_unit_cond(cf, dest, in1, in2);
1455
1456 if (is_tc) {
eaa3783b 1457 TCGv_reg tmp = tcg_temp_new();
eaa3783b 1458 tcg_gen_setcond_reg(cond.c, tmp, cond.a0, cond.a1);
ad75a51e 1459 gen_helper_tcond(tcg_env, tmp);
b2167459
RH
1460 }
1461 save_gpr(ctx, rt, dest);
1462
1463 cond_free(&ctx->null_cond);
1464 ctx->null_cond = cond;
1465 }
b2167459
RH
1466}
1467
86f8d05f 1468#ifndef CONFIG_USER_ONLY
8d6ae7fb
RH
1469/* The "normal" usage is SP >= 0, wherein SP == 0 selects the space
1470 from the top 2 bits of the base register. There are a few system
1471 instructions that have a 3-bit space specifier, for which SR0 is
1472 not special. To handle this, pass ~SP. */
86f8d05f
RH
1473static TCGv_i64 space_select(DisasContext *ctx, int sp, TCGv_reg base)
1474{
1475 TCGv_ptr ptr;
1476 TCGv_reg tmp;
1477 TCGv_i64 spc;
1478
1479 if (sp != 0) {
8d6ae7fb
RH
1480 if (sp < 0) {
1481 sp = ~sp;
1482 }
a6779861 1483 spc = tcg_temp_new_tl();
8d6ae7fb
RH
1484 load_spr(ctx, spc, sp);
1485 return spc;
86f8d05f 1486 }
494737b7
RH
1487 if (ctx->tb_flags & TB_FLAG_SR_SAME) {
1488 return cpu_srH;
1489 }
86f8d05f
RH
1490
1491 ptr = tcg_temp_new_ptr();
1492 tmp = tcg_temp_new();
a6779861 1493 spc = tcg_temp_new_tl();
86f8d05f 1494
698240d1
RH
1495 /* Extract top 2 bits of the address, shift left 3 for uint64_t index. */
1496 tcg_gen_shri_reg(tmp, base, (ctx->tb_flags & PSW_W ? 64 : 32) - 5);
86f8d05f
RH
1497 tcg_gen_andi_reg(tmp, tmp, 030);
1498 tcg_gen_trunc_reg_ptr(ptr, tmp);
86f8d05f 1499
ad75a51e 1500 tcg_gen_add_ptr(ptr, ptr, tcg_env);
86f8d05f 1501 tcg_gen_ld_i64(spc, ptr, offsetof(CPUHPPAState, sr[4]));
86f8d05f
RH
1502
1503 return spc;
1504}
1505#endif
1506
1507static void form_gva(DisasContext *ctx, TCGv_tl *pgva, TCGv_reg *pofs,
1508 unsigned rb, unsigned rx, int scale, target_sreg disp,
1509 unsigned sp, int modify, bool is_phys)
1510{
1511 TCGv_reg base = load_gpr(ctx, rb);
1512 TCGv_reg ofs;
698240d1 1513 TCGv_tl addr;
86f8d05f
RH
1514
1515 /* Note that RX is mutually exclusive with DISP. */
1516 if (rx) {
e12c6309 1517 ofs = tcg_temp_new();
86f8d05f
RH
1518 tcg_gen_shli_reg(ofs, cpu_gr[rx], scale);
1519 tcg_gen_add_reg(ofs, ofs, base);
1520 } else if (disp || modify) {
e12c6309 1521 ofs = tcg_temp_new();
86f8d05f
RH
1522 tcg_gen_addi_reg(ofs, base, disp);
1523 } else {
1524 ofs = base;
1525 }
1526
1527 *pofs = ofs;
698240d1 1528 *pgva = addr = tcg_temp_new_tl();
86f8d05f 1529 tcg_gen_extu_reg_tl(addr, modify <= 0 ? ofs : base);
698240d1
RH
1530 tcg_gen_andi_tl(addr, addr, gva_offset_mask(ctx));
1531#ifndef CONFIG_USER_ONLY
86f8d05f
RH
1532 if (!is_phys) {
1533 tcg_gen_or_tl(addr, addr, space_select(ctx, sp, base));
1534 }
86f8d05f
RH
1535#endif
1536}
1537
96d6407f
RH
1538/* Emit a memory load. The modify parameter should be
1539 * < 0 for pre-modify,
1540 * > 0 for post-modify,
1541 * = 0 for no base register update.
1542 */
1543static void do_load_32(DisasContext *ctx, TCGv_i32 dest, unsigned rb,
eaa3783b 1544 unsigned rx, int scale, target_sreg disp,
14776ab5 1545 unsigned sp, int modify, MemOp mop)
96d6407f 1546{
86f8d05f
RH
1547 TCGv_reg ofs;
1548 TCGv_tl addr;
96d6407f
RH
1549
1550 /* Caller uses nullify_over/nullify_end. */
1551 assert(ctx->null_cond.c == TCG_COND_NEVER);
1552
86f8d05f
RH
1553 form_gva(ctx, &addr, &ofs, rb, rx, scale, disp, sp, modify,
1554 ctx->mmu_idx == MMU_PHYS_IDX);
c1f55d97 1555 tcg_gen_qemu_ld_i32(dest, addr, ctx->mmu_idx, mop | UNALIGN(ctx));
86f8d05f
RH
1556 if (modify) {
1557 save_gpr(ctx, rb, ofs);
96d6407f 1558 }
96d6407f
RH
1559}
1560
1561static void do_load_64(DisasContext *ctx, TCGv_i64 dest, unsigned rb,
eaa3783b 1562 unsigned rx, int scale, target_sreg disp,
14776ab5 1563 unsigned sp, int modify, MemOp mop)
96d6407f 1564{
86f8d05f
RH
1565 TCGv_reg ofs;
1566 TCGv_tl addr;
96d6407f
RH
1567
1568 /* Caller uses nullify_over/nullify_end. */
1569 assert(ctx->null_cond.c == TCG_COND_NEVER);
1570
86f8d05f
RH
1571 form_gva(ctx, &addr, &ofs, rb, rx, scale, disp, sp, modify,
1572 ctx->mmu_idx == MMU_PHYS_IDX);
217d1a5e 1573 tcg_gen_qemu_ld_i64(dest, addr, ctx->mmu_idx, mop | UNALIGN(ctx));
86f8d05f
RH
1574 if (modify) {
1575 save_gpr(ctx, rb, ofs);
96d6407f 1576 }
96d6407f
RH
1577}
1578
1579static void do_store_32(DisasContext *ctx, TCGv_i32 src, unsigned rb,
eaa3783b 1580 unsigned rx, int scale, target_sreg disp,
14776ab5 1581 unsigned sp, int modify, MemOp mop)
96d6407f 1582{
86f8d05f
RH
1583 TCGv_reg ofs;
1584 TCGv_tl addr;
96d6407f
RH
1585
1586 /* Caller uses nullify_over/nullify_end. */
1587 assert(ctx->null_cond.c == TCG_COND_NEVER);
1588
86f8d05f
RH
1589 form_gva(ctx, &addr, &ofs, rb, rx, scale, disp, sp, modify,
1590 ctx->mmu_idx == MMU_PHYS_IDX);
217d1a5e 1591 tcg_gen_qemu_st_i32(src, addr, ctx->mmu_idx, mop | UNALIGN(ctx));
86f8d05f
RH
1592 if (modify) {
1593 save_gpr(ctx, rb, ofs);
96d6407f 1594 }
96d6407f
RH
1595}
1596
1597static void do_store_64(DisasContext *ctx, TCGv_i64 src, unsigned rb,
eaa3783b 1598 unsigned rx, int scale, target_sreg disp,
14776ab5 1599 unsigned sp, int modify, MemOp mop)
96d6407f 1600{
86f8d05f
RH
1601 TCGv_reg ofs;
1602 TCGv_tl addr;
96d6407f
RH
1603
1604 /* Caller uses nullify_over/nullify_end. */
1605 assert(ctx->null_cond.c == TCG_COND_NEVER);
1606
86f8d05f
RH
1607 form_gva(ctx, &addr, &ofs, rb, rx, scale, disp, sp, modify,
1608 ctx->mmu_idx == MMU_PHYS_IDX);
217d1a5e 1609 tcg_gen_qemu_st_i64(src, addr, ctx->mmu_idx, mop | UNALIGN(ctx));
86f8d05f
RH
1610 if (modify) {
1611 save_gpr(ctx, rb, ofs);
96d6407f 1612 }
96d6407f
RH
1613}
1614
eaa3783b
RH
1615#if TARGET_REGISTER_BITS == 64
1616#define do_load_reg do_load_64
1617#define do_store_reg do_store_64
96d6407f 1618#else
eaa3783b
RH
1619#define do_load_reg do_load_32
1620#define do_store_reg do_store_32
96d6407f
RH
1621#endif
1622
1cd012a5 1623static bool do_load(DisasContext *ctx, unsigned rt, unsigned rb,
31234768 1624 unsigned rx, int scale, target_sreg disp,
14776ab5 1625 unsigned sp, int modify, MemOp mop)
96d6407f 1626{
eaa3783b 1627 TCGv_reg dest;
96d6407f
RH
1628
1629 nullify_over(ctx);
1630
1631 if (modify == 0) {
1632 /* No base register update. */
1633 dest = dest_gpr(ctx, rt);
1634 } else {
1635 /* Make sure if RT == RB, we see the result of the load. */
e12c6309 1636 dest = tcg_temp_new();
96d6407f 1637 }
86f8d05f 1638 do_load_reg(ctx, dest, rb, rx, scale, disp, sp, modify, mop);
96d6407f
RH
1639 save_gpr(ctx, rt, dest);
1640
1cd012a5 1641 return nullify_end(ctx);
96d6407f
RH
1642}
1643
740038d7 1644static bool do_floadw(DisasContext *ctx, unsigned rt, unsigned rb,
31234768
RH
1645 unsigned rx, int scale, target_sreg disp,
1646 unsigned sp, int modify)
96d6407f
RH
1647{
1648 TCGv_i32 tmp;
1649
1650 nullify_over(ctx);
1651
1652 tmp = tcg_temp_new_i32();
86f8d05f 1653 do_load_32(ctx, tmp, rb, rx, scale, disp, sp, modify, MO_TEUL);
96d6407f 1654 save_frw_i32(rt, tmp);
96d6407f
RH
1655
1656 if (rt == 0) {
ad75a51e 1657 gen_helper_loaded_fr0(tcg_env);
96d6407f
RH
1658 }
1659
740038d7
RH
1660 return nullify_end(ctx);
1661}
1662
1663static bool trans_fldw(DisasContext *ctx, arg_ldst *a)
1664{
1665 return do_floadw(ctx, a->t, a->b, a->x, a->scale ? 2 : 0,
1666 a->disp, a->sp, a->m);
96d6407f
RH
1667}
1668
740038d7 1669static bool do_floadd(DisasContext *ctx, unsigned rt, unsigned rb,
31234768
RH
1670 unsigned rx, int scale, target_sreg disp,
1671 unsigned sp, int modify)
96d6407f
RH
1672{
1673 TCGv_i64 tmp;
1674
1675 nullify_over(ctx);
1676
1677 tmp = tcg_temp_new_i64();
fc313c64 1678 do_load_64(ctx, tmp, rb, rx, scale, disp, sp, modify, MO_TEUQ);
96d6407f 1679 save_frd(rt, tmp);
96d6407f
RH
1680
1681 if (rt == 0) {
ad75a51e 1682 gen_helper_loaded_fr0(tcg_env);
96d6407f
RH
1683 }
1684
740038d7
RH
1685 return nullify_end(ctx);
1686}
1687
1688static bool trans_fldd(DisasContext *ctx, arg_ldst *a)
1689{
1690 return do_floadd(ctx, a->t, a->b, a->x, a->scale ? 3 : 0,
1691 a->disp, a->sp, a->m);
96d6407f
RH
1692}
1693
1cd012a5 1694static bool do_store(DisasContext *ctx, unsigned rt, unsigned rb,
31234768 1695 target_sreg disp, unsigned sp,
14776ab5 1696 int modify, MemOp mop)
96d6407f
RH
1697{
1698 nullify_over(ctx);
86f8d05f 1699 do_store_reg(ctx, load_gpr(ctx, rt), rb, 0, 0, disp, sp, modify, mop);
1cd012a5 1700 return nullify_end(ctx);
96d6407f
RH
1701}
1702
740038d7 1703static bool do_fstorew(DisasContext *ctx, unsigned rt, unsigned rb,
31234768
RH
1704 unsigned rx, int scale, target_sreg disp,
1705 unsigned sp, int modify)
96d6407f
RH
1706{
1707 TCGv_i32 tmp;
1708
1709 nullify_over(ctx);
1710
1711 tmp = load_frw_i32(rt);
86f8d05f 1712 do_store_32(ctx, tmp, rb, rx, scale, disp, sp, modify, MO_TEUL);
96d6407f 1713
740038d7
RH
1714 return nullify_end(ctx);
1715}
1716
1717static bool trans_fstw(DisasContext *ctx, arg_ldst *a)
1718{
1719 return do_fstorew(ctx, a->t, a->b, a->x, a->scale ? 2 : 0,
1720 a->disp, a->sp, a->m);
96d6407f
RH
1721}
1722
740038d7 1723static bool do_fstored(DisasContext *ctx, unsigned rt, unsigned rb,
31234768
RH
1724 unsigned rx, int scale, target_sreg disp,
1725 unsigned sp, int modify)
96d6407f
RH
1726{
1727 TCGv_i64 tmp;
1728
1729 nullify_over(ctx);
1730
1731 tmp = load_frd(rt);
fc313c64 1732 do_store_64(ctx, tmp, rb, rx, scale, disp, sp, modify, MO_TEUQ);
96d6407f 1733
740038d7
RH
1734 return nullify_end(ctx);
1735}
1736
1737static bool trans_fstd(DisasContext *ctx, arg_ldst *a)
1738{
1739 return do_fstored(ctx, a->t, a->b, a->x, a->scale ? 3 : 0,
1740 a->disp, a->sp, a->m);
96d6407f
RH
1741}
1742
1ca74648 1743static bool do_fop_wew(DisasContext *ctx, unsigned rt, unsigned ra,
31234768 1744 void (*func)(TCGv_i32, TCGv_env, TCGv_i32))
ebe9383c
RH
1745{
1746 TCGv_i32 tmp;
1747
1748 nullify_over(ctx);
1749 tmp = load_frw0_i32(ra);
1750
ad75a51e 1751 func(tmp, tcg_env, tmp);
ebe9383c
RH
1752
1753 save_frw_i32(rt, tmp);
1ca74648 1754 return nullify_end(ctx);
ebe9383c
RH
1755}
1756
1ca74648 1757static bool do_fop_wed(DisasContext *ctx, unsigned rt, unsigned ra,
31234768 1758 void (*func)(TCGv_i32, TCGv_env, TCGv_i64))
ebe9383c
RH
1759{
1760 TCGv_i32 dst;
1761 TCGv_i64 src;
1762
1763 nullify_over(ctx);
1764 src = load_frd(ra);
1765 dst = tcg_temp_new_i32();
1766
ad75a51e 1767 func(dst, tcg_env, src);
ebe9383c 1768
ebe9383c 1769 save_frw_i32(rt, dst);
1ca74648 1770 return nullify_end(ctx);
ebe9383c
RH
1771}
1772
1ca74648 1773static bool do_fop_ded(DisasContext *ctx, unsigned rt, unsigned ra,
31234768 1774 void (*func)(TCGv_i64, TCGv_env, TCGv_i64))
ebe9383c
RH
1775{
1776 TCGv_i64 tmp;
1777
1778 nullify_over(ctx);
1779 tmp = load_frd0(ra);
1780
ad75a51e 1781 func(tmp, tcg_env, tmp);
ebe9383c
RH
1782
1783 save_frd(rt, tmp);
1ca74648 1784 return nullify_end(ctx);
ebe9383c
RH
1785}
1786
1ca74648 1787static bool do_fop_dew(DisasContext *ctx, unsigned rt, unsigned ra,
31234768 1788 void (*func)(TCGv_i64, TCGv_env, TCGv_i32))
ebe9383c
RH
1789{
1790 TCGv_i32 src;
1791 TCGv_i64 dst;
1792
1793 nullify_over(ctx);
1794 src = load_frw0_i32(ra);
1795 dst = tcg_temp_new_i64();
1796
ad75a51e 1797 func(dst, tcg_env, src);
ebe9383c 1798
ebe9383c 1799 save_frd(rt, dst);
1ca74648 1800 return nullify_end(ctx);
ebe9383c
RH
1801}
1802
1ca74648 1803static bool do_fop_weww(DisasContext *ctx, unsigned rt,
31234768
RH
1804 unsigned ra, unsigned rb,
1805 void (*func)(TCGv_i32, TCGv_env, TCGv_i32, TCGv_i32))
ebe9383c
RH
1806{
1807 TCGv_i32 a, b;
1808
1809 nullify_over(ctx);
1810 a = load_frw0_i32(ra);
1811 b = load_frw0_i32(rb);
1812
ad75a51e 1813 func(a, tcg_env, a, b);
ebe9383c 1814
ebe9383c 1815 save_frw_i32(rt, a);
1ca74648 1816 return nullify_end(ctx);
ebe9383c
RH
1817}
1818
1ca74648 1819static bool do_fop_dedd(DisasContext *ctx, unsigned rt,
31234768
RH
1820 unsigned ra, unsigned rb,
1821 void (*func)(TCGv_i64, TCGv_env, TCGv_i64, TCGv_i64))
ebe9383c
RH
1822{
1823 TCGv_i64 a, b;
1824
1825 nullify_over(ctx);
1826 a = load_frd0(ra);
1827 b = load_frd0(rb);
1828
ad75a51e 1829 func(a, tcg_env, a, b);
ebe9383c 1830
ebe9383c 1831 save_frd(rt, a);
1ca74648 1832 return nullify_end(ctx);
ebe9383c
RH
1833}
1834
98cd9ca7
RH
1835/* Emit an unconditional branch to a direct target, which may or may not
1836 have already had nullification handled. */
01afb7be 1837static bool do_dbranch(DisasContext *ctx, target_ureg dest,
31234768 1838 unsigned link, bool is_n)
98cd9ca7
RH
1839{
1840 if (ctx->null_cond.c == TCG_COND_NEVER && ctx->null_lab == NULL) {
1841 if (link != 0) {
741322f4 1842 copy_iaoq_entry(ctx, cpu_gr[link], ctx->iaoq_n, ctx->iaoq_n_var);
98cd9ca7
RH
1843 }
1844 ctx->iaoq_n = dest;
1845 if (is_n) {
1846 ctx->null_cond.c = TCG_COND_ALWAYS;
1847 }
98cd9ca7
RH
1848 } else {
1849 nullify_over(ctx);
1850
1851 if (link != 0) {
741322f4 1852 copy_iaoq_entry(ctx, cpu_gr[link], ctx->iaoq_n, ctx->iaoq_n_var);
98cd9ca7
RH
1853 }
1854
1855 if (is_n && use_nullify_skip(ctx)) {
1856 nullify_set(ctx, 0);
1857 gen_goto_tb(ctx, 0, dest, dest + 4);
1858 } else {
1859 nullify_set(ctx, is_n);
1860 gen_goto_tb(ctx, 0, ctx->iaoq_b, dest);
1861 }
1862
31234768 1863 nullify_end(ctx);
98cd9ca7
RH
1864
1865 nullify_set(ctx, 0);
1866 gen_goto_tb(ctx, 1, ctx->iaoq_b, ctx->iaoq_n);
31234768 1867 ctx->base.is_jmp = DISAS_NORETURN;
98cd9ca7 1868 }
01afb7be 1869 return true;
98cd9ca7
RH
1870}
1871
1872/* Emit a conditional branch to a direct target. If the branch itself
1873 is nullified, we should have already used nullify_over. */
01afb7be 1874static bool do_cbranch(DisasContext *ctx, target_sreg disp, bool is_n,
31234768 1875 DisasCond *cond)
98cd9ca7 1876{
eaa3783b 1877 target_ureg dest = iaoq_dest(ctx, disp);
98cd9ca7
RH
1878 TCGLabel *taken = NULL;
1879 TCGCond c = cond->c;
98cd9ca7
RH
1880 bool n;
1881
1882 assert(ctx->null_cond.c == TCG_COND_NEVER);
1883
1884 /* Handle TRUE and NEVER as direct branches. */
1885 if (c == TCG_COND_ALWAYS) {
01afb7be 1886 return do_dbranch(ctx, dest, 0, is_n && disp >= 0);
98cd9ca7
RH
1887 }
1888 if (c == TCG_COND_NEVER) {
01afb7be 1889 return do_dbranch(ctx, ctx->iaoq_n, 0, is_n && disp < 0);
98cd9ca7
RH
1890 }
1891
1892 taken = gen_new_label();
eaa3783b 1893 tcg_gen_brcond_reg(c, cond->a0, cond->a1, taken);
98cd9ca7
RH
1894 cond_free(cond);
1895
1896 /* Not taken: Condition not satisfied; nullify on backward branches. */
1897 n = is_n && disp < 0;
1898 if (n && use_nullify_skip(ctx)) {
1899 nullify_set(ctx, 0);
a881c8e7 1900 gen_goto_tb(ctx, 0, ctx->iaoq_n, ctx->iaoq_n + 4);
98cd9ca7
RH
1901 } else {
1902 if (!n && ctx->null_lab) {
1903 gen_set_label(ctx->null_lab);
1904 ctx->null_lab = NULL;
1905 }
1906 nullify_set(ctx, n);
c301f34e
RH
1907 if (ctx->iaoq_n == -1) {
1908 /* The temporary iaoq_n_var died at the branch above.
1909 Regenerate it here instead of saving it. */
1910 tcg_gen_addi_reg(ctx->iaoq_n_var, cpu_iaoq_b, 4);
1911 }
a881c8e7 1912 gen_goto_tb(ctx, 0, ctx->iaoq_b, ctx->iaoq_n);
98cd9ca7
RH
1913 }
1914
1915 gen_set_label(taken);
1916
1917 /* Taken: Condition satisfied; nullify on forward branches. */
1918 n = is_n && disp >= 0;
1919 if (n && use_nullify_skip(ctx)) {
1920 nullify_set(ctx, 0);
a881c8e7 1921 gen_goto_tb(ctx, 1, dest, dest + 4);
98cd9ca7
RH
1922 } else {
1923 nullify_set(ctx, n);
a881c8e7 1924 gen_goto_tb(ctx, 1, ctx->iaoq_b, dest);
98cd9ca7
RH
1925 }
1926
1927 /* Not taken: the branch itself was nullified. */
1928 if (ctx->null_lab) {
1929 gen_set_label(ctx->null_lab);
1930 ctx->null_lab = NULL;
31234768 1931 ctx->base.is_jmp = DISAS_IAQ_N_STALE;
98cd9ca7 1932 } else {
31234768 1933 ctx->base.is_jmp = DISAS_NORETURN;
98cd9ca7 1934 }
01afb7be 1935 return true;
98cd9ca7
RH
1936}
1937
1938/* Emit an unconditional branch to an indirect target. This handles
1939 nullification of the branch itself. */
01afb7be 1940static bool do_ibranch(DisasContext *ctx, TCGv_reg dest,
31234768 1941 unsigned link, bool is_n)
98cd9ca7 1942{
eaa3783b 1943 TCGv_reg a0, a1, next, tmp;
98cd9ca7
RH
1944 TCGCond c;
1945
1946 assert(ctx->null_lab == NULL);
1947
1948 if (ctx->null_cond.c == TCG_COND_NEVER) {
1949 if (link != 0) {
741322f4 1950 copy_iaoq_entry(ctx, cpu_gr[link], ctx->iaoq_n, ctx->iaoq_n_var);
98cd9ca7 1951 }
e12c6309 1952 next = tcg_temp_new();
eaa3783b 1953 tcg_gen_mov_reg(next, dest);
98cd9ca7 1954 if (is_n) {
c301f34e 1955 if (use_nullify_skip(ctx)) {
a0180973
RH
1956 copy_iaoq_entry(ctx, cpu_iaoq_f, -1, next);
1957 tcg_gen_addi_reg(next, next, 4);
1958 copy_iaoq_entry(ctx, cpu_iaoq_b, -1, next);
c301f34e 1959 nullify_set(ctx, 0);
31234768 1960 ctx->base.is_jmp = DISAS_IAQ_N_UPDATED;
01afb7be 1961 return true;
c301f34e 1962 }
98cd9ca7
RH
1963 ctx->null_cond.c = TCG_COND_ALWAYS;
1964 }
c301f34e
RH
1965 ctx->iaoq_n = -1;
1966 ctx->iaoq_n_var = next;
98cd9ca7
RH
1967 } else if (is_n && use_nullify_skip(ctx)) {
1968 /* The (conditional) branch, B, nullifies the next insn, N,
1969 and we're allowed to skip execution N (no single-step or
4137cb83 1970 tracepoint in effect). Since the goto_ptr that we must use
98cd9ca7
RH
1971 for the indirect branch consumes no special resources, we
1972 can (conditionally) skip B and continue execution. */
1973 /* The use_nullify_skip test implies we have a known control path. */
1974 tcg_debug_assert(ctx->iaoq_b != -1);
1975 tcg_debug_assert(ctx->iaoq_n != -1);
1976
1977 /* We do have to handle the non-local temporary, DEST, before
1978 branching. Since IOAQ_F is not really live at this point, we
1979 can simply store DEST optimistically. Similarly with IAOQ_B. */
a0180973
RH
1980 copy_iaoq_entry(ctx, cpu_iaoq_f, -1, dest);
1981 next = tcg_temp_new();
1982 tcg_gen_addi_reg(next, dest, 4);
1983 copy_iaoq_entry(ctx, cpu_iaoq_b, -1, next);
98cd9ca7
RH
1984
1985 nullify_over(ctx);
1986 if (link != 0) {
9a91dd84 1987 copy_iaoq_entry(ctx, cpu_gr[link], ctx->iaoq_n, ctx->iaoq_n_var);
98cd9ca7 1988 }
7f11636d 1989 tcg_gen_lookup_and_goto_ptr();
01afb7be 1990 return nullify_end(ctx);
98cd9ca7 1991 } else {
98cd9ca7
RH
1992 c = ctx->null_cond.c;
1993 a0 = ctx->null_cond.a0;
1994 a1 = ctx->null_cond.a1;
1995
1996 tmp = tcg_temp_new();
e12c6309 1997 next = tcg_temp_new();
98cd9ca7 1998
741322f4 1999 copy_iaoq_entry(ctx, tmp, ctx->iaoq_n, ctx->iaoq_n_var);
eaa3783b 2000 tcg_gen_movcond_reg(c, next, a0, a1, tmp, dest);
98cd9ca7
RH
2001 ctx->iaoq_n = -1;
2002 ctx->iaoq_n_var = next;
2003
2004 if (link != 0) {
eaa3783b 2005 tcg_gen_movcond_reg(c, cpu_gr[link], a0, a1, cpu_gr[link], tmp);
98cd9ca7
RH
2006 }
2007
2008 if (is_n) {
2009 /* The branch nullifies the next insn, which means the state of N
2010 after the branch is the inverse of the state of N that applied
2011 to the branch. */
eaa3783b 2012 tcg_gen_setcond_reg(tcg_invert_cond(c), cpu_psw_n, a0, a1);
98cd9ca7
RH
2013 cond_free(&ctx->null_cond);
2014 ctx->null_cond = cond_make_n();
2015 ctx->psw_n_nonzero = true;
2016 } else {
2017 cond_free(&ctx->null_cond);
2018 }
2019 }
01afb7be 2020 return true;
98cd9ca7
RH
2021}
2022
660eefe1
RH
2023/* Implement
2024 * if (IAOQ_Front{30..31} < GR[b]{30..31})
2025 * IAOQ_Next{30..31} ← GR[b]{30..31};
2026 * else
2027 * IAOQ_Next{30..31} ← IAOQ_Front{30..31};
2028 * which keeps the privilege level from being increased.
2029 */
2030static TCGv_reg do_ibranch_priv(DisasContext *ctx, TCGv_reg offset)
2031{
660eefe1
RH
2032 TCGv_reg dest;
2033 switch (ctx->privilege) {
2034 case 0:
2035 /* Privilege 0 is maximum and is allowed to decrease. */
2036 return offset;
2037 case 3:
993119fe 2038 /* Privilege 3 is minimum and is never allowed to increase. */
e12c6309 2039 dest = tcg_temp_new();
660eefe1
RH
2040 tcg_gen_ori_reg(dest, offset, 3);
2041 break;
2042 default:
e12c6309 2043 dest = tcg_temp_new();
660eefe1
RH
2044 tcg_gen_andi_reg(dest, offset, -4);
2045 tcg_gen_ori_reg(dest, dest, ctx->privilege);
2046 tcg_gen_movcond_reg(TCG_COND_GTU, dest, dest, offset, dest, offset);
660eefe1
RH
2047 break;
2048 }
2049 return dest;
660eefe1
RH
2050}
2051
ba1d0b44 2052#ifdef CONFIG_USER_ONLY
7ad439df
RH
2053/* On Linux, page zero is normally marked execute only + gateway.
2054 Therefore normal read or write is supposed to fail, but specific
2055 offsets have kernel code mapped to raise permissions to implement
2056 system calls. Handling this via an explicit check here, rather
2057 in than the "be disp(sr2,r0)" instruction that probably sent us
2058 here, is the easiest way to handle the branch delay slot on the
2059 aforementioned BE. */
31234768 2060static void do_page_zero(DisasContext *ctx)
7ad439df 2061{
a0180973
RH
2062 TCGv_reg tmp;
2063
7ad439df
RH
2064 /* If by some means we get here with PSW[N]=1, that implies that
2065 the B,GATE instruction would be skipped, and we'd fault on the
8b81968c 2066 next insn within the privileged page. */
7ad439df
RH
2067 switch (ctx->null_cond.c) {
2068 case TCG_COND_NEVER:
2069 break;
2070 case TCG_COND_ALWAYS:
eaa3783b 2071 tcg_gen_movi_reg(cpu_psw_n, 0);
7ad439df
RH
2072 goto do_sigill;
2073 default:
2074 /* Since this is always the first (and only) insn within the
2075 TB, we should know the state of PSW[N] from TB->FLAGS. */
2076 g_assert_not_reached();
2077 }
2078
2079 /* Check that we didn't arrive here via some means that allowed
2080 non-sequential instruction execution. Normally the PSW[B] bit
2081 detects this by disallowing the B,GATE instruction to execute
2082 under such conditions. */
2083 if (ctx->iaoq_b != ctx->iaoq_f + 4) {
2084 goto do_sigill;
2085 }
2086
ebd0e151 2087 switch (ctx->iaoq_f & -4) {
7ad439df 2088 case 0x00: /* Null pointer call */
2986721d 2089 gen_excp_1(EXCP_IMP);
31234768
RH
2090 ctx->base.is_jmp = DISAS_NORETURN;
2091 break;
7ad439df
RH
2092
2093 case 0xb0: /* LWS */
2094 gen_excp_1(EXCP_SYSCALL_LWS);
31234768
RH
2095 ctx->base.is_jmp = DISAS_NORETURN;
2096 break;
7ad439df
RH
2097
2098 case 0xe0: /* SET_THREAD_POINTER */
ad75a51e 2099 tcg_gen_st_reg(cpu_gr[26], tcg_env, offsetof(CPUHPPAState, cr[27]));
a0180973
RH
2100 tmp = tcg_temp_new();
2101 tcg_gen_ori_reg(tmp, cpu_gr[31], 3);
2102 copy_iaoq_entry(ctx, cpu_iaoq_f, -1, tmp);
2103 tcg_gen_addi_reg(tmp, tmp, 4);
2104 copy_iaoq_entry(ctx, cpu_iaoq_b, -1, tmp);
31234768
RH
2105 ctx->base.is_jmp = DISAS_IAQ_N_UPDATED;
2106 break;
7ad439df
RH
2107
2108 case 0x100: /* SYSCALL */
2109 gen_excp_1(EXCP_SYSCALL);
31234768
RH
2110 ctx->base.is_jmp = DISAS_NORETURN;
2111 break;
7ad439df
RH
2112
2113 default:
2114 do_sigill:
2986721d 2115 gen_excp_1(EXCP_ILL);
31234768
RH
2116 ctx->base.is_jmp = DISAS_NORETURN;
2117 break;
7ad439df
RH
2118 }
2119}
ba1d0b44 2120#endif
7ad439df 2121
deee69a1 2122static bool trans_nop(DisasContext *ctx, arg_nop *a)
b2167459
RH
2123{
2124 cond_free(&ctx->null_cond);
31234768 2125 return true;
b2167459
RH
2126}
2127
40f9f908 2128static bool trans_break(DisasContext *ctx, arg_break *a)
98a9cb79 2129{
31234768 2130 return gen_excp_iir(ctx, EXCP_BREAK);
98a9cb79
RH
2131}
2132
e36f27ef 2133static bool trans_sync(DisasContext *ctx, arg_sync *a)
98a9cb79
RH
2134{
2135 /* No point in nullifying the memory barrier. */
2136 tcg_gen_mb(TCG_BAR_SC | TCG_MO_ALL);
2137
2138 cond_free(&ctx->null_cond);
31234768 2139 return true;
98a9cb79
RH
2140}
2141
c603e14a 2142static bool trans_mfia(DisasContext *ctx, arg_mfia *a)
98a9cb79 2143{
c603e14a 2144 unsigned rt = a->t;
eaa3783b
RH
2145 TCGv_reg tmp = dest_gpr(ctx, rt);
2146 tcg_gen_movi_reg(tmp, ctx->iaoq_f);
98a9cb79
RH
2147 save_gpr(ctx, rt, tmp);
2148
2149 cond_free(&ctx->null_cond);
31234768 2150 return true;
98a9cb79
RH
2151}
2152
c603e14a 2153static bool trans_mfsp(DisasContext *ctx, arg_mfsp *a)
98a9cb79 2154{
c603e14a
RH
2155 unsigned rt = a->t;
2156 unsigned rs = a->sp;
33423472
RH
2157 TCGv_i64 t0 = tcg_temp_new_i64();
2158 TCGv_reg t1 = tcg_temp_new();
98a9cb79 2159
33423472
RH
2160 load_spr(ctx, t0, rs);
2161 tcg_gen_shri_i64(t0, t0, 32);
2162 tcg_gen_trunc_i64_reg(t1, t0);
2163
2164 save_gpr(ctx, rt, t1);
98a9cb79
RH
2165
2166 cond_free(&ctx->null_cond);
31234768 2167 return true;
98a9cb79
RH
2168}
2169
c603e14a 2170static bool trans_mfctl(DisasContext *ctx, arg_mfctl *a)
98a9cb79 2171{
c603e14a
RH
2172 unsigned rt = a->t;
2173 unsigned ctl = a->r;
eaa3783b 2174 TCGv_reg tmp;
98a9cb79
RH
2175
2176 switch (ctl) {
35136a77 2177 case CR_SAR:
98a9cb79 2178#ifdef TARGET_HPPA64
c603e14a 2179 if (a->e == 0) {
98a9cb79
RH
2180 /* MFSAR without ,W masks low 5 bits. */
2181 tmp = dest_gpr(ctx, rt);
eaa3783b 2182 tcg_gen_andi_reg(tmp, cpu_sar, 31);
98a9cb79 2183 save_gpr(ctx, rt, tmp);
35136a77 2184 goto done;
98a9cb79
RH
2185 }
2186#endif
2187 save_gpr(ctx, rt, cpu_sar);
35136a77
RH
2188 goto done;
2189 case CR_IT: /* Interval Timer */
2190 /* FIXME: Respect PSW_S bit. */
2191 nullify_over(ctx);
98a9cb79 2192 tmp = dest_gpr(ctx, rt);
dfd1b812 2193 if (translator_io_start(&ctx->base)) {
49c29d6c 2194 gen_helper_read_interval_timer(tmp);
31234768 2195 ctx->base.is_jmp = DISAS_IAQ_N_STALE;
49c29d6c
RH
2196 } else {
2197 gen_helper_read_interval_timer(tmp);
49c29d6c 2198 }
98a9cb79 2199 save_gpr(ctx, rt, tmp);
31234768 2200 return nullify_end(ctx);
98a9cb79 2201 case 26:
98a9cb79 2202 case 27:
98a9cb79
RH
2203 break;
2204 default:
2205 /* All other control registers are privileged. */
35136a77
RH
2206 CHECK_MOST_PRIVILEGED(EXCP_PRIV_REG);
2207 break;
98a9cb79
RH
2208 }
2209
e12c6309 2210 tmp = tcg_temp_new();
ad75a51e 2211 tcg_gen_ld_reg(tmp, tcg_env, offsetof(CPUHPPAState, cr[ctl]));
35136a77
RH
2212 save_gpr(ctx, rt, tmp);
2213
2214 done:
98a9cb79 2215 cond_free(&ctx->null_cond);
31234768 2216 return true;
98a9cb79
RH
2217}
2218
c603e14a 2219static bool trans_mtsp(DisasContext *ctx, arg_mtsp *a)
33423472 2220{
c603e14a
RH
2221 unsigned rr = a->r;
2222 unsigned rs = a->sp;
33423472
RH
2223 TCGv_i64 t64;
2224
2225 if (rs >= 5) {
2226 CHECK_MOST_PRIVILEGED(EXCP_PRIV_REG);
2227 }
2228 nullify_over(ctx);
2229
2230 t64 = tcg_temp_new_i64();
2231 tcg_gen_extu_reg_i64(t64, load_gpr(ctx, rr));
2232 tcg_gen_shli_i64(t64, t64, 32);
2233
2234 if (rs >= 4) {
ad75a51e 2235 tcg_gen_st_i64(t64, tcg_env, offsetof(CPUHPPAState, sr[rs]));
494737b7 2236 ctx->tb_flags &= ~TB_FLAG_SR_SAME;
33423472
RH
2237 } else {
2238 tcg_gen_mov_i64(cpu_sr[rs], t64);
2239 }
33423472 2240
31234768 2241 return nullify_end(ctx);
33423472
RH
2242}
2243
c603e14a 2244static bool trans_mtctl(DisasContext *ctx, arg_mtctl *a)
98a9cb79 2245{
c603e14a 2246 unsigned ctl = a->t;
4845f015 2247 TCGv_reg reg;
eaa3783b 2248 TCGv_reg tmp;
98a9cb79 2249
35136a77 2250 if (ctl == CR_SAR) {
4845f015 2251 reg = load_gpr(ctx, a->r);
98a9cb79 2252 tmp = tcg_temp_new();
f3618f59 2253 tcg_gen_andi_reg(tmp, reg, ctx->is_pa20 ? 63 : 31);
98a9cb79 2254 save_or_nullify(ctx, cpu_sar, tmp);
35136a77
RH
2255
2256 cond_free(&ctx->null_cond);
31234768 2257 return true;
98a9cb79
RH
2258 }
2259
35136a77
RH
2260 /* All other control registers are privileged or read-only. */
2261 CHECK_MOST_PRIVILEGED(EXCP_PRIV_REG);
2262
c603e14a 2263#ifndef CONFIG_USER_ONLY
35136a77 2264 nullify_over(ctx);
4845f015
SS
2265 reg = load_gpr(ctx, a->r);
2266
35136a77
RH
2267 switch (ctl) {
2268 case CR_IT:
ad75a51e 2269 gen_helper_write_interval_timer(tcg_env, reg);
35136a77 2270 break;
4f5f2548 2271 case CR_EIRR:
ad75a51e 2272 gen_helper_write_eirr(tcg_env, reg);
4f5f2548
RH
2273 break;
2274 case CR_EIEM:
ad75a51e 2275 gen_helper_write_eiem(tcg_env, reg);
31234768 2276 ctx->base.is_jmp = DISAS_IAQ_N_STALE_EXIT;
4f5f2548
RH
2277 break;
2278
35136a77
RH
2279 case CR_IIASQ:
2280 case CR_IIAOQ:
2281 /* FIXME: Respect PSW_Q bit */
2282 /* The write advances the queue and stores to the back element. */
e12c6309 2283 tmp = tcg_temp_new();
ad75a51e 2284 tcg_gen_ld_reg(tmp, tcg_env,
35136a77 2285 offsetof(CPUHPPAState, cr_back[ctl - CR_IIASQ]));
ad75a51e
RH
2286 tcg_gen_st_reg(tmp, tcg_env, offsetof(CPUHPPAState, cr[ctl]));
2287 tcg_gen_st_reg(reg, tcg_env,
35136a77
RH
2288 offsetof(CPUHPPAState, cr_back[ctl - CR_IIASQ]));
2289 break;
2290
d5de20bd
SS
2291 case CR_PID1:
2292 case CR_PID2:
2293 case CR_PID3:
2294 case CR_PID4:
ad75a51e 2295 tcg_gen_st_reg(reg, tcg_env, offsetof(CPUHPPAState, cr[ctl]));
d5de20bd 2296#ifndef CONFIG_USER_ONLY
ad75a51e 2297 gen_helper_change_prot_id(tcg_env);
d5de20bd
SS
2298#endif
2299 break;
2300
35136a77 2301 default:
ad75a51e 2302 tcg_gen_st_reg(reg, tcg_env, offsetof(CPUHPPAState, cr[ctl]));
35136a77
RH
2303 break;
2304 }
31234768 2305 return nullify_end(ctx);
4f5f2548 2306#endif
98a9cb79
RH
2307}
2308
c603e14a 2309static bool trans_mtsarcm(DisasContext *ctx, arg_mtsarcm *a)
98a9cb79 2310{
eaa3783b 2311 TCGv_reg tmp = tcg_temp_new();
98a9cb79 2312
c603e14a 2313 tcg_gen_not_reg(tmp, load_gpr(ctx, a->r));
f3618f59 2314 tcg_gen_andi_reg(tmp, tmp, ctx->is_pa20 ? 63 : 31);
98a9cb79 2315 save_or_nullify(ctx, cpu_sar, tmp);
98a9cb79
RH
2316
2317 cond_free(&ctx->null_cond);
31234768 2318 return true;
98a9cb79
RH
2319}
2320
e36f27ef 2321static bool trans_ldsid(DisasContext *ctx, arg_ldsid *a)
98a9cb79 2322{
e36f27ef 2323 TCGv_reg dest = dest_gpr(ctx, a->t);
98a9cb79 2324
2330504c
HD
2325#ifdef CONFIG_USER_ONLY
2326 /* We don't implement space registers in user mode. */
eaa3783b 2327 tcg_gen_movi_reg(dest, 0);
2330504c 2328#else
2330504c
HD
2329 TCGv_i64 t0 = tcg_temp_new_i64();
2330
e36f27ef 2331 tcg_gen_mov_i64(t0, space_select(ctx, a->sp, load_gpr(ctx, a->b)));
2330504c
HD
2332 tcg_gen_shri_i64(t0, t0, 32);
2333 tcg_gen_trunc_i64_reg(dest, t0);
2330504c 2334#endif
e36f27ef 2335 save_gpr(ctx, a->t, dest);
98a9cb79
RH
2336
2337 cond_free(&ctx->null_cond);
31234768 2338 return true;
98a9cb79
RH
2339}
2340
e36f27ef 2341static bool trans_rsm(DisasContext *ctx, arg_rsm *a)
e1b5a5ed 2342{
e36f27ef
RH
2343 CHECK_MOST_PRIVILEGED(EXCP_PRIV_OPR);
2344#ifndef CONFIG_USER_ONLY
e1b5a5ed
RH
2345 TCGv_reg tmp;
2346
e1b5a5ed
RH
2347 nullify_over(ctx);
2348
e12c6309 2349 tmp = tcg_temp_new();
ad75a51e 2350 tcg_gen_ld_reg(tmp, tcg_env, offsetof(CPUHPPAState, psw));
e36f27ef 2351 tcg_gen_andi_reg(tmp, tmp, ~a->i);
ad75a51e 2352 gen_helper_swap_system_mask(tmp, tcg_env, tmp);
e36f27ef 2353 save_gpr(ctx, a->t, tmp);
e1b5a5ed
RH
2354
2355 /* Exit the TB to recognize new interrupts, e.g. PSW_M. */
31234768
RH
2356 ctx->base.is_jmp = DISAS_IAQ_N_STALE_EXIT;
2357 return nullify_end(ctx);
e36f27ef 2358#endif
e1b5a5ed
RH
2359}
2360
e36f27ef 2361static bool trans_ssm(DisasContext *ctx, arg_ssm *a)
e1b5a5ed 2362{
e36f27ef
RH
2363 CHECK_MOST_PRIVILEGED(EXCP_PRIV_OPR);
2364#ifndef CONFIG_USER_ONLY
e1b5a5ed
RH
2365 TCGv_reg tmp;
2366
e1b5a5ed
RH
2367 nullify_over(ctx);
2368
e12c6309 2369 tmp = tcg_temp_new();
ad75a51e 2370 tcg_gen_ld_reg(tmp, tcg_env, offsetof(CPUHPPAState, psw));
e36f27ef 2371 tcg_gen_ori_reg(tmp, tmp, a->i);
ad75a51e 2372 gen_helper_swap_system_mask(tmp, tcg_env, tmp);
e36f27ef 2373 save_gpr(ctx, a->t, tmp);
e1b5a5ed
RH
2374
2375 /* Exit the TB to recognize new interrupts, e.g. PSW_I. */
31234768
RH
2376 ctx->base.is_jmp = DISAS_IAQ_N_STALE_EXIT;
2377 return nullify_end(ctx);
e36f27ef 2378#endif
e1b5a5ed
RH
2379}
2380
c603e14a 2381static bool trans_mtsm(DisasContext *ctx, arg_mtsm *a)
e1b5a5ed 2382{
e1b5a5ed 2383 CHECK_MOST_PRIVILEGED(EXCP_PRIV_OPR);
c603e14a
RH
2384#ifndef CONFIG_USER_ONLY
2385 TCGv_reg tmp, reg;
e1b5a5ed
RH
2386 nullify_over(ctx);
2387
c603e14a 2388 reg = load_gpr(ctx, a->r);
e12c6309 2389 tmp = tcg_temp_new();
ad75a51e 2390 gen_helper_swap_system_mask(tmp, tcg_env, reg);
e1b5a5ed
RH
2391
2392 /* Exit the TB to recognize new interrupts. */
31234768
RH
2393 ctx->base.is_jmp = DISAS_IAQ_N_STALE_EXIT;
2394 return nullify_end(ctx);
c603e14a 2395#endif
e1b5a5ed 2396}
f49b3537 2397
e36f27ef 2398static bool do_rfi(DisasContext *ctx, bool rfi_r)
f49b3537 2399{
f49b3537 2400 CHECK_MOST_PRIVILEGED(EXCP_PRIV_OPR);
e36f27ef 2401#ifndef CONFIG_USER_ONLY
f49b3537
RH
2402 nullify_over(ctx);
2403
e36f27ef 2404 if (rfi_r) {
ad75a51e 2405 gen_helper_rfi_r(tcg_env);
f49b3537 2406 } else {
ad75a51e 2407 gen_helper_rfi(tcg_env);
f49b3537 2408 }
31234768 2409 /* Exit the TB to recognize new interrupts. */
8532a14e 2410 tcg_gen_exit_tb(NULL, 0);
31234768 2411 ctx->base.is_jmp = DISAS_NORETURN;
f49b3537 2412
31234768 2413 return nullify_end(ctx);
e36f27ef
RH
2414#endif
2415}
2416
2417static bool trans_rfi(DisasContext *ctx, arg_rfi *a)
2418{
2419 return do_rfi(ctx, false);
2420}
2421
2422static bool trans_rfi_r(DisasContext *ctx, arg_rfi_r *a)
2423{
2424 return do_rfi(ctx, true);
f49b3537 2425}
6210db05 2426
96927adb
RH
2427static bool trans_halt(DisasContext *ctx, arg_halt *a)
2428{
2429 CHECK_MOST_PRIVILEGED(EXCP_PRIV_OPR);
e36f27ef 2430#ifndef CONFIG_USER_ONLY
96927adb 2431 nullify_over(ctx);
ad75a51e 2432 gen_helper_halt(tcg_env);
96927adb
RH
2433 ctx->base.is_jmp = DISAS_NORETURN;
2434 return nullify_end(ctx);
2435#endif
2436}
2437
2438static bool trans_reset(DisasContext *ctx, arg_reset *a)
6210db05
HD
2439{
2440 CHECK_MOST_PRIVILEGED(EXCP_PRIV_OPR);
96927adb 2441#ifndef CONFIG_USER_ONLY
6210db05 2442 nullify_over(ctx);
ad75a51e 2443 gen_helper_reset(tcg_env);
31234768
RH
2444 ctx->base.is_jmp = DISAS_NORETURN;
2445 return nullify_end(ctx);
96927adb 2446#endif
6210db05 2447}
e1b5a5ed 2448
4a4554c6
HD
2449static bool trans_getshadowregs(DisasContext *ctx, arg_getshadowregs *a)
2450{
2451 CHECK_MOST_PRIVILEGED(EXCP_PRIV_OPR);
2452#ifndef CONFIG_USER_ONLY
2453 nullify_over(ctx);
ad75a51e 2454 gen_helper_getshadowregs(tcg_env);
4a4554c6
HD
2455 return nullify_end(ctx);
2456#endif
2457}
2458
deee69a1 2459static bool trans_nop_addrx(DisasContext *ctx, arg_ldst *a)
98a9cb79 2460{
deee69a1
RH
2461 if (a->m) {
2462 TCGv_reg dest = dest_gpr(ctx, a->b);
2463 TCGv_reg src1 = load_gpr(ctx, a->b);
2464 TCGv_reg src2 = load_gpr(ctx, a->x);
98a9cb79 2465
deee69a1
RH
2466 /* The only thing we need to do is the base register modification. */
2467 tcg_gen_add_reg(dest, src1, src2);
2468 save_gpr(ctx, a->b, dest);
2469 }
98a9cb79 2470 cond_free(&ctx->null_cond);
31234768 2471 return true;
98a9cb79
RH
2472}
2473
deee69a1 2474static bool trans_probe(DisasContext *ctx, arg_probe *a)
98a9cb79 2475{
86f8d05f 2476 TCGv_reg dest, ofs;
eed14219 2477 TCGv_i32 level, want;
86f8d05f 2478 TCGv_tl addr;
98a9cb79
RH
2479
2480 nullify_over(ctx);
2481
deee69a1
RH
2482 dest = dest_gpr(ctx, a->t);
2483 form_gva(ctx, &addr, &ofs, a->b, 0, 0, 0, a->sp, 0, false);
eed14219 2484
deee69a1 2485 if (a->imm) {
29dd6f64 2486 level = tcg_constant_i32(a->ri);
98a9cb79 2487 } else {
eed14219 2488 level = tcg_temp_new_i32();
deee69a1 2489 tcg_gen_trunc_reg_i32(level, load_gpr(ctx, a->ri));
eed14219 2490 tcg_gen_andi_i32(level, level, 3);
98a9cb79 2491 }
29dd6f64 2492 want = tcg_constant_i32(a->write ? PAGE_WRITE : PAGE_READ);
eed14219 2493
ad75a51e 2494 gen_helper_probe(dest, tcg_env, addr, level, want);
eed14219 2495
deee69a1 2496 save_gpr(ctx, a->t, dest);
31234768 2497 return nullify_end(ctx);
98a9cb79
RH
2498}
2499
deee69a1 2500static bool trans_ixtlbx(DisasContext *ctx, arg_ixtlbx *a)
8d6ae7fb 2501{
deee69a1
RH
2502 CHECK_MOST_PRIVILEGED(EXCP_PRIV_OPR);
2503#ifndef CONFIG_USER_ONLY
8d6ae7fb
RH
2504 TCGv_tl addr;
2505 TCGv_reg ofs, reg;
2506
8d6ae7fb
RH
2507 nullify_over(ctx);
2508
deee69a1
RH
2509 form_gva(ctx, &addr, &ofs, a->b, 0, 0, 0, a->sp, 0, false);
2510 reg = load_gpr(ctx, a->r);
2511 if (a->addr) {
ad75a51e 2512 gen_helper_itlba(tcg_env, addr, reg);
8d6ae7fb 2513 } else {
ad75a51e 2514 gen_helper_itlbp(tcg_env, addr, reg);
8d6ae7fb
RH
2515 }
2516
32dc7569
SS
2517 /* Exit TB for TLB change if mmu is enabled. */
2518 if (ctx->tb_flags & PSW_C) {
31234768
RH
2519 ctx->base.is_jmp = DISAS_IAQ_N_STALE;
2520 }
2521 return nullify_end(ctx);
deee69a1 2522#endif
8d6ae7fb 2523}
63300a00 2524
deee69a1 2525static bool trans_pxtlbx(DisasContext *ctx, arg_pxtlbx *a)
63300a00 2526{
deee69a1
RH
2527 CHECK_MOST_PRIVILEGED(EXCP_PRIV_OPR);
2528#ifndef CONFIG_USER_ONLY
63300a00
RH
2529 TCGv_tl addr;
2530 TCGv_reg ofs;
2531
63300a00
RH
2532 nullify_over(ctx);
2533
deee69a1
RH
2534 form_gva(ctx, &addr, &ofs, a->b, a->x, 0, 0, a->sp, a->m, false);
2535 if (a->m) {
2536 save_gpr(ctx, a->b, ofs);
63300a00 2537 }
deee69a1 2538 if (a->local) {
ad75a51e 2539 gen_helper_ptlbe(tcg_env);
63300a00 2540 } else {
ad75a51e 2541 gen_helper_ptlb(tcg_env, addr);
63300a00
RH
2542 }
2543
2544 /* Exit TB for TLB change if mmu is enabled. */
6797c315
NH
2545 if (ctx->tb_flags & PSW_C) {
2546 ctx->base.is_jmp = DISAS_IAQ_N_STALE;
2547 }
2548 return nullify_end(ctx);
2549#endif
2550}
2551
2552/*
2553 * Implement the pcxl and pcxl2 Fast TLB Insert instructions.
2554 * See
2555 * https://parisc.wiki.kernel.org/images-parisc/a/a9/Pcxl2_ers.pdf
2556 * page 13-9 (195/206)
2557 */
2558static bool trans_ixtlbxf(DisasContext *ctx, arg_ixtlbxf *a)
2559{
2560 CHECK_MOST_PRIVILEGED(EXCP_PRIV_OPR);
2561#ifndef CONFIG_USER_ONLY
2562 TCGv_tl addr, atl, stl;
2563 TCGv_reg reg;
2564
2565 nullify_over(ctx);
2566
2567 /*
2568 * FIXME:
2569 * if (not (pcxl or pcxl2))
2570 * return gen_illegal(ctx);
2571 *
2572 * Note for future: these are 32-bit systems; no hppa64.
2573 */
2574
2575 atl = tcg_temp_new_tl();
2576 stl = tcg_temp_new_tl();
2577 addr = tcg_temp_new_tl();
2578
ad75a51e 2579 tcg_gen_ld32u_i64(stl, tcg_env,
6797c315
NH
2580 a->data ? offsetof(CPUHPPAState, cr[CR_ISR])
2581 : offsetof(CPUHPPAState, cr[CR_IIASQ]));
ad75a51e 2582 tcg_gen_ld32u_i64(atl, tcg_env,
6797c315
NH
2583 a->data ? offsetof(CPUHPPAState, cr[CR_IOR])
2584 : offsetof(CPUHPPAState, cr[CR_IIAOQ]));
2585 tcg_gen_shli_i64(stl, stl, 32);
2586 tcg_gen_or_tl(addr, atl, stl);
6797c315
NH
2587
2588 reg = load_gpr(ctx, a->r);
2589 if (a->addr) {
ad75a51e 2590 gen_helper_itlba(tcg_env, addr, reg);
6797c315 2591 } else {
ad75a51e 2592 gen_helper_itlbp(tcg_env, addr, reg);
6797c315 2593 }
6797c315
NH
2594
2595 /* Exit TB for TLB change if mmu is enabled. */
32dc7569 2596 if (ctx->tb_flags & PSW_C) {
31234768
RH
2597 ctx->base.is_jmp = DISAS_IAQ_N_STALE;
2598 }
2599 return nullify_end(ctx);
deee69a1 2600#endif
63300a00 2601}
2dfcca9f 2602
deee69a1 2603static bool trans_lpa(DisasContext *ctx, arg_ldst *a)
2dfcca9f 2604{
deee69a1
RH
2605 CHECK_MOST_PRIVILEGED(EXCP_PRIV_OPR);
2606#ifndef CONFIG_USER_ONLY
2dfcca9f
RH
2607 TCGv_tl vaddr;
2608 TCGv_reg ofs, paddr;
2609
2dfcca9f
RH
2610 nullify_over(ctx);
2611
deee69a1 2612 form_gva(ctx, &vaddr, &ofs, a->b, a->x, 0, 0, a->sp, a->m, false);
2dfcca9f
RH
2613
2614 paddr = tcg_temp_new();
ad75a51e 2615 gen_helper_lpa(paddr, tcg_env, vaddr);
2dfcca9f
RH
2616
2617 /* Note that physical address result overrides base modification. */
deee69a1
RH
2618 if (a->m) {
2619 save_gpr(ctx, a->b, ofs);
2dfcca9f 2620 }
deee69a1 2621 save_gpr(ctx, a->t, paddr);
2dfcca9f 2622
31234768 2623 return nullify_end(ctx);
deee69a1 2624#endif
2dfcca9f 2625}
43a97b81 2626
deee69a1 2627static bool trans_lci(DisasContext *ctx, arg_lci *a)
43a97b81 2628{
43a97b81
RH
2629 CHECK_MOST_PRIVILEGED(EXCP_PRIV_OPR);
2630
2631 /* The Coherence Index is an implementation-defined function of the
2632 physical address. Two addresses with the same CI have a coherent
2633 view of the cache. Our implementation is to return 0 for all,
2634 since the entire address space is coherent. */
29dd6f64 2635 save_gpr(ctx, a->t, tcg_constant_reg(0));
43a97b81 2636
31234768
RH
2637 cond_free(&ctx->null_cond);
2638 return true;
43a97b81 2639}
98a9cb79 2640
0c982a28 2641static bool trans_add(DisasContext *ctx, arg_rrr_cf_sh *a)
b2167459 2642{
0c982a28
RH
2643 return do_add_reg(ctx, a, false, false, false, false);
2644}
b2167459 2645
0c982a28
RH
2646static bool trans_add_l(DisasContext *ctx, arg_rrr_cf_sh *a)
2647{
2648 return do_add_reg(ctx, a, true, false, false, false);
2649}
b2167459 2650
0c982a28
RH
2651static bool trans_add_tsv(DisasContext *ctx, arg_rrr_cf_sh *a)
2652{
2653 return do_add_reg(ctx, a, false, true, false, false);
b2167459
RH
2654}
2655
0c982a28 2656static bool trans_add_c(DisasContext *ctx, arg_rrr_cf_sh *a)
b2167459 2657{
0c982a28
RH
2658 return do_add_reg(ctx, a, false, false, false, true);
2659}
b2167459 2660
0c982a28
RH
2661static bool trans_add_c_tsv(DisasContext *ctx, arg_rrr_cf_sh *a)
2662{
2663 return do_add_reg(ctx, a, false, true, false, true);
2664}
b2167459 2665
0c982a28
RH
2666static bool trans_sub(DisasContext *ctx, arg_rrr_cf *a)
2667{
2668 return do_sub_reg(ctx, a, false, false, false);
b2167459
RH
2669}
2670
0c982a28 2671static bool trans_sub_tsv(DisasContext *ctx, arg_rrr_cf *a)
b2167459 2672{
0c982a28
RH
2673 return do_sub_reg(ctx, a, true, false, false);
2674}
b2167459 2675
0c982a28
RH
2676static bool trans_sub_tc(DisasContext *ctx, arg_rrr_cf *a)
2677{
2678 return do_sub_reg(ctx, a, false, false, true);
b2167459
RH
2679}
2680
0c982a28 2681static bool trans_sub_tsv_tc(DisasContext *ctx, arg_rrr_cf *a)
b2167459 2682{
0c982a28
RH
2683 return do_sub_reg(ctx, a, true, false, true);
2684}
2685
2686static bool trans_sub_b(DisasContext *ctx, arg_rrr_cf *a)
2687{
2688 return do_sub_reg(ctx, a, false, true, false);
2689}
2690
2691static bool trans_sub_b_tsv(DisasContext *ctx, arg_rrr_cf *a)
2692{
2693 return do_sub_reg(ctx, a, true, true, false);
2694}
2695
2696static bool trans_andcm(DisasContext *ctx, arg_rrr_cf *a)
2697{
2698 return do_log_reg(ctx, a, tcg_gen_andc_reg);
2699}
2700
2701static bool trans_and(DisasContext *ctx, arg_rrr_cf *a)
2702{
2703 return do_log_reg(ctx, a, tcg_gen_and_reg);
2704}
2705
2706static bool trans_or(DisasContext *ctx, arg_rrr_cf *a)
2707{
2708 if (a->cf == 0) {
2709 unsigned r2 = a->r2;
2710 unsigned r1 = a->r1;
2711 unsigned rt = a->t;
b2167459 2712
7aee8189
RH
2713 if (rt == 0) { /* NOP */
2714 cond_free(&ctx->null_cond);
2715 return true;
2716 }
2717 if (r2 == 0) { /* COPY */
2718 if (r1 == 0) {
2719 TCGv_reg dest = dest_gpr(ctx, rt);
2720 tcg_gen_movi_reg(dest, 0);
2721 save_gpr(ctx, rt, dest);
2722 } else {
2723 save_gpr(ctx, rt, cpu_gr[r1]);
2724 }
2725 cond_free(&ctx->null_cond);
2726 return true;
2727 }
2728#ifndef CONFIG_USER_ONLY
2729 /* These are QEMU extensions and are nops in the real architecture:
2730 *
2731 * or %r10,%r10,%r10 -- idle loop; wait for interrupt
2732 * or %r31,%r31,%r31 -- death loop; offline cpu
2733 * currently implemented as idle.
2734 */
2735 if ((rt == 10 || rt == 31) && r1 == rt && r2 == rt) { /* PAUSE */
7aee8189
RH
2736 /* No need to check for supervisor, as userland can only pause
2737 until the next timer interrupt. */
2738 nullify_over(ctx);
2739
2740 /* Advance the instruction queue. */
741322f4
RH
2741 copy_iaoq_entry(ctx, cpu_iaoq_f, ctx->iaoq_b, cpu_iaoq_b);
2742 copy_iaoq_entry(ctx, cpu_iaoq_b, ctx->iaoq_n, ctx->iaoq_n_var);
7aee8189
RH
2743 nullify_set(ctx, 0);
2744
2745 /* Tell the qemu main loop to halt until this cpu has work. */
ad75a51e 2746 tcg_gen_st_i32(tcg_constant_i32(1), tcg_env,
29dd6f64 2747 offsetof(CPUState, halted) - offsetof(HPPACPU, env));
7aee8189
RH
2748 gen_excp_1(EXCP_HALTED);
2749 ctx->base.is_jmp = DISAS_NORETURN;
2750
2751 return nullify_end(ctx);
2752 }
2753#endif
b2167459 2754 }
0c982a28
RH
2755 return do_log_reg(ctx, a, tcg_gen_or_reg);
2756}
7aee8189 2757
0c982a28
RH
2758static bool trans_xor(DisasContext *ctx, arg_rrr_cf *a)
2759{
2760 return do_log_reg(ctx, a, tcg_gen_xor_reg);
b2167459
RH
2761}
2762
0c982a28 2763static bool trans_cmpclr(DisasContext *ctx, arg_rrr_cf *a)
b2167459 2764{
eaa3783b 2765 TCGv_reg tcg_r1, tcg_r2;
b2167459 2766
0c982a28 2767 if (a->cf) {
b2167459
RH
2768 nullify_over(ctx);
2769 }
0c982a28
RH
2770 tcg_r1 = load_gpr(ctx, a->r1);
2771 tcg_r2 = load_gpr(ctx, a->r2);
2772 do_cmpclr(ctx, a->t, tcg_r1, tcg_r2, a->cf);
31234768 2773 return nullify_end(ctx);
b2167459
RH
2774}
2775
0c982a28 2776static bool trans_uxor(DisasContext *ctx, arg_rrr_cf *a)
b2167459 2777{
eaa3783b 2778 TCGv_reg tcg_r1, tcg_r2;
b2167459 2779
0c982a28 2780 if (a->cf) {
b2167459
RH
2781 nullify_over(ctx);
2782 }
0c982a28
RH
2783 tcg_r1 = load_gpr(ctx, a->r1);
2784 tcg_r2 = load_gpr(ctx, a->r2);
2785 do_unit(ctx, a->t, tcg_r1, tcg_r2, a->cf, false, tcg_gen_xor_reg);
31234768 2786 return nullify_end(ctx);
b2167459
RH
2787}
2788
0c982a28 2789static bool do_uaddcm(DisasContext *ctx, arg_rrr_cf *a, bool is_tc)
b2167459 2790{
eaa3783b 2791 TCGv_reg tcg_r1, tcg_r2, tmp;
b2167459 2792
0c982a28 2793 if (a->cf) {
b2167459
RH
2794 nullify_over(ctx);
2795 }
0c982a28
RH
2796 tcg_r1 = load_gpr(ctx, a->r1);
2797 tcg_r2 = load_gpr(ctx, a->r2);
e12c6309 2798 tmp = tcg_temp_new();
eaa3783b 2799 tcg_gen_not_reg(tmp, tcg_r2);
0c982a28 2800 do_unit(ctx, a->t, tcg_r1, tmp, a->cf, is_tc, tcg_gen_add_reg);
31234768 2801 return nullify_end(ctx);
b2167459
RH
2802}
2803
0c982a28
RH
2804static bool trans_uaddcm(DisasContext *ctx, arg_rrr_cf *a)
2805{
2806 return do_uaddcm(ctx, a, false);
2807}
2808
2809static bool trans_uaddcm_tc(DisasContext *ctx, arg_rrr_cf *a)
2810{
2811 return do_uaddcm(ctx, a, true);
2812}
2813
2814static bool do_dcor(DisasContext *ctx, arg_rr_cf *a, bool is_i)
b2167459 2815{
eaa3783b 2816 TCGv_reg tmp;
b2167459
RH
2817
2818 nullify_over(ctx);
2819
e12c6309 2820 tmp = tcg_temp_new();
eaa3783b 2821 tcg_gen_shri_reg(tmp, cpu_psw_cb, 3);
b2167459 2822 if (!is_i) {
eaa3783b 2823 tcg_gen_not_reg(tmp, tmp);
b2167459 2824 }
eaa3783b
RH
2825 tcg_gen_andi_reg(tmp, tmp, 0x11111111);
2826 tcg_gen_muli_reg(tmp, tmp, 6);
60e29463 2827 do_unit(ctx, a->t, load_gpr(ctx, a->r), tmp, a->cf, false,
31234768 2828 is_i ? tcg_gen_add_reg : tcg_gen_sub_reg);
31234768 2829 return nullify_end(ctx);
b2167459
RH
2830}
2831
0c982a28
RH
2832static bool trans_dcor(DisasContext *ctx, arg_rr_cf *a)
2833{
2834 return do_dcor(ctx, a, false);
2835}
2836
2837static bool trans_dcor_i(DisasContext *ctx, arg_rr_cf *a)
2838{
2839 return do_dcor(ctx, a, true);
2840}
2841
2842static bool trans_ds(DisasContext *ctx, arg_rrr_cf *a)
b2167459 2843{
eaa3783b 2844 TCGv_reg dest, add1, add2, addc, zero, in1, in2;
72ca8753 2845 TCGv_reg cout;
b2167459
RH
2846
2847 nullify_over(ctx);
2848
0c982a28
RH
2849 in1 = load_gpr(ctx, a->r1);
2850 in2 = load_gpr(ctx, a->r2);
b2167459
RH
2851
2852 add1 = tcg_temp_new();
2853 add2 = tcg_temp_new();
2854 addc = tcg_temp_new();
2855 dest = tcg_temp_new();
29dd6f64 2856 zero = tcg_constant_reg(0);
b2167459
RH
2857
2858 /* Form R1 << 1 | PSW[CB]{8}. */
eaa3783b 2859 tcg_gen_add_reg(add1, in1, in1);
72ca8753 2860 tcg_gen_add_reg(add1, add1, get_psw_carry(ctx, false));
b2167459 2861
72ca8753
RH
2862 /*
2863 * Add or subtract R2, depending on PSW[V]. Proper computation of
2864 * carry requires that we subtract via + ~R2 + 1, as described in
2865 * the manual. By extracting and masking V, we can produce the
2866 * proper inputs to the addition without movcond.
2867 */
2868 tcg_gen_sextract_reg(addc, cpu_psw_v, 31, 1);
eaa3783b
RH
2869 tcg_gen_xor_reg(add2, in2, addc);
2870 tcg_gen_andi_reg(addc, addc, 1);
72ca8753
RH
2871
2872 tcg_gen_add2_reg(dest, cpu_psw_cb_msb, add1, zero, add2, zero);
2873 tcg_gen_add2_reg(dest, cpu_psw_cb_msb, dest, cpu_psw_cb_msb, addc, zero);
b2167459 2874
b2167459 2875 /* Write back the result register. */
0c982a28 2876 save_gpr(ctx, a->t, dest);
b2167459
RH
2877
2878 /* Write back PSW[CB]. */
eaa3783b
RH
2879 tcg_gen_xor_reg(cpu_psw_cb, add1, add2);
2880 tcg_gen_xor_reg(cpu_psw_cb, cpu_psw_cb, dest);
b2167459
RH
2881
2882 /* Write back PSW[V] for the division step. */
72ca8753
RH
2883 cout = get_psw_carry(ctx, false);
2884 tcg_gen_neg_reg(cpu_psw_v, cout);
eaa3783b 2885 tcg_gen_xor_reg(cpu_psw_v, cpu_psw_v, in2);
b2167459
RH
2886
2887 /* Install the new nullification. */
0c982a28 2888 if (a->cf) {
eaa3783b 2889 TCGv_reg sv = NULL;
b47a4a02 2890 if (cond_need_sv(a->cf >> 1)) {
b2167459
RH
2891 /* ??? The lshift is supposed to contribute to overflow. */
2892 sv = do_add_sv(ctx, dest, add1, add2);
2893 }
a751eb31 2894 ctx->null_cond = do_cond(ctx, a->cf, false, dest, cout, sv);
b2167459
RH
2895 }
2896
31234768 2897 return nullify_end(ctx);
b2167459
RH
2898}
2899
0588e061 2900static bool trans_addi(DisasContext *ctx, arg_rri_cf *a)
b2167459 2901{
0588e061
RH
2902 return do_add_imm(ctx, a, false, false);
2903}
b2167459 2904
0588e061
RH
2905static bool trans_addi_tsv(DisasContext *ctx, arg_rri_cf *a)
2906{
2907 return do_add_imm(ctx, a, true, false);
b2167459
RH
2908}
2909
0588e061 2910static bool trans_addi_tc(DisasContext *ctx, arg_rri_cf *a)
b2167459 2911{
0588e061
RH
2912 return do_add_imm(ctx, a, false, true);
2913}
b2167459 2914
0588e061
RH
2915static bool trans_addi_tc_tsv(DisasContext *ctx, arg_rri_cf *a)
2916{
2917 return do_add_imm(ctx, a, true, true);
2918}
b2167459 2919
0588e061
RH
2920static bool trans_subi(DisasContext *ctx, arg_rri_cf *a)
2921{
2922 return do_sub_imm(ctx, a, false);
2923}
b2167459 2924
0588e061
RH
2925static bool trans_subi_tsv(DisasContext *ctx, arg_rri_cf *a)
2926{
2927 return do_sub_imm(ctx, a, true);
b2167459
RH
2928}
2929
0588e061 2930static bool trans_cmpiclr(DisasContext *ctx, arg_rri_cf *a)
b2167459 2931{
eaa3783b 2932 TCGv_reg tcg_im, tcg_r2;
b2167459 2933
0588e061 2934 if (a->cf) {
b2167459
RH
2935 nullify_over(ctx);
2936 }
2937
d4e58033 2938 tcg_im = tcg_constant_reg(a->i);
0588e061
RH
2939 tcg_r2 = load_gpr(ctx, a->r);
2940 do_cmpclr(ctx, a->t, tcg_im, tcg_r2, a->cf);
b2167459 2941
31234768 2942 return nullify_end(ctx);
b2167459
RH
2943}
2944
1cd012a5 2945static bool trans_ld(DisasContext *ctx, arg_ldst *a)
96d6407f 2946{
0786a3b6
HD
2947 if (unlikely(TARGET_REGISTER_BITS == 32 && a->size > MO_32)) {
2948 return gen_illegal(ctx);
2949 } else {
2950 return do_load(ctx, a->t, a->b, a->x, a->scale ? a->size : 0,
1cd012a5 2951 a->disp, a->sp, a->m, a->size | MO_TE);
0786a3b6 2952 }
96d6407f
RH
2953}
2954
1cd012a5 2955static bool trans_st(DisasContext *ctx, arg_ldst *a)
96d6407f 2956{
1cd012a5 2957 assert(a->x == 0 && a->scale == 0);
0786a3b6
HD
2958 if (unlikely(TARGET_REGISTER_BITS == 32 && a->size > MO_32)) {
2959 return gen_illegal(ctx);
2960 } else {
2961 return do_store(ctx, a->t, a->b, a->disp, a->sp, a->m, a->size | MO_TE);
2962 }
96d6407f
RH
2963}
2964
1cd012a5 2965static bool trans_ldc(DisasContext *ctx, arg_ldst *a)
96d6407f 2966{
b1af755c 2967 MemOp mop = MO_TE | MO_ALIGN | a->size;
86f8d05f
RH
2968 TCGv_reg zero, dest, ofs;
2969 TCGv_tl addr;
96d6407f
RH
2970
2971 nullify_over(ctx);
2972
1cd012a5 2973 if (a->m) {
86f8d05f
RH
2974 /* Base register modification. Make sure if RT == RB,
2975 we see the result of the load. */
e12c6309 2976 dest = tcg_temp_new();
96d6407f 2977 } else {
1cd012a5 2978 dest = dest_gpr(ctx, a->t);
96d6407f
RH
2979 }
2980
1cd012a5
RH
2981 form_gva(ctx, &addr, &ofs, a->b, a->x, a->scale ? a->size : 0,
2982 a->disp, a->sp, a->m, ctx->mmu_idx == MMU_PHYS_IDX);
b1af755c
RH
2983
2984 /*
2985 * For hppa1.1, LDCW is undefined unless aligned mod 16.
2986 * However actual hardware succeeds with aligned mod 4.
2987 * Detect this case and log a GUEST_ERROR.
2988 *
2989 * TODO: HPPA64 relaxes the over-alignment requirement
2990 * with the ,co completer.
2991 */
2992 gen_helper_ldc_check(addr);
2993
29dd6f64 2994 zero = tcg_constant_reg(0);
86f8d05f 2995 tcg_gen_atomic_xchg_reg(dest, addr, zero, ctx->mmu_idx, mop);
b1af755c 2996
1cd012a5
RH
2997 if (a->m) {
2998 save_gpr(ctx, a->b, ofs);
96d6407f 2999 }
1cd012a5 3000 save_gpr(ctx, a->t, dest);
96d6407f 3001
31234768 3002 return nullify_end(ctx);
96d6407f
RH
3003}
3004
1cd012a5 3005static bool trans_stby(DisasContext *ctx, arg_stby *a)
96d6407f 3006{
86f8d05f
RH
3007 TCGv_reg ofs, val;
3008 TCGv_tl addr;
96d6407f
RH
3009
3010 nullify_over(ctx);
3011
1cd012a5 3012 form_gva(ctx, &addr, &ofs, a->b, 0, 0, a->disp, a->sp, a->m,
86f8d05f 3013 ctx->mmu_idx == MMU_PHYS_IDX);
1cd012a5
RH
3014 val = load_gpr(ctx, a->r);
3015 if (a->a) {
f9f46db4 3016 if (tb_cflags(ctx->base.tb) & CF_PARALLEL) {
ad75a51e 3017 gen_helper_stby_e_parallel(tcg_env, addr, val);
f9f46db4 3018 } else {
ad75a51e 3019 gen_helper_stby_e(tcg_env, addr, val);
f9f46db4 3020 }
96d6407f 3021 } else {
f9f46db4 3022 if (tb_cflags(ctx->base.tb) & CF_PARALLEL) {
ad75a51e 3023 gen_helper_stby_b_parallel(tcg_env, addr, val);
f9f46db4 3024 } else {
ad75a51e 3025 gen_helper_stby_b(tcg_env, addr, val);
f9f46db4 3026 }
96d6407f 3027 }
1cd012a5 3028 if (a->m) {
86f8d05f 3029 tcg_gen_andi_reg(ofs, ofs, ~3);
1cd012a5 3030 save_gpr(ctx, a->b, ofs);
96d6407f 3031 }
96d6407f 3032
31234768 3033 return nullify_end(ctx);
96d6407f
RH
3034}
3035
1cd012a5 3036static bool trans_lda(DisasContext *ctx, arg_ldst *a)
d0a851cc
RH
3037{
3038 int hold_mmu_idx = ctx->mmu_idx;
d0a851cc
RH
3039
3040 CHECK_MOST_PRIVILEGED(EXCP_PRIV_OPR);
d0a851cc 3041 ctx->mmu_idx = MMU_PHYS_IDX;
1cd012a5 3042 trans_ld(ctx, a);
d0a851cc 3043 ctx->mmu_idx = hold_mmu_idx;
31234768 3044 return true;
d0a851cc
RH
3045}
3046
1cd012a5 3047static bool trans_sta(DisasContext *ctx, arg_ldst *a)
d0a851cc
RH
3048{
3049 int hold_mmu_idx = ctx->mmu_idx;
d0a851cc
RH
3050
3051 CHECK_MOST_PRIVILEGED(EXCP_PRIV_OPR);
d0a851cc 3052 ctx->mmu_idx = MMU_PHYS_IDX;
1cd012a5 3053 trans_st(ctx, a);
d0a851cc 3054 ctx->mmu_idx = hold_mmu_idx;
31234768 3055 return true;
d0a851cc 3056}
95412a61 3057
0588e061 3058static bool trans_ldil(DisasContext *ctx, arg_ldil *a)
b2167459 3059{
0588e061 3060 TCGv_reg tcg_rt = dest_gpr(ctx, a->t);
b2167459 3061
0588e061
RH
3062 tcg_gen_movi_reg(tcg_rt, a->i);
3063 save_gpr(ctx, a->t, tcg_rt);
b2167459 3064 cond_free(&ctx->null_cond);
31234768 3065 return true;
b2167459
RH
3066}
3067
0588e061 3068static bool trans_addil(DisasContext *ctx, arg_addil *a)
b2167459 3069{
0588e061 3070 TCGv_reg tcg_rt = load_gpr(ctx, a->r);
eaa3783b 3071 TCGv_reg tcg_r1 = dest_gpr(ctx, 1);
b2167459 3072
0588e061 3073 tcg_gen_addi_reg(tcg_r1, tcg_rt, a->i);
b2167459
RH
3074 save_gpr(ctx, 1, tcg_r1);
3075 cond_free(&ctx->null_cond);
31234768 3076 return true;
b2167459
RH
3077}
3078
0588e061 3079static bool trans_ldo(DisasContext *ctx, arg_ldo *a)
b2167459 3080{
0588e061 3081 TCGv_reg tcg_rt = dest_gpr(ctx, a->t);
b2167459
RH
3082
3083 /* Special case rb == 0, for the LDI pseudo-op.
3084 The COPY pseudo-op is handled for free within tcg_gen_addi_tl. */
0588e061
RH
3085 if (a->b == 0) {
3086 tcg_gen_movi_reg(tcg_rt, a->i);
b2167459 3087 } else {
0588e061 3088 tcg_gen_addi_reg(tcg_rt, cpu_gr[a->b], a->i);
b2167459 3089 }
0588e061 3090 save_gpr(ctx, a->t, tcg_rt);
b2167459 3091 cond_free(&ctx->null_cond);
31234768 3092 return true;
b2167459
RH
3093}
3094
01afb7be
RH
3095static bool do_cmpb(DisasContext *ctx, unsigned r, TCGv_reg in1,
3096 unsigned c, unsigned f, unsigned n, int disp)
98cd9ca7 3097{
01afb7be 3098 TCGv_reg dest, in2, sv;
98cd9ca7 3099 DisasCond cond;
4fe9533a 3100 bool d = false;
98cd9ca7 3101
98cd9ca7 3102 in2 = load_gpr(ctx, r);
e12c6309 3103 dest = tcg_temp_new();
98cd9ca7 3104
eaa3783b 3105 tcg_gen_sub_reg(dest, in1, in2);
98cd9ca7 3106
f764718d 3107 sv = NULL;
b47a4a02 3108 if (cond_need_sv(c)) {
98cd9ca7
RH
3109 sv = do_sub_sv(ctx, dest, in1, in2);
3110 }
3111
4fe9533a 3112 cond = do_sub_cond(ctx, c * 2 + f, d, dest, in1, in2, sv);
01afb7be 3113 return do_cbranch(ctx, disp, n, &cond);
98cd9ca7
RH
3114}
3115
01afb7be 3116static bool trans_cmpb(DisasContext *ctx, arg_cmpb *a)
98cd9ca7 3117{
01afb7be
RH
3118 nullify_over(ctx);
3119 return do_cmpb(ctx, a->r2, load_gpr(ctx, a->r1), a->c, a->f, a->n, a->disp);
3120}
98cd9ca7 3121
01afb7be
RH
3122static bool trans_cmpbi(DisasContext *ctx, arg_cmpbi *a)
3123{
98cd9ca7 3124 nullify_over(ctx);
d4e58033 3125 return do_cmpb(ctx, a->r, tcg_constant_reg(a->i), a->c, a->f, a->n, a->disp);
01afb7be
RH
3126}
3127
3128static bool do_addb(DisasContext *ctx, unsigned r, TCGv_reg in1,
3129 unsigned c, unsigned f, unsigned n, int disp)
3130{
bdcccc17 3131 TCGv_reg dest, in2, sv, cb_cond;
01afb7be 3132 DisasCond cond;
bdcccc17 3133 bool d = false;
98cd9ca7 3134
98cd9ca7 3135 in2 = load_gpr(ctx, r);
43675d20 3136 dest = tcg_temp_new();
f764718d 3137 sv = NULL;
bdcccc17 3138 cb_cond = NULL;
98cd9ca7 3139
b47a4a02 3140 if (cond_need_cb(c)) {
bdcccc17
RH
3141 TCGv_reg cb = tcg_temp_new();
3142 TCGv_reg cb_msb = tcg_temp_new();
3143
eaa3783b
RH
3144 tcg_gen_movi_reg(cb_msb, 0);
3145 tcg_gen_add2_reg(dest, cb_msb, in1, cb_msb, in2, cb_msb);
bdcccc17
RH
3146 tcg_gen_xor_reg(cb, in1, in2);
3147 tcg_gen_xor_reg(cb, cb, dest);
3148 cb_cond = get_carry(ctx, d, cb, cb_msb);
b47a4a02 3149 } else {
eaa3783b 3150 tcg_gen_add_reg(dest, in1, in2);
b47a4a02
SS
3151 }
3152 if (cond_need_sv(c)) {
98cd9ca7 3153 sv = do_add_sv(ctx, dest, in1, in2);
98cd9ca7
RH
3154 }
3155
a751eb31 3156 cond = do_cond(ctx, c * 2 + f, d, dest, cb_cond, sv);
43675d20 3157 save_gpr(ctx, r, dest);
01afb7be 3158 return do_cbranch(ctx, disp, n, &cond);
98cd9ca7
RH
3159}
3160
01afb7be
RH
3161static bool trans_addb(DisasContext *ctx, arg_addb *a)
3162{
3163 nullify_over(ctx);
3164 return do_addb(ctx, a->r2, load_gpr(ctx, a->r1), a->c, a->f, a->n, a->disp);
3165}
3166
3167static bool trans_addbi(DisasContext *ctx, arg_addbi *a)
3168{
3169 nullify_over(ctx);
d4e58033 3170 return do_addb(ctx, a->r, tcg_constant_reg(a->i), a->c, a->f, a->n, a->disp);
01afb7be
RH
3171}
3172
3173static bool trans_bb_sar(DisasContext *ctx, arg_bb_sar *a)
98cd9ca7 3174{
eaa3783b 3175 TCGv_reg tmp, tcg_r;
98cd9ca7 3176 DisasCond cond;
1e9ab9fb 3177 bool d = false;
98cd9ca7
RH
3178
3179 nullify_over(ctx);
3180
3181 tmp = tcg_temp_new();
01afb7be 3182 tcg_r = load_gpr(ctx, a->r);
1e9ab9fb
RH
3183 if (cond_need_ext(ctx, d)) {
3184 /* Force shift into [32,63] */
3185 tcg_gen_ori_reg(tmp, cpu_sar, 32);
3186 tcg_gen_shl_reg(tmp, tcg_r, tmp);
3187 } else {
3188 tcg_gen_shl_reg(tmp, tcg_r, cpu_sar);
3189 }
98cd9ca7 3190
1e9ab9fb 3191 cond = cond_make_0_tmp(a->c ? TCG_COND_GE : TCG_COND_LT, tmp);
01afb7be 3192 return do_cbranch(ctx, a->disp, a->n, &cond);
98cd9ca7
RH
3193}
3194
01afb7be
RH
3195static bool trans_bb_imm(DisasContext *ctx, arg_bb_imm *a)
3196{
3197 TCGv_reg tmp, tcg_r;
3198 DisasCond cond;
1e9ab9fb
RH
3199 bool d = false;
3200 int p;
01afb7be
RH
3201
3202 nullify_over(ctx);
3203
3204 tmp = tcg_temp_new();
3205 tcg_r = load_gpr(ctx, a->r);
1e9ab9fb
RH
3206 p = a->p | (cond_need_ext(ctx, d) ? 32 : 0);
3207 tcg_gen_shli_reg(tmp, tcg_r, p);
01afb7be
RH
3208
3209 cond = cond_make_0(a->c ? TCG_COND_GE : TCG_COND_LT, tmp);
01afb7be
RH
3210 return do_cbranch(ctx, a->disp, a->n, &cond);
3211}
3212
3213static bool trans_movb(DisasContext *ctx, arg_movb *a)
98cd9ca7 3214{
eaa3783b 3215 TCGv_reg dest;
98cd9ca7
RH
3216 DisasCond cond;
3217
3218 nullify_over(ctx);
3219
01afb7be
RH
3220 dest = dest_gpr(ctx, a->r2);
3221 if (a->r1 == 0) {
eaa3783b 3222 tcg_gen_movi_reg(dest, 0);
98cd9ca7 3223 } else {
01afb7be 3224 tcg_gen_mov_reg(dest, cpu_gr[a->r1]);
98cd9ca7
RH
3225 }
3226
4fa52edf
RH
3227 /* All MOVB conditions are 32-bit. */
3228 cond = do_sed_cond(ctx, a->c, false, dest);
01afb7be
RH
3229 return do_cbranch(ctx, a->disp, a->n, &cond);
3230}
3231
3232static bool trans_movbi(DisasContext *ctx, arg_movbi *a)
3233{
3234 TCGv_reg dest;
3235 DisasCond cond;
3236
3237 nullify_over(ctx);
3238
3239 dest = dest_gpr(ctx, a->r);
3240 tcg_gen_movi_reg(dest, a->i);
3241
4fa52edf
RH
3242 /* All MOVBI conditions are 32-bit. */
3243 cond = do_sed_cond(ctx, a->c, false, dest);
01afb7be 3244 return do_cbranch(ctx, a->disp, a->n, &cond);
98cd9ca7
RH
3245}
3246
30878590 3247static bool trans_shrpw_sar(DisasContext *ctx, arg_shrpw_sar *a)
0b1347d2 3248{
eaa3783b 3249 TCGv_reg dest;
0b1347d2 3250
30878590 3251 if (a->c) {
0b1347d2
RH
3252 nullify_over(ctx);
3253 }
3254
30878590
RH
3255 dest = dest_gpr(ctx, a->t);
3256 if (a->r1 == 0) {
3257 tcg_gen_ext32u_reg(dest, load_gpr(ctx, a->r2));
eaa3783b 3258 tcg_gen_shr_reg(dest, dest, cpu_sar);
30878590 3259 } else if (a->r1 == a->r2) {
0b1347d2 3260 TCGv_i32 t32 = tcg_temp_new_i32();
e1d635e8
RH
3261 TCGv_i32 s32 = tcg_temp_new_i32();
3262
30878590 3263 tcg_gen_trunc_reg_i32(t32, load_gpr(ctx, a->r2));
e1d635e8
RH
3264 tcg_gen_trunc_reg_i32(s32, cpu_sar);
3265 tcg_gen_rotr_i32(t32, t32, s32);
eaa3783b 3266 tcg_gen_extu_i32_reg(dest, t32);
0b1347d2
RH
3267 } else {
3268 TCGv_i64 t = tcg_temp_new_i64();
3269 TCGv_i64 s = tcg_temp_new_i64();
3270
30878590 3271 tcg_gen_concat_reg_i64(t, load_gpr(ctx, a->r2), load_gpr(ctx, a->r1));
eaa3783b 3272 tcg_gen_extu_reg_i64(s, cpu_sar);
0b1347d2 3273 tcg_gen_shr_i64(t, t, s);
eaa3783b 3274 tcg_gen_trunc_i64_reg(dest, t);
0b1347d2 3275 }
30878590 3276 save_gpr(ctx, a->t, dest);
0b1347d2
RH
3277
3278 /* Install the new nullification. */
3279 cond_free(&ctx->null_cond);
30878590 3280 if (a->c) {
4fa52edf 3281 ctx->null_cond = do_sed_cond(ctx, a->c, false, dest);
0b1347d2 3282 }
31234768 3283 return nullify_end(ctx);
0b1347d2
RH
3284}
3285
30878590 3286static bool trans_shrpw_imm(DisasContext *ctx, arg_shrpw_imm *a)
0b1347d2 3287{
30878590 3288 unsigned sa = 31 - a->cpos;
eaa3783b 3289 TCGv_reg dest, t2;
0b1347d2 3290
30878590 3291 if (a->c) {
0b1347d2
RH
3292 nullify_over(ctx);
3293 }
3294
30878590
RH
3295 dest = dest_gpr(ctx, a->t);
3296 t2 = load_gpr(ctx, a->r2);
05bfd4db
RH
3297 if (a->r1 == 0) {
3298 tcg_gen_extract_reg(dest, t2, sa, 32 - sa);
3299 } else if (TARGET_REGISTER_BITS == 32) {
3300 tcg_gen_extract2_reg(dest, t2, cpu_gr[a->r1], sa);
3301 } else if (a->r1 == a->r2) {
0b1347d2 3302 TCGv_i32 t32 = tcg_temp_new_i32();
eaa3783b 3303 tcg_gen_trunc_reg_i32(t32, t2);
0b1347d2 3304 tcg_gen_rotri_i32(t32, t32, sa);
eaa3783b 3305 tcg_gen_extu_i32_reg(dest, t32);
0b1347d2 3306 } else {
05bfd4db
RH
3307 TCGv_i64 t64 = tcg_temp_new_i64();
3308 tcg_gen_concat_reg_i64(t64, t2, cpu_gr[a->r1]);
3309 tcg_gen_shri_i64(t64, t64, sa);
3310 tcg_gen_trunc_i64_reg(dest, t64);
0b1347d2 3311 }
30878590 3312 save_gpr(ctx, a->t, dest);
0b1347d2
RH
3313
3314 /* Install the new nullification. */
3315 cond_free(&ctx->null_cond);
30878590 3316 if (a->c) {
4fa52edf 3317 ctx->null_cond = do_sed_cond(ctx, a->c, false, dest);
0b1347d2 3318 }
31234768 3319 return nullify_end(ctx);
0b1347d2
RH
3320}
3321
30878590 3322static bool trans_extrw_sar(DisasContext *ctx, arg_extrw_sar *a)
0b1347d2 3323{
30878590 3324 unsigned len = 32 - a->clen;
eaa3783b 3325 TCGv_reg dest, src, tmp;
0b1347d2 3326
30878590 3327 if (a->c) {
0b1347d2
RH
3328 nullify_over(ctx);
3329 }
3330
30878590
RH
3331 dest = dest_gpr(ctx, a->t);
3332 src = load_gpr(ctx, a->r);
0b1347d2
RH
3333 tmp = tcg_temp_new();
3334
3335 /* Recall that SAR is using big-endian bit numbering. */
d781cb77
RH
3336 tcg_gen_andi_reg(tmp, cpu_sar, 31);
3337 tcg_gen_xori_reg(tmp, tmp, 31);
3338
30878590 3339 if (a->se) {
eaa3783b
RH
3340 tcg_gen_sar_reg(dest, src, tmp);
3341 tcg_gen_sextract_reg(dest, dest, 0, len);
0b1347d2 3342 } else {
eaa3783b
RH
3343 tcg_gen_shr_reg(dest, src, tmp);
3344 tcg_gen_extract_reg(dest, dest, 0, len);
0b1347d2 3345 }
30878590 3346 save_gpr(ctx, a->t, dest);
0b1347d2
RH
3347
3348 /* Install the new nullification. */
3349 cond_free(&ctx->null_cond);
30878590 3350 if (a->c) {
4fa52edf 3351 ctx->null_cond = do_sed_cond(ctx, a->c, false, dest);
0b1347d2 3352 }
31234768 3353 return nullify_end(ctx);
0b1347d2
RH
3354}
3355
30878590 3356static bool trans_extrw_imm(DisasContext *ctx, arg_extrw_imm *a)
0b1347d2 3357{
30878590
RH
3358 unsigned len = 32 - a->clen;
3359 unsigned cpos = 31 - a->pos;
eaa3783b 3360 TCGv_reg dest, src;
0b1347d2 3361
30878590 3362 if (a->c) {
0b1347d2
RH
3363 nullify_over(ctx);
3364 }
3365
30878590
RH
3366 dest = dest_gpr(ctx, a->t);
3367 src = load_gpr(ctx, a->r);
3368 if (a->se) {
eaa3783b 3369 tcg_gen_sextract_reg(dest, src, cpos, len);
0b1347d2 3370 } else {
eaa3783b 3371 tcg_gen_extract_reg(dest, src, cpos, len);
0b1347d2 3372 }
30878590 3373 save_gpr(ctx, a->t, dest);
0b1347d2
RH
3374
3375 /* Install the new nullification. */
3376 cond_free(&ctx->null_cond);
30878590 3377 if (a->c) {
4fa52edf 3378 ctx->null_cond = do_sed_cond(ctx, a->c, false, dest);
0b1347d2 3379 }
31234768 3380 return nullify_end(ctx);
0b1347d2
RH
3381}
3382
30878590 3383static bool trans_depwi_imm(DisasContext *ctx, arg_depwi_imm *a)
0b1347d2 3384{
30878590 3385 unsigned len = 32 - a->clen;
eaa3783b
RH
3386 target_sreg mask0, mask1;
3387 TCGv_reg dest;
0b1347d2 3388
30878590 3389 if (a->c) {
0b1347d2
RH
3390 nullify_over(ctx);
3391 }
30878590
RH
3392 if (a->cpos + len > 32) {
3393 len = 32 - a->cpos;
0b1347d2
RH
3394 }
3395
30878590
RH
3396 dest = dest_gpr(ctx, a->t);
3397 mask0 = deposit64(0, a->cpos, len, a->i);
3398 mask1 = deposit64(-1, a->cpos, len, a->i);
0b1347d2 3399
30878590
RH
3400 if (a->nz) {
3401 TCGv_reg src = load_gpr(ctx, a->t);
0b1347d2 3402 if (mask1 != -1) {
eaa3783b 3403 tcg_gen_andi_reg(dest, src, mask1);
0b1347d2
RH
3404 src = dest;
3405 }
eaa3783b 3406 tcg_gen_ori_reg(dest, src, mask0);
0b1347d2 3407 } else {
eaa3783b 3408 tcg_gen_movi_reg(dest, mask0);
0b1347d2 3409 }
30878590 3410 save_gpr(ctx, a->t, dest);
0b1347d2
RH
3411
3412 /* Install the new nullification. */
3413 cond_free(&ctx->null_cond);
30878590 3414 if (a->c) {
4fa52edf 3415 ctx->null_cond = do_sed_cond(ctx, a->c, false, dest);
0b1347d2 3416 }
31234768 3417 return nullify_end(ctx);
0b1347d2
RH
3418}
3419
30878590 3420static bool trans_depw_imm(DisasContext *ctx, arg_depw_imm *a)
0b1347d2 3421{
30878590
RH
3422 unsigned rs = a->nz ? a->t : 0;
3423 unsigned len = 32 - a->clen;
eaa3783b 3424 TCGv_reg dest, val;
0b1347d2 3425
30878590 3426 if (a->c) {
0b1347d2
RH
3427 nullify_over(ctx);
3428 }
30878590
RH
3429 if (a->cpos + len > 32) {
3430 len = 32 - a->cpos;
0b1347d2
RH
3431 }
3432
30878590
RH
3433 dest = dest_gpr(ctx, a->t);
3434 val = load_gpr(ctx, a->r);
0b1347d2 3435 if (rs == 0) {
30878590 3436 tcg_gen_deposit_z_reg(dest, val, a->cpos, len);
0b1347d2 3437 } else {
30878590 3438 tcg_gen_deposit_reg(dest, cpu_gr[rs], val, a->cpos, len);
0b1347d2 3439 }
30878590 3440 save_gpr(ctx, a->t, dest);
0b1347d2
RH
3441
3442 /* Install the new nullification. */
3443 cond_free(&ctx->null_cond);
30878590 3444 if (a->c) {
4fa52edf 3445 ctx->null_cond = do_sed_cond(ctx, a->c, false, dest);
0b1347d2 3446 }
31234768 3447 return nullify_end(ctx);
0b1347d2
RH
3448}
3449
30878590
RH
3450static bool do_depw_sar(DisasContext *ctx, unsigned rt, unsigned c,
3451 unsigned nz, unsigned clen, TCGv_reg val)
0b1347d2 3452{
0b1347d2
RH
3453 unsigned rs = nz ? rt : 0;
3454 unsigned len = 32 - clen;
30878590 3455 TCGv_reg mask, tmp, shift, dest;
0b1347d2
RH
3456 unsigned msb = 1U << (len - 1);
3457
0b1347d2
RH
3458 dest = dest_gpr(ctx, rt);
3459 shift = tcg_temp_new();
3460 tmp = tcg_temp_new();
3461
3462 /* Convert big-endian bit numbering in SAR to left-shift. */
d781cb77
RH
3463 tcg_gen_andi_reg(shift, cpu_sar, 31);
3464 tcg_gen_xori_reg(shift, shift, 31);
0b1347d2 3465
0992a930
RH
3466 mask = tcg_temp_new();
3467 tcg_gen_movi_reg(mask, msb + (msb - 1));
eaa3783b 3468 tcg_gen_and_reg(tmp, val, mask);
0b1347d2 3469 if (rs) {
eaa3783b
RH
3470 tcg_gen_shl_reg(mask, mask, shift);
3471 tcg_gen_shl_reg(tmp, tmp, shift);
3472 tcg_gen_andc_reg(dest, cpu_gr[rs], mask);
3473 tcg_gen_or_reg(dest, dest, tmp);
0b1347d2 3474 } else {
eaa3783b 3475 tcg_gen_shl_reg(dest, tmp, shift);
0b1347d2 3476 }
0b1347d2
RH
3477 save_gpr(ctx, rt, dest);
3478
3479 /* Install the new nullification. */
3480 cond_free(&ctx->null_cond);
3481 if (c) {
4fa52edf 3482 ctx->null_cond = do_sed_cond(ctx, c, false, dest);
0b1347d2 3483 }
31234768 3484 return nullify_end(ctx);
0b1347d2
RH
3485}
3486
30878590
RH
3487static bool trans_depw_sar(DisasContext *ctx, arg_depw_sar *a)
3488{
a6deecce
SS
3489 if (a->c) {
3490 nullify_over(ctx);
3491 }
30878590
RH
3492 return do_depw_sar(ctx, a->t, a->c, a->nz, a->clen, load_gpr(ctx, a->r));
3493}
3494
3495static bool trans_depwi_sar(DisasContext *ctx, arg_depwi_sar *a)
3496{
a6deecce
SS
3497 if (a->c) {
3498 nullify_over(ctx);
3499 }
d4e58033 3500 return do_depw_sar(ctx, a->t, a->c, a->nz, a->clen, tcg_constant_reg(a->i));
30878590 3501}
0b1347d2 3502
8340f534 3503static bool trans_be(DisasContext *ctx, arg_be *a)
98cd9ca7 3504{
660eefe1 3505 TCGv_reg tmp;
98cd9ca7 3506
c301f34e 3507#ifdef CONFIG_USER_ONLY
98cd9ca7
RH
3508 /* ??? It seems like there should be a good way of using
3509 "be disp(sr2, r0)", the canonical gateway entry mechanism
3510 to our advantage. But that appears to be inconvenient to
3511 manage along side branch delay slots. Therefore we handle
3512 entry into the gateway page via absolute address. */
98cd9ca7
RH
3513 /* Since we don't implement spaces, just branch. Do notice the special
3514 case of "be disp(*,r0)" using a direct branch to disp, so that we can
3515 goto_tb to the TB containing the syscall. */
8340f534
RH
3516 if (a->b == 0) {
3517 return do_dbranch(ctx, a->disp, a->l, a->n);
98cd9ca7 3518 }
c301f34e 3519#else
c301f34e 3520 nullify_over(ctx);
660eefe1
RH
3521#endif
3522
e12c6309 3523 tmp = tcg_temp_new();
8340f534 3524 tcg_gen_addi_reg(tmp, load_gpr(ctx, a->b), a->disp);
660eefe1 3525 tmp = do_ibranch_priv(ctx, tmp);
c301f34e
RH
3526
3527#ifdef CONFIG_USER_ONLY
8340f534 3528 return do_ibranch(ctx, tmp, a->l, a->n);
c301f34e
RH
3529#else
3530 TCGv_i64 new_spc = tcg_temp_new_i64();
3531
8340f534
RH
3532 load_spr(ctx, new_spc, a->sp);
3533 if (a->l) {
741322f4 3534 copy_iaoq_entry(ctx, cpu_gr[31], ctx->iaoq_n, ctx->iaoq_n_var);
c301f34e
RH
3535 tcg_gen_mov_i64(cpu_sr[0], cpu_iasq_f);
3536 }
8340f534 3537 if (a->n && use_nullify_skip(ctx)) {
a0180973
RH
3538 copy_iaoq_entry(ctx, cpu_iaoq_f, -1, tmp);
3539 tcg_gen_addi_reg(tmp, tmp, 4);
3540 copy_iaoq_entry(ctx, cpu_iaoq_b, -1, tmp);
c301f34e
RH
3541 tcg_gen_mov_i64(cpu_iasq_f, new_spc);
3542 tcg_gen_mov_i64(cpu_iasq_b, cpu_iasq_f);
3543 } else {
741322f4 3544 copy_iaoq_entry(ctx, cpu_iaoq_f, ctx->iaoq_b, cpu_iaoq_b);
c301f34e
RH
3545 if (ctx->iaoq_b == -1) {
3546 tcg_gen_mov_i64(cpu_iasq_f, cpu_iasq_b);
3547 }
a0180973 3548 copy_iaoq_entry(ctx, cpu_iaoq_b, -1, tmp);
c301f34e 3549 tcg_gen_mov_i64(cpu_iasq_b, new_spc);
8340f534 3550 nullify_set(ctx, a->n);
c301f34e 3551 }
c301f34e 3552 tcg_gen_lookup_and_goto_ptr();
31234768
RH
3553 ctx->base.is_jmp = DISAS_NORETURN;
3554 return nullify_end(ctx);
c301f34e 3555#endif
98cd9ca7
RH
3556}
3557
8340f534 3558static bool trans_bl(DisasContext *ctx, arg_bl *a)
98cd9ca7 3559{
8340f534 3560 return do_dbranch(ctx, iaoq_dest(ctx, a->disp), a->l, a->n);
98cd9ca7
RH
3561}
3562
8340f534 3563static bool trans_b_gate(DisasContext *ctx, arg_b_gate *a)
43e05652 3564{
8340f534 3565 target_ureg dest = iaoq_dest(ctx, a->disp);
43e05652 3566
6e5f5300
SS
3567 nullify_over(ctx);
3568
43e05652
RH
3569 /* Make sure the caller hasn't done something weird with the queue.
3570 * ??? This is not quite the same as the PSW[B] bit, which would be
3571 * expensive to track. Real hardware will trap for
3572 * b gateway
3573 * b gateway+4 (in delay slot of first branch)
3574 * However, checking for a non-sequential instruction queue *will*
3575 * diagnose the security hole
3576 * b gateway
3577 * b evil
3578 * in which instructions at evil would run with increased privs.
3579 */
3580 if (ctx->iaoq_b == -1 || ctx->iaoq_b != ctx->iaoq_f + 4) {
3581 return gen_illegal(ctx);
3582 }
3583
3584#ifndef CONFIG_USER_ONLY
3585 if (ctx->tb_flags & PSW_C) {
b77af26e 3586 CPUHPPAState *env = cpu_env(ctx->cs);
43e05652
RH
3587 int type = hppa_artype_for_page(env, ctx->base.pc_next);
3588 /* If we could not find a TLB entry, then we need to generate an
3589 ITLB miss exception so the kernel will provide it.
3590 The resulting TLB fill operation will invalidate this TB and
3591 we will re-translate, at which point we *will* be able to find
3592 the TLB entry and determine if this is in fact a gateway page. */
3593 if (type < 0) {
31234768
RH
3594 gen_excp(ctx, EXCP_ITLB_MISS);
3595 return true;
43e05652
RH
3596 }
3597 /* No change for non-gateway pages or for priv decrease. */
3598 if (type >= 4 && type - 4 < ctx->privilege) {
3599 dest = deposit32(dest, 0, 2, type - 4);
3600 }
3601 } else {
3602 dest &= -4; /* priv = 0 */
3603 }
3604#endif
3605
6e5f5300
SS
3606 if (a->l) {
3607 TCGv_reg tmp = dest_gpr(ctx, a->l);
3608 if (ctx->privilege < 3) {
3609 tcg_gen_andi_reg(tmp, tmp, -4);
3610 }
3611 tcg_gen_ori_reg(tmp, tmp, ctx->privilege);
3612 save_gpr(ctx, a->l, tmp);
3613 }
3614
3615 return do_dbranch(ctx, dest, 0, a->n);
43e05652
RH
3616}
3617
8340f534 3618static bool trans_blr(DisasContext *ctx, arg_blr *a)
98cd9ca7 3619{
b35aec85 3620 if (a->x) {
e12c6309 3621 TCGv_reg tmp = tcg_temp_new();
b35aec85
RH
3622 tcg_gen_shli_reg(tmp, load_gpr(ctx, a->x), 3);
3623 tcg_gen_addi_reg(tmp, tmp, ctx->iaoq_f + 8);
3624 /* The computation here never changes privilege level. */
3625 return do_ibranch(ctx, tmp, a->l, a->n);
3626 } else {
3627 /* BLR R0,RX is a good way to load PC+8 into RX. */
3628 return do_dbranch(ctx, ctx->iaoq_f + 8, a->l, a->n);
3629 }
98cd9ca7
RH
3630}
3631
8340f534 3632static bool trans_bv(DisasContext *ctx, arg_bv *a)
98cd9ca7 3633{
eaa3783b 3634 TCGv_reg dest;
98cd9ca7 3635
8340f534
RH
3636 if (a->x == 0) {
3637 dest = load_gpr(ctx, a->b);
98cd9ca7 3638 } else {
e12c6309 3639 dest = tcg_temp_new();
8340f534
RH
3640 tcg_gen_shli_reg(dest, load_gpr(ctx, a->x), 3);
3641 tcg_gen_add_reg(dest, dest, load_gpr(ctx, a->b));
98cd9ca7 3642 }
660eefe1 3643 dest = do_ibranch_priv(ctx, dest);
8340f534 3644 return do_ibranch(ctx, dest, 0, a->n);
98cd9ca7
RH
3645}
3646
8340f534 3647static bool trans_bve(DisasContext *ctx, arg_bve *a)
98cd9ca7 3648{
660eefe1 3649 TCGv_reg dest;
98cd9ca7 3650
c301f34e 3651#ifdef CONFIG_USER_ONLY
8340f534
RH
3652 dest = do_ibranch_priv(ctx, load_gpr(ctx, a->b));
3653 return do_ibranch(ctx, dest, a->l, a->n);
c301f34e
RH
3654#else
3655 nullify_over(ctx);
8340f534 3656 dest = do_ibranch_priv(ctx, load_gpr(ctx, a->b));
c301f34e 3657
741322f4 3658 copy_iaoq_entry(ctx, cpu_iaoq_f, ctx->iaoq_b, cpu_iaoq_b);
c301f34e
RH
3659 if (ctx->iaoq_b == -1) {
3660 tcg_gen_mov_i64(cpu_iasq_f, cpu_iasq_b);
3661 }
741322f4 3662 copy_iaoq_entry(ctx, cpu_iaoq_b, -1, dest);
c301f34e 3663 tcg_gen_mov_i64(cpu_iasq_b, space_select(ctx, 0, dest));
8340f534 3664 if (a->l) {
741322f4 3665 copy_iaoq_entry(ctx, cpu_gr[a->l], ctx->iaoq_n, ctx->iaoq_n_var);
c301f34e 3666 }
8340f534 3667 nullify_set(ctx, a->n);
c301f34e 3668 tcg_gen_lookup_and_goto_ptr();
31234768
RH
3669 ctx->base.is_jmp = DISAS_NORETURN;
3670 return nullify_end(ctx);
c301f34e 3671#endif
98cd9ca7
RH
3672}
3673
1ca74648
RH
3674/*
3675 * Float class 0
3676 */
ebe9383c 3677
1ca74648 3678static void gen_fcpy_f(TCGv_i32 dst, TCGv_env unused, TCGv_i32 src)
ebe9383c 3679{
1ca74648 3680 tcg_gen_mov_i32(dst, src);
ebe9383c
RH
3681}
3682
59f8c04b
HD
3683static bool trans_fid_f(DisasContext *ctx, arg_fid_f *a)
3684{
a300dad3
RH
3685 uint64_t ret;
3686
3687 if (TARGET_REGISTER_BITS == 64) {
3688 ret = 0x13080000000000ULL; /* PA8700 (PCX-W2) */
3689 } else {
3690 ret = 0x0f080000000000ULL; /* PA7300LC (PCX-L2) */
3691 }
3692
59f8c04b 3693 nullify_over(ctx);
a300dad3 3694 save_frd(0, tcg_constant_i64(ret));
59f8c04b
HD
3695 return nullify_end(ctx);
3696}
3697
1ca74648 3698static bool trans_fcpy_f(DisasContext *ctx, arg_fclass01 *a)
ebe9383c 3699{
1ca74648 3700 return do_fop_wew(ctx, a->t, a->r, gen_fcpy_f);
ebe9383c
RH
3701}
3702
1ca74648 3703static void gen_fcpy_d(TCGv_i64 dst, TCGv_env unused, TCGv_i64 src)
ebe9383c 3704{
1ca74648 3705 tcg_gen_mov_i64(dst, src);
ebe9383c
RH
3706}
3707
1ca74648 3708static bool trans_fcpy_d(DisasContext *ctx, arg_fclass01 *a)
ebe9383c 3709{
1ca74648 3710 return do_fop_ded(ctx, a->t, a->r, gen_fcpy_d);
ebe9383c
RH
3711}
3712
1ca74648 3713static void gen_fabs_f(TCGv_i32 dst, TCGv_env unused, TCGv_i32 src)
ebe9383c 3714{
1ca74648 3715 tcg_gen_andi_i32(dst, src, INT32_MAX);
ebe9383c
RH
3716}
3717
1ca74648 3718static bool trans_fabs_f(DisasContext *ctx, arg_fclass01 *a)
ebe9383c 3719{
1ca74648 3720 return do_fop_wew(ctx, a->t, a->r, gen_fabs_f);
ebe9383c
RH
3721}
3722
1ca74648 3723static void gen_fabs_d(TCGv_i64 dst, TCGv_env unused, TCGv_i64 src)
ebe9383c 3724{
1ca74648 3725 tcg_gen_andi_i64(dst, src, INT64_MAX);
ebe9383c
RH
3726}
3727
1ca74648 3728static bool trans_fabs_d(DisasContext *ctx, arg_fclass01 *a)
ebe9383c 3729{
1ca74648 3730 return do_fop_ded(ctx, a->t, a->r, gen_fabs_d);
ebe9383c
RH
3731}
3732
1ca74648 3733static bool trans_fsqrt_f(DisasContext *ctx, arg_fclass01 *a)
ebe9383c 3734{
1ca74648 3735 return do_fop_wew(ctx, a->t, a->r, gen_helper_fsqrt_s);
ebe9383c
RH
3736}
3737
1ca74648 3738static bool trans_fsqrt_d(DisasContext *ctx, arg_fclass01 *a)
ebe9383c 3739{
1ca74648 3740 return do_fop_ded(ctx, a->t, a->r, gen_helper_fsqrt_d);
ebe9383c
RH
3741}
3742
1ca74648 3743static bool trans_frnd_f(DisasContext *ctx, arg_fclass01 *a)
ebe9383c 3744{
1ca74648 3745 return do_fop_wew(ctx, a->t, a->r, gen_helper_frnd_s);
ebe9383c
RH
3746}
3747
1ca74648 3748static bool trans_frnd_d(DisasContext *ctx, arg_fclass01 *a)
ebe9383c 3749{
1ca74648 3750 return do_fop_ded(ctx, a->t, a->r, gen_helper_frnd_d);
ebe9383c
RH
3751}
3752
1ca74648 3753static void gen_fneg_f(TCGv_i32 dst, TCGv_env unused, TCGv_i32 src)
ebe9383c 3754{
1ca74648 3755 tcg_gen_xori_i32(dst, src, INT32_MIN);
ebe9383c
RH
3756}
3757
1ca74648 3758static bool trans_fneg_f(DisasContext *ctx, arg_fclass01 *a)
ebe9383c 3759{
1ca74648 3760 return do_fop_wew(ctx, a->t, a->r, gen_fneg_f);
ebe9383c
RH
3761}
3762
3763static void gen_fneg_d(TCGv_i64 dst, TCGv_env unused, TCGv_i64 src)
3764{
3765 tcg_gen_xori_i64(dst, src, INT64_MIN);
3766}
3767
1ca74648
RH
3768static bool trans_fneg_d(DisasContext *ctx, arg_fclass01 *a)
3769{
3770 return do_fop_ded(ctx, a->t, a->r, gen_fneg_d);
3771}
3772
3773static void gen_fnegabs_f(TCGv_i32 dst, TCGv_env unused, TCGv_i32 src)
ebe9383c
RH
3774{
3775 tcg_gen_ori_i32(dst, src, INT32_MIN);
3776}
3777
1ca74648
RH
3778static bool trans_fnegabs_f(DisasContext *ctx, arg_fclass01 *a)
3779{
3780 return do_fop_wew(ctx, a->t, a->r, gen_fnegabs_f);
3781}
3782
ebe9383c
RH
3783static void gen_fnegabs_d(TCGv_i64 dst, TCGv_env unused, TCGv_i64 src)
3784{
3785 tcg_gen_ori_i64(dst, src, INT64_MIN);
3786}
3787
1ca74648
RH
3788static bool trans_fnegabs_d(DisasContext *ctx, arg_fclass01 *a)
3789{
3790 return do_fop_ded(ctx, a->t, a->r, gen_fnegabs_d);
3791}
3792
3793/*
3794 * Float class 1
3795 */
3796
3797static bool trans_fcnv_d_f(DisasContext *ctx, arg_fclass01 *a)
3798{
3799 return do_fop_wed(ctx, a->t, a->r, gen_helper_fcnv_d_s);
3800}
3801
3802static bool trans_fcnv_f_d(DisasContext *ctx, arg_fclass01 *a)
3803{
3804 return do_fop_dew(ctx, a->t, a->r, gen_helper_fcnv_s_d);
3805}
3806
3807static bool trans_fcnv_w_f(DisasContext *ctx, arg_fclass01 *a)
3808{
3809 return do_fop_wew(ctx, a->t, a->r, gen_helper_fcnv_w_s);
3810}
3811
3812static bool trans_fcnv_q_f(DisasContext *ctx, arg_fclass01 *a)
3813{
3814 return do_fop_wed(ctx, a->t, a->r, gen_helper_fcnv_dw_s);
3815}
3816
3817static bool trans_fcnv_w_d(DisasContext *ctx, arg_fclass01 *a)
3818{
3819 return do_fop_dew(ctx, a->t, a->r, gen_helper_fcnv_w_d);
3820}
3821
3822static bool trans_fcnv_q_d(DisasContext *ctx, arg_fclass01 *a)
3823{
3824 return do_fop_ded(ctx, a->t, a->r, gen_helper_fcnv_dw_d);
3825}
3826
3827static bool trans_fcnv_f_w(DisasContext *ctx, arg_fclass01 *a)
3828{
3829 return do_fop_wew(ctx, a->t, a->r, gen_helper_fcnv_s_w);
3830}
3831
3832static bool trans_fcnv_d_w(DisasContext *ctx, arg_fclass01 *a)
3833{
3834 return do_fop_wed(ctx, a->t, a->r, gen_helper_fcnv_d_w);
3835}
3836
3837static bool trans_fcnv_f_q(DisasContext *ctx, arg_fclass01 *a)
3838{
3839 return do_fop_dew(ctx, a->t, a->r, gen_helper_fcnv_s_dw);
3840}
3841
3842static bool trans_fcnv_d_q(DisasContext *ctx, arg_fclass01 *a)
3843{
3844 return do_fop_ded(ctx, a->t, a->r, gen_helper_fcnv_d_dw);
3845}
3846
3847static bool trans_fcnv_t_f_w(DisasContext *ctx, arg_fclass01 *a)
3848{
3849 return do_fop_wew(ctx, a->t, a->r, gen_helper_fcnv_t_s_w);
3850}
3851
3852static bool trans_fcnv_t_d_w(DisasContext *ctx, arg_fclass01 *a)
3853{
3854 return do_fop_wed(ctx, a->t, a->r, gen_helper_fcnv_t_d_w);
3855}
3856
3857static bool trans_fcnv_t_f_q(DisasContext *ctx, arg_fclass01 *a)
3858{
3859 return do_fop_dew(ctx, a->t, a->r, gen_helper_fcnv_t_s_dw);
3860}
3861
3862static bool trans_fcnv_t_d_q(DisasContext *ctx, arg_fclass01 *a)
3863{
3864 return do_fop_ded(ctx, a->t, a->r, gen_helper_fcnv_t_d_dw);
3865}
3866
3867static bool trans_fcnv_uw_f(DisasContext *ctx, arg_fclass01 *a)
3868{
3869 return do_fop_wew(ctx, a->t, a->r, gen_helper_fcnv_uw_s);
3870}
3871
3872static bool trans_fcnv_uq_f(DisasContext *ctx, arg_fclass01 *a)
3873{
3874 return do_fop_wed(ctx, a->t, a->r, gen_helper_fcnv_udw_s);
3875}
3876
3877static bool trans_fcnv_uw_d(DisasContext *ctx, arg_fclass01 *a)
3878{
3879 return do_fop_dew(ctx, a->t, a->r, gen_helper_fcnv_uw_d);
3880}
3881
3882static bool trans_fcnv_uq_d(DisasContext *ctx, arg_fclass01 *a)
3883{
3884 return do_fop_ded(ctx, a->t, a->r, gen_helper_fcnv_udw_d);
3885}
3886
3887static bool trans_fcnv_f_uw(DisasContext *ctx, arg_fclass01 *a)
3888{
3889 return do_fop_wew(ctx, a->t, a->r, gen_helper_fcnv_s_uw);
3890}
3891
3892static bool trans_fcnv_d_uw(DisasContext *ctx, arg_fclass01 *a)
3893{
3894 return do_fop_wed(ctx, a->t, a->r, gen_helper_fcnv_d_uw);
3895}
3896
3897static bool trans_fcnv_f_uq(DisasContext *ctx, arg_fclass01 *a)
3898{
3899 return do_fop_dew(ctx, a->t, a->r, gen_helper_fcnv_s_udw);
3900}
3901
3902static bool trans_fcnv_d_uq(DisasContext *ctx, arg_fclass01 *a)
3903{
3904 return do_fop_ded(ctx, a->t, a->r, gen_helper_fcnv_d_udw);
3905}
3906
3907static bool trans_fcnv_t_f_uw(DisasContext *ctx, arg_fclass01 *a)
3908{
3909 return do_fop_wew(ctx, a->t, a->r, gen_helper_fcnv_t_s_uw);
3910}
3911
3912static bool trans_fcnv_t_d_uw(DisasContext *ctx, arg_fclass01 *a)
3913{
3914 return do_fop_wed(ctx, a->t, a->r, gen_helper_fcnv_t_d_uw);
3915}
3916
3917static bool trans_fcnv_t_f_uq(DisasContext *ctx, arg_fclass01 *a)
3918{
3919 return do_fop_dew(ctx, a->t, a->r, gen_helper_fcnv_t_s_udw);
3920}
3921
3922static bool trans_fcnv_t_d_uq(DisasContext *ctx, arg_fclass01 *a)
3923{
3924 return do_fop_ded(ctx, a->t, a->r, gen_helper_fcnv_t_d_udw);
3925}
3926
3927/*
3928 * Float class 2
3929 */
3930
3931static bool trans_fcmp_f(DisasContext *ctx, arg_fclass2 *a)
ebe9383c
RH
3932{
3933 TCGv_i32 ta, tb, tc, ty;
3934
3935 nullify_over(ctx);
3936
1ca74648
RH
3937 ta = load_frw0_i32(a->r1);
3938 tb = load_frw0_i32(a->r2);
29dd6f64
RH
3939 ty = tcg_constant_i32(a->y);
3940 tc = tcg_constant_i32(a->c);
ebe9383c 3941
ad75a51e 3942 gen_helper_fcmp_s(tcg_env, ta, tb, ty, tc);
ebe9383c 3943
1ca74648 3944 return nullify_end(ctx);
ebe9383c
RH
3945}
3946
1ca74648 3947static bool trans_fcmp_d(DisasContext *ctx, arg_fclass2 *a)
ebe9383c 3948{
ebe9383c
RH
3949 TCGv_i64 ta, tb;
3950 TCGv_i32 tc, ty;
3951
3952 nullify_over(ctx);
3953
1ca74648
RH
3954 ta = load_frd0(a->r1);
3955 tb = load_frd0(a->r2);
29dd6f64
RH
3956 ty = tcg_constant_i32(a->y);
3957 tc = tcg_constant_i32(a->c);
ebe9383c 3958
ad75a51e 3959 gen_helper_fcmp_d(tcg_env, ta, tb, ty, tc);
ebe9383c 3960
31234768 3961 return nullify_end(ctx);
ebe9383c
RH
3962}
3963
1ca74648 3964static bool trans_ftest(DisasContext *ctx, arg_ftest *a)
ebe9383c 3965{
eaa3783b 3966 TCGv_reg t;
ebe9383c
RH
3967
3968 nullify_over(ctx);
3969
e12c6309 3970 t = tcg_temp_new();
ad75a51e 3971 tcg_gen_ld32u_reg(t, tcg_env, offsetof(CPUHPPAState, fr0_shadow));
ebe9383c 3972
1ca74648
RH
3973 if (a->y == 1) {
3974 int mask;
3975 bool inv = false;
3976
3977 switch (a->c) {
3978 case 0: /* simple */
3979 tcg_gen_andi_reg(t, t, 0x4000000);
3980 ctx->null_cond = cond_make_0(TCG_COND_NE, t);
3981 goto done;
3982 case 2: /* rej */
3983 inv = true;
3984 /* fallthru */
3985 case 1: /* acc */
3986 mask = 0x43ff800;
3987 break;
3988 case 6: /* rej8 */
3989 inv = true;
3990 /* fallthru */
3991 case 5: /* acc8 */
3992 mask = 0x43f8000;
3993 break;
3994 case 9: /* acc6 */
3995 mask = 0x43e0000;
3996 break;
3997 case 13: /* acc4 */
3998 mask = 0x4380000;
3999 break;
4000 case 17: /* acc2 */
4001 mask = 0x4200000;
4002 break;
4003 default:
4004 gen_illegal(ctx);
4005 return true;
4006 }
4007 if (inv) {
d4e58033 4008 TCGv_reg c = tcg_constant_reg(mask);
1ca74648
RH
4009 tcg_gen_or_reg(t, t, c);
4010 ctx->null_cond = cond_make(TCG_COND_EQ, t, c);
4011 } else {
4012 tcg_gen_andi_reg(t, t, mask);
4013 ctx->null_cond = cond_make_0(TCG_COND_EQ, t);
4014 }
4015 } else {
4016 unsigned cbit = (a->y ^ 1) - 1;
4017
4018 tcg_gen_extract_reg(t, t, 21 - cbit, 1);
4019 ctx->null_cond = cond_make_0(TCG_COND_NE, t);
1ca74648
RH
4020 }
4021
4022 done:
31234768 4023 return nullify_end(ctx);
ebe9383c
RH
4024}
4025
1ca74648
RH
4026/*
4027 * Float class 2
4028 */
4029
4030static bool trans_fadd_f(DisasContext *ctx, arg_fclass3 *a)
ebe9383c 4031{
1ca74648
RH
4032 return do_fop_weww(ctx, a->t, a->r1, a->r2, gen_helper_fadd_s);
4033}
ebe9383c 4034
1ca74648
RH
4035static bool trans_fadd_d(DisasContext *ctx, arg_fclass3 *a)
4036{
4037 return do_fop_dedd(ctx, a->t, a->r1, a->r2, gen_helper_fadd_d);
4038}
ebe9383c 4039
1ca74648
RH
4040static bool trans_fsub_f(DisasContext *ctx, arg_fclass3 *a)
4041{
4042 return do_fop_weww(ctx, a->t, a->r1, a->r2, gen_helper_fsub_s);
4043}
ebe9383c 4044
1ca74648
RH
4045static bool trans_fsub_d(DisasContext *ctx, arg_fclass3 *a)
4046{
4047 return do_fop_dedd(ctx, a->t, a->r1, a->r2, gen_helper_fsub_d);
ebe9383c
RH
4048}
4049
1ca74648 4050static bool trans_fmpy_f(DisasContext *ctx, arg_fclass3 *a)
ebe9383c 4051{
1ca74648
RH
4052 return do_fop_weww(ctx, a->t, a->r1, a->r2, gen_helper_fmpy_s);
4053}
4054
4055static bool trans_fmpy_d(DisasContext *ctx, arg_fclass3 *a)
4056{
4057 return do_fop_dedd(ctx, a->t, a->r1, a->r2, gen_helper_fmpy_d);
4058}
4059
4060static bool trans_fdiv_f(DisasContext *ctx, arg_fclass3 *a)
4061{
4062 return do_fop_weww(ctx, a->t, a->r1, a->r2, gen_helper_fdiv_s);
4063}
4064
4065static bool trans_fdiv_d(DisasContext *ctx, arg_fclass3 *a)
4066{
4067 return do_fop_dedd(ctx, a->t, a->r1, a->r2, gen_helper_fdiv_d);
4068}
4069
4070static bool trans_xmpyu(DisasContext *ctx, arg_xmpyu *a)
4071{
4072 TCGv_i64 x, y;
ebe9383c
RH
4073
4074 nullify_over(ctx);
4075
1ca74648
RH
4076 x = load_frw0_i64(a->r1);
4077 y = load_frw0_i64(a->r2);
4078 tcg_gen_mul_i64(x, x, y);
4079 save_frd(a->t, x);
ebe9383c 4080
31234768 4081 return nullify_end(ctx);
ebe9383c
RH
4082}
4083
ebe9383c
RH
4084/* Convert the fmpyadd single-precision register encodings to standard. */
4085static inline int fmpyadd_s_reg(unsigned r)
4086{
4087 return (r & 16) * 2 + 16 + (r & 15);
4088}
4089
b1e2af57 4090static bool do_fmpyadd_s(DisasContext *ctx, arg_mpyadd *a, bool is_sub)
ebe9383c 4091{
b1e2af57
RH
4092 int tm = fmpyadd_s_reg(a->tm);
4093 int ra = fmpyadd_s_reg(a->ra);
4094 int ta = fmpyadd_s_reg(a->ta);
4095 int rm2 = fmpyadd_s_reg(a->rm2);
4096 int rm1 = fmpyadd_s_reg(a->rm1);
ebe9383c
RH
4097
4098 nullify_over(ctx);
4099
b1e2af57
RH
4100 do_fop_weww(ctx, tm, rm1, rm2, gen_helper_fmpy_s);
4101 do_fop_weww(ctx, ta, ta, ra,
4102 is_sub ? gen_helper_fsub_s : gen_helper_fadd_s);
ebe9383c 4103
31234768 4104 return nullify_end(ctx);
ebe9383c
RH
4105}
4106
b1e2af57
RH
4107static bool trans_fmpyadd_f(DisasContext *ctx, arg_mpyadd *a)
4108{
4109 return do_fmpyadd_s(ctx, a, false);
4110}
4111
4112static bool trans_fmpysub_f(DisasContext *ctx, arg_mpyadd *a)
4113{
4114 return do_fmpyadd_s(ctx, a, true);
4115}
4116
4117static bool do_fmpyadd_d(DisasContext *ctx, arg_mpyadd *a, bool is_sub)
4118{
4119 nullify_over(ctx);
4120
4121 do_fop_dedd(ctx, a->tm, a->rm1, a->rm2, gen_helper_fmpy_d);
4122 do_fop_dedd(ctx, a->ta, a->ta, a->ra,
4123 is_sub ? gen_helper_fsub_d : gen_helper_fadd_d);
4124
4125 return nullify_end(ctx);
4126}
4127
4128static bool trans_fmpyadd_d(DisasContext *ctx, arg_mpyadd *a)
4129{
4130 return do_fmpyadd_d(ctx, a, false);
4131}
4132
4133static bool trans_fmpysub_d(DisasContext *ctx, arg_mpyadd *a)
4134{
4135 return do_fmpyadd_d(ctx, a, true);
4136}
4137
c3bad4f8 4138static bool trans_fmpyfadd_f(DisasContext *ctx, arg_fmpyfadd_f *a)
ebe9383c 4139{
c3bad4f8 4140 TCGv_i32 x, y, z;
ebe9383c
RH
4141
4142 nullify_over(ctx);
c3bad4f8
RH
4143 x = load_frw0_i32(a->rm1);
4144 y = load_frw0_i32(a->rm2);
4145 z = load_frw0_i32(a->ra3);
ebe9383c 4146
c3bad4f8 4147 if (a->neg) {
ad75a51e 4148 gen_helper_fmpynfadd_s(x, tcg_env, x, y, z);
ebe9383c 4149 } else {
ad75a51e 4150 gen_helper_fmpyfadd_s(x, tcg_env, x, y, z);
ebe9383c
RH
4151 }
4152
c3bad4f8 4153 save_frw_i32(a->t, x);
31234768 4154 return nullify_end(ctx);
ebe9383c
RH
4155}
4156
c3bad4f8 4157static bool trans_fmpyfadd_d(DisasContext *ctx, arg_fmpyfadd_d *a)
ebe9383c 4158{
c3bad4f8 4159 TCGv_i64 x, y, z;
ebe9383c
RH
4160
4161 nullify_over(ctx);
c3bad4f8
RH
4162 x = load_frd0(a->rm1);
4163 y = load_frd0(a->rm2);
4164 z = load_frd0(a->ra3);
ebe9383c 4165
c3bad4f8 4166 if (a->neg) {
ad75a51e 4167 gen_helper_fmpynfadd_d(x, tcg_env, x, y, z);
ebe9383c 4168 } else {
ad75a51e 4169 gen_helper_fmpyfadd_d(x, tcg_env, x, y, z);
ebe9383c
RH
4170 }
4171
c3bad4f8 4172 save_frd(a->t, x);
31234768 4173 return nullify_end(ctx);
ebe9383c
RH
4174}
4175
15da177b
SS
4176static bool trans_diag(DisasContext *ctx, arg_diag *a)
4177{
cf6b28d4
HD
4178 CHECK_MOST_PRIVILEGED(EXCP_PRIV_OPR);
4179#ifndef CONFIG_USER_ONLY
4180 if (a->i == 0x100) {
4181 /* emulate PDC BTLB, called by SeaBIOS-hppa */
ad75a51e
RH
4182 nullify_over(ctx);
4183 gen_helper_diag_btlb(tcg_env);
4184 return nullify_end(ctx);
cf6b28d4 4185 }
ad75a51e
RH
4186#endif
4187 qemu_log_mask(LOG_UNIMP, "DIAG opcode 0x%04x ignored\n", a->i);
4188 return true;
15da177b
SS
4189}
4190
b542683d 4191static void hppa_tr_init_disas_context(DisasContextBase *dcbase, CPUState *cs)
61766fe9 4192{
51b061fb 4193 DisasContext *ctx = container_of(dcbase, DisasContext, base);
f764718d 4194 int bound;
61766fe9 4195
51b061fb 4196 ctx->cs = cs;
494737b7 4197 ctx->tb_flags = ctx->base.tb->flags;
bd6243a3 4198 ctx->is_pa20 = hppa_is_pa20(cpu_env(cs));
3d68ee7b
RH
4199
4200#ifdef CONFIG_USER_ONLY
c01e5dfb 4201 ctx->privilege = MMU_IDX_TO_PRIV(MMU_USER_IDX);
3d68ee7b 4202 ctx->mmu_idx = MMU_USER_IDX;
c01e5dfb
HD
4203 ctx->iaoq_f = ctx->base.pc_first | ctx->privilege;
4204 ctx->iaoq_b = ctx->base.tb->cs_base | ctx->privilege;
217d1a5e 4205 ctx->unalign = (ctx->tb_flags & TB_FLAG_UNALIGN ? MO_UNALN : MO_ALIGN);
3d68ee7b 4206#else
494737b7 4207 ctx->privilege = (ctx->tb_flags >> TB_FLAG_PRIV_SHIFT) & 3;
bb67ec32
RH
4208 ctx->mmu_idx = (ctx->tb_flags & PSW_D
4209 ? PRIV_P_TO_MMU_IDX(ctx->privilege, ctx->tb_flags & PSW_P)
4210 : MMU_PHYS_IDX);
3d68ee7b 4211
c301f34e
RH
4212 /* Recover the IAOQ values from the GVA + PRIV. */
4213 uint64_t cs_base = ctx->base.tb->cs_base;
4214 uint64_t iasq_f = cs_base & ~0xffffffffull;
4215 int32_t diff = cs_base;
4216
4217 ctx->iaoq_f = (ctx->base.pc_first & ~iasq_f) + ctx->privilege;
4218 ctx->iaoq_b = (diff ? ctx->iaoq_f + diff : -1);
4219#endif
51b061fb 4220 ctx->iaoq_n = -1;
f764718d 4221 ctx->iaoq_n_var = NULL;
61766fe9 4222
3d68ee7b
RH
4223 /* Bound the number of instructions by those left on the page. */
4224 bound = -(ctx->base.pc_first | TARGET_PAGE_MASK) / 4;
b542683d 4225 ctx->base.max_insns = MIN(ctx->base.max_insns, bound);
51b061fb 4226}
61766fe9 4227
51b061fb
RH
4228static void hppa_tr_tb_start(DisasContextBase *dcbase, CPUState *cs)
4229{
4230 DisasContext *ctx = container_of(dcbase, DisasContext, base);
61766fe9 4231
3d68ee7b 4232 /* Seed the nullification status from PSW[N], as saved in TB->FLAGS. */
51b061fb
RH
4233 ctx->null_cond = cond_make_f();
4234 ctx->psw_n_nonzero = false;
494737b7 4235 if (ctx->tb_flags & PSW_N) {
51b061fb
RH
4236 ctx->null_cond.c = TCG_COND_ALWAYS;
4237 ctx->psw_n_nonzero = true;
129e9cc3 4238 }
51b061fb
RH
4239 ctx->null_lab = NULL;
4240}
129e9cc3 4241
51b061fb
RH
4242static void hppa_tr_insn_start(DisasContextBase *dcbase, CPUState *cs)
4243{
4244 DisasContext *ctx = container_of(dcbase, DisasContext, base);
61766fe9 4245
51b061fb
RH
4246 tcg_gen_insn_start(ctx->iaoq_f, ctx->iaoq_b);
4247}
4248
51b061fb
RH
4249static void hppa_tr_translate_insn(DisasContextBase *dcbase, CPUState *cs)
4250{
4251 DisasContext *ctx = container_of(dcbase, DisasContext, base);
b77af26e 4252 CPUHPPAState *env = cpu_env(cs);
51b061fb 4253 DisasJumpType ret;
51b061fb
RH
4254
4255 /* Execute one insn. */
ba1d0b44 4256#ifdef CONFIG_USER_ONLY
c301f34e 4257 if (ctx->base.pc_next < TARGET_PAGE_SIZE) {
31234768
RH
4258 do_page_zero(ctx);
4259 ret = ctx->base.is_jmp;
51b061fb 4260 assert(ret != DISAS_NEXT);
ba1d0b44
RH
4261 } else
4262#endif
4263 {
51b061fb
RH
4264 /* Always fetch the insn, even if nullified, so that we check
4265 the page permissions for execute. */
4e116893 4266 uint32_t insn = translator_ldl(env, &ctx->base, ctx->base.pc_next);
51b061fb
RH
4267
4268 /* Set up the IA queue for the next insn.
4269 This will be overwritten by a branch. */
4270 if (ctx->iaoq_b == -1) {
4271 ctx->iaoq_n = -1;
e12c6309 4272 ctx->iaoq_n_var = tcg_temp_new();
eaa3783b 4273 tcg_gen_addi_reg(ctx->iaoq_n_var, cpu_iaoq_b, 4);
7ad439df 4274 } else {
51b061fb 4275 ctx->iaoq_n = ctx->iaoq_b + 4;
f764718d 4276 ctx->iaoq_n_var = NULL;
61766fe9
RH
4277 }
4278
51b061fb
RH
4279 if (unlikely(ctx->null_cond.c == TCG_COND_ALWAYS)) {
4280 ctx->null_cond.c = TCG_COND_NEVER;
4281 ret = DISAS_NEXT;
4282 } else {
1a19da0d 4283 ctx->insn = insn;
31274b46
RH
4284 if (!decode(ctx, insn)) {
4285 gen_illegal(ctx);
4286 }
31234768 4287 ret = ctx->base.is_jmp;
51b061fb 4288 assert(ctx->null_lab == NULL);
61766fe9 4289 }
51b061fb 4290 }
61766fe9 4291
3d68ee7b
RH
4292 /* Advance the insn queue. Note that this check also detects
4293 a priority change within the instruction queue. */
51b061fb 4294 if (ret == DISAS_NEXT && ctx->iaoq_b != ctx->iaoq_f + 4) {
c301f34e
RH
4295 if (ctx->iaoq_b != -1 && ctx->iaoq_n != -1
4296 && use_goto_tb(ctx, ctx->iaoq_b)
4297 && (ctx->null_cond.c == TCG_COND_NEVER
4298 || ctx->null_cond.c == TCG_COND_ALWAYS)) {
51b061fb
RH
4299 nullify_set(ctx, ctx->null_cond.c == TCG_COND_ALWAYS);
4300 gen_goto_tb(ctx, 0, ctx->iaoq_b, ctx->iaoq_n);
31234768 4301 ctx->base.is_jmp = ret = DISAS_NORETURN;
51b061fb 4302 } else {
31234768 4303 ctx->base.is_jmp = ret = DISAS_IAQ_N_STALE;
c301f34e 4304 }
61766fe9 4305 }
51b061fb
RH
4306 ctx->iaoq_f = ctx->iaoq_b;
4307 ctx->iaoq_b = ctx->iaoq_n;
c301f34e 4308 ctx->base.pc_next += 4;
51b061fb 4309
c5d0aec2
RH
4310 switch (ret) {
4311 case DISAS_NORETURN:
4312 case DISAS_IAQ_N_UPDATED:
4313 break;
4314
4315 case DISAS_NEXT:
4316 case DISAS_IAQ_N_STALE:
4317 case DISAS_IAQ_N_STALE_EXIT:
4318 if (ctx->iaoq_f == -1) {
a0180973 4319 copy_iaoq_entry(ctx, cpu_iaoq_f, -1, cpu_iaoq_b);
741322f4 4320 copy_iaoq_entry(ctx, cpu_iaoq_b, ctx->iaoq_n, ctx->iaoq_n_var);
c301f34e 4321#ifndef CONFIG_USER_ONLY
c5d0aec2 4322 tcg_gen_mov_i64(cpu_iasq_f, cpu_iasq_b);
c301f34e 4323#endif
c5d0aec2
RH
4324 nullify_save(ctx);
4325 ctx->base.is_jmp = (ret == DISAS_IAQ_N_STALE_EXIT
4326 ? DISAS_EXIT
4327 : DISAS_IAQ_N_UPDATED);
4328 } else if (ctx->iaoq_b == -1) {
a0180973 4329 copy_iaoq_entry(ctx, cpu_iaoq_b, -1, ctx->iaoq_n_var);
c5d0aec2
RH
4330 }
4331 break;
4332
4333 default:
4334 g_assert_not_reached();
51b061fb
RH
4335 }
4336}
4337
4338static void hppa_tr_tb_stop(DisasContextBase *dcbase, CPUState *cs)
4339{
4340 DisasContext *ctx = container_of(dcbase, DisasContext, base);
e1b5a5ed 4341 DisasJumpType is_jmp = ctx->base.is_jmp;
61766fe9 4342
e1b5a5ed 4343 switch (is_jmp) {
869051ea 4344 case DISAS_NORETURN:
61766fe9 4345 break;
51b061fb 4346 case DISAS_TOO_MANY:
869051ea 4347 case DISAS_IAQ_N_STALE:
e1b5a5ed 4348 case DISAS_IAQ_N_STALE_EXIT:
741322f4
RH
4349 copy_iaoq_entry(ctx, cpu_iaoq_f, ctx->iaoq_f, cpu_iaoq_f);
4350 copy_iaoq_entry(ctx, cpu_iaoq_b, ctx->iaoq_b, cpu_iaoq_b);
51b061fb 4351 nullify_save(ctx);
61766fe9 4352 /* FALLTHRU */
869051ea 4353 case DISAS_IAQ_N_UPDATED:
8532a14e 4354 if (is_jmp != DISAS_IAQ_N_STALE_EXIT) {
7f11636d 4355 tcg_gen_lookup_and_goto_ptr();
8532a14e 4356 break;
61766fe9 4357 }
c5d0aec2
RH
4358 /* FALLTHRU */
4359 case DISAS_EXIT:
4360 tcg_gen_exit_tb(NULL, 0);
61766fe9
RH
4361 break;
4362 default:
51b061fb 4363 g_assert_not_reached();
61766fe9 4364 }
51b061fb 4365}
61766fe9 4366
8eb806a7
RH
4367static void hppa_tr_disas_log(const DisasContextBase *dcbase,
4368 CPUState *cs, FILE *logfile)
51b061fb 4369{
c301f34e 4370 target_ulong pc = dcbase->pc_first;
61766fe9 4371
ba1d0b44
RH
4372#ifdef CONFIG_USER_ONLY
4373 switch (pc) {
51b061fb 4374 case 0x00:
8eb806a7 4375 fprintf(logfile, "IN:\n0x00000000: (null)\n");
ba1d0b44 4376 return;
51b061fb 4377 case 0xb0:
8eb806a7 4378 fprintf(logfile, "IN:\n0x000000b0: light-weight-syscall\n");
ba1d0b44 4379 return;
51b061fb 4380 case 0xe0:
8eb806a7 4381 fprintf(logfile, "IN:\n0x000000e0: set-thread-pointer-syscall\n");
ba1d0b44 4382 return;
51b061fb 4383 case 0x100:
8eb806a7 4384 fprintf(logfile, "IN:\n0x00000100: syscall\n");
ba1d0b44 4385 return;
61766fe9 4386 }
ba1d0b44
RH
4387#endif
4388
8eb806a7
RH
4389 fprintf(logfile, "IN: %s\n", lookup_symbol(pc));
4390 target_disas(logfile, cs, pc, dcbase->tb->size);
51b061fb
RH
4391}
4392
4393static const TranslatorOps hppa_tr_ops = {
4394 .init_disas_context = hppa_tr_init_disas_context,
4395 .tb_start = hppa_tr_tb_start,
4396 .insn_start = hppa_tr_insn_start,
51b061fb
RH
4397 .translate_insn = hppa_tr_translate_insn,
4398 .tb_stop = hppa_tr_tb_stop,
4399 .disas_log = hppa_tr_disas_log,
4400};
4401
597f9b2d 4402void gen_intermediate_code(CPUState *cs, TranslationBlock *tb, int *max_insns,
306c8721 4403 target_ulong pc, void *host_pc)
51b061fb
RH
4404{
4405 DisasContext ctx;
306c8721 4406 translator_loop(cs, tb, max_insns, pc, host_pc, &hppa_tr_ops, &ctx.base);
61766fe9 4407}