2023-07-09 20:24:45 +02:00
|
|
|
/*******************************************************************************
|
|
|
|
* Copyright (C) 2023 MINRES Technologies GmbH
|
|
|
|
* All rights reserved.
|
2023-07-06 08:02:48 +02:00
|
|
|
*
|
2023-07-09 20:24:45 +02:00
|
|
|
* 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-07-06 08:02:48 +02:00
|
|
|
|
2023-11-04 13:05:30 +01:00
|
|
|
// clang-format off
|
2023-07-14 11:11:03 +02:00
|
|
|
#include "iss_factory.h"
|
2023-11-04 13:05:30 +01:00
|
|
|
#include <iss/arch/tgc5c.h>
|
2023-10-29 17:06:56 +01:00
|
|
|
#include <iss/arch/riscv_hart_m_p.h>
|
|
|
|
#include <iss/arch/riscv_hart_mu_p.h>
|
2023-11-04 13:05:30 +01:00
|
|
|
#include "sc_core_adapter.h"
|
|
|
|
#include "core_complex.h"
|
|
|
|
#include <array>
|
|
|
|
// clang-format on
|
2023-07-06 08:02:48 +02:00
|
|
|
|
|
|
|
namespace iss {
|
2023-07-09 22:20:50 +02:00
|
|
|
namespace interp {
|
2023-07-14 11:11:03 +02:00
|
|
|
using namespace sysc;
|
2023-07-09 22:20:50 +02:00
|
|
|
volatile std::array<bool, 2> tgc_init = {
|
2023-10-29 17:06:56 +01:00
|
|
|
iss_factory::instance().register_creator("tgc5c|m_p|interp",
|
|
|
|
[](unsigned gdb_port, void* data) -> iss_factory::base_t {
|
2024-08-17 12:34:17 +02:00
|
|
|
auto cc = reinterpret_cast<sysc::tgfs::core_complex_if*>(data);
|
2023-10-29 17:06:56 +01:00
|
|
|
auto* cpu = new sc_core_adapter<arch::riscv_hart_m_p<arch::tgc5c>>(cc);
|
|
|
|
return {sysc::sc_cpu_ptr{cpu}, vm_ptr{create(static_cast<arch::tgc5c*>(cpu), gdb_port)}};
|
|
|
|
}),
|
|
|
|
iss_factory::instance().register_creator("tgc5c|mu_p|interp", [](unsigned gdb_port, void* data) -> iss_factory::base_t {
|
2024-08-17 12:34:17 +02:00
|
|
|
auto cc = reinterpret_cast<sysc::tgfs::core_complex_if*>(data);
|
2023-10-29 17:06:56 +01:00
|
|
|
auto* cpu = new sc_core_adapter<arch::riscv_hart_mu_p<arch::tgc5c>>(cc);
|
|
|
|
return {sysc::sc_cpu_ptr{cpu}, vm_ptr{create(static_cast<arch::tgc5c*>(cpu), gdb_port)}};
|
|
|
|
})};
|
|
|
|
} // namespace interp
|
2023-10-26 06:50:54 +02:00
|
|
|
#if defined(WITH_LLVM)
|
|
|
|
namespace llvm {
|
|
|
|
using namespace sysc;
|
|
|
|
volatile std::array<bool, 2> tgc_init = {
|
2023-10-29 17:06:56 +01:00
|
|
|
iss_factory::instance().register_creator("tgc5c|m_p|llvm",
|
|
|
|
[](unsigned gdb_port, void* data) -> iss_factory::base_t {
|
|
|
|
auto cc = reinterpret_cast<sysc::tgfs::core_complex*>(data);
|
|
|
|
auto* cpu = new sc_core_adapter<arch::riscv_hart_m_p<arch::tgc5c>>(cc);
|
|
|
|
return {sysc::sc_cpu_ptr{cpu}, vm_ptr{create(static_cast<arch::tgc5c*>(cpu), gdb_port)}};
|
|
|
|
}),
|
|
|
|
iss_factory::instance().register_creator("tgc5c|mu_p|llvm", [](unsigned gdb_port, void* data) -> iss_factory::base_t {
|
|
|
|
auto cc = reinterpret_cast<sysc::tgfs::core_complex*>(data);
|
|
|
|
auto* cpu = new sc_core_adapter<arch::riscv_hart_mu_p<arch::tgc5c>>(cc);
|
|
|
|
return {sysc::sc_cpu_ptr{cpu}, vm_ptr{create(static_cast<arch::tgc5c*>(cpu), gdb_port)}};
|
|
|
|
})};
|
|
|
|
} // namespace llvm
|
2023-10-26 06:50:54 +02:00
|
|
|
#endif
|
2023-07-09 22:20:50 +02:00
|
|
|
#if defined(WITH_TCC)
|
|
|
|
namespace tcc {
|
2023-07-31 12:55:09 +02:00
|
|
|
using namespace sysc;
|
2023-07-09 22:20:50 +02:00
|
|
|
volatile std::array<bool, 2> tgc_init = {
|
2023-10-29 17:06:56 +01:00
|
|
|
iss_factory::instance().register_creator("tgc5c|m_p|tcc",
|
|
|
|
[](unsigned gdb_port, void* data) -> iss_factory::base_t {
|
2024-08-17 12:34:17 +02:00
|
|
|
auto cc = reinterpret_cast<sysc::tgfs::core_complex_if*>(data);
|
2023-10-29 17:06:56 +01:00
|
|
|
auto* cpu = new sc_core_adapter<arch::riscv_hart_m_p<arch::tgc5c>>(cc);
|
|
|
|
return {sysc::sc_cpu_ptr{cpu}, vm_ptr{create(static_cast<arch::tgc5c*>(cpu), gdb_port)}};
|
|
|
|
}),
|
|
|
|
iss_factory::instance().register_creator("tgc5c|mu_p|tcc", [](unsigned gdb_port, void* data) -> iss_factory::base_t {
|
2024-08-17 12:34:17 +02:00
|
|
|
auto cc = reinterpret_cast<sysc::tgfs::core_complex_if*>(data);
|
2023-10-29 17:06:56 +01:00
|
|
|
auto* cpu = new sc_core_adapter<arch::riscv_hart_mu_p<arch::tgc5c>>(cc);
|
|
|
|
return {sysc::sc_cpu_ptr{cpu}, vm_ptr{create(static_cast<arch::tgc5c*>(cpu), gdb_port)}};
|
|
|
|
})};
|
|
|
|
} // namespace tcc
|
2023-07-09 22:20:50 +02:00
|
|
|
#endif
|
2023-10-23 10:18:25 +02:00
|
|
|
#if defined(WITH_ASMJIT)
|
|
|
|
namespace asmjit {
|
|
|
|
using namespace sysc;
|
|
|
|
volatile std::array<bool, 2> tgc_init = {
|
2023-10-29 17:06:56 +01:00
|
|
|
iss_factory::instance().register_creator("tgc5c|m_p|asmjit",
|
|
|
|
[](unsigned gdb_port, void* data) -> iss_factory::base_t {
|
2024-08-17 12:34:17 +02:00
|
|
|
auto cc = reinterpret_cast<sysc::tgfs::core_complex_if*>(data);
|
2023-10-29 17:06:56 +01:00
|
|
|
auto* cpu = new sc_core_adapter<arch::riscv_hart_m_p<arch::tgc5c>>(cc);
|
|
|
|
return {sysc::sc_cpu_ptr{cpu}, vm_ptr{create(static_cast<arch::tgc5c*>(cpu), gdb_port)}};
|
|
|
|
}),
|
|
|
|
iss_factory::instance().register_creator("tgc5c|mu_p|asmjit", [](unsigned gdb_port, void* data) -> iss_factory::base_t {
|
2024-08-17 12:34:17 +02:00
|
|
|
auto cc = reinterpret_cast<sysc::tgfs::core_complex_if*>(data);
|
2023-10-29 17:06:56 +01:00
|
|
|
auto* cpu = new sc_core_adapter<arch::riscv_hart_mu_p<arch::tgc5c>>(cc);
|
|
|
|
return {sysc::sc_cpu_ptr{cpu}, vm_ptr{create(static_cast<arch::tgc5c*>(cpu), gdb_port)}};
|
|
|
|
})};
|
|
|
|
} // namespace asmjit
|
2023-10-23 10:18:25 +02:00
|
|
|
#endif
|
2023-10-29 17:06:56 +01:00
|
|
|
} // namespace iss
|