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

Side by Side Diff: src/s390/code-stubs-s390.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/ppc/code-stubs-ppc.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 #if V8_TARGET_ARCH_S390 5 #if V8_TARGET_ARCH_S390
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 813 matching lines...) Expand 10 before | Expand all | Expand 10 after
824 StoreBufferOverflowStub::GenerateFixedRegStubsAheadOfTime(isolate); 824 StoreBufferOverflowStub::GenerateFixedRegStubsAheadOfTime(isolate);
825 StubFailureTrampolineStub::GenerateAheadOfTime(isolate); 825 StubFailureTrampolineStub::GenerateAheadOfTime(isolate);
826 CommonArrayConstructorStub::GenerateStubsAheadOfTime(isolate); 826 CommonArrayConstructorStub::GenerateStubsAheadOfTime(isolate);
827 CreateAllocationSiteStub::GenerateAheadOfTime(isolate); 827 CreateAllocationSiteStub::GenerateAheadOfTime(isolate);
828 CreateWeakCellStub::GenerateAheadOfTime(isolate); 828 CreateWeakCellStub::GenerateAheadOfTime(isolate);
829 BinaryOpICStub::GenerateAheadOfTime(isolate); 829 BinaryOpICStub::GenerateAheadOfTime(isolate);
830 StoreRegistersStateStub::GenerateAheadOfTime(isolate); 830 StoreRegistersStateStub::GenerateAheadOfTime(isolate);
831 RestoreRegistersStateStub::GenerateAheadOfTime(isolate); 831 RestoreRegistersStateStub::GenerateAheadOfTime(isolate);
832 BinaryOpICWithAllocationSiteStub::GenerateAheadOfTime(isolate); 832 BinaryOpICWithAllocationSiteStub::GenerateAheadOfTime(isolate);
833 StoreFastElementStub::GenerateAheadOfTime(isolate); 833 StoreFastElementStub::GenerateAheadOfTime(isolate);
834 TypeofStub::GenerateAheadOfTime(isolate);
835 } 834 }
836 835
837 void StoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) { 836 void StoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) {
838 StoreRegistersStateStub stub(isolate); 837 StoreRegistersStateStub stub(isolate);
839 stub.GetCode(); 838 stub.GetCode();
840 } 839 }
841 840
842 void RestoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) { 841 void RestoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) {
843 RestoreRegistersStateStub stub(isolate); 842 RestoreRegistersStateStub stub(isolate);
844 stub.GetCode(); 843 stub.GetCode();
(...skipping 4549 matching lines...) Expand 10 before | Expand all | Expand 10 after
5394 CallApiFunctionAndReturn(masm, api_function_address, thunk_ref, 5393 CallApiFunctionAndReturn(masm, api_function_address, thunk_ref,
5395 kStackUnwindSpace, NULL, return_value_operand, NULL); 5394 kStackUnwindSpace, NULL, return_value_operand, NULL);
5396 } 5395 }
5397 5396
5398 #undef __ 5397 #undef __
5399 5398
5400 } // namespace internal 5399 } // namespace internal
5401 } // namespace v8 5400 } // namespace v8
5402 5401
5403 #endif // V8_TARGET_ARCH_S390 5402 #endif // V8_TARGET_ARCH_S390
OLDNEW
« no previous file with comments | « src/ppc/code-stubs-ppc.cc ('k') | src/x64/code-stubs-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698