Bug 63644 - [v8] Improve performance of typed array set() taking Array
Summary: [v8] Improve performance of typed array set() taking Array
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: WebGL (show other bugs)
Version: 528+ (Nightly build)
Hardware: All All
: P2 Normal
Assignee: Ulan Degenbaev
URL:
Keywords:
Depends on:
Blocks: 68237
  Show dependency treegraph
 
Reported: 2011-06-29 12:15 PDT by Kenneth Russell
Modified: 2011-09-16 11:02 PDT (History)
6 users (show)

See Also:


Attachments
Implement the 'set' method in JS. (20.46 KB, patch)
2011-09-06 15:56 PDT, Ulan Degenbaev
levin: review-
Details | Formatted Diff | Diff
Revised patch (26.48 KB, patch)
2011-09-07 19:31 PDT, Ulan Degenbaev
no flags Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Kenneth Russell 2011-06-29 12:15:19 PDT
The V8 binding for typed arrays' set() function taking a JavaScript Array as argument is disproportionately slower than the other bindings. The reason is the repeated crossings between the binding layer and the VM for each source array element that is fetched. This variant would be much more efficiently implemented in JavaScript using a simple loop. However, it isn't clear whether there are any other examples currently in the bindings of either implementing a method in the IDL in pure JavaScript, or replacing a method previously defined with one written in JS that might delegate to the original. We might need to add a post-initialization hook that runs after the global scope is initialized.

The associated Chromium bug for this issue, which contains a little more information, is http://crbug.com/84007 .
Comment 1 Kenneth Russell 2011-08-03 14:14:22 PDT
http://crbug.com/84007 has been updated to indicate that there is a similar performance problem with the typed array constructors taking JS arrays as arguments.
Comment 2 Ulan Degenbaev 2011-09-06 15:56:07 PDT
Created attachment 106509 [details]
Implement the 'set' method in JS.
Comment 3 David Levin 2011-09-07 14:31:05 PDT
Comment on attachment 106509 [details]
Implement the 'set' method in JS.

View in context: https://bugs.webkit.org/attachment.cgi?id=106509&action=review

Just a few comments. Also thanks to dslomov who helped.

> ChangeLog:19
> +        * ../../Source/WebCore/bindings/v8/custom/V8ArrayBufferViewCustomScript.js: Added.

This ChangeLog is messed up. See other entries in this file.

> Source/WebCore/WebCore.gyp/WebCore.gyp:483
> +          'action_name': 'generateV8ArrayBufferViewCustomScript.h',

Similar items are named like this: generateV8ArrayBufferViewCustomScript

> Source/WebCore/WebCore.gyp/WebCore.gyp:497
> +          'message': 'Generating V8ArrayBufferViewCustomScript.h from V8ArrayBuferViewCustomScript.js',

typo: V8ArrayBuferViewCustomScript

> Source/WebCore/bindings/v8/V8BindingScripts.cpp:32
> +namespace WebCore {

add blank line.

> Source/WebCore/bindings/v8/V8BindingScripts.cpp:33
> +void V8BindingScripts::runScriptsInGlobalContext(v8::Handle<v8::Context> v8Context)

s/runScriptsInGlobalContext/runScript/ ?

> Source/WebCore/bindings/v8/V8BindingScripts.cpp:37
> +                        sizeof(V8ArrayBufferViewCustomScript_js));

indentation is wrong.

> Source/WebCore/bindings/v8/V8BindingScripts.cpp:40
> +}

add blank line.

> Source/WebCore/bindings/v8/V8BindingScripts.h:37
> +    static void runScriptsInGlobalContext(v8::Handle<v8::Context> v8Context);

param name adds no info. Omit it.

> Source/WebCore/bindings/v8/V8DOMWindowShell.cpp:2
>   * Copyright (C) 2008, 2009 Google Inc. All rights reserved.

Add 2011.

> Source/WebCore/bindings/v8/custom/V8ArrayBufferViewCustomScript.js:34
> +                var n = source.length;

Please use descriptive variable names. (not "n")

> Source/WebCore/bindings/v8/custom/V8ArrayBufferViewCustomScript.js:41
> +            } else {

Don't use {} for single line statements.

> LayoutTests/fast/canvas/webgl/array-unit-tests.html:647
> +function testSettingFromArrayWithMinusZeroOffset(type, name) {

This test isn't used.
Comment 4 Kenneth Russell 2011-09-07 15:44:56 PDT
Comment on attachment 106509 [details]
Implement the 'set' method in JS.

View in context: https://bugs.webkit.org/attachment.cgi?id=106509&action=review

Modulo Dave's feedback, the code and new test cases look good. It would be nice to add versions of some of them (like testSettingFromArrayWithNonIntegerOffset) that take typed arrays rather than JavaScript arrays, to test both the new code path as well as the native version.

> Source/WebCore/bindings/v8/custom/V8ArrayBufferViewCustomScript.js:40
> +                    this[i + offset] = source[i];

Would it be faster to hoist 'this' into a local variable outside the loop, or will Crankshaft take care of that?
Comment 5 Ulan Degenbaev 2011-09-07 19:31:27 PDT
Created attachment 106692 [details]
Revised patch

Thank you for reviewing!

(In reply to comment #3)
> This ChangeLog is messed up. See other entries in this file.
I simplified it a bit and fixed file names, but I am not sure if you meant this. 

> s/runScriptsInGlobalContext/runScript/
I renamed it to "runScripts" to be consistent with the class name "BindingScripts".

All other comments are addressed as suggested.

(In reply to comment #4)
> It would be nice to add versions of some of them (like testSettingFromArrayWithNonIntegerOffset) that take typed arrays
Done. I added both versions and extracted duplicate code into "setWithValidOffset", "setWithInvalidOffset" functions.

> Would it be faster to hoist 'this' into a local variable outside the loop, or will Crankshaft take care of that?
I tried it but got no performance gain. Crankshaft seems to take care of it.
Comment 6 Kenneth Russell 2011-09-07 20:49:51 PDT
Comment on attachment 106692 [details]
Revised patch

This looks great. Thanks for pushing it forward. Setting r+ / cq+.
Comment 7 WebKit Review Bot 2011-09-08 12:54:26 PDT
Comment on attachment 106692 [details]
Revised patch

Clearing flags on attachment: 106692

Committed r94783: <http://trac.webkit.org/changeset/94783>
Comment 8 WebKit Review Bot 2011-09-08 12:54:30 PDT
All reviewed patches have been landed.  Closing bug.