Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for ZiCond(Conditional move) #2046

Open
wants to merge 4 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions rtl/ibex_alu.sv
Original file line number Diff line number Diff line change
Expand Up @@ -1312,6 +1312,19 @@ module ibex_alu #(
assign imd_val_we_o = '{default: '0};
end

////////////
// Zicond //
////////////
logic [31:0] zicond_result;
always_comb begin
zicond_result = 0;
unique case (operator_i)
ALU_CZERO_EQZ: zicond_result = (operand_b_i ==0 ) ? (0) : (operand_a_i);
ALU_CZERO_NEZ: zicond_result = (operand_b_i != 0) ? (0) : (operand_a_i);
default: zicond_result = 0;
endcase
end

////////////////
// Result mux //
////////////////
Expand Down Expand Up @@ -1389,6 +1402,9 @@ module ibex_alu #(
// Carry-less Multiply Operations (RV32B)
ALU_CLMUL, ALU_CLMULR,
ALU_CLMULH: result_o = clmul_result;
//ZiCond
ALU_CZERO_EQZ,
ALU_CZERO_NEZ: result_o = zicond_result;

default: ;
endcase
Expand Down
3 changes: 3 additions & 0 deletions rtl/ibex_decoder.sv
Original file line number Diff line number Diff line change
Expand Up @@ -551,6 +551,9 @@ module ibex_decoder #(
multdiv_signed_mode_o = 2'b00;
illegal_insn = (RV32M == RV32MNone) ? 1'b1 : 1'b0;
end
//zicond
{7'b000_0111, 3'b101},
{7'b000_0111, 3'b111}:illegal_insn = 1'b0;
default: begin
illegal_insn = 1'b1;
end
Expand Down
7 changes: 6 additions & 1 deletion rtl/ibex_pkg.sv
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,12 @@ package ibex_pkg;
ALU_CRC32_H,
ALU_CRC32C_H,
ALU_CRC32_W,
ALU_CRC32C_W
ALU_CRC32C_W,

//zicond(Conditional move)
ALU_CZERO_EQZ,
ALU_CZERO_NEZ

} alu_op_e;

typedef enum logic [1:0] {
Expand Down
4 changes: 4 additions & 0 deletions rtl/ibex_tracer.sv
Original file line number Diff line number Diff line change
Expand Up @@ -1062,6 +1062,10 @@ module ibex_tracer (
INSN_CRC32C_H: decode_r1_insn("crc32c.h");
INSN_CRC32C_W: decode_r1_insn("crc32c.w");

//ZiCond
INSN_CZERO_EQZ: decode_r_insn("czero.eqz");
INSN_CZERO_NEZ: decode_r_insn("czero.nez");

default: decode_mnemonic("INVALID");
endcase
end
Expand Down
4 changes: 4 additions & 0 deletions rtl/ibex_tracer_pkg.sv
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,10 @@ package ibex_tracer_pkg;
parameter logic [31:0] INSN_BINV = { 7'b0110100, 10'h?, 3'b001, 5'h?, {OPCODE_OP} };
parameter logic [31:0] INSN_BEXT = { 7'b0100100, 10'h?, 3'b101, 5'h?, {OPCODE_OP} };

//ZiCond
parameter logic [31:0] INSN_CZERO_EQZ = { 7'b0000111, 10'h?, 3'b101, 5'h?, {OPCODE_OP} };
parameter logic [31:0] INSN_CZERO_NEZ = { 7'b0000111, 10'h?, 3'b111, 5'h?, {OPCODE_OP} };

// ZBP
// grevi
// Only log2(XLEN) bits of the immediate are used. For RV32, this means only the bits in
Expand Down