Commit 70158828 authored by bmeurer's avatar bmeurer Committed by Commit bot

[turbofan] Fix and enable property stores.

Fix lookup for storing to properties, and also make sure we don't embed
deprecated map (using Map::TryUpdate).

R=jarin@chromium.org
BUG=v8:4470
LOG=n

Review URL: https://codereview.chromium.org/1424523002

Cr-Commit-Position: refs/heads/master@{#31509}
parent d6235fc4
...@@ -312,7 +312,8 @@ bool JSNativeContextSpecialization::ComputePropertyAccessInfo( ...@@ -312,7 +312,8 @@ bool JSNativeContextSpecialization::ComputePropertyAccessInfo(
Handle<Map> map, Handle<Name> name, PropertyAccessMode access_mode, Handle<Map> map, Handle<Name> name, PropertyAccessMode access_mode,
PropertyAccessInfo* access_info) { PropertyAccessInfo* access_info) {
MaybeHandle<JSObject> holder; MaybeHandle<JSObject> holder;
Type* receiver_type = Type::Class(map, graph()->zone()); Handle<Map> receiver_map = map;
Type* receiver_type = Type::Class(receiver_map, graph()->zone());
while (CanInlinePropertyAccess(map)) { while (CanInlinePropertyAccess(map)) {
// Check for special JSObject field accessors. // Check for special JSObject field accessors.
int offset; int offset;
...@@ -356,6 +357,9 @@ bool JSNativeContextSpecialization::ComputePropertyAccessInfo( ...@@ -356,6 +357,9 @@ bool JSNativeContextSpecialization::ComputePropertyAccessInfo(
Handle<DescriptorArray> descriptors(map->instance_descriptors(), isolate()); Handle<DescriptorArray> descriptors(map->instance_descriptors(), isolate());
int const number = descriptors->SearchWithCache(*name, *map); int const number = descriptors->SearchWithCache(*name, *map);
if (number != DescriptorArray::kNotFound) { if (number != DescriptorArray::kNotFound) {
if (access_mode == kStore && !map.is_identical_to(receiver_map)) {
return false;
}
PropertyDetails const details = descriptors->GetDetails(number); PropertyDetails const details = descriptors->GetDetails(number);
if (details.type() == DATA_CONSTANT) { if (details.type() == DATA_CONSTANT) {
*access_info = PropertyAccessInfo::DataConstant( *access_info = PropertyAccessInfo::DataConstant(
...@@ -364,14 +368,14 @@ bool JSNativeContextSpecialization::ComputePropertyAccessInfo( ...@@ -364,14 +368,14 @@ bool JSNativeContextSpecialization::ComputePropertyAccessInfo(
return true; return true;
} else if (details.type() == DATA) { } else if (details.type() == DATA) {
// Don't bother optimizing stores to read-only properties. // Don't bother optimizing stores to read-only properties.
if (access_mode == kStore) { if (access_mode == kStore && details.IsReadOnly()) {
break; break;
} }
int index = descriptors->GetFieldIndex(number); int index = descriptors->GetFieldIndex(number);
Representation field_representation = details.representation(); Representation field_representation = details.representation();
FieldIndex field_index = FieldIndex::ForPropertyIndex( FieldIndex field_index = FieldIndex::ForPropertyIndex(
*map, index, field_representation.IsDouble()); *map, index, field_representation.IsDouble());
Type* field_type = Type::Any(); Type* field_type = Type::Tagged();
if (field_representation.IsSmi()) { if (field_representation.IsSmi()) {
field_type = Type::Intersect(Type::SignedSmall(), field_type = Type::Intersect(Type::SignedSmall(),
Type::TaggedSigned(), graph()->zone()); Type::TaggedSigned(), graph()->zone());
...@@ -454,11 +458,13 @@ bool JSNativeContextSpecialization::ComputePropertyAccessInfos( ...@@ -454,11 +458,13 @@ bool JSNativeContextSpecialization::ComputePropertyAccessInfos(
PropertyAccessMode access_mode, PropertyAccessMode access_mode,
ZoneVector<PropertyAccessInfo>* access_infos) { ZoneVector<PropertyAccessInfo>* access_infos) {
for (Handle<Map> map : maps) { for (Handle<Map> map : maps) {
PropertyAccessInfo access_info; if (Map::TryUpdate(map).ToHandle(&map)) {
if (!ComputePropertyAccessInfo(map, name, access_mode, &access_info)) { PropertyAccessInfo access_info;
return false; if (!ComputePropertyAccessInfo(map, name, access_mode, &access_info)) {
return false;
}
access_infos->push_back(access_info);
} }
access_infos->push_back(access_info);
} }
return true; return true;
} }
...@@ -488,7 +494,9 @@ Reduction JSNativeContextSpecialization::ReduceJSLoadNamed(Node* node) { ...@@ -488,7 +494,9 @@ Reduction JSNativeContextSpecialization::ReduceJSLoadNamed(Node* node) {
if (!ComputePropertyAccessInfos(receiver_maps, name, kLoad, &access_infos)) { if (!ComputePropertyAccessInfos(receiver_maps, name, kLoad, &access_infos)) {
return NoChange(); return NoChange();
} }
DCHECK(!access_infos.empty());
// Nothing to do if we have no non-deprecated maps.
if (access_infos.empty()) return NoChange();
// The final states for every polymorphic branch. We join them with // The final states for every polymorphic branch. We join them with
// Merge+Phi+EffectPhi at the bottom. // Merge+Phi+EffectPhi at the bottom.
...@@ -772,7 +780,6 @@ Reduction JSNativeContextSpecialization::ReduceJSStoreNamed(Node* node) { ...@@ -772,7 +780,6 @@ Reduction JSNativeContextSpecialization::ReduceJSStoreNamed(Node* node) {
// Determine actual holder and perform prototype chain checks. // Determine actual holder and perform prototype chain checks.
Handle<JSObject> holder; Handle<JSObject> holder;
if (access_info.holder().ToHandle(&holder)) { if (access_info.holder().ToHandle(&holder)) {
this_receiver = jsgraph()->Constant(holder);
for (auto i = access_info.receiver_type()->Classes(); !i.Done(); for (auto i = access_info.receiver_type()->Classes(); !i.Done();
i.Advance()) { i.Advance()) {
Handle<Map> map = i.Current(); Handle<Map> map = i.Current();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment