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_MIPS64 | 7 #if V8_TARGET_ARCH_MIPS64 |
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 1925 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1936 | 1936 |
1937 // Check that the key is an array index, that is Uint32. | 1937 // Check that the key is an array index, that is Uint32. |
1938 __ And(t0, key, Operand(kSmiTagMask | kSmiSignMask)); | 1938 __ And(t0, key, Operand(kSmiTagMask | kSmiSignMask)); |
1939 __ Branch(&slow, ne, t0, Operand(zero_reg)); | 1939 __ Branch(&slow, ne, t0, Operand(zero_reg)); |
1940 | 1940 |
1941 // Everything is fine, call runtime. | 1941 // Everything is fine, call runtime. |
1942 __ Push(receiver, key); // Receiver, key. | 1942 __ Push(receiver, key); // Receiver, key. |
1943 | 1943 |
1944 // Perform tail call to the entry. | 1944 // Perform tail call to the entry. |
1945 __ TailCallExternalReference( | 1945 __ TailCallExternalReference( |
1946 ExternalReference(IC_Utility(IC::kLoadElementWithInterceptor), | 1946 ExternalReference( |
1947 masm->isolate()), | 1947 Runtime::FunctionForId(Runtime::kLoadElementWithInterceptor), |
| 1948 masm->isolate()), |
1948 2, 1); | 1949 2, 1); |
1949 | 1950 |
1950 __ bind(&slow); | 1951 __ bind(&slow); |
1951 PropertyAccessCompiler::TailCallBuiltin( | 1952 PropertyAccessCompiler::TailCallBuiltin( |
1952 masm, PropertyAccessCompiler::MissBuiltin(Code::KEYED_LOAD_IC)); | 1953 masm, PropertyAccessCompiler::MissBuiltin(Code::KEYED_LOAD_IC)); |
1953 } | 1954 } |
1954 | 1955 |
1955 | 1956 |
1956 void ArgumentsAccessStub::GenerateNewStrict(MacroAssembler* masm) { | 1957 void ArgumentsAccessStub::GenerateNewStrict(MacroAssembler* masm) { |
1957 // sp[0] : number of parameters | 1958 // sp[0] : number of parameters |
(...skipping 1153 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
3111 } | 3112 } |
3112 | 3113 |
3113 | 3114 |
3114 void CallICStub::GenerateMiss(MacroAssembler* masm) { | 3115 void CallICStub::GenerateMiss(MacroAssembler* masm) { |
3115 FrameScope scope(masm, StackFrame::INTERNAL); | 3116 FrameScope scope(masm, StackFrame::INTERNAL); |
3116 | 3117 |
3117 // Push the receiver and the function and feedback info. | 3118 // Push the receiver and the function and feedback info. |
3118 __ Push(a1, a2, a3); | 3119 __ Push(a1, a2, a3); |
3119 | 3120 |
3120 // Call the entry. | 3121 // Call the entry. |
3121 IC::UtilityId id = GetICState() == DEFAULT ? IC::kCallIC_Miss | 3122 Runtime::FunctionId id = GetICState() == DEFAULT |
3122 : IC::kCallIC_Customization_Miss; | 3123 ? Runtime::kCallIC_Miss // |
| 3124 : Runtime::kCallIC_Customization_Miss; |
3123 | 3125 |
3124 ExternalReference miss = ExternalReference(IC_Utility(id), masm->isolate()); | 3126 ExternalReference miss = |
| 3127 ExternalReference(Runtime::FunctionForId(id), masm->isolate()); |
3125 __ CallExternalReference(miss, 3); | 3128 __ CallExternalReference(miss, 3); |
3126 | 3129 |
3127 // Move result to a1 and exit the internal frame. | 3130 // Move result to a1 and exit the internal frame. |
3128 __ mov(a1, v0); | 3131 __ mov(a1, v0); |
3129 } | 3132 } |
3130 | 3133 |
3131 | 3134 |
3132 void StringCharCodeAtGenerator::GenerateSlow( | 3135 void StringCharCodeAtGenerator::GenerateSlow( |
3133 MacroAssembler* masm, EmbedMode embed_mode, | 3136 MacroAssembler* masm, EmbedMode embed_mode, |
3134 const RuntimeCallHelper& call_helper) { | 3137 const RuntimeCallHelper& call_helper) { |
(...skipping 897 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
4032 __ dsubu(v0, a0, a1); | 4035 __ dsubu(v0, a0, a1); |
4033 | 4036 |
4034 __ bind(&miss); | 4037 __ bind(&miss); |
4035 GenerateMiss(masm); | 4038 GenerateMiss(masm); |
4036 } | 4039 } |
4037 | 4040 |
4038 | 4041 |
4039 void CompareICStub::GenerateMiss(MacroAssembler* masm) { | 4042 void CompareICStub::GenerateMiss(MacroAssembler* masm) { |
4040 { | 4043 { |
4041 // Call the runtime system in a fresh internal frame. | 4044 // Call the runtime system in a fresh internal frame. |
4042 ExternalReference miss = | 4045 ExternalReference miss = ExternalReference( |
4043 ExternalReference(IC_Utility(IC::kCompareIC_Miss), isolate()); | 4046 Runtime::FunctionForId(Runtime::kCompareIC_Miss), isolate()); |
4044 FrameScope scope(masm, StackFrame::INTERNAL); | 4047 FrameScope scope(masm, StackFrame::INTERNAL); |
4045 __ Push(a1, a0); | 4048 __ Push(a1, a0); |
4046 __ Push(ra, a1, a0); | 4049 __ Push(ra, a1, a0); |
4047 __ li(a4, Operand(Smi::FromInt(op()))); | 4050 __ li(a4, Operand(Smi::FromInt(op()))); |
4048 __ daddiu(sp, sp, -kPointerSize); | 4051 __ daddiu(sp, sp, -kPointerSize); |
4049 __ CallExternalReference(miss, 3, USE_DELAY_SLOT); | 4052 __ CallExternalReference(miss, 3, USE_DELAY_SLOT); |
4050 __ sd(a4, MemOperand(sp)); // In the delay slot. | 4053 __ sd(a4, MemOperand(sp)); // In the delay slot. |
4051 // Compute the entry point of the rewritten stub. | 4054 // Compute the entry point of the rewritten stub. |
4052 __ Daddu(a2, v0, Operand(Code::kHeaderSize - kHeapObjectTag)); | 4055 __ Daddu(a2, v0, Operand(Code::kHeaderSize - kHeapObjectTag)); |
4053 // Restore registers. | 4056 // Restore registers. |
(...skipping 1556 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5610 MemOperand(fp, 6 * kPointerSize), NULL); | 5613 MemOperand(fp, 6 * kPointerSize), NULL); |
5611 } | 5614 } |
5612 | 5615 |
5613 | 5616 |
5614 #undef __ | 5617 #undef __ |
5615 | 5618 |
5616 } // namespace internal | 5619 } // namespace internal |
5617 } // namespace v8 | 5620 } // namespace v8 |
5618 | 5621 |
5619 #endif // V8_TARGET_ARCH_MIPS64 | 5622 #endif // V8_TARGET_ARCH_MIPS64 |
OLD | NEW |