RESOLVED FIXED 118798
DFG assumes that NewFunction will never pass its input through
https://bugs.webkit.org/show_bug.cgi?id=118798
Summary DFG assumes that NewFunction will never pass its input through
Gabor Rapcsanyi
Reported 2013-07-17 04:59:06 PDT
32 bit systems are segfaulting with the following test: function run_tests() { function x() { return 3; } var x = 13; return x + x; } for(var i=0; i<100; ++i) run_tests(); The problem is that SpeculativeJIT::fillJSValue() set the jsvalue tag to cell after a NewFunction node.
Attachments
proposed fix (16.55 KB, patch)
2013-07-17 05:12 PDT, Gabor Rapcsanyi
fpizlo: review-
fpizlo: commit-queue-
the patch (16.91 KB, patch)
2013-07-17 14:57 PDT, Filip Pizlo
oliver: review+
the patch (16.90 KB, patch)
2013-07-17 15:20 PDT, Filip Pizlo
no flags
the patch (18.49 KB, patch)
2013-07-17 15:35 PDT, Filip Pizlo
sam: review+
patch for landing (63.99 KB, patch)
2013-07-17 16:02 PDT, Filip Pizlo
no flags
Gabor Rapcsanyi
Comment 1 2013-07-17 05:12:14 PDT
Created attachment 206885 [details] proposed fix
Gabor Rapcsanyi
Comment 2 2013-07-17 05:19:23 PDT
(In reply to comment #0) > 32 bit systems are segfaulting with the following test: > > function run_tests() { > function x() { > return 3; > } > > var x = 13; > return x + x; > } > > for(var i=0; i<100; ++i) > run_tests(); > > > The problem is that SpeculativeJIT::fillJSValue() set the jsvalue tag to cell after a NewFunction node. On 64 bit systems fillJSValue() doesn't set the jsvalue tag but we should fix that as well.
Filip Pizlo
Comment 3 2013-07-17 08:41:21 PDT
(In reply to comment #2) > (In reply to comment #0) > > 32 bit systems are segfaulting with the following test: > > > > function run_tests() { > > function x() { > > return 3; > > } > > > > var x = 13; > > return x + x; > > } > > > > for(var i=0; i<100; ++i) > > run_tests(); > > > > > > The problem is that SpeculativeJIT::fillJSValue() set the jsvalue tag to cell after a NewFunction node. > > On 64 bit systems fillJSValue() doesn't set the jsvalue tag but we should fix that as well. It seems like your fix is all wrong. - NewFunction should set the data format to cell, and that's not the big. - On 64-bit systems there is no such thing as a cell tag.
Filip Pizlo
Comment 4 2013-07-17 08:42:17 PDT
(In reply to comment #3) > (In reply to comment #2) > > (In reply to comment #0) > > > 32 bit systems are segfaulting with the following test: > > > > > > function run_tests() { > > > function x() { > > > return 3; > > > } > > > > > > var x = 13; > > > return x + x; > > > } > > > > > > for(var i=0; i<100; ++i) > > > run_tests(); > > > > > > > > > The problem is that SpeculativeJIT::fillJSValue() set the jsvalue tag to cell after a NewFunction node. > > > > On 64 bit systems fillJSValue() doesn't set the jsvalue tag but we should fix that as well. > > It seems like your fix is all wrong. > > - NewFunction should set the data format to cell, and that's not the big. *bug. > > - On 64-bit systems there is no such thing as a cell tag.
Gabor Rapcsanyi
Comment 5 2013-07-17 10:28:52 PDT
So what do you suggest then because the DFG graph has this NewFunction node which will always set the registerFormat to cell in cellResult() ?(In reply to comment #4) > (In reply to comment #3) > > (In reply to comment #2) > > > (In reply to comment #0) > > > > 32 bit systems are segfaulting with the following test: > > > > > > > > function run_tests() { > > > > function x() { > > > > return 3; > > > > } > > > > > > > > var x = 13; > > > > return x + x; > > > > } > > > > > > > > for(var i=0; i<100; ++i) > > > > run_tests(); > > > > > > > > > > > > The problem is that SpeculativeJIT::fillJSValue() set the jsvalue tag to cell after a NewFunction node. > > > > > > On 64 bit systems fillJSValue() doesn't set the jsvalue tag but we should fix that as well. > > > > It seems like your fix is all wrong. > > > > - NewFunction should set the data format to cell, and that's not the big. > > *bug. > > > > > - On 64-bit systems there is no such thing as a cell tag. So what do you suggest then because the DFG graph has this NewFunction node which will always set the registerFormat to cell in cellResult() ?
Filip Pizlo
Comment 6 2013-07-17 14:03:38 PDT
(In reply to comment #5) > So what do you suggest then because the DFG graph has this NewFunction node which will always set the registerFormat to cell in cellResult() ?(In reply to comment #4) > > (In reply to comment #3) > > > (In reply to comment #2) > > > > (In reply to comment #0) > > > > > 32 bit systems are segfaulting with the following test: > > > > > > > > > > function run_tests() { > > > > > function x() { > > > > > return 3; > > > > > } > > > > > > > > > > var x = 13; > > > > > return x + x; > > > > > } > > > > > > > > > > for(var i=0; i<100; ++i) > > > > > run_tests(); > > > > > > > > > > > > > > > The problem is that SpeculativeJIT::fillJSValue() set the jsvalue tag to cell after a NewFunction node. > > > > > > > > On 64 bit systems fillJSValue() doesn't set the jsvalue tag but we should fix that as well. > > > > > > It seems like your fix is all wrong. > > > > > > - NewFunction should set the data format to cell, and that's not the big. > > > > *bug. > > > > > > > > - On 64-bit systems there is no such thing as a cell tag. > > So what do you suggest then because the DFG graph has this NewFunction node which will always set the registerFormat to cell in cellResult() ? It's is correct for NewFunction to set the registerFormat to cell in cellResult(). NewFunction returns a cell. cellResult() is what you call when you want to return a cell. The type of a function is a cell. That's not the bug here. I will investigate what the bug is.
Filip Pizlo
Comment 7 2013-07-17 14:11:52 PDT
(In reply to comment #6) > (In reply to comment #5) > > So what do you suggest then because the DFG graph has this NewFunction node which will always set the registerFormat to cell in cellResult() ?(In reply to comment #4) > > > (In reply to comment #3) > > > > (In reply to comment #2) > > > > > (In reply to comment #0) > > > > > > 32 bit systems are segfaulting with the following test: > > > > > > > > > > > > function run_tests() { > > > > > > function x() { > > > > > > return 3; > > > > > > } > > > > > > > > > > > > var x = 13; > > > > > > return x + x; > > > > > > } > > > > > > > > > > > > for(var i=0; i<100; ++i) > > > > > > run_tests(); > > > > > > > > > > > > > > > > > > The problem is that SpeculativeJIT::fillJSValue() set the jsvalue tag to cell after a NewFunction node. > > > > > > > > > > On 64 bit systems fillJSValue() doesn't set the jsvalue tag but we should fix that as well. > > > > > > > > It seems like your fix is all wrong. > > > > > > > > - NewFunction should set the data format to cell, and that's not the big. > > > > > > *bug. > > > > > > > > > > > - On 64-bit systems there is no such thing as a cell tag. > > > > So what do you suggest then because the DFG graph has this NewFunction node which will always set the registerFormat to cell in cellResult() ? > > It's is correct for NewFunction to set the registerFormat to cell in cellResult(). NewFunction returns a cell. cellResult() is what you call when you want to return a cell. The type of a function is a cell. > > That's not the bug here. > > I will investigate what the bug is. Argh. You're half right, and I'm full wrong. The NewFunction node flows its input through like this: if (input & SpecEmpty) result = (input & ~SpecEmpty) | SpecFunction else result = input The problem can either be fixed by making NewFunction explicitly behave this way in the prediction propagator, abstract state, and backend; or by changing how we parse op_new_function. Not sure, yet, which is the lesser evil.
Filip Pizlo
Comment 8 2013-07-17 14:50:33 PDT
Filip Pizlo
Comment 9 2013-07-17 14:57:00 PDT
Created attachment 206920 [details] the patch
Filip Pizlo
Comment 10 2013-07-17 15:20:57 PDT
Created attachment 206922 [details] the patch
Filip Pizlo
Comment 11 2013-07-17 15:35:01 PDT
Created attachment 206925 [details] the patch
Filip Pizlo
Comment 12 2013-07-17 16:02:41 PDT
Created attachment 206926 [details] patch for landing Still running some more tests.
Filip Pizlo
Comment 13 2013-07-17 16:26:28 PDT
Filip Pizlo
Comment 14 2013-07-17 16:42:42 PDT
Note You need to log in before you can comment on or make changes to this bug.