Home
last modified time | relevance | path

Searched refs:IsCOWArray (Results 1 – 13 of 13) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/
Dtagged_array.h107 CAST_CHECK(COWTaggedArray, IsCOWArray)
132 CAST_CHECK(COWMutantTaggedArray, IsCOWArray)
Delements.cpp136 bool needCOW = object->GetElements().IsCOWArray(); in MigrateArrayWithKind()
Djs_array.cpp577 if (arr.GetTaggedValue().IsCOWArray()) { in CheckAndCopyArray()
583 if (prop.GetTaggedValue().IsCOWArray()) { in CheckAndCopyArray()
Djs_tagged_value-inl.h897 inline bool JSTaggedValue::IsCOWArray() const in IsCOWArray() function
899 return IsHeapObject() && GetTaggedObject()->GetClass()->IsCOWArray(); in IsCOWArray()
Djs_tagged_value.h484 bool IsCOWArray() const;
Djs_hclass.h660 inline bool IsCOWArray() const in IsCOWArray() function
Djs_tagged_value.cpp103 return IsJSArray() && JSArray::Cast(GetTaggedObject())->GetElements().IsCOWArray(); in IsJSCOWArray()
Dobject_factory.cpp491 if (type == MemSpaceType::NON_MOVABLE && elements.GetTaggedValue().IsCOWArray()) { in CloneArrayLiteral()
499 if (type == MemSpaceType::NON_MOVABLE && !object->GetElements().IsCOWArray()) { in CloneArrayLiteral()
514 if (type == MemSpaceType::NON_MOVABLE && properties.GetTaggedValue().IsCOWArray()) { in CloneArrayLiteral()
522 if (type == MemSpaceType::NON_MOVABLE && !object->GetProperties().IsCOWArray()) { in CloneArrayLiteral()
/arkcompiler/ets_runtime/ecmascript/compiler/
Dcircuit_builder.cpp170 return IsCOWArray(objectType); in IsJsCOWArray()
173 GateRef CircuitBuilder::IsCOWArray(GateRef objectType) in IsCOWArray() function in panda::ecmascript::kungfu::CircuitBuilder
Dcircuit_builder.h203 GateRef IsCOWArray(GateRef objectType);
Dstub_builder-inl.h1380 return env_->GetBuilder()->IsCOWArray(objectType); in IsJsCOWArray()
/arkcompiler/ets_runtime/ecmascript/js_api/
Djs_api_lightweightset.cpp487 if (values.GetTaggedValue().IsCOWArray()) { in CheckAndCopyValues()
/arkcompiler/ets_runtime/ecmascript/containers/
Dcontainers_lightweightset.cpp525 if (srcArray.GetTaggedValue().IsCOWArray()) { in ToArray()