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

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

Issue 385073007: Revert "Use the same registers for StoreIC and KeyedStoreIC." (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 5 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/v8.h" 5 #include "src/v8.h"
6 6
7 #include "src/bootstrapper.h" 7 #include "src/bootstrapper.h"
8 #include "src/code-stubs.h" 8 #include "src/code-stubs.h"
9 #include "src/cpu-profiler.h" 9 #include "src/cpu-profiler.h"
10 #include "src/factory.h" 10 #include "src/factory.h"
(...skipping 626 matching lines...) Expand 10 before | Expand all | Expand 10 after
637 CodeStubInterfaceDescriptor* descriptor) { 637 CodeStubInterfaceDescriptor* descriptor) {
638 Register registers[] = { KeyedStoreIC::ReceiverRegister(), 638 Register registers[] = { KeyedStoreIC::ReceiverRegister(),
639 KeyedStoreIC::NameRegister(), 639 KeyedStoreIC::NameRegister(),
640 KeyedStoreIC::ValueRegister() }; 640 KeyedStoreIC::ValueRegister() };
641 descriptor->Initialize( 641 descriptor->Initialize(
642 ARRAY_SIZE(registers), registers, 642 ARRAY_SIZE(registers), registers,
643 FUNCTION_ADDR(KeyedStoreIC_MissFromStubFailure)); 643 FUNCTION_ADDR(KeyedStoreIC_MissFromStubFailure));
644 } 644 }
645 645
646 646
647 void ElementsTransitionAndStoreStub::InitializeInterfaceDescriptor(
648 CodeStubInterfaceDescriptor* descriptor) {
649 Register registers[] = { ValueRegister(),
650 MapRegister(),
651 KeyRegister(),
652 ObjectRegister() };
653 descriptor->Initialize(ARRAY_SIZE(registers), registers,
654 FUNCTION_ADDR(ElementsTransitionAndStoreIC_Miss));
655 }
656
657
658 void StoreGlobalStub::InitializeInterfaceDescriptor( 647 void StoreGlobalStub::InitializeInterfaceDescriptor(
659 CodeStubInterfaceDescriptor* descriptor) { 648 CodeStubInterfaceDescriptor* descriptor) {
660 Register registers[] = { StoreIC::ReceiverRegister(), 649 Register registers[] = { StoreIC::ReceiverRegister(),
661 StoreIC::NameRegister(), 650 StoreIC::NameRegister(),
662 StoreIC::ValueRegister() }; 651 StoreIC::ValueRegister() };
663 descriptor->Initialize(ARRAY_SIZE(registers), registers, 652 descriptor->Initialize(ARRAY_SIZE(registers), registers,
664 FUNCTION_ADDR(StoreIC_MissFromStubFailure)); 653 FUNCTION_ADDR(StoreIC_MissFromStubFailure));
665 } 654 }
666 655
667 656
(...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after
972 InstallDescriptor(isolate, &stub3); 961 InstallDescriptor(isolate, &stub3);
973 } 962 }
974 963
975 InternalArrayConstructorStub::InternalArrayConstructorStub( 964 InternalArrayConstructorStub::InternalArrayConstructorStub(
976 Isolate* isolate) : PlatformCodeStub(isolate) { 965 Isolate* isolate) : PlatformCodeStub(isolate) {
977 InternalArrayConstructorStubBase::GenerateStubsAheadOfTime(isolate); 966 InternalArrayConstructorStubBase::GenerateStubsAheadOfTime(isolate);
978 } 967 }
979 968
980 969
981 } } // namespace v8::internal 970 } } // 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