OLD | NEW |
1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 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/ic/handler-compiler.h" | 5 #include "src/ic/handler-compiler.h" |
6 | 6 |
7 #include "src/field-type.h" | 7 #include "src/field-type.h" |
8 #include "src/ic/call-optimization.h" | 8 #include "src/ic/call-optimization.h" |
9 #include "src/ic/ic-inl.h" | 9 #include "src/ic/ic-inl.h" |
10 #include "src/ic/ic.h" | 10 #include "src/ic/ic.h" |
(...skipping 496 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
507 } | 507 } |
508 GenerateRestoreName(name); | 508 GenerateRestoreName(name); |
509 StoreTransitionStub stub(isolate(), | 509 StoreTransitionStub stub(isolate(), |
510 FieldIndex::ForDescriptor(*transition, descriptor), | 510 FieldIndex::ForDescriptor(*transition, descriptor), |
511 representation, store_mode); | 511 representation, store_mode); |
512 GenerateTailCall(masm(), stub.GetCode()); | 512 GenerateTailCall(masm(), stub.GetCode()); |
513 } | 513 } |
514 | 514 |
515 GenerateRestoreName(&miss, name); | 515 GenerateRestoreName(&miss, name); |
516 PopVectorAndSlot(); | 516 PopVectorAndSlot(); |
517 TailCallBuiltin(masm(), MissBuiltin(kind())); | 517 TailCallMissHandler(masm(), kind()); |
518 | 518 |
519 return GetCode(kind(), name); | 519 return GetCode(kind(), name); |
520 } | 520 } |
521 | 521 |
522 bool NamedStoreHandlerCompiler::RequiresFieldTypeChecks( | 522 bool NamedStoreHandlerCompiler::RequiresFieldTypeChecks( |
523 FieldType* field_type) const { | 523 FieldType* field_type) const { |
524 return field_type->IsClass(); | 524 return field_type->IsClass(); |
525 } | 525 } |
526 | 526 |
527 | 527 |
528 Handle<Code> NamedStoreHandlerCompiler::CompileStoreField(LookupIterator* it) { | 528 Handle<Code> NamedStoreHandlerCompiler::CompileStoreField(LookupIterator* it) { |
529 Label miss; | 529 Label miss; |
530 DCHECK(it->representation().IsHeapObject()); | 530 DCHECK(it->representation().IsHeapObject()); |
531 | 531 |
532 FieldType* field_type = *it->GetFieldType(); | 532 FieldType* field_type = *it->GetFieldType(); |
533 bool need_save_restore = false; | 533 bool need_save_restore = false; |
534 if (RequiresFieldTypeChecks(field_type)) { | 534 if (RequiresFieldTypeChecks(field_type)) { |
535 need_save_restore = IC::ICUseVector(kind()); | 535 need_save_restore = IC::ICUseVector(kind()); |
536 if (need_save_restore) PushVectorAndSlot(); | 536 if (need_save_restore) PushVectorAndSlot(); |
537 GenerateFieldTypeChecks(field_type, value(), &miss); | 537 GenerateFieldTypeChecks(field_type, value(), &miss); |
538 if (need_save_restore) PopVectorAndSlot(); | 538 if (need_save_restore) PopVectorAndSlot(); |
539 } | 539 } |
540 | 540 |
541 StoreFieldStub stub(isolate(), it->GetFieldIndex(), it->representation()); | 541 StoreFieldStub stub(isolate(), it->GetFieldIndex(), it->representation()); |
542 GenerateTailCall(masm(), stub.GetCode()); | 542 GenerateTailCall(masm(), stub.GetCode()); |
543 | 543 |
544 __ bind(&miss); | 544 __ bind(&miss); |
545 if (need_save_restore) PopVectorAndSlot(); | 545 if (need_save_restore) PopVectorAndSlot(); |
546 TailCallBuiltin(masm(), MissBuiltin(kind())); | 546 TailCallMissHandler(masm(), kind()); |
547 return GetCode(kind(), it->name()); | 547 return GetCode(kind(), it->name()); |
548 } | 548 } |
549 | 549 |
550 | 550 |
551 Handle<Code> NamedStoreHandlerCompiler::CompileStoreViaSetter( | 551 Handle<Code> NamedStoreHandlerCompiler::CompileStoreViaSetter( |
552 Handle<JSObject> object, Handle<Name> name, int accessor_index, | 552 Handle<JSObject> object, Handle<Name> name, int accessor_index, |
553 int expected_arguments) { | 553 int expected_arguments) { |
554 Register holder = Frontend(name); | 554 Register holder = Frontend(name); |
555 GenerateStoreViaSetter(masm(), map(), receiver(), holder, accessor_index, | 555 GenerateStoreViaSetter(masm(), map(), receiver(), holder, accessor_index, |
556 expected_arguments, scratch2()); | 556 expected_arguments, scratch2()); |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
607 LoadICState state = LoadICState(kNoExtraICState); | 607 LoadICState state = LoadICState(kNoExtraICState); |
608 cached_stub = LoadDictionaryElementStub(isolate(), state).GetCode(); | 608 cached_stub = LoadDictionaryElementStub(isolate(), state).GetCode(); |
609 } | 609 } |
610 } | 610 } |
611 | 611 |
612 handlers->Add(cached_stub); | 612 handlers->Add(cached_stub); |
613 } | 613 } |
614 } | 614 } |
615 } // namespace internal | 615 } // namespace internal |
616 } // namespace v8 | 616 } // namespace v8 |
OLD | NEW |