#include #include #include #include #include #include #include #include "debug.h" #include "types.h" #include "core.h" #include "args.h" using namespace vortex; int main(int argc, char **argv) { std::string archString("rv32i"); int num_cores(1); int num_warps(NUM_WARPS); int num_threads(NUM_THREADS); std::string imgFileName; bool showHelp(false); bool showStats(false); /* Read the command line arguments. */ CommandLineArgFlag fh("-h", "--help", "", showHelp); CommandLineArgSetter fa("-a", "--arch", "", archString); CommandLineArgSetter fi("-i", "--image", "", imgFileName); CommandLineArgSetter fc("-c", "--cores", "", num_cores); CommandLineArgSetter fw("-w", "--warps", "", num_warps); CommandLineArgSetter ft("-t", "--threads", "", num_threads); CommandLineArgFlag fs("-s", "--stats", "", showStats); CommandLineArg::readArgs(argc - 1, argv + 1); if (showHelp || imgFileName.empty()) { std::cout << "Vortex emulator command line arguments:\n" " -i, --image Program RAM image\n" " -c, --cores Number of cores\n" " -w, --warps Number of warps\n" " -t, --threads Number of threads\n" " -a, --arch Architecture string\n" " -s, --stats Print stats on exit.\n"; return 0; } ArchDef arch(archString, num_cores, num_warps, num_threads); Decoder decoder(arch); MemoryUnit mu(4096, arch.getWordSize(), true); RAM old_ram; old_ram.loadHexImpl(imgFileName.c_str()); mu.attach(old_ram, 0); struct stat hello; fstat(0, &hello); std::vector> cores(num_cores); for (int i = 0; i < num_cores; ++i) { cores[i] = std::make_shared(arch, decoder, mu); } bool running; do { running = false; for (int i = 0; i < num_cores; ++i) { if (!cores[i]->running()) continue; running = true; cores[i]->step(); } } while (running); return 0; }