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

Side by Side Diff: src/mips/code-stubs-mips.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/interpreter/interpreter.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 #if V8_TARGET_ARCH_MIPS 5 #if V8_TARGET_ARCH_MIPS
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/base/bits.h" 9 #include "src/base/bits.h"
10 #include "src/bootstrapper.h" 10 #include "src/bootstrapper.h"
(...skipping 878 matching lines...) Expand 10 before | Expand all | Expand 10 after
889 StoreBufferOverflowStub::GenerateFixedRegStubsAheadOfTime(isolate); 889 StoreBufferOverflowStub::GenerateFixedRegStubsAheadOfTime(isolate);
890 StubFailureTrampolineStub::GenerateAheadOfTime(isolate); 890 StubFailureTrampolineStub::GenerateAheadOfTime(isolate);
891 CommonArrayConstructorStub::GenerateStubsAheadOfTime(isolate); 891 CommonArrayConstructorStub::GenerateStubsAheadOfTime(isolate);
892 CreateAllocationSiteStub::GenerateAheadOfTime(isolate); 892 CreateAllocationSiteStub::GenerateAheadOfTime(isolate);
893 CreateWeakCellStub::GenerateAheadOfTime(isolate); 893 CreateWeakCellStub::GenerateAheadOfTime(isolate);
894 BinaryOpICStub::GenerateAheadOfTime(isolate); 894 BinaryOpICStub::GenerateAheadOfTime(isolate);
895 StoreRegistersStateStub::GenerateAheadOfTime(isolate); 895 StoreRegistersStateStub::GenerateAheadOfTime(isolate);
896 RestoreRegistersStateStub::GenerateAheadOfTime(isolate); 896 RestoreRegistersStateStub::GenerateAheadOfTime(isolate);
897 BinaryOpICWithAllocationSiteStub::GenerateAheadOfTime(isolate); 897 BinaryOpICWithAllocationSiteStub::GenerateAheadOfTime(isolate);
898 StoreFastElementStub::GenerateAheadOfTime(isolate); 898 StoreFastElementStub::GenerateAheadOfTime(isolate);
899 TypeofStub::GenerateAheadOfTime(isolate);
900 } 899 }
901 900
902 901
903 void StoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) { 902 void StoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) {
904 StoreRegistersStateStub stub(isolate); 903 StoreRegistersStateStub stub(isolate);
905 stub.GetCode(); 904 stub.GetCode();
906 } 905 }
907 906
908 907
909 void RestoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) { 908 void RestoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) {
(...skipping 4501 matching lines...) Expand 10 before | Expand all | Expand 10 after
5411 kStackUnwindSpace, kInvalidStackOffset, 5410 kStackUnwindSpace, kInvalidStackOffset,
5412 return_value_operand, NULL); 5411 return_value_operand, NULL);
5413 } 5412 }
5414 5413
5415 #undef __ 5414 #undef __
5416 5415
5417 } // namespace internal 5416 } // namespace internal
5418 } // namespace v8 5417 } // namespace v8
5419 5418
5420 #endif // V8_TARGET_ARCH_MIPS 5419 #endif // V8_TARGET_ARCH_MIPS
OLDNEW
« no previous file with comments | « src/interpreter/interpreter.cc ('k') | src/mips64/code-stubs-mips64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698