Reviewers: ,

Message:
Committed patchset #1 manually as r18327.

Description:
Move the receiver into r0 for PatchGlobalProxy.
This fixes the ARM/android bug
http://build.chromium.org/p/tryserver.chromium/builders/android_dbg_triggered_tests/builds/112686/steps/androidwebview_instrumentation_tests
TBR=dcar...@chromium.org

BUG=

Committed: https://code.google.com/p/v8/source/detail?r=18327

Please review this at https://codereview.chromium.org/104823006/

SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge

Affected files (+1, -0 lines):
  M src/arm/stub-cache-arm.cc


Index: src/arm/stub-cache-arm.cc
diff --git a/src/arm/stub-cache-arm.cc b/src/arm/stub-cache-arm.cc
index 08fd2c26f1c142342ba2241d26a4de4a6f552ebf..4d9fc0de036991159a6d9f422bd19b84bac4737c 100644
--- a/src/arm/stub-cache-arm.cc
+++ b/src/arm/stub-cache-arm.cc
@@ -1036,6 +1036,7 @@ class CallInterceptorCompiler BASE_EMBEDDED {
           masm, optimization, arguments_.immediate(), false);
     } else {
       Handle<JSFunction> function = optimization.constant_function();
+      __ Move(r0, receiver);
       stub_compiler_->GenerateJumpFunction(object, function);
     }



--
--
v8-dev mailing list
v8-dev@googlegroups.com
http://groups.google.com/group/v8-dev
--- You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to v8-dev+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to