Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/compiler/builtins/
Dbuiltins_array_stub_builder.cpp37 Branch(IsJsArray(thisValue), &isJsArray, slowPath); in Concat()
169 GateRef thisValueIsJSArray = IsJsArray(thisValue); in Filter()
170 GateRef protoIsJsArray = IsJsArray(StubBuilder::GetPrototype(glue, thisValue)); in Filter()
488 Branch(IsJsArray(thisValue), &isJsArray, slowPath); in Slice()
726 Branch(IsJsArray(thisValue), &isJsArray, slowPath); in Sort()
855 Branch(IsJsArray(thisValue), &isJsArray, slowPath); in Reduce()
997 Branch(IsJsArray(thisValue), &isJsArray, slowPath); in Reverse()
1055 Branch(IsJsArray(object), &isJsArray, &exit); in IsJsArrayWithLengthLimit()
1087 Branch(IsJsArray(thisValue), &isJsArray, slowPath); in Values()
1120 Branch(IsJsArray(thisValue), &isJsArray, slowPath); in Find()
[all …]
/arkcompiler/ets_runtime/ecmascript/compiler/
Dstub_builder.h350 GateRef IsJsArray(GateRef obj);
Dstub_builder.cpp866 return BoolAnd(BoolOr(IsJsArray(receiver), IsTypedArray(receiver)), isCtorStr); in SetHasConstructorCondition()
2999 Branch(IsJsArray(receiver), &isArray, &notArray); in AddElementInternal()
3173 Branch(BoolOr(IsProtoTypeHClass(hclass), IsJsArray(receiver)), &isProtoType, &exit); in NotifyStableArrayElementsGuardians()
Dstub_builder-inl.h1253 inline GateRef StubBuilder::IsJsArray(GateRef obj) in IsJsArray() function