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

Side by Side Diff: src/arm/code-stubs-arm.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 | « no previous file | src/arm64/code-stubs-arm64.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_ARM 5 #if V8_TARGET_ARCH_ARM
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 782 matching lines...) Expand 10 before | Expand all | Expand 10 after
793 void CodeStub::GenerateStubsAheadOfTime(Isolate* isolate) { 793 void CodeStub::GenerateStubsAheadOfTime(Isolate* isolate) {
794 CEntryStub::GenerateAheadOfTime(isolate); 794 CEntryStub::GenerateAheadOfTime(isolate);
795 StoreBufferOverflowStub::GenerateFixedRegStubsAheadOfTime(isolate); 795 StoreBufferOverflowStub::GenerateFixedRegStubsAheadOfTime(isolate);
796 StubFailureTrampolineStub::GenerateAheadOfTime(isolate); 796 StubFailureTrampolineStub::GenerateAheadOfTime(isolate);
797 CommonArrayConstructorStub::GenerateStubsAheadOfTime(isolate); 797 CommonArrayConstructorStub::GenerateStubsAheadOfTime(isolate);
798 CreateAllocationSiteStub::GenerateAheadOfTime(isolate); 798 CreateAllocationSiteStub::GenerateAheadOfTime(isolate);
799 CreateWeakCellStub::GenerateAheadOfTime(isolate); 799 CreateWeakCellStub::GenerateAheadOfTime(isolate);
800 BinaryOpICStub::GenerateAheadOfTime(isolate); 800 BinaryOpICStub::GenerateAheadOfTime(isolate);
801 BinaryOpICWithAllocationSiteStub::GenerateAheadOfTime(isolate); 801 BinaryOpICWithAllocationSiteStub::GenerateAheadOfTime(isolate);
802 StoreFastElementStub::GenerateAheadOfTime(isolate); 802 StoreFastElementStub::GenerateAheadOfTime(isolate);
803 TypeofStub::GenerateAheadOfTime(isolate);
804 } 803 }
805 804
806 805
807 void CodeStub::GenerateFPStubs(Isolate* isolate) { 806 void CodeStub::GenerateFPStubs(Isolate* isolate) {
808 // Generate if not already in cache. 807 // Generate if not already in cache.
809 SaveFPRegsMode mode = kSaveFPRegs; 808 SaveFPRegsMode mode = kSaveFPRegs;
810 CEntryStub(isolate, 1, mode).GetCode(); 809 CEntryStub(isolate, 1, mode).GetCode();
811 StoreBufferOverflowStub(isolate, mode).GetCode(); 810 StoreBufferOverflowStub(isolate, mode).GetCode();
812 isolate->set_fp_stubs_generated(true); 811 isolate->set_fp_stubs_generated(true);
813 } 812 }
(...skipping 4407 matching lines...) Expand 10 before | Expand all | Expand 10 after
5221 CallApiFunctionAndReturn(masm, api_function_address, thunk_ref, 5220 CallApiFunctionAndReturn(masm, api_function_address, thunk_ref,
5222 kStackUnwindSpace, NULL, return_value_operand, NULL); 5221 kStackUnwindSpace, NULL, return_value_operand, NULL);
5223 } 5222 }
5224 5223
5225 #undef __ 5224 #undef __
5226 5225
5227 } // namespace internal 5226 } // namespace internal
5228 } // namespace v8 5227 } // namespace v8
5229 5228
5230 #endif // V8_TARGET_ARCH_ARM 5229 #endif // V8_TARGET_ARCH_ARM
OLDNEW
« no previous file with comments | « no previous file | src/arm64/code-stubs-arm64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698