122 lines
5.5 KiB
C++
122 lines
5.5 KiB
C++
/*
|
|
* Copyright (c) 2019 -2021 MINRES Technolgies GmbH
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#include "CLIParser.h"
|
|
#include <iss/log_categories.h>
|
|
|
|
#include <scc/configurable_tracer.h>
|
|
#include <scc/configurer.h>
|
|
#include <scc/report.h>
|
|
#include <scc/scv/scv_tr_db.h>
|
|
#include <scc/tracer.h>
|
|
#include <scc/perf_estimator.h>
|
|
|
|
#include <boost/program_options.hpp>
|
|
#include <tgc_vp/tb.h>
|
|
#include <iostream>
|
|
#include <fstream>
|
|
#include <sstream>
|
|
#ifdef ERROR
|
|
#undef ERROR
|
|
#endif
|
|
|
|
const std::string core_path{"tb.top.core_complex"};
|
|
|
|
using namespace sysc;
|
|
using namespace sc_core;
|
|
namespace po = boost::program_options;
|
|
|
|
namespace {
|
|
const size_t ERRORR_IN_COMMAND_LINE = 1;
|
|
const size_t SUCCESS = 0;
|
|
} // namespace
|
|
|
|
int sc_main(int argc, char *argv[]) {
|
|
///////////////////////////////////////////////////////////////////////////
|
|
// SystemC >=2.2 got picky about multiple drivers so disable check
|
|
///////////////////////////////////////////////////////////////////////////
|
|
sc_report_handler::set_actions(SC_ID_MORE_THAN_ONE_SIGNAL_DRIVER_, SC_DO_NOTHING);
|
|
///////////////////////////////////////////////////////////////////////////
|
|
// CLI argument parsing & logging setup
|
|
///////////////////////////////////////////////////////////////////////////
|
|
CLIParser parser(argc, argv);
|
|
if (!parser.is_valid()) return ERRORR_IN_COMMAND_LINE;
|
|
scc::stream_redirection cout_redir(std::cout, scc::log::INFO);
|
|
scc::stream_redirection cerr_redir(std::cerr, scc::log::ERROR);
|
|
///////////////////////////////////////////////////////////////////////////
|
|
// create the performance estimation module
|
|
///////////////////////////////////////////////////////////////////////////
|
|
scc::perf_estimator estimator;
|
|
///////////////////////////////////////////////////////////////////////////
|
|
// set up configuration
|
|
///////////////////////////////////////////////////////////////////////////
|
|
scc::configurer cfg(parser.get<std::string>("config-file"));
|
|
///////////////////////////////////////////////////////////////////////////
|
|
// set up tracing & transaction recording
|
|
///////////////////////////////////////////////////////////////////////////
|
|
auto trace_level = parser.get<unsigned>("trace-level");
|
|
scc::configurable_tracer trace(parser.get<std::string>("trace-file"),
|
|
static_cast<scc::tracer::file_type>(trace_level >> 1), // bit3-bit1 define the kind of transaction trace
|
|
(trace_level&0x1) != 0, // bit0 enables vcd
|
|
parser.is_set("trace-default-on"));
|
|
///////////////////////////////////////////////////////////////////////////
|
|
// instantiate top level
|
|
///////////////////////////////////////////////////////////////////////////
|
|
auto i_system = scc::make_unique<tgc_vp::tb>("tb");
|
|
///////////////////////////////////////////////////////////////////////////
|
|
// add non-implemented 'enableTracing' properties
|
|
///////////////////////////////////////////////////////////////////////////
|
|
trace.add_control();
|
|
///////////////////////////////////////////////////////////////////////////
|
|
// dump configuration if requested
|
|
///////////////////////////////////////////////////////////////////////////
|
|
if (parser.get<std::string>("dump-config").size() > 0) {
|
|
std::ofstream of{parser.get<std::string>("dump-config")};
|
|
if (of.is_open()) cfg.dump_configuration(of);
|
|
}
|
|
cfg.configure();
|
|
///////////////////////////////////////////////////////////////////////////
|
|
// overwrite config with command line settings
|
|
///////////////////////////////////////////////////////////////////////////
|
|
cfg.set_value(core_path + ".gdb_server_port", parser.get<unsigned short>("gdb-port"));
|
|
cfg.set_value(core_path + ".dump_ir", parser.is_set("dump-ir"));
|
|
if(parser.is_set("plugin")){
|
|
auto plugins = util::join(parser.get<std::vector<std::string>>("plugin"),",");
|
|
cfg.set_value(core_path + ".plugins", plugins);
|
|
}
|
|
if (parser.is_set("elf")) cfg.set_value(core_path + ".elf_file", parser.get<std::string>("elf"));
|
|
if (parser.is_set("quantum"))
|
|
tlm::tlm_global_quantum::instance().set(sc_core::sc_time(parser.get<unsigned>("quantum"), sc_core::SC_NS));
|
|
if (parser.is_set("reset")) {
|
|
auto str = parser.get<std::string>("reset");
|
|
uint64_t start_address = str.find("0x") == 0 ? std::stoull(str.substr(2), nullptr, 16) : std::stoull(str, nullptr, 10);
|
|
cfg.set_value(core_path + ".reset_address", start_address);
|
|
}
|
|
if (parser.is_set("disass")) {
|
|
cfg.set_value(core_path + ".enable_disass", true);
|
|
LOGGER(disass)::reporting_level() = logging::INFO;
|
|
auto file_name = parser.get<std::string>("disass");
|
|
if (file_name.length() > 0) {
|
|
LOG_OUTPUT(disass)::stream() = fopen(file_name.c_str(), "w");
|
|
LOGGER(disass)::print_time() = false;
|
|
LOGGER(disass)::print_severity() = false;
|
|
}
|
|
}
|
|
///////////////////////////////////////////////////////////////////////////
|
|
// run simulation
|
|
///////////////////////////////////////////////////////////////////////////
|
|
try {
|
|
if (parser.is_set("max_time")) {
|
|
sc_core::sc_start(scc::parse_from_string(parser.get<std::string>("max_time")));
|
|
} else
|
|
sc_core::sc_start();
|
|
if (!sc_core::sc_end_of_simulation_invoked()) sc_core::sc_stop();
|
|
} catch (sc_core::sc_report &rep) {
|
|
sc_core::sc_report_handler::get_handler()(rep, sc_core::SC_DISPLAY | sc_core::SC_STOP);
|
|
}
|
|
return 0;
|
|
}
|