| Index: src/compiler/access-info.cc
|
| diff --git a/src/compiler/access-info.cc b/src/compiler/access-info.cc
|
| index 1f3af068af81f8debeffd8924ad2924592453a73..da0e90aa9b126178a5e2c8421cedacb1228fecfd 100644
|
| --- a/src/compiler/access-info.cc
|
| +++ b/src/compiler/access-info.cc
|
| @@ -75,8 +75,9 @@
|
| // static
|
| PropertyAccessInfo PropertyAccessInfo::DataField(
|
| Type* receiver_type, FieldIndex field_index, Type* field_type,
|
| - MaybeHandle<JSObject> holder, MaybeHandle<Map> transition_map) {
|
| - return PropertyAccessInfo(holder, transition_map, field_index,
|
| + FieldCheck field_check, MaybeHandle<JSObject> holder,
|
| + MaybeHandle<Map> transition_map) {
|
| + return PropertyAccessInfo(holder, transition_map, field_index, field_check,
|
| field_type, receiver_type);
|
| }
|
|
|
| @@ -117,13 +118,14 @@
|
| PropertyAccessInfo::PropertyAccessInfo(MaybeHandle<JSObject> holder,
|
| MaybeHandle<Map> transition_map,
|
| FieldIndex field_index,
|
| - Type* field_type,
|
| + FieldCheck field_check, Type* field_type,
|
| Type* receiver_type)
|
| : kind_(kDataField),
|
| receiver_type_(receiver_type),
|
| transition_map_(transition_map),
|
| holder_(holder),
|
| field_index_(field_index),
|
| + field_check_(field_check),
|
| field_type_(field_type) {}
|
|
|
|
|
| @@ -298,7 +300,7 @@
|
| }
|
| *access_info = PropertyAccessInfo::DataField(
|
| Type::Class(receiver_map, zone()), field_index, field_type,
|
| - holder);
|
| + FieldCheck::kNone, holder);
|
| return true;
|
| } else {
|
| // TODO(bmeurer): Add support for accessors.
|
| @@ -450,7 +452,7 @@
|
| }
|
| dependencies()->AssumeMapNotDeprecated(transition_map);
|
| *access_info = PropertyAccessInfo::DataField(
|
| - Type::Class(map, zone()), field_index, field_type,
|
| + Type::Class(map, zone()), field_index, field_type, FieldCheck::kNone,
|
| holder, transition_map);
|
| return true;
|
| }
|
|
|