Home
last modified time | relevance | path

Searched refs:GetObjectSize (Results 1 – 12 of 12) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/tests/
Djs_hclass_test.cpp139 EXPECT_TRUE(objectClass->GetObjectSize() == cloneClass->GetObjectSize()); in HWTEST_F_L0()
140 … EXPECT_EQ(cloneClass->GetObjectSize(), 64U); // 64 : 64 not missing the size of inlinedproperties in HWTEST_F_L0()
150 EXPECT_TRUE(objectClass->GetObjectSize() > cloneClass->GetObjectSize()); in HWTEST_F_L0()
151 EXPECT_EQ(cloneClass->GetObjectSize(), 32U); // 32 : 32 missing the size of inlinedproperties in HWTEST_F_L0()
189 EXPECT_EQ(dictionaryClass->GetObjectSize() + 32U, objectClass->GetObjectSize()); in HWTEST_F_L0()
379 EXPECT_TRUE(obj0Class->GetObjectSize() < obj0Class1->GetObjectSize()); in HWTEST_F_L0()
397 EXPECT_TRUE(newClass->GetObjectSize() < obj2Class->GetObjectSize()); in HWTEST_F_L0()
Dobject_factory_test.cpp86 EXPECT_TRUE(cls->GetObjectSize() == in HWTEST_F_L0()
123 EXPECT_TRUE(cls->GetObjectSize() == in HWTEST_F_L0()
/arkcompiler/ets_runtime/ecmascript/mem/
Dheap-inl.h122 size_t size = hclass->GetObjectSize(); in AllocateYoungOrHugeObject()
184 size_t size = hclass->GetObjectSize(); in AllocateOldOrHugeObject()
203 size_t size = hclass->GetObjectSize(); in AllocateReadOnlyOrHugeObject()
222 size_t size = hclass->GetObjectSize(); in AllocateNonMovableOrHugeObject()
Dspace.h131 size_t GetObjectSize() in GetObjectSize() function
Dheap.cpp1166 result += jsClass->IsArrayBuffer() ? jsClass->GetObjectSize() : 0; in GetArrayBufferSize()
/arkcompiler/ets_runtime/ecmascript/
Dfree_object.h60 return hclass->GetObjectSize(); in Available()
Djs_hclass-inl.h218 ASSERT(GetObjectSize() != 0); in SizeFromJSHClass()
219 size = GetObjectSize(); in SizeFromJSHClass()
Decma_macros.h478 auto objSize = this->GetClass()->GetObjectSize(); \
Djs_hclass.h1585 inline uint32_t GetObjectSize() const in GetObjectSize() function
Dobject_factory.cpp217 auto objBodySize = klass->GetObjectSize() - TaggedObject::TaggedObjectSize(); in InitObjectFields()
1389 ASSERT(inobjPropCount * JSTaggedValue::TaggedTypeSize() < hclass->GetObjectSize()); in InitializeExtraProperties()
1390 auto paddr = reinterpret_cast<uintptr_t>(obj) + hclass->GetObjectSize(); in InitializeExtraProperties()
Djs_object.cpp191 uint32_t newSize = receiver->GetClass()->GetObjectSize(); in TransitionToDictionary()
/arkcompiler/ets_runtime/ecmascript/compiler/
Dntype_mcr_lowering.cpp130 size_t arraySize = arrayHC->GetObjectSize(); in NewJSArrayLiteral()
137 GateRef size = builder_.IntPtr(arrayHC->GetObjectSize()); in NewJSArrayLiteral()