| 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 #include "src/v8.h" | 5 #include "src/v8.h" |
| 6 | 6 |
| 7 #if V8_TARGET_ARCH_MIPS | 7 #if V8_TARGET_ARCH_MIPS |
| 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 991 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1002 StoreBufferOverflowStub::GenerateFixedRegStubsAheadOfTime(isolate); | 1002 StoreBufferOverflowStub::GenerateFixedRegStubsAheadOfTime(isolate); |
| 1003 StubFailureTrampolineStub::GenerateAheadOfTime(isolate); | 1003 StubFailureTrampolineStub::GenerateAheadOfTime(isolate); |
| 1004 ArrayConstructorStubBase::GenerateStubsAheadOfTime(isolate); | 1004 ArrayConstructorStubBase::GenerateStubsAheadOfTime(isolate); |
| 1005 CreateAllocationSiteStub::GenerateAheadOfTime(isolate); | 1005 CreateAllocationSiteStub::GenerateAheadOfTime(isolate); |
| 1006 CreateWeakCellStub::GenerateAheadOfTime(isolate); | 1006 CreateWeakCellStub::GenerateAheadOfTime(isolate); |
| 1007 BinaryOpICStub::GenerateAheadOfTime(isolate); | 1007 BinaryOpICStub::GenerateAheadOfTime(isolate); |
| 1008 StoreRegistersStateStub::GenerateAheadOfTime(isolate); | 1008 StoreRegistersStateStub::GenerateAheadOfTime(isolate); |
| 1009 RestoreRegistersStateStub::GenerateAheadOfTime(isolate); | 1009 RestoreRegistersStateStub::GenerateAheadOfTime(isolate); |
| 1010 BinaryOpICWithAllocationSiteStub::GenerateAheadOfTime(isolate); | 1010 BinaryOpICWithAllocationSiteStub::GenerateAheadOfTime(isolate); |
| 1011 StoreFastElementStub::GenerateAheadOfTime(isolate); | 1011 StoreFastElementStub::GenerateAheadOfTime(isolate); |
| 1012 TypeofStub::GenerateAheadOfTime(isolate); |
| 1012 } | 1013 } |
| 1013 | 1014 |
| 1014 | 1015 |
| 1015 void StoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) { | 1016 void StoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) { |
| 1016 StoreRegistersStateStub stub(isolate); | 1017 StoreRegistersStateStub stub(isolate); |
| 1017 stub.GetCode(); | 1018 stub.GetCode(); |
| 1018 } | 1019 } |
| 1019 | 1020 |
| 1020 | 1021 |
| 1021 void RestoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) { | 1022 void RestoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) { |
| (...skipping 4477 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 5499 kStackUnwindSpace, kInvalidStackOffset, | 5500 kStackUnwindSpace, kInvalidStackOffset, |
| 5500 MemOperand(fp, 6 * kPointerSize), NULL); | 5501 MemOperand(fp, 6 * kPointerSize), NULL); |
| 5501 } | 5502 } |
| 5502 | 5503 |
| 5503 | 5504 |
| 5504 #undef __ | 5505 #undef __ |
| 5505 | 5506 |
| 5506 } } // namespace v8::internal | 5507 } } // namespace v8::internal |
| 5507 | 5508 |
| 5508 #endif // V8_TARGET_ARCH_MIPS | 5509 #endif // V8_TARGET_ARCH_MIPS |
| OLD | NEW |