| 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 1604 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1615 CreateWeakCellStub::GenerateAheadOfTime(isolate); | 1615 CreateWeakCellStub::GenerateAheadOfTime(isolate); |
| 1616 BinaryOpICStub::GenerateAheadOfTime(isolate); | 1616 BinaryOpICStub::GenerateAheadOfTime(isolate); |
| 1617 BinaryOpICWithAllocationSiteStub::GenerateAheadOfTime(isolate); | 1617 BinaryOpICWithAllocationSiteStub::GenerateAheadOfTime(isolate); |
| 1618 StoreFastElementStub::GenerateAheadOfTime(isolate); | 1618 StoreFastElementStub::GenerateAheadOfTime(isolate); |
| 1619 } | 1619 } |
| 1620 | 1620 |
| 1621 | 1621 |
| 1622 void CodeStub::GenerateFPStubs(Isolate* isolate) { | 1622 void CodeStub::GenerateFPStubs(Isolate* isolate) { |
| 1623 // Generate if not already in cache. | 1623 // Generate if not already in cache. |
| 1624 CEntryStub(isolate, 1, kSaveFPRegs).GetCode(); | 1624 CEntryStub(isolate, 1, kSaveFPRegs).GetCode(); |
| 1625 isolate->set_fp_stubs_generated(true); | |
| 1626 } | 1625 } |
| 1627 | 1626 |
| 1628 | 1627 |
| 1629 void CEntryStub::GenerateAheadOfTime(Isolate* isolate) { | 1628 void CEntryStub::GenerateAheadOfTime(Isolate* isolate) { |
| 1630 CEntryStub stub(isolate, 1, kDontSaveFPRegs); | 1629 CEntryStub stub(isolate, 1, kDontSaveFPRegs); |
| 1631 stub.GetCode(); | 1630 stub.GetCode(); |
| 1632 } | 1631 } |
| 1633 | 1632 |
| 1634 | 1633 |
| 1635 void CEntryStub::Generate(MacroAssembler* masm) { | 1634 void CEntryStub::Generate(MacroAssembler* masm) { |
| (...skipping 2559 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 4195 kStackUnwindSpace, nullptr, return_value_operand, | 4194 kStackUnwindSpace, nullptr, return_value_operand, |
| 4196 NULL); | 4195 NULL); |
| 4197 } | 4196 } |
| 4198 | 4197 |
| 4199 #undef __ | 4198 #undef __ |
| 4200 | 4199 |
| 4201 } // namespace internal | 4200 } // namespace internal |
| 4202 } // namespace v8 | 4201 } // namespace v8 |
| 4203 | 4202 |
| 4204 #endif // V8_TARGET_ARCH_IA32 | 4203 #endif // V8_TARGET_ARCH_IA32 |
| OLD | NEW |