Introduce the wasmtime-explorer crate (#5975)
This implements Godbolt Compiler Explorer-like functionality for Wasmtime and Cranelift. Given a Wasm module, it compiles the module to native code and then writes a standalone HTML file that gives a split pane view between the WAT and ASM disassemblies.
This commit is contained in:
51
src/commands/explore.rs
Normal file
51
src/commands/explore.rs
Normal file
@@ -0,0 +1,51 @@
|
||||
//! The module that implements the `wasmtime explore` command.
|
||||
|
||||
use anyhow::{Context, Result};
|
||||
use clap::Parser;
|
||||
use std::path::PathBuf;
|
||||
use wasmtime_cli_flags::CommonOptions;
|
||||
|
||||
/// Explore the compilation of a WebAssembly module to native code.
|
||||
#[derive(Parser)]
|
||||
#[clap(name = "explore")]
|
||||
pub struct ExploreCommand {
|
||||
#[clap(flatten)]
|
||||
common: CommonOptions,
|
||||
|
||||
/// The target triple; default is the host triple
|
||||
#[clap(long, value_name = "TARGET")]
|
||||
target: Option<String>,
|
||||
|
||||
/// The path of the WebAssembly module to compile
|
||||
#[clap(required = true, value_name = "MODULE")]
|
||||
module: PathBuf,
|
||||
|
||||
/// The path of the explorer output (derived from the MODULE name if none
|
||||
/// provided)
|
||||
#[clap(short, long)]
|
||||
output: Option<PathBuf>,
|
||||
}
|
||||
|
||||
impl ExploreCommand {
|
||||
/// Executes the command.
|
||||
pub fn execute(&self) -> Result<()> {
|
||||
self.common.init_logging();
|
||||
|
||||
let config = self.common.config(self.target.as_deref())?;
|
||||
|
||||
let wasm = std::fs::read(&self.module)
|
||||
.with_context(|| format!("failed to read Wasm module: {}", self.module.display()))?;
|
||||
|
||||
let output = self
|
||||
.output
|
||||
.clone()
|
||||
.unwrap_or_else(|| self.module.with_extension("explore.html"));
|
||||
let output_file = std::fs::File::create(&output)
|
||||
.with_context(|| format!("failed to create file: {}", output.display()))?;
|
||||
let mut output_file = std::io::BufWriter::new(output_file);
|
||||
|
||||
wasmtime_explorer::generate(&config, self.target.as_deref(), &wasm, &mut output_file)?;
|
||||
println!("Exploration written to {}", output.display());
|
||||
Ok(())
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user