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 #if V8_TARGET_ARCH_IA32 | 5 #if V8_TARGET_ARCH_IA32 |
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 1611 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1622 CEntryStub::GenerateAheadOfTime(isolate); | 1622 CEntryStub::GenerateAheadOfTime(isolate); |
1623 StoreBufferOverflowStub::GenerateFixedRegStubsAheadOfTime(isolate); | 1623 StoreBufferOverflowStub::GenerateFixedRegStubsAheadOfTime(isolate); |
1624 StubFailureTrampolineStub::GenerateAheadOfTime(isolate); | 1624 StubFailureTrampolineStub::GenerateAheadOfTime(isolate); |
1625 // It is important that the store buffer overflow stubs are generated first. | 1625 // It is important that the store buffer overflow stubs are generated first. |
1626 CommonArrayConstructorStub::GenerateStubsAheadOfTime(isolate); | 1626 CommonArrayConstructorStub::GenerateStubsAheadOfTime(isolate); |
1627 CreateAllocationSiteStub::GenerateAheadOfTime(isolate); | 1627 CreateAllocationSiteStub::GenerateAheadOfTime(isolate); |
1628 CreateWeakCellStub::GenerateAheadOfTime(isolate); | 1628 CreateWeakCellStub::GenerateAheadOfTime(isolate); |
1629 BinaryOpICStub::GenerateAheadOfTime(isolate); | 1629 BinaryOpICStub::GenerateAheadOfTime(isolate); |
1630 BinaryOpICWithAllocationSiteStub::GenerateAheadOfTime(isolate); | 1630 BinaryOpICWithAllocationSiteStub::GenerateAheadOfTime(isolate); |
1631 StoreFastElementStub::GenerateAheadOfTime(isolate); | 1631 StoreFastElementStub::GenerateAheadOfTime(isolate); |
1632 TypeofStub::GenerateAheadOfTime(isolate); | |
1633 } | 1632 } |
1634 | 1633 |
1635 | 1634 |
1636 void CodeStub::GenerateFPStubs(Isolate* isolate) { | 1635 void CodeStub::GenerateFPStubs(Isolate* isolate) { |
1637 // Generate if not already in cache. | 1636 // Generate if not already in cache. |
1638 CEntryStub(isolate, 1, kSaveFPRegs).GetCode(); | 1637 CEntryStub(isolate, 1, kSaveFPRegs).GetCode(); |
1639 isolate->set_fp_stubs_generated(true); | 1638 isolate->set_fp_stubs_generated(true); |
1640 } | 1639 } |
1641 | 1640 |
1642 | 1641 |
(...skipping 3848 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5491 kStackUnwindSpace, nullptr, return_value_operand, | 5490 kStackUnwindSpace, nullptr, return_value_operand, |
5492 NULL); | 5491 NULL); |
5493 } | 5492 } |
5494 | 5493 |
5495 #undef __ | 5494 #undef __ |
5496 | 5495 |
5497 } // namespace internal | 5496 } // namespace internal |
5498 } // namespace v8 | 5497 } // namespace v8 |
5499 | 5498 |
5500 #endif // V8_TARGET_ARCH_IA32 | 5499 #endif // V8_TARGET_ARCH_IA32 |
OLD | NEW |