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

Side by Side Diff: src/ic/ic.cc

Issue 892383003: emit premonomorphic ics for loads/stores in optimized code (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: wire up stores Created 5 years, 10 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
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/accessors.h" 7 #include "src/accessors.h"
8 #include "src/api.h" 8 #include "src/api.h"
9 #include "src/arguments.h" 9 #include "src/arguments.h"
10 #include "src/base/bits.h" 10 #include "src/base/bits.h"
(...skipping 964 matching lines...) Expand 10 before | Expand all | Expand 10 after
975 ExtraICState extra_state) { 975 ExtraICState extra_state) {
976 if (FLAG_vector_ics) { 976 if (FLAG_vector_ics) {
977 return LoadICTrampolineStub(isolate, LoadICState(extra_state)).GetCode(); 977 return LoadICTrampolineStub(isolate, LoadICState(extra_state)).GetCode();
978 } 978 }
979 979
980 return PropertyICCompiler::ComputeLoad(isolate, UNINITIALIZED, extra_state); 980 return PropertyICCompiler::ComputeLoad(isolate, UNINITIALIZED, extra_state);
981 } 981 }
982 982
983 983
984 Handle<Code> LoadIC::initialize_stub_in_optimized_code( 984 Handle<Code> LoadIC::initialize_stub_in_optimized_code(
985 Isolate* isolate, ExtraICState extra_state) { 985 Isolate* isolate, ExtraICState extra_state, bool initialize_megamorphic) {
986 if (FLAG_vector_ics) { 986 if (FLAG_vector_ics) {
987 return VectorLoadStub(isolate, LoadICState(extra_state)).GetCode(); 987 return VectorLoadStub(isolate, LoadICState(extra_state)).GetCode();
988 } 988 }
989 if (initialize_megamorphic) {
990 return PropertyICCompiler::ComputeLoad(isolate, MEGAMORPHIC, extra_state);
991 }
989 return initialize_stub(isolate, extra_state); 992 return initialize_stub(isolate, extra_state);
990 } 993 }
991 994
992 995
993 Handle<Code> KeyedLoadIC::initialize_stub(Isolate* isolate) { 996 Handle<Code> KeyedLoadIC::initialize_stub(Isolate* isolate) {
994 if (FLAG_vector_ics) { 997 if (FLAG_vector_ics) {
995 return KeyedLoadICTrampolineStub(isolate).GetCode(); 998 return KeyedLoadICTrampolineStub(isolate).GetCode();
996 } 999 }
997 1000
998 return isolate->builtins()->KeyedLoadIC_Initialize(); 1001 return isolate->builtins()->KeyedLoadIC_Initialize();
(...skipping 600 matching lines...) Expand 10 before | Expand all | Expand 10 after
1599 1602
1600 Handle<Code> CallIC::initialize_stub_in_optimized_code( 1603 Handle<Code> CallIC::initialize_stub_in_optimized_code(
1601 Isolate* isolate, int argc, CallICState::CallType call_type) { 1604 Isolate* isolate, int argc, CallICState::CallType call_type) {
1602 CallICStub stub(isolate, CallICState(argc, call_type)); 1605 CallICStub stub(isolate, CallICState(argc, call_type));
1603 Handle<Code> code = stub.GetCode(); 1606 Handle<Code> code = stub.GetCode();
1604 return code; 1607 return code;
1605 } 1608 }
1606 1609
1607 1610
1608 Handle<Code> StoreIC::initialize_stub(Isolate* isolate, 1611 Handle<Code> StoreIC::initialize_stub(Isolate* isolate,
1609 LanguageMode language_mode) { 1612 LanguageMode language_mode,
1613 bool initialize_megamorphic) {
1610 ExtraICState extra_state = ComputeExtraICState(language_mode); 1614 ExtraICState extra_state = ComputeExtraICState(language_mode);
1615 InlineCacheState state = initialize_megamorphic ? MEGAMORPHIC : UNINITIALIZED;
1611 Handle<Code> ic = 1616 Handle<Code> ic =
1612 PropertyICCompiler::ComputeStore(isolate, UNINITIALIZED, extra_state); 1617 PropertyICCompiler::ComputeStore(isolate, state, extra_state);
1613 return ic; 1618 return ic;
1614 } 1619 }
1615 1620
1616 1621
1617 Handle<Code> StoreIC::megamorphic_stub() { 1622 Handle<Code> StoreIC::megamorphic_stub() {
1618 if (kind() == Code::STORE_IC) { 1623 if (kind() == Code::STORE_IC) {
1619 return PropertyICCompiler::ComputeStore(isolate(), MEGAMORPHIC, 1624 return PropertyICCompiler::ComputeStore(isolate(), MEGAMORPHIC,
1620 extra_ic_state()); 1625 extra_ic_state());
1621 } else { 1626 } else {
1622 DCHECK(kind() == Code::KEYED_STORE_IC); 1627 DCHECK(kind() == Code::KEYED_STORE_IC);
(...skipping 1366 matching lines...) Expand 10 before | Expand all | Expand 10 after
2989 static const Address IC_utilities[] = { 2994 static const Address IC_utilities[] = {
2990 #define ADDR(name) FUNCTION_ADDR(name), 2995 #define ADDR(name) FUNCTION_ADDR(name),
2991 IC_UTIL_LIST(ADDR) NULL 2996 IC_UTIL_LIST(ADDR) NULL
2992 #undef ADDR 2997 #undef ADDR
2993 }; 2998 };
2994 2999
2995 3000
2996 Address IC::AddressFromUtilityId(IC::UtilityId id) { return IC_utilities[id]; } 3001 Address IC::AddressFromUtilityId(IC::UtilityId id) { return IC_utilities[id]; }
2997 } 3002 }
2998 } // namespace v8::internal 3003 } // namespace v8::internal
OLDNEW
« src/code-factory.cc ('K') | « src/ic/ic.h ('k') | src/ic/ic-compiler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698