| 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 953 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|   964   StoreBufferOverflowStub::GenerateFixedRegStubsAheadOfTime(isolate); |   964   StoreBufferOverflowStub::GenerateFixedRegStubsAheadOfTime(isolate); | 
|   965   StubFailureTrampolineStub::GenerateAheadOfTime(isolate); |   965   StubFailureTrampolineStub::GenerateAheadOfTime(isolate); | 
|   966   ArrayConstructorStubBase::GenerateStubsAheadOfTime(isolate); |   966   ArrayConstructorStubBase::GenerateStubsAheadOfTime(isolate); | 
|   967   CreateAllocationSiteStub::GenerateAheadOfTime(isolate); |   967   CreateAllocationSiteStub::GenerateAheadOfTime(isolate); | 
|   968   CreateWeakCellStub::GenerateAheadOfTime(isolate); |   968   CreateWeakCellStub::GenerateAheadOfTime(isolate); | 
|   969   BinaryOpICStub::GenerateAheadOfTime(isolate); |   969   BinaryOpICStub::GenerateAheadOfTime(isolate); | 
|   970   StoreRegistersStateStub::GenerateAheadOfTime(isolate); |   970   StoreRegistersStateStub::GenerateAheadOfTime(isolate); | 
|   971   RestoreRegistersStateStub::GenerateAheadOfTime(isolate); |   971   RestoreRegistersStateStub::GenerateAheadOfTime(isolate); | 
|   972   BinaryOpICWithAllocationSiteStub::GenerateAheadOfTime(isolate); |   972   BinaryOpICWithAllocationSiteStub::GenerateAheadOfTime(isolate); | 
|   973   StoreFastElementStub::GenerateAheadOfTime(isolate); |   973   StoreFastElementStub::GenerateAheadOfTime(isolate); | 
 |   974   TypeofStub::GenerateAheadOfTime(isolate); | 
|   974 } |   975 } | 
|   975  |   976  | 
|   976  |   977  | 
|   977 void StoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) { |   978 void StoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) { | 
|   978   StoreRegistersStateStub stub(isolate); |   979   StoreRegistersStateStub stub(isolate); | 
|   979   stub.GetCode(); |   980   stub.GetCode(); | 
|   980 } |   981 } | 
|   981  |   982  | 
|   982  |   983  | 
|   983 void RestoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) { |   984 void RestoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) { | 
| (...skipping 4600 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
|  5584                            kStackUnwindSpace, NULL, |  5585                            kStackUnwindSpace, NULL, | 
|  5585                            MemOperand(fp, 6 * kPointerSize), NULL); |  5586                            MemOperand(fp, 6 * kPointerSize), NULL); | 
|  5586 } |  5587 } | 
|  5587  |  5588  | 
|  5588  |  5589  | 
|  5589 #undef __ |  5590 #undef __ | 
|  5590 } |  5591 } | 
|  5591 }  // namespace v8::internal |  5592 }  // namespace v8::internal | 
|  5592  |  5593  | 
|  5593 #endif  // V8_TARGET_ARCH_PPC |  5594 #endif  // V8_TARGET_ARCH_PPC | 
| OLD | NEW |