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

Side by Side Diff: src/ia32/code-stubs-ia32.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/crankshaft/x87/lithium-codegen-x87.cc ('k') | src/interpreter/interpreter.h » ('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 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
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
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
OLDNEW
« no previous file with comments | « src/crankshaft/x87/lithium-codegen-x87.cc ('k') | src/interpreter/interpreter.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698