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