RESOLVED FIXED 177269
WSL should not type-check functions in the standard library that it does not use
https://bugs.webkit.org/show_bug.cgi?id=177269
Summary WSL should not type-check functions in the standard library that it does not use
Filip Pizlo
Reported 2017-09-20 14:13:53 PDT
Patch forthcoming.
Attachments
the patch (21.08 KB, patch)
2017-09-20 14:19 PDT, Filip Pizlo
jfbastien: review+
Filip Pizlo
Comment 1 2017-09-20 14:19:11 PDT
Created attachment 321367 [details] the patch
JF Bastien
Comment 2 2017-09-20 14:26:04 PDT
Comment on attachment 321367 [details] the patch View in context: https://bugs.webkit.org/attachment.cgi?id=321367&action=review r=me > Tools/WebGPUShadingLanguageRI/NameContext.js:97 > + if (thing.kind == Func) { === ? > Tools/WebGPUShadingLanguageRI/Prepare.js:29 > + return function(origin, lineNumberOffset, text) { Why? > Tools/WebGPUShadingLanguageRI/ProgramWithUnnecessaryThingsRemoved.js:33 > + if (statement.origin.originKind == "user") === ? > Tools/WebGPUShadingLanguageRI/ProgramWithUnnecessaryThingsRemoved.js:40 > + // We need these even if the program doesn't mention them by name. Why?
Filip Pizlo
Comment 3 2017-09-20 15:09:14 PDT
(In reply to JF Bastien from comment #2) > Comment on attachment 321367 [details] > the patch > > View in context: > https://bugs.webkit.org/attachment.cgi?id=321367&action=review > > r=me > > > Tools/WebGPUShadingLanguageRI/NameContext.js:97 > > + if (thing.kind == Func) { > > === ? Fixed. > > > Tools/WebGPUShadingLanguageRI/Prepare.js:29 > > + return function(origin, lineNumberOffset, text) { > > Why? arguments.length doesn't work in arrow functions. > > > Tools/WebGPUShadingLanguageRI/ProgramWithUnnecessaryThingsRemoved.js:33 > > + if (statement.origin.originKind == "user") > > === ? Fixed. > > > Tools/WebGPUShadingLanguageRI/ProgramWithUnnecessaryThingsRemoved.js:40 > > + // We need these even if the program doesn't mention them by name. > > Why? Later phases resolve these directly sometimes (the compiler will say things like program.globalNameContext.get(Type, "void") and expect non-null). For example even if you compile "int foo() { return 42; }", we will resolve void just to make sure that int isn't the same as void - because if int was void then the return shouldn't return a value. Also if you compile "double foo() { return 42; }" we will also resolve int because "42" might be an int (we actually select double as 42's type but not before trying int).
Filip Pizlo
Comment 4 2017-09-20 15:41:17 PDT
Radar WebKit Bug Importer
Comment 5 2017-09-27 12:20:01 PDT
Myles C. Maxfield
Comment 6 2018-10-13 19:32:20 PDT
Note You need to log in before you can comment on or make changes to this bug.