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

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

Issue 2195863002: [turbofan] Stub for typeof operator. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Delete now unused untemplated DoUnaryOp Created 4 years, 4 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/code-stubs-mips.cc ('k') | src/ppc/code-stubs-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 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 #if V8_TARGET_ARCH_MIPS64 5 #if V8_TARGET_ARCH_MIPS64
6 6
7 #include "src/code-stubs.h" 7 #include "src/code-stubs.h"
8 #include "src/api-arguments.h" 8 #include "src/api-arguments.h"
9 #include "src/bootstrapper.h" 9 #include "src/bootstrapper.h"
10 #include "src/codegen.h" 10 #include "src/codegen.h"
(...skipping 875 matching lines...) Expand 10 before | Expand all | Expand 10 after
886 StoreBufferOverflowStub::GenerateFixedRegStubsAheadOfTime(isolate); 886 StoreBufferOverflowStub::GenerateFixedRegStubsAheadOfTime(isolate);
887 StubFailureTrampolineStub::GenerateAheadOfTime(isolate); 887 StubFailureTrampolineStub::GenerateAheadOfTime(isolate);
888 CommonArrayConstructorStub::GenerateStubsAheadOfTime(isolate); 888 CommonArrayConstructorStub::GenerateStubsAheadOfTime(isolate);
889 CreateAllocationSiteStub::GenerateAheadOfTime(isolate); 889 CreateAllocationSiteStub::GenerateAheadOfTime(isolate);
890 CreateWeakCellStub::GenerateAheadOfTime(isolate); 890 CreateWeakCellStub::GenerateAheadOfTime(isolate);
891 BinaryOpICStub::GenerateAheadOfTime(isolate); 891 BinaryOpICStub::GenerateAheadOfTime(isolate);
892 StoreRegistersStateStub::GenerateAheadOfTime(isolate); 892 StoreRegistersStateStub::GenerateAheadOfTime(isolate);
893 RestoreRegistersStateStub::GenerateAheadOfTime(isolate); 893 RestoreRegistersStateStub::GenerateAheadOfTime(isolate);
894 BinaryOpICWithAllocationSiteStub::GenerateAheadOfTime(isolate); 894 BinaryOpICWithAllocationSiteStub::GenerateAheadOfTime(isolate);
895 StoreFastElementStub::GenerateAheadOfTime(isolate); 895 StoreFastElementStub::GenerateAheadOfTime(isolate);
896 TypeofStub::GenerateAheadOfTime(isolate);
897 } 896 }
898 897
899 898
900 void StoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) { 899 void StoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) {
901 StoreRegistersStateStub stub(isolate); 900 StoreRegistersStateStub stub(isolate);
902 stub.GetCode(); 901 stub.GetCode();
903 } 902 }
904 903
905 904
906 void RestoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) { 905 void RestoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) {
(...skipping 4536 matching lines...) Expand 10 before | Expand all | Expand 10 after
5443 kStackUnwindSpace, kInvalidStackOffset, 5442 kStackUnwindSpace, kInvalidStackOffset,
5444 return_value_operand, NULL); 5443 return_value_operand, NULL);
5445 } 5444 }
5446 5445
5447 #undef __ 5446 #undef __
5448 5447
5449 } // namespace internal 5448 } // namespace internal
5450 } // namespace v8 5449 } // namespace v8
5451 5450
5452 #endif // V8_TARGET_ARCH_MIPS64 5451 #endif // V8_TARGET_ARCH_MIPS64
OLDNEW
« no previous file with comments | « src/mips/code-stubs-mips.cc ('k') | src/ppc/code-stubs-ppc.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698