Lines Matching defs:cell
68 #include "src/objects/property-cell.h"
890 // If we have a global object, invalidate the cell and remove it from the
895 Handle<PropertyCell> cell(dictionary->CellAt(entry), isolate);
902 cell->ClearAndInvalidate(ReadOnlyRoots(isolate));
918 // Invalidate prototype validity cell as this may invalidate transitioning
2673 auto cell = isolate->factory()->NewPropertyCell(name, details, value);
2675 GlobalDictionary::Add(isolate, dictionary, name, cell, details);
4885 PrintF("Invalidating prototype map %p 's cell\n",
4890 // Just set the value; the cell will be replaced lazily.
4891 Cell cell = Cell::cast(maybe_cell);
4892 cell.set_value(Smi::FromInt(Map::kPrototypeChainInvalid));
4908 // whenever the validity cell would be invalidated. However, the actual value
4909 // of the validity cell is not used. Therefore, we always trigger the de-opt
4910 // here, even if the cell was already invalid.
4963 // We also invalidate global objects validity cell when a new lexical
5390 Handle<PropertyCell> cell(dictionary->CellAt(entry), isolate);
5391 Handle<Object> value(cell->value(), isolate);
5392 PropertyDetails details = cell->property_details();