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.cpp60 BRANCH(IsJsArray(thisValue), &isJsArray, slowPath); in With()
193 BRANCH(IsJsArray(thisValue), &isJsArray, slowPath); in Unshift()
433 BRANCH(IsJsArray(thisValue), &isJsArray, slowPath); in Concat()
569 BRANCH(IsJsArray(thisValue), &isJsArray, slowPath); in Filter()
572 …GateRef protoIsJSArray = LogicAndBuilder(env).And(TaggedIsHeapObject(prototype)).And(IsJsArray(pro… in Filter()
735 BRANCH(IsJsArray(thisValue), &isJsArray, slowPath); in Map()
738 …GateRef protoIsJSArray = LogicAndBuilder(env).And(TaggedIsHeapObject(prototype)).And(IsJsArray(pro… in Map()
878 BRANCH(IsJsArray(thisValue), &isJsArray, slowPath); in ForEach()
1160 BRANCH(IsJsArray(thisValue), &isJsArray, slowPath); in Slice()
1406 BRANCH(IsJsArray(thisValue), &isJsArray, slowPath); in SortAfterArgs()
[all …]
/arkcompiler/ets_runtime/ecmascript/compiler/
Dstub_builder.h432 GateRef IsJsArray(GateRef obj);
Dstub_builder.cpp1399 …Branch(LogicOrBuilder(env_).Or(IsJsArray(receiver)).Or(IsTypedArray(receiver)).Done(), &isArray, &… in SetHasConstructorCondition()
3796 BRANCH(IsJsArray(receiver), &isArray, &notArray); in AddElementInternal()
3980 BRANCH(BitOr(IsProtoTypeHClass(hclass), IsJsArray(receiver)), &isProtoType, &exit); in NotifyStableArrayElementsGuardians()
Dstub_builder-inl.h1491 inline GateRef StubBuilder::IsJsArray(GateRef obj) in IsJsArray() function