| 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 #include "src/v8.h" | 5 #include "src/v8.h" |
| 6 | 6 |
| 7 #if V8_TARGET_ARCH_PPC | 7 #if V8_TARGET_ARCH_PPC |
| 8 | 8 |
| 9 #include "src/base/bits.h" | 9 #include "src/base/bits.h" |
| 10 #include "src/bootstrapper.h" | 10 #include "src/bootstrapper.h" |
| (...skipping 948 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 959 CEntryStub::GenerateAheadOfTime(isolate); | 959 CEntryStub::GenerateAheadOfTime(isolate); |
| 960 StoreBufferOverflowStub::GenerateFixedRegStubsAheadOfTime(isolate); | 960 StoreBufferOverflowStub::GenerateFixedRegStubsAheadOfTime(isolate); |
| 961 StubFailureTrampolineStub::GenerateAheadOfTime(isolate); | 961 StubFailureTrampolineStub::GenerateAheadOfTime(isolate); |
| 962 ArrayConstructorStubBase::GenerateStubsAheadOfTime(isolate); | 962 ArrayConstructorStubBase::GenerateStubsAheadOfTime(isolate); |
| 963 CreateAllocationSiteStub::GenerateAheadOfTime(isolate); | 963 CreateAllocationSiteStub::GenerateAheadOfTime(isolate); |
| 964 CreateWeakCellStub::GenerateAheadOfTime(isolate); | 964 CreateWeakCellStub::GenerateAheadOfTime(isolate); |
| 965 BinaryOpICStub::GenerateAheadOfTime(isolate); | 965 BinaryOpICStub::GenerateAheadOfTime(isolate); |
| 966 StoreRegistersStateStub::GenerateAheadOfTime(isolate); | 966 StoreRegistersStateStub::GenerateAheadOfTime(isolate); |
| 967 RestoreRegistersStateStub::GenerateAheadOfTime(isolate); | 967 RestoreRegistersStateStub::GenerateAheadOfTime(isolate); |
| 968 BinaryOpICWithAllocationSiteStub::GenerateAheadOfTime(isolate); | 968 BinaryOpICWithAllocationSiteStub::GenerateAheadOfTime(isolate); |
| 969 StoreFastElementStub::GenerateAheadOfTime(isolate); |
| 969 } | 970 } |
| 970 | 971 |
| 971 | 972 |
| 972 void StoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) { | 973 void StoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) { |
| 973 StoreRegistersStateStub stub(isolate); | 974 StoreRegistersStateStub stub(isolate); |
| 974 stub.GetCode(); | 975 stub.GetCode(); |
| 975 } | 976 } |
| 976 | 977 |
| 977 | 978 |
| 978 void RestoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) { | 979 void RestoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) { |
| (...skipping 4607 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5586 kStackUnwindSpace, NULL, | 5587 kStackUnwindSpace, NULL, |
| 5587 MemOperand(fp, 6 * kPointerSize), NULL); | 5588 MemOperand(fp, 6 * kPointerSize), NULL); |
| 5588 } | 5589 } |
| 5589 | 5590 |
| 5590 | 5591 |
| 5591 #undef __ | 5592 #undef __ |
| 5592 } | 5593 } |
| 5593 } // namespace v8::internal | 5594 } // namespace v8::internal |
| 5594 | 5595 |
| 5595 #endif // V8_TARGET_ARCH_PPC | 5596 #endif // V8_TARGET_ARCH_PPC |
| OLD | NEW |