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.cpp54 Label isJsArray(env); in With() local
60 BRANCH(IsJsArray(thisValue), &isJsArray, slowPath); in With()
61 Bind(&isJsArray); in With()
174 Label isJsArray(env); in Unshift() local
193 BRANCH(IsJsArray(thisValue), &isJsArray, slowPath); in Unshift()
194 Bind(&isJsArray); in Unshift()
430 Label isJsArray(env); in Concat() local
433 BRANCH(IsJsArray(thisValue), &isJsArray, slowPath); in Concat()
434 Bind(&isJsArray); in Concat()
564 Label isJsArray(env); in Filter() local
[all …]
/arkcompiler/ets_runtime/ecmascript/compiler/
Dhcr_circuit_builder.h164 GateRef isJsArray = Int32Equal(objectType, Int32(static_cast<int32_t>(JSType::JS_ARRAY))); in IsStableArray() local
166 return BitAnd(isStableElements, isJsArray); in IsStableArray()