OLD | NEW |
1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 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_PPC | 5 #if V8_TARGET_ARCH_PPC |
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 841 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
852 StoreBufferOverflowStub::GenerateFixedRegStubsAheadOfTime(isolate); | 852 StoreBufferOverflowStub::GenerateFixedRegStubsAheadOfTime(isolate); |
853 StubFailureTrampolineStub::GenerateAheadOfTime(isolate); | 853 StubFailureTrampolineStub::GenerateAheadOfTime(isolate); |
854 CommonArrayConstructorStub::GenerateStubsAheadOfTime(isolate); | 854 CommonArrayConstructorStub::GenerateStubsAheadOfTime(isolate); |
855 CreateAllocationSiteStub::GenerateAheadOfTime(isolate); | 855 CreateAllocationSiteStub::GenerateAheadOfTime(isolate); |
856 CreateWeakCellStub::GenerateAheadOfTime(isolate); | 856 CreateWeakCellStub::GenerateAheadOfTime(isolate); |
857 BinaryOpICStub::GenerateAheadOfTime(isolate); | 857 BinaryOpICStub::GenerateAheadOfTime(isolate); |
858 StoreRegistersStateStub::GenerateAheadOfTime(isolate); | 858 StoreRegistersStateStub::GenerateAheadOfTime(isolate); |
859 RestoreRegistersStateStub::GenerateAheadOfTime(isolate); | 859 RestoreRegistersStateStub::GenerateAheadOfTime(isolate); |
860 BinaryOpICWithAllocationSiteStub::GenerateAheadOfTime(isolate); | 860 BinaryOpICWithAllocationSiteStub::GenerateAheadOfTime(isolate); |
861 StoreFastElementStub::GenerateAheadOfTime(isolate); | 861 StoreFastElementStub::GenerateAheadOfTime(isolate); |
862 TypeofStub::GenerateAheadOfTime(isolate); | |
863 } | 862 } |
864 | 863 |
865 | 864 |
866 void StoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) { | 865 void StoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) { |
867 StoreRegistersStateStub stub(isolate); | 866 StoreRegistersStateStub stub(isolate); |
868 stub.GetCode(); | 867 stub.GetCode(); |
869 } | 868 } |
870 | 869 |
871 | 870 |
872 void RestoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) { | 871 void RestoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) { |
(...skipping 4606 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5479 fp, (PropertyCallbackArguments::kReturnValueOffset + 3) * kPointerSize); | 5478 fp, (PropertyCallbackArguments::kReturnValueOffset + 3) * kPointerSize); |
5480 CallApiFunctionAndReturn(masm, api_function_address, thunk_ref, | 5479 CallApiFunctionAndReturn(masm, api_function_address, thunk_ref, |
5481 kStackUnwindSpace, NULL, return_value_operand, NULL); | 5480 kStackUnwindSpace, NULL, return_value_operand, NULL); |
5482 } | 5481 } |
5483 | 5482 |
5484 #undef __ | 5483 #undef __ |
5485 } // namespace internal | 5484 } // namespace internal |
5486 } // namespace v8 | 5485 } // namespace v8 |
5487 | 5486 |
5488 #endif // V8_TARGET_ARCH_PPC | 5487 #endif // V8_TARGET_ARCH_PPC |
OLD | NEW |