Home
last modified time | relevance | path

Searched refs:maybe_cell (Results 1 – 4 of 4) sorted by relevance

/third_party/node/deps/v8/src/objects/
Dmap.cc2254 Object maybe_cell = prototype->map().prototype_validity_cell(); in GetOrCreatePrototypeChainValidityCell() local
2256 if (maybe_cell.IsCell()) { in GetOrCreatePrototypeChainValidityCell()
2257 Handle<Cell> cell(Cell::cast(maybe_cell), isolate); in GetOrCreatePrototypeChainValidityCell()
2272 Object maybe_cell = map.prototype_validity_cell(); in IsPrototypeChainInvalidated() local
2273 if (maybe_cell.IsCell()) { in IsPrototypeChainInvalidated()
2274 Cell cell = Cell::cast(maybe_cell); in IsPrototypeChainInvalidated()
Djs-objects.cc4888 Object maybe_cell = map.prototype_validity_cell(); in InvalidateOnePrototypeValidityCellInternal() local
4889 if (maybe_cell.IsCell()) { in InvalidateOnePrototypeValidityCellInternal()
4891 Cell cell = Cell::cast(maybe_cell); in InvalidateOnePrototypeValidityCellInternal()
/third_party/node/deps/v8/src/compiler/
Dheap-refs.cc2234 base::Optional<PropertyCell> maybe_cell = in GetPropertyCell() local
2239 if (!maybe_cell.has_value()) return {}; in GetPropertyCell()
2240 return TryMakeRef(broker(), *maybe_cell); in GetPropertyCell()
/third_party/node/deps/v8/src/diagnostics/
Dobjects-debug.cc1223 Object maybe_cell = struct_map.prototype_validity_cell(); in USE_TORQUE_VERIFIER() local
1224 if (maybe_cell.IsCell()) CHECK(maybe_cell.InSharedHeap()); in USE_TORQUE_VERIFIER()