Revision: 15563
Author: [email protected]
Date: Mon Jul 8 11:00:24 2013
Log: MIPS: Rename AllocationSite::payload to
AllocationSite::transition_info
Port r15556 (3cd37fff)
BUG=
Review URL: https://codereview.chromium.org/18615008
http://code.google.com/p/v8/source/detail?r=15563
Modified:
/branches/bleeding_edge/src/mips/code-stubs-mips.cc
/branches/bleeding_edge/src/mips/stub-cache-mips.cc
=======================================
--- /branches/bleeding_edge/src/mips/code-stubs-mips.cc Mon Jul 8 10:58:03
2013
+++ /branches/bleeding_edge/src/mips/code-stubs-mips.cc Mon Jul 8 11:00:24
2013
@@ -7387,7 +7387,7 @@
// Save the resulting elements kind in type info
__ SmiTag(a3);
__ lw(t1, FieldMemOperand(a2, Cell::kValueOffset));
- __ sw(a3, FieldMemOperand(t1, AllocationSite::kPayloadOffset));
+ __ sw(a3, FieldMemOperand(t1, AllocationSite::kTransitionInfoOffset));
__ SmiUntag(a3);
__ bind(&normal_sequence);
@@ -7496,7 +7496,7 @@
__ LoadRoot(at, Heap::kAllocationSiteMapRootIndex);
__ Branch(&no_info, ne, t0, Operand(at));
- __ lw(a3, FieldMemOperand(a3, AllocationSite::kPayloadOffset));
+ __ lw(a3, FieldMemOperand(a3, AllocationSite::kTransitionInfoOffset));
__ SmiUntag(a3);
__ jmp(&switch_ready);
__ bind(&no_info);
=======================================
--- /branches/bleeding_edge/src/mips/stub-cache-mips.cc Mon Jul 8 10:01:12
2013
+++ /branches/bleeding_edge/src/mips/stub-cache-mips.cc Mon Jul 8 11:00:24
2013
@@ -1745,7 +1745,7 @@
}
Handle<AllocationSite> site = isolate()->factory()->NewAllocationSite();
- site->set_payload(Smi::FromInt(GetInitialFastElementsKind()));
+ site->set_transition_info(Smi::FromInt(GetInitialFastElementsKind()));
Handle<Cell> site_feedback_cell = isolate()->factory()->NewCell(site);
__ li(a0, Operand(argc));
__ li(a2, Operand(site_feedback_cell));
--
--
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.