| 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 #if V8_TARGET_ARCH_MIPS64 | 5 #if V8_TARGET_ARCH_MIPS64 |
| 6 | 6 |
| 7 #include "src/code-stubs.h" | 7 #include "src/code-stubs.h" |
| 8 #include "src/api-arguments.h" | 8 #include "src/api-arguments.h" |
| 9 #include "src/bootstrapper.h" | 9 #include "src/bootstrapper.h" |
| 10 #include "src/codegen.h" | 10 #include "src/codegen.h" |
| (...skipping 875 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 886 StoreBufferOverflowStub::GenerateFixedRegStubsAheadOfTime(isolate); | 886 StoreBufferOverflowStub::GenerateFixedRegStubsAheadOfTime(isolate); |
| 887 StubFailureTrampolineStub::GenerateAheadOfTime(isolate); | 887 StubFailureTrampolineStub::GenerateAheadOfTime(isolate); |
| 888 CommonArrayConstructorStub::GenerateStubsAheadOfTime(isolate); | 888 CommonArrayConstructorStub::GenerateStubsAheadOfTime(isolate); |
| 889 CreateAllocationSiteStub::GenerateAheadOfTime(isolate); | 889 CreateAllocationSiteStub::GenerateAheadOfTime(isolate); |
| 890 CreateWeakCellStub::GenerateAheadOfTime(isolate); | 890 CreateWeakCellStub::GenerateAheadOfTime(isolate); |
| 891 BinaryOpICStub::GenerateAheadOfTime(isolate); | 891 BinaryOpICStub::GenerateAheadOfTime(isolate); |
| 892 StoreRegistersStateStub::GenerateAheadOfTime(isolate); | 892 StoreRegistersStateStub::GenerateAheadOfTime(isolate); |
| 893 RestoreRegistersStateStub::GenerateAheadOfTime(isolate); | 893 RestoreRegistersStateStub::GenerateAheadOfTime(isolate); |
| 894 BinaryOpICWithAllocationSiteStub::GenerateAheadOfTime(isolate); | 894 BinaryOpICWithAllocationSiteStub::GenerateAheadOfTime(isolate); |
| 895 StoreFastElementStub::GenerateAheadOfTime(isolate); | 895 StoreFastElementStub::GenerateAheadOfTime(isolate); |
| 896 TypeofStub::GenerateAheadOfTime(isolate); | |
| 897 } | 896 } |
| 898 | 897 |
| 899 | 898 |
| 900 void StoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) { | 899 void StoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) { |
| 901 StoreRegistersStateStub stub(isolate); | 900 StoreRegistersStateStub stub(isolate); |
| 902 stub.GetCode(); | 901 stub.GetCode(); |
| 903 } | 902 } |
| 904 | 903 |
| 905 | 904 |
| 906 void RestoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) { | 905 void RestoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) { |
| (...skipping 4536 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5443 kStackUnwindSpace, kInvalidStackOffset, | 5442 kStackUnwindSpace, kInvalidStackOffset, |
| 5444 return_value_operand, NULL); | 5443 return_value_operand, NULL); |
| 5445 } | 5444 } |
| 5446 | 5445 |
| 5447 #undef __ | 5446 #undef __ |
| 5448 | 5447 |
| 5449 } // namespace internal | 5448 } // namespace internal |
| 5450 } // namespace v8 | 5449 } // namespace v8 |
| 5451 | 5450 |
| 5452 #endif // V8_TARGET_ARCH_MIPS64 | 5451 #endif // V8_TARGET_ARCH_MIPS64 |
| OLD | NEW |