v86/tests/benchmark/arch-bytemark.js
2022-11-15 10:14:28 +09:00

80 lines
2 KiB
JavaScript
Executable file

#!/usr/bin/env node
"use strict";
const BENCH_COLLECT_STATS = +process.env.BENCH_COLLECT_STATS;
const { V86, print_stats } = require(`../../build/${BENCH_COLLECT_STATS ? "libv86-debug" : "libv86"}.js`);
const path = require("path");
const V86_ROOT = path.join(__dirname, "../..");
const emulator = new V86({
bios: { url: path.join(V86_ROOT, "/bios/seabios.bin") },
vga_bios: { url: path.join(V86_ROOT, "/bios/vgabios.bin") },
autostart: true,
memory_size: 512 * 1024 * 1024,
vga_memory_size: 8 * 1024 * 1024,
network_relay_url: "<UNUSED>",
initial_state: { url: path.join(V86_ROOT, "/images/arch_state.bin") },
filesystem: { baseurl: path.join(V86_ROOT, "/images/arch-nongz/") },
screen_dummy: true,
log_level: 0,
});
emulator.bus.register("emulator-started", function()
{
let exclude_tests = [];
if(process.argv.length > 2)
{
exclude_tests = [
"DONUMSORT",
"DOSTRINGSORT",
"DOBITFIELD",
"DOEMF",
"DOFOUR",
"DOASSIGN",
"DOIDEA",
"DOHUFF",
"DONNET",
"DOLU",
].filter(name => !process.argv.includes(name));
}
setTimeout(() => {
const set = exclude_tests.map(name => `echo ${name}=0 >> CMD`).join(" && ");
emulator.serial0_send(`echo 0 > /sys/class/graphics/fbcon/cursor_blink && cd nbench && touch CMD && ${set} && ./nbench -cCMD\n`);
}, 1000);
});
var line = "";
emulator.add_listener("serial0-output-char", function(chr)
{
if(chr < " " && chr !== "\n" && chr !== "\t" || chr > "~")
{
return;
}
if(chr === "\n")
{
console.log("%s", line);
line = "";
}
else
{
line += chr;
}
if(line === "* Trademarks are property of their respective holder.")
{
emulator.stop();
if(BENCH_COLLECT_STATS)
{
const cpu = emulator.v86.cpu;
console.log(print_stats.stats_to_string(cpu));
}
}
});