2018-11-08 13:31:28 +01:00
|
|
|
/*******************************************************************************
|
|
|
|
* Copyright (C) 2017, 2018 MINRES Technologies GmbH
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
*******************************************************************************/
|
2017-08-27 12:10:38 +02:00
|
|
|
|
|
|
|
#include <iostream>
|
2021-05-16 16:44:30 +02:00
|
|
|
#include <iss/factory.h>
|
2017-08-27 12:10:38 +02:00
|
|
|
|
2017-09-22 11:23:23 +02:00
|
|
|
#include <boost/lexical_cast.hpp>
|
2017-10-04 10:31:11 +02:00
|
|
|
#include <boost/program_options.hpp>
|
2020-08-24 15:01:54 +02:00
|
|
|
#include <iss/arch/riscv_hart_m_p.h>
|
2021-05-16 16:44:30 +02:00
|
|
|
#include "iss/arch/riscv_hart_m_p.h"
|
2021-05-13 15:38:33 +02:00
|
|
|
#include "iss/arch/tgc_c.h"
|
2021-05-16 16:44:30 +02:00
|
|
|
using tgc_c_plat_type = iss::arch::riscv_hart_m_p<iss::arch::tgc_c>;
|
|
|
|
#ifdef CORE_TGC_B
|
|
|
|
#include "iss/arch/riscv_hart_m_p.h"
|
|
|
|
#include "iss/arch/tgc_b.h"
|
|
|
|
using tgc_b_plat_type = iss::arch::riscv_hart_m_p<iss::arch::tgc_b>;
|
2021-05-13 15:38:33 +02:00
|
|
|
#endif
|
|
|
|
#ifdef CORE_TGC_D
|
2021-05-16 16:44:30 +02:00
|
|
|
#include "iss/arch/riscv_hart_mu_p.h"
|
2021-05-13 15:38:33 +02:00
|
|
|
#include "iss/arch/tgc_d.h"
|
2021-08-19 10:49:33 +02:00
|
|
|
using tgc_d_plat_type = iss::arch::riscv_hart_mu_p<iss::arch::tgc_d, (iss::arch::features_e)(iss::arch::FEAT_PMP | iss::arch::FEAT_CLIC | iss::arch::FEAT_EXT_N)>;
|
2021-03-09 11:21:36 +01:00
|
|
|
#endif
|
2021-09-04 13:04:34 +02:00
|
|
|
#ifdef CORE_TGC_D_XRB_MAC
|
|
|
|
#include "iss/arch/riscv_hart_mu_p.h"
|
|
|
|
#include "iss/arch/tgc_d_xrb_mac.h"
|
|
|
|
using tgc_d_xrb_mac_plat_type = iss::arch::riscv_hart_mu_p<iss::arch::tgc_d_xrb_mac, (iss::arch::features_e)(iss::arch::FEAT_PMP | iss::arch::FEAT_CLIC | iss::arch::FEAT_EXT_N)>;
|
|
|
|
#endif
|
2021-11-25 19:59:50 +01:00
|
|
|
#ifdef CORE_TGC_D_XRB_NN
|
|
|
|
#include "iss/arch/riscv_hart_mu_p.h"
|
|
|
|
#include "iss/arch/tgc_d_xrb_nn.h"
|
|
|
|
using tgc_d_xrb_nn_plat_type = iss::arch::riscv_hart_mu_p<iss::arch::tgc_d_xrb_nn, (iss::arch::features_e)(iss::arch::FEAT_PMP | iss::arch::FEAT_CLIC | iss::arch::FEAT_EXT_N)>;
|
|
|
|
#endif
|
|
|
|
#ifdef CORE_TGC_E
|
|
|
|
#include "iss/arch/riscv_hart_mu_p.h"
|
|
|
|
#include "iss/arch/tgc_e.h"
|
|
|
|
using tgc_e_plat_type = iss::arch::riscv_hart_mu_p<iss::arch::tgc_e, (iss::arch::features_e)(iss::arch::FEAT_PMP | iss::arch::FEAT_CLIC | iss::arch::FEAT_EXT_N)>;
|
|
|
|
#endif
|
2020-05-30 13:57:01 +02:00
|
|
|
#ifdef WITH_LLVM
|
2018-11-22 20:28:36 +01:00
|
|
|
#include <iss/llvm/jit_helper.h>
|
2020-05-30 13:57:01 +02:00
|
|
|
#endif
|
2017-09-22 11:23:23 +02:00
|
|
|
#include <iss/log_categories.h>
|
2018-03-30 17:59:40 +02:00
|
|
|
#include <iss/plugin/cycle_estimate.h>
|
2018-11-08 13:31:28 +01:00
|
|
|
#include <iss/plugin/instruction_count.h>
|
2021-10-12 14:24:55 +02:00
|
|
|
#include <iss/plugin/loader.h>
|
|
|
|
#if defined(HAS_LUA)
|
|
|
|
#include <iss/plugin/lua.h>
|
|
|
|
#endif
|
2017-08-27 12:10:38 +02:00
|
|
|
|
2017-09-22 11:23:23 +02:00
|
|
|
namespace po = boost::program_options;
|
2017-08-27 12:10:38 +02:00
|
|
|
|
|
|
|
int main(int argc, char *argv[]) {
|
2017-10-04 10:31:11 +02:00
|
|
|
/*
|
|
|
|
* Define and parse the program options
|
|
|
|
*/
|
|
|
|
po::variables_map clim;
|
|
|
|
po::options_description desc("Options");
|
|
|
|
// clang-format off
|
|
|
|
desc.add_options()
|
|
|
|
("help,h", "Print help message")
|
2017-12-15 14:13:22 +01:00
|
|
|
("verbose,v", po::value<int>()->implicit_value(0), "Sets logging verbosity")
|
2017-11-23 14:48:18 +01:00
|
|
|
("logfile,f", po::value<std::string>(), "Sets default log file.")
|
2017-10-04 10:31:11 +02:00
|
|
|
("disass,d", po::value<std::string>()->implicit_value(""), "Enables disassembly")
|
|
|
|
("gdb-port,g", po::value<unsigned>()->default_value(0), "enable gdb server and specify port to use")
|
2018-05-15 18:49:29 +02:00
|
|
|
("instructions,i", po::value<uint64_t>()->default_value(std::numeric_limits<uint64_t>::max()), "max. number of instructions to simulate")
|
2017-10-04 10:31:11 +02:00
|
|
|
("reset,r", po::value<std::string>(), "reset address")
|
2017-12-31 11:27:51 +01:00
|
|
|
("dump-ir", "dump the intermediate representation")
|
|
|
|
("elf", po::value<std::vector<std::string>>(), "ELF file(s) to load")
|
2017-10-04 10:31:11 +02:00
|
|
|
("mem,m", po::value<std::string>(), "the memory input file")
|
2018-04-24 19:05:01 +02:00
|
|
|
("plugin,p", po::value<std::vector<std::string>>(), "plugin to activate")
|
2021-02-06 15:47:06 +01:00
|
|
|
("backend", po::value<std::string>()->default_value("interp"), "the memory input file")
|
2021-08-19 10:49:33 +02:00
|
|
|
("isa", po::value<std::string>()->default_value("tgc_c"), "isa to use for simulation");
|
2017-10-04 10:31:11 +02:00
|
|
|
// clang-format on
|
2017-11-23 14:48:18 +01:00
|
|
|
auto parsed = po::command_line_parser(argc, argv).options(desc).allow_unregistered().run();
|
2017-09-22 11:23:23 +02:00
|
|
|
try {
|
2017-11-23 14:48:18 +01:00
|
|
|
po::store(parsed, clim); // can throw
|
2017-10-04 10:31:11 +02:00
|
|
|
// --help option
|
|
|
|
if (clim.count("help")) {
|
|
|
|
std::cout << "DBT-RISE-RiscV simulator for RISC-V" << std::endl << desc << std::endl;
|
|
|
|
return 0;
|
2017-09-22 10:11:29 +02:00
|
|
|
}
|
2017-10-04 10:31:11 +02:00
|
|
|
po::notify(clim); // throws on error, so do after help in case
|
|
|
|
} catch (po::error &e) {
|
|
|
|
// there are problems
|
|
|
|
std::cerr << "ERROR: " << e.what() << std::endl << std::endl;
|
|
|
|
std::cerr << desc << std::endl;
|
|
|
|
return 1;
|
|
|
|
}
|
2017-11-23 14:48:18 +01:00
|
|
|
std::vector<std::string> args = collect_unrecognized(parsed.options, po::include_positional);
|
|
|
|
|
2020-05-29 08:52:55 +02:00
|
|
|
LOGGER(DEFAULT)::print_time() = false;
|
|
|
|
LOGGER(connection)::print_time() = false;
|
2017-12-15 14:13:22 +01:00
|
|
|
if (clim.count("verbose")) {
|
|
|
|
auto l = logging::as_log_level(clim["verbose"].as<int>());
|
2017-10-04 10:31:11 +02:00
|
|
|
LOGGER(DEFAULT)::reporting_level() = l;
|
|
|
|
LOGGER(connection)::reporting_level() = l;
|
|
|
|
}
|
2017-11-23 14:48:18 +01:00
|
|
|
if (clim.count("logfile")) {
|
2017-10-04 10:31:11 +02:00
|
|
|
// configure the connection logger
|
2017-11-23 14:48:18 +01:00
|
|
|
auto f = fopen(clim["logfile"].as<std::string>().c_str(), "w");
|
2017-10-04 10:31:11 +02:00
|
|
|
LOG_OUTPUT(DEFAULT)::stream() = f;
|
|
|
|
LOG_OUTPUT(connection)::stream() = f;
|
|
|
|
}
|
2017-08-27 12:10:38 +02:00
|
|
|
|
2018-11-08 13:31:28 +01:00
|
|
|
std::vector<iss::vm_plugin *> plugin_list;
|
|
|
|
auto res = 0;
|
2017-10-04 10:31:11 +02:00
|
|
|
try {
|
2020-05-30 13:57:01 +02:00
|
|
|
#ifdef WITH_LLVM
|
2017-08-27 12:10:38 +02:00
|
|
|
// application code comes here //
|
2019-07-16 15:52:34 +02:00
|
|
|
iss::init_jit_debug(argc, argv);
|
2020-05-30 13:57:01 +02:00
|
|
|
#endif
|
2017-10-04 10:31:11 +02:00
|
|
|
bool dump = clim.count("dump-ir");
|
2017-09-21 20:29:23 +02:00
|
|
|
// instantiate the simulator
|
2021-05-16 16:44:30 +02:00
|
|
|
iss::vm_ptr vm{nullptr};
|
|
|
|
iss::cpu_ptr cpu{nullptr};
|
2017-12-15 14:13:22 +01:00
|
|
|
std::string isa_opt(clim["isa"].as<std::string>());
|
2021-08-19 10:49:33 +02:00
|
|
|
if (isa_opt == "tgc_c") {
|
2021-05-16 16:44:30 +02:00
|
|
|
std::tie(cpu, vm) =
|
|
|
|
iss::create_cpu<tgc_c_plat_type>(clim["backend"].as<std::string>(), clim["gdb-port"].as<unsigned>());
|
|
|
|
} else
|
|
|
|
#ifdef CORE_TGC_B
|
2021-08-19 10:49:33 +02:00
|
|
|
if (isa_opt == "tgc_b") {
|
2020-09-04 15:37:21 +02:00
|
|
|
std::tie(cpu, vm) =
|
2021-05-16 16:44:30 +02:00
|
|
|
iss::create_cpu<tgc_b_plat_type>(clim["backend"].as<std::string>(), clim["gdb-port"].as<unsigned>());
|
2021-03-09 11:21:36 +01:00
|
|
|
} else
|
|
|
|
#endif
|
2021-05-16 16:44:30 +02:00
|
|
|
#ifdef CORE_TGC_D
|
2021-08-19 10:49:33 +02:00
|
|
|
if (isa_opt == "tgc_d") {
|
2020-09-04 15:37:21 +02:00
|
|
|
std::tie(cpu, vm) =
|
2021-05-16 16:44:30 +02:00
|
|
|
iss::create_cpu<tgc_d_plat_type>(clim["backend"].as<std::string>(), clim["gdb-port"].as<unsigned>());
|
|
|
|
} else
|
2021-09-04 13:04:34 +02:00
|
|
|
#endif
|
|
|
|
#ifdef CORE_TGC_D_XRB_MAC
|
|
|
|
if (isa_opt == "tgc_d_xrb_mac") {
|
|
|
|
std::tie(cpu, vm) =
|
|
|
|
iss::create_cpu<tgc_d_xrb_mac_plat_type>(clim["backend"].as<std::string>(), clim["gdb-port"].as<unsigned>());
|
|
|
|
} else
|
2021-11-25 19:59:50 +01:00
|
|
|
#endif
|
|
|
|
#ifdef CORE_TGC_D_XRB_NN
|
|
|
|
if (isa_opt == "tgc_d_xrb_nn") {
|
|
|
|
std::tie(cpu, vm) =
|
|
|
|
iss::create_cpu<tgc_d_xrb_nn_plat_type>(clim["backend"].as<std::string>(), clim["gdb-port"].as<unsigned>());
|
|
|
|
} else
|
|
|
|
#endif
|
|
|
|
#ifdef CORE_TGC_E
|
|
|
|
if (isa_opt == "tgc_e") {
|
|
|
|
std::tie(cpu, vm) =
|
|
|
|
iss::create_cpu<tgc_e_plat_type>(clim["backend"].as<std::string>(), clim["gdb-port"].as<unsigned>());
|
|
|
|
} else
|
2021-05-16 16:44:30 +02:00
|
|
|
#endif
|
|
|
|
{
|
2021-11-25 19:59:50 +01:00
|
|
|
LOG(ERR) << "Illegal argument value for '--isa': " << isa_opt << std::endl;
|
2020-05-30 11:27:44 +02:00
|
|
|
return 127;
|
|
|
|
}
|
2018-04-24 19:05:01 +02:00
|
|
|
if (clim.count("plugin")) {
|
2020-05-30 13:57:01 +02:00
|
|
|
for (std::string const& opt_val : clim["plugin"].as<std::vector<std::string>>()) {
|
|
|
|
std::string plugin_name=opt_val;
|
2018-11-08 13:31:28 +01:00
|
|
|
std::string filename{"cycles.txt"};
|
|
|
|
std::size_t found = opt_val.find('=');
|
|
|
|
if (found != std::string::npos) {
|
|
|
|
plugin_name = opt_val.substr(0, found);
|
|
|
|
filename = opt_val.substr(found + 1, opt_val.size());
|
|
|
|
}
|
|
|
|
if (plugin_name == "ic") {
|
|
|
|
auto *ic_plugin = new iss::plugin::instruction_count(filename);
|
2018-04-24 19:05:01 +02:00
|
|
|
vm->register_plugin(*ic_plugin);
|
|
|
|
plugin_list.push_back(ic_plugin);
|
2018-11-08 13:31:28 +01:00
|
|
|
} else if (plugin_name == "ce") {
|
|
|
|
auto *ce_plugin = new iss::plugin::cycle_estimate(filename);
|
2018-04-24 19:05:01 +02:00
|
|
|
vm->register_plugin(*ce_plugin);
|
|
|
|
plugin_list.push_back(ce_plugin);
|
|
|
|
} else {
|
2021-10-12 14:24:55 +02:00
|
|
|
std::array<char const*, 1> a{{filename.c_str()}};
|
|
|
|
iss::plugin::loader l(plugin_name, {{"initPlugin"}});
|
|
|
|
auto* plugin = l.call_function<iss::vm_plugin*>("initPlugin", a.size(), a.data());
|
|
|
|
if(plugin){
|
|
|
|
vm->register_plugin(*plugin);
|
|
|
|
plugin_list.push_back(plugin);
|
|
|
|
} else {
|
|
|
|
LOG(ERR) << "Unknown plugin name: " << plugin_name << ", valid names are 'ce', 'ic'" << std::endl;
|
|
|
|
return 127;
|
|
|
|
}
|
2018-04-24 19:05:01 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2017-10-04 10:31:11 +02:00
|
|
|
if (clim.count("disass")) {
|
|
|
|
vm->setDisassEnabled(true);
|
2017-09-22 11:23:23 +02:00
|
|
|
LOGGER(disass)::reporting_level() = logging::INFO;
|
2020-05-29 08:52:55 +02:00
|
|
|
LOGGER(disass)::print_time() = false;
|
2017-10-04 10:31:11 +02:00
|
|
|
auto file_name = clim["disass"].as<std::string>();
|
2017-09-22 10:11:29 +02:00
|
|
|
if (file_name.length() > 0) {
|
|
|
|
LOG_OUTPUT(disass)::stream() = fopen(file_name.c_str(), "w");
|
|
|
|
LOGGER(disass)::print_severity() = false;
|
|
|
|
}
|
2017-09-21 20:29:23 +02:00
|
|
|
}
|
2018-11-08 13:31:28 +01:00
|
|
|
uint64_t start_address = 0;
|
2018-03-30 17:59:40 +02:00
|
|
|
if (clim.count("mem"))
|
2021-05-16 16:44:30 +02:00
|
|
|
vm->get_arch()->load_file(clim["mem"].as<std::string>());
|
2018-03-30 17:59:40 +02:00
|
|
|
if (clim.count("elf"))
|
2018-11-08 13:31:28 +01:00
|
|
|
for (std::string input : clim["elf"].as<std::vector<std::string>>()) {
|
|
|
|
auto start_addr = vm->get_arch()->load_file(input);
|
|
|
|
if (start_addr.second) start_address = start_addr.first;
|
2018-03-30 17:59:40 +02:00
|
|
|
}
|
2018-11-08 13:31:28 +01:00
|
|
|
for (std::string input : args) {
|
|
|
|
auto start_addr = vm->get_arch()->load_file(input); // treat remaining arguments as elf files
|
|
|
|
if (start_addr.second) start_address = start_addr.first;
|
2018-03-30 17:59:40 +02:00
|
|
|
}
|
2017-10-04 10:31:11 +02:00
|
|
|
if (clim.count("reset")) {
|
|
|
|
auto str = clim["reset"].as<std::string>();
|
2018-11-08 13:31:28 +01:00
|
|
|
start_address = str.find("0x") == 0 ? std::stoull(str.substr(2), nullptr, 16) : std::stoull(str, nullptr, 10);
|
2017-08-27 12:10:38 +02:00
|
|
|
}
|
2018-11-08 13:31:28 +01:00
|
|
|
vm->reset(start_address);
|
2018-05-15 18:49:29 +02:00
|
|
|
auto cycles = clim["instructions"].as<uint64_t>();
|
2018-04-24 19:05:01 +02:00
|
|
|
res = vm->start(cycles, dump);
|
2017-09-22 11:23:23 +02:00
|
|
|
} catch (std::exception &e) {
|
2021-10-10 19:06:41 +02:00
|
|
|
LOG(ERR) << "Unhandled Exception reached the top of main: " << e.what() << ", application will now exit"
|
2018-11-08 13:31:28 +01:00
|
|
|
<< std::endl;
|
|
|
|
res = 2;
|
2018-04-24 19:05:01 +02:00
|
|
|
}
|
|
|
|
// cleanup to let plugins report of needed
|
2018-11-08 13:31:28 +01:00
|
|
|
for (auto *p : plugin_list) {
|
2018-04-24 19:05:01 +02:00
|
|
|
delete p;
|
2017-08-27 12:10:38 +02:00
|
|
|
}
|
2018-04-24 19:05:01 +02:00
|
|
|
return res;
|
2017-08-27 12:10:38 +02:00
|
|
|
}
|