Revision: 11508
Author:   [email protected]
Date:     Fri May  4 02:16:29 2012
Log:      Merged r11507 into trunk branch.

MIPS: Ensure reload of elements pointer in StoreFastDoubleElement stub

[email protected]

Review URL: https://chromiumcodereview.appspot.com/10382005
http://code.google.com/p/v8/source/detail?r=11508

Modified:
 /trunk/src/mips/stub-cache-mips.cc
 /trunk/src/version.cc

=======================================
--- /trunk/src/mips/stub-cache-mips.cc  Mon Apr 30 05:34:39 2012
+++ /trunk/src/mips/stub-cache-mips.cc  Fri May  4 02:16:29 2012
@@ -4537,6 +4537,8 @@
     // Increment the length of the array.
     __ li(length_reg, Operand(Smi::FromInt(1)));
__ sw(length_reg, FieldMemOperand(receiver_reg, JSArray::kLengthOffset));
+    __ lw(elements_reg,
+          FieldMemOperand(receiver_reg, JSObject::kElementsOffset));
     __ jmp(&finish_store);

     __ bind(&check_capacity);
=======================================
--- /trunk/src/version.cc       Thu May  3 07:23:35 2012
+++ /trunk/src/version.cc       Fri May  4 02:16:29 2012
@@ -35,7 +35,7 @@
 #define MAJOR_VERSION     3
 #define MINOR_VERSION     10
 #define BUILD_NUMBER      8
-#define PATCH_LEVEL       1
+#define PATCH_LEVEL       2
 // 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

Reply via email to