DBT-RISE-TGC/gen_input/templates/asmjit/CORENAME.cpp.gtl

369 lines
15 KiB
Plaintext
Raw Normal View History

2023-10-22 15:11:20 +02:00
/*******************************************************************************
2024-06-21 10:49:36 +02:00
* Copyright (C) 2017-2024 MINRES Technologies GmbH
2023-10-22 15:11:20 +02:00
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* 1. Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
*
* 3. Neither the name of the copyright holder nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
*******************************************************************************/
2023-11-05 17:19:43 +01:00
// clang-format off
2023-10-22 15:11:20 +02:00
#include <iss/arch/${coreDef.name.toLowerCase()}.h>
#include <iss/debugger/gdb_session.h>
#include <iss/debugger/server.h>
#include <iss/iss.h>
#include <iss/asmjit/vm_base.h>
#include <asmjit/asmjit.h>
#include <util/logging.h>
2024-07-25 10:13:10 +02:00
#include <iss/instruction_decoder.h>
<%def fcsr = registers.find {it.name=='FCSR'}
if(fcsr != null) {%>
#include <vm/fp_functions.h><%}%>
2023-10-22 15:11:20 +02:00
#ifndef FMT_HEADER_ONLY
#define FMT_HEADER_ONLY
#endif
#include <fmt/format.h>
#include <array>
#include <iss/debugger/riscv_target_adapter.h>
namespace iss {
namespace asmjit {
namespace ${coreDef.name.toLowerCase()} {
using namespace ::asmjit;
using namespace iss::arch;
using namespace iss::debugger;
template <typename ARCH> class vm_impl : public iss::asmjit::vm_base<ARCH> {
public:
using traits = arch::traits<ARCH>;
using super = typename iss::asmjit::vm_base<ARCH>;
using virt_addr_t = typename super::virt_addr_t;
using phys_addr_t = typename super::phys_addr_t;
using code_word_t = typename super::code_word_t;
using mem_type_e = typename super::mem_type_e;
using addr_t = typename super::addr_t;
vm_impl();
vm_impl(ARCH &core, unsigned core_id = 0, unsigned cluster_id = 0);
void enableDebug(bool enable) { super::sync_exec = super::ALL_SYNC; }
target_adapter_if *accquire_target_adapter(server_if *srv) override {
debugger_if::dbg_enabled = true;
if (vm_base<ARCH>::tgt_adapter == nullptr)
vm_base<ARCH>::tgt_adapter = new riscv_target_adapter<ARCH>(srv, this->get_arch());
return vm_base<ARCH>::tgt_adapter;
}
protected:
2024-04-30 19:21:27 +02:00
using super::get_ptr_for;
using super::get_reg_for;
2024-07-03 12:45:13 +02:00
using super::get_reg_for_Gp;
2024-04-30 19:21:27 +02:00
using super::load_reg_from_mem;
2024-07-03 12:45:13 +02:00
using super::load_reg_from_mem_Gp;
2024-04-30 19:21:27 +02:00
using super::write_reg_to_mem;
using super::gen_read_mem;
using super::gen_write_mem;
using super::gen_leave;
2024-07-03 18:32:05 +02:00
using super::gen_sync;
2024-04-30 19:21:27 +02:00
2023-10-22 15:11:20 +02:00
using this_class = vm_impl<ARCH>;
using compile_func = continuation_e (this_class::*)(virt_addr_t&, code_word_t, jit_holder&);
continuation_e gen_single_inst_behavior(virt_addr_t&, unsigned int &, jit_holder&) override;
2024-07-23 15:45:51 +02:00
enum globals_e {TVAL = 0, GLOBALS_SIZE};
2024-04-30 19:21:27 +02:00
void gen_block_prologue(jit_holder& jh) override;
void gen_block_epilogue(jit_holder& jh) override;
2023-10-22 15:11:20 +02:00
inline const char *name(size_t index){return traits::reg_aliases.at(index);}
<%if(fcsr != null) {%>
inline const char *fname(size_t index){return index < 32?name(index+traits::F0):"illegal";}
<%}%>
2024-04-30 19:21:27 +02:00
void gen_instr_prologue(jit_holder& jh);
void gen_instr_epilogue(jit_holder& jh);
inline void gen_raise(jit_holder& jh, uint16_t trap_id, uint16_t cause);
template <typename T, typename = typename std::enable_if<std::is_integral<T>::value>::type> void gen_set_tval(jit_holder& jh, T new_tval) ;
void gen_set_tval(jit_holder& jh, x86_reg_t _new_tval) ;
2024-04-30 19:21:27 +02:00
2023-10-22 15:11:20 +02:00
template<unsigned W, typename U, typename S = typename std::make_signed<U>::type>
inline S sext(U from) {
auto mask = (1ULL<<W) - 1;
auto sign_mask = 1ULL<<(W-1);
return (from & mask) | ((from & sign_mask) ? ~mask : 0);
}
<%functions.each{ it.eachLine { %>
${it}<%}%>
<%}%>
2023-10-22 15:11:20 +02:00
private:
/****************************************************************************
* start opcode definitions
****************************************************************************/
struct instruction_descriptor {
uint32_t length;
2023-10-22 15:11:20 +02:00
uint32_t value;
uint32_t mask;
compile_func op;
};
2024-06-21 10:49:36 +02:00
const std::array<instruction_descriptor, ${instructions.size()}> instr_descr = {{
2023-10-22 15:11:20 +02:00
/* entries are: size, valid value, valid mask, function ptr */<%instructions.each{instr -> %>
/* instruction ${instr.instruction.name}, encoding '${instr.encoding}' */
{${instr.length}, ${instr.encoding}, ${instr.mask}, &this_class::__${generator.functionName(instr.name)}},<%}%>
}};
//needs to be declared after instr_descr
decoder instr_decoder;
2023-10-22 15:11:20 +02:00
/* instruction definitions */<%instructions.eachWithIndex{instr, idx -> %>
/* instruction ${idx}: ${instr.name} */
continuation_e __${generator.functionName(instr.name)}(virt_addr_t& pc, code_word_t instr, jit_holder& jh){
uint64_t PC = pc.val;
<%instr.fields.eachLine{%>${it}
<%}%>if(this->disass_enabled){
/* generate disass */
2024-03-07 13:58:08 +01:00
<%instr.disass.eachLine{%>
${it}<%}%>
InvokeNode* call_print_disass;
char* mnemonic_ptr = strdup(mnemonic.c_str());
jh.disass_collection.push_back(mnemonic_ptr);
2024-07-05 07:51:37 +02:00
jh.cc.invoke(&call_print_disass, &print_disass, FuncSignature::build<void, void *, uint64_t, char *>());
2024-03-07 13:58:08 +01:00
call_print_disass->setArg(0, jh.arch_if_ptr);
call_print_disass->setArg(1, pc.val);
call_print_disass->setArg(2, mnemonic_ptr);
2023-10-22 15:11:20 +02:00
}
x86::Compiler& cc = jh.cc;
2024-04-30 19:21:27 +02:00
cc.comment(fmt::format("${instr.name}_{:#x}:",pc.val).c_str());
2024-07-03 18:32:05 +02:00
gen_sync(jh, PRE_SYNC, ${idx});
2024-07-03 12:45:13 +02:00
mov(cc, jh.pc, pc.val);
gen_set_tval(jh, instr);
2024-04-30 19:21:27 +02:00
pc = pc+${instr.length/8};
2024-07-03 12:45:13 +02:00
mov(cc, jh.next_pc, pc.val);
2024-04-30 19:21:27 +02:00
gen_instr_prologue(jh);
cc.comment("//behavior:");
2023-10-22 15:11:20 +02:00
/*generate behavior*/
<%instr.behavior.eachLine{%>${it}
<%}%>
2024-07-03 18:32:05 +02:00
gen_sync(jh, POST_SYNC, ${idx});
gen_instr_epilogue(jh);
2023-10-22 15:11:20 +02:00
return returnValue;
}
<%}%>
/****************************************************************************
* end opcode definitions
****************************************************************************/
2024-07-17 17:24:17 +02:00
continuation_e illegal_instruction(virt_addr_t &pc, code_word_t instr, jit_holder& jh ) {
x86::Compiler& cc = jh.cc;
if(this->disass_enabled){
auto mnemonic = std::string("illegal_instruction");
InvokeNode* call_print_disass;
char* mnemonic_ptr = strdup(mnemonic.c_str());
jh.disass_collection.push_back(mnemonic_ptr);
jh.cc.invoke(&call_print_disass, &print_disass, FuncSignature::build<void, void *, uint64_t, char *>());
call_print_disass->setArg(0, jh.arch_if_ptr);
call_print_disass->setArg(1, pc.val);
call_print_disass->setArg(2, mnemonic_ptr);
}
2024-07-17 17:24:17 +02:00
cc.comment(fmt::format("illegal_instruction{:#x}:",pc.val).c_str());
2024-07-03 18:32:05 +02:00
gen_sync(jh, PRE_SYNC, instr_descr.size());
mov(cc, jh.pc, pc.val);
gen_set_tval(jh, instr);
pc = pc + ((instr & 3) == 3 ? 4 : 2);
mov(cc, jh.next_pc, pc.val);
gen_instr_prologue(jh);
cc.comment("//behavior:");
gen_raise(jh, 0, 2);
2024-07-03 18:32:05 +02:00
gen_sync(jh, POST_SYNC, instr_descr.size());
gen_instr_epilogue(jh);
return ILLEGAL_INSTR;
}
2023-10-22 15:11:20 +02:00
};
template <typename ARCH> vm_impl<ARCH>::vm_impl() { this(new ARCH()); }
template <typename ARCH>
vm_impl<ARCH>::vm_impl(ARCH &core, unsigned core_id, unsigned cluster_id)
: vm_base<ARCH>(core, core_id, cluster_id)
, instr_decoder([this]() {
std::vector<generic_instruction_descriptor> g_instr_descr;
g_instr_descr.reserve(instr_descr.size());
for (uint32_t i = 0; i < instr_descr.size(); ++i) {
generic_instruction_descriptor new_instr_descr {instr_descr[i].value, instr_descr[i].mask, i};
g_instr_descr.push_back(new_instr_descr);
}
return std::move(g_instr_descr);
}()) {}
2023-10-22 15:11:20 +02:00
template <typename ARCH>
2024-04-30 19:21:27 +02:00
continuation_e vm_impl<ARCH>::gen_single_inst_behavior(virt_addr_t &pc, unsigned int &inst_cnt, jit_holder& jh) {
2023-10-22 15:11:20 +02:00
enum {TRAP_ID=1<<16};
code_word_t instr = 0;
phys_addr_t paddr(pc);
auto *const data = (uint8_t *)&instr;
if(this->core.has_mmu())
paddr = this->core.virt2phys(pc);
auto res = this->core.read(paddr, 4, data);
if (res != iss::Ok)
return ILLEGAL_FETCH;
2023-10-22 15:11:20 +02:00
if (instr == 0x0000006f || (instr&0xffff)==0xa001)
return JUMP_TO_SELF;
2023-10-22 15:11:20 +02:00
++inst_cnt;
uint32_t inst_index = instr_decoder.decode_instr(instr);
compile_func f = nullptr;
if(inst_index < instr_descr.size())
f = instr_descr[inst_index].op;
2023-10-22 15:11:20 +02:00
if (f == nullptr)
2024-07-17 17:24:17 +02:00
f = &this_class::illegal_instruction;
2023-10-22 15:11:20 +02:00
return (this->*f)(pc, instr, jh);
}
2024-04-30 19:21:27 +02:00
template <typename ARCH>
void vm_impl<ARCH>::gen_instr_prologue(jit_holder& jh) {
auto& cc = jh.cc;
2024-05-09 13:47:36 +02:00
cc.comment("//gen_instr_prologue");
2023-10-22 15:11:20 +02:00
2024-07-03 18:32:05 +02:00
x86_reg_t current_trap_state = get_reg_for(cc, traits::TRAP_STATE);
2024-07-03 12:45:13 +02:00
mov(cc, current_trap_state, get_ptr_for(jh, traits::TRAP_STATE));
mov(cc, get_ptr_for(jh, traits::PENDING_TRAP), current_trap_state);
2023-10-22 15:11:20 +02:00
2024-04-30 19:21:27 +02:00
}
template <typename ARCH>
void vm_impl<ARCH>::gen_instr_epilogue(jit_holder& jh) {
auto& cc = jh.cc;
2023-10-22 15:11:20 +02:00
2024-05-09 13:47:36 +02:00
cc.comment("//gen_instr_epilogue");
2024-07-03 18:32:05 +02:00
x86_reg_t current_trap_state = get_reg_for(cc, traits::TRAP_STATE);
2024-07-03 12:45:13 +02:00
mov(cc, current_trap_state, get_ptr_for(jh, traits::TRAP_STATE));
cmp(cc, current_trap_state, 0);
2024-04-30 19:21:27 +02:00
cc.jne(jh.trap_entry);
cc.inc(get_ptr_for(jh, traits::ICOUNT));
2024-04-30 19:21:27 +02:00
}
template <typename ARCH>
void vm_impl<ARCH>::gen_block_prologue(jit_holder& jh){
2024-07-03 12:45:13 +02:00
jh.pc = load_reg_from_mem_Gp(jh, traits::PC);
jh.next_pc = load_reg_from_mem_Gp(jh, traits::NEXT_PC);
2024-07-23 15:45:51 +02:00
jh.globals.resize(GLOBALS_SIZE);
jh.globals[TVAL] = get_reg_Gp(jh.cc, 64, false);
2024-04-30 19:21:27 +02:00
}
template <typename ARCH>
void vm_impl<ARCH>::gen_block_epilogue(jit_holder& jh){
x86::Compiler& cc = jh.cc;
2024-05-09 13:47:36 +02:00
cc.comment("//gen_block_epilogue");
2024-04-30 19:21:27 +02:00
cc.ret(jh.next_pc);
cc.bind(jh.trap_entry);
2024-05-08 15:18:38 +02:00
this->write_back(jh);
2024-04-30 19:21:27 +02:00
2024-07-03 18:32:05 +02:00
x86::Gp current_trap_state = get_reg_for_Gp(cc, traits::TRAP_STATE);
2024-07-03 12:45:13 +02:00
mov(cc, current_trap_state, get_ptr_for(jh, traits::TRAP_STATE));
2024-04-30 19:21:27 +02:00
2024-07-03 18:32:05 +02:00
x86::Gp current_pc = get_reg_for_Gp(cc, traits::PC);
2024-07-03 12:45:13 +02:00
mov(cc, current_pc, get_ptr_for(jh, traits::PC));
2024-04-30 19:21:27 +02:00
cc.comment("//enter trap call;");
InvokeNode* call_enter_trap;
2024-07-05 07:51:37 +02:00
cc.invoke(&call_enter_trap, &enter_trap, FuncSignature::build<uint64_t, void*, uint64_t, uint64_t, uint64_t>());
2024-04-30 19:21:27 +02:00
call_enter_trap->setArg(0, jh.arch_if_ptr);
call_enter_trap->setArg(1, current_trap_state);
call_enter_trap->setArg(2, current_pc);
2024-07-23 15:45:51 +02:00
call_enter_trap->setArg(3, jh.globals[TVAL]);
2024-04-30 19:21:27 +02:00
2024-07-03 18:32:05 +02:00
x86_reg_t current_next_pc = get_reg_for(cc, traits::NEXT_PC);
2024-07-03 12:45:13 +02:00
mov(cc, current_next_pc, get_ptr_for(jh, traits::NEXT_PC));
mov(cc, jh.next_pc, current_next_pc);
2024-04-30 19:21:27 +02:00
mov(cc, get_ptr_for(jh, traits::LAST_BRANCH), static_cast<int>(UNKNOWN_JUMP));
2024-04-30 19:21:27 +02:00
cc.ret(jh.next_pc);
}
template <typename ARCH>
2024-05-09 20:54:30 +02:00
inline void vm_impl<ARCH>::gen_raise(jit_holder& jh, uint16_t trap_id, uint16_t cause) {
2024-04-30 19:21:27 +02:00
auto& cc = jh.cc;
cc.comment("//gen_raise");
2024-07-03 18:32:05 +02:00
auto tmp1 = get_reg_for(cc, traits::TRAP_STATE);
2024-07-03 12:45:13 +02:00
mov(cc, tmp1, 0x80ULL << 24 | (cause << 16) | trap_id);
mov(cc, get_ptr_for(jh, traits::TRAP_STATE), tmp1);
2024-04-30 19:21:27 +02:00
}
template <typename ARCH>
template <typename T, typename>
void vm_impl<ARCH>::gen_set_tval(jit_holder& jh, T new_tval) {
2024-07-23 15:45:51 +02:00
mov(jh.cc, jh.globals[TVAL], new_tval);
}
template <typename ARCH>
void vm_impl<ARCH>::gen_set_tval(jit_holder& jh, x86_reg_t _new_tval) {
if(nonstd::holds_alternative<x86::Gp>(_new_tval)) {
x86::Gp new_tval = nonstd::get<x86::Gp>(_new_tval);
if(new_tval.size() < 8)
new_tval = gen_ext_Gp(jh.cc, new_tval, 64, false);
2024-07-23 15:45:51 +02:00
mov(jh.cc, jh.globals[TVAL], new_tval);
} else {
throw std::runtime_error("Variant not supported in gen_set_tval");
}
}
2024-04-30 19:21:27 +02:00
} // namespace tgc5c
2023-10-22 15:11:20 +02:00
template <>
std::unique_ptr<vm_if> create<arch::${coreDef.name.toLowerCase()}>(arch::${coreDef.name.toLowerCase()} *core, unsigned short port, bool dump) {
auto ret = new ${coreDef.name.toLowerCase()}::vm_impl<arch::${coreDef.name.toLowerCase()}>(*core, dump);
if (port != 0) debugger::server<debugger::gdb_session>::run_server(ret, port);
return std::unique_ptr<vm_if>(ret);
}
} // namespace asmjit
} // namespace iss
#include <iss/arch/riscv_hart_m_p.h>
#include <iss/arch/riscv_hart_mu_p.h>
2024-04-30 19:21:27 +02:00
#include <iss/factory.h>
2023-10-22 15:11:20 +02:00
namespace iss {
namespace {
volatile std::array<bool, 2> dummy = {
2024-01-10 11:47:12 +01:00
core_factory::instance().register_creator("${coreDef.name.toLowerCase()}|m_p|asmjit", [](unsigned port, void* init_data) -> std::tuple<cpu_ptr, vm_ptr>{
2023-10-22 15:11:20 +02:00
auto* cpu = new iss::arch::riscv_hart_m_p<iss::arch::${coreDef.name.toLowerCase()}>();
2024-01-10 11:47:12 +01:00
auto vm = new asmjit::${coreDef.name.toLowerCase()}::vm_impl<arch::${coreDef.name.toLowerCase()}>(*cpu, false);
if (port != 0) debugger::server<debugger::gdb_session>::run_server(vm, port);
if(init_data){
auto* cb = reinterpret_cast<semihosting_cb_t<arch::traits<arch::${coreDef.name.toLowerCase()}>::reg_t>*>(init_data);
cpu->set_semihosting_callback(*cb);
}
2023-10-22 15:11:20 +02:00
return {cpu_ptr{cpu}, vm_ptr{vm}};
}),
2024-01-10 11:47:12 +01:00
core_factory::instance().register_creator("${coreDef.name.toLowerCase()}|mu_p|asmjit", [](unsigned port, void* init_data) -> std::tuple<cpu_ptr, vm_ptr>{
2023-10-22 15:11:20 +02:00
auto* cpu = new iss::arch::riscv_hart_mu_p<iss::arch::${coreDef.name.toLowerCase()}>();
2024-01-10 11:47:12 +01:00
auto vm = new asmjit::${coreDef.name.toLowerCase()}::vm_impl<arch::${coreDef.name.toLowerCase()}>(*cpu, false);
if (port != 0) debugger::server<debugger::gdb_session>::run_server(vm, port);
if(init_data){
auto* cb = reinterpret_cast<semihosting_cb_t<arch::traits<arch::${coreDef.name.toLowerCase()}>::reg_t>*>(init_data);
cpu->set_semihosting_callback(*cb);
}
2023-10-22 15:11:20 +02:00
return {cpu_ptr{cpu}, vm_ptr{vm}};
})
};
}
}
2023-11-05 17:19:43 +01:00
// clang-format on