You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[WARP] Improve matcher speed and add fast fail for pathological cases
Improves the speed by moving chunks of functions into worker threads, because of how the functions and possible functions are gathered we have many locations to insert fast fails, which is also partially addressed by this commit (see `maximum_possible_functions`).
"description":"When matching any function that has a list of possible functions greater than this number will be skipped. A value of 0 will disable this check.",
406
+
"ignore":[]
407
+
});
408
+
bn_settings.register_setting_json(
409
+
Self::MAXIMUM_POSSIBLE_FUNCTIONS_SETTING,
410
+
&maximum_possible_functions_props.to_string(),
411
+
);
381
412
}
382
413
383
414
/// Retrieve matcher settings from [`BNSettings`].
0 commit comments