From 47da562600315f99b4de269a056f00b9d14ed62f Mon Sep 17 00:00:00 2001 From: gatecat Date: Mon, 15 Aug 2022 12:15:00 +0200 Subject: viaduct: Allow passing command line options to uarch with -o Signed-off-by: gatecat --- generic/main.cc | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/generic/main.cc b/generic/main.cc index d08ae381..3ee1c790 100644 --- a/generic/main.cc +++ b/generic/main.cc @@ -49,6 +49,8 @@ po::options_description GenericCommandHandler::getArchOptions() po::options_description specific("Architecture specific options"); specific.add_options()("uarch", po::value(), uarch_help.c_str()); specific.add_options()("no-iobs", "disable automatic IO buffer insertion"); + specific.add_options()("vopt,o", po::value>(), "options to pass to the viaduct uarch"); + return specific; } @@ -68,6 +70,16 @@ std::unique_ptr GenericCommandHandler::createContext(dict(); dict args; // TODO + if (vm.count("vopt")) { + std::vector options = vm["vopt"].as>(); + for (const auto &opt : options) { + size_t epos = opt.find('='); + if (epos == std::string::npos) + args[opt] = ""; + else + args[opt.substr(0, epos)] = opt.substr(epos + 1); + } + } auto uarch = ViaductArch::create(uarch_name, args); if (!uarch) { std::string all_uarches = ViaductArch::list(); @@ -75,6 +87,8 @@ std::unique_ptr GenericCommandHandler::createContext(dictuarch = std::move(uarch); ctx->uarch->init(ctx.get()); + } else if (vm.count("vopt")) { + log_error("Viaduct options passed in non-viaduct mode!\n"); } return ctx; } -- cgit v1.2.3