mirror of
https://codeberg.org/unspeaker/vestal.git
synced 2025-12-06 12:56:41 +01:00
log all call sites now that they're filtered
This commit is contained in:
parent
71adf9cec3
commit
88a5f28f9e
2 changed files with 6 additions and 6 deletions
|
|
@ -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)?;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue