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

Side by Side Diff: src/ppc/code-stubs-ppc.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/mips64/code-stubs-mips64.cc ('k') | src/s390/code-stubs-s390.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_PPC 5 #if V8_TARGET_ARCH_PPC
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 841 matching lines...) Expand 10 before | Expand all | Expand 10 after
852 StoreBufferOverflowStub::GenerateFixedRegStubsAheadOfTime(isolate); 852 StoreBufferOverflowStub::GenerateFixedRegStubsAheadOfTime(isolate);
853 StubFailureTrampolineStub::GenerateAheadOfTime(isolate); 853 StubFailureTrampolineStub::GenerateAheadOfTime(isolate);
854 CommonArrayConstructorStub::GenerateStubsAheadOfTime(isolate); 854 CommonArrayConstructorStub::GenerateStubsAheadOfTime(isolate);
855 CreateAllocationSiteStub::GenerateAheadOfTime(isolate); 855 CreateAllocationSiteStub::GenerateAheadOfTime(isolate);
856 CreateWeakCellStub::GenerateAheadOfTime(isolate); 856 CreateWeakCellStub::GenerateAheadOfTime(isolate);
857 BinaryOpICStub::GenerateAheadOfTime(isolate); 857 BinaryOpICStub::GenerateAheadOfTime(isolate);
858 StoreRegistersStateStub::GenerateAheadOfTime(isolate); 858 StoreRegistersStateStub::GenerateAheadOfTime(isolate);
859 RestoreRegistersStateStub::GenerateAheadOfTime(isolate); 859 RestoreRegistersStateStub::GenerateAheadOfTime(isolate);
860 BinaryOpICWithAllocationSiteStub::GenerateAheadOfTime(isolate); 860 BinaryOpICWithAllocationSiteStub::GenerateAheadOfTime(isolate);
861 StoreFastElementStub::GenerateAheadOfTime(isolate); 861 StoreFastElementStub::GenerateAheadOfTime(isolate);
862 TypeofStub::GenerateAheadOfTime(isolate);
863 } 862 }
864 863
865 864
866 void StoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) { 865 void StoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) {
867 StoreRegistersStateStub stub(isolate); 866 StoreRegistersStateStub stub(isolate);
868 stub.GetCode(); 867 stub.GetCode();
869 } 868 }
870 869
871 870
872 void RestoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) { 871 void RestoreRegistersStateStub::GenerateAheadOfTime(Isolate* isolate) {
(...skipping 4606 matching lines...) Expand 10 before | Expand all | Expand 10 after
5479 fp, (PropertyCallbackArguments::kReturnValueOffset + 3) * kPointerSize); 5478 fp, (PropertyCallbackArguments::kReturnValueOffset + 3) * kPointerSize);
5480 CallApiFunctionAndReturn(masm, api_function_address, thunk_ref, 5479 CallApiFunctionAndReturn(masm, api_function_address, thunk_ref,
5481 kStackUnwindSpace, NULL, return_value_operand, NULL); 5480 kStackUnwindSpace, NULL, return_value_operand, NULL);
5482 } 5481 }
5483 5482
5484 #undef __ 5483 #undef __
5485 } // namespace internal 5484 } // namespace internal
5486 } // namespace v8 5485 } // namespace v8
5487 5486
5488 #endif // V8_TARGET_ARCH_PPC 5487 #endif // V8_TARGET_ARCH_PPC
OLDNEW
« no previous file with comments | « src/mips64/code-stubs-mips64.cc ('k') | src/s390/code-stubs-s390.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698