Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(184)

Side by Side Diff: src/x64/code-stubs-x64.cc

Issue 2195863002: [turbofan] Stub for typeof operator. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Delete now unused untemplated DoUnaryOp Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/s390/code-stubs-s390.cc ('k') | src/x87/code-stubs-x87.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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...) Expand 10 before | Expand all | Expand 10 after
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...) Expand 10 before | Expand all | Expand 10 after
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
OLDNEW
« no previous file with comments | « src/s390/code-stubs-s390.cc ('k') | src/x87/code-stubs-x87.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698