Lines Matching refs:old_details
2938 PropertyDetails old_details = old_descriptors->GetDetails(i); in MigrateFastToFast() local
2939 Representation old_representation = old_details.representation(); in MigrateFastToFast()
2942 if (old_details.type() == ACCESSOR_CONSTANT) { in MigrateFastToFast()
2951 } else if (old_details.type() == DATA_CONSTANT) { in MigrateFastToFast()
3398 PropertyDetails old_details = old_descriptors->GetDetails(modify_index); in ReconfigureProperty() local
3399 Representation old_representation = old_details.representation(); in ReconfigureProperty()
3402 DCHECK_EQ(new_kind, old_details.kind()); in ReconfigureProperty()
3403 DCHECK_EQ(new_attributes, old_details.attributes()); in ReconfigureProperty()
3404 DCHECK_EQ(DATA, old_details.type()); in ReconfigureProperty()
3447 PropertyDetails old_details = old_descriptors->GetDetails(modify_index); in ReconfigureProperty() local
3448 if (old_details.kind() != new_kind || in ReconfigureProperty()
3449 old_details.attributes() != new_attributes) { in ReconfigureProperty()
3454 if ((old_details.type() != DATA && store_mode == FORCE_FIELD) || in ReconfigureProperty()
3455 (old_details.type() == DATA && in ReconfigureProperty()
3457 !new_representation.fits_into(old_details.representation())))) { in ReconfigureProperty()
3471 PropertyDetails old_details = old_descriptors->GetDetails(i); in ReconfigureProperty() local
3480 property_kind_reconfiguration = old_details.kind() != new_kind; in ReconfigureProperty()
3490 next_representation.generalize(old_details.representation()); in ReconfigureProperty()
3494 next_kind = old_details.kind(); in ReconfigureProperty()
3495 next_location = old_details.location(); in ReconfigureProperty()
3496 next_attributes = old_details.attributes(); in ReconfigureProperty()
3497 next_representation = old_details.representation(); in ReconfigureProperty()
3523 PropertyLocation old_location = old_details.location(); in ReconfigureProperty()
3533 old_details.location(), tmp_representation); in ReconfigureProperty()
3534 Representation old_representation = old_details.representation(); in ReconfigureProperty()
3541 GetFieldType(isolate, old_descriptors, i, old_details.location(), in ReconfigureProperty()
3583 PropertyDetails old_details = old_descriptors->GetDetails(i); in ReconfigureProperty() local
3590 next_kind = old_details.kind(); in ReconfigureProperty()
3591 next_attributes = old_details.attributes(); in ReconfigureProperty()
3635 PropertyDetails old_details = old_descriptors->GetDetails(i); in ReconfigureProperty() local
3636 if (old_details.location() == kField) { in ReconfigureProperty()
3637 current_offset += old_details.field_width_in_words(); in ReconfigureProperty()
3641 old_details); in ReconfigureProperty()
3648 PropertyDetails old_details = old_descriptors->GetDetails(i); in ReconfigureProperty() local
3659 property_kind_reconfiguration = old_details.kind() != new_kind; in ReconfigureProperty()
3672 next_representation.generalize(old_details.representation()); in ReconfigureProperty()
3676 DCHECK_EQ(target_details.kind(), old_details.kind()); in ReconfigureProperty()
3680 old_details.location() == kField || in ReconfigureProperty()
3687 next_representation = old_details.representation().generalize( in ReconfigureProperty()
3707 old_details.location(), next_representation); in ReconfigureProperty()
3709 old_details.representation(), old_field_type, in ReconfigureProperty()
3714 GetFieldType(isolate, old_descriptors, i, old_details.location(), in ReconfigureProperty()
3717 old_details.representation(), old_field_type, next_representation, in ReconfigureProperty()
3739 PropertyDetails old_details = old_descriptors->GetDetails(i); in ReconfigureProperty() local
3753 property_kind_reconfiguration = old_details.kind() != new_kind; in ReconfigureProperty()
3761 next_representation.generalize(old_details.representation()); in ReconfigureProperty()
3764 next_kind = old_details.kind(); in ReconfigureProperty()
3765 next_attributes = old_details.attributes(); in ReconfigureProperty()
3766 next_location = old_details.location(); in ReconfigureProperty()
3767 next_representation = old_details.representation(); in ReconfigureProperty()
3778 old_details.location(), next_representation); in ReconfigureProperty()
3780 old_details.representation(), old_field_type, in ReconfigureProperty()
3785 GetFieldType(isolate, old_descriptors, i, old_details.location(), in ReconfigureProperty()
3850 PropertyDetails old_details = old_descriptors->GetDetails(modify_index); in ReconfigureProperty() local
3853 (old_details.type() == DATA) in ReconfigureProperty()
3866 old_details.location() == kDescriptor && store_mode == FORCE_FIELD, in ReconfigureProperty()
3867 old_details.representation(), new_details.representation(), in ReconfigureProperty()
3927 PropertyDetails old_details = old_descriptors->GetDetails(i); in TryUpdate() local
3929 new_map, old_details.kind(), old_descriptors->GetKey(i), in TryUpdate()
3930 old_details.attributes()); in TryUpdate()
3936 DCHECK_EQ(old_details.kind(), new_details.kind()); in TryUpdate()
3937 DCHECK_EQ(old_details.attributes(), new_details.attributes()); in TryUpdate()
3938 if (!old_details.representation().fits_into(new_details.representation())) { in TryUpdate()
3949 PropertyType old_property_type = old_details.type(); in TryUpdate()
3952 if (FieldTypeIsCleared(old_details.representation(), old_type) || in TryUpdate()
3977 if (old_details.location() == kField || old_value != new_value) { in TryUpdate()
9943 PropertyDetails old_details = old_descriptors->GetDetails(descriptor); in TransitionToAccessorProperty() local
9944 if (old_details.type() != ACCESSOR_CONSTANT) { in TransitionToAccessorProperty()
9948 if (old_details.attributes() != attributes) { in TransitionToAccessorProperty()