2021-02-08 06:46:14 +01:00
|
|
|
/*
|
2023-03-07 03:58:16 +01:00
|
|
|
* Copyright(c) 2019-2023 Qualcomm Innovation Center, Inc. All Rights Reserved.
|
2021-02-08 06:46:14 +01:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef HEXAGON_MACROS_H
|
|
|
|
#define HEXAGON_MACROS_H
|
|
|
|
|
|
|
|
#include "cpu.h"
|
|
|
|
#include "hex_regs.h"
|
|
|
|
#include "reg_fields.h"
|
|
|
|
|
|
|
|
#define PCALIGN 4
|
|
|
|
#define PCALIGN_MASK (PCALIGN - 1)
|
|
|
|
|
|
|
|
#define GET_FIELD(FIELD, REGIN) \
|
|
|
|
fEXTRACTU_BITS(REGIN, reg_field_info[FIELD].width, \
|
|
|
|
reg_field_info[FIELD].offset)
|
|
|
|
|
|
|
|
#ifdef QEMU_GENERATE
|
|
|
|
#define GET_USR_FIELD(FIELD, DST) \
|
|
|
|
tcg_gen_extract_tl(DST, hex_gpr[HEX_REG_USR], \
|
|
|
|
reg_field_info[FIELD].offset, \
|
|
|
|
reg_field_info[FIELD].width)
|
|
|
|
|
|
|
|
#define TYPE_INT(X) __builtin_types_compatible_p(typeof(X), int)
|
|
|
|
#define TYPE_TCGV(X) __builtin_types_compatible_p(typeof(X), TCGv)
|
|
|
|
#define TYPE_TCGV_I64(X) __builtin_types_compatible_p(typeof(X), TCGv_i64)
|
|
|
|
#else
|
|
|
|
#define GET_USR_FIELD(FIELD) \
|
|
|
|
fEXTRACTU_BITS(env->gpr[HEX_REG_USR], reg_field_info[FIELD].width, \
|
|
|
|
reg_field_info[FIELD].offset)
|
|
|
|
|
|
|
|
#define SET_USR_FIELD(FIELD, VAL) \
|
Hexagon (target/hexagon) Short-circuit packet register writes
In certain cases, we can avoid the overhead of writing to hex_new_value
and write directly to hex_gpr. We add need_commit field to DisasContext
indicating if the end-of-packet commit is needed. If it is not needed,
get_result_gpr() and get_result_gpr_pair() can return hex_gpr.
We pass the ctx->need_commit to helpers when needed.
Finally, we can early-exit from gen_reg_writes during packet commit.
There are a few instructions whose semantics write to the result before
reading all the inputs. Therefore, the idef-parser generated code is
incompatible with short-circuit. We tell idef-parser to skip them.
For debugging purposes, we add a cpu property to turn off short-circuit.
When the short-circuit property is false, we skip the analysis and force
the end-of-packet commit.
Here's a simple example of the TCG generated for
0x004000b4: 0x7800c020 { R0 = #0x1 }
BEFORE:
---- 004000b4
movi_i32 new_r0,$0x1
mov_i32 r0,new_r0
AFTER:
---- 004000b4
movi_i32 r0,$0x1
This patch reintroduces a use of check_for_attrib, so we remove the
G_GNUC_UNUSED added earlier in this series.
Signed-off-by: Taylor Simpson <tsimpson@quicinc.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Brian Cain <bcain@quicinc.com>
Message-Id: <20230427230012.3800327-12-tsimpson@quicinc.com>
2023-04-28 01:00:02 +02:00
|
|
|
do { \
|
|
|
|
if (pkt_need_commit) { \
|
2023-04-28 01:00:07 +02:00
|
|
|
fINSERT_BITS(env->new_value_usr, \
|
Hexagon (target/hexagon) Short-circuit packet register writes
In certain cases, we can avoid the overhead of writing to hex_new_value
and write directly to hex_gpr. We add need_commit field to DisasContext
indicating if the end-of-packet commit is needed. If it is not needed,
get_result_gpr() and get_result_gpr_pair() can return hex_gpr.
We pass the ctx->need_commit to helpers when needed.
Finally, we can early-exit from gen_reg_writes during packet commit.
There are a few instructions whose semantics write to the result before
reading all the inputs. Therefore, the idef-parser generated code is
incompatible with short-circuit. We tell idef-parser to skip them.
For debugging purposes, we add a cpu property to turn off short-circuit.
When the short-circuit property is false, we skip the analysis and force
the end-of-packet commit.
Here's a simple example of the TCG generated for
0x004000b4: 0x7800c020 { R0 = #0x1 }
BEFORE:
---- 004000b4
movi_i32 new_r0,$0x1
mov_i32 r0,new_r0
AFTER:
---- 004000b4
movi_i32 r0,$0x1
This patch reintroduces a use of check_for_attrib, so we remove the
G_GNUC_UNUSED added earlier in this series.
Signed-off-by: Taylor Simpson <tsimpson@quicinc.com>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Reviewed-by: Brian Cain <bcain@quicinc.com>
Message-Id: <20230427230012.3800327-12-tsimpson@quicinc.com>
2023-04-28 01:00:02 +02:00
|
|
|
reg_field_info[FIELD].width, \
|
|
|
|
reg_field_info[FIELD].offset, (VAL)); \
|
|
|
|
} else { \
|
|
|
|
fINSERT_BITS(env->gpr[HEX_REG_USR], \
|
|
|
|
reg_field_info[FIELD].width, \
|
|
|
|
reg_field_info[FIELD].offset, (VAL)); \
|
|
|
|
} \
|
|
|
|
} while (0)
|
2021-02-08 06:46:14 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef QEMU_GENERATE
|
|
|
|
/*
|
|
|
|
* Section 5.5 of the Hexagon V67 Programmer's Reference Manual
|
|
|
|
*
|
|
|
|
* Slot 1 store with slot 0 load
|
|
|
|
* A slot 1 store operation with a slot 0 load operation can appear in a packet.
|
|
|
|
* The packet attribute :mem_noshuf inhibits the instruction reordering that
|
|
|
|
* would otherwise be done by the assembler. For example:
|
|
|
|
* {
|
|
|
|
* memw(R5) = R2 // slot 1 store
|
|
|
|
* R3 = memh(R6) // slot 0 load
|
|
|
|
* }:mem_noshuf
|
|
|
|
* Unlike most packetized operations, these memory operations are not executed
|
|
|
|
* in parallel (Section 3.3.1). Instead, the store instruction in Slot 1
|
|
|
|
* effectively executes first, followed by the load instruction in Slot 0. If
|
|
|
|
* the addresses of the two operations are overlapping, the load will receive
|
|
|
|
* the newly stored data. This feature is supported in processor versions
|
|
|
|
* V65 or greater.
|
|
|
|
*
|
|
|
|
*
|
|
|
|
* For qemu, we look for a load in slot 0 when there is a store in slot 1
|
2022-07-07 23:05:46 +02:00
|
|
|
* in the same packet. When we see this, we call a helper that probes the
|
|
|
|
* load to make sure it doesn't fault. Then, we process the store ahead of
|
|
|
|
* the actual load.
|
|
|
|
|
2021-02-08 06:46:14 +01:00
|
|
|
*/
|
2022-07-07 23:05:46 +02:00
|
|
|
#define CHECK_NOSHUF(VA, SIZE) \
|
2021-02-08 06:46:14 +01:00
|
|
|
do { \
|
2022-11-08 17:28:56 +01:00
|
|
|
if (insn->slot == 0 && ctx->pkt->pkt_has_store_s1) { \
|
2022-07-07 23:05:46 +02:00
|
|
|
probe_noshuf_load(VA, SIZE, ctx->mem_idx); \
|
2022-11-08 17:28:56 +01:00
|
|
|
process_store(ctx, 1); \
|
2022-07-07 23:05:46 +02:00
|
|
|
} \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define CHECK_NOSHUF_PRED(GET_EA, SIZE, PRED) \
|
|
|
|
do { \
|
|
|
|
TCGLabel *label = gen_new_label(); \
|
|
|
|
tcg_gen_brcondi_tl(TCG_COND_EQ, PRED, 0, label); \
|
|
|
|
GET_EA; \
|
2022-11-08 17:28:56 +01:00
|
|
|
if (insn->slot == 0 && ctx->pkt->pkt_has_store_s1) { \
|
2022-07-07 23:05:46 +02:00
|
|
|
probe_noshuf_load(EA, SIZE, ctx->mem_idx); \
|
|
|
|
} \
|
|
|
|
gen_set_label(label); \
|
2022-11-08 17:28:56 +01:00
|
|
|
if (insn->slot == 0 && ctx->pkt->pkt_has_store_s1) { \
|
|
|
|
process_store(ctx, 1); \
|
2021-02-08 06:46:14 +01:00
|
|
|
} \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define MEM_LOAD1s(DST, VA) \
|
|
|
|
do { \
|
2022-07-07 23:05:46 +02:00
|
|
|
CHECK_NOSHUF(VA, 1); \
|
2023-05-02 15:57:35 +02:00
|
|
|
tcg_gen_qemu_ld_tl(DST, VA, ctx->mem_idx, MO_SB); \
|
2021-02-08 06:46:14 +01:00
|
|
|
} while (0)
|
|
|
|
#define MEM_LOAD1u(DST, VA) \
|
|
|
|
do { \
|
2022-07-07 23:05:46 +02:00
|
|
|
CHECK_NOSHUF(VA, 1); \
|
2023-05-02 15:57:35 +02:00
|
|
|
tcg_gen_qemu_ld_tl(DST, VA, ctx->mem_idx, MO_UB); \
|
2021-02-08 06:46:14 +01:00
|
|
|
} while (0)
|
|
|
|
#define MEM_LOAD2s(DST, VA) \
|
|
|
|
do { \
|
2022-07-07 23:05:46 +02:00
|
|
|
CHECK_NOSHUF(VA, 2); \
|
2023-05-02 15:57:35 +02:00
|
|
|
tcg_gen_qemu_ld_tl(DST, VA, ctx->mem_idx, MO_TESW); \
|
2021-02-08 06:46:14 +01:00
|
|
|
} while (0)
|
|
|
|
#define MEM_LOAD2u(DST, VA) \
|
|
|
|
do { \
|
2022-07-07 23:05:46 +02:00
|
|
|
CHECK_NOSHUF(VA, 2); \
|
2023-05-02 15:57:35 +02:00
|
|
|
tcg_gen_qemu_ld_tl(DST, VA, ctx->mem_idx, MO_TEUW); \
|
2021-02-08 06:46:14 +01:00
|
|
|
} while (0)
|
|
|
|
#define MEM_LOAD4s(DST, VA) \
|
|
|
|
do { \
|
2022-07-07 23:05:46 +02:00
|
|
|
CHECK_NOSHUF(VA, 4); \
|
2023-05-02 15:57:35 +02:00
|
|
|
tcg_gen_qemu_ld_tl(DST, VA, ctx->mem_idx, MO_TESL); \
|
2021-02-08 06:46:14 +01:00
|
|
|
} while (0)
|
|
|
|
#define MEM_LOAD4u(DST, VA) \
|
|
|
|
do { \
|
2022-07-07 23:05:46 +02:00
|
|
|
CHECK_NOSHUF(VA, 4); \
|
2023-05-02 15:57:35 +02:00
|
|
|
tcg_gen_qemu_ld_tl(DST, VA, ctx->mem_idx, MO_TEUL); \
|
2021-02-08 06:46:14 +01:00
|
|
|
} while (0)
|
|
|
|
#define MEM_LOAD8u(DST, VA) \
|
|
|
|
do { \
|
2022-07-07 23:05:46 +02:00
|
|
|
CHECK_NOSHUF(VA, 8); \
|
2023-05-02 15:57:35 +02:00
|
|
|
tcg_gen_qemu_ld_i64(DST, VA, ctx->mem_idx, MO_TEUQ); \
|
2021-02-08 06:46:14 +01:00
|
|
|
} while (0)
|
2021-04-09 03:07:50 +02:00
|
|
|
|
|
|
|
#define MEM_STORE1_FUNC(X) \
|
|
|
|
__builtin_choose_expr(TYPE_INT(X), \
|
|
|
|
gen_store1i, \
|
|
|
|
__builtin_choose_expr(TYPE_TCGV(X), \
|
|
|
|
gen_store1, (void)0))
|
|
|
|
#define MEM_STORE1(VA, DATA, SLOT) \
|
2023-09-14 01:37:36 +02:00
|
|
|
MEM_STORE1_FUNC(DATA)(tcg_env, VA, DATA, SLOT)
|
2021-04-09 03:07:50 +02:00
|
|
|
|
|
|
|
#define MEM_STORE2_FUNC(X) \
|
|
|
|
__builtin_choose_expr(TYPE_INT(X), \
|
|
|
|
gen_store2i, \
|
|
|
|
__builtin_choose_expr(TYPE_TCGV(X), \
|
|
|
|
gen_store2, (void)0))
|
|
|
|
#define MEM_STORE2(VA, DATA, SLOT) \
|
2023-09-14 01:37:36 +02:00
|
|
|
MEM_STORE2_FUNC(DATA)(tcg_env, VA, DATA, SLOT)
|
2021-04-09 03:07:50 +02:00
|
|
|
|
|
|
|
#define MEM_STORE4_FUNC(X) \
|
|
|
|
__builtin_choose_expr(TYPE_INT(X), \
|
|
|
|
gen_store4i, \
|
|
|
|
__builtin_choose_expr(TYPE_TCGV(X), \
|
|
|
|
gen_store4, (void)0))
|
|
|
|
#define MEM_STORE4(VA, DATA, SLOT) \
|
2023-09-14 01:37:36 +02:00
|
|
|
MEM_STORE4_FUNC(DATA)(tcg_env, VA, DATA, SLOT)
|
2021-04-09 03:07:50 +02:00
|
|
|
|
|
|
|
#define MEM_STORE8_FUNC(X) \
|
|
|
|
__builtin_choose_expr(TYPE_INT(X), \
|
|
|
|
gen_store8i, \
|
|
|
|
__builtin_choose_expr(TYPE_TCGV_I64(X), \
|
|
|
|
gen_store8, (void)0))
|
|
|
|
#define MEM_STORE8(VA, DATA, SLOT) \
|
2023-09-14 01:37:36 +02:00
|
|
|
MEM_STORE8_FUNC(DATA)(tcg_env, VA, DATA, SLOT)
|
2021-02-08 06:46:14 +01:00
|
|
|
#else
|
|
|
|
#define MEM_STORE1(VA, DATA, SLOT) log_store32(env, VA, DATA, 1, SLOT)
|
|
|
|
#define MEM_STORE2(VA, DATA, SLOT) log_store32(env, VA, DATA, 2, SLOT)
|
|
|
|
#define MEM_STORE4(VA, DATA, SLOT) log_store32(env, VA, DATA, 4, SLOT)
|
|
|
|
#define MEM_STORE8(VA, DATA, SLOT) log_store64(env, VA, DATA, 8, SLOT)
|
|
|
|
#endif
|
|
|
|
|
2022-09-23 19:38:25 +02:00
|
|
|
#ifdef QEMU_GENERATE
|
|
|
|
static inline void gen_cancel(uint32_t slot)
|
|
|
|
{
|
|
|
|
tcg_gen_ori_tl(hex_slot_cancelled, hex_slot_cancelled, 1 << slot);
|
|
|
|
}
|
|
|
|
|
|
|
|
#define CANCEL gen_cancel(slot);
|
|
|
|
#else
|
Hexagon (target/hexagon) Reduce manipulation of slot_cancelled
We only need to track slot for predicated stores and predicated HVX
instructions.
Add arguments to the probe helper functions to indicate if the slot
is predicated.
Here is a simple example of the differences in the TCG code generated:
IN:
0x00400094: 0xf900c102 { if (P0) R2 = and(R0,R1) }
BEFORE
---- 00400094
mov_i32 slot_cancelled,$0x0
mov_i32 new_r2,r2
and_i32 tmp0,p0,$0x1
brcond_i32 tmp0,$0x0,eq,$L1
and_i32 tmp0,r0,r1
mov_i32 new_r2,tmp0
br $L2
set_label $L1
or_i32 slot_cancelled,slot_cancelled,$0x8
set_label $L2
mov_i32 r2,new_r2
AFTER
---- 00400094
mov_i32 new_r2,r2
and_i32 tmp0,p0,$0x1
brcond_i32 tmp0,$0x0,eq,$L1
and_i32 tmp0,r0,r1
mov_i32 new_r2,tmp0
br $L2
set_label $L1
set_label $L2
mov_i32 r2,new_r2
Signed-off-by: Taylor Simpson <tsimpson@quicinc.com>
Reviewed-by: Anton Johansson <anjo@rev.ng>
Message-Id: <20230307025828.1612809-14-tsimpson@quicinc.com>
2023-03-07 03:58:27 +01:00
|
|
|
#define CANCEL do { } while (0)
|
2022-09-23 19:38:25 +02:00
|
|
|
#endif
|
2021-02-08 06:46:14 +01:00
|
|
|
|
|
|
|
#define LOAD_CANCEL(EA) do { CANCEL; } while (0)
|
|
|
|
|
|
|
|
#define STORE_CANCEL(EA) { env->slot_cancelled |= (1 << slot); }
|
|
|
|
|
|
|
|
#define fMAX(A, B) (((A) > (B)) ? (A) : (B))
|
|
|
|
|
|
|
|
#define fMIN(A, B) (((A) < (B)) ? (A) : (B))
|
|
|
|
|
|
|
|
#define fABS(A) (((A) < 0) ? (-(A)) : (A))
|
|
|
|
#define fINSERT_BITS(REG, WIDTH, OFFSET, INVAL) \
|
|
|
|
REG = ((WIDTH) ? deposit64(REG, (OFFSET), (WIDTH), (INVAL)) : REG)
|
|
|
|
#define fEXTRACTU_BITS(INREG, WIDTH, OFFSET) \
|
|
|
|
((WIDTH) ? extract64((INREG), (OFFSET), (WIDTH)) : 0LL)
|
|
|
|
#define fEXTRACTU_BIDIR(INREG, WIDTH, OFFSET) \
|
|
|
|
(fZXTN(WIDTH, 32, fBIDIR_LSHIFTR((INREG), (OFFSET), 4_8)))
|
|
|
|
#define fEXTRACTU_RANGE(INREG, HIBIT, LOWBIT) \
|
|
|
|
(((HIBIT) - (LOWBIT) + 1) ? \
|
|
|
|
extract64((INREG), (LOWBIT), ((HIBIT) - (LOWBIT) + 1)) : \
|
|
|
|
0LL)
|
2021-04-09 03:07:54 +02:00
|
|
|
#define fINSERT_RANGE(INREG, HIBIT, LOWBIT, INVAL) \
|
|
|
|
do { \
|
|
|
|
int width = ((HIBIT) - (LOWBIT) + 1); \
|
|
|
|
INREG = (width >= 0 ? \
|
|
|
|
deposit64((INREG), (LOWBIT), width, (INVAL)) : \
|
|
|
|
INREG); \
|
|
|
|
} while (0)
|
2021-02-08 06:46:14 +01:00
|
|
|
|
|
|
|
#define f8BITSOF(VAL) ((VAL) ? 0xff : 0x00)
|
|
|
|
|
|
|
|
#ifdef QEMU_GENERATE
|
|
|
|
#define fLSBOLD(VAL) tcg_gen_andi_tl(LSB, (VAL), 1)
|
|
|
|
#else
|
|
|
|
#define fLSBOLD(VAL) ((VAL) & 1)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef QEMU_GENERATE
|
2021-06-02 01:19:41 +02:00
|
|
|
#define fLSBNEW(PVAL) tcg_gen_andi_tl(LSB, (PVAL), 1)
|
2021-02-08 06:46:14 +01:00
|
|
|
#else
|
2021-06-02 01:19:41 +02:00
|
|
|
#define fLSBNEW(PVAL) ((PVAL) & 1)
|
2021-02-08 06:46:14 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef QEMU_GENERATE
|
|
|
|
#define fLSBOLDNOT(VAL) \
|
|
|
|
do { \
|
|
|
|
tcg_gen_andi_tl(LSB, (VAL), 1); \
|
|
|
|
tcg_gen_xori_tl(LSB, LSB, 1); \
|
|
|
|
} while (0)
|
|
|
|
#define fLSBNEWNOT(PNUM) \
|
2021-06-02 01:19:41 +02:00
|
|
|
do { \
|
|
|
|
tcg_gen_andi_tl(LSB, (PNUM), 1); \
|
|
|
|
tcg_gen_xori_tl(LSB, LSB, 1); \
|
|
|
|
} while (0)
|
2021-02-08 06:46:14 +01:00
|
|
|
#else
|
|
|
|
#define fLSBNEWNOT(PNUM) (!fLSBNEW(PNUM))
|
|
|
|
#define fLSBOLDNOT(VAL) (!fLSBOLD(VAL))
|
|
|
|
#define fLSBNEW0NOT (!fLSBNEW0)
|
|
|
|
#define fLSBNEW1NOT (!fLSBNEW1)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#define fNEWREG(VAL) ((int32_t)(VAL))
|
|
|
|
|
|
|
|
#define fNEWREG_ST(VAL) (VAL)
|
|
|
|
|
2021-03-08 00:30:59 +01:00
|
|
|
#define fVSATUVALN(N, VAL) \
|
|
|
|
({ \
|
2022-02-10 03:15:46 +01:00
|
|
|
(((int64_t)(VAL)) < 0) ? 0 : ((1LL << (N)) - 1); \
|
2021-03-08 00:30:59 +01:00
|
|
|
})
|
2021-02-08 06:46:14 +01:00
|
|
|
#define fSATUVALN(N, VAL) \
|
|
|
|
({ \
|
|
|
|
fSET_OVERFLOW(); \
|
|
|
|
((VAL) < 0) ? 0 : ((1LL << (N)) - 1); \
|
|
|
|
})
|
|
|
|
#define fSATVALN(N, VAL) \
|
|
|
|
({ \
|
|
|
|
fSET_OVERFLOW(); \
|
|
|
|
((VAL) < 0) ? (-(1LL << ((N) - 1))) : ((1LL << ((N) - 1)) - 1); \
|
|
|
|
})
|
2021-03-08 00:30:59 +01:00
|
|
|
#define fVSATVALN(N, VAL) \
|
|
|
|
({ \
|
|
|
|
((VAL) < 0) ? (-(1LL << ((N) - 1))) : ((1LL << ((N) - 1)) - 1); \
|
|
|
|
})
|
2021-02-08 06:46:14 +01:00
|
|
|
#define fZXTN(N, M, VAL) (((N) != 0) ? extract64((VAL), 0, (N)) : 0LL)
|
|
|
|
#define fSXTN(N, M, VAL) (((N) != 0) ? sextract64((VAL), 0, (N)) : 0LL)
|
|
|
|
#define fSATN(N, VAL) \
|
|
|
|
((fSXTN(N, 64, VAL) == (VAL)) ? (VAL) : fSATVALN(N, VAL))
|
2021-03-08 00:30:59 +01:00
|
|
|
#define fVSATN(N, VAL) \
|
|
|
|
((fSXTN(N, 64, VAL) == (VAL)) ? (VAL) : fVSATVALN(N, VAL))
|
2021-02-08 06:46:14 +01:00
|
|
|
#define fADDSAT64(DST, A, B) \
|
|
|
|
do { \
|
|
|
|
uint64_t __a = fCAST8u(A); \
|
|
|
|
uint64_t __b = fCAST8u(B); \
|
|
|
|
uint64_t __sum = __a + __b; \
|
|
|
|
uint64_t __xor = __a ^ __b; \
|
|
|
|
const uint64_t __mask = 0x8000000000000000ULL; \
|
|
|
|
if (__xor & __mask) { \
|
|
|
|
DST = __sum; \
|
|
|
|
} \
|
|
|
|
else if ((__a ^ __sum) & __mask) { \
|
|
|
|
if (__sum & __mask) { \
|
|
|
|
DST = 0x7FFFFFFFFFFFFFFFLL; \
|
|
|
|
fSET_OVERFLOW(); \
|
|
|
|
} else { \
|
|
|
|
DST = 0x8000000000000000LL; \
|
|
|
|
fSET_OVERFLOW(); \
|
|
|
|
} \
|
|
|
|
} else { \
|
|
|
|
DST = __sum; \
|
|
|
|
} \
|
|
|
|
} while (0)
|
2021-03-08 00:30:59 +01:00
|
|
|
#define fVSATUN(N, VAL) \
|
|
|
|
((fZXTN(N, 64, VAL) == (VAL)) ? (VAL) : fVSATUVALN(N, VAL))
|
2021-02-08 06:46:14 +01:00
|
|
|
#define fSATUN(N, VAL) \
|
|
|
|
((fZXTN(N, 64, VAL) == (VAL)) ? (VAL) : fSATUVALN(N, VAL))
|
|
|
|
#define fSATH(VAL) (fSATN(16, VAL))
|
|
|
|
#define fSATUH(VAL) (fSATUN(16, VAL))
|
2021-03-08 00:30:59 +01:00
|
|
|
#define fVSATH(VAL) (fVSATN(16, VAL))
|
|
|
|
#define fVSATUH(VAL) (fVSATUN(16, VAL))
|
2021-02-08 06:46:14 +01:00
|
|
|
#define fSATUB(VAL) (fSATUN(8, VAL))
|
|
|
|
#define fSATB(VAL) (fSATN(8, VAL))
|
2021-03-08 00:30:59 +01:00
|
|
|
#define fVSATUB(VAL) (fVSATUN(8, VAL))
|
|
|
|
#define fVSATB(VAL) (fVSATN(8, VAL))
|
2021-02-08 06:46:14 +01:00
|
|
|
#define fIMMEXT(IMM) (IMM = IMM)
|
|
|
|
#define fMUST_IMMEXT(IMM) fIMMEXT(IMM)
|
|
|
|
|
|
|
|
#define fPCALIGN(IMM) IMM = (IMM & ~PCALIGN_MASK)
|
|
|
|
|
2021-04-09 03:07:50 +02:00
|
|
|
#ifdef QEMU_GENERATE
|
|
|
|
static inline TCGv gen_read_ireg(TCGv result, TCGv val, int shift)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Section 2.2.4 of the Hexagon V67 Programmer's Reference Manual
|
|
|
|
*
|
|
|
|
* The "I" value from a modifier register is divided into two pieces
|
|
|
|
* LSB bits 23:17
|
|
|
|
* MSB bits 31:28
|
|
|
|
* The value is signed
|
|
|
|
*
|
|
|
|
* At the end we shift the result according to the shift argument
|
|
|
|
*/
|
|
|
|
TCGv msb = tcg_temp_new();
|
|
|
|
TCGv lsb = tcg_temp_new();
|
|
|
|
|
|
|
|
tcg_gen_extract_tl(lsb, val, 17, 7);
|
|
|
|
tcg_gen_sari_tl(msb, val, 21);
|
|
|
|
tcg_gen_deposit_tl(result, msb, lsb, 0, 7);
|
|
|
|
|
|
|
|
tcg_gen_shli_tl(result, result, shift);
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2023-03-28 20:42:46 +02:00
|
|
|
#define fREAD_LR() (env->gpr[HEX_REG_LR])
|
2021-02-08 06:46:14 +01:00
|
|
|
|
2023-03-28 20:42:46 +02:00
|
|
|
#define fREAD_SP() (env->gpr[HEX_REG_SP])
|
|
|
|
#define fREAD_LC0 (env->gpr[HEX_REG_LC0])
|
|
|
|
#define fREAD_LC1 (env->gpr[HEX_REG_LC1])
|
|
|
|
#define fREAD_SA0 (env->gpr[HEX_REG_SA0])
|
|
|
|
#define fREAD_SA1 (env->gpr[HEX_REG_SA1])
|
|
|
|
#define fREAD_FP() (env->gpr[HEX_REG_FP])
|
2021-02-08 06:46:14 +01:00
|
|
|
#ifdef FIXME
|
|
|
|
/* Figure out how to get insn->extension_valid to helper */
|
|
|
|
#define fREAD_GP() \
|
2023-03-28 20:42:46 +02:00
|
|
|
(insn->extension_valid ? 0 : env->gpr[HEX_REG_GP])
|
2021-02-08 06:46:14 +01:00
|
|
|
#else
|
2023-03-28 20:42:46 +02:00
|
|
|
#define fREAD_GP() (env->gpr[HEX_REG_GP])
|
2021-02-08 06:46:14 +01:00
|
|
|
#endif
|
2022-11-08 17:29:00 +01:00
|
|
|
#define fREAD_PC() (PC)
|
2021-02-08 06:46:14 +01:00
|
|
|
|
2023-03-28 20:42:46 +02:00
|
|
|
#define fREAD_P0() (env->pred[0])
|
2021-02-08 06:46:14 +01:00
|
|
|
|
|
|
|
#define fCHECK_PCALIGN(A)
|
|
|
|
|
2022-11-08 17:28:59 +01:00
|
|
|
#define fWRITE_NPC(A) write_new_pc(env, pkt_has_multi_cof != 0, A)
|
2021-02-08 06:46:14 +01:00
|
|
|
|
|
|
|
#define fBRANCH(LOC, TYPE) fWRITE_NPC(LOC)
|
|
|
|
#define fJUMPR(REGNO, TARGET, TYPE) fBRANCH(TARGET, COF_TYPE_JUMPR)
|
|
|
|
#define fHINTJR(TARGET) { /* Not modelled in qemu */}
|
|
|
|
|
|
|
|
#define fSET_OVERFLOW() SET_USR_FIELD(USR_OVF, 1)
|
|
|
|
#define fSET_LPCFG(VAL) SET_USR_FIELD(USR_LPCFG, (VAL))
|
|
|
|
#define fGET_LPCFG (GET_USR_FIELD(USR_LPCFG))
|
|
|
|
#define fPART1(WORK) if (part1) { WORK; return; }
|
|
|
|
#define fCAST4u(A) ((uint32_t)(A))
|
|
|
|
#define fCAST4s(A) ((int32_t)(A))
|
|
|
|
#define fCAST8u(A) ((uint64_t)(A))
|
|
|
|
#define fCAST8s(A) ((int64_t)(A))
|
2021-03-08 00:30:59 +01:00
|
|
|
#define fCAST2_2s(A) ((int16_t)(A))
|
|
|
|
#define fCAST2_2u(A) ((uint16_t)(A))
|
2021-02-08 06:46:14 +01:00
|
|
|
#define fCAST4_4s(A) ((int32_t)(A))
|
|
|
|
#define fCAST4_4u(A) ((uint32_t)(A))
|
|
|
|
#define fCAST4_8s(A) ((int64_t)((int32_t)(A)))
|
|
|
|
#define fCAST4_8u(A) ((uint64_t)((uint32_t)(A)))
|
|
|
|
#define fCAST8_8s(A) ((int64_t)(A))
|
|
|
|
#define fCAST8_8u(A) ((uint64_t)(A))
|
|
|
|
#define fCAST2_8s(A) ((int64_t)((int16_t)(A)))
|
|
|
|
#define fCAST2_8u(A) ((uint64_t)((uint16_t)(A)))
|
|
|
|
#define fZE8_16(A) ((int16_t)((uint8_t)(A)))
|
|
|
|
#define fSE8_16(A) ((int16_t)((int8_t)(A)))
|
|
|
|
#define fSE16_32(A) ((int32_t)((int16_t)(A)))
|
|
|
|
#define fZE16_32(A) ((uint32_t)((uint16_t)(A)))
|
|
|
|
#define fSE32_64(A) ((int64_t)((int32_t)(A)))
|
|
|
|
#define fZE32_64(A) ((uint64_t)((uint32_t)(A)))
|
|
|
|
#define fSE8_32(A) ((int32_t)((int8_t)(A)))
|
|
|
|
#define fZE8_32(A) ((int32_t)((uint8_t)(A)))
|
|
|
|
#define fMPY8UU(A, B) (int)(fZE8_16(A) * fZE8_16(B))
|
|
|
|
#define fMPY8US(A, B) (int)(fZE8_16(A) * fSE8_16(B))
|
|
|
|
#define fMPY8SU(A, B) (int)(fSE8_16(A) * fZE8_16(B))
|
|
|
|
#define fMPY8SS(A, B) (int)((short)(A) * (short)(B))
|
|
|
|
#define fMPY16SS(A, B) fSE32_64(fSE16_32(A) * fSE16_32(B))
|
|
|
|
#define fMPY16UU(A, B) fZE32_64(fZE16_32(A) * fZE16_32(B))
|
|
|
|
#define fMPY16SU(A, B) fSE32_64(fSE16_32(A) * fZE16_32(B))
|
|
|
|
#define fMPY16US(A, B) fMPY16SU(B, A)
|
|
|
|
#define fMPY32SS(A, B) (fSE32_64(A) * fSE32_64(B))
|
|
|
|
#define fMPY32UU(A, B) (fZE32_64(A) * fZE32_64(B))
|
|
|
|
#define fMPY32SU(A, B) (fSE32_64(A) * fZE32_64(B))
|
|
|
|
#define fMPY3216SS(A, B) (fSE32_64(A) * fSXTN(16, 64, B))
|
|
|
|
#define fMPY3216SU(A, B) (fSE32_64(A) * fZXTN(16, 64, B))
|
|
|
|
#define fROUND(A) (A + 0x8000)
|
|
|
|
#define fCLIP(DST, SRC, U) \
|
|
|
|
do { \
|
|
|
|
int32_t maxv = (1 << U) - 1; \
|
|
|
|
int32_t minv = -(1 << U); \
|
|
|
|
DST = fMIN(maxv, fMAX(SRC, minv)); \
|
|
|
|
} while (0)
|
|
|
|
#define fCRND(A) ((((A) & 0x3) == 0x3) ? ((A) + 1) : ((A)))
|
|
|
|
#define fRNDN(A, N) ((((N) == 0) ? (A) : (((fSE32_64(A)) + (1 << ((N) - 1))))))
|
|
|
|
#define fCRNDN(A, N) (conv_round(A, N))
|
|
|
|
#define fADD128(A, B) (int128_add(A, B))
|
|
|
|
#define fSUB128(A, B) (int128_sub(A, B))
|
|
|
|
#define fSHIFTR128(A, B) (int128_rshift(A, B))
|
|
|
|
#define fSHIFTL128(A, B) (int128_lshift(A, B))
|
|
|
|
#define fAND128(A, B) (int128_and(A, B))
|
|
|
|
#define fCAST8S_16S(A) (int128_exts64(A))
|
|
|
|
#define fCAST16S_8S(A) (int128_getlo(A))
|
|
|
|
|
2021-04-09 03:07:52 +02:00
|
|
|
#ifdef QEMU_GENERATE
|
|
|
|
#define fEA_RI(REG, IMM) tcg_gen_addi_tl(EA, REG, IMM)
|
|
|
|
#define fEA_RRs(REG, REG2, SCALE) \
|
|
|
|
do { \
|
|
|
|
TCGv tmp = tcg_temp_new(); \
|
|
|
|
tcg_gen_shli_tl(tmp, REG2, SCALE); \
|
|
|
|
tcg_gen_add_tl(EA, REG, tmp); \
|
|
|
|
} while (0)
|
|
|
|
#define fEA_IRs(IMM, REG, SCALE) \
|
|
|
|
do { \
|
|
|
|
tcg_gen_shli_tl(EA, REG, SCALE); \
|
|
|
|
tcg_gen_addi_tl(EA, EA, IMM); \
|
|
|
|
} while (0)
|
|
|
|
#else
|
2021-02-08 06:46:14 +01:00
|
|
|
#define fEA_RI(REG, IMM) \
|
|
|
|
do { \
|
|
|
|
EA = REG + IMM; \
|
|
|
|
} while (0)
|
|
|
|
#define fEA_RRs(REG, REG2, SCALE) \
|
|
|
|
do { \
|
|
|
|
EA = REG + (REG2 << SCALE); \
|
|
|
|
} while (0)
|
|
|
|
#define fEA_IRs(IMM, REG, SCALE) \
|
|
|
|
do { \
|
|
|
|
EA = IMM + (REG << SCALE); \
|
|
|
|
} while (0)
|
2021-04-09 03:07:52 +02:00
|
|
|
#endif
|
2021-02-08 06:46:14 +01:00
|
|
|
|
|
|
|
#ifdef QEMU_GENERATE
|
|
|
|
#define fEA_IMM(IMM) tcg_gen_movi_tl(EA, IMM)
|
|
|
|
#define fEA_REG(REG) tcg_gen_mov_tl(EA, REG)
|
2021-04-09 03:07:51 +02:00
|
|
|
#define fEA_BREVR(REG) gen_helper_fbrev(EA, REG)
|
2021-02-08 06:46:14 +01:00
|
|
|
#define fPM_I(REG, IMM) tcg_gen_addi_tl(REG, REG, IMM)
|
|
|
|
#define fPM_M(REG, MVAL) tcg_gen_add_tl(REG, REG, MVAL)
|
2021-04-09 03:07:50 +02:00
|
|
|
#define fPM_CIRI(REG, IMM, MVAL) \
|
|
|
|
do { \
|
2021-10-11 18:48:52 +02:00
|
|
|
TCGv tcgv_siV = tcg_constant_tl(siV); \
|
2021-04-09 03:07:50 +02:00
|
|
|
gen_helper_fcircadd(REG, REG, tcgv_siV, MuV, \
|
|
|
|
hex_gpr[HEX_REG_CS0 + MuN]); \
|
|
|
|
} while (0)
|
2021-02-08 06:46:14 +01:00
|
|
|
#else
|
|
|
|
#define fEA_IMM(IMM) do { EA = (IMM); } while (0)
|
|
|
|
#define fEA_REG(REG) do { EA = (REG); } while (0)
|
|
|
|
#define fEA_GPI(IMM) do { EA = (fREAD_GP() + (IMM)); } while (0)
|
|
|
|
#define fPM_I(REG, IMM) do { REG = REG + (IMM); } while (0)
|
|
|
|
#define fPM_M(REG, MVAL) do { REG = REG + (MVAL); } while (0)
|
|
|
|
#endif
|
|
|
|
#define fSCALE(N, A) (((int64_t)(A)) << N)
|
2021-03-08 00:30:59 +01:00
|
|
|
#define fVSATW(A) fVSATN(32, ((long long)A))
|
2021-02-08 06:46:14 +01:00
|
|
|
#define fSATW(A) fSATN(32, ((long long)A))
|
2021-03-08 00:30:59 +01:00
|
|
|
#define fVSAT(A) fVSATN(32, (A))
|
2021-02-08 06:46:14 +01:00
|
|
|
#define fSAT(A) fSATN(32, (A))
|
|
|
|
#define fSAT_ORIG_SHL(A, ORIG_REG) \
|
|
|
|
((((int32_t)((fSAT(A)) ^ ((int32_t)(ORIG_REG)))) < 0) \
|
|
|
|
? fSATVALN(32, ((int32_t)(ORIG_REG))) \
|
|
|
|
: ((((ORIG_REG) > 0) && ((A) == 0)) ? fSATVALN(32, (ORIG_REG)) \
|
|
|
|
: fSAT(A)))
|
|
|
|
#define fPASS(A) A
|
|
|
|
#define fBIDIR_SHIFTL(SRC, SHAMT, REGSTYPE) \
|
|
|
|
(((SHAMT) < 0) ? ((fCAST##REGSTYPE(SRC) >> ((-(SHAMT)) - 1)) >> 1) \
|
|
|
|
: (fCAST##REGSTYPE(SRC) << (SHAMT)))
|
|
|
|
#define fBIDIR_ASHIFTL(SRC, SHAMT, REGSTYPE) \
|
|
|
|
fBIDIR_SHIFTL(SRC, SHAMT, REGSTYPE##s)
|
|
|
|
#define fBIDIR_LSHIFTL(SRC, SHAMT, REGSTYPE) \
|
|
|
|
fBIDIR_SHIFTL(SRC, SHAMT, REGSTYPE##u)
|
|
|
|
#define fBIDIR_ASHIFTL_SAT(SRC, SHAMT, REGSTYPE) \
|
|
|
|
(((SHAMT) < 0) ? ((fCAST##REGSTYPE##s(SRC) >> ((-(SHAMT)) - 1)) >> 1) \
|
|
|
|
: fSAT_ORIG_SHL(fCAST##REGSTYPE##s(SRC) << (SHAMT), (SRC)))
|
|
|
|
#define fBIDIR_SHIFTR(SRC, SHAMT, REGSTYPE) \
|
|
|
|
(((SHAMT) < 0) ? ((fCAST##REGSTYPE(SRC) << ((-(SHAMT)) - 1)) << 1) \
|
|
|
|
: (fCAST##REGSTYPE(SRC) >> (SHAMT)))
|
|
|
|
#define fBIDIR_ASHIFTR(SRC, SHAMT, REGSTYPE) \
|
|
|
|
fBIDIR_SHIFTR(SRC, SHAMT, REGSTYPE##s)
|
|
|
|
#define fBIDIR_LSHIFTR(SRC, SHAMT, REGSTYPE) \
|
|
|
|
fBIDIR_SHIFTR(SRC, SHAMT, REGSTYPE##u)
|
|
|
|
#define fBIDIR_ASHIFTR_SAT(SRC, SHAMT, REGSTYPE) \
|
|
|
|
(((SHAMT) < 0) ? fSAT_ORIG_SHL((fCAST##REGSTYPE##s(SRC) \
|
|
|
|
<< ((-(SHAMT)) - 1)) << 1, (SRC)) \
|
|
|
|
: (fCAST##REGSTYPE##s(SRC) >> (SHAMT)))
|
|
|
|
#define fASHIFTR(SRC, SHAMT, REGSTYPE) (fCAST##REGSTYPE##s(SRC) >> (SHAMT))
|
|
|
|
#define fLSHIFTR(SRC, SHAMT, REGSTYPE) \
|
2021-03-04 18:37:05 +01:00
|
|
|
(((SHAMT) >= (sizeof(SRC) * 8)) ? 0 : (fCAST##REGSTYPE##u(SRC) >> (SHAMT)))
|
2021-02-08 06:46:14 +01:00
|
|
|
#define fROTL(SRC, SHAMT, REGSTYPE) \
|
|
|
|
(((SHAMT) == 0) ? (SRC) : ((fCAST##REGSTYPE##u(SRC) << (SHAMT)) | \
|
|
|
|
((fCAST##REGSTYPE##u(SRC) >> \
|
|
|
|
((sizeof(SRC) * 8) - (SHAMT))))))
|
|
|
|
#define fROTR(SRC, SHAMT, REGSTYPE) \
|
|
|
|
(((SHAMT) == 0) ? (SRC) : ((fCAST##REGSTYPE##u(SRC) >> (SHAMT)) | \
|
|
|
|
((fCAST##REGSTYPE##u(SRC) << \
|
|
|
|
((sizeof(SRC) * 8) - (SHAMT))))))
|
|
|
|
#define fASHIFTL(SRC, SHAMT, REGSTYPE) \
|
2021-03-04 18:37:05 +01:00
|
|
|
(((SHAMT) >= (sizeof(SRC) * 8)) ? 0 : (fCAST##REGSTYPE##s(SRC) << (SHAMT)))
|
2021-02-08 06:46:14 +01:00
|
|
|
|
|
|
|
#ifdef QEMU_GENERATE
|
|
|
|
#define fLOAD(NUM, SIZE, SIGN, EA, DST) MEM_LOAD##SIZE##SIGN(DST, EA)
|
|
|
|
#else
|
target/hexagon: move GETPC() calls to top level helpers
As docs/devel/loads-stores.rst states:
``GETPC()`` should be used with great care: calling
it in other functions that are *not* the top level
``HELPER(foo)`` will cause unexpected behavior. Instead, the
value of ``GETPC()`` should be read from the helper and passed
if needed to the functions that the helper calls.
Let's fix the GETPC() usage in Hexagon, making sure it's always called
from top level helpers and passed down to the places where it's
needed. There are a few snippets where that is not currently the case:
- probe_store(), which is only called from two helpers, so it's easy to
move GETPC() up.
- mem_load*() functions, which are also called directly from helpers,
but through the MEM_LOAD*() set of macros. Note that this are only
used when compiling with --disable-hexagon-idef-parser.
In this case, we also take this opportunity to simplify the code,
unifying the mem_load*() functions.
- HELPER(probe_hvx_stores), when called from another helper, ends up
using its own GETPC() expansion instead of the top level caller.
Signed-off-by: Matheus Tavares Bernardino <quic_mathbern@quicinc.com>
Reviewed-by: Taylor Simpson <ltaylorsimpson@gmail.com>
Message-Id: <2c74c3696946edba7cc5b2942cf296a5af532052.1689070412.git.quic_mathbern@quicinc.com>-ne
Reviewed-by: Brian Cain <bcain@quicinc.com>
Signed-off-by: Brian Cain <bcain@quicinc.com>
Message-Id: <20231008220945.983643-2-bcain@quicinc.com>
2023-10-09 00:09:43 +02:00
|
|
|
#define MEM_LOAD1 cpu_ldub_data_ra
|
|
|
|
#define MEM_LOAD2 cpu_lduw_data_ra
|
|
|
|
#define MEM_LOAD4 cpu_ldl_data_ra
|
|
|
|
#define MEM_LOAD8 cpu_ldq_data_ra
|
|
|
|
|
2021-02-08 06:46:14 +01:00
|
|
|
#define fLOAD(NUM, SIZE, SIGN, EA, DST) \
|
target/hexagon: move GETPC() calls to top level helpers
As docs/devel/loads-stores.rst states:
``GETPC()`` should be used with great care: calling
it in other functions that are *not* the top level
``HELPER(foo)`` will cause unexpected behavior. Instead, the
value of ``GETPC()`` should be read from the helper and passed
if needed to the functions that the helper calls.
Let's fix the GETPC() usage in Hexagon, making sure it's always called
from top level helpers and passed down to the places where it's
needed. There are a few snippets where that is not currently the case:
- probe_store(), which is only called from two helpers, so it's easy to
move GETPC() up.
- mem_load*() functions, which are also called directly from helpers,
but through the MEM_LOAD*() set of macros. Note that this are only
used when compiling with --disable-hexagon-idef-parser.
In this case, we also take this opportunity to simplify the code,
unifying the mem_load*() functions.
- HELPER(probe_hvx_stores), when called from another helper, ends up
using its own GETPC() expansion instead of the top level caller.
Signed-off-by: Matheus Tavares Bernardino <quic_mathbern@quicinc.com>
Reviewed-by: Taylor Simpson <ltaylorsimpson@gmail.com>
Message-Id: <2c74c3696946edba7cc5b2942cf296a5af532052.1689070412.git.quic_mathbern@quicinc.com>-ne
Reviewed-by: Brian Cain <bcain@quicinc.com>
Signed-off-by: Brian Cain <bcain@quicinc.com>
Message-Id: <20231008220945.983643-2-bcain@quicinc.com>
2023-10-09 00:09:43 +02:00
|
|
|
do { \
|
|
|
|
check_noshuf(env, pkt_has_store_s1, slot, EA, SIZE, GETPC()); \
|
|
|
|
DST = (size##SIZE##SIGN##_t)MEM_LOAD##SIZE(env, EA, GETPC()); \
|
|
|
|
} while (0)
|
2021-02-08 06:46:14 +01:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#define fMEMOP(NUM, SIZE, SIGN, EA, FNTYPE, VALUE)
|
|
|
|
|
2023-03-28 20:42:46 +02:00
|
|
|
#define fGET_FRAMEKEY() (env->gpr[HEX_REG_FRAMEKEY])
|
2021-02-08 06:46:14 +01:00
|
|
|
#define fFRAME_SCRAMBLE(VAL) ((VAL) ^ (fCAST8u(fGET_FRAMEKEY()) << 32))
|
|
|
|
#define fFRAME_UNSCRAMBLE(VAL) fFRAME_SCRAMBLE(VAL)
|
|
|
|
|
|
|
|
#ifdef CONFIG_USER_ONLY
|
|
|
|
#define fFRAMECHECK(ADDR, EA) do { } while (0) /* Not modelled in linux-user */
|
|
|
|
#else
|
|
|
|
/* System mode not implemented yet */
|
|
|
|
#define fFRAMECHECK(ADDR, EA) g_assert_not_reached();
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef QEMU_GENERATE
|
|
|
|
#define fLOAD_LOCKED(NUM, SIZE, SIGN, EA, DST) \
|
|
|
|
gen_load_locked##SIZE##SIGN(DST, EA, ctx->mem_idx);
|
|
|
|
#endif
|
|
|
|
|
2021-04-09 03:07:50 +02:00
|
|
|
#ifdef QEMU_GENERATE
|
|
|
|
#define fSTORE(NUM, SIZE, EA, SRC) MEM_STORE##SIZE(EA, SRC, insn->slot)
|
|
|
|
#else
|
2021-02-08 06:46:14 +01:00
|
|
|
#define fSTORE(NUM, SIZE, EA, SRC) MEM_STORE##SIZE(EA, SRC, slot)
|
2021-04-09 03:07:50 +02:00
|
|
|
#endif
|
2021-02-08 06:46:14 +01:00
|
|
|
|
|
|
|
#ifdef QEMU_GENERATE
|
|
|
|
#define fSTORE_LOCKED(NUM, SIZE, EA, SRC, PRED) \
|
2021-06-02 01:19:43 +02:00
|
|
|
gen_store_conditional##SIZE(ctx, PRED, EA, SRC);
|
2021-02-08 06:46:14 +01:00
|
|
|
#endif
|
|
|
|
|
2021-04-09 03:07:50 +02:00
|
|
|
#ifdef QEMU_GENERATE
|
|
|
|
#define GETBYTE_FUNC(X) \
|
|
|
|
__builtin_choose_expr(TYPE_TCGV(X), \
|
|
|
|
gen_get_byte, \
|
|
|
|
__builtin_choose_expr(TYPE_TCGV_I64(X), \
|
|
|
|
gen_get_byte_i64, (void)0))
|
|
|
|
#define fGETBYTE(N, SRC) GETBYTE_FUNC(SRC)(BYTE, N, SRC, true)
|
|
|
|
#define fGETUBYTE(N, SRC) GETBYTE_FUNC(SRC)(BYTE, N, SRC, false)
|
|
|
|
#else
|
2021-02-08 06:46:14 +01:00
|
|
|
#define fGETBYTE(N, SRC) ((int8_t)((SRC >> ((N) * 8)) & 0xff))
|
|
|
|
#define fGETUBYTE(N, SRC) ((uint8_t)((SRC >> ((N) * 8)) & 0xff))
|
2021-04-09 03:07:50 +02:00
|
|
|
#endif
|
2021-02-08 06:46:14 +01:00
|
|
|
|
|
|
|
#define fSETBYTE(N, DST, VAL) \
|
|
|
|
do { \
|
|
|
|
DST = (DST & ~(0x0ffLL << ((N) * 8))) | \
|
|
|
|
(((uint64_t)((VAL) & 0x0ffLL)) << ((N) * 8)); \
|
|
|
|
} while (0)
|
2021-04-09 03:07:50 +02:00
|
|
|
|
|
|
|
#ifdef QEMU_GENERATE
|
|
|
|
#define fGETHALF(N, SRC) gen_get_half(HALF, N, SRC, true)
|
|
|
|
#define fGETUHALF(N, SRC) gen_get_half(HALF, N, SRC, false)
|
|
|
|
#else
|
2021-02-08 06:46:14 +01:00
|
|
|
#define fGETHALF(N, SRC) ((int16_t)((SRC >> ((N) * 16)) & 0xffff))
|
|
|
|
#define fGETUHALF(N, SRC) ((uint16_t)((SRC >> ((N) * 16)) & 0xffff))
|
2021-04-09 03:07:50 +02:00
|
|
|
#endif
|
2021-02-08 06:46:14 +01:00
|
|
|
#define fSETHALF(N, DST, VAL) \
|
|
|
|
do { \
|
|
|
|
DST = (DST & ~(0x0ffffLL << ((N) * 16))) | \
|
|
|
|
(((uint64_t)((VAL) & 0x0ffff)) << ((N) * 16)); \
|
|
|
|
} while (0)
|
|
|
|
#define fSETHALFw fSETHALF
|
|
|
|
#define fSETHALFd fSETHALF
|
|
|
|
|
|
|
|
#define fGETWORD(N, SRC) \
|
|
|
|
((int64_t)((int32_t)((SRC >> ((N) * 32)) & 0x0ffffffffLL)))
|
|
|
|
#define fGETUWORD(N, SRC) \
|
|
|
|
((uint64_t)((uint32_t)((SRC >> ((N) * 32)) & 0x0ffffffffLL)))
|
|
|
|
|
|
|
|
#define fSETWORD(N, DST, VAL) \
|
|
|
|
do { \
|
|
|
|
DST = (DST & ~(0x0ffffffffLL << ((N) * 32))) | \
|
|
|
|
(((VAL) & 0x0ffffffffLL) << ((N) * 32)); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define fSETBIT(N, DST, VAL) \
|
|
|
|
do { \
|
|
|
|
DST = (DST & ~(1ULL << (N))) | (((uint64_t)(VAL)) << (N)); \
|
|
|
|
} while (0)
|
|
|
|
|
|
|
|
#define fGETBIT(N, SRC) (((SRC) >> N) & 1)
|
|
|
|
#define fSETBITS(HI, LO, DST, VAL) \
|
|
|
|
do { \
|
|
|
|
int j; \
|
|
|
|
for (j = LO; j <= HI; j++) { \
|
|
|
|
fSETBIT(j, DST, VAL); \
|
|
|
|
} \
|
|
|
|
} while (0)
|
2021-03-08 00:30:59 +01:00
|
|
|
#define fCOUNTONES_2(VAL) ctpop16(VAL)
|
2021-02-08 06:46:14 +01:00
|
|
|
#define fCOUNTONES_4(VAL) ctpop32(VAL)
|
|
|
|
#define fCOUNTONES_8(VAL) ctpop64(VAL)
|
|
|
|
#define fBREV_8(VAL) revbit64(VAL)
|
|
|
|
#define fBREV_4(VAL) revbit32(VAL)
|
|
|
|
#define fCL1_8(VAL) clo64(VAL)
|
|
|
|
#define fCL1_4(VAL) clo32(VAL)
|
2021-03-08 00:30:59 +01:00
|
|
|
#define fCL1_2(VAL) (clz32(~(uint16_t)(VAL) & 0xffff) - 16)
|
2021-02-08 06:46:14 +01:00
|
|
|
#define fINTERLEAVE(ODD, EVEN) interleave(ODD, EVEN)
|
|
|
|
#define fDEINTERLEAVE(MIXED) deinterleave(MIXED)
|
|
|
|
#define fHIDE(A) A
|
|
|
|
#define fCONSTLL(A) A##LL
|
|
|
|
#define fECHO(A) (A)
|
|
|
|
|
|
|
|
#define fTRAP(TRAPTYPE, IMM) helper_raise_exception(env, HEX_EXCP_TRAP0)
|
|
|
|
#define fPAUSE(IMM)
|
|
|
|
|
|
|
|
#define fALIGN_REG_FIELD_VALUE(FIELD, VAL) \
|
|
|
|
((VAL) << reg_field_info[FIELD].offset)
|
|
|
|
#define fGET_REG_FIELD_MASK(FIELD) \
|
|
|
|
(((1 << reg_field_info[FIELD].width) - 1) << reg_field_info[FIELD].offset)
|
|
|
|
#define fREAD_REG_FIELD(REG, FIELD) \
|
|
|
|
fEXTRACTU_BITS(env->gpr[HEX_REG_##REG], \
|
|
|
|
reg_field_info[FIELD].width, \
|
|
|
|
reg_field_info[FIELD].offset)
|
2023-04-10 18:09:41 +02:00
|
|
|
|
|
|
|
#ifdef QEMU_GENERATE
|
2023-04-28 01:00:12 +02:00
|
|
|
#define fDCZEROA(REG) \
|
|
|
|
do { \
|
|
|
|
ctx->dczero_addr = tcg_temp_new(); \
|
|
|
|
tcg_gen_mov_tl(ctx->dczero_addr, (REG)); \
|
|
|
|
} while (0)
|
2023-04-10 18:09:41 +02:00
|
|
|
#endif
|
2021-02-08 06:46:14 +01:00
|
|
|
|
|
|
|
#define fBRANCH_SPECULATE_STALL(DOTNEWVAL, JUMP_COND, SPEC_DIR, HINTBITNUM, \
|
|
|
|
STRBITNUM) /* Nothing */
|
|
|
|
|
|
|
|
|
|
|
|
#endif
|