OLD | NEW |
1 // Copyright 2013 the V8 project authors. All rights reserved. | 1 // Copyright 2013 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_X64 | 5 #if V8_TARGET_ARCH_X64 |
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/bootstrapper.h" | 9 #include "src/bootstrapper.h" |
10 #include "src/codegen.h" | 10 #include "src/codegen.h" |
(...skipping 1503 matching lines...) Loading... |
1514 CEntryStub::GenerateAheadOfTime(isolate); | 1514 CEntryStub::GenerateAheadOfTime(isolate); |
1515 StoreBufferOverflowStub::GenerateFixedRegStubsAheadOfTime(isolate); | 1515 StoreBufferOverflowStub::GenerateFixedRegStubsAheadOfTime(isolate); |
1516 StubFailureTrampolineStub::GenerateAheadOfTime(isolate); | 1516 StubFailureTrampolineStub::GenerateAheadOfTime(isolate); |
1517 // It is important that the store buffer overflow stubs are generated first. | 1517 // It is important that the store buffer overflow stubs are generated first. |
1518 CommonArrayConstructorStub::GenerateStubsAheadOfTime(isolate); | 1518 CommonArrayConstructorStub::GenerateStubsAheadOfTime(isolate); |
1519 CreateAllocationSiteStub::GenerateAheadOfTime(isolate); | 1519 CreateAllocationSiteStub::GenerateAheadOfTime(isolate); |
1520 CreateWeakCellStub::GenerateAheadOfTime(isolate); | 1520 CreateWeakCellStub::GenerateAheadOfTime(isolate); |
1521 BinaryOpICStub::GenerateAheadOfTime(isolate); | 1521 BinaryOpICStub::GenerateAheadOfTime(isolate); |
1522 BinaryOpICWithAllocationSiteStub::GenerateAheadOfTime(isolate); | 1522 BinaryOpICWithAllocationSiteStub::GenerateAheadOfTime(isolate); |
1523 StoreFastElementStub::GenerateAheadOfTime(isolate); | 1523 StoreFastElementStub::GenerateAheadOfTime(isolate); |
1524 TypeofStub::GenerateAheadOfTime(isolate); | |
1525 } | 1524 } |
1526 | 1525 |
1527 | 1526 |
1528 void CodeStub::GenerateFPStubs(Isolate* isolate) { | 1527 void CodeStub::GenerateFPStubs(Isolate* isolate) { |
1529 } | 1528 } |
1530 | 1529 |
1531 | 1530 |
1532 void CEntryStub::GenerateAheadOfTime(Isolate* isolate) { | 1531 void CEntryStub::GenerateAheadOfTime(Isolate* isolate) { |
1533 CEntryStub stub(isolate, 1, kDontSaveFPRegs); | 1532 CEntryStub stub(isolate, 1, kDontSaveFPRegs); |
1534 stub.GetCode(); | 1533 stub.GetCode(); |
(...skipping 3674 matching lines...) Loading... |
5209 kStackUnwindSpace, nullptr, return_value_operand, | 5208 kStackUnwindSpace, nullptr, return_value_operand, |
5210 NULL); | 5209 NULL); |
5211 } | 5210 } |
5212 | 5211 |
5213 #undef __ | 5212 #undef __ |
5214 | 5213 |
5215 } // namespace internal | 5214 } // namespace internal |
5216 } // namespace v8 | 5215 } // namespace v8 |
5217 | 5216 |
5218 #endif // V8_TARGET_ARCH_X64 | 5217 #endif // V8_TARGET_ARCH_X64 |
OLD | NEW |