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

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

Issue 1925073002: Revert of [turbofan] Run everything after representation selection concurrently. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 7 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/code-stubs.h ('k') | src/code-stubs-hydrogen.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 #include "src/code-stubs.h" 5 #include "src/code-stubs.h"
6 6
7 #include <sstream> 7 #include <sstream>
8 8
9 #include "src/bootstrapper.h" 9 #include "src/bootstrapper.h"
10 #include "src/code-factory.h" 10 #include "src/code-factory.h"
(...skipping 4017 matching lines...) Expand 10 before | Expand all | Expand 10 after
4028 4028
4029 #define SIMD128_INIT_DESC(TYPE, Type, type, lane_count, lane_type) \ 4029 #define SIMD128_INIT_DESC(TYPE, Type, type, lane_count, lane_type) \
4030 void Allocate##Type##Stub::InitializeDescriptor( \ 4030 void Allocate##Type##Stub::InitializeDescriptor( \
4031 CodeStubDescriptor* descriptor) { \ 4031 CodeStubDescriptor* descriptor) { \
4032 descriptor->Initialize( \ 4032 descriptor->Initialize( \
4033 Runtime::FunctionForId(Runtime::kCreate##Type)->entry); \ 4033 Runtime::FunctionForId(Runtime::kCreate##Type)->entry); \
4034 } 4034 }
4035 SIMD128_TYPES(SIMD128_INIT_DESC) 4035 SIMD128_TYPES(SIMD128_INIT_DESC)
4036 #undef SIMD128_INIT_DESC 4036 #undef SIMD128_INIT_DESC
4037 4037
4038 void AllocateStub::InitializeDescriptor(CodeStubDescriptor* descriptor) {
4039 descriptor->Initialize();
4040 }
4041
4038 void ToBooleanICStub::InitializeDescriptor(CodeStubDescriptor* descriptor) { 4042 void ToBooleanICStub::InitializeDescriptor(CodeStubDescriptor* descriptor) {
4039 descriptor->Initialize(FUNCTION_ADDR(Runtime_ToBooleanIC_Miss)); 4043 descriptor->Initialize(FUNCTION_ADDR(Runtime_ToBooleanIC_Miss));
4040 descriptor->SetMissHandler(ExternalReference( 4044 descriptor->SetMissHandler(ExternalReference(
4041 Runtime::FunctionForId(Runtime::kToBooleanIC_Miss), isolate())); 4045 Runtime::FunctionForId(Runtime::kToBooleanIC_Miss), isolate()));
4042 } 4046 }
4043 4047
4044 4048
4045 void BinaryOpICStub::InitializeDescriptor(CodeStubDescriptor* descriptor) { 4049 void BinaryOpICStub::InitializeDescriptor(CodeStubDescriptor* descriptor) {
4046 descriptor->Initialize(FUNCTION_ADDR(Runtime_BinaryOpIC_Miss)); 4050 descriptor->Initialize(FUNCTION_ADDR(Runtime_BinaryOpIC_Miss));
4047 descriptor->SetMissHandler(ExternalReference( 4051 descriptor->SetMissHandler(ExternalReference(
(...skipping 223 matching lines...) Expand 10 before | Expand all | Expand 10 after
4271 if (type->Is(Type::UntaggedPointer())) { 4275 if (type->Is(Type::UntaggedPointer())) {
4272 return Representation::External(); 4276 return Representation::External();
4273 } 4277 }
4274 4278
4275 DCHECK(!type->Is(Type::Untagged())); 4279 DCHECK(!type->Is(Type::Untagged()));
4276 return Representation::Tagged(); 4280 return Representation::Tagged();
4277 } 4281 }
4278 4282
4279 } // namespace internal 4283 } // namespace internal
4280 } // namespace v8 4284 } // namespace v8
OLDNEW
« no previous file with comments | « src/code-stubs.h ('k') | src/code-stubs-hydrogen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698