MCPcopy Create free account
hub / github.com/bytecodealliance/wasmtime / decorate

Method decorate

src/commands/objdump.rs:460–467  ·  view source on GitHub ↗
(&mut self, address: u64, pre_list: &mut Vec<String>, post_list: &mut Vec<String>)

Source from the content-addressed store, hash-verified

458
459impl Decorator<'_> {
460 fn decorate(&mut self, address: u64, pre_list: &mut Vec<String>, post_list: &mut Vec<String>) {
461 self.addrmap(address, post_list);
462 self.traps(address, post_list);
463 self.stack_maps(address, post_list);
464 self.exception_table(address, pre_list);
465 self.frame_table(address, pre_list, post_list);
466 self.breakpoints(address, pre_list);
467 }
468
469 fn addrmap(&mut self, address: u64, list: &mut Vec<String>) {
470 if !self.objdump.addrmap() {

Callers 1

executeMethod · 0.80

Calls 6

addrmapMethod · 0.80
stack_mapsMethod · 0.80
trapsMethod · 0.45
exception_tableMethod · 0.45
frame_tableMethod · 0.45
breakpointsMethod · 0.45

Tested by

no test coverage detected