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_MIPS | 5 #if V8_TARGET_ARCH_MIPS |
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/base/bits.h" | 9 #include "src/base/bits.h" |
10 #include "src/bootstrapper.h" | 10 #include "src/bootstrapper.h" |
(...skipping 878 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
889 StoreBufferOverflowStub::GenerateFixedRegStubsAheadOfTime(isolate); | 889 StoreBufferOverflowStub::GenerateFixedRegStubsAheadOfTime(isolate); |
890 StubFailureTrampolineStub::GenerateAheadOfTime(isolate); | 890 StubFailureTrampolineStub::GenerateAheadOfTime(isolate); |
891 CommonArrayConstructorStub::GenerateStubsAheadOfTime(isolate); | 891 CommonArrayConstructorStub::GenerateStubsAheadOfTime(isolate); |
892 CreateAllocationSiteStub::GenerateAheadOfTime(isolate); | 892 CreateAllocationSiteStub::GenerateAheadOfTime(isolate); |
893 CreateWeakCellStub::GenerateAheadOfTime(isolate); | 893 CreateWeakCellStub::GenerateAheadOfTime(isolate); |
894 BinaryOpICStub::GenerateAheadOfTime(isolate); | 894 BinaryOpICStub::GenerateAheadOfTime(isolate); |
895 StoreRegistersStateStub::GenerateAheadOfTime(isolate); | 895 StoreRegistersStateStub::GenerateAheadOfTime(isolate); |
896 RestoreRegistersStateStub::GenerateAheadOfTime(isolate); | 896 RestoreRegistersStateStub::GenerateAheadOfTime(isolate); |
897 BinaryOpICWithAllocationSiteStub::GenerateAheadOfTime(isolate); | 897 BinaryOpICWithAllocationSiteStub::GenerateAheadOfTime(isolate); |
898 StoreFastElementStub::GenerateAheadOfTime(isolate); | 898 StoreFastElementStub::GenerateAheadOfTime(isolate); |
899 TypeofStub::GenerateAheadOfTime(isolate); | |
900 } | 899 } |
901 | 900 |
902 | 901 |
903 void StoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) { | 902 void StoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) { |
904 StoreRegistersStateStub stub(isolate); | 903 StoreRegistersStateStub stub(isolate); |
905 stub.GetCode(); | 904 stub.GetCode(); |
906 } | 905 } |
907 | 906 |
908 | 907 |
909 void RestoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) { | 908 void RestoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) { |
(...skipping 4501 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5411 kStackUnwindSpace, kInvalidStackOffset, | 5410 kStackUnwindSpace, kInvalidStackOffset, |
5412 return_value_operand, NULL); | 5411 return_value_operand, NULL); |
5413 } | 5412 } |
5414 | 5413 |
5415 #undef __ | 5414 #undef __ |
5416 | 5415 |
5417 } // namespace internal | 5416 } // namespace internal |
5418 } // namespace v8 | 5417 } // namespace v8 |
5419 | 5418 |
5420 #endif // V8_TARGET_ARCH_MIPS | 5419 #endif // V8_TARGET_ARCH_MIPS |
OLD | NEW |