Files
wasmtime/cranelift/src/disasm.rs
Trevor Elliott f04decc4a1 Use capstone to validate precise-output tests (#5780)
Use the capstone library to disassemble precise-output tests, in addition to pretty-printing their vcode.
2023-02-15 16:35:10 -08:00

154 lines
4.0 KiB
Rust

use anyhow::Result;
use cfg_if::cfg_if;
use cranelift_codegen::ir::function::FunctionParameters;
use cranelift_codegen::isa::TargetIsa;
use cranelift_codegen::{MachReloc, MachStackMap, MachTrap};
use std::fmt::Write;
fn print_relocs(func_params: &FunctionParameters, relocs: &[MachReloc]) -> String {
let mut text = String::new();
for &MachReloc {
kind,
offset,
ref name,
addend,
} in relocs
{
writeln!(
text,
"reloc_external: {} {} {} at {}",
kind,
name.display(Some(func_params)),
addend,
offset
)
.unwrap();
}
text
}
pub fn print_traps(traps: &[MachTrap]) -> String {
let mut text = String::new();
for &MachTrap { offset, code } in traps {
writeln!(text, "trap: {code} at {offset:#x}").unwrap();
}
text
}
pub fn print_stack_maps(traps: &[MachStackMap]) -> String {
let mut text = String::new();
for MachStackMap {
offset,
offset_end,
stack_map,
} in traps
{
writeln!(
text,
"add_stack_map at {offset:#x}-{offset_end:#x} mapped_words={}",
stack_map.mapped_words()
)
.unwrap();
write!(text, " entries: ").unwrap();
let mut first = true;
for i in 0..stack_map.mapped_words() {
if !stack_map.get_bit(i as usize) {
continue;
}
if !first {
write!(text, ", ").unwrap();
} else {
first = false;
}
write!(text, "{i}").unwrap();
}
}
text
}
cfg_if! {
if #[cfg(feature = "disas")] {
pub fn print_disassembly(isa: &dyn TargetIsa, mem: &[u8]) -> Result<()> {
let cs = isa.to_capstone().map_err(|e| anyhow::format_err!("{}", e))?;
println!("\nDisassembly of {} bytes:", mem.len());
let insns = cs.disasm_all(&mem, 0x0).unwrap();
for i in insns.iter() {
let mut line = String::new();
write!(&mut line, "{:4x}:\t", i.address()).unwrap();
let mut bytes_str = String::new();
let mut len = 0;
let mut first = true;
for b in i.bytes() {
if !first {
write!(&mut bytes_str, " ").unwrap();
}
write!(&mut bytes_str, "{:02x}", b).unwrap();
len += 1;
first = false;
}
write!(&mut line, "{:21}\t", bytes_str).unwrap();
if len > 8 {
write!(&mut line, "\n\t\t\t\t").unwrap();
}
if let Some(s) = i.mnemonic() {
write!(&mut line, "{}\t", s).unwrap();
}
if let Some(s) = i.op_str() {
write!(&mut line, "{}", s).unwrap();
}
println!("{}", line);
}
Ok(())
}
} else {
pub fn print_disassembly(_: &dyn TargetIsa, _: &[u8]) -> Result<()> {
println!("\nNo disassembly available.");
Ok(())
}
}
}
pub fn print_all(
isa: &dyn TargetIsa,
func_params: &FunctionParameters,
mem: &[u8],
code_size: u32,
print: bool,
relocs: &[MachReloc],
traps: &[MachTrap],
stack_maps: &[MachStackMap],
) -> Result<()> {
print_bytes(&mem);
print_disassembly(isa, &mem[0..code_size as usize])?;
if print {
println!(
"\n{}\n{}\n{}",
print_relocs(func_params, relocs),
print_traps(traps),
print_stack_maps(stack_maps)
);
}
Ok(())
}
pub fn print_bytes(mem: &[u8]) {
print!(".byte ");
let mut first = true;
for byte in mem.iter() {
if first {
first = false;
} else {
print!(", ");
}
print!("{}", byte);
}
println!();
}