Index: src/mips/lithium-codegen-mips.cc |
diff --git a/src/mips/lithium-codegen-mips.cc b/src/mips/lithium-codegen-mips.cc |
index eac627dbdbf586fcf9247d03024708d77a2ae201..e4e2b0d3d12dc297cc406f97df6832ab944b2a75 100644 |
--- a/src/mips/lithium-codegen-mips.cc |
+++ b/src/mips/lithium-codegen-mips.cc |
@@ -4067,7 +4067,14 @@ void LCodeGen::DoCallNewArray(LCallNewArray* instr) { |
DCHECK(ToRegister(instr->result()).is(v0)); |
__ li(a0, Operand(instr->arity())); |
- __ LoadRoot(a2, Heap::kUndefinedValueRootIndex); |
+ if (instr->arity() == 1) { |
+ // We only need the allocation site for the case we have a length argument. |
+ // The case may bail out to the runtime, which will determine the correct |
+ // elements kind with the site. |
+ __ li(a2, instr->hydrogen()->site()); |
+ } else { |
+ __ LoadRoot(a2, Heap::kUndefinedValueRootIndex); |
+ } |
ElementsKind kind = instr->hydrogen()->elements_kind(); |
AllocationSiteOverrideMode override_mode = |
(AllocationSite::GetMode(kind) == TRACK_ALLOCATION_SITE) |