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
Diversify argument patterns for optimized function generators
This diversifies the arguments for the function calls in V8's
typical function-optimization shortcuts.
Often, reproducers have an argument pattern across the functions
that is not all equal. For getting polymorphic feedback or a type
deviation in the optimized function call, we see patterns like:
f(a); f(a); %Opt(f); f(b);
Or:
f(a); f(b); %Opt(f); f(c);
Though Fuzzilli will eventually mutate the arguments, this change
attempts to tickle out this diversity a bit more.
With the largest percentage we retain the old behavior.
Change-Id: I58c8e7361aa3ce122a034417708dcedb8b4d7888
Reviewed-on: https://chrome-internal-review.googlesource.com/c/v8/fuzzilli/+/9020237
Reviewed-by: Dominik Klemba <tacet@google.com>
Commit-Queue: Michael Achenbach <machenbach@google.com>
0 commit comments