Revision: 24293
Author: [email protected]
Date: Mon Sep 29 15:59:38 2014 UTC
Log: MIPS: Fix r24286 "ExtendStorageStub added, it is aimed for
extending objects backing store when it runs out of space".
BUG=
[email protected]
Review URL: https://codereview.chromium.org/605873005
https://code.google.com/p/v8/source/detail?r=24293
Modified:
/branches/bleeding_edge/src/ic/mips/handler-compiler-mips.cc
/branches/bleeding_edge/src/ic/mips64/handler-compiler-mips64.cc
=======================================
--- /branches/bleeding_edge/src/ic/mips/handler-compiler-mips.cc Mon Sep 29
13:11:27 2014 UTC
+++ /branches/bleeding_edge/src/ic/mips/handler-compiler-mips.cc Mon Sep 29
15:59:38 2014 UTC
@@ -391,8 +391,8 @@
if (details.type() == FIELD &&
Map::cast(transition->GetBackPointer())->unused_property_fields() ==
0) {
// The properties must be extended before we can store the value.
- __ mov(ExtendStorageDescriptor::NameRegister(), Operand(name));
- __ mov(ExtendStorageDescriptor::MapRegister(), Operand(transition));
+ __ li(ExtendStorageDescriptor::NameRegister(), Operand(name));
+ __ li(ExtendStorageDescriptor::MapRegister(), Operand(transition));
ExtendStorageStub stub(isolate(),
=======================================
--- /branches/bleeding_edge/src/ic/mips64/handler-compiler-mips64.cc Mon
Sep 29 13:11:27 2014 UTC
+++ /branches/bleeding_edge/src/ic/mips64/handler-compiler-mips64.cc Mon
Sep 29 15:59:38 2014 UTC
@@ -391,8 +391,8 @@
if (details.type() == FIELD &&
Map::cast(transition->GetBackPointer())->unused_property_fields() ==
0) {
// The properties must be extended before we can store the value.
- __ Mov(ExtendStorageDescriptor::NameRegister(), Operand(name));
- __ Mov(ExtendStorageDescriptor::MapRegister(), Operand(transition));
+ __ li(ExtendStorageDescriptor::NameRegister(), Operand(name));
+ __ li(ExtendStorageDescriptor::MapRegister(), Operand(transition));
ExtendStorageStub stub(isolate(),
FieldIndex::ForDescriptor(*transition,
descriptor),
--
--
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/d/optout.