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

Side by Side Diff: src/mips/code-stubs-mips.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/ia32/code-stubs-ia32.cc ('k') | src/mips64/code-stubs-mips64.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 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 #include "src/v8.h" 5 #include "src/v8.h"
6 6
7 #if V8_TARGET_ARCH_MIPS 7 #if V8_TARGET_ARCH_MIPS
8 8
9 #include "src/base/bits.h" 9 #include "src/base/bits.h"
10 #include "src/bootstrapper.h" 10 #include "src/bootstrapper.h"
(...skipping 989 matching lines...) Expand 10 before | Expand all | Expand 10 after
1000 CEntryStub::GenerateAheadOfTime(isolate); 1000 CEntryStub::GenerateAheadOfTime(isolate);
1001 StoreBufferOverflowStub::GenerateFixedRegStubsAheadOfTime(isolate); 1001 StoreBufferOverflowStub::GenerateFixedRegStubsAheadOfTime(isolate);
1002 StubFailureTrampolineStub::GenerateAheadOfTime(isolate); 1002 StubFailureTrampolineStub::GenerateAheadOfTime(isolate);
1003 ArrayConstructorStubBase::GenerateStubsAheadOfTime(isolate); 1003 ArrayConstructorStubBase::GenerateStubsAheadOfTime(isolate);
1004 CreateAllocationSiteStub::GenerateAheadOfTime(isolate); 1004 CreateAllocationSiteStub::GenerateAheadOfTime(isolate);
1005 CreateWeakCellStub::GenerateAheadOfTime(isolate); 1005 CreateWeakCellStub::GenerateAheadOfTime(isolate);
1006 BinaryOpICStub::GenerateAheadOfTime(isolate); 1006 BinaryOpICStub::GenerateAheadOfTime(isolate);
1007 StoreRegistersStateStub::GenerateAheadOfTime(isolate); 1007 StoreRegistersStateStub::GenerateAheadOfTime(isolate);
1008 RestoreRegistersStateStub::GenerateAheadOfTime(isolate); 1008 RestoreRegistersStateStub::GenerateAheadOfTime(isolate);
1009 BinaryOpICWithAllocationSiteStub::GenerateAheadOfTime(isolate); 1009 BinaryOpICWithAllocationSiteStub::GenerateAheadOfTime(isolate);
1010 StoreFastElementStub::GenerateAheadOfTime(isolate);
1010 } 1011 }
1011 1012
1012 1013
1013 void StoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) { 1014 void StoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) {
1014 StoreRegistersStateStub stub(isolate); 1015 StoreRegistersStateStub stub(isolate);
1015 stub.GetCode(); 1016 stub.GetCode();
1016 } 1017 }
1017 1018
1018 1019
1019 void RestoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) { 1020 void RestoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) {
(...skipping 4478 matching lines...) Expand 10 before | Expand all | Expand 10 after
5498 kStackUnwindSpace, kInvalidStackOffset, 5499 kStackUnwindSpace, kInvalidStackOffset,
5499 MemOperand(fp, 6 * kPointerSize), NULL); 5500 MemOperand(fp, 6 * kPointerSize), NULL);
5500 } 5501 }
5501 5502
5502 5503
5503 #undef __ 5504 #undef __
5504 5505
5505 } } // namespace v8::internal 5506 } } // namespace v8::internal
5506 5507
5507 #endif // V8_TARGET_ARCH_MIPS 5508 #endif // V8_TARGET_ARCH_MIPS
OLDNEW
« no previous file with comments | « src/ia32/code-stubs-ia32.cc ('k') | src/mips64/code-stubs-mips64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698