Revision: 19339
Author:   [email protected]
Date:     Wed Feb 12 17:31:29 2014 UTC
Log:      KeyedLoadIC::GenerateGeneric() fix for MIPS.

[email protected]

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

Modified:
 /branches/bleeding_edge/src/mips/ic-mips.cc

=======================================
--- /branches/bleeding_edge/src/mips/ic-mips.cc Sat Feb  1 02:23:46 2014 UTC
+++ /branches/bleeding_edge/src/mips/ic-mips.cc Wed Feb 12 17:31:29 2014 UTC
@@ -229,7 +229,8 @@
   __ lw(map, FieldMemOperand(receiver, HeapObject::kMapOffset));
   // Check bit field.
   __ lbu(scratch, FieldMemOperand(map, Map::kBitFieldOffset));
-  __ And(at, scratch, Operand(KeyedLoadIC::kSlowCaseBitFieldMask));
+  __ And(at, scratch,
+ Operand((1 << Map::kIsAccessCheckNeeded) | (1 << interceptor_bit)));
   __ Branch(slow, ne, at, Operand(zero_reg));
   // Check that the object is some kind of JS object EXCEPT JS Value type.
   // In the case that the object is a value-wrapper object,
@@ -649,7 +650,7 @@
   GenerateKeyNameCheck(masm, key, a2, a3, &index_name, &slow);

   GenerateKeyedLoadReceiverCheck(
-       masm, receiver, a2, a3, Map::kHasIndexedInterceptor, &slow);
+       masm, receiver, a2, a3, Map::kHasNamedInterceptor, &slow);


   // If the receiver is a fast-case object, check the keyed lookup

--
--
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