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

Side by Side Diff: src/x64/lithium-codegen-x64.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
« src/code-factory.cc ('K') | « src/ic/ic-compiler.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2013 the V8 project authors. All rights reserved. 1 // Copyright 2013 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 #if V8_TARGET_ARCH_X64 7 #if V8_TARGET_ARCH_X64
8 8
9 #include "src/base/bits.h" 9 #include "src/base/bits.h"
10 #include "src/code-factory.h" 10 #include "src/code-factory.h"
(...skipping 2868 matching lines...) Expand 10 before | Expand all | Expand 10 after
2879 DCHECK(ToRegister(instr->context()).is(rsi)); 2879 DCHECK(ToRegister(instr->context()).is(rsi));
2880 DCHECK(ToRegister(instr->global_object()) 2880 DCHECK(ToRegister(instr->global_object())
2881 .is(LoadDescriptor::ReceiverRegister())); 2881 .is(LoadDescriptor::ReceiverRegister()));
2882 DCHECK(ToRegister(instr->result()).is(rax)); 2882 DCHECK(ToRegister(instr->result()).is(rax));
2883 2883
2884 __ Move(LoadDescriptor::NameRegister(), instr->name()); 2884 __ Move(LoadDescriptor::NameRegister(), instr->name());
2885 if (FLAG_vector_ics) { 2885 if (FLAG_vector_ics) {
2886 EmitVectorLoadICRegisters<LLoadGlobalGeneric>(instr); 2886 EmitVectorLoadICRegisters<LLoadGlobalGeneric>(instr);
2887 } 2887 }
2888 ContextualMode mode = instr->for_typeof() ? NOT_CONTEXTUAL : CONTEXTUAL; 2888 ContextualMode mode = instr->for_typeof() ? NOT_CONTEXTUAL : CONTEXTUAL;
2889 Handle<Code> ic = CodeFactory::LoadICInOptimizedCode(isolate(), mode).code(); 2889 Handle<Code> ic =
2890 CodeFactory::LoadICInOptimizedCode(isolate(), mode, false).code();
2890 CallCode(ic, RelocInfo::CODE_TARGET, instr); 2891 CallCode(ic, RelocInfo::CODE_TARGET, instr);
2891 } 2892 }
2892 2893
2893 2894
2894 void LCodeGen::DoStoreGlobalCell(LStoreGlobalCell* instr) { 2895 void LCodeGen::DoStoreGlobalCell(LStoreGlobalCell* instr) {
2895 Register value = ToRegister(instr->value()); 2896 Register value = ToRegister(instr->value());
2896 Handle<Cell> cell_handle = instr->hydrogen()->cell().handle(); 2897 Handle<Cell> cell_handle = instr->hydrogen()->cell().handle();
2897 2898
2898 // If the cell we are storing to contains the hole it could have 2899 // If the cell we are storing to contains the hole it could have
2899 // been deleted from the property dictionary. In that case, we need 2900 // been deleted from the property dictionary. In that case, we need
(...skipping 122 matching lines...) Expand 10 before | Expand all | Expand 10 after
3022 3023
3023 void LCodeGen::DoLoadNamedGeneric(LLoadNamedGeneric* instr) { 3024 void LCodeGen::DoLoadNamedGeneric(LLoadNamedGeneric* instr) {
3024 DCHECK(ToRegister(instr->context()).is(rsi)); 3025 DCHECK(ToRegister(instr->context()).is(rsi));
3025 DCHECK(ToRegister(instr->object()).is(LoadDescriptor::ReceiverRegister())); 3026 DCHECK(ToRegister(instr->object()).is(LoadDescriptor::ReceiverRegister()));
3026 DCHECK(ToRegister(instr->result()).is(rax)); 3027 DCHECK(ToRegister(instr->result()).is(rax));
3027 3028
3028 __ Move(LoadDescriptor::NameRegister(), instr->name()); 3029 __ Move(LoadDescriptor::NameRegister(), instr->name());
3029 if (FLAG_vector_ics) { 3030 if (FLAG_vector_ics) {
3030 EmitVectorLoadICRegisters<LLoadNamedGeneric>(instr); 3031 EmitVectorLoadICRegisters<LLoadNamedGeneric>(instr);
3031 } 3032 }
3032 Handle<Code> ic = 3033 bool emit_megamorphic = instr->hydrogen()->emit_megamorphic();
3033 CodeFactory::LoadICInOptimizedCode(isolate(), NOT_CONTEXTUAL).code(); 3034 Handle<Code> ic = CodeFactory::LoadICInOptimizedCode(
3035 isolate(), NOT_CONTEXTUAL, emit_megamorphic).code();
3034 CallCode(ic, RelocInfo::CODE_TARGET, instr); 3036 CallCode(ic, RelocInfo::CODE_TARGET, instr);
3035 } 3037 }
3036 3038
3037 3039
3038 void LCodeGen::DoLoadFunctionPrototype(LLoadFunctionPrototype* instr) { 3040 void LCodeGen::DoLoadFunctionPrototype(LLoadFunctionPrototype* instr) {
3039 Register function = ToRegister(instr->function()); 3041 Register function = ToRegister(instr->function());
3040 Register result = ToRegister(instr->result()); 3042 Register result = ToRegister(instr->result());
3041 3043
3042 // Get the prototype or initial map from the function. 3044 // Get the prototype or initial map from the function.
3043 __ movp(result, 3045 __ movp(result,
(...skipping 1219 matching lines...) Expand 10 before | Expand all | Expand 10 after
4263 } 4265 }
4264 } 4266 }
4265 4267
4266 4268
4267 void LCodeGen::DoStoreNamedGeneric(LStoreNamedGeneric* instr) { 4269 void LCodeGen::DoStoreNamedGeneric(LStoreNamedGeneric* instr) {
4268 DCHECK(ToRegister(instr->context()).is(rsi)); 4270 DCHECK(ToRegister(instr->context()).is(rsi));
4269 DCHECK(ToRegister(instr->object()).is(StoreDescriptor::ReceiverRegister())); 4271 DCHECK(ToRegister(instr->object()).is(StoreDescriptor::ReceiverRegister()));
4270 DCHECK(ToRegister(instr->value()).is(StoreDescriptor::ValueRegister())); 4272 DCHECK(ToRegister(instr->value()).is(StoreDescriptor::ValueRegister()));
4271 4273
4272 __ Move(StoreDescriptor::NameRegister(), instr->hydrogen()->name()); 4274 __ Move(StoreDescriptor::NameRegister(), instr->hydrogen()->name());
4273 Handle<Code> ic = StoreIC::initialize_stub(isolate(), instr->language_mode()); 4275 bool emit_megamorphic = instr->hydrogen()->emit_megamorphic();
4276 Handle<Code> ic = StoreIC::initialize_stub(isolate(), instr->language_mode(),
4277 emit_megamorphic);
4274 CallCode(ic, RelocInfo::CODE_TARGET, instr); 4278 CallCode(ic, RelocInfo::CODE_TARGET, instr);
4275 } 4279 }
4276 4280
4277 4281
4278 void LCodeGen::DoBoundsCheck(LBoundsCheck* instr) { 4282 void LCodeGen::DoBoundsCheck(LBoundsCheck* instr) {
4279 Representation representation = instr->hydrogen()->length()->representation(); 4283 Representation representation = instr->hydrogen()->length()->representation();
4280 DCHECK(representation.Equals(instr->hydrogen()->index()->representation())); 4284 DCHECK(representation.Equals(instr->hydrogen()->index()->representation()));
4281 DCHECK(representation.IsSmiOrInteger32()); 4285 DCHECK(representation.IsSmiOrInteger32());
4282 4286
4283 Condition cc = instr->hydrogen()->allow_equality() ? below : below_equal; 4287 Condition cc = instr->hydrogen()->allow_equality() ? below : below_equal;
(...skipping 1647 matching lines...) Expand 10 before | Expand all | Expand 10 after
5931 CallRuntime(Runtime::kPushBlockContext, 2, instr); 5935 CallRuntime(Runtime::kPushBlockContext, 2, instr);
5932 RecordSafepoint(Safepoint::kNoLazyDeopt); 5936 RecordSafepoint(Safepoint::kNoLazyDeopt);
5933 } 5937 }
5934 5938
5935 5939
5936 #undef __ 5940 #undef __
5937 5941
5938 } } // namespace v8::internal 5942 } } // namespace v8::internal
5939 5943
5940 #endif // V8_TARGET_ARCH_X64 5944 #endif // V8_TARGET_ARCH_X64
OLDNEW
« src/code-factory.cc ('K') | « src/ic/ic-compiler.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698