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 "src/v8.h" | 5 #include "src/v8.h" |
6 | 6 |
7 #if V8_TARGET_ARCH_MIPS | 7 #if V8_TARGET_ARCH_MIPS |
8 | 8 |
9 #include "src/bootstrapper.h" | 9 #include "src/bootstrapper.h" |
10 #include "src/code-stubs.h" | 10 #include "src/code-stubs.h" |
(...skipping 4781 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4792 } | 4792 } |
4793 masm->LeaveFrame(StackFrame::STUB_FAILURE_TRAMPOLINE); | 4793 masm->LeaveFrame(StackFrame::STUB_FAILURE_TRAMPOLINE); |
4794 __ sll(a1, a1, kPointerSizeLog2); | 4794 __ sll(a1, a1, kPointerSizeLog2); |
4795 __ Ret(USE_DELAY_SLOT); | 4795 __ Ret(USE_DELAY_SLOT); |
4796 __ Addu(sp, sp, a1); | 4796 __ Addu(sp, sp, a1); |
4797 } | 4797 } |
4798 | 4798 |
4799 | 4799 |
4800 void LoadICTrampolineStub::Generate(MacroAssembler* masm) { | 4800 void LoadICTrampolineStub::Generate(MacroAssembler* masm) { |
4801 EmitLoadTypeFeedbackVector(masm, FullVectorLoadConvention::VectorRegister()); | 4801 EmitLoadTypeFeedbackVector(masm, FullVectorLoadConvention::VectorRegister()); |
4802 VectorLoadStub stub(isolate(), state_); | 4802 VectorLoadStub stub(isolate(), state()); |
4803 __ Jump(stub.GetCode(), RelocInfo::CODE_TARGET); | 4803 __ Jump(stub.GetCode(), RelocInfo::CODE_TARGET); |
4804 } | 4804 } |
4805 | 4805 |
4806 | 4806 |
4807 void KeyedLoadICTrampolineStub::Generate(MacroAssembler* masm) { | 4807 void KeyedLoadICTrampolineStub::Generate(MacroAssembler* masm) { |
4808 EmitLoadTypeFeedbackVector(masm, FullVectorLoadConvention::VectorRegister()); | 4808 EmitLoadTypeFeedbackVector(masm, FullVectorLoadConvention::VectorRegister()); |
4809 VectorKeyedLoadStub stub(isolate()); | 4809 VectorKeyedLoadStub stub(isolate()); |
4810 __ Jump(stub.GetCode(), RelocInfo::CODE_TARGET); | 4810 __ Jump(stub.GetCode(), RelocInfo::CODE_TARGET); |
4811 } | 4811 } |
4812 | 4812 |
(...skipping 487 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5300 MemOperand(fp, 6 * kPointerSize), | 5300 MemOperand(fp, 6 * kPointerSize), |
5301 NULL); | 5301 NULL); |
5302 } | 5302 } |
5303 | 5303 |
5304 | 5304 |
5305 #undef __ | 5305 #undef __ |
5306 | 5306 |
5307 } } // namespace v8::internal | 5307 } } // namespace v8::internal |
5308 | 5308 |
5309 #endif // V8_TARGET_ARCH_MIPS | 5309 #endif // V8_TARGET_ARCH_MIPS |
OLD | NEW |