OLD | NEW |
1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 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_ARM64 | 5 #if V8_TARGET_ARCH_ARM64 |
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 803 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
814 StoreBufferOverflowStub::GenerateFixedRegStubsAheadOfTime(isolate); | 814 StoreBufferOverflowStub::GenerateFixedRegStubsAheadOfTime(isolate); |
815 StubFailureTrampolineStub::GenerateAheadOfTime(isolate); | 815 StubFailureTrampolineStub::GenerateAheadOfTime(isolate); |
816 CommonArrayConstructorStub::GenerateStubsAheadOfTime(isolate); | 816 CommonArrayConstructorStub::GenerateStubsAheadOfTime(isolate); |
817 CreateAllocationSiteStub::GenerateAheadOfTime(isolate); | 817 CreateAllocationSiteStub::GenerateAheadOfTime(isolate); |
818 CreateWeakCellStub::GenerateAheadOfTime(isolate); | 818 CreateWeakCellStub::GenerateAheadOfTime(isolate); |
819 BinaryOpICStub::GenerateAheadOfTime(isolate); | 819 BinaryOpICStub::GenerateAheadOfTime(isolate); |
820 StoreRegistersStateStub::GenerateAheadOfTime(isolate); | 820 StoreRegistersStateStub::GenerateAheadOfTime(isolate); |
821 RestoreRegistersStateStub::GenerateAheadOfTime(isolate); | 821 RestoreRegistersStateStub::GenerateAheadOfTime(isolate); |
822 BinaryOpICWithAllocationSiteStub::GenerateAheadOfTime(isolate); | 822 BinaryOpICWithAllocationSiteStub::GenerateAheadOfTime(isolate); |
823 StoreFastElementStub::GenerateAheadOfTime(isolate); | 823 StoreFastElementStub::GenerateAheadOfTime(isolate); |
824 TypeofStub::GenerateAheadOfTime(isolate); | |
825 } | 824 } |
826 | 825 |
827 | 826 |
828 void StoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) { | 827 void StoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) { |
829 StoreRegistersStateStub stub(isolate); | 828 StoreRegistersStateStub stub(isolate); |
830 stub.GetCode(); | 829 stub.GetCode(); |
831 } | 830 } |
832 | 831 |
833 | 832 |
834 void RestoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) { | 833 void RestoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) { |
(...skipping 4747 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5582 kStackUnwindSpace, NULL, spill_offset, | 5581 kStackUnwindSpace, NULL, spill_offset, |
5583 return_value_operand, NULL); | 5582 return_value_operand, NULL); |
5584 } | 5583 } |
5585 | 5584 |
5586 #undef __ | 5585 #undef __ |
5587 | 5586 |
5588 } // namespace internal | 5587 } // namespace internal |
5589 } // namespace v8 | 5588 } // namespace v8 |
5590 | 5589 |
5591 #endif // V8_TARGET_ARCH_ARM64 | 5590 #endif // V8_TARGET_ARCH_ARM64 |
OLD | NEW |