Revision: 18504
Author:   [email protected]
Date:     Wed Jan  8 21:55:03 2014 UTC
Log:      Merged r18443 into 3.23 branch.

MIPS: Fix loading of global object in LWrapReceiver.

BUG=318420
LOG=N
[email protected]

Review URL: https://codereview.chromium.org/128693002
http://code.google.com/p/v8/source/detail?r=18504

Modified:
 /branches/3.23/src/mips/lithium-codegen-mips.cc
 /branches/3.23/src/version.cc

=======================================
--- /branches/3.23/src/mips/lithium-codegen-mips.cc Tue Dec 3 08:00:39 2013 UTC +++ /branches/3.23/src/mips/lithium-codegen-mips.cc Wed Jan 8 21:55:03 2014 UTC
@@ -3410,7 +3410,9 @@
   __ Branch(&result_in_receiver);

   __ bind(&global_object);
-  __ lw(result, GlobalObjectOperand());
+
+  __ lw(result, MemOperand(fp, StandardFrameConstants::kContextOffset));
+  __ lw(result, ContextOperand(result, Context::GLOBAL_OBJECT_INDEX));
   __ lw(result,
          FieldMemOperand(result, JSGlobalObject::kGlobalReceiverOffset));
   if (result.is(receiver)) {
=======================================
--- /branches/3.23/src/version.cc       Wed Jan  8 10:34:14 2014 UTC
+++ /branches/3.23/src/version.cc       Wed Jan  8 21:55:03 2014 UTC
@@ -35,7 +35,7 @@
 #define MAJOR_VERSION     3
 #define MINOR_VERSION     23
 #define BUILD_NUMBER      17
-#define PATCH_LEVEL       3
+#define PATCH_LEVEL       4
 // Use 1 for candidates and 0 otherwise.
 // (Boolean macro values are not supported by all preprocessors.)
 #define IS_CANDIDATE_VERSION 0

--
--
v8-dev mailing list
[email protected]
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 [email protected].
For more options, visit https://groups.google.com/groups/opt_out.

Reply via email to