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

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: Ports. 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
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 962 matching lines...) Expand 10 before | Expand all | Expand 10 after
973 StoreBufferOverflowStub::GenerateFixedRegStubsAheadOfTime(isolate); 973 StoreBufferOverflowStub::GenerateFixedRegStubsAheadOfTime(isolate);
974 StubFailureTrampolineStub::GenerateAheadOfTime(isolate); 974 StubFailureTrampolineStub::GenerateAheadOfTime(isolate);
975 ArrayConstructorStubBase::GenerateStubsAheadOfTime(isolate); 975 ArrayConstructorStubBase::GenerateStubsAheadOfTime(isolate);
976 CreateAllocationSiteStub::GenerateAheadOfTime(isolate); 976 CreateAllocationSiteStub::GenerateAheadOfTime(isolate);
977 CreateWeakCellStub::GenerateAheadOfTime(isolate); 977 CreateWeakCellStub::GenerateAheadOfTime(isolate);
978 BinaryOpICStub::GenerateAheadOfTime(isolate); 978 BinaryOpICStub::GenerateAheadOfTime(isolate);
979 StoreRegistersStateStub::GenerateAheadOfTime(isolate); 979 StoreRegistersStateStub::GenerateAheadOfTime(isolate);
980 RestoreRegistersStateStub::GenerateAheadOfTime(isolate); 980 RestoreRegistersStateStub::GenerateAheadOfTime(isolate);
981 BinaryOpICWithAllocationSiteStub::GenerateAheadOfTime(isolate); 981 BinaryOpICWithAllocationSiteStub::GenerateAheadOfTime(isolate);
982 StoreFastElementStub::GenerateAheadOfTime(isolate); 982 StoreFastElementStub::GenerateAheadOfTime(isolate);
983 TypeofStub::GenerateAheadOfTime(isolate);
983 } 984 }
984 985
985 986
986 void StoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) { 987 void StoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) {
987 StoreRegistersStateStub stub(isolate); 988 StoreRegistersStateStub stub(isolate);
988 stub.GetCode(); 989 stub.GetCode();
989 } 990 }
990 991
991 992
992 void RestoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) { 993 void RestoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) {
(...skipping 4758 matching lines...) Expand 10 before | Expand all | Expand 10 after
5751 kStackUnwindSpace, NULL, spill_offset, 5752 kStackUnwindSpace, NULL, spill_offset,
5752 MemOperand(fp, 6 * kPointerSize), NULL); 5753 MemOperand(fp, 6 * kPointerSize), NULL);
5753 } 5754 }
5754 5755
5755 5756
5756 #undef __ 5757 #undef __
5757 5758
5758 } } // namespace v8::internal 5759 } } // namespace v8::internal
5759 5760
5760 #endif // V8_TARGET_ARCH_ARM64 5761 #endif // V8_TARGET_ARCH_ARM64
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698