Bug 122903 - transition void cti_op_put_by_val* stubs to JIT operations
Summary: transition void cti_op_put_by_val* stubs to JIT operations
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: JavaScriptCore (show other bugs)
Version: 528+ (Nightly build)
Hardware: All All
: P2 Normal
Assignee: Michael Saboff
URL:
Keywords:
Depends on:
Blocks: 122287
  Show dependency treegraph
 
Reported: 2013-10-16 09:38 PDT by Michael Saboff
Modified: 2013-10-16 23:25 PDT (History)
4 users (show)

See Also:


Attachments
Patch (22.28 KB, patch)
2013-10-16 16:03 PDT, Michael Saboff
fpizlo: review+
eflews.bot: commit-queue-
Details | Formatted Diff | Diff
Patch with fix for Release builds (22.41 KB, patch)
2013-10-16 17:22 PDT, Michael Saboff
no flags Details | Formatted Diff | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description Michael Saboff 2013-10-16 09:38:47 PDT
Transition cti_op_put_by_val and cti_op_put_by_val_generic to JIT Operations.
Comment 1 Michael Saboff 2013-10-16 16:03:46 PDT
Created attachment 214400 [details]
Patch

The callOperation in emitSlow_op_put_by_val() for X86 materializes the arguments due to not having the needed 6 temporary registers needed to use the corresponding callOperation().  When we free up our call frame register as another temporary, we can eliminate this X86 only code.
Comment 2 Geoffrey Garen 2013-10-16 16:09:32 PDT
Comment on attachment 214400 [details]
Patch

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

r=me

> Source/JavaScriptCore/jit/JITOperations.cpp:544
> +

Remove please.
Comment 3 EFL EWS Bot 2013-10-16 16:19:43 PDT
Comment on attachment 214400 [details]
Patch

Attachment 214400 [details] did not pass efl-ews (efl):
Output: http://webkit-queues.appspot.com/results/4111395
Comment 4 Build Bot 2013-10-16 16:32:52 PDT
Comment on attachment 214400 [details]
Patch

Attachment 214400 [details] did not pass mac-wk2-ews (mac-wk2):
Output: http://webkit-queues.appspot.com/results/3482426
Comment 5 Build Bot 2013-10-16 16:50:24 PDT
Comment on attachment 214400 [details]
Patch

Attachment 214400 [details] did not pass mac-ews (mac):
Output: http://webkit-queues.appspot.com/results/4107366
Comment 6 Michael Saboff 2013-10-16 17:22:07 PDT
Created attachment 214410 [details]
Patch with fix for Release builds
Comment 7 Michael Saboff 2013-10-16 18:22:53 PDT
Committed r157546: <http://trac.webkit.org/changeset/157546>