#ifndef V8_OBJECTS_PROPERTY_CELL_H_
#define V8_OBJECTS_PROPERTY_CELL_H_
#include "src/objects/dependent-code.h"
#include "src/objects/heap-object.h"
#include "src/objects/object-macros.h"
namespace v8 {
namespace internal {
class FixedArray;
class WeakFixedArray;
#include "torque-generated/src/objects/property-cell-tq.inc"
class PropertyCell
: public TorqueGeneratedPropertyCell<PropertyCell, HeapObject> {
public:
DECL_GETTER(name, Tagged<Name>)
DECL_GETTER(property_details_raw, Tagged<Smi>)
DECL_ACQUIRE_GETTER(property_details_raw, Tagged<Smi>)
inline PropertyDetails property_details() const;
inline PropertyDetails property_details(AcquireLoadTag tag) const;
inline void UpdatePropertyDetailsExceptCellType(PropertyDetails details);
DECL_GETTER(value, Tagged<Object>)
DECL_ACQUIRE_GETTER(value, Tagged<Object>)
DECL_ACCESSORS(dependent_code, Tagged<DependentCode>)
inline void Transition(PropertyDetails new_details,
DirectHandle<Object> new_value);
void InvalidateProtector(Isolate* isolate);
static PropertyCellType InitialType(Isolate* isolate, Tagged<Object> value);
static PropertyCellType UpdatedType(Isolate* isolate,
Tagged<PropertyCell> cell,
Tagged<Object> value,
PropertyDetails details);
static Handle<PropertyCell> PrepareForAndSetValue(
Isolate* isolate, DirectHandle<GlobalDictionary> dictionary,
InternalIndex entry, DirectHandle<Object> value, PropertyDetails details);
void ClearAndInvalidate(Isolate* isolate);
static Handle<PropertyCell> InvalidateAndReplaceEntry(
Isolate* isolate, DirectHandle<GlobalDictionary> dictionary,
InternalIndex entry, PropertyDetails new_details,
DirectHandle<Object> new_value);
static bool CheckDataIsCompatible(PropertyDetails details,
Tagged<Object> value);
DECL_PRINTER(PropertyCell)
DECL_VERIFIER(PropertyCell)
using BodyDescriptor = FixedBodyDescriptor<kNameOffset, kSize, kSize>;
TQ_OBJECT_CONSTRUCTORS(PropertyCell)
private:
friend class Factory;
DECL_SETTER(name, Tagged<Name>)
DECL_SETTER(value, Tagged<Object>)
DECL_RELEASE_SETTER(value, Tagged<Object>)
DECL_SETTER(property_details_raw, Tagged<Smi>)
DECL_RELEASE_SETTER(property_details_raw, Tagged<Smi>)
#ifdef DEBUG
bool CanTransitionTo(PropertyDetails new_details,
Tagged<Object> new_value) const;
#endif
};
}
}
#include "src/objects/object-macros-undef.h"
#endif