[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Tinycc-devel] [PATCH 06/11] riscv64-asm: Add add, addi, sub, addw, addd
From: |
Danny Milosavljevic |
Subject: |
[Tinycc-devel] [PATCH 06/11] riscv64-asm: Add add, addi, sub, addw, addd, addiw, addid, subw, subd, xor, xori, or, ori, and, andi, slt, slti, sltu, sltiu |
Date: |
Wed, 7 Apr 2021 13:53:09 +0200 |
---
riscv64-asm.c | 98 +++++++++++++++++++++++++++++++++++++++++++++++++++
riscv64-tok.h | 26 ++++++++++++++
2 files changed, 124 insertions(+)
diff --git a/riscv64-asm.c b/riscv64-asm.c
index 0e7bc90..564b948 100644
--- a/riscv64-asm.c
+++ b/riscv64-asm.c
@@ -328,6 +328,83 @@ static void asm_shift_opcode(TCCState *s1, int token)
}
}
+static void asm_data_processing_opcode(TCCState* s1, int token)
+{
+ Operand ops[3];
+ parse_operand(s1, &ops[0]);
+ if (tok == ',')
+ next();
+ else
+ expect("','");
+ parse_operand(s1, &ops[1]);
+ if (tok == ',')
+ next();
+ else
+ expect("','");
+ parse_operand(s1, &ops[2]);
+
+ switch (token) {
+ // Arithmetic (RD,RS1,(RS2|IMM)); R-format, I-format or U-format
+
+ case TOK_ASM_add:
+ asm_emit_r(token, (0xC << 2) | 3, &ops[0], &ops[1], &ops[2]);
+ return;
+ case TOK_ASM_addi:
+ asm_emit_i(token, (4 << 2) | 3, &ops[0], &ops[1], &ops[2]);
+ return;
+ case TOK_ASM_sub:
+ asm_emit_r(token, (0xC << 2) | 3 | (32 << 25), &ops[0], &ops[1],
&ops[2]);
+ return;
+ case TOK_ASM_addw:
+ asm_emit_r(token, (0xE << 2) | 3 | (0 << 12), &ops[0], &ops[1],
&ops[2]);
+ return;
+ case TOK_ASM_addiw: // 64 bit
+ asm_emit_i(token, (0x6 << 2) | 3 | (0 << 12), &ops[0], &ops[1],
&ops[2]);
+ return;
+ case TOK_ASM_subw:
+ asm_emit_r(token, (0xE << 2) | 3 | (0 << 12) | (32 << 25), &ops[0],
&ops[1], &ops[2]);
+ return;
+
+ // Logical (RD,RS1,(RS2|IMM)); R-format or I-format
+
+ case TOK_ASM_xor:
+ asm_emit_r(token, (0xC << 2) | 3 | (4 << 12), &ops[0], &ops[1],
&ops[2]);
+ return;
+ case TOK_ASM_xori:
+ asm_emit_i(token, (0x4 << 2) | 3 | (4 << 12), &ops[0], &ops[1],
&ops[2]);
+ return;
+ case TOK_ASM_or:
+ asm_emit_r(token, (0xC << 2) | 3 | (6 << 12), &ops[0], &ops[1],
&ops[2]);
+ return;
+ case TOK_ASM_ori:
+ asm_emit_i(token, (0x4 << 2) | 3 | (6 << 12), &ops[0], &ops[1],
&ops[2]);
+ return;
+ case TOK_ASM_and:
+ asm_emit_r(token, (0xC << 2) | 3 | (7 << 12), &ops[0], &ops[1],
&ops[2]);
+ return;
+ case TOK_ASM_andi:
+ asm_emit_i(token, (0x4 << 2) | 3 | (7 << 12), &ops[0], &ops[1],
&ops[2]);
+ return;
+
+ // Compare (RD,RS1,(RS2|IMM)); R-format or I-format
+
+ case TOK_ASM_slt:
+ asm_emit_r(token, (0xC << 2) | 3 | (2 << 12), &ops[0], &ops[1],
&ops[2]);
+ return;
+ case TOK_ASM_slti:
+ asm_emit_i(token, (0x4 << 2) | 3 | (2 << 12), &ops[0], &ops[1],
&ops[2]);
+ return;
+ case TOK_ASM_sltu:
+ asm_emit_r(token, (0xC << 2) | 3 | (3 << 12), &ops[0], &ops[1],
&ops[2]);
+ return;
+ case TOK_ASM_sltiu:
+ asm_emit_i(token, (0x4 << 2) | 3 | (3 << 12), &ops[0], &ops[1],
&ops[2]);
+ return;
+ default:
+ expect("known data processing instruction");
+ }
+}
+
ST_FUNC void asm_opcode(TCCState *s1, int token)
{
switch (token) {
@@ -379,6 +456,27 @@ ST_FUNC void asm_opcode(TCCState *s1, int token)
asm_shift_opcode(s1, token);
return;
+ case TOK_ASM_add:
+ case TOK_ASM_addi:
+ case TOK_ASM_sub:
+ case TOK_ASM_addw:
+ case TOK_ASM_addd:
+ case TOK_ASM_addiw:
+ case TOK_ASM_addid:
+ case TOK_ASM_subw:
+ case TOK_ASM_subd:
+ case TOK_ASM_xor:
+ case TOK_ASM_xori:
+ case TOK_ASM_or:
+ case TOK_ASM_ori:
+ case TOK_ASM_and:
+ case TOK_ASM_andi:
+ case TOK_ASM_slt:
+ case TOK_ASM_slti:
+ case TOK_ASM_sltu:
+ case TOK_ASM_sltiu:
+ asm_data_processing_opcode(s1, token);
+
default:
expect("known instruction");
}
diff --git a/riscv64-tok.h b/riscv64-tok.h
index f36cf44..f7d7572 100644
--- a/riscv64-tok.h
+++ b/riscv64-tok.h
@@ -106,9 +106,35 @@
/* Arithmetic */
+ DEF_ASM(add)
+ DEF_ASM(addi)
+ DEF_ASM(sub)
DEF_ASM(lui)
DEF_ASM(auipc)
+ DEF_ASM(addw)
+ DEF_ASM(addd)
+ DEF_ASM(addiw)
+ DEF_ASM(addid)
+ DEF_ASM(subw)
+ DEF_ASM(subd)
+
+/* Logical */
+
+ DEF_ASM(xor)
+ DEF_ASM(xori)
+ DEF_ASM(or)
+ DEF_ASM(ori)
+ DEF_ASM(and)
+ DEF_ASM(andi)
+
+/* Compare */
+
+ DEF_ASM(slt)
+ DEF_ASM(slti)
+ DEF_ASM(sltu)
+ DEF_ASM(sltiu)
+
/* Sync */
DEF_ASM(fence)
--
2.29.2
- [Tinycc-devel] [PATCH 00/11] Add RISCV64 inline assembler, Danny Milosavljevic, 2021/04/07
- [Tinycc-devel] [PATCH 02/11] riscv64-asm: Add fence, fence.i, scall, sbreak, ecall, ebreak, wfi, Danny Milosavljevic, 2021/04/07
- [Tinycc-devel] [PATCH 06/11] riscv64-asm: Add add, addi, sub, addw, addd, addiw, addid, subw, subd, xor, xori, or, ori, and, andi, slt, slti, sltu, sltiu,
Danny Milosavljevic <=
- [Tinycc-devel] [PATCH 05/11] riscv64-asm: Add sll, slli, srl, srli, sra, srai, sllw, slld, slliw, sllid, srlw, srld, srliw, srlid, sraw, srad, sraiw, sraid, Danny Milosavljevic, 2021/04/07
- [Tinycc-devel] [PATCH 07/11] riscv64-asm: Add lb, lh, lw, lbu, lhu, ld, lwu, sb, sh, sw, sd, Danny Milosavljevic, 2021/04/07
- [Tinycc-devel] [PATCH 10/11] riscv64-asm: Optimize gen_le32, Danny Milosavljevic, 2021/04/07
- [Tinycc-devel] [PATCH 01/11] riscv64-asm: Remove asm_error, Danny Milosavljevic, 2021/04/07
- [Tinycc-devel] [PATCH 03/11] riscv64-asm: Add rdcycle, rdcycleh, rdtime, rdtimeh, rdinstret, rdinstreth, Danny Milosavljevic, 2021/04/07
- [Tinycc-devel] [PATCH 08/11] riscv64-asm: Add beq, bne, blt, bge, bltu, bgeu, Danny Milosavljevic, 2021/04/07
- [Tinycc-devel] [PATCH 11/11] riscv64-asm: Implement asm_clobber., Danny Milosavljevic, 2021/04/07
- [Tinycc-devel] [PATCH 09/11] riscv64-asm: Implement asm_parse_regvar, Danny Milosavljevic, 2021/04/07
- Prev by Date:
[Tinycc-devel] [PATCH 02/11] riscv64-asm: Add fence, fence.i, scall, sbreak, ecall, ebreak, wfi
- Next by Date:
[Tinycc-devel] [PATCH 05/11] riscv64-asm: Add sll, slli, srl, srli, sra, srai, sllw, slld, slliw, sllid, srlw, srld, srliw, srlid, sraw, srad, sraiw, sraid
- Previous by thread:
[Tinycc-devel] [PATCH 02/11] riscv64-asm: Add fence, fence.i, scall, sbreak, ecall, ebreak, wfi
- Next by thread:
[Tinycc-devel] [PATCH 05/11] riscv64-asm: Add sll, slli, srl, srli, sra, srai, sllw, slld, slliw, sllid, srlw, srld, srliw, srlid, sraw, srad, sraiw, sraid
- Index(es):