[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 05/10] tcg/loongarch64: Update tcg-insn-defs.c.inc
From: |
Richard Henderson |
Subject: |
[PATCH v2 05/10] tcg/loongarch64: Update tcg-insn-defs.c.inc |
Date: |
Tue, 17 Jan 2023 15:11:18 -1000 |
Regenerate with ADDU16I included:
$ cd loongarch-opcodes/scripts/go
$ go run ./genqemutcgdefs > $QEMU/tcg/loongarch64/tcg-insn-defs.c.inc
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
tcg/loongarch64/tcg-insn-defs.c.inc | 10 +++++++++-
1 file changed, 9 insertions(+), 1 deletion(-)
mode change 100644 => 100755 tcg/loongarch64/tcg-insn-defs.c.inc
diff --git a/tcg/loongarch64/tcg-insn-defs.c.inc
b/tcg/loongarch64/tcg-insn-defs.c.inc
old mode 100644
new mode 100755
index d162571856..b5bb0c5e73
--- a/tcg/loongarch64/tcg-insn-defs.c.inc
+++ b/tcg/loongarch64/tcg-insn-defs.c.inc
@@ -4,7 +4,7 @@
*
* This file is auto-generated by genqemutcgdefs from
* https://github.com/loongson-community/loongarch-opcodes,
- * from commit 961f0c60f5b63e574d785995600c71ad5413fdc4.
+ * from commit 25ca7effe9d88101c1cf96c4005423643386d81f.
* DO NOT EDIT.
*/
@@ -74,6 +74,7 @@ typedef enum {
OPC_ANDI = 0x03400000,
OPC_ORI = 0x03800000,
OPC_XORI = 0x03c00000,
+ OPC_ADDU16I_D = 0x10000000,
OPC_LU12I_W = 0x14000000,
OPC_CU32I_D = 0x16000000,
OPC_PCADDU2I = 0x18000000,
@@ -710,6 +711,13 @@ tcg_out_opc_xori(TCGContext *s, TCGReg d, TCGReg j,
uint32_t uk12)
tcg_out32(s, encode_djuk12_insn(OPC_XORI, d, j, uk12));
}
+/* Emits the `addu16i.d d, j, sk16` instruction. */
+static void __attribute__((unused))
+tcg_out_opc_addu16i_d(TCGContext *s, TCGReg d, TCGReg j, int32_t sk16)
+{
+ tcg_out32(s, encode_djsk16_insn(OPC_ADDU16I_D, d, j, sk16));
+}
+
/* Emits the `lu12i.w d, sj20` instruction. */
static void __attribute__((unused))
tcg_out_opc_lu12i_w(TCGContext *s, TCGReg d, int32_t sj20)
--
2.34.1
- [PATCH v2 00/10] tcg/loongarch64: Reorg goto_tb and cleanups, Richard Henderson, 2023/01/17
- [PATCH v2 01/10] target/loongarch: Enable the disassembler for host tcg, Richard Henderson, 2023/01/17
- [PATCH v2 02/10] target/loongarch: Disassemble jirl properly, Richard Henderson, 2023/01/17
- [PATCH v2 03/10] target/loongarch: Disassemble pcadd* addresses, Richard Henderson, 2023/01/17
- [PATCH v2 04/10] tcg/loongarch64: Optimize immediate loading, Richard Henderson, 2023/01/17
- [PATCH v2 05/10] tcg/loongarch64: Update tcg-insn-defs.c.inc,
Richard Henderson <=
- [PATCH v2 06/10] tcg/loongarch64: Introduce tcg_out_addi, Richard Henderson, 2023/01/17
- [PATCH v2 07/10] tcg/loongarch64: Improve setcond expansion, Richard Henderson, 2023/01/17
- [PATCH v2 08/10] tcg/loongarch64: Implement movcond, Richard Henderson, 2023/01/17
- [PATCH v2 09/10] tcg/loongarch64: Use tcg_pcrel_diff in tcg_out_ldst, Richard Henderson, 2023/01/17