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

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

Issue 1114563003: Optimize the typeof operator. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: REBASE. 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 | « src/mips/lithium-mips.cc ('k') | src/mips64/full-codegen-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_MIPS64 7 #if V8_TARGET_ARCH_MIPS64
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 987 matching lines...) Expand 10 before | Expand all | Expand 10 after
998 StoreBufferOverflowStub::GenerateFixedRegStubsAheadOfTime(isolate); 998 StoreBufferOverflowStub::GenerateFixedRegStubsAheadOfTime(isolate);
999 StubFailureTrampolineStub::GenerateAheadOfTime(isolate); 999 StubFailureTrampolineStub::GenerateAheadOfTime(isolate);
1000 ArrayConstructorStubBase::GenerateStubsAheadOfTime(isolate); 1000 ArrayConstructorStubBase::GenerateStubsAheadOfTime(isolate);
1001 CreateAllocationSiteStub::GenerateAheadOfTime(isolate); 1001 CreateAllocationSiteStub::GenerateAheadOfTime(isolate);
1002 CreateWeakCellStub::GenerateAheadOfTime(isolate); 1002 CreateWeakCellStub::GenerateAheadOfTime(isolate);
1003 BinaryOpICStub::GenerateAheadOfTime(isolate); 1003 BinaryOpICStub::GenerateAheadOfTime(isolate);
1004 StoreRegistersStateStub::GenerateAheadOfTime(isolate); 1004 StoreRegistersStateStub::GenerateAheadOfTime(isolate);
1005 RestoreRegistersStateStub::GenerateAheadOfTime(isolate); 1005 RestoreRegistersStateStub::GenerateAheadOfTime(isolate);
1006 BinaryOpICWithAllocationSiteStub::GenerateAheadOfTime(isolate); 1006 BinaryOpICWithAllocationSiteStub::GenerateAheadOfTime(isolate);
1007 StoreFastElementStub::GenerateAheadOfTime(isolate); 1007 StoreFastElementStub::GenerateAheadOfTime(isolate);
1008 TypeofStub::GenerateAheadOfTime(isolate);
1008 } 1009 }
1009 1010
1010 1011
1011 void StoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) { 1012 void StoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) {
1012 StoreRegistersStateStub stub(isolate); 1013 StoreRegistersStateStub stub(isolate);
1013 stub.GetCode(); 1014 stub.GetCode();
1014 } 1015 }
1015 1016
1016 1017
1017 void RestoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) { 1018 void RestoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) {
(...skipping 4524 matching lines...) Expand 10 before | Expand all | Expand 10 after
5542 kStackUnwindSpace, kInvalidStackOffset, 5543 kStackUnwindSpace, kInvalidStackOffset,
5543 MemOperand(fp, 6 * kPointerSize), NULL); 5544 MemOperand(fp, 6 * kPointerSize), NULL);
5544 } 5545 }
5545 5546
5546 5547
5547 #undef __ 5548 #undef __
5548 5549
5549 } } // namespace v8::internal 5550 } } // namespace v8::internal
5550 5551
5551 #endif // V8_TARGET_ARCH_MIPS64 5552 #endif // V8_TARGET_ARCH_MIPS64
OLDNEW
« no previous file with comments | « src/mips/lithium-mips.cc ('k') | src/mips64/full-codegen-mips64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698