2020-06-02 19:08:38 +08:00
|
|
|
/*!
|
|
|
|
\file BASE_ISA.h
|
|
|
|
\brief RISC-V ISA implementation
|
|
|
|
\author Màrius Montón
|
|
|
|
\date August 2018
|
|
|
|
*/
|
|
|
|
// SPDX-License-Identifier: GPL-3.0-or-later
|
|
|
|
|
|
|
|
#ifndef Execute_H
|
|
|
|
#define Execute_H
|
|
|
|
|
|
|
|
#define SC_INCLUDE_DYNAMIC_PROCESSES
|
2022-07-08 18:02:30 +08:00
|
|
|
#include <type_traits>
|
2022-07-22 19:28:36 +08:00
|
|
|
#include <limits>
|
2020-06-02 19:08:38 +08:00
|
|
|
#include "systemc"
|
|
|
|
|
2022-09-19 20:43:44 +08:00
|
|
|
#include "BASE_ISA.h"
|
|
|
|
#include "extension_base.h"
|
2020-06-02 19:08:38 +08:00
|
|
|
|
2021-11-30 03:35:26 +08:00
|
|
|
namespace riscv_tlm {
|
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
OP_LUI,
|
|
|
|
OP_AUIPC,
|
|
|
|
OP_JAL,
|
|
|
|
OP_JALR,
|
|
|
|
|
|
|
|
OP_BEQ,
|
|
|
|
OP_BNE,
|
|
|
|
OP_BLT,
|
|
|
|
OP_BGE,
|
|
|
|
OP_BLTU,
|
|
|
|
OP_BGEU,
|
|
|
|
|
|
|
|
OP_LB,
|
|
|
|
OP_LH,
|
|
|
|
OP_LW,
|
|
|
|
OP_LBU,
|
|
|
|
OP_LHU,
|
|
|
|
|
|
|
|
OP_SB,
|
|
|
|
OP_SH,
|
|
|
|
OP_SW,
|
|
|
|
|
|
|
|
OP_ADDI,
|
|
|
|
OP_SLTI,
|
|
|
|
OP_SLTIU,
|
|
|
|
OP_XORI,
|
|
|
|
OP_ORI,
|
|
|
|
OP_ANDI,
|
|
|
|
OP_SLLI,
|
|
|
|
OP_SRLI,
|
|
|
|
OP_SRAI,
|
|
|
|
|
|
|
|
OP_ADD,
|
|
|
|
OP_SUB,
|
|
|
|
OP_SLL,
|
|
|
|
OP_SLT,
|
|
|
|
OP_SLTU,
|
|
|
|
OP_XOR,
|
|
|
|
OP_SRL,
|
|
|
|
OP_SRA,
|
|
|
|
OP_OR,
|
|
|
|
OP_AND,
|
|
|
|
|
|
|
|
OP_FENCE,
|
|
|
|
OP_ECALL,
|
|
|
|
OP_EBREAK,
|
|
|
|
|
|
|
|
OP_CSRRW,
|
|
|
|
OP_CSRRS,
|
|
|
|
OP_CSRRC,
|
|
|
|
OP_CSRRWI,
|
|
|
|
OP_CSRRSI,
|
|
|
|
OP_CSRRCI,
|
|
|
|
|
|
|
|
OP_URET,
|
|
|
|
OP_SRET,
|
|
|
|
OP_MRET,
|
|
|
|
OP_WFI,
|
|
|
|
OP_SFENCE,
|
|
|
|
|
2022-09-15 18:48:22 +08:00
|
|
|
/* RV64 */
|
|
|
|
OP_LWU,
|
|
|
|
OP_LD,
|
|
|
|
OP_SD,
|
|
|
|
OP_ADDIW,
|
|
|
|
OP_SLLIW,
|
|
|
|
OP_SRLIW,
|
|
|
|
OP_SRAIW,
|
|
|
|
OP_ADDW,
|
|
|
|
OP_SUBW,
|
|
|
|
OP_SLLW,
|
|
|
|
OP_SRLW,
|
|
|
|
OP_SRAW,
|
|
|
|
|
2021-11-30 03:35:26 +08:00
|
|
|
OP_ERROR
|
|
|
|
} opCodes;
|
2020-06-02 19:08:38 +08:00
|
|
|
|
2022-02-20 18:23:58 +08:00
|
|
|
enum Codes {
|
|
|
|
LUI = 0b0110111,
|
|
|
|
AUIPC = 0b0010111,
|
|
|
|
JAL = 0b1101111,
|
|
|
|
JALR = 0b1100111,
|
|
|
|
|
|
|
|
BEQ = 0b1100011,
|
|
|
|
BEQ_F = 0b000,
|
|
|
|
BNE_F = 0b001,
|
|
|
|
BLT_F = 0b100,
|
|
|
|
BGE_F = 0b101,
|
|
|
|
BLTU_F = 0b110,
|
|
|
|
BGEU_F = 0b111,
|
|
|
|
|
|
|
|
LB = 0b0000011,
|
|
|
|
LB_F = 0b000,
|
|
|
|
LH_F = 0b001,
|
|
|
|
LW_F = 0b010,
|
|
|
|
LBU_F = 0b100,
|
|
|
|
LHU_F = 0b101,
|
2022-09-15 18:48:22 +08:00
|
|
|
LWU_F = 0b110,
|
|
|
|
LD_F = 0b011,
|
2022-02-20 18:23:58 +08:00
|
|
|
|
|
|
|
SB = 0b0100011,
|
|
|
|
SB_F = 0b000,
|
|
|
|
SH_F = 0b001,
|
|
|
|
SW_F = 0b010,
|
2022-09-15 18:48:22 +08:00
|
|
|
SD_F = 0b011,
|
2022-02-20 18:23:58 +08:00
|
|
|
|
|
|
|
ADDI = 0b0010011,
|
|
|
|
ADDI_F = 0b000,
|
|
|
|
SLTI_F = 0b010,
|
|
|
|
SLTIU_F = 0b011,
|
|
|
|
XORI_F = 0b100,
|
|
|
|
ORI_F = 0b110,
|
|
|
|
ANDI_F = 0b111,
|
|
|
|
SLLI_F = 0b001,
|
|
|
|
SRLI_F = 0b101,
|
2022-09-15 18:48:22 +08:00
|
|
|
SRLI_F7 = 0b000000,
|
|
|
|
SRAI_F7 = 0b010000,
|
2022-02-20 18:23:58 +08:00
|
|
|
|
|
|
|
ADD = 0b0110011,
|
|
|
|
ADD_F = 0b000,
|
|
|
|
SUB_F = 0b000,
|
|
|
|
ADD_F7 = 0b0000000,
|
|
|
|
SUB_F7 = 0b0100000,
|
|
|
|
|
|
|
|
SLL_F = 0b001,
|
|
|
|
SLT_F = 0b010,
|
|
|
|
SLTU_F = 0b011,
|
|
|
|
XOR_F = 0b100,
|
|
|
|
SRL_F = 0b101,
|
|
|
|
SRA_F = 0b101,
|
|
|
|
SRL_F7 = 0b0000000,
|
|
|
|
SRA_F7 = 0b0100000,
|
|
|
|
OR_F = 0b110,
|
|
|
|
AND_F = 0b111,
|
|
|
|
|
|
|
|
FENCE = 0b0001111,
|
|
|
|
ECALL = 0b1110011,
|
|
|
|
ECALL_F = 0b000000000000,
|
|
|
|
EBREAK_F = 0b000000000001,
|
|
|
|
URET_F = 0b000000000010,
|
|
|
|
SRET_F = 0b000100000010,
|
|
|
|
MRET_F = 0b001100000010,
|
|
|
|
WFI_F = 0b000100000101,
|
|
|
|
SFENCE_F = 0b0001001,
|
|
|
|
|
|
|
|
ECALL_F3 = 0b000,
|
|
|
|
CSRRW = 0b001,
|
|
|
|
CSRRS = 0b010,
|
|
|
|
CSRRC = 0b011,
|
|
|
|
CSRRWI = 0b101,
|
|
|
|
CSRRSI = 0b110,
|
|
|
|
CSRRCI = 0b111,
|
2022-09-15 18:48:22 +08:00
|
|
|
|
|
|
|
ADDIW = 0b0011011,
|
|
|
|
ADDIW_F = 0b000,
|
|
|
|
SLLIW_F = 0b001,
|
|
|
|
SRLIW_F = 0b101,
|
|
|
|
SRLIW_F7 = 0b000000,
|
|
|
|
SRAIW_F7 = 0b010000,
|
|
|
|
ADDW = 0b0111011,
|
|
|
|
ADDW_F = 0b000,
|
|
|
|
ADDW_F7 = 0b000000,
|
|
|
|
SUBW_F7 = 0b010000,
|
|
|
|
SLLW = 0b001,
|
|
|
|
SRLW = 0b101,
|
|
|
|
SRLW_F7 = 0b000000,
|
|
|
|
SRAW_F7 = 0b010000,
|
2022-02-20 18:23:58 +08:00
|
|
|
};
|
|
|
|
|
2020-06-02 19:08:38 +08:00
|
|
|
/**
|
|
|
|
* @brief Risc_V execute module
|
|
|
|
*/
|
2022-02-20 18:23:58 +08:00
|
|
|
template<typename T>
|
|
|
|
class BASE_ISA : public extension_base<T> {
|
2021-11-30 03:35:26 +08:00
|
|
|
public:
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Constructor, same as base class
|
|
|
|
*/
|
2022-02-20 18:23:58 +08:00
|
|
|
using extension_base<T>::extension_base;
|
2021-11-30 03:35:26 +08:00
|
|
|
|
2022-07-08 18:02:30 +08:00
|
|
|
/**
|
|
|
|
* @brief Deduce signed type for T type
|
|
|
|
*/
|
|
|
|
using signed_T = typename std::make_signed<T>::type;
|
|
|
|
|
2022-07-22 19:28:36 +08:00
|
|
|
/**
|
|
|
|
* @brief Deduce unsigned type for T type
|
|
|
|
*/
|
|
|
|
using unsigned_T = typename std::make_unsigned<T>::type;
|
2022-07-08 18:02:30 +08:00
|
|
|
|
2021-11-30 03:35:26 +08:00
|
|
|
/**
|
|
|
|
* @brief Access to funct7 field
|
|
|
|
* @return funct7 field
|
|
|
|
*/
|
2022-09-15 18:48:22 +08:00
|
|
|
inline std::uint32_t get_funct7() const {
|
2022-02-20 18:23:58 +08:00
|
|
|
return this->m_instr.range(31, 25);
|
2021-11-30 03:35:26 +08:00
|
|
|
}
|
|
|
|
|
2022-09-15 18:48:22 +08:00
|
|
|
/**
|
|
|
|
* @brief Access to funct7 field in case of RV64 SLLL, SRLI, SRAI is different
|
|
|
|
* @return funct7 field
|
|
|
|
*/
|
|
|
|
std::uint32_t get_funct7b() const;
|
|
|
|
|
2021-11-30 03:35:26 +08:00
|
|
|
/**
|
|
|
|
* @brief Gets immediate field value for I-type
|
|
|
|
* @return immediate_I field
|
2022-07-22 19:28:36 +08:00
|
|
|
* @note Specialized
|
2021-11-30 03:35:26 +08:00
|
|
|
*/
|
2022-07-22 19:28:36 +08:00
|
|
|
signed_T get_imm_I() const;
|
2021-11-30 03:35:26 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Gets immediate field value for S-type
|
|
|
|
* @return immediate_S field
|
2022-07-22 19:28:36 +08:00
|
|
|
* @note Specialized
|
2021-11-30 03:35:26 +08:00
|
|
|
*/
|
2022-07-22 19:28:36 +08:00
|
|
|
signed_T get_imm_S() const;
|
2021-11-30 03:35:26 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Gets immediate field value for U-type
|
|
|
|
* @return immediate_U field
|
|
|
|
*/
|
2022-07-22 19:28:36 +08:00
|
|
|
inline unsigned_T get_imm_U() const {
|
|
|
|
return this->m_instr.range(31, 12);
|
2021-11-30 03:35:26 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Gets immediate field value for B-type
|
|
|
|
* @return immediate_B field
|
2022-07-22 19:28:36 +08:00
|
|
|
* @note Specialized
|
2021-11-30 03:35:26 +08:00
|
|
|
*/
|
2022-07-22 19:28:36 +08:00
|
|
|
signed_T get_imm_B() const;
|
2021-11-30 03:35:26 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Gets immediate field value for J-type
|
|
|
|
* @return immediate_J field
|
2022-07-22 19:28:36 +08:00
|
|
|
* @note Specialized
|
2021-11-30 03:35:26 +08:00
|
|
|
*/
|
2022-07-22 19:28:36 +08:00
|
|
|
signed_T get_imm_J() const;
|
2021-11-30 03:35:26 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Returns shamt field for Shifts instructions
|
|
|
|
* @return value corresponding to inst(25:20)
|
|
|
|
*/
|
2022-07-22 19:28:36 +08:00
|
|
|
inline unsigned_T get_shamt() const {
|
|
|
|
return this->m_instr.range(25, 20);
|
2021-11-30 03:35:26 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Returns CSR field for CSR instructions
|
|
|
|
* @return value corresponding to instr(31:20)
|
|
|
|
*/
|
2022-07-22 19:28:36 +08:00
|
|
|
inline unsigned_T get_csr() const {
|
|
|
|
return this->m_instr.range(31, 20);
|
2021-11-30 03:35:26 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Access to opcode field
|
|
|
|
* @return return opcode field
|
|
|
|
*/
|
2022-07-22 19:28:36 +08:00
|
|
|
inline unsigned_T opcode() const override {
|
|
|
|
return this->m_instr.range(6, 0);
|
2022-02-20 18:23:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
bool Exec_LUI() const {
|
|
|
|
unsigned int rd;
|
2022-07-22 19:28:36 +08:00
|
|
|
unsigned_T imm;
|
2022-02-20 18:23:58 +08:00
|
|
|
|
|
|
|
rd = this->get_rd();
|
2022-09-15 18:48:22 +08:00
|
|
|
imm = static_cast<std::int32_t>(get_imm_U() << 12);
|
2022-07-22 19:28:36 +08:00
|
|
|
this->regs->setValue(rd, imm);
|
2022-02-20 18:23:58 +08:00
|
|
|
|
|
|
|
this->logger->debug("{} ns. PC: 0x{:x}. LUI: x{:d} <- 0x{:x}", sc_core::sc_time_stamp().value(),
|
|
|
|
this->regs->getPC(),
|
|
|
|
rd, imm);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Exec_AUIPC() const {
|
|
|
|
unsigned int rd;
|
2022-07-22 19:28:36 +08:00
|
|
|
unsigned_T imm;
|
|
|
|
unsigned_T new_pc;
|
2022-02-20 18:23:58 +08:00
|
|
|
|
|
|
|
rd = this->get_rd();
|
2022-09-15 18:48:22 +08:00
|
|
|
imm = static_cast<std::int32_t>(get_imm_U() << 12);
|
2022-07-22 19:28:36 +08:00
|
|
|
new_pc = this->regs->getPC() + imm;
|
2022-02-20 18:23:58 +08:00
|
|
|
|
|
|
|
this->regs->setValue(rd, new_pc);
|
|
|
|
|
|
|
|
this->logger->debug("{} ns. PC: 0x{:x}. AUIPC: x{:d} <- 0x{:x} + PC (0x{:x})",
|
|
|
|
sc_core::sc_time_stamp().value(),
|
|
|
|
this->regs->getPC(),
|
|
|
|
rd, imm, new_pc);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Exec_JAL() const {
|
|
|
|
unsigned int rd;
|
2022-09-15 18:48:22 +08:00
|
|
|
signed_T mem_addr;
|
2022-07-22 19:28:36 +08:00
|
|
|
unsigned_T new_pc, old_pc;
|
2022-02-20 18:23:58 +08:00
|
|
|
|
|
|
|
rd = this->get_rd();
|
|
|
|
mem_addr = get_imm_J();
|
|
|
|
old_pc = this->regs->getPC();
|
|
|
|
new_pc = old_pc + mem_addr;
|
|
|
|
|
|
|
|
this->regs->setPC(new_pc);
|
|
|
|
|
|
|
|
old_pc = old_pc + 4;
|
|
|
|
this->regs->setValue(rd, old_pc);
|
|
|
|
|
|
|
|
this->logger->debug("{} ns. PC: 0x{:x}. JAL: x{:d} <- 0x{:x}. PC + 0x{:x} -> PC (0x{:x})",
|
2022-09-15 18:48:22 +08:00
|
|
|
sc_core::sc_time_stamp().value(), old_pc - 4,
|
2022-02-20 18:23:58 +08:00
|
|
|
rd, old_pc, mem_addr, new_pc);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Exec_JALR() {
|
2022-09-15 18:48:22 +08:00
|
|
|
signed_T offset;
|
2022-02-20 18:23:58 +08:00
|
|
|
unsigned int rd, rs1;
|
2022-07-22 19:28:36 +08:00
|
|
|
unsigned_T new_pc, old_pc;
|
2022-02-20 18:23:58 +08:00
|
|
|
|
|
|
|
rd = this->get_rd();
|
|
|
|
rs1 = this->get_rs1();
|
2022-09-15 18:48:22 +08:00
|
|
|
offset = get_imm_I();
|
2022-02-20 18:23:58 +08:00
|
|
|
old_pc = this->regs->getPC();
|
|
|
|
|
2022-09-15 18:48:22 +08:00
|
|
|
new_pc = static_cast<unsigned_T>((this->regs->getValue(rs1) + offset) & ~1);
|
|
|
|
this->regs->setValue(rd, old_pc + 4);
|
2022-02-20 18:23:58 +08:00
|
|
|
|
|
|
|
if ((new_pc & 0x00000003) != 0) {
|
|
|
|
// not aligned
|
2022-09-15 18:48:22 +08:00
|
|
|
this->logger->debug("{} ns. PC: 0x{:x}. JALR: x{:d} <- 0x{:x} PC <- 0x{:x} (0x{:x})",
|
2022-02-20 18:23:58 +08:00
|
|
|
sc_core::sc_time_stamp().value(),
|
2022-09-15 18:48:22 +08:00
|
|
|
old_pc,
|
|
|
|
rd, old_pc + 4, new_pc, offset);
|
|
|
|
this->logger->debug("{} ns. PC: 0x{:x}. JALR : Exception",
|
|
|
|
sc_core::sc_time_stamp().value(), old_pc);
|
2022-02-20 18:23:58 +08:00
|
|
|
this->RaiseException(EXCEPTION_CAUSE_LOAD_ADDR_MISALIGN, this->m_instr);
|
|
|
|
} else {
|
|
|
|
this->regs->setPC(new_pc);
|
2022-09-15 18:48:22 +08:00
|
|
|
this->logger->debug("{} ns. PC: 0x{:x}. JALR: x{:d} <- 0x{:x}. PC <- 0x{:x}",
|
|
|
|
sc_core::sc_time_stamp().value(),
|
|
|
|
old_pc, rd, old_pc + 4, new_pc);
|
2022-02-20 18:23:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Exec_BEQ() const {
|
|
|
|
unsigned int rs1, rs2;
|
2022-07-22 19:28:36 +08:00
|
|
|
unsigned_T val1, val2;
|
2022-02-20 18:23:58 +08:00
|
|
|
|
|
|
|
rs1 = this->get_rs1();
|
|
|
|
rs2 = this->get_rs2();
|
|
|
|
|
2022-07-22 19:28:36 +08:00
|
|
|
val1 = this->regs->getValue(rs1);
|
|
|
|
val2 = this->regs->getValue(rs2);
|
|
|
|
|
|
|
|
if (val1 == val2) {
|
|
|
|
unsigned_T new_pc;
|
|
|
|
new_pc = static_cast<unsigned_T>(this->regs->getPC() + get_imm_B());
|
2022-02-20 18:23:58 +08:00
|
|
|
this->regs->setPC(new_pc);
|
|
|
|
} else {
|
|
|
|
this->regs->incPC();
|
|
|
|
}
|
|
|
|
|
|
|
|
this->logger->debug("{} ns. PC: 0x{:x}. BEQ: x{:d}(0x{:x}) == x{:d}(0x{:x})? -> PC (0x{:x})",
|
|
|
|
sc_core::sc_time_stamp().value(), this->regs->getPC(),
|
2022-07-22 19:28:36 +08:00
|
|
|
rs1, this->regs->getValue(rs1), rs2, this->regs->getValue(rs2), this->regs->getPC());
|
2022-02-20 18:23:58 +08:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Exec_BNE() const {
|
|
|
|
unsigned int rs1, rs2;
|
2022-09-15 18:48:22 +08:00
|
|
|
unsigned_T val1, val2;
|
2022-02-20 18:23:58 +08:00
|
|
|
|
|
|
|
rs1 = this->get_rs1();
|
|
|
|
rs2 = this->get_rs2();
|
|
|
|
|
2022-09-15 18:48:22 +08:00
|
|
|
val1 = this->regs->getValue(rs1);
|
|
|
|
val2 = this->regs->getValue(rs2);
|
2022-02-20 18:23:58 +08:00
|
|
|
|
|
|
|
if (val1 != val2) {
|
2022-07-22 19:28:36 +08:00
|
|
|
unsigned_T new_pc;
|
|
|
|
new_pc = static_cast<unsigned_T>(this->regs->getPC() + get_imm_B());
|
2022-02-20 18:23:58 +08:00
|
|
|
this->regs->setPC(new_pc);
|
|
|
|
} else {
|
|
|
|
this->regs->incPC();
|
|
|
|
}
|
|
|
|
|
|
|
|
this->logger->debug("{} ns. PC: 0x{:x}. BNE: x{:d}(0x{:x}) != x{:d}(0x{:x})? -> PC (0x{:x})",
|
|
|
|
sc_core::sc_time_stamp().value(), this->regs->getPC(),
|
2022-07-22 19:28:36 +08:00
|
|
|
rs1, val1, rs2, val2, this->regs->getPC());
|
2022-02-20 18:23:58 +08:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Exec_BLT() const {
|
|
|
|
unsigned int rs1, rs2;
|
2022-07-22 19:28:36 +08:00
|
|
|
signed_T val1, val2;
|
2022-09-15 18:48:22 +08:00
|
|
|
unsigned_T new_pc, old_pc;
|
2022-02-20 18:23:58 +08:00
|
|
|
|
|
|
|
rs1 = this->get_rs1();
|
|
|
|
rs2 = this->get_rs2();
|
|
|
|
|
2022-07-22 19:28:36 +08:00
|
|
|
val1 = static_cast<signed_T>(this->regs->getValue(rs1));
|
|
|
|
val2 = static_cast<signed_T>(this->regs->getValue(rs2));
|
2022-09-15 18:48:22 +08:00
|
|
|
old_pc = static_cast<unsigned_T>(this->regs->getPC());
|
2022-07-22 19:28:36 +08:00
|
|
|
|
|
|
|
if (val1 < val2) {
|
|
|
|
new_pc = static_cast<unsigned_T>(this->regs->getPC() + get_imm_B());
|
2022-02-20 18:23:58 +08:00
|
|
|
this->regs->setPC(new_pc);
|
|
|
|
} else {
|
|
|
|
this->regs->incPC();
|
|
|
|
}
|
|
|
|
|
|
|
|
this->logger->debug("{} ns. PC: 0x{:x}. BLT: x{:d}(0x{:x}) < x{:d}(0x{:x})? -> PC (0x{:x})",
|
2022-09-15 18:48:22 +08:00
|
|
|
sc_core::sc_time_stamp().value(), old_pc,
|
2022-07-22 19:28:36 +08:00
|
|
|
rs1, this->regs->getValue(rs1), rs2, this->regs->getValue(rs2), this->regs->getPC());
|
2022-02-20 18:23:58 +08:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Exec_BGE() const {
|
|
|
|
unsigned int rs1, rs2;
|
2022-07-22 19:28:36 +08:00
|
|
|
signed_T val1, val2;
|
2022-02-20 18:23:58 +08:00
|
|
|
|
|
|
|
rs1 = this->get_rs1();
|
|
|
|
rs2 = this->get_rs2();
|
|
|
|
|
2022-07-22 19:28:36 +08:00
|
|
|
val1 = static_cast<signed_T>(this->regs->getValue(rs1));
|
|
|
|
val2 = static_cast<signed_T>(this->regs->getValue(rs2));
|
|
|
|
|
|
|
|
if (val1 >= val2) {
|
|
|
|
unsigned_T new_pc;
|
|
|
|
new_pc = static_cast<unsigned_T>(this->regs->getPC() + get_imm_B());
|
2022-02-20 18:23:58 +08:00
|
|
|
this->regs->setPC(new_pc);
|
|
|
|
} else {
|
|
|
|
this->regs->incPC();
|
|
|
|
}
|
|
|
|
|
|
|
|
this->logger->debug("{} ns. PC: 0x{:x}. BGE: x{:d}(0x{:x}) > x{:d}(0x{:x})? -> PC (0x{:x})",
|
|
|
|
sc_core::sc_time_stamp().value(), this->regs->getPC(),
|
2022-07-22 19:28:36 +08:00
|
|
|
rs1, this->regs->getValue(rs1), rs2, this->regs->getValue(rs2), this->regs->getPC());
|
2022-02-20 18:23:58 +08:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Exec_BLTU() const {
|
|
|
|
unsigned int rs1, rs2;
|
2022-07-22 19:28:36 +08:00
|
|
|
unsigned_T val1, val2;
|
2022-09-15 18:48:22 +08:00
|
|
|
unsigned_T new_pc, old_pc;
|
2022-02-20 18:23:58 +08:00
|
|
|
|
|
|
|
rs1 = this->get_rs1();
|
|
|
|
rs2 = this->get_rs2();
|
|
|
|
|
2022-07-22 19:28:36 +08:00
|
|
|
val1 = this->regs->getValue(rs1);
|
|
|
|
val2 = this->regs->getValue(rs2);
|
|
|
|
|
2022-09-15 18:48:22 +08:00
|
|
|
old_pc = static_cast<unsigned_T>(this->regs->getPC());
|
|
|
|
|
2022-07-22 19:28:36 +08:00
|
|
|
if (val1 < val2) {
|
2022-09-15 18:48:22 +08:00
|
|
|
new_pc = static_cast<unsigned_T>(old_pc + get_imm_B());
|
2022-02-20 18:23:58 +08:00
|
|
|
this->regs->setPC(new_pc);
|
|
|
|
} else {
|
|
|
|
this->regs->incPC();
|
|
|
|
}
|
|
|
|
|
|
|
|
this->logger->debug("{} ns. PC: 0x{:x}. BLTU: x{:d}(0x{:x}) < x{:d}(0x{:x})? -> PC (0x{:x})",
|
2022-09-15 18:48:22 +08:00
|
|
|
sc_core::sc_time_stamp().value(), old_pc,
|
2022-07-22 19:28:36 +08:00
|
|
|
rs1, this->regs->getValue(rs1), rs2, this->regs->getValue(rs2), this->regs->getPC());
|
2022-02-20 18:23:58 +08:00
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Exec_BGEU() const {
|
|
|
|
unsigned int rs1, rs2;
|
2022-07-22 19:28:36 +08:00
|
|
|
unsigned_T val1, val2;
|
2022-02-20 18:23:58 +08:00
|
|
|
|
|
|
|
rs1 = this->get_rs1();
|
|
|
|
rs2 = this->get_rs2();
|
|
|
|
|
2022-07-22 19:28:36 +08:00
|
|
|
val1 = this->regs->getValue(rs1);
|
|
|
|
val2 = this->regs->getValue(rs2);
|
2022-02-20 18:23:58 +08:00
|
|
|
|
2022-07-22 19:28:36 +08:00
|
|
|
if (val1 >= val2) {
|
|
|
|
unsigned_T new_pc;
|
|
|
|
new_pc = static_cast<unsigned_T>(this->regs->getPC() + get_imm_B());
|
2022-02-20 18:23:58 +08:00
|
|
|
this->regs->setPC(new_pc);
|
|
|
|
} else {
|
|
|
|
this->regs->incPC();
|
|
|
|
}
|
|
|
|
|
2022-07-22 19:28:36 +08:00
|
|
|
this->logger->debug("{} ns. PC: 0x{:x}. BGEU: x{:d}(0x{:x}) > x{:d}(0x{:x}) -> PC (0x{:x})",
|
|
|
|
sc_core::sc_time_stamp().value(), this->regs->getPC(),
|
|
|
|
rs1, this->regs->getValue(rs1), rs2, this->regs->getValue(rs2), this->regs->getPC());
|
|
|
|
|
2022-02-20 18:23:58 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Exec_LB() const {
|
2022-07-22 19:28:36 +08:00
|
|
|
unsigned_T mem_addr;
|
2022-02-20 18:23:58 +08:00
|
|
|
unsigned int rd, rs1;
|
2022-09-15 18:48:22 +08:00
|
|
|
signed_T imm;
|
2022-02-20 18:23:58 +08:00
|
|
|
std::int8_t data;
|
|
|
|
|
|
|
|
rd = this->get_rd();
|
|
|
|
rs1 = this->get_rs1();
|
|
|
|
imm = get_imm_I();
|
|
|
|
|
|
|
|
mem_addr = imm + this->regs->getValue(rs1);
|
|
|
|
data = static_cast<std::int8_t>(this->mem_intf->readDataMem(mem_addr, 1));
|
|
|
|
this->perf->dataMemoryRead();
|
|
|
|
this->regs->setValue(rd, data);
|
|
|
|
|
|
|
|
this->logger->debug("{} ns. PC: 0x{:x}. LB: x{:d} + x{:d}(0x{:x}) -> x{:d}",
|
|
|
|
sc_core::sc_time_stamp().value(),
|
|
|
|
this->regs->getPC(),
|
|
|
|
rs1, imm, mem_addr, rd);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Exec_LH() const {
|
2022-07-22 19:28:36 +08:00
|
|
|
unsigned_T mem_addr;
|
2022-02-20 18:23:58 +08:00
|
|
|
unsigned int rd, rs1;
|
2022-09-15 18:48:22 +08:00
|
|
|
signed_T imm;
|
|
|
|
std::int16_t data;
|
2022-02-20 18:23:58 +08:00
|
|
|
|
|
|
|
rd = this->get_rd();
|
|
|
|
rs1 = this->get_rs1();
|
|
|
|
imm = get_imm_I();
|
|
|
|
|
|
|
|
mem_addr = imm + this->regs->getValue(rs1);
|
2022-09-15 18:48:22 +08:00
|
|
|
data = static_cast<std::int16_t>(this->mem_intf->readDataMem(mem_addr, 2));
|
2022-02-20 18:23:58 +08:00
|
|
|
this->perf->dataMemoryRead();
|
|
|
|
this->regs->setValue(rd, data);
|
|
|
|
|
|
|
|
this->logger->debug("{} ns. PC: 0x{:x}. LH: x{:d} + x{:d}(0x{:x}) -> x{:d}",
|
|
|
|
sc_core::sc_time_stamp().value(),
|
|
|
|
this->regs->getPC(),
|
|
|
|
rs1, imm, mem_addr, rd);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Exec_LW() const {
|
2022-07-22 19:28:36 +08:00
|
|
|
unsigned_T mem_addr;
|
2022-02-20 18:23:58 +08:00
|
|
|
unsigned int rd, rs1;
|
2022-09-15 18:48:22 +08:00
|
|
|
signed_T imm;
|
|
|
|
std::int32_t data;
|
2022-02-20 18:23:58 +08:00
|
|
|
|
|
|
|
rd = this->get_rd();
|
|
|
|
rs1 = this->get_rs1();
|
|
|
|
imm = get_imm_I();
|
|
|
|
|
|
|
|
mem_addr = imm + this->regs->getValue(rs1);
|
2022-09-15 18:48:22 +08:00
|
|
|
data = static_cast<std::int32_t>(this->mem_intf->readDataMem(mem_addr, 4));
|
|
|
|
|
2022-02-20 18:23:58 +08:00
|
|
|
this->perf->dataMemoryRead();
|
2022-09-15 18:48:22 +08:00
|
|
|
this->regs->setValue(rd, data);
|
2022-02-20 18:23:58 +08:00
|
|
|
|
|
|
|
this->logger->debug("{} ns. PC: 0x{:x}. LW: x{:d} + x{:d}(0x{:x}) -> x{:d}",
|
|
|
|
sc_core::sc_time_stamp().value(),
|
|
|
|
this->regs->getPC(),
|
|
|
|
rs1, imm, mem_addr, rd);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Exec_LBU() const {
|
2022-07-22 19:28:36 +08:00
|
|
|
unsigned_T mem_addr;
|
2022-02-20 18:23:58 +08:00
|
|
|
unsigned int rd, rs1;
|
2022-09-15 18:48:22 +08:00
|
|
|
signed_T imm;
|
2022-02-20 18:23:58 +08:00
|
|
|
std::uint8_t data;
|
|
|
|
|
|
|
|
rd = this->get_rd();
|
|
|
|
rs1 = this->get_rs1();
|
|
|
|
imm = get_imm_I();
|
|
|
|
|
|
|
|
mem_addr = imm + this->regs->getValue(rs1);
|
2022-09-15 18:48:22 +08:00
|
|
|
data = static_cast<std::uint8_t>(this->mem_intf->readDataMem(mem_addr, 1));
|
|
|
|
|
2022-02-20 18:23:58 +08:00
|
|
|
this->perf->dataMemoryRead();
|
2022-09-15 18:48:22 +08:00
|
|
|
this->regs->setValue(rd, data);
|
2022-02-20 18:23:58 +08:00
|
|
|
|
|
|
|
this->logger->debug("{} ns. PC: 0x{:x}. LBU: x{:d} + x{:d}(0x{:x}) -> x{:d}",
|
|
|
|
sc_core::sc_time_stamp().value(),
|
|
|
|
this->regs->getPC(),
|
|
|
|
rs1, imm, mem_addr, rd);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Exec_LHU() const {
|
2022-07-22 19:28:36 +08:00
|
|
|
unsigned_T mem_addr;
|
2022-02-20 18:23:58 +08:00
|
|
|
unsigned int rd, rs1;
|
2022-09-15 18:48:22 +08:00
|
|
|
signed_T imm;
|
|
|
|
std::uint16_t data;
|
2022-02-20 18:23:58 +08:00
|
|
|
|
|
|
|
rd = this->get_rd();
|
|
|
|
rs1 = this->get_rs1();
|
|
|
|
imm = get_imm_I();
|
|
|
|
|
|
|
|
mem_addr = imm + this->regs->getValue(rs1);
|
2022-09-15 18:48:22 +08:00
|
|
|
data = static_cast<std::uint16_t>(this->mem_intf->readDataMem(mem_addr, 2));
|
2022-02-20 18:23:58 +08:00
|
|
|
|
2022-09-15 18:48:22 +08:00
|
|
|
this->perf->dataMemoryRead();
|
2022-02-20 18:23:58 +08:00
|
|
|
this->regs->setValue(rd, data);
|
|
|
|
|
|
|
|
this->logger->debug("{} ns. PC: 0x{:x}. LHU: x{:d} + x{:d}(0x{:x}) -> x{:d}",
|
|
|
|
sc_core::sc_time_stamp().value(),
|
|
|
|
this->regs->getPC(),
|
|
|
|
rs1, imm, mem_addr, rd);
|
|
|
|
|
|
|
|
return true;
|
2021-11-30 03:35:26 +08:00
|
|
|
}
|
|
|
|
|
2022-09-15 18:48:22 +08:00
|
|
|
bool Exec_LWU() const {
|
|
|
|
unsigned_T mem_addr;
|
|
|
|
unsigned int rd, rs1;
|
|
|
|
signed_T imm;
|
|
|
|
std::uint32_t data;
|
|
|
|
|
|
|
|
rd = this->get_rd();
|
|
|
|
rs1 = this->get_rs1();
|
|
|
|
imm = get_imm_I();
|
|
|
|
|
|
|
|
mem_addr = imm + this->regs->getValue(rs1);
|
|
|
|
data = this->mem_intf->readDataMem(mem_addr, 4);
|
|
|
|
|
|
|
|
this->perf->dataMemoryRead();
|
|
|
|
this->regs->setValue(rd, data);
|
|
|
|
|
|
|
|
this->logger->debug("{} ns. PC: 0x{:x}. LWU: x{:d} + x{:d}(0x{:x}) -> x{:d}",
|
|
|
|
sc_core::sc_time_stamp().value(),
|
|
|
|
this->regs->getPC(),
|
|
|
|
rs1, imm, mem_addr, rd);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Exec_LD() const {
|
|
|
|
unsigned_T mem_addr;
|
|
|
|
unsigned int rd, rs1;
|
|
|
|
signed_T imm;
|
|
|
|
signed_T offset;
|
|
|
|
|
|
|
|
std::uint64_t data;
|
|
|
|
|
|
|
|
rd = this->get_rd();
|
|
|
|
rs1 = this->get_rs1();
|
|
|
|
imm = get_imm_I();
|
|
|
|
|
|
|
|
offset = this->regs->getValue(rs1);
|
|
|
|
mem_addr = imm + offset;
|
|
|
|
|
|
|
|
data = static_cast<std::uint32_t>(this->mem_intf->readDataMem(mem_addr, 4));
|
|
|
|
std::uint64_t aux = static_cast<std::uint32_t>(this->mem_intf->readDataMem(mem_addr + 4, 4));
|
|
|
|
data |= aux << 32;
|
|
|
|
|
|
|
|
this->perf->dataMemoryRead();
|
|
|
|
this->regs->setValue(rd, data);
|
|
|
|
|
|
|
|
this->logger->debug("{} ns. PC: 0x{:x}. LD: 0x{:x}({:d}) + {:d}(0x{:x}) -> x{:d}(0x{:x})",
|
|
|
|
sc_core::sc_time_stamp().value(),
|
|
|
|
this->regs->getPC(),
|
|
|
|
rs1, offset, imm, mem_addr, rd, data);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool Exec_SD() const {
|
|
|
|
unsigned_T mem_addr;
|
|
|
|
unsigned int rs1, rs2;
|
|
|
|
signed_T imm;
|
|
|
|
std::uint64_t data;
|
|
|
|
|
|
|
|
rs1 = this->get_rs1();
|
|
|
|
rs2 = this->get_rs2();
|
|
|
|
imm = get_imm_S();
|
|
|
|
|
|
|
|
mem_addr = imm + this->regs->getValue(rs1);
|
|
|
|
data = this->regs->getValue(rs2);
|
|
|
|
|
|
|
|
this->logger->debug("{} ns. PC: 0x{:x}. SD: 0x{:x} -> x{:d} + 0x{:x}(@0x{:x})",
|
|
|
|
sc_core::sc_time_stamp().value(),
|
|
|
|
this->regs->getPC(),
|
|
|
|
rs2, rs1, imm, mem_addr);
|
|
|
|
|
|
|
|
this->mem_intf->writeDataMem(mem_addr, data & 0xFFFFFFFF, 4);
|
|
|
|
this->mem_intf->writeDataMem(mem_addr + 4, data >> 32, 4);
|
|
|
|
this->perf->dataMemoryWrite();
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-02-20 18:23:58 +08:00
|
|
|
bool Exec_SB() const {
|
2022-07-22 19:28:36 +08:00
|
|
|
unsigned_T mem_addr;
|
2022-02-20 18:23:58 +08:00
|
|
|
unsigned int rs1, rs2;
|
2022-09-15 18:48:22 +08:00
|
|
|
signed_T imm;
|
2022-02-20 18:23:58 +08:00
|
|
|
std::uint32_t data;
|
2021-11-30 03:35:26 +08:00
|
|
|
|
2022-02-20 18:23:58 +08:00
|
|
|
rs1 = this->get_rs1();
|
|
|
|
rs2 = this->get_rs2();
|
|
|
|
imm = get_imm_S();
|
2021-11-30 03:35:26 +08:00
|
|
|
|
2022-02-20 18:23:58 +08:00
|
|
|
mem_addr = imm + this->regs->getValue(rs1);
|
|
|
|
data = this->regs->getValue(rs2);
|
2021-11-30 03:35:26 +08:00
|
|
|
|
2022-02-20 18:23:58 +08:00
|
|
|
this->mem_intf->writeDataMem(mem_addr, data, 1);
|
|
|
|
this->perf->dataMemoryWrite();
|
2021-11-30 03:35:26 +08:00
|
|
|
|
2022-02-20 18:23:58 +08:00
|
|
|
this->logger->debug("{} ns. PC: 0x{:x}. SB: x{:d} -> x{:d} + 0x{:x}(@0x{:x})",
|
|
|
|
sc_core::sc_time_stamp().value(),
|
|
|
|
this->regs->getPC(),
|
|
|
|
rs2, rs1, imm, mem_addr);
|
2021-11-30 03:35:26 +08:00
|
|
|
|
2022-02-20 18:23:58 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2022-09-15 18:48:22 +08:00
|
|
|
|
2022-02-20 18:23:58 +08:00
|
|
|
bool Exec_SH() const {
|
2022-07-22 19:28:36 +08:00
|
|
|
unsigned_T mem_addr;
|
2022-02-20 18:23:58 +08:00
|
|
|
unsigned int rs1, rs2;
|
2022-09-15 18:48:22 +08:00
|
|
|
signed_T imm;
|
2022-02-20 18:23:58 +08:00
|
|
|
std::uint32_t data;
|
2021-11-30 03:35:26 +08:00
|
|
|
|
2022-02-20 18:23:58 +08:00
|
|
|
rs1 = this->get_rs1();
|
|
|
|
rs2 = this->get_rs2();
|
|
|
|
imm = get_imm_S();
|
2021-11-30 03:35:26 +08:00
|
|
|
|
2022-02-20 18:23:58 +08:00
|
|
|
mem_addr = imm + this->regs->getValue(rs1);
|
|
|
|
data = this->regs->getValue(rs2);
|
2021-11-30 03:35:26 +08:00
|
|
|
|
2022-02-20 18:23:58 +08:00
|
|
|
this->mem_intf->writeDataMem(mem_addr, data, 2);
|
|
|
|
this->perf->dataMemoryWrite();
|
2021-11-30 03:35:26 +08:00
|
|
|
|
2022-02-20 18:23:58 +08:00
|
|
|
this->logger->debug("{} ns. PC: 0x{:x}. SH: x{:d} -> x{:d} + 0x{:x}(@0x{:x})",
|
|
|
|
sc_core::sc_time_stamp().value(),
|
|
|
|
this->regs->getPC(),
|
|
|
|
rs2, rs1, imm, mem_addr);
|
2021-11-30 03:35:26 +08:00
|
|
|
|
2022-02-20 18:23:58 +08:00
|
|
|
return true;
|
|
|
|
}
|
2021-11-30 03:35:26 +08:00
|
|
|
|
2022-09-15 18:48:22 +08:00
|
|
|
|
2022-02-20 18:23:58 +08:00
|
|
|
bool Exec_SW() const {
|
2022-07-22 19:28:36 +08:00
|
|
|
unsigned_T mem_addr;
|
2022-02-20 18:23:58 +08:00
|
|
|
unsigned int rs1, rs2;
|
2022-09-15 18:48:22 +08:00
|
|
|
signed_T imm;
|
2022-02-20 18:23:58 +08:00
|
|
|
std::uint32_t data;
|
2021-11-30 03:35:26 +08:00
|
|
|
|
2022-02-20 18:23:58 +08:00
|
|
|
rs1 = this->get_rs1();
|
|
|
|
rs2 = this->get_rs2();
|
|
|
|
imm = get_imm_S();
|
2021-11-30 03:35:26 +08:00
|
|
|
|
2022-02-20 18:23:58 +08:00
|
|
|
mem_addr = imm + this->regs->getValue(rs1);
|
|
|
|
data = this->regs->getValue(rs2);
|
2021-11-30 03:35:26 +08:00
|
|
|
|
2022-02-20 18:23:58 +08:00
|
|
|
this->mem_intf->writeDataMem(mem_addr, data, 4);
|
|
|
|
this->perf->dataMemoryWrite();
|
2021-11-30 03:35:26 +08:00
|
|
|
|
2022-02-20 18:23:58 +08:00
|
|
|
this->logger->debug("{} ns. PC: 0x{:x}. SW: x{:d} -> x{:d} + 0x{:x}(@0x{:x})",
|
|
|
|
sc_core::sc_time_stamp().value(),
|
|
|
|
this->regs->getPC(),
|
|
|
|
rs2, rs1, imm, mem_addr);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
2021-11-30 03:35:26 +08:00
|
|
|
|
2022-02-20 18:23:58 +08:00
|
|
|
bool Exec_ADDI() const {
|
|
|
|
unsigned int rd, rs1;
|
2022-09-15 18:48:22 +08:00
|
|
|
signed_T imm;
|
|
|
|
unsigned_T calc;
|
2021-11-30 03:35:26 +08:00
|
|
|
|
2022-02-20 18:23:58 +08:00
|
|
|
rd = this->get_rd();
|
|
|
|
rs1 = this->get_rs1();
|
|
|
|
imm = get_imm_I();
|
2021-11-30 03:35:26 +08:00
|
|
|
|
2022-09-15 18:48:22 +08:00
|
|
|
calc = this->regs->getValue(rs1) + imm;
|
|
|
|
|
2022-02-20 18:23:58 +08:00
|
|
|
this->regs->setValue(rd, calc);
|
2021-11-30 03:35:26 +08:00
|
|
|
|
2022-09-15 18:48:22 +08:00
|
|
|
this->logger->debug("{} ns. PC: 0x{:x}. ADDI: x{:d}(0x{:x}) + {:d} -> x{:d}(0x{:x})",
|
|
|
|
sc_core::sc_time_stamp().value(),
|
|
|
|
this->regs->getPC(),
|
|
|
|
rs1, this->regs->getValue(rs1), imm, rd, calc);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Exec_ADDIW() const {
|
|
|
|
unsigned int rd, rs1;
|
|
|
|
std::int32_t imm;
|
|
|
|
std::int32_t aux;
|
|
|
|
std::int64_t calc;
|
|
|
|
|
|
|
|
rd = this->get_rd();
|
|
|
|
rs1 = this->get_rs1();
|
|
|
|
imm = get_imm_I();
|
|
|
|
|
|
|
|
aux = static_cast<std::int32_t>(this->regs->getValue(rs1) & 0xFFFFFFFF);
|
|
|
|
aux = static_cast<std::int32_t>(aux + imm);
|
|
|
|
calc = static_cast<std::int32_t>(aux);
|
|
|
|
|
|
|
|
this->regs->setValue(rd, calc);
|
|
|
|
this->logger->debug("{} ns. PC: 0x{:x}. ADDIW: x{:d} + {:d} -> x{:d}(0x{:x})",
|
2022-02-20 18:23:58 +08:00
|
|
|
sc_core::sc_time_stamp().value(),
|
|
|
|
this->regs->getPC(),
|
|
|
|
rs1, imm, rd, calc);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Exec_SLTI() const {
|
|
|
|
unsigned int rd, rs1;
|
2022-09-15 18:48:22 +08:00
|
|
|
signed_T imm;
|
2022-07-22 19:28:36 +08:00
|
|
|
signed_T val1;
|
2022-02-20 18:23:58 +08:00
|
|
|
|
|
|
|
rd = this->get_rd();
|
|
|
|
rs1 = this->get_rs1();
|
|
|
|
imm = get_imm_I();
|
|
|
|
|
2022-07-22 19:28:36 +08:00
|
|
|
val1 = static_cast<signed_T>(this->regs->getValue(rs1));
|
2022-02-20 18:23:58 +08:00
|
|
|
|
2022-07-22 19:28:36 +08:00
|
|
|
if (val1 < imm) {
|
|
|
|
this->regs->setValue(rd, 1);
|
2022-02-20 18:23:58 +08:00
|
|
|
this->logger->debug("{} ns. PC: 0x{:x}. SLTI: x{:d} < x{:d} => 1 -> x{:d}",
|
|
|
|
sc_core::sc_time_stamp().value(),
|
|
|
|
this->regs->getPC(),
|
|
|
|
rs1, imm, rd);
|
|
|
|
} else {
|
|
|
|
this->regs->setValue(rd, 0);
|
|
|
|
this->logger->debug("{} ns. PC: 0x{:x}. SLTI: x{:d} < x{:d} => 0 -> x{:d}",
|
|
|
|
sc_core::sc_time_stamp().value(),
|
|
|
|
this->regs->getPC(),
|
|
|
|
rs1, imm, rd);
|
|
|
|
}
|
2021-11-30 03:35:26 +08:00
|
|
|
|
2022-02-20 18:23:58 +08:00
|
|
|
return true;
|
|
|
|
}
|
2021-11-30 03:35:26 +08:00
|
|
|
|
2022-02-20 18:23:58 +08:00
|
|
|
bool Exec_SLTIU() const {
|
|
|
|
unsigned int rd, rs1;
|
2022-07-22 19:28:36 +08:00
|
|
|
unsigned_T imm;
|
|
|
|
unsigned_T val1;
|
2022-02-20 18:23:58 +08:00
|
|
|
|
|
|
|
rd = this->get_rd();
|
|
|
|
rs1 = this->get_rs1();
|
2022-07-22 19:28:36 +08:00
|
|
|
imm = static_cast<unsigned_T>(get_imm_I());
|
|
|
|
val1 = static_cast<unsigned_T>(this->regs->getValue(rs1));
|
2022-02-20 18:23:58 +08:00
|
|
|
|
2022-07-22 19:28:36 +08:00
|
|
|
if (val1 < imm) {
|
2022-02-20 18:23:58 +08:00
|
|
|
this->regs->setValue(rd, 1);
|
|
|
|
this->logger->debug("{} ns. PC: 0x{:x}. SLTIU: x{:d} < x{:d} => 1 -> x{:d}",
|
|
|
|
sc_core::sc_time_stamp().value(),
|
|
|
|
this->regs->getPC(),
|
|
|
|
rs1, imm, rd);
|
|
|
|
} else {
|
|
|
|
this->regs->setValue(rd, 0);
|
|
|
|
this->logger->debug("{} ns. PC: 0x{:x}. SLTIU: x{:d} < x{:d} => 0 -> x{:d}",
|
|
|
|
sc_core::sc_time_stamp().value(),
|
|
|
|
this->regs->getPC(),
|
|
|
|
rs1, imm, rd);
|
|
|
|
}
|
2021-11-30 03:35:26 +08:00
|
|
|
|
2022-02-20 18:23:58 +08:00
|
|
|
return true;
|
|
|
|
}
|
2021-11-30 03:35:26 +08:00
|
|
|
|
2022-02-20 18:23:58 +08:00
|
|
|
bool Exec_XORI() const {
|
|
|
|
unsigned int rd, rs1;
|
2022-09-15 18:48:22 +08:00
|
|
|
signed_T imm;
|
2022-07-22 19:28:36 +08:00
|
|
|
unsigned_T calc;
|
2021-11-30 03:35:26 +08:00
|
|
|
|
2022-02-20 18:23:58 +08:00
|
|
|
rd = this->get_rd();
|
|
|
|
rs1 = this->get_rs1();
|
|
|
|
imm = get_imm_I();
|
2021-11-30 03:35:26 +08:00
|
|
|
|
2022-02-20 18:23:58 +08:00
|
|
|
calc = this->regs->getValue(rs1) ^ imm;
|
2022-07-22 19:28:36 +08:00
|
|
|
this->regs->setValue(rd, calc);
|
2021-11-30 03:35:26 +08:00
|
|
|
|
2022-02-20 18:23:58 +08:00
|
|
|
this->logger->debug("{} ns. PC: 0x{:x}. XORI: x{:d} XOR x{:d} -> x{:d}", sc_core::sc_time_stamp().value(),
|
|
|
|
this->regs->getPC(),
|
|
|
|
rs1, imm, rd);
|
2021-11-30 03:35:26 +08:00
|
|
|
|
2022-02-20 18:23:58 +08:00
|
|
|
return true;
|
|
|
|
}
|
2021-11-30 03:35:26 +08:00
|
|
|
|
2022-02-20 18:23:58 +08:00
|
|
|
bool Exec_ORI() const {
|
|
|
|
unsigned int rd, rs1;
|
2022-09-15 18:48:22 +08:00
|
|
|
signed_T imm;
|
2022-07-22 19:28:36 +08:00
|
|
|
unsigned_T calc;
|
2021-11-30 03:35:26 +08:00
|
|
|
|
2022-02-20 18:23:58 +08:00
|
|
|
rd = this->get_rd();
|
|
|
|
rs1 = this->get_rs1();
|
|
|
|
imm = get_imm_I();
|
2021-11-30 03:35:26 +08:00
|
|
|
|
2022-02-20 18:23:58 +08:00
|
|
|
calc = this->regs->getValue(rs1) | imm;
|
2022-07-22 19:28:36 +08:00
|
|
|
this->regs->setValue(rd, calc);
|
2021-11-30 03:35:26 +08:00
|
|
|
|
2022-02-20 18:23:58 +08:00
|
|
|
this->logger->debug("{} ns. PC: 0x{:x}. ORI: x{:d} OR x{:d} -> x{:d}", sc_core::sc_time_stamp().value(),
|
|
|
|
this->regs->getPC(),
|
|
|
|
rs1, imm, rd);
|
2021-11-30 03:35:26 +08:00
|
|
|
|
2022-02-20 18:23:58 +08:00
|
|
|
return true;
|
|
|
|
}
|
2021-11-30 03:35:26 +08:00
|
|
|
|
2022-02-20 18:23:58 +08:00
|
|
|
bool Exec_ANDI() const {
|
|
|
|
unsigned int rd, rs1;
|
2022-09-15 18:48:22 +08:00
|
|
|
signed_T imm;
|
2022-07-22 19:28:36 +08:00
|
|
|
unsigned_T calc;
|
2021-11-30 03:35:26 +08:00
|
|
|
|
2022-02-20 18:23:58 +08:00
|
|
|
rd = this->get_rd();
|
|
|
|
rs1 = this->get_rs1();
|
|
|
|
imm = get_imm_I();
|
2021-11-30 03:35:26 +08:00
|
|
|
|
2022-07-22 19:28:36 +08:00
|
|
|
calc = this->regs->getValue(rs1) & imm;
|
|
|
|
this->regs->setValue(rd, calc);
|
2021-11-30 03:35:26 +08:00
|
|
|
|
2022-07-22 19:28:36 +08:00
|
|
|
this->logger->debug("{} ns. PC: 0x{:x}. ANDI: x{:d} AND 0x{:x} -> x{:d}",
|
2022-02-20 18:23:58 +08:00
|
|
|
sc_core::sc_time_stamp().value(),
|
|
|
|
this->regs->getPC(),
|
2022-07-22 19:28:36 +08:00
|
|
|
rs1, imm, rd);
|
2021-11-30 03:35:26 +08:00
|
|
|
|
2022-02-20 18:23:58 +08:00
|
|
|
return true;
|
|
|
|
}
|
2021-11-30 03:35:26 +08:00
|
|
|
|
2022-09-15 18:48:22 +08:00
|
|
|
|
|
|
|
bool Exec_SLLI();
|
|
|
|
|
|
|
|
|
|
|
|
bool Exec_SRLI() const;
|
|
|
|
|
|
|
|
|
|
|
|
bool Exec_SRAI() const;
|
|
|
|
|
|
|
|
|
|
|
|
bool Exec_SLLIW() {
|
2022-02-20 18:23:58 +08:00
|
|
|
unsigned int rd, rs1, rs2;
|
2022-07-22 19:28:36 +08:00
|
|
|
unsigned_T shift;
|
|
|
|
unsigned_T calc;
|
2021-11-30 03:35:26 +08:00
|
|
|
|
2022-02-20 18:23:58 +08:00
|
|
|
rd = this->get_rd();
|
|
|
|
rs1 = this->get_rs1();
|
|
|
|
rs2 = get_shamt();
|
2021-11-30 03:35:26 +08:00
|
|
|
|
2022-02-20 18:23:58 +08:00
|
|
|
if (rs2 >= 0x20) {
|
2022-09-15 18:48:22 +08:00
|
|
|
std::cout << "ILLEGAL INSTRUCTION, shamt[5] != 0" << "\n";
|
|
|
|
sc_core::sc_stop();
|
2022-02-20 18:23:58 +08:00
|
|
|
this->RaiseException(EXCEPTION_CAUSE_ILLEGAL_INSTRUCTION, this->m_instr);
|
2021-11-30 03:35:26 +08:00
|
|
|
|
2022-02-20 18:23:58 +08:00
|
|
|
return false;
|
|
|
|
}
|
2021-11-30 03:35:26 +08:00
|
|
|
|
2022-02-20 18:23:58 +08:00
|
|
|
shift = rs2 & 0x1F;
|
2021-11-30 03:35:26 +08:00
|
|
|
|
2022-09-15 18:48:22 +08:00
|
|
|
calc = static_cast<std::int32_t>(static_cast<std::uint32_t>(this->regs->getValue(rs1)) << shift);
|
2022-07-22 19:28:36 +08:00
|
|
|
this->regs->setValue(rd, calc);
|
2021-11-30 03:35:26 +08:00
|
|
|
|
2022-09-15 18:48:22 +08:00
|
|
|
this->logger->debug("{} ns. PC: 0x{:x}. SLLIW: x{:d} << {:d} -> x{:d}(0x{:x})",
|
2022-02-20 18:23:58 +08:00
|
|
|
sc_core::sc_time_stamp().value(),
|
|
|
|
this->regs->getPC(),
|
|
|
|
rs1, shift, rd, calc);
|
2021-11-30 03:35:26 +08:00
|
|
|
|
2022-02-20 18:23:58 +08:00
|
|
|
return true;
|
|
|
|
}
|
2021-11-30 03:35:26 +08:00
|
|
|
|
2022-09-15 18:48:22 +08:00
|
|
|
|
|
|
|
bool Exec_SRLIW() {
|
2022-02-20 18:23:58 +08:00
|
|
|
unsigned int rd, rs1, rs2;
|
2022-07-22 19:28:36 +08:00
|
|
|
unsigned_T shift;
|
|
|
|
unsigned_T calc;
|
2021-11-30 03:35:26 +08:00
|
|
|
|
2022-02-20 18:23:58 +08:00
|
|
|
rd = this->get_rd();
|
|
|
|
rs1 = this->get_rs1();
|
2022-09-15 18:48:22 +08:00
|
|
|
rs2 = get_shamt();
|
|
|
|
|
|
|
|
if (rs2 >= 0x20) {
|
|
|
|
std::cout << "ILLEGAL INSTRUCTION, shamt[5] != 0" << "\n";
|
|
|
|
sc_core::sc_stop();
|
|
|
|
this->RaiseException(EXCEPTION_CAUSE_ILLEGAL_INSTRUCTION, this->m_instr);
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2021-11-30 03:35:26 +08:00
|
|
|
|
2022-02-20 18:23:58 +08:00
|
|
|
shift = rs2 & 0x1F;
|
2021-11-30 03:35:26 +08:00
|
|
|
|
2022-09-15 18:48:22 +08:00
|
|
|
calc = static_cast<std::int32_t>(static_cast<std::uint32_t>(this->regs->getValue(rs1) & 0xFFFFFFFF) >> shift);
|
2022-07-22 19:28:36 +08:00
|
|
|
this->regs->setValue(rd, calc);
|
2021-11-30 03:35:26 +08:00
|
|
|
|
2022-09-15 18:48:22 +08:00
|
|
|
this->logger->debug("{} ns. PC: 0x{:x}. SRLIW: x{:d} << {:d} -> x{:d}(0x{:x})",
|
2022-02-20 18:23:58 +08:00
|
|
|
sc_core::sc_time_stamp().value(),
|
|
|
|
this->regs->getPC(),
|
|
|
|
rs1, shift, rd, calc);
|
2021-11-30 03:35:26 +08:00
|
|
|
|
2022-02-20 18:23:58 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2022-09-15 18:48:22 +08:00
|
|
|
|
|
|
|
bool Exec_SRAIW() const {
|
2022-02-20 18:23:58 +08:00
|
|
|
unsigned int rd, rs1, rs2;
|
2022-07-22 19:28:36 +08:00
|
|
|
unsigned_T shift;
|
|
|
|
signed_T calc;
|
2022-02-20 18:23:58 +08:00
|
|
|
|
|
|
|
rd = this->get_rd();
|
|
|
|
rs1 = this->get_rs1();
|
2022-09-15 18:48:22 +08:00
|
|
|
rs2 = this->get_shamt_slli();
|
2022-02-20 18:23:58 +08:00
|
|
|
|
|
|
|
shift = rs2 & 0x1F;
|
|
|
|
|
2022-09-15 18:48:22 +08:00
|
|
|
calc = static_cast<std::int32_t>(static_cast<std::int32_t>(this->regs->getValue(rs1)) >> shift);
|
2022-02-20 18:23:58 +08:00
|
|
|
this->regs->setValue(rd, calc);
|
|
|
|
|
2022-09-15 18:48:22 +08:00
|
|
|
this->logger->debug("{} ns. PC: 0x{:x}. SRAIW: x{:d} >> {:d} -> x{:d}(0x{:x})",
|
2022-02-20 18:23:58 +08:00
|
|
|
sc_core::sc_time_stamp().value(),
|
|
|
|
this->regs->getPC(),
|
|
|
|
rs1, shift, rd, calc);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2022-09-15 18:48:22 +08:00
|
|
|
bool Exec_ADDW() const {
|
2022-02-20 18:23:58 +08:00
|
|
|
unsigned int rd, rs1, rs2;
|
2022-07-22 19:28:36 +08:00
|
|
|
unsigned_T calc;
|
2022-02-20 18:23:58 +08:00
|
|
|
rd = this->get_rd();
|
|
|
|
rs1 = this->get_rs1();
|
|
|
|
rs2 = this->get_rs2();
|
|
|
|
|
2022-09-15 18:48:22 +08:00
|
|
|
calc = static_cast<std::int32_t>((this->regs->getValue(rs1) + this->regs->getValue(rs2)) & 0xFFFFFFFF);
|
2022-02-20 18:23:58 +08:00
|
|
|
|
2022-07-22 19:28:36 +08:00
|
|
|
this->regs->setValue(rd, calc);
|
2022-02-20 18:23:58 +08:00
|
|
|
|
2022-09-15 18:48:22 +08:00
|
|
|
this->logger->debug("{} ns. PC: 0x{:x}. ADDW: x{:d} + x{:d} -> x{:d}(0x{:x})",
|
2022-02-20 18:23:58 +08:00
|
|
|
sc_core::sc_time_stamp().value(),
|
|
|
|
this->regs->getPC(),
|
|
|
|
rs1, rs2, rd, calc);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2022-09-15 18:48:22 +08:00
|
|
|
bool Exec_SUBW() const {
|
2022-02-20 18:23:58 +08:00
|
|
|
unsigned int rd, rs1, rs2;
|
2022-07-22 19:28:36 +08:00
|
|
|
unsigned_T calc;
|
2022-02-20 18:23:58 +08:00
|
|
|
rd = this->get_rd();
|
|
|
|
rs1 = this->get_rs1();
|
|
|
|
rs2 = this->get_rs2();
|
|
|
|
|
2022-09-15 18:48:22 +08:00
|
|
|
calc = static_cast<std::int32_t>((this->regs->getValue(rs1) - this->regs->getValue(rs2)) & 0xFFFFFFFF);
|
|
|
|
|
2022-07-22 19:28:36 +08:00
|
|
|
this->regs->setValue(rd, calc);
|
2022-02-20 18:23:58 +08:00
|
|
|
|
2022-09-15 18:48:22 +08:00
|
|
|
this->logger->debug("{} ns. PC: 0x{:x}. SUBW: x{:d} + x{:d} -> x{:d}(0x{:x})",
|
2022-02-20 18:23:58 +08:00
|
|
|
sc_core::sc_time_stamp().value(),
|
|
|
|
this->regs->getPC(),
|
|
|
|
rs1, rs2, rd, calc);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2022-09-15 18:48:22 +08:00
|
|
|
|
|
|
|
bool Exec_SLLW() const {
|
|
|
|
unsigned int rd, rs1, rs2;
|
|
|
|
unsigned_T shift;
|
|
|
|
unsigned_T calc;
|
|
|
|
|
|
|
|
rd = this->get_rd();
|
|
|
|
rs1 = this->get_rs1();
|
|
|
|
rs2 = this->get_rs2();
|
|
|
|
|
|
|
|
shift = this->regs->getValue(rs2) & 0x1F;
|
|
|
|
calc = static_cast<std::int32_t>(this->regs->getValue(rs1) & 0xFFFFFFFF) << shift;
|
|
|
|
|
|
|
|
this->regs->setValue(rd, calc);
|
|
|
|
|
|
|
|
this->logger->debug("{} ns. PC: 0x{:x}. SLLW: x{:d} << x{:d} -> x{:d}(0x{:x})",
|
|
|
|
sc_core::sc_time_stamp().value(),
|
|
|
|
this->regs->getPC(),
|
|
|
|
rs1, shift, rd, calc);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool Exec_SRLW() const {
|
2022-02-20 18:23:58 +08:00
|
|
|
unsigned int rd, rs1, rs2;
|
2022-07-22 19:28:36 +08:00
|
|
|
unsigned_T shift;
|
|
|
|
unsigned_T calc;
|
2022-02-20 18:23:58 +08:00
|
|
|
|
|
|
|
rd = this->get_rd();
|
|
|
|
rs1 = this->get_rs1();
|
|
|
|
rs2 = this->get_rs2();
|
|
|
|
|
|
|
|
shift = this->regs->getValue(rs2) & 0x1F;
|
2022-09-15 18:48:22 +08:00
|
|
|
calc = static_cast<std::int32_t>(static_cast<std::uint32_t>(this->regs->getValue(rs1) & 0xFFFFFFFF) >> shift);
|
2022-02-20 18:23:58 +08:00
|
|
|
|
2022-07-22 19:28:36 +08:00
|
|
|
this->regs->setValue(rd, calc);
|
2022-02-20 18:23:58 +08:00
|
|
|
|
2022-09-15 18:48:22 +08:00
|
|
|
this->logger->debug("{} ns. PC: 0x{:x}. SRLW: x{:d} >> {:d} -> x{:d}(0x{:x})",
|
2022-02-20 18:23:58 +08:00
|
|
|
sc_core::sc_time_stamp().value(),
|
|
|
|
this->regs->getPC(),
|
|
|
|
rs1, shift, rd, calc);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2022-09-15 18:48:22 +08:00
|
|
|
|
|
|
|
bool Exec_SRAW() const {
|
|
|
|
unsigned int rd, rs1, rs2;
|
|
|
|
unsigned_T shift;
|
|
|
|
signed_T calc;
|
|
|
|
|
|
|
|
rd = this->get_rd();
|
|
|
|
rs1 = this->get_rs1();
|
|
|
|
rs2 = this->get_rs2();
|
|
|
|
|
|
|
|
shift = this->regs->getValue(rs2) & 0x1F;
|
|
|
|
calc = static_cast<std::int32_t>(this->regs->getValue(rs1) & 0xFFFFFFFF) >> shift;
|
|
|
|
|
|
|
|
this->regs->setValue(rd, calc);
|
|
|
|
|
|
|
|
this->logger->debug("{} ns. PC: 0x{:x}. SRAW: x{:d} >> {:d} -> x{:d}(0x{:x})",
|
|
|
|
sc_core::sc_time_stamp().value(),
|
|
|
|
this->regs->getPC(),
|
|
|
|
rs1, shift, rd, calc);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Exec_ADD() const {
|
|
|
|
unsigned int rd, rs1, rs2;
|
|
|
|
signed_T calc;
|
|
|
|
rd = this->get_rd();
|
|
|
|
rs1 = this->get_rs1();
|
|
|
|
rs2 = this->get_rs2();
|
|
|
|
|
|
|
|
calc = static_cast<signed_T>(this->regs->getValue(rs1)) + static_cast<signed_T>(this->regs->getValue(rs2));
|
|
|
|
|
|
|
|
this->regs->setValue(rd, calc);
|
|
|
|
|
|
|
|
this->logger->debug("{} ns. PC: 0x{:x}. ADD: x{:d} + x{:d} -> x{:d}(0x{:x})",
|
|
|
|
sc_core::sc_time_stamp().value(),
|
|
|
|
this->regs->getPC(),
|
|
|
|
rs1, rs2, rd, calc);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Exec_SUB() const {
|
|
|
|
unsigned int rd, rs1, rs2;
|
|
|
|
signed_T calc;
|
|
|
|
rd = this->get_rd();
|
|
|
|
rs1 = this->get_rs1();
|
|
|
|
rs2 = this->get_rs2();
|
|
|
|
|
|
|
|
calc = static_cast<signed_T>(this->regs->getValue(rs1)) - static_cast<signed_T>(this->regs->getValue(rs2));
|
|
|
|
this->regs->setValue(rd, calc);
|
|
|
|
|
|
|
|
this->logger->debug("{} ns. PC: 0x{:x}. SUB: x{:d} - x{:d} -> x{:d}(0x{:x})",
|
|
|
|
sc_core::sc_time_stamp().value(),
|
|
|
|
this->regs->getPC(),
|
|
|
|
rs1, rs2, rd, calc);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool Exec_SLL() const;
|
|
|
|
|
2022-02-20 18:23:58 +08:00
|
|
|
bool Exec_SLT() const {
|
|
|
|
unsigned int rd, rs1, rs2;
|
2022-07-22 19:28:36 +08:00
|
|
|
signed_T val1, val2;
|
2022-02-20 18:23:58 +08:00
|
|
|
|
|
|
|
rd = this->get_rd();
|
|
|
|
rs1 = this->get_rs1();
|
|
|
|
rs2 = this->get_rs2();
|
|
|
|
|
2022-07-22 19:28:36 +08:00
|
|
|
val1 = static_cast<signed_T>(this->regs->getValue(rs1));
|
|
|
|
val2 = static_cast<signed_T>(this->regs->getValue(rs2));
|
|
|
|
|
|
|
|
if (val1 < val2) {
|
2022-02-20 18:23:58 +08:00
|
|
|
this->regs->setValue(rd, 1);
|
|
|
|
this->logger->debug("{} ns. PC: 0x{:x}. SLT: x{:d} < x{:d} => 1 -> x{:d}",
|
|
|
|
sc_core::sc_time_stamp().value(),
|
|
|
|
this->regs->getPC(),
|
|
|
|
rs1, rs2, rd);
|
|
|
|
} else {
|
|
|
|
this->regs->setValue(rd, 0);
|
|
|
|
this->logger->debug("{} ns. PC: 0x{:x}. SLT: x{:d} < x{:d} => 0 -> x{:d}",
|
|
|
|
sc_core::sc_time_stamp().value(),
|
|
|
|
this->regs->getPC(),
|
|
|
|
rs1, rs2, rd);
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Exec_SLTU() const {
|
|
|
|
unsigned int rd, rs1, rs2;
|
2022-07-22 19:28:36 +08:00
|
|
|
unsigned_T val1, val2;
|
2022-02-20 18:23:58 +08:00
|
|
|
|
|
|
|
rd = this->get_rd();
|
|
|
|
rs1 = this->get_rs1();
|
|
|
|
rs2 = this->get_rs2();
|
|
|
|
|
2022-07-22 19:28:36 +08:00
|
|
|
val1 = this->regs->getValue(rs1);
|
|
|
|
val2 = this->regs->getValue(rs2);
|
|
|
|
|
|
|
|
if (val1 < val2) {
|
2022-02-20 18:23:58 +08:00
|
|
|
this->regs->setValue(rd, 1);
|
|
|
|
this->logger->debug("{} ns. PC: 0x{:x}. SLTU: x{:d} < x{:d} => 1 -> x{:d}",
|
|
|
|
sc_core::sc_time_stamp().value(),
|
|
|
|
this->regs->getPC(),
|
|
|
|
rs1, rs2, rd);
|
|
|
|
} else {
|
|
|
|
this->regs->setValue(rd, 0);
|
|
|
|
this->logger->debug("{} ns. PC: 0x{:x}. SLTU: x{:d} < x{:d} => 0 -> x{:d}",
|
|
|
|
sc_core::sc_time_stamp().value(),
|
|
|
|
this->regs->getPC(),
|
|
|
|
rs1, rs2, rd);
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Exec_XOR() const {
|
|
|
|
unsigned int rd, rs1, rs2;
|
2022-07-22 19:28:36 +08:00
|
|
|
unsigned_T calc;
|
2022-02-20 18:23:58 +08:00
|
|
|
|
|
|
|
rd = this->get_rd();
|
|
|
|
rs1 = this->get_rs1();
|
|
|
|
rs2 = this->get_rs2();
|
|
|
|
|
|
|
|
calc = this->regs->getValue(rs1) ^ this->regs->getValue(rs2);
|
2022-07-22 19:28:36 +08:00
|
|
|
this->regs->setValue(rd, calc);
|
2022-02-20 18:23:58 +08:00
|
|
|
|
|
|
|
this->logger->debug("{} ns. PC: 0x{:x}. XOR: x{:d} XOR x{:d} -> x{:d}(0x{:x})",
|
|
|
|
sc_core::sc_time_stamp().value(),
|
|
|
|
this->regs->getPC(),
|
|
|
|
rs1, rs2, rd, calc);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2022-09-15 18:48:22 +08:00
|
|
|
bool Exec_SRL() const;
|
2022-02-20 18:23:58 +08:00
|
|
|
|
|
|
|
|
2022-09-15 18:48:22 +08:00
|
|
|
bool Exec_SRA() const;
|
2022-02-20 18:23:58 +08:00
|
|
|
|
|
|
|
bool Exec_OR() const {
|
|
|
|
unsigned int rd, rs1, rs2;
|
2022-07-22 19:28:36 +08:00
|
|
|
unsigned_T calc;
|
2022-02-20 18:23:58 +08:00
|
|
|
|
|
|
|
rd = this->get_rd();
|
|
|
|
rs1 = this->get_rs1();
|
|
|
|
rs2 = this->get_rs2();
|
|
|
|
|
|
|
|
calc = this->regs->getValue(rs1) | this->regs->getValue(rs2);
|
2022-07-22 19:28:36 +08:00
|
|
|
this->regs->setValue(rd, calc);
|
2022-02-20 18:23:58 +08:00
|
|
|
|
|
|
|
this->logger->debug("{} ns. PC: 0x{:x}. OR: x{:d} OR x{:d} -> x{:d}(0x{:x})",
|
|
|
|
sc_core::sc_time_stamp().value(),
|
|
|
|
this->regs->getPC(),
|
|
|
|
rs1, rs2, rd, calc);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Exec_AND() const {
|
|
|
|
unsigned int rd, rs1, rs2;
|
2022-07-22 19:28:36 +08:00
|
|
|
unsigned_T calc;
|
2022-02-20 18:23:58 +08:00
|
|
|
|
|
|
|
rd = this->get_rd();
|
|
|
|
rs1 = this->get_rs1();
|
|
|
|
rs2 = this->get_rs2();
|
|
|
|
|
|
|
|
calc = this->regs->getValue(rs1) & this->regs->getValue(rs2);
|
2022-07-22 19:28:36 +08:00
|
|
|
this->regs->setValue(rd, calc);
|
2022-02-20 18:23:58 +08:00
|
|
|
|
|
|
|
this->logger->debug("{} ns. PC: 0x{:x}. AND: x{:d} AND x{:d} -> x{:d}(0x{:x})",
|
|
|
|
sc_core::sc_time_stamp().value(),
|
|
|
|
this->regs->getPC(),
|
|
|
|
rs1, rs2, rd, calc);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Exec_FENCE() const {
|
|
|
|
this->logger->debug("{} ns. PC: 0x{:x}. FENCE");
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Exec_ECALL() {
|
|
|
|
|
|
|
|
this->logger->debug("{} ns. PC: 0x{:x}. ECALL");
|
|
|
|
|
|
|
|
std::cout << std::endl << "ECALL Instruction called, stopping simulation"
|
|
|
|
<< std::endl;
|
|
|
|
this->regs->dump();
|
|
|
|
std::cout << "Simulation time " << sc_core::sc_time_stamp() << "\n";
|
|
|
|
this->perf->dump();
|
|
|
|
|
|
|
|
#if 0
|
|
|
|
std::uint32_t gp_value = this->regs->getValue(Registers::gp);
|
|
|
|
if (gp_value == 1) {
|
|
|
|
std::cout << "GP value is 1, test result is OK" << "\n";
|
|
|
|
} else {
|
|
|
|
std::cout << "GP value is " << gp_value << "\n";
|
|
|
|
}
|
|
|
|
|
|
|
|
sc_core::sc_stop();
|
|
|
|
#else
|
|
|
|
this->RaiseException(11, this->m_instr);
|
2022-09-15 18:48:22 +08:00
|
|
|
sc_core::sc_stop();
|
2022-02-20 18:23:58 +08:00
|
|
|
#endif
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Exec_EBREAK() {
|
|
|
|
|
|
|
|
this->logger->debug("{} ns. PC: 0x{:x}. EBREAK");
|
|
|
|
std::cout << std::endl << "EBRAK Instruction called, dumping information"
|
|
|
|
<< std::endl;
|
|
|
|
this->regs->dump();
|
|
|
|
std::cout << "Simulation time " << sc_core::sc_time_stamp() << "\n";
|
|
|
|
this->perf->dump();
|
|
|
|
|
|
|
|
this->RaiseException(11, this->m_instr);
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Exec_CSRRW() const {
|
|
|
|
unsigned int rd, rs1;
|
|
|
|
int csr;
|
2022-09-15 18:48:22 +08:00
|
|
|
unsigned_T aux;
|
2022-02-20 18:23:58 +08:00
|
|
|
|
|
|
|
rd = this->get_rd();
|
|
|
|
rs1 = this->get_rs1();
|
|
|
|
csr = get_csr();
|
|
|
|
|
|
|
|
/* These operations must be atomical */
|
|
|
|
if (rd != 0) {
|
|
|
|
aux = this->regs->getCSR(csr);
|
2022-09-15 18:48:22 +08:00
|
|
|
this->regs->setValue(rd, aux);
|
2022-02-20 18:23:58 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
aux = this->regs->getValue(rs1);
|
|
|
|
this->regs->setCSR(csr, aux);
|
|
|
|
|
|
|
|
this->logger->debug("{} ns. PC: 0x{:x}. CSRRW: CSR #{:d} -> x{:d}(0x{:x})",
|
|
|
|
sc_core::sc_time_stamp().value(),
|
|
|
|
this->regs->getPC(),
|
|
|
|
csr, rd, aux);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Exec_CSRRS() const {
|
|
|
|
unsigned int rd, rs1;
|
|
|
|
int csr;
|
2022-09-15 18:48:22 +08:00
|
|
|
unsigned_T bitmask, aux, aux2;
|
2022-02-20 18:23:58 +08:00
|
|
|
|
|
|
|
rd = this->get_rd();
|
|
|
|
rs1 = this->get_rs1();
|
|
|
|
csr = get_csr();
|
|
|
|
|
|
|
|
if (rd == 0) {
|
2022-09-15 18:48:22 +08:00
|
|
|
this->logger->debug("{} ns. PC: 0x{:x}. CSRRS with rd1 == 0, doing nothing.",
|
|
|
|
sc_core::sc_time_stamp().value(), this->regs->getPC());
|
2022-02-20 18:23:58 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* These operations must be atomical */
|
|
|
|
aux = this->regs->getCSR(csr);
|
|
|
|
bitmask = this->regs->getValue(rs1);
|
|
|
|
|
2022-09-15 18:48:22 +08:00
|
|
|
this->regs->setValue(rd, aux);
|
2022-02-20 18:23:58 +08:00
|
|
|
|
|
|
|
aux2 = aux | bitmask;
|
|
|
|
this->regs->setCSR(csr, aux2);
|
|
|
|
|
|
|
|
this->logger->debug("{} ns. PC: 0x{:x}. CSRRS: CSR #{:d}(0x{:x}) -> x{:d}(0x{:x}) & CSR #{:d} <- 0x{:x}",
|
|
|
|
sc_core::sc_time_stamp().value(), this->regs->getPC(),
|
|
|
|
csr, aux, rd, rs1, csr, aux2);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Exec_CSRRC() const {
|
|
|
|
unsigned int rd, rs1;
|
|
|
|
int csr;
|
2022-09-15 18:48:22 +08:00
|
|
|
unsigned_T bitmask, aux, aux2;
|
2022-02-20 18:23:58 +08:00
|
|
|
|
|
|
|
rd = this->get_rd();
|
|
|
|
rs1 = this->get_rs1();
|
|
|
|
csr = get_csr();
|
|
|
|
|
|
|
|
if (rd == 0) {
|
2022-09-15 18:48:22 +08:00
|
|
|
this->logger->debug("{} ns. PC: 0x{:x}. CSRRC with rd1 == 0, doing nothing.",
|
|
|
|
sc_core::sc_time_stamp().value(), this->regs->getPC());
|
2022-02-20 18:23:58 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* These operations must be atomical */
|
|
|
|
aux = this->regs->getCSR(csr);
|
|
|
|
bitmask = this->regs->getValue(rs1);
|
|
|
|
|
2022-09-15 18:48:22 +08:00
|
|
|
this->regs->setValue(rd, aux);
|
2022-02-20 18:23:58 +08:00
|
|
|
|
|
|
|
aux2 = aux & ~bitmask;
|
|
|
|
this->regs->setCSR(csr, aux2);
|
|
|
|
|
|
|
|
this->logger->debug("{} ns. PC: 0x{:x}. CSRRC: CSR #{:d}(0x{:x}) -> x{:d}(0x{:x}) & CSR #{:d} <- 0x{:x}",
|
|
|
|
sc_core::sc_time_stamp().value(), this->regs->getPC(),
|
|
|
|
csr, aux, rd, rs1, csr, aux2);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Exec_CSRRWI() const {
|
|
|
|
unsigned int rd, rs1;
|
|
|
|
int csr;
|
2022-09-15 18:48:22 +08:00
|
|
|
unsigned_T aux;
|
2022-02-20 18:23:58 +08:00
|
|
|
|
|
|
|
rd = this->get_rd();
|
|
|
|
rs1 = this->get_rs1();
|
|
|
|
csr = get_csr();
|
|
|
|
|
|
|
|
/* These operations must be atomical */
|
|
|
|
if (rd != 0) {
|
|
|
|
aux = this->regs->getCSR(csr);
|
2022-09-15 18:48:22 +08:00
|
|
|
this->regs->setValue(rd, aux);
|
2022-02-20 18:23:58 +08:00
|
|
|
}
|
|
|
|
aux = rs1;
|
|
|
|
this->regs->setCSR(csr, aux);
|
|
|
|
|
|
|
|
this->logger->debug("{} ns. PC: 0x{:x}. CSRRWI: CSR #{:d} -> x{:d}. x{:d} -> CSR #{:d}",
|
|
|
|
sc_core::sc_time_stamp().value(), this->regs->getPC(),
|
|
|
|
csr, rd, rs1, csr);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Exec_CSRRSI() const {
|
|
|
|
unsigned int rd, rs1;
|
|
|
|
int csr;
|
2022-09-15 18:48:22 +08:00
|
|
|
unsigned_T bitmask, aux;
|
2022-02-20 18:23:58 +08:00
|
|
|
|
|
|
|
rd = this->get_rd();
|
|
|
|
rs1 = this->get_rs1();
|
|
|
|
csr = get_csr();
|
|
|
|
|
|
|
|
if (rs1 == 0) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* These operations must be atomical */
|
|
|
|
aux = this->regs->getCSR(csr);
|
2022-09-15 18:48:22 +08:00
|
|
|
this->regs->setValue(rd, aux);
|
2022-02-20 18:23:58 +08:00
|
|
|
|
|
|
|
bitmask = rs1;
|
|
|
|
aux = aux | bitmask;
|
|
|
|
this->regs->setCSR(csr, aux);
|
|
|
|
|
|
|
|
this->logger->debug("{} ns. PC: 0x{:x}. CSRRSI: CSR #{:d} -> x{:d}. x{:d} & CSR #{:d}(0x{:x})",
|
|
|
|
sc_core::sc_time_stamp().value(), this->regs->getPC(),
|
|
|
|
csr, rd, rs1, csr, aux);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Exec_CSRRCI() const {
|
|
|
|
unsigned rd, rs1;
|
|
|
|
int csr;
|
2022-09-15 18:48:22 +08:00
|
|
|
unsigned_T bitmask, aux;
|
2022-02-20 18:23:58 +08:00
|
|
|
|
|
|
|
rd = this->get_rd();
|
|
|
|
rs1 = this->get_rs1();
|
|
|
|
csr = get_csr();
|
|
|
|
|
|
|
|
if (rs1 == 0) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* These operations must be atomical */
|
|
|
|
aux = this->regs->getCSR(csr);
|
2022-09-15 18:48:22 +08:00
|
|
|
this->regs->setValue(rd, aux);
|
2022-02-20 18:23:58 +08:00
|
|
|
|
|
|
|
bitmask = rs1;
|
|
|
|
aux = aux & ~bitmask;
|
|
|
|
this->regs->setCSR(csr, aux);
|
|
|
|
|
|
|
|
this->logger->debug("{} ns. PC: 0x{:x}. CSRRCI: CSR #{:d} -> x{:d}. x{:d} & CSR #{:d}(0x{:x})",
|
|
|
|
sc_core::sc_time_stamp().value(), this->regs->getPC(),
|
|
|
|
csr, rd, rs1, csr, aux);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*********************** Privileged Instructions ******************************/
|
|
|
|
|
|
|
|
bool Exec_MRET() const {
|
2022-09-15 18:48:22 +08:00
|
|
|
unsigned_T new_pc = 0;
|
2022-02-20 18:23:58 +08:00
|
|
|
|
|
|
|
new_pc = this->regs->getCSR(CSR_MEPC);
|
|
|
|
this->regs->setPC(new_pc);
|
|
|
|
|
|
|
|
this->logger->debug("{} ns. PC: 0x{:x}. MRET: PC <- 0x{:x}", sc_core::sc_time_stamp().value(),
|
|
|
|
this->regs->getPC(), new_pc);
|
|
|
|
|
|
|
|
// update mstatus
|
2022-09-15 18:48:22 +08:00
|
|
|
unsigned_T csr_temp;
|
2022-02-20 18:23:58 +08:00
|
|
|
csr_temp = this->regs->getCSR(CSR_MSTATUS);
|
|
|
|
if (csr_temp & MSTATUS_MPIE) {
|
|
|
|
csr_temp |= MSTATUS_MIE;
|
|
|
|
}
|
|
|
|
csr_temp |= MSTATUS_MPIE;
|
|
|
|
this->regs->setCSR(CSR_MSTATUS, csr_temp);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Exec_SRET() const {
|
2022-09-15 18:48:22 +08:00
|
|
|
unsigned_T new_pc = 0;
|
2022-02-20 18:23:58 +08:00
|
|
|
|
|
|
|
new_pc = this->regs->getCSR(CSR_SEPC);
|
|
|
|
this->regs->setPC(new_pc);
|
|
|
|
|
|
|
|
this->logger->debug("{} ns. PC: 0x{:x}. SRET: PC <- 0x{:x}", sc_core::sc_time_stamp().value(),
|
|
|
|
this->regs->getPC());
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Exec_WFI() const {
|
|
|
|
this->logger->debug("{} ns. PC: 0x{:x}. WFI");
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Exec_SFENCE() const {
|
|
|
|
this->logger->debug("{} ns. PC: 0x{:x}. SFENCE");
|
|
|
|
return true;
|
|
|
|
}
|
2021-11-30 03:35:26 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Executes default ISA instruction
|
|
|
|
* @param inst instruction to execute
|
|
|
|
* @return true if PC is affected by instruction
|
|
|
|
*/
|
2022-02-20 18:23:58 +08:00
|
|
|
bool process_instruction(Instruction &inst, bool *breakpoint = nullptr) {
|
|
|
|
bool PC_not_affected = true;
|
|
|
|
|
|
|
|
*breakpoint = false;
|
|
|
|
this->setInstr(inst.getInstr());
|
|
|
|
|
|
|
|
switch (decode()) {
|
|
|
|
case OP_LUI:
|
|
|
|
Exec_LUI();
|
|
|
|
break;
|
|
|
|
case OP_AUIPC:
|
|
|
|
Exec_AUIPC();
|
|
|
|
break;
|
|
|
|
case OP_JAL:
|
|
|
|
Exec_JAL();
|
|
|
|
PC_not_affected = false;
|
|
|
|
break;
|
|
|
|
case OP_JALR:
|
|
|
|
Exec_JALR();
|
|
|
|
PC_not_affected = false;
|
|
|
|
break;
|
|
|
|
case OP_BEQ:
|
|
|
|
Exec_BEQ();
|
|
|
|
PC_not_affected = false;
|
|
|
|
break;
|
|
|
|
case OP_BNE:
|
|
|
|
Exec_BNE();
|
|
|
|
PC_not_affected = false;
|
|
|
|
break;
|
|
|
|
case OP_BLT:
|
|
|
|
Exec_BLT();
|
|
|
|
PC_not_affected = false;
|
|
|
|
break;
|
|
|
|
case OP_BGE:
|
|
|
|
Exec_BGE();
|
|
|
|
PC_not_affected = false;
|
|
|
|
break;
|
|
|
|
case OP_BLTU:
|
|
|
|
Exec_BLTU();
|
|
|
|
PC_not_affected = false;
|
|
|
|
break;
|
|
|
|
case OP_BGEU:
|
|
|
|
Exec_BGEU();
|
|
|
|
PC_not_affected = false;
|
|
|
|
break;
|
|
|
|
case OP_LB:
|
|
|
|
Exec_LB();
|
|
|
|
break;
|
|
|
|
case OP_LH:
|
|
|
|
Exec_LH();
|
|
|
|
break;
|
|
|
|
case OP_LW:
|
|
|
|
Exec_LW();
|
|
|
|
break;
|
|
|
|
case OP_LBU:
|
|
|
|
Exec_LBU();
|
|
|
|
break;
|
|
|
|
case OP_LHU:
|
|
|
|
Exec_LHU();
|
|
|
|
break;
|
2022-09-15 18:48:22 +08:00
|
|
|
case OP_LWU:
|
|
|
|
Exec_LWU();
|
|
|
|
break;
|
|
|
|
case OP_LD:
|
|
|
|
Exec_LD();
|
|
|
|
break;
|
2022-02-20 18:23:58 +08:00
|
|
|
case OP_SB:
|
|
|
|
Exec_SB();
|
|
|
|
break;
|
|
|
|
case OP_SH:
|
|
|
|
Exec_SH();
|
|
|
|
break;
|
|
|
|
case OP_SW:
|
|
|
|
Exec_SW();
|
|
|
|
break;
|
2022-09-15 18:48:22 +08:00
|
|
|
case OP_SD:
|
|
|
|
Exec_SD();
|
|
|
|
break;
|
2022-02-20 18:23:58 +08:00
|
|
|
case OP_ADDI:
|
|
|
|
Exec_ADDI();
|
|
|
|
break;
|
|
|
|
case OP_SLTI:
|
|
|
|
Exec_SLTI();
|
|
|
|
break;
|
|
|
|
case OP_SLTIU:
|
|
|
|
Exec_SLTIU();
|
|
|
|
break;
|
|
|
|
case OP_XORI:
|
|
|
|
Exec_XORI();
|
|
|
|
break;
|
|
|
|
case OP_ORI:
|
|
|
|
Exec_ORI();
|
|
|
|
break;
|
|
|
|
case OP_ANDI:
|
|
|
|
Exec_ANDI();
|
|
|
|
break;
|
|
|
|
case OP_SLLI:
|
|
|
|
PC_not_affected = Exec_SLLI();
|
|
|
|
break;
|
|
|
|
case OP_SRLI:
|
|
|
|
Exec_SRLI();
|
|
|
|
break;
|
|
|
|
case OP_SRAI:
|
|
|
|
Exec_SRAI();
|
|
|
|
break;
|
|
|
|
case OP_ADD:
|
|
|
|
Exec_ADD();
|
|
|
|
break;
|
|
|
|
case OP_SUB:
|
|
|
|
Exec_SUB();
|
|
|
|
break;
|
|
|
|
case OP_SLL:
|
|
|
|
Exec_SLL();
|
|
|
|
break;
|
|
|
|
case OP_SLT:
|
|
|
|
Exec_SLT();
|
|
|
|
break;
|
|
|
|
case OP_SLTU:
|
|
|
|
Exec_SLTU();
|
|
|
|
break;
|
|
|
|
case OP_XOR:
|
|
|
|
Exec_XOR();
|
|
|
|
break;
|
|
|
|
case OP_SRL:
|
|
|
|
Exec_SRL();
|
|
|
|
break;
|
|
|
|
case OP_SRA:
|
|
|
|
Exec_SRA();
|
|
|
|
break;
|
|
|
|
case OP_OR:
|
|
|
|
Exec_OR();
|
|
|
|
break;
|
|
|
|
case OP_AND:
|
|
|
|
Exec_AND();
|
|
|
|
break;
|
|
|
|
case OP_FENCE:
|
|
|
|
Exec_FENCE();
|
|
|
|
break;
|
|
|
|
case OP_ECALL:
|
|
|
|
Exec_ECALL();
|
|
|
|
*breakpoint = true;
|
|
|
|
std::cout << "ECALL" << std::endl;
|
|
|
|
break;
|
|
|
|
case OP_EBREAK:
|
|
|
|
PC_not_affected = Exec_EBREAK();
|
|
|
|
// *breakpoint = true;
|
|
|
|
break;
|
|
|
|
case OP_CSRRW:
|
|
|
|
Exec_CSRRW();
|
|
|
|
break;
|
|
|
|
case OP_CSRRS:
|
|
|
|
Exec_CSRRS();
|
|
|
|
break;
|
|
|
|
case OP_CSRRC:
|
|
|
|
Exec_CSRRC();
|
|
|
|
break;
|
|
|
|
case OP_CSRRWI:
|
|
|
|
Exec_CSRRWI();
|
|
|
|
break;
|
|
|
|
case OP_CSRRSI:
|
|
|
|
Exec_CSRRSI();
|
|
|
|
break;
|
|
|
|
case OP_CSRRCI:
|
|
|
|
Exec_CSRRCI();
|
|
|
|
break;
|
|
|
|
case OP_MRET:
|
|
|
|
Exec_MRET();
|
|
|
|
PC_not_affected = false;
|
|
|
|
break;
|
|
|
|
case OP_SRET:
|
|
|
|
Exec_SRET();
|
|
|
|
PC_not_affected = false;
|
|
|
|
break;
|
|
|
|
case OP_WFI:
|
|
|
|
Exec_WFI();
|
|
|
|
break;
|
|
|
|
case OP_SFENCE:
|
|
|
|
Exec_SFENCE();
|
|
|
|
break;
|
2022-09-15 18:48:22 +08:00
|
|
|
case OP_ADDIW:
|
|
|
|
Exec_ADDIW();
|
|
|
|
break;
|
|
|
|
case OP_SLLIW:
|
|
|
|
Exec_SLLIW();
|
|
|
|
break;
|
|
|
|
case OP_SRLIW:
|
|
|
|
Exec_SRLIW();
|
|
|
|
break;
|
|
|
|
case OP_SRAIW:
|
|
|
|
Exec_SRAIW();
|
|
|
|
break;
|
|
|
|
case OP_ADDW:
|
|
|
|
Exec_ADDW();
|
|
|
|
break;
|
|
|
|
case OP_SUBW:
|
|
|
|
Exec_SUBW();
|
|
|
|
break;
|
|
|
|
case OP_SLLW:
|
|
|
|
Exec_SLLW();
|
|
|
|
break;
|
|
|
|
case OP_SRLW:
|
|
|
|
Exec_SRLW();
|
|
|
|
break;
|
|
|
|
case OP_SRAW:
|
|
|
|
Exec_SRAW();
|
|
|
|
break;
|
|
|
|
[[unlikely]] default:
|
2022-02-20 18:23:58 +08:00
|
|
|
std::cout << "Wrong instruction" << "\n";
|
|
|
|
inst.dump();
|
|
|
|
this->NOP();
|
|
|
|
//sc_stop();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return PC_not_affected;
|
|
|
|
}
|
2021-11-30 03:35:26 +08:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @brief Decodes opcode of instruction
|
|
|
|
* @return opcode of instruction
|
|
|
|
*/
|
2022-02-20 18:23:58 +08:00
|
|
|
opCodes decode() {
|
|
|
|
switch (opcode()) {
|
|
|
|
case LUI:
|
|
|
|
return OP_LUI;
|
|
|
|
case AUIPC:
|
|
|
|
return OP_AUIPC;
|
|
|
|
case JAL:
|
|
|
|
return OP_JAL;
|
|
|
|
case JALR:
|
|
|
|
return OP_JALR;
|
|
|
|
case BEQ:
|
|
|
|
switch (this->get_funct3()) {
|
|
|
|
case BEQ_F:
|
|
|
|
return OP_BEQ;
|
|
|
|
case BNE_F:
|
|
|
|
return OP_BNE;
|
|
|
|
case BLT_F:
|
|
|
|
return OP_BLT;
|
|
|
|
case BGE_F:
|
|
|
|
return OP_BGE;
|
|
|
|
case BLTU_F:
|
|
|
|
return OP_BLTU;
|
|
|
|
case BGEU_F:
|
|
|
|
return OP_BGEU;
|
|
|
|
}
|
|
|
|
return OP_ERROR;
|
|
|
|
case LB:
|
|
|
|
switch (this->get_funct3()) {
|
|
|
|
case LB_F:
|
|
|
|
return OP_LB;
|
|
|
|
case LH_F:
|
|
|
|
return OP_LH;
|
|
|
|
case LW_F:
|
|
|
|
return OP_LW;
|
|
|
|
case LBU_F:
|
|
|
|
return OP_LBU;
|
|
|
|
case LHU_F:
|
|
|
|
return OP_LHU;
|
2022-09-15 18:48:22 +08:00
|
|
|
case LWU_F:
|
|
|
|
return OP_LWU;
|
|
|
|
case LD_F:
|
|
|
|
return OP_LD;
|
2022-02-20 18:23:58 +08:00
|
|
|
}
|
|
|
|
return OP_ERROR;
|
|
|
|
case SB:
|
|
|
|
switch (this->get_funct3()) {
|
|
|
|
case SB_F:
|
|
|
|
return OP_SB;
|
|
|
|
case SH_F:
|
|
|
|
return OP_SH;
|
|
|
|
case SW_F:
|
|
|
|
return OP_SW;
|
2022-09-15 18:48:22 +08:00
|
|
|
case SD_F:
|
|
|
|
return OP_SD;
|
2022-02-20 18:23:58 +08:00
|
|
|
}
|
|
|
|
return OP_ERROR;
|
|
|
|
case ADDI:
|
|
|
|
switch (this->get_funct3()) {
|
|
|
|
case ADDI_F:
|
|
|
|
return OP_ADDI;
|
|
|
|
case SLTI_F:
|
|
|
|
return OP_SLTI;
|
|
|
|
case SLTIU_F:
|
|
|
|
return OP_SLTIU;
|
|
|
|
case XORI_F:
|
|
|
|
return OP_XORI;
|
|
|
|
case ORI_F:
|
|
|
|
return OP_ORI;
|
|
|
|
case ANDI_F:
|
|
|
|
return OP_ANDI;
|
|
|
|
case SLLI_F:
|
|
|
|
return OP_SLLI;
|
|
|
|
case SRLI_F:
|
2022-09-15 18:48:22 +08:00
|
|
|
// TODO: Why funct7b is not working?
|
|
|
|
//switch (this->get_funct7b()) {
|
|
|
|
switch(this->m_instr.to_uint() >> 26) {
|
2022-02-20 18:23:58 +08:00
|
|
|
case SRLI_F7:
|
|
|
|
return OP_SRLI;
|
|
|
|
case SRAI_F7:
|
|
|
|
return OP_SRAI;
|
|
|
|
}
|
|
|
|
return OP_ERROR;
|
|
|
|
}
|
|
|
|
return OP_ERROR;
|
|
|
|
case ADD: {
|
|
|
|
switch (this->get_funct3()) {
|
|
|
|
case ADD_F:
|
|
|
|
switch (this->get_funct7()) {
|
|
|
|
case ADD_F7:
|
|
|
|
return OP_ADD;
|
|
|
|
case SUB_F7:
|
|
|
|
return OP_SUB;
|
|
|
|
default:
|
|
|
|
return OP_ADD;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case SLL_F:
|
|
|
|
return OP_SLL;
|
|
|
|
case SLT_F:
|
|
|
|
return OP_SLT;
|
|
|
|
case SLTU_F:
|
|
|
|
return OP_SLTU;
|
|
|
|
case XOR_F:
|
|
|
|
return OP_XOR;
|
|
|
|
case SRL_F:
|
|
|
|
switch (this->get_funct7()) {
|
|
|
|
case SRL_F7:
|
|
|
|
return OP_SRL;
|
|
|
|
case SRA_F7:
|
|
|
|
return OP_SRA;
|
|
|
|
default:
|
|
|
|
return OP_ERROR;
|
|
|
|
}
|
|
|
|
case OR_F:
|
|
|
|
return OP_OR;
|
|
|
|
case AND_F:
|
|
|
|
return OP_AND;
|
|
|
|
default:
|
|
|
|
return OP_ERROR;
|
|
|
|
}
|
|
|
|
} /* ADD */
|
|
|
|
case FENCE:
|
|
|
|
return OP_FENCE;
|
|
|
|
case ECALL: {
|
|
|
|
switch (this->get_funct3()) {
|
|
|
|
case ECALL_F3:
|
|
|
|
switch (this->get_csr()) {
|
|
|
|
case ECALL_F:
|
|
|
|
return OP_ECALL;
|
|
|
|
case EBREAK_F:
|
|
|
|
return OP_EBREAK;
|
|
|
|
case URET_F:
|
|
|
|
return OP_URET;
|
|
|
|
case SRET_F:
|
|
|
|
return OP_SRET;
|
|
|
|
case MRET_F:
|
|
|
|
return OP_MRET;
|
|
|
|
case WFI_F:
|
|
|
|
return OP_WFI;
|
|
|
|
case SFENCE_F:
|
|
|
|
return OP_SFENCE;
|
|
|
|
}
|
|
|
|
if (this->m_instr.range(31, 25) == 0b0001001) {
|
|
|
|
return OP_SFENCE;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case CSRRW:
|
|
|
|
return OP_CSRRW;
|
|
|
|
break;
|
|
|
|
case CSRRS:
|
|
|
|
return OP_CSRRS;
|
|
|
|
break;
|
|
|
|
case CSRRC:
|
|
|
|
return OP_CSRRC;
|
|
|
|
break;
|
|
|
|
case CSRRWI:
|
|
|
|
return OP_CSRRWI;
|
|
|
|
break;
|
|
|
|
case CSRRSI:
|
|
|
|
return OP_CSRRSI;
|
|
|
|
break;
|
|
|
|
case CSRRCI:
|
|
|
|
return OP_CSRRCI;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2022-09-15 18:48:22 +08:00
|
|
|
case ADDIW:
|
|
|
|
switch (this->get_funct3()) {
|
|
|
|
case ADDIW_F:
|
|
|
|
return OP_ADDIW;
|
|
|
|
break;
|
|
|
|
case SLLIW_F:
|
|
|
|
return OP_SLLIW;
|
|
|
|
break;
|
|
|
|
case SRLIW_F:
|
|
|
|
switch (this->m_instr.to_uint() >> 26) {
|
|
|
|
case SRLIW_F7:
|
|
|
|
return OP_SRLIW;
|
|
|
|
break;
|
|
|
|
case SRAIW_F7:
|
|
|
|
return OP_SRAIW;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return OP_ERROR;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return OP_ERROR;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case ADDW:
|
|
|
|
switch (this->get_funct3()) {
|
|
|
|
case ADDW_F:
|
|
|
|
switch (this->m_instr.to_uint() >> 26) {
|
|
|
|
case ADDW_F7:
|
|
|
|
return OP_ADDW;
|
|
|
|
break;
|
|
|
|
case SUBW_F7:
|
|
|
|
return OP_SUBW;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return OP_ERROR;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case SLLW:
|
|
|
|
return OP_SLLW;
|
|
|
|
break;
|
|
|
|
case SRLW:
|
|
|
|
switch (this->m_instr.to_uint() >> 26) {
|
|
|
|
case SRLW_F7:
|
|
|
|
return OP_SRLW;
|
|
|
|
break;
|
|
|
|
case SRAW_F7:
|
|
|
|
return OP_SRAW;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return OP_ERROR;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
return OP_ERROR;
|
|
|
|
}
|
|
|
|
|
2022-02-20 18:23:58 +08:00
|
|
|
default:
|
|
|
|
return OP_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
return OP_ERROR;
|
|
|
|
}
|
2021-11-30 03:35:26 +08:00
|
|
|
};
|
|
|
|
}
|
2020-06-02 19:08:38 +08:00
|
|
|
#endif
|