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()
568 GateRef thisValueAndProtoIsJSArray = LogicAndBuilder(env).And(IsJsArray(thisValue)) in Filter()
569 .And(IsJsArray(StubBuilder::GetPrototype(glue, thisValue))).Done(); in Filter()
731 GateRef thisValueAndProtoIsJSArray = LogicAndBuilder(env).And(IsJsArray(thisValue)) in Map()
732 .And(IsJsArray(StubBuilder::GetPrototype(glue, thisValue))).Done(); in Map()
872 BRANCH(IsJsArray(thisValue), &isJsArray, slowPath); in ForEach()
1154 BRANCH(IsJsArray(thisValue), &isJsArray, slowPath); in Slice()
1400 BRANCH(IsJsArray(thisValue), &isJsArray, slowPath); in SortAfterArgs()
[all …]
/arkcompiler/ets_runtime/ecmascript/compiler/
Dstub_builder.h430 GateRef IsJsArray(GateRef obj);
Dstub_builder.cpp1399 …Branch(LogicOrBuilder(env_).Or(IsJsArray(receiver)).Or(IsTypedArray(receiver)).Done(), &isArray, &… in SetHasConstructorCondition()
3775 BRANCH(IsJsArray(receiver), &isArray, &notArray); in AddElementInternal()
3959 BRANCH(BitOr(IsProtoTypeHClass(hclass), IsJsArray(receiver)), &isProtoType, &exit); in NotifyStableArrayElementsGuardians()
Dstub_builder-inl.h1486 inline GateRef StubBuilder::IsJsArray(GateRef obj) in IsJsArray() function