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

Side by Side Diff: src/arm64/code-stubs-arm64.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/arm/code-stubs-arm.cc ('k') | src/code-stubs.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 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_ARM64 5 #if V8_TARGET_ARCH_ARM64
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 803 matching lines...) Expand 10 before | Expand all | Expand 10 after
814 StoreBufferOverflowStub::GenerateFixedRegStubsAheadOfTime(isolate); 814 StoreBufferOverflowStub::GenerateFixedRegStubsAheadOfTime(isolate);
815 StubFailureTrampolineStub::GenerateAheadOfTime(isolate); 815 StubFailureTrampolineStub::GenerateAheadOfTime(isolate);
816 CommonArrayConstructorStub::GenerateStubsAheadOfTime(isolate); 816 CommonArrayConstructorStub::GenerateStubsAheadOfTime(isolate);
817 CreateAllocationSiteStub::GenerateAheadOfTime(isolate); 817 CreateAllocationSiteStub::GenerateAheadOfTime(isolate);
818 CreateWeakCellStub::GenerateAheadOfTime(isolate); 818 CreateWeakCellStub::GenerateAheadOfTime(isolate);
819 BinaryOpICStub::GenerateAheadOfTime(isolate); 819 BinaryOpICStub::GenerateAheadOfTime(isolate);
820 StoreRegistersStateStub::GenerateAheadOfTime(isolate); 820 StoreRegistersStateStub::GenerateAheadOfTime(isolate);
821 RestoreRegistersStateStub::GenerateAheadOfTime(isolate); 821 RestoreRegistersStateStub::GenerateAheadOfTime(isolate);
822 BinaryOpICWithAllocationSiteStub::GenerateAheadOfTime(isolate); 822 BinaryOpICWithAllocationSiteStub::GenerateAheadOfTime(isolate);
823 StoreFastElementStub::GenerateAheadOfTime(isolate); 823 StoreFastElementStub::GenerateAheadOfTime(isolate);
824 TypeofStub::GenerateAheadOfTime(isolate);
825 } 824 }
826 825
827 826
828 void StoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) { 827 void StoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) {
829 StoreRegistersStateStub stub(isolate); 828 StoreRegistersStateStub stub(isolate);
830 stub.GetCode(); 829 stub.GetCode();
831 } 830 }
832 831
833 832
834 void RestoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) { 833 void RestoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) {
(...skipping 4747 matching lines...) Expand 10 before | Expand all | Expand 10 after
5582 kStackUnwindSpace, NULL, spill_offset, 5581 kStackUnwindSpace, NULL, spill_offset,
5583 return_value_operand, NULL); 5582 return_value_operand, NULL);
5584 } 5583 }
5585 5584
5586 #undef __ 5585 #undef __
5587 5586
5588 } // namespace internal 5587 } // namespace internal
5589 } // namespace v8 5588 } // namespace v8
5590 5589
5591 #endif // V8_TARGET_ARCH_ARM64 5590 #endif // V8_TARGET_ARCH_ARM64
OLDNEW
« no previous file with comments | « src/arm/code-stubs-arm.cc ('k') | src/code-stubs.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698