| 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_S390 | 5 #if V8_TARGET_ARCH_S390 | 
| 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 813 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 824   StoreBufferOverflowStub::GenerateFixedRegStubsAheadOfTime(isolate); | 824   StoreBufferOverflowStub::GenerateFixedRegStubsAheadOfTime(isolate); | 
| 825   StubFailureTrampolineStub::GenerateAheadOfTime(isolate); | 825   StubFailureTrampolineStub::GenerateAheadOfTime(isolate); | 
| 826   CommonArrayConstructorStub::GenerateStubsAheadOfTime(isolate); | 826   CommonArrayConstructorStub::GenerateStubsAheadOfTime(isolate); | 
| 827   CreateAllocationSiteStub::GenerateAheadOfTime(isolate); | 827   CreateAllocationSiteStub::GenerateAheadOfTime(isolate); | 
| 828   CreateWeakCellStub::GenerateAheadOfTime(isolate); | 828   CreateWeakCellStub::GenerateAheadOfTime(isolate); | 
| 829   BinaryOpICStub::GenerateAheadOfTime(isolate); | 829   BinaryOpICStub::GenerateAheadOfTime(isolate); | 
| 830   StoreRegistersStateStub::GenerateAheadOfTime(isolate); | 830   StoreRegistersStateStub::GenerateAheadOfTime(isolate); | 
| 831   RestoreRegistersStateStub::GenerateAheadOfTime(isolate); | 831   RestoreRegistersStateStub::GenerateAheadOfTime(isolate); | 
| 832   BinaryOpICWithAllocationSiteStub::GenerateAheadOfTime(isolate); | 832   BinaryOpICWithAllocationSiteStub::GenerateAheadOfTime(isolate); | 
| 833   StoreFastElementStub::GenerateAheadOfTime(isolate); | 833   StoreFastElementStub::GenerateAheadOfTime(isolate); | 
| 834   TypeofStub::GenerateAheadOfTime(isolate); |  | 
| 835 } | 834 } | 
| 836 | 835 | 
| 837 void StoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) { | 836 void StoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) { | 
| 838   StoreRegistersStateStub stub(isolate); | 837   StoreRegistersStateStub stub(isolate); | 
| 839   stub.GetCode(); | 838   stub.GetCode(); | 
| 840 } | 839 } | 
| 841 | 840 | 
| 842 void RestoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) { | 841 void RestoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) { | 
| 843   RestoreRegistersStateStub stub(isolate); | 842   RestoreRegistersStateStub stub(isolate); | 
| 844   stub.GetCode(); | 843   stub.GetCode(); | 
| (...skipping 4549 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 5394   CallApiFunctionAndReturn(masm, api_function_address, thunk_ref, | 5393   CallApiFunctionAndReturn(masm, api_function_address, thunk_ref, | 
| 5395                            kStackUnwindSpace, NULL, return_value_operand, NULL); | 5394                            kStackUnwindSpace, NULL, return_value_operand, NULL); | 
| 5396 } | 5395 } | 
| 5397 | 5396 | 
| 5398 #undef __ | 5397 #undef __ | 
| 5399 | 5398 | 
| 5400 }  // namespace internal | 5399 }  // namespace internal | 
| 5401 }  // namespace v8 | 5400 }  // namespace v8 | 
| 5402 | 5401 | 
| 5403 #endif  // V8_TARGET_ARCH_S390 | 5402 #endif  // V8_TARGET_ARCH_S390 | 
| OLD | NEW | 
|---|