[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 4/8] Hexagon (target/hexagon) Add overrides for direct call in
From: |
Taylor Simpson |
Subject: |
[PATCH v2 4/8] Hexagon (target/hexagon) Add overrides for direct call instructions |
Date: |
Mon, 24 Oct 2022 16:51:13 -0700 |
Add overrides for
J2_call
J2_callt
J2_callf
Signed-off-by: Taylor Simpson <tsimpson@quicinc.com>
---
target/hexagon/gen_tcg.h | 8 ++++++
target/hexagon/genptr.c | 58 ++++++++++++++++++++++++++++++++++++++++
2 files changed, 66 insertions(+)
diff --git a/target/hexagon/gen_tcg.h b/target/hexagon/gen_tcg.h
index e6fc7d97d2..ad149adbe1 100644
--- a/target/hexagon/gen_tcg.h
+++ b/target/hexagon/gen_tcg.h
@@ -612,6 +612,14 @@
tcg_temp_free(tmp); \
} while (0)
+#define fGEN_TCG_J2_call(SHORTCODE) \
+ gen_call(ctx, pkt, riV)
+
+#define fGEN_TCG_J2_callt(SHORTCODE) \
+ gen_cond_call(ctx, pkt, PuV, true, riV)
+#define fGEN_TCG_J2_callf(SHORTCODE) \
+ gen_cond_call(ctx, pkt, PuV, false, riV)
+
#define fGEN_TCG_J2_pause(SHORTCODE) \
do { \
uiV = uiV; \
diff --git a/target/hexagon/genptr.c b/target/hexagon/genptr.c
index 806d0974ff..2784b84041 100644
--- a/target/hexagon/genptr.c
+++ b/target/hexagon/genptr.c
@@ -456,6 +456,64 @@ static TCGv gen_8bitsof(TCGv result, TCGv value)
return result;
}
+static void gen_write_new_pc_addr(DisasContext *ctx, Packet *pkt,
+ TCGv addr, TCGv pred)
+{
+ TCGLabel *pred_false = NULL;
+ if (pred != NULL) {
+ pred_false = gen_new_label();
+ tcg_gen_brcondi_tl(TCG_COND_EQ, pred, 0, pred_false);
+ }
+
+ if (pkt->pkt_has_multi_cof) {
+ /* If there are multiple branches in a packet, ignore the second one */
+ tcg_gen_movcond_tl(TCG_COND_NE, hex_gpr[HEX_REG_PC],
+ hex_branch_taken, tcg_constant_tl(0),
+ hex_gpr[HEX_REG_PC], addr);
+ tcg_gen_movi_tl(hex_branch_taken, 1);
+ } else {
+ tcg_gen_mov_tl(hex_gpr[HEX_REG_PC], addr);
+ }
+
+ if (pred != NULL) {
+ gen_set_label(pred_false);
+ }
+}
+
+static void gen_write_new_pc_pcrel(DisasContext *ctx, Packet *pkt,
+ int pc_off, TCGv pred)
+{
+ target_ulong dest = pkt->pc + pc_off;
+ gen_write_new_pc_addr(ctx, pkt, tcg_constant_tl(dest), pred);
+}
+
+static void gen_call(DisasContext *ctx, Packet *pkt, int pc_off)
+{
+ TCGv next_PC =
+ tcg_constant_tl(pkt->pc + pkt->encod_pkt_size_in_bytes);
+ gen_log_reg_write(HEX_REG_LR, next_PC);
+ gen_write_new_pc_pcrel(ctx, pkt, pc_off, NULL);
+}
+
+static void gen_cond_call(DisasContext *ctx, Packet *pkt,
+ TCGv pred, bool sense, int pc_off)
+{
+ TCGv next_PC;
+ TCGv lsb = tcg_temp_local_new();
+ TCGLabel *skip = gen_new_label();
+ tcg_gen_andi_tl(lsb, pred, 1);
+ if (!sense) {
+ tcg_gen_xori_tl(lsb, lsb, 1);
+ }
+ gen_write_new_pc_pcrel(ctx, pkt, pc_off, lsb);
+ tcg_gen_brcondi_tl(TCG_COND_EQ, lsb, 0, skip);
+ tcg_temp_free(lsb);
+ next_PC =
+ tcg_constant_tl(pkt->pc + pkt->encod_pkt_size_in_bytes);
+ gen_log_reg_write(HEX_REG_LR, next_PC);
+ gen_set_label(skip);
+}
+
static intptr_t vreg_src_off(DisasContext *ctx, int num)
{
intptr_t offset = offsetof(CPUHexagonState, VRegs[num]);
--
2.17.1
- [PATCH v2 0/8] Hexagon (target/hexagon) Improve change-of-flow, Taylor Simpson, 2022/10/24
- [PATCH v2 1/8] Hexagon (target/hexagon) Only use branch_taken when packet has multi cof, Taylor Simpson, 2022/10/24
- [PATCH v2 8/8] Hexagon (target/hexagon) Use direct block chaining for tight loops, Taylor Simpson, 2022/10/24
- [PATCH v2 5/8] Hexagon (target/hexagon) Add overrides for compound compare and jump, Taylor Simpson, 2022/10/24
- [PATCH v2 6/8] Hexagon (target/hexagon) Add overrides for various forms of jump, Taylor Simpson, 2022/10/24
- [PATCH v2 7/8] Hexagon (target/hexagon) Use direct block chaining for direct jump/branch, Taylor Simpson, 2022/10/24
- [PATCH v2 4/8] Hexagon (target/hexagon) Add overrides for direct call instructions,
Taylor Simpson <=
- [PATCH v2 2/8] Hexagon (target/hexagon) Remove PC from the runtime state, Taylor Simpson, 2022/10/24
- [PATCH v2 3/8] Hexagon (target/hexagon) Remove next_PC from runtime state, Taylor Simpson, 2022/10/24