diff --git a/Justfile b/Justfile index 4a38737..b2af51a 100644 --- a/Justfile +++ b/Justfile @@ -2,7 +2,7 @@ hello: clear; tmux clear-history || true; cargo build && target/debug/vestal bin/hello-msg.exe 2>&1 hello-v: clear; tmux clear-history || true; cargo build && target/debug/vestal -v bin/hello-msg.exe 2>&1 -kotel: - clear; tmux clear-history || true; cargo build && target/debug/vestal bin/kotel.dll 2>&1 -kotel-v: - clear; tmux clear-history || true; cargo build && target/debug/vestal -v bin/kotel.dll 2>&1 +vst: + clear; tmux clear-history || true; cargo build && target/debug/vestal bin/vst.dll 2>&1 +vst-v: + clear; tmux clear-history || true; cargo build && target/debug/vestal -v bin/vst.dll 2>&1 diff --git a/crates/vestal/src/call_sites.rs b/crates/vestal/src/call_sites.rs index 89fc9a6..db4c67f 100644 --- a/crates/vestal/src/call_sites.rs +++ b/crates/vestal/src/call_sites.rs @@ -44,9 +44,9 @@ impl Module { // Descend on CALL/JMP if CallSite::matches(&instruction) && !CallSite::skip(opcodes) { let call_site = self.call_site(start + position, opcodes)?; - if !self.targets.read().unwrap().contains_key(&call_site.target) { + //if !self.targets.read().unwrap().contains_key(&call_site.target) { Log::call_site(self.verbose && !group, &call_site, Some(opcodes), recurse); - } + //} self.load_call_site(&call_site); if let Some(depth) = recurse { self.load_call_site_recurse(&call_site, depth)?;