Home
last modified time | relevance | path

Searched refs:is_inobject (Results 1 – 17 of 17) sorted by relevance

/third_party/node/deps/v8/src/objects/
Dfield-index.h39 bool is_inobject() const { return IsInObjectBits::decode(bit_field_); } in is_inobject() function
54 DCHECK(!is_inobject()); in outobject_array_index()
62 if (!is_inobject()) { in property_index()
79 FieldIndex(bool is_inobject, int offset, Encoding encoding, in FieldIndex() argument
82 bit_field_ = IsInObjectBits::encode(is_inobject) | in FieldIndex()
Dfield-index-inl.h27 bool is_inobject = property_index < inobject_properties; in ForPropertyIndex() local
30 if (is_inobject) { in ForPropertyIndex()
39 return FieldIndex(is_inobject, offset, encoding, inobject_properties, in ForPropertyIndex()
54 if (is_inobject()) { in GetLoadByFieldIndex()
Djs-objects-inl.h354 if (index.is_inobject()) { in RawFastPropertyAt()
372 if (index.is_inobject()) { in RawFastPropertyAt()
382 CHECK(index.is_inobject()); in RawInobjectPropertyAt()
417 DCHECK(index.is_inobject()); in RawFastInobjectPropertyAtPut()
425 DCHECK(index.is_inobject()); in RawFastInobjectPropertyAtPut()
436 if (index.is_inobject()) { in FastPropertyAtPut()
446 if (index.is_inobject()) { in FastPropertyAtPut()
489 if (index.is_inobject()) { in RawFastPropertyAtSwap()
Dlookup.cc930 field_index.is_inobject() && field_index.is_double()) { in FetchValue()
Djs-objects.cc3018 if (index.is_inobject() || index.outobject_array_index() < in MigrateFastToFast()
3045 DCHECK(!index.is_inobject()); // Must be a backing store index. in MigrateFastToFast()
3415 if (index.is_inobject()) { in AllocateStorageForMap()
/third_party/node/deps/v8/src/compiler/
Dproperty-access-builder.cc221 bool is_inobject, Node** effect, in BuildLoadDataField() argument
224 if (!is_inobject) { in BuildLoadDataField()
315 access_info.field_index().is_inobject(), effect, in BuildLoadDataField()
Dproperty-access-builder.h83 FieldAccess& field_access, bool is_inobject,
Dheap-refs.cc310 if (field_index.is_inobject()) { in GetOwnFastDataPropertyFromHeap()
1188 CHECK(index.is_inobject()); in RawInobjectPropertyAt()
1221 DCHECK(result.is_inobject()); in GetFieldIndexFor()
Djs-native-context-specialization.cc2406 if (!field_index.is_inobject()) { in BuildPropertyStore()
2547 DCHECK(!field_index.is_inobject()); in BuildPropertyStore()
/third_party/node/deps/v8/src/ic/
Dhandler-configuration-inl.h58 IsInobjectBits::encode(field_index.is_inobject()) | in LoadField()
232 IsInobjectBits::encode(field_index.is_inobject()) | in StoreField()
Daccessor-assembler.cc1209 TNode<BoolT> is_inobject = in HandleStoreICSmiHandlerJSSharedStructFieldCase() local
1212 is_inobject, [&]() { return holder; }, in HandleStoreICSmiHandlerJSSharedStructFieldCase()
2138 TNode<BoolT> is_inobject = in HandleStoreFieldAndReturn() local
2141 is_inobject, [&]() { return holder; }, in HandleStoreFieldAndReturn()
/third_party/node/deps/v8/src/runtime/
Druntime-object.cc100 if (index.is_inobject()) { in ClearField()
207 if (!index.is_inobject() && index.outobject_array_index() == 0) { in DeleteObjectPropertyFast()
217 if (index.is_inobject()) { in DeleteObjectPropertyFast()
/third_party/node/deps/v8/src/maglev/
Dmaglev-graph-builder.cc28 LoadHandler::IsInobjectBits::encode(field_index.is_inobject()) | in LoadSimpleFieldHandler()
/third_party/node/deps/v8/src/deoptimizer/
Dtranslated-state.cc1772 if (!index.is_inobject() && in EnsurePropertiesAllocatedAndMarked()
1808 if (index.is_inobject() && in EnsureJSObjectAllocated()
/third_party/node/deps/v8/src/heap/
Dobject-stats.cc153 if (!index.is_inobject()) break; in GetInobjectFieldStats()
/third_party/node/deps/v8/src/diagnostics/
Dobjects-debug.cc436 if (COMPRESS_POINTERS_BOOL && index.is_inobject()) { in JSObjectVerify()
/third_party/node/deps/v8/src/profiler/
Dheap-snapshot-generator.cc1759 field_index.is_inobject() ? field_index.offset() : -1; in ExtractPropertyReferences()