From: palfia@homejinni.com Date: Tue, 17 Dec 2013 18:41:35 +0000 (+0000) Subject: MIPS: Move the receiver into r0 for PatchGlobalProxy. X-Git-Tag: upstream/4.7.83~11369 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e86cfac879ca6db37f6a9271bb87ec6af187d1db;p=platform%2Fupstream%2Fv8.git MIPS: Move the receiver into r0 for PatchGlobalProxy. Port r18327 (372ee171) Original commit message: This fixes the ARM/android bug http://build.chromium.org/p/tryserver.chromium/builders/android_dbg_triggered_tests/builds/112686/steps/androidwebview_instrumentation_tests BUG= R=plind44@gmail.com Review URL: https://codereview.chromium.org/107483005 git-svn-id: http://v8.googlecode.com/svn/branches/bleeding_edge@18328 ce2b1a6d-e550-0410-aec6-3dcde31c8c00 --- diff --git a/src/mips/stub-cache-mips.cc b/src/mips/stub-cache-mips.cc index 0b84e5a..90c7e09 100644 --- a/src/mips/stub-cache-mips.cc +++ b/src/mips/stub-cache-mips.cc @@ -1024,6 +1024,7 @@ class CallInterceptorCompiler BASE_EMBEDDED { masm, optimization, arguments_.immediate(), false); } else { Handle function = optimization.constant_function(); + __ Move(a0, receiver); stub_compiler_->GenerateJumpFunction(object, function); }