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

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

Issue 609463003: Hydrogenize (and share) part of StoreTransition handler as a StoreTransitionStub. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Rebasing Created 6 years, 2 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 | Annotate | Revision Log
« 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/cpu-profiler.h" 10 #include "src/cpu-profiler.h"
(...skipping 598 matching lines...) Expand 10 before | Expand all | Expand 10 after
609 descriptor->Initialize(FUNCTION_ADDR(KeyedStoreIC_MissFromStubFailure)); 609 descriptor->Initialize(FUNCTION_ADDR(KeyedStoreIC_MissFromStubFailure));
610 } 610 }
611 611
612 612
613 void ElementsTransitionAndStoreStub::InitializeDescriptor( 613 void ElementsTransitionAndStoreStub::InitializeDescriptor(
614 CodeStubDescriptor* descriptor) { 614 CodeStubDescriptor* descriptor) {
615 descriptor->Initialize(FUNCTION_ADDR(ElementsTransitionAndStoreIC_Miss)); 615 descriptor->Initialize(FUNCTION_ADDR(ElementsTransitionAndStoreIC_Miss));
616 } 616 }
617 617
618 618
619 CallInterfaceDescriptor ExtendStorageStub::GetCallInterfaceDescriptor() { 619 CallInterfaceDescriptor StoreTransitionStub::GetCallInterfaceDescriptor() {
620 return ExtendStorageDescriptor(isolate()); 620 return StoreTransitionDescriptor(isolate());
621 } 621 }
622 622
623 623
624 static void InitializeVectorLoadStub(Isolate* isolate, 624 static void InitializeVectorLoadStub(Isolate* isolate,
625 CodeStubDescriptor* descriptor, 625 CodeStubDescriptor* descriptor,
626 Address deoptimization_handler) { 626 Address deoptimization_handler) {
627 DCHECK(FLAG_vector_ics); 627 DCHECK(FLAG_vector_ics);
628 descriptor->Initialize(deoptimization_handler); 628 descriptor->Initialize(deoptimization_handler);
629 } 629 }
630 630
(...skipping 331 matching lines...) Expand 10 before | Expand all | Expand 10 after
962 } 962 }
963 963
964 964
965 InternalArrayConstructorStub::InternalArrayConstructorStub( 965 InternalArrayConstructorStub::InternalArrayConstructorStub(
966 Isolate* isolate) : PlatformCodeStub(isolate) { 966 Isolate* isolate) : PlatformCodeStub(isolate) {
967 InternalArrayConstructorStubBase::GenerateStubsAheadOfTime(isolate); 967 InternalArrayConstructorStubBase::GenerateStubsAheadOfTime(isolate);
968 } 968 }
969 969
970 970
971 } } // namespace v8::internal 971 } } // namespace v8::internal
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