WebKit Bugzilla
New
Browse
Search+
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
214093
Add a fuzzing toggle for LICM
https://bugs.webkit.org/show_bug.cgi?id=214093
Summary
Add a fuzzing toggle for LICM
Saam Barati
Reported
2020-07-08 12:21:34 PDT
Since we have an AI based safety checker for LICM, it's helpful to fuzz that we've implemented our AI safety checker correctly by deciding to randomly not hoist nodes.
Attachments
patch
(3.86 KB, patch)
2020-07-08 12:35 PDT
,
Saam Barati
no flags
Details
Formatted Diff
Diff
View All
Add attachment
proposed patch, testcase, etc.
Saam Barati
Comment 1
2020-07-08 12:35:11 PDT
Created
attachment 403803
[details]
patch
Yusuke Suzuki
Comment 2
2020-07-08 12:42:29 PDT
Comment on
attachment 403803
[details]
patch View in context:
https://bugs.webkit.org/attachment.cgi?id=403803&action=review
r=me
> Source/JavaScriptCore/dfg/DFGLICMPhase.cpp:185 > + WeakRandom random { Options::seedForLICMFuzzer() };
Initialize it only when using with useLICMFuzzing. WeakRandom reads random seeds from entropy pool and this is super slow.
Saam Barati
Comment 3
2020-07-08 13:35:29 PDT
Comment on
attachment 403803
[details]
patch View in context:
https://bugs.webkit.org/attachment.cgi?id=403803&action=review
>> Source/JavaScriptCore/dfg/DFGLICMPhase.cpp:185 >> + WeakRandom random { Options::seedForLICMFuzzer() }; > > Initialize it only when using with useLICMFuzzing. WeakRandom reads random seeds from entropy pool and this is super slow.
Even when it’s seeded?
Saam Barati
Comment 4
2020-07-08 14:13:11 PDT
(In reply to Saam Barati from
comment #3
)
> Comment on
attachment 403803
[details]
> patch > > View in context: >
https://bugs.webkit.org/attachment.cgi?id=403803&action=review
> > >> Source/JavaScriptCore/dfg/DFGLICMPhase.cpp:185 > >> + WeakRandom random { Options::seedForLICMFuzzer() }; > > > > Initialize it only when using with useLICMFuzzing. WeakRandom reads random seeds from entropy pool and this is super slow. > > Even when it’s seeded?
I've verified that this only does simple arithmetic when it's seeded. The default seed is "cryptographicallyRandomNumber()", which is probably what you're thinking about.
EWS
Comment 5
2020-07-08 14:33:58 PDT
Committed
r264133
: <
https://trac.webkit.org/changeset/264133
> All reviewed patches have been landed. Closing bug and clearing flags on
attachment 403803
[details]
.
Radar WebKit Bug Importer
Comment 6
2020-07-08 14:34:13 PDT
<
rdar://problem/65241432
>
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug