RESOLVED DUPLICATE of bug 189210 177093
WSL should flag stores to constant references
https://bugs.webkit.org/show_bug.cgi?id=177093
Summary WSL should flag stores to constant references
Filip Pizlo
Reported 2017-09-18 12:00:19 PDT
Patch forthcoming.
Attachments
Radar WebKit Bug Importer
Comment 1 2018-09-12 18:52:17 PDT
Myles C. Maxfield
Comment 2 2018-09-22 04:16:06 PDT
This requires that address spaces get propagated to individual values. constant float[] a : register(b0) a[3] = 7; We need to realize that the type of a[3] is "constant float" This analysis is required for things like device atomic_uint[] x : register(u0); InterlockedAdd(&x[0], 1, null); Here, we have to realize that the type of &x[0] is type "device uint*"
Myles C. Maxfield
Comment 3 2018-09-22 16:52:12 PDT
*** This bug has been marked as a duplicate of bug 189210 ***
Myles C. Maxfield
Comment 4 2018-10-13 19:46:00 PDT
Note You need to log in before you can comment on or make changes to this bug.