Home
last modified time | relevance | path

Searched refs:isJsArray (Results 1 – 2 of 2) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/compiler/builtins/
Dbuiltins_array_stub_builder.cpp34 Label isJsArray(env); in Concat() local
37 Branch(IsJsArray(thisValue), &isJsArray, slowPath); in Concat()
38 Bind(&isJsArray); in Concat()
165 Label isJsArray(env); in Filter() local
171 Branch(BoolAnd(thisValueIsJSArray, protoIsJsArray), &isJsArray, slowPath); in Filter()
172 Bind(&isJsArray); in Filter()
484 Label isJsArray(env); in Slice() local
488 Branch(IsJsArray(thisValue), &isJsArray, slowPath); in Slice()
489 Bind(&isJsArray); in Slice()
720 Label isJsArray(env); in Sort() local
[all …]
/arkcompiler/ets_runtime/ecmascript/compiler/
Dhcr_circuit_builder.h150 GateRef isJsArray = Int32Equal(objectType, Int32(static_cast<int32_t>(JSType::JS_ARRAY))); in IsStableArray() local
152 return BoolAnd(isStableElements, isJsArray); in IsStableArray()