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

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

Issue 1124243002: PPC: Optimize the typeof operator. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: 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 | « no previous file | src/ppc/full-codegen-ppc.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 953 matching lines...) Expand 10 before | Expand all | Expand 10 after
964 StoreBufferOverflowStub::GenerateFixedRegStubsAheadOfTime(isolate); 964 StoreBufferOverflowStub::GenerateFixedRegStubsAheadOfTime(isolate);
965 StubFailureTrampolineStub::GenerateAheadOfTime(isolate); 965 StubFailureTrampolineStub::GenerateAheadOfTime(isolate);
966 ArrayConstructorStubBase::GenerateStubsAheadOfTime(isolate); 966 ArrayConstructorStubBase::GenerateStubsAheadOfTime(isolate);
967 CreateAllocationSiteStub::GenerateAheadOfTime(isolate); 967 CreateAllocationSiteStub::GenerateAheadOfTime(isolate);
968 CreateWeakCellStub::GenerateAheadOfTime(isolate); 968 CreateWeakCellStub::GenerateAheadOfTime(isolate);
969 BinaryOpICStub::GenerateAheadOfTime(isolate); 969 BinaryOpICStub::GenerateAheadOfTime(isolate);
970 StoreRegistersStateStub::GenerateAheadOfTime(isolate); 970 StoreRegistersStateStub::GenerateAheadOfTime(isolate);
971 RestoreRegistersStateStub::GenerateAheadOfTime(isolate); 971 RestoreRegistersStateStub::GenerateAheadOfTime(isolate);
972 BinaryOpICWithAllocationSiteStub::GenerateAheadOfTime(isolate); 972 BinaryOpICWithAllocationSiteStub::GenerateAheadOfTime(isolate);
973 StoreFastElementStub::GenerateAheadOfTime(isolate); 973 StoreFastElementStub::GenerateAheadOfTime(isolate);
974 TypeofStub::GenerateAheadOfTime(isolate);
974 } 975 }
975 976
976 977
977 void StoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) { 978 void StoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) {
978 StoreRegistersStateStub stub(isolate); 979 StoreRegistersStateStub stub(isolate);
979 stub.GetCode(); 980 stub.GetCode();
980 } 981 }
981 982
982 983
983 void RestoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) { 984 void RestoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) {
(...skipping 4600 matching lines...) Expand 10 before | Expand all | Expand 10 after
5584 kStackUnwindSpace, NULL, 5585 kStackUnwindSpace, NULL,
5585 MemOperand(fp, 6 * kPointerSize), NULL); 5586 MemOperand(fp, 6 * kPointerSize), NULL);
5586 } 5587 }
5587 5588
5588 5589
5589 #undef __ 5590 #undef __
5590 } 5591 }
5591 } // namespace v8::internal 5592 } // namespace v8::internal
5592 5593
5593 #endif // V8_TARGET_ARCH_PPC 5594 #endif // V8_TARGET_ARCH_PPC
OLDNEW
« no previous file with comments | « no previous file | src/ppc/full-codegen-ppc.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698