| 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_ARM | 5 #if V8_TARGET_ARCH_ARM |
| 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 782 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 793 void CodeStub::GenerateStubsAheadOfTime(Isolate* isolate) { | 793 void CodeStub::GenerateStubsAheadOfTime(Isolate* isolate) { |
| 794 CEntryStub::GenerateAheadOfTime(isolate); | 794 CEntryStub::GenerateAheadOfTime(isolate); |
| 795 StoreBufferOverflowStub::GenerateFixedRegStubsAheadOfTime(isolate); | 795 StoreBufferOverflowStub::GenerateFixedRegStubsAheadOfTime(isolate); |
| 796 StubFailureTrampolineStub::GenerateAheadOfTime(isolate); | 796 StubFailureTrampolineStub::GenerateAheadOfTime(isolate); |
| 797 CommonArrayConstructorStub::GenerateStubsAheadOfTime(isolate); | 797 CommonArrayConstructorStub::GenerateStubsAheadOfTime(isolate); |
| 798 CreateAllocationSiteStub::GenerateAheadOfTime(isolate); | 798 CreateAllocationSiteStub::GenerateAheadOfTime(isolate); |
| 799 CreateWeakCellStub::GenerateAheadOfTime(isolate); | 799 CreateWeakCellStub::GenerateAheadOfTime(isolate); |
| 800 BinaryOpICStub::GenerateAheadOfTime(isolate); | 800 BinaryOpICStub::GenerateAheadOfTime(isolate); |
| 801 BinaryOpICWithAllocationSiteStub::GenerateAheadOfTime(isolate); | 801 BinaryOpICWithAllocationSiteStub::GenerateAheadOfTime(isolate); |
| 802 StoreFastElementStub::GenerateAheadOfTime(isolate); | 802 StoreFastElementStub::GenerateAheadOfTime(isolate); |
| 803 TypeofStub::GenerateAheadOfTime(isolate); | |
| 804 } | 803 } |
| 805 | 804 |
| 806 | 805 |
| 807 void CodeStub::GenerateFPStubs(Isolate* isolate) { | 806 void CodeStub::GenerateFPStubs(Isolate* isolate) { |
| 808 // Generate if not already in cache. | 807 // Generate if not already in cache. |
| 809 SaveFPRegsMode mode = kSaveFPRegs; | 808 SaveFPRegsMode mode = kSaveFPRegs; |
| 810 CEntryStub(isolate, 1, mode).GetCode(); | 809 CEntryStub(isolate, 1, mode).GetCode(); |
| 811 StoreBufferOverflowStub(isolate, mode).GetCode(); | 810 StoreBufferOverflowStub(isolate, mode).GetCode(); |
| 812 isolate->set_fp_stubs_generated(true); | 811 isolate->set_fp_stubs_generated(true); |
| 813 } | 812 } |
| (...skipping 4407 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5221 CallApiFunctionAndReturn(masm, api_function_address, thunk_ref, | 5220 CallApiFunctionAndReturn(masm, api_function_address, thunk_ref, |
| 5222 kStackUnwindSpace, NULL, return_value_operand, NULL); | 5221 kStackUnwindSpace, NULL, return_value_operand, NULL); |
| 5223 } | 5222 } |
| 5224 | 5223 |
| 5225 #undef __ | 5224 #undef __ |
| 5226 | 5225 |
| 5227 } // namespace internal | 5226 } // namespace internal |
| 5228 } // namespace v8 | 5227 } // namespace v8 |
| 5229 | 5228 |
| 5230 #endif // V8_TARGET_ARCH_ARM | 5229 #endif // V8_TARGET_ARCH_ARM |
| OLD | NEW |