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

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

Issue 1040183004: Generate common StoreFastElementStubs ahead of time (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 years, 8 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 #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 961 matching lines...) Expand 10 before | Expand all | Expand 10 after
972 CEntryStub::GenerateAheadOfTime(isolate); 972 CEntryStub::GenerateAheadOfTime(isolate);
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 } 983 }
983 984
984 985
985 void StoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) { 986 void StoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) {
986 StoreRegistersStateStub stub(isolate); 987 StoreRegistersStateStub stub(isolate);
987 stub.GetCode(); 988 stub.GetCode();
988 } 989 }
989 990
990 991
991 void RestoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) { 992 void RestoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) {
(...skipping 4751 matching lines...) Expand 10 before | Expand all | Expand 10 after
5743 kStackUnwindSpace, NULL, spill_offset, 5744 kStackUnwindSpace, NULL, spill_offset,
5744 MemOperand(fp, 6 * kPointerSize), NULL); 5745 MemOperand(fp, 6 * kPointerSize), NULL);
5745 } 5746 }
5746 5747
5747 5748
5748 #undef __ 5749 #undef __
5749 5750
5750 } } // namespace v8::internal 5751 } } // namespace v8::internal
5751 5752
5752 #endif // V8_TARGET_ARCH_ARM64 5753 #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