Bug 214093

Summary: Add a fuzzing toggle for LICM
Product: WebKit Reporter: Saam Barati <saam>
Component: JavaScriptCoreAssignee: Saam Barati <saam>
Status: RESOLVED FIXED    
Severity: Normal CC: benjamin, fpizlo, ggaren, gskachkov, guijemont, jsc32, keith_miller, mark.lam, msaboff, rmorisset, ross.kirsling, ticaiolima, tuomas.webkit, tzagallo, webkit-bug-importer, ysuzuki
Priority: P2 Keywords: InRadar
Version: Other   
Hardware: Unspecified   
OS: Unspecified   
Attachments:
Description Flags
patch none

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
Saam Barati
Comment 1 2020-07-08 12:35:11 PDT
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
Note You need to log in before you can comment on or make changes to this bug.