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

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

Issue 1114563003: Optimize the typeof operator. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: REBASE. Created 5 years, 7 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/lithium-codegen-arm.cc ('k') | src/arm64/full-codegen-arm64.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 #include "src/v8.h" 5 #include "src/v8.h"
6 6
7 #if V8_TARGET_ARCH_ARM64 7 #if V8_TARGET_ARCH_ARM64
8 8
9 #include "src/bootstrapper.h" 9 #include "src/bootstrapper.h"
10 #include "src/code-stubs.h" 10 #include "src/code-stubs.h"
(...skipping 963 matching lines...) Expand 10 before | Expand all | Expand 10 after
974 StoreBufferOverflowStub::GenerateFixedRegStubsAheadOfTime(isolate); 974 StoreBufferOverflowStub::GenerateFixedRegStubsAheadOfTime(isolate);
975 StubFailureTrampolineStub::GenerateAheadOfTime(isolate); 975 StubFailureTrampolineStub::GenerateAheadOfTime(isolate);
976 ArrayConstructorStubBase::GenerateStubsAheadOfTime(isolate); 976 ArrayConstructorStubBase::GenerateStubsAheadOfTime(isolate);
977 CreateAllocationSiteStub::GenerateAheadOfTime(isolate); 977 CreateAllocationSiteStub::GenerateAheadOfTime(isolate);
978 CreateWeakCellStub::GenerateAheadOfTime(isolate); 978 CreateWeakCellStub::GenerateAheadOfTime(isolate);
979 BinaryOpICStub::GenerateAheadOfTime(isolate); 979 BinaryOpICStub::GenerateAheadOfTime(isolate);
980 StoreRegistersStateStub::GenerateAheadOfTime(isolate); 980 StoreRegistersStateStub::GenerateAheadOfTime(isolate);
981 RestoreRegistersStateStub::GenerateAheadOfTime(isolate); 981 RestoreRegistersStateStub::GenerateAheadOfTime(isolate);
982 BinaryOpICWithAllocationSiteStub::GenerateAheadOfTime(isolate); 982 BinaryOpICWithAllocationSiteStub::GenerateAheadOfTime(isolate);
983 StoreFastElementStub::GenerateAheadOfTime(isolate); 983 StoreFastElementStub::GenerateAheadOfTime(isolate);
984 TypeofStub::GenerateAheadOfTime(isolate);
984 } 985 }
985 986
986 987
987 void StoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) { 988 void StoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) {
988 StoreRegistersStateStub stub(isolate); 989 StoreRegistersStateStub stub(isolate);
989 stub.GetCode(); 990 stub.GetCode();
990 } 991 }
991 992
992 993
993 void RestoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) { 994 void RestoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) {
(...skipping 4763 matching lines...) Expand 10 before | Expand all | Expand 10 after
5757 kStackUnwindSpace, NULL, spill_offset, 5758 kStackUnwindSpace, NULL, spill_offset,
5758 MemOperand(fp, 6 * kPointerSize), NULL); 5759 MemOperand(fp, 6 * kPointerSize), NULL);
5759 } 5760 }
5760 5761
5761 5762
5762 #undef __ 5763 #undef __
5763 5764
5764 } } // namespace v8::internal 5765 } } // namespace v8::internal
5765 5766
5766 #endif // V8_TARGET_ARCH_ARM64 5767 #endif // V8_TARGET_ARCH_ARM64
OLDNEW
« no previous file with comments | « src/arm/lithium-codegen-arm.cc ('k') | src/arm64/full-codegen-arm64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698