%PDF- %PDF-
Direktori : /home/vacivi36/vittasync.vacivitta.com.br/vittasync/node/deps/v8/src/objects/ |
Current File : /home/vacivi36/vittasync.vacivitta.com.br/vittasync/node/deps/v8/src/objects/property-cell-inl.h |
// Copyright 2018 the V8 project authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef V8_OBJECTS_PROPERTY_CELL_INL_H_ #define V8_OBJECTS_PROPERTY_CELL_INL_H_ #include "src/heap/heap-write-barrier-inl.h" #include "src/objects/dependent-code-inl.h" #include "src/objects/objects-inl.h" #include "src/objects/property-cell.h" // Has to be the last include (doesn't have include guards): #include "src/objects/object-macros.h" namespace v8 { namespace internal { #include "torque-generated/src/objects/property-cell-tq-inl.inc" TQ_OBJECT_CONSTRUCTORS_IMPL(PropertyCell) ACCESSORS(PropertyCell, dependent_code, Tagged<DependentCode>, kDependentCodeOffset) ACCESSORS(PropertyCell, name, Tagged<Name>, kNameOffset) ACCESSORS(PropertyCell, property_details_raw, Tagged<Smi>, kPropertyDetailsRawOffset) RELEASE_ACQUIRE_ACCESSORS(PropertyCell, property_details_raw, Tagged<Smi>, kPropertyDetailsRawOffset) ACCESSORS(PropertyCell, value, Tagged<Object>, kValueOffset) RELEASE_ACQUIRE_ACCESSORS(PropertyCell, value, Tagged<Object>, kValueOffset) PropertyDetails PropertyCell::property_details() const { return PropertyDetails(Smi::cast(property_details_raw())); } PropertyDetails PropertyCell::property_details(AcquireLoadTag tag) const { return PropertyDetails(Smi::cast(property_details_raw(tag))); } void PropertyCell::UpdatePropertyDetailsExceptCellType( PropertyDetails details) { DCHECK(CheckDataIsCompatible(details, value())); PropertyDetails old_details = property_details(); CHECK_EQ(old_details.cell_type(), details.cell_type()); set_property_details_raw(details.AsSmi(), kReleaseStore); // Deopt when making a writable property read-only. The reverse direction // is uninteresting because Turbofan does not currently rely on read-only // unless the property is also configurable, in which case it will stay // read-only forever. if (!old_details.IsReadOnly() && details.IsReadOnly()) { // TODO(11527): pass Isolate as an argument. Isolate* isolate = GetIsolateFromWritableObject(*this); DependentCode::DeoptimizeDependencyGroups( isolate, *this, DependentCode::kPropertyCellChangedGroup); } } void PropertyCell::Transition(PropertyDetails new_details, Handle<Object> new_value) { DCHECK(CanTransitionTo(new_details, *new_value)); // This code must be in sync with its counterpart in // PropertyCellData::Serialize. PropertyDetails transition_marker = new_details; transition_marker.set_cell_type(PropertyCellType::kInTransition); set_property_details_raw(transition_marker.AsSmi(), kReleaseStore); set_value(*new_value, kReleaseStore); set_property_details_raw(new_details.AsSmi(), kReleaseStore); } } // namespace internal } // namespace v8 #include "src/objects/object-macros-undef.h" #endif // V8_OBJECTS_PROPERTY_CELL_INL_H_