Home
last modified time | relevance | path

Searched refs:is_undetectable (Results 1 – 7 of 7) sorted by relevance

/external/v8/src/compiler/
Dtypes.cc192 if (type.is_undetectable()) { in Lub()
244 DCHECK(!type.is_undetectable()); in Lub()
247 DCHECK(!type.is_undetectable()); in Lub()
250 DCHECK(!type.is_undetectable()); in Lub()
253 DCHECK(!type.is_undetectable()); in Lub()
Djs-heap-broker.h49 bool is_undetectable() const { return flags_ & kUndetectable; } in is_undetectable() function
Djs-heap-broker.cc658 if (map->is_undetectable()) flags |= HeapObjectType::kUndetectable; in HeapObjectTypeFromMap()
/external/v8/src/objects/
Dmap-inl.h44 BIT_FIELD_ACCESSORS(Map, bit_field, is_undetectable, Map::IsUndetectableBit) in ACCESSORS()
Dmap.h375 DECL_BOOLEAN_ACCESSORS(is_undetectable)
/external/v8/src/
Dobjects-printer.cc798 if (is_undetectable()) os << "\n - undetectable"; in MapPrint()
Dobjects-inl.h424 bool HeapObject::IsUndetectable() const { return map()->is_undetectable(); } in IsUndetectable()