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/ppc/code-stubs-ppc.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/mips64/code-stubs-mips64.cc ('k') | src/x64/code-stubs-x64.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 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 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_PPC 7 #if V8_TARGET_ARCH_PPC
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 948 matching lines...) Expand 10 before | Expand all | Expand 10 after
959 CEntryStub::GenerateAheadOfTime(isolate); 959 CEntryStub::GenerateAheadOfTime(isolate);
960 StoreBufferOverflowStub::GenerateFixedRegStubsAheadOfTime(isolate); 960 StoreBufferOverflowStub::GenerateFixedRegStubsAheadOfTime(isolate);
961 StubFailureTrampolineStub::GenerateAheadOfTime(isolate); 961 StubFailureTrampolineStub::GenerateAheadOfTime(isolate);
962 ArrayConstructorStubBase::GenerateStubsAheadOfTime(isolate); 962 ArrayConstructorStubBase::GenerateStubsAheadOfTime(isolate);
963 CreateAllocationSiteStub::GenerateAheadOfTime(isolate); 963 CreateAllocationSiteStub::GenerateAheadOfTime(isolate);
964 CreateWeakCellStub::GenerateAheadOfTime(isolate); 964 CreateWeakCellStub::GenerateAheadOfTime(isolate);
965 BinaryOpICStub::GenerateAheadOfTime(isolate); 965 BinaryOpICStub::GenerateAheadOfTime(isolate);
966 StoreRegistersStateStub::GenerateAheadOfTime(isolate); 966 StoreRegistersStateStub::GenerateAheadOfTime(isolate);
967 RestoreRegistersStateStub::GenerateAheadOfTime(isolate); 967 RestoreRegistersStateStub::GenerateAheadOfTime(isolate);
968 BinaryOpICWithAllocationSiteStub::GenerateAheadOfTime(isolate); 968 BinaryOpICWithAllocationSiteStub::GenerateAheadOfTime(isolate);
969 StoreFastElementStub::GenerateAheadOfTime(isolate);
969 } 970 }
970 971
971 972
972 void StoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) { 973 void StoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) {
973 StoreRegistersStateStub stub(isolate); 974 StoreRegistersStateStub stub(isolate);
974 stub.GetCode(); 975 stub.GetCode();
975 } 976 }
976 977
977 978
978 void RestoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) { 979 void RestoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) {
(...skipping 4607 matching lines...) Expand 10 before | Expand all | Expand 10 after
5586 kStackUnwindSpace, NULL, 5587 kStackUnwindSpace, NULL,
5587 MemOperand(fp, 6 * kPointerSize), NULL); 5588 MemOperand(fp, 6 * kPointerSize), NULL);
5588 } 5589 }
5589 5590
5590 5591
5591 #undef __ 5592 #undef __
5592 } 5593 }
5593 } // namespace v8::internal 5594 } // namespace v8::internal
5594 5595
5595 #endif // V8_TARGET_ARCH_PPC 5596 #endif // V8_TARGET_ARCH_PPC
OLDNEW
« no previous file with comments | « src/mips64/code-stubs-mips64.cc ('k') | src/x64/code-stubs-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698