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-09-21 13:13:01 +02:00
|
|
|
|
2018-11-08 13:31:28 +01:00
|
|
|
#include "CLIParser.h"
|
|
|
|
#include <sysc/top/system.h>
|
2017-10-04 10:31:11 +02:00
|
|
|
#include <iss/log_categories.h>
|
2018-11-08 13:31:28 +01:00
|
|
|
|
|
|
|
#include <scc/configurable_tracer.h>
|
|
|
|
#include <scc/configurer.h>
|
2020-06-18 09:59:09 +02:00
|
|
|
#include <scc/perf_estimator.h>
|
2018-11-08 13:31:28 +01:00
|
|
|
#include <scc/report.h>
|
|
|
|
#include <scc/scv_tr_db.h>
|
|
|
|
#include <scc/tracer.h>
|
|
|
|
#include <scc/perf_estimator.h>
|
|
|
|
|
2018-03-27 19:49:11 +02:00
|
|
|
#include <cci_utils/broker.h>
|
2018-11-08 13:31:28 +01:00
|
|
|
|
|
|
|
#include <boost/program_options.hpp>
|
2020-05-30 13:57:34 +02:00
|
|
|
#ifdef WITH_LLVM
|
2018-11-22 20:28:36 +01:00
|
|
|
#include <iss/llvm/jit_helper.h>
|
2020-05-30 13:57:34 +02:00
|
|
|
#endif
|
2018-11-08 13:31:28 +01:00
|
|
|
#include <fstream>
|
|
|
|
#include <sstream>
|
2017-09-21 13:13:01 +02:00
|
|
|
|
2020-06-18 09:59:09 +02:00
|
|
|
using namespace sc_core;
|
2017-09-21 13:13:01 +02:00
|
|
|
using namespace sysc;
|
|
|
|
namespace po = boost::program_options;
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
const size_t ERROR_IN_COMMAND_LINE = 1;
|
|
|
|
const size_t SUCCESS = 0;
|
|
|
|
const size_t ERROR_UNHANDLED_EXCEPTION = 2;
|
|
|
|
} // namespace
|
|
|
|
|
2017-09-22 11:23:23 +02:00
|
|
|
int sc_main(int argc, char *argv[]) {
|
2018-11-08 13:31:28 +01:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
// 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
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
2020-06-18 09:59:09 +02:00
|
|
|
scc::stream_redirection cout_redir(std::cout, scc::log::INFO);
|
|
|
|
scc::stream_redirection cerr_redir(std::cerr, scc::log::ERROR);
|
2018-11-08 13:31:28 +01:00
|
|
|
CLIParser parser(argc, argv);
|
|
|
|
if (!parser.is_valid()) return ERROR_IN_COMMAND_LINE;
|
2017-10-04 10:31:11 +02:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
// set up infrastructure
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
2020-05-30 13:57:34 +02:00
|
|
|
#ifdef WITH_LLVM
|
2019-07-16 15:54:15 +02:00
|
|
|
iss::init_jit_debug(argc, argv);
|
2020-05-30 13:57:34 +02:00
|
|
|
#endif
|
2017-09-21 13:13:01 +02:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
2017-10-04 10:31:11 +02:00
|
|
|
// set up configuration
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
2018-11-08 13:31:28 +01:00
|
|
|
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"));
|
2017-09-21 13:13:01 +02:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
// instantiate top level
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
2020-06-18 09:59:09 +02:00
|
|
|
auto estimator = scc::make_unique<scc::perf_estimator>(parser.is_set("heart-beat") ? 10_us : SC_ZERO_TIME);
|
2019-07-16 15:54:15 +02:00
|
|
|
auto i_system = scc::make_unique<sysc::system>("i_system");
|
2018-07-23 22:15:38 +02:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
2018-11-08 13:31:28 +01:00
|
|
|
// add non-implemented 'enableTracing' properties
|
2018-07-23 22:15:38 +02:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
2018-11-08 13:31:28 +01:00
|
|
|
trace.add_control();
|
2018-07-23 22:15:38 +02:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
// dump configuration if requested
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
2018-11-08 13:31:28 +01:00
|
|
|
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);
|
2017-11-24 10:05:59 +01:00
|
|
|
}
|
2018-11-08 13:31:28 +01:00
|
|
|
cfg.configure();
|
2018-07-23 22:15:38 +02:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
// overwrite config with command line settings
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
2020-06-18 09:59:09 +02:00
|
|
|
cfg.set_value("i_system.i_hifive1.i_fe310.i_core_complex.backend", parser.get<std::string>("backend"));
|
2018-11-08 13:31:28 +01:00
|
|
|
cfg.set_value("i_system.i_hifive1.i_fe310.i_core_complex.gdb_server_port", parser.get<unsigned short>("gdb-port"));
|
|
|
|
cfg.set_value("i_system.i_hifive1.i_fe310.i_core_complex.dump_ir", parser.is_set("dump-ir"));
|
2019-06-15 22:23:01 +02:00
|
|
|
if (parser.is_set("elf"))
|
|
|
|
cfg.set_value("i_system.i_hifive1.i_fe310.i_core_complex.elf_file", parser.get<std::string>("elf"));
|
|
|
|
else {
|
|
|
|
auto args = parser.get<std::vector<std::string>>("argv");
|
|
|
|
if(args.size())
|
|
|
|
cfg.set_value("i_system.i_hifive1.i_fe310.i_core_complex.elf_file", args[0]);
|
|
|
|
}
|
2018-11-08 13:31:28 +01:00
|
|
|
if (parser.is_set("quantum"))
|
2020-06-18 09:59:09 +02:00
|
|
|
tlm::tlm_global_quantum::instance().set(sc_time(parser.get<unsigned>("quantum"), SC_NS));
|
2018-11-08 13:31:28 +01:00
|
|
|
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("i_system.i_hifive1.i_fe310.i_core_complex.reset_address", start_address);
|
2017-10-04 10:31:11 +02:00
|
|
|
}
|
2018-11-08 13:31:28 +01:00
|
|
|
if (parser.is_set("disass")) {
|
|
|
|
cfg.set_value("i_system.i_hifive1.i_fe310.i_core_complex.enable_disass", true);
|
2017-10-04 10:31:11 +02:00
|
|
|
LOGGER(disass)::reporting_level() = logging::INFO;
|
2018-11-08 13:31:28 +01:00
|
|
|
auto file_name = parser.get<std::string>("disass");
|
2017-10-04 10:31:11 +02:00
|
|
|
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;
|
|
|
|
}
|
|
|
|
}
|
2017-09-21 13:13:01 +02:00
|
|
|
///////////////////////////////////////////////////////////////////////////
|
|
|
|
// run simulation
|
|
|
|
///////////////////////////////////////////////////////////////////////////
|
2018-07-13 20:04:07 +02:00
|
|
|
try {
|
2018-11-08 13:31:28 +01:00
|
|
|
if (parser.is_set("max_time")) {
|
2020-06-18 09:59:09 +02:00
|
|
|
sc_start(scc::parse_from_string(parser.get<std::string>("max_time")));
|
2018-07-13 20:04:07 +02:00
|
|
|
} else
|
2020-06-18 09:59:09 +02:00
|
|
|
sc_start();
|
|
|
|
} catch(sc_report& e) {
|
|
|
|
SCCERR() << "Caught sc_report exception during simulation: " << e.what() << ":" << e.get_msg();
|
|
|
|
} catch(std::exception& e) {
|
|
|
|
SCCERR() << "Caught exception during simulation: " << e.what();
|
|
|
|
} catch(...) {
|
|
|
|
SCCERR() << "Caught unspecified exception during simulation";
|
|
|
|
}
|
|
|
|
if(sc_is_running()) {
|
|
|
|
SCCERR() << "Simulation timeout!"; // calls sc_stop
|
2018-07-13 20:04:07 +02:00
|
|
|
}
|
2020-06-18 09:59:09 +02:00
|
|
|
auto errcnt = sc_report_handler::get_count(SC_ERROR);
|
|
|
|
auto warncnt = sc_report_handler::get_count(SC_WARNING);
|
|
|
|
SCCINFO() << "Finished, there were " << errcnt << " error" << (errcnt == 1 ? "" : "s") << " and " << warncnt << " warning"
|
|
|
|
<< (warncnt == 1 ? "" : "s");
|
|
|
|
return errcnt + warncnt;
|
2017-09-21 13:13:01 +02:00
|
|
|
}
|