OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "v8.h" | 5 #include "v8.h" |
6 | 6 |
7 #if V8_TARGET_ARCH_MIPS | 7 #if V8_TARGET_ARCH_MIPS |
8 | 8 |
9 // Note on Mips implementation: | 9 // Note on Mips implementation: |
10 // | 10 // |
(...skipping 1787 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1798 // If the only customer of allocation sites is transitioning, then | 1798 // If the only customer of allocation sites is transitioning, then |
1799 // we can turn it off if we don't have anywhere else to transition to. | 1799 // we can turn it off if we don't have anywhere else to transition to. |
1800 allocation_site_mode = DONT_TRACK_ALLOCATION_SITE; | 1800 allocation_site_mode = DONT_TRACK_ALLOCATION_SITE; |
1801 } | 1801 } |
1802 | 1802 |
1803 __ mov(a0, result_register()); | 1803 __ mov(a0, result_register()); |
1804 __ lw(a3, MemOperand(fp, JavaScriptFrameConstants::kFunctionOffset)); | 1804 __ lw(a3, MemOperand(fp, JavaScriptFrameConstants::kFunctionOffset)); |
1805 __ lw(a3, FieldMemOperand(a3, JSFunction::kLiteralsOffset)); | 1805 __ lw(a3, FieldMemOperand(a3, JSFunction::kLiteralsOffset)); |
1806 __ li(a2, Operand(Smi::FromInt(expr->literal_index()))); | 1806 __ li(a2, Operand(Smi::FromInt(expr->literal_index()))); |
1807 __ li(a1, Operand(constant_elements)); | 1807 __ li(a1, Operand(constant_elements)); |
1808 if (expr->depth() > 1) { | 1808 if (has_fast_elements && constant_elements_values->map() == |
| 1809 isolate()->heap()->fixed_cow_array_map()) { |
| 1810 FastCloneShallowArrayStub stub( |
| 1811 isolate(), |
| 1812 FastCloneShallowArrayStub::COPY_ON_WRITE_ELEMENTS, |
| 1813 allocation_site_mode, |
| 1814 length); |
| 1815 __ CallStub(&stub); |
| 1816 __ IncrementCounter(isolate()->counters()->cow_arrays_created_stub(), |
| 1817 1, a1, a2); |
| 1818 } else if (expr->depth() > 1 || Serializer::enabled(isolate()) || |
| 1819 length > FastCloneShallowArrayStub::kMaximumClonedLength) { |
1809 __ li(a0, Operand(Smi::FromInt(flags))); | 1820 __ li(a0, Operand(Smi::FromInt(flags))); |
1810 __ Push(a3, a2, a1, a0); | 1821 __ Push(a3, a2, a1, a0); |
1811 __ CallRuntime(Runtime::kHiddenCreateArrayLiteral, 4); | 1822 __ CallRuntime(Runtime::kHiddenCreateArrayLiteral, 4); |
1812 } else { | 1823 } else { |
1813 FastCloneShallowArrayStub stub(isolate(), allocation_site_mode); | 1824 FastCloneShallowArrayStub stub(isolate(), allocation_site_mode); |
1814 __ CallStub(&stub); | 1825 __ CallStub(&stub); |
1815 } | 1826 } |
1816 | 1827 |
1817 bool result_saved = false; // Is the result saved to the stack? | 1828 bool result_saved = false; // Is the result saved to the stack? |
1818 | 1829 |
(...skipping 3033 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4852 Assembler::target_address_at(pc_immediate_load_address)) == | 4863 Assembler::target_address_at(pc_immediate_load_address)) == |
4853 reinterpret_cast<uint32_t>( | 4864 reinterpret_cast<uint32_t>( |
4854 isolate->builtins()->OsrAfterStackCheck()->entry())); | 4865 isolate->builtins()->OsrAfterStackCheck()->entry())); |
4855 return OSR_AFTER_STACK_CHECK; | 4866 return OSR_AFTER_STACK_CHECK; |
4856 } | 4867 } |
4857 | 4868 |
4858 | 4869 |
4859 } } // namespace v8::internal | 4870 } } // namespace v8::internal |
4860 | 4871 |
4861 #endif // V8_TARGET_ARCH_MIPS | 4872 #endif // V8_TARGET_ARCH_MIPS |
OLD | NEW |