RESOLVED FIXED 63563
DFG JIT - add support for double arith to speculative path
https://bugs.webkit.org/show_bug.cgi?id=63563
Summary DFG JIT - add support for double arith to speculative path
Gavin Barraclough
Reported 2011-06-28 14:15:09 PDT
Add integer support for div & mod, add double support for div, mod, add, sub & mul, dynamically selecting based on operand types.
Attachments
The patch (19.43 KB, patch)
2011-06-28 14:17 PDT, Gavin Barraclough
oliver: review+
Gavin Barraclough
Comment 1 2011-06-28 14:17:14 PDT
Created attachment 98970 [details] The patch
WebKit Review Bot
Comment 2 2011-06-28 14:20:52 PDT
Attachment 98970 [details] did not pass style-queue: Failed to run "['Tools/Scripts/check-webkit-style', '--diff-files', u'Source/JavaScriptCore/ChangeLog', u'Source..." exit_code: 1 Source/JavaScriptCore/dfg/DFGSpeculativeJIT.cpp:187: An else if statement should be written as an if statement when the prior "if" concludes with a return, break, continue or goto statement. [readability/control_flow] [4] Total errors found: 1 in 6 files If any of these errors are false positives, please file a bug against check-webkit-style.
Oliver Hunt
Comment 3 2011-06-28 14:24:03 PDT
Comment on attachment 98970 [details] The patch View in context: https://bugs.webkit.org/attachment.cgi?id=98970&action=review > Source/JavaScriptCore/dfg/DFGSpeculativeJIT.cpp:196 > + } else if (isDoubleConstant(nodeIndex)) { Fiux these style issues > Source/JavaScriptCore/dfg/DFGSpeculativeJIT.cpp:204 > + return fpr; again
Gavin Barraclough
Comment 4 2011-06-28 14:33:51 PDT
Fixed in r89961.
Note You need to log in before you can comment on or make changes to this bug.