[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v3 60/70] tcg/tci: Remove tci_write_reg
From: |
Richard Henderson |
Subject: |
[PATCH v3 60/70] tcg/tci: Remove tci_write_reg |
Date: |
Sun, 7 Feb 2021 18:37:42 -0800 |
Inline it into its one caller, tci_write_reg64.
Drop the asserts that are redundant with tcg_read_r.
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
tcg/tci.c | 13 ++-----------
1 file changed, 2 insertions(+), 11 deletions(-)
diff --git a/tcg/tci.c b/tcg/tci.c
index e7268b13e1..4f81cbb904 100644
--- a/tcg/tci.c
+++ b/tcg/tci.c
@@ -36,20 +36,11 @@
__thread uintptr_t tci_tb_ptr;
-static void
-tci_write_reg(tcg_target_ulong *regs, TCGReg index, tcg_target_ulong value)
-{
- tci_assert(index < TCG_TARGET_NB_REGS);
- tci_assert(index != TCG_AREG0);
- tci_assert(index != TCG_REG_CALL_STACK);
- regs[index] = value;
-}
-
static void tci_write_reg64(tcg_target_ulong *regs, uint32_t high_index,
uint32_t low_index, uint64_t value)
{
- tci_write_reg(regs, low_index, value);
- tci_write_reg(regs, high_index, value >> 32);
+ regs[low_index] = value;
+ regs[high_index] = value >> 32;
}
/* Create a 64 bit value from two 32 bit values. */
--
2.25.1
- [PATCH v3 50/70] tcg/tci: Split out tcg_out_op_rrcl, (continued)
- [PATCH v3 50/70] tcg/tci: Split out tcg_out_op_rrcl, Richard Henderson, 2021/02/07
- [PATCH v3 51/70] tcg/tci: Split out tcg_out_op_rrrrrr, Richard Henderson, 2021/02/07
- [PATCH v3 55/70] tcg/tci: Split out tcg_out_op_v, Richard Henderson, 2021/02/07
- [PATCH v3 52/70] tcg/tci: Split out tcg_out_op_rrrr, Richard Henderson, 2021/02/07
- [PATCH v3 53/70] tcg/tci: Split out tcg_out_op_rrrrcl, Richard Henderson, 2021/02/07
- [PATCH v3 54/70] tcg/tci: Split out tcg_out_op_{rrm,rrrm,rrrrm}, Richard Henderson, 2021/02/07
- [PATCH v3 56/70] tcg/tci: Split out tcg_out_op_np, Richard Henderson, 2021/02/07
- [PATCH v3 57/70] tcg/tci: Split out tcg_out_op_r[iI], Richard Henderson, 2021/02/07
- [PATCH v3 58/70] tcg/tci: Reserve r13 for a temporary, Richard Henderson, 2021/02/07
- [PATCH v3 59/70] tcg/tci: Emit setcond before brcond, Richard Henderson, 2021/02/07
- [PATCH v3 60/70] tcg/tci: Remove tci_write_reg,
Richard Henderson <=
- [PATCH v3 62/70] tcg/tci: Implement goto_ptr, Richard Henderson, 2021/02/07
- [PATCH v3 63/70] tcg/tci: Implement movcond, Richard Henderson, 2021/02/07
- [PATCH v3 61/70] tcg/tci: Change encoding to uint32_t units, Richard Henderson, 2021/02/07
- [PATCH v3 64/70] tcg/tci: Implement andc, orc, eqv, nand, nor, Richard Henderson, 2021/02/07
- [PATCH v3 66/70] tcg/tci: Implement clz, ctz, ctpop, Richard Henderson, 2021/02/07
- [PATCH v3 65/70] tcg/tci: Implement extract, sextract, Richard Henderson, 2021/02/07
- [PATCH v3 67/70] tcg/tci: Implement mulu2, muls2, Richard Henderson, 2021/02/07
- [PATCH v3 68/70] tcg/tci: Implement add2, sub2, Richard Henderson, 2021/02/07
- [PATCH v3 70/70] gitlab: Enable cross-i386 builds of TCI, Richard Henderson, 2021/02/07