Skip to content

Commit

Permalink
Remove insn_len field in IR structure
Browse files Browse the repository at this point in the history
  • Loading branch information
qwe661234 committed Oct 11, 2023
1 parent b7fadcb commit 0d25ef9
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 7 deletions.
2 changes: 0 additions & 2 deletions src/decode.c
Original file line number Diff line number Diff line change
Expand Up @@ -1729,7 +1729,6 @@ bool rv_decode(rv_insn_t *ir, uint32_t insn)
if ((insn & FC_OPCODE) != 3) {
insn &= 0x0000FFFF;
const uint16_t c_index = (insn & FC_FUNC3) >> 11 | (insn & FC_OPCODE);
ir->insn_len = INSN_16;

/* decode instruction (compressed instructions) */
const decode_t op = rvc_jump_table[c_index];
Expand All @@ -1740,7 +1739,6 @@ bool rv_decode(rv_insn_t *ir, uint32_t insn)

/* standard uncompressed instruction */
const uint32_t index = (insn & INSN_6_2) >> 2;
ir->insn_len = INSN_32;

/* decode instruction */
const decode_t op = rv_jump_table[index];
Expand Down
3 changes: 0 additions & 3 deletions src/decode.h
Original file line number Diff line number Diff line change
Expand Up @@ -275,9 +275,6 @@ typedef struct rv_insn {

uint32_t pc;

/* instruction length */
uint8_t insn_len;

/* Tail-call optimization (TCO) allows a C function to replace a function
* call to another function or itself, followed by a simple return of the
* function's result, with a direct jump to the target function. This
Expand Down
4 changes: 2 additions & 2 deletions src/emulate.c
Original file line number Diff line number Diff line change
Expand Up @@ -628,14 +628,14 @@ static void block_translate(riscv_t *rv, block_map_t *map, block_t *block)

/* decode the instruction */
if (!rv_decode(ir, insn)) {
rv->compressed = (ir->insn_len == INSN_16);
rv->compressed = ((insn & FC_OPCODE) != 3);
rv_except_illegal_insn(rv, insn);
break;
}
ir->impl = dispatch_table[ir->opcode];
ir->pc = block->pc_end;
/* compute the end of pc */
block->pc_end += ir->insn_len;
block->pc_end += ((insn & FC_OPCODE) != 3) ? 2 : 4;
block->n_insn++;
prev_ir = ir;
/* stop on branch */
Expand Down

0 comments on commit 0d25ef9

Please sign in to comment.