2021-02-08 08:46:19 +03:00
|
|
|
/*
|
2023-03-07 05:58:19 +03:00
|
|
|
* Copyright(c) 2019-2023 Qualcomm Innovation Center, Inc. All Rights Reserved.
|
2021-02-08 08:46:19 +03: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_TRANSLATE_H
|
|
|
|
#define HEXAGON_TRANSLATE_H
|
|
|
|
|
|
|
|
#include "qemu/bitmap.h"
|
2022-02-07 11:27:56 +03:00
|
|
|
#include "qemu/log.h"
|
2021-02-08 08:46:19 +03:00
|
|
|
#include "cpu.h"
|
|
|
|
#include "exec/translator.h"
|
|
|
|
#include "tcg/tcg-op.h"
|
2022-11-08 19:28:56 +03:00
|
|
|
#include "insn.h"
|
2021-02-08 08:46:19 +03:00
|
|
|
#include "internal.h"
|
|
|
|
|
|
|
|
typedef struct DisasContext {
|
|
|
|
DisasContextBase base;
|
2022-11-08 19:28:56 +03:00
|
|
|
Packet *pkt;
|
|
|
|
Insn *insn;
|
2022-11-08 19:29:01 +03:00
|
|
|
uint32_t next_PC;
|
2021-02-08 08:46:19 +03:00
|
|
|
uint32_t mem_idx;
|
|
|
|
uint32_t num_packets;
|
|
|
|
uint32_t num_insns;
|
2021-09-30 22:29:00 +03:00
|
|
|
uint32_t num_hvx_insns;
|
2021-02-08 08:46:19 +03:00
|
|
|
int reg_log[REG_WRITES_MAX];
|
|
|
|
int reg_log_idx;
|
|
|
|
DECLARE_BITMAP(regs_written, TOTAL_PER_THREAD_REGS);
|
2023-03-07 05:58:19 +03:00
|
|
|
DECLARE_BITMAP(predicated_regs, TOTAL_PER_THREAD_REGS);
|
2021-02-08 08:46:19 +03:00
|
|
|
int preg_log[PRED_WRITES_MAX];
|
|
|
|
int preg_log_idx;
|
2021-04-09 04:07:34 +03:00
|
|
|
DECLARE_BITMAP(pregs_written, NUM_PREGS);
|
2021-02-08 08:46:19 +03:00
|
|
|
uint8_t store_width[STORES_MAX];
|
2021-04-09 04:07:35 +03:00
|
|
|
bool s1_store_processed;
|
2021-09-30 22:29:00 +03:00
|
|
|
int future_vregs_idx;
|
|
|
|
int future_vregs_num[VECTOR_TEMPS_MAX];
|
|
|
|
int tmp_vregs_idx;
|
|
|
|
int tmp_vregs_num[VECTOR_TEMPS_MAX];
|
|
|
|
int vreg_log[NUM_VREGS];
|
|
|
|
bool vreg_is_predicated[NUM_VREGS];
|
|
|
|
int vreg_log_idx;
|
|
|
|
DECLARE_BITMAP(vregs_updated_tmp, NUM_VREGS);
|
|
|
|
DECLARE_BITMAP(vregs_updated, NUM_VREGS);
|
|
|
|
DECLARE_BITMAP(vregs_select, NUM_VREGS);
|
2023-03-07 05:58:21 +03:00
|
|
|
DECLARE_BITMAP(predicated_future_vregs, NUM_VREGS);
|
|
|
|
DECLARE_BITMAP(predicated_tmp_vregs, NUM_VREGS);
|
2021-09-30 22:29:00 +03:00
|
|
|
int qreg_log[NUM_QREGS];
|
|
|
|
bool qreg_is_predicated[NUM_QREGS];
|
|
|
|
int qreg_log_idx;
|
|
|
|
bool pre_commit;
|
2022-11-08 19:29:05 +03:00
|
|
|
TCGCond branch_cond;
|
|
|
|
target_ulong branch_dest;
|
2022-11-10 20:49:35 +03:00
|
|
|
bool is_tight_loop;
|
2023-03-07 05:58:20 +03:00
|
|
|
bool need_pkt_has_store_s1;
|
2021-02-08 08:46:19 +03:00
|
|
|
} DisasContext;
|
|
|
|
|
2023-03-07 05:58:19 +03:00
|
|
|
static inline void ctx_log_pred_write(DisasContext *ctx, int pnum)
|
2021-02-08 08:46:19 +03:00
|
|
|
{
|
2023-03-07 05:58:19 +03:00
|
|
|
if (!test_bit(pnum, ctx->pregs_written)) {
|
|
|
|
ctx->preg_log[ctx->preg_log_idx] = pnum;
|
|
|
|
ctx->preg_log_idx++;
|
|
|
|
set_bit(pnum, ctx->pregs_written);
|
2021-02-08 08:46:19 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-07 05:58:19 +03:00
|
|
|
static inline void ctx_log_reg_write(DisasContext *ctx, int rnum,
|
|
|
|
bool is_predicated)
|
2021-02-08 08:46:19 +03:00
|
|
|
{
|
2023-03-07 05:58:19 +03:00
|
|
|
if (rnum == HEX_REG_P3_0_ALIASED) {
|
|
|
|
for (int i = 0; i < NUM_PREGS; i++) {
|
|
|
|
ctx_log_pred_write(ctx, i);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (!test_bit(rnum, ctx->regs_written)) {
|
|
|
|
ctx->reg_log[ctx->reg_log_idx] = rnum;
|
|
|
|
ctx->reg_log_idx++;
|
|
|
|
set_bit(rnum, ctx->regs_written);
|
|
|
|
}
|
|
|
|
if (is_predicated) {
|
|
|
|
set_bit(rnum, ctx->predicated_regs);
|
|
|
|
}
|
|
|
|
}
|
2021-02-08 08:46:19 +03:00
|
|
|
}
|
|
|
|
|
2023-03-07 05:58:19 +03:00
|
|
|
static inline void ctx_log_reg_write_pair(DisasContext *ctx, int rnum,
|
|
|
|
bool is_predicated)
|
2021-02-08 08:46:19 +03:00
|
|
|
{
|
2023-03-07 05:58:19 +03:00
|
|
|
ctx_log_reg_write(ctx, rnum, is_predicated);
|
|
|
|
ctx_log_reg_write(ctx, rnum + 1, is_predicated);
|
2021-02-08 08:46:19 +03:00
|
|
|
}
|
|
|
|
|
2021-09-30 22:29:00 +03:00
|
|
|
intptr_t ctx_future_vreg_off(DisasContext *ctx, int regnum,
|
|
|
|
int num, bool alloc_ok);
|
|
|
|
intptr_t ctx_tmp_vreg_off(DisasContext *ctx, int regnum,
|
|
|
|
int num, bool alloc_ok);
|
|
|
|
|
|
|
|
static inline void ctx_log_vreg_write(DisasContext *ctx,
|
|
|
|
int rnum, VRegWriteType type,
|
|
|
|
bool is_predicated)
|
|
|
|
{
|
|
|
|
if (type != EXT_TMP) {
|
|
|
|
ctx->vreg_log[ctx->vreg_log_idx] = rnum;
|
|
|
|
ctx->vreg_is_predicated[ctx->vreg_log_idx] = is_predicated;
|
|
|
|
ctx->vreg_log_idx++;
|
|
|
|
|
|
|
|
set_bit(rnum, ctx->vregs_updated);
|
2023-03-07 05:58:21 +03:00
|
|
|
if (is_predicated) {
|
|
|
|
set_bit(rnum, ctx->predicated_future_vregs);
|
|
|
|
}
|
2021-09-30 22:29:00 +03:00
|
|
|
}
|
|
|
|
if (type == EXT_NEW) {
|
|
|
|
set_bit(rnum, ctx->vregs_select);
|
|
|
|
}
|
|
|
|
if (type == EXT_TMP) {
|
|
|
|
set_bit(rnum, ctx->vregs_updated_tmp);
|
2023-03-07 05:58:21 +03:00
|
|
|
if (is_predicated) {
|
|
|
|
set_bit(rnum, ctx->predicated_tmp_vregs);
|
|
|
|
}
|
2021-09-30 22:29:00 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void ctx_log_vreg_write_pair(DisasContext *ctx,
|
|
|
|
int rnum, VRegWriteType type,
|
|
|
|
bool is_predicated)
|
|
|
|
{
|
|
|
|
ctx_log_vreg_write(ctx, rnum ^ 0, type, is_predicated);
|
|
|
|
ctx_log_vreg_write(ctx, rnum ^ 1, type, is_predicated);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void ctx_log_qreg_write(DisasContext *ctx,
|
|
|
|
int rnum, bool is_predicated)
|
|
|
|
{
|
|
|
|
ctx->qreg_log[ctx->qreg_log_idx] = rnum;
|
|
|
|
ctx->qreg_is_predicated[ctx->qreg_log_idx] = is_predicated;
|
|
|
|
ctx->qreg_log_idx++;
|
|
|
|
}
|
|
|
|
|
2021-02-08 08:46:19 +03:00
|
|
|
extern TCGv hex_gpr[TOTAL_PER_THREAD_REGS];
|
|
|
|
extern TCGv hex_pred[NUM_PREGS];
|
|
|
|
extern TCGv hex_this_PC;
|
|
|
|
extern TCGv hex_slot_cancelled;
|
|
|
|
extern TCGv hex_branch_taken;
|
|
|
|
extern TCGv hex_new_value[TOTAL_PER_THREAD_REGS];
|
|
|
|
extern TCGv hex_reg_written[TOTAL_PER_THREAD_REGS];
|
|
|
|
extern TCGv hex_new_pred_value[NUM_PREGS];
|
|
|
|
extern TCGv hex_pred_written;
|
|
|
|
extern TCGv hex_store_addr[STORES_MAX];
|
|
|
|
extern TCGv hex_store_width[STORES_MAX];
|
|
|
|
extern TCGv hex_store_val32[STORES_MAX];
|
|
|
|
extern TCGv_i64 hex_store_val64[STORES_MAX];
|
|
|
|
extern TCGv hex_dczero_addr;
|
|
|
|
extern TCGv hex_llsc_addr;
|
|
|
|
extern TCGv hex_llsc_val;
|
|
|
|
extern TCGv_i64 hex_llsc_val_i64;
|
2021-09-30 22:29:00 +03:00
|
|
|
extern TCGv hex_VRegs_updated;
|
|
|
|
extern TCGv hex_QRegs_updated;
|
|
|
|
extern TCGv hex_vstore_addr[VSTORES_MAX];
|
|
|
|
extern TCGv hex_vstore_size[VSTORES_MAX];
|
|
|
|
extern TCGv hex_vstore_pending[VSTORES_MAX];
|
2021-02-08 08:46:19 +03:00
|
|
|
|
2022-11-08 19:28:56 +03:00
|
|
|
bool is_gather_store_insn(DisasContext *ctx);
|
|
|
|
void process_store(DisasContext *ctx, int slot_num);
|
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 05:58:27 +03:00
|
|
|
|
|
|
|
FIELD(PROBE_PKT_SCALAR_STORE_S0, MMU_IDX, 0, 2)
|
|
|
|
FIELD(PROBE_PKT_SCALAR_STORE_S0, IS_PREDICATED, 2, 1)
|
|
|
|
|
|
|
|
FIELD(PROBE_PKT_SCALAR_HVX_STORES, HAS_ST0, 0, 1)
|
|
|
|
FIELD(PROBE_PKT_SCALAR_HVX_STORES, HAS_ST1, 1, 1)
|
|
|
|
FIELD(PROBE_PKT_SCALAR_HVX_STORES, HAS_HVX_STORES, 2, 1)
|
|
|
|
FIELD(PROBE_PKT_SCALAR_HVX_STORES, S0_IS_PRED, 3, 1)
|
|
|
|
FIELD(PROBE_PKT_SCALAR_HVX_STORES, S1_IS_PRED, 4, 1)
|
|
|
|
|
2021-02-08 08:46:19 +03:00
|
|
|
#endif
|