Home
last modified time | relevance | path

Searched refs:IsFastTypeArray (Results 1 – 7 of 7) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/
Dobject_fast_operator.h132 static inline bool IsFastTypeArray(JSType jsType);
Dobject_fast_operator-inl.h262 if (IsFastTypeArray(jsType)) { in GetPropertyByName()
418 if (IsFastTypeArray(jsType)) { in SetPropertyByName()
582 if (IsFastTypeArray(jsType)) { in GetPropertyByIndex()
643 if (IsFastTypeArray(jsType)) { in SetPropertyByIndex()
1015 bool ObjectFastOperator::IsFastTypeArray(JSType jsType) in IsFastTypeArray() function
/arkcompiler/ets_runtime/ecmascript/compiler/builtins/
Dbuiltins_typedarray_stub_builder.cpp446 BRANCH(IsFastTypeArray(arrayType), &isFastTypedArray, slowPath); in Reverse()
888 BRANCH(IsFastTypeArray(jsType), &typedArray, slowPath); in CopyWithin()
1423 BRANCH(IsFastTypeArray(arrayType), &isFastTypedArray, slowPath); in Filter()
1557 BRANCH(IsFastTypeArray(arrayType), &isFastTypedArray, slowPath); in Slice()
2133 BRANCH(IsFastTypeArray(GetObjectType(LoadHClass(thisValue))), &typedArray, slowPath); in Sort()
2183 BRANCH(IsFastTypeArray(GetObjectType(LoadHClass(thisValue))), &typedArrayIsFast, slowPath); in Set()
2224 BRANCH(IsFastTypeArray(srcType), &isFastTypeArray, slowPath); in Set()
2481 BRANCH(IsFastTypeArray(GetObjectType(LoadHClass(thisValue))), &typedArray, slowPath); in ToSorted()
2536 BRANCH(IsFastTypeArray(arrayType), &thisObjIsFastTypedArray, slowPath); in Of()
2632 BRANCH(IsFastTypeArray(GetObjectType(LoadHClass(thisValue))), &typedArrayIsFast, slowPath); in Map()
[all …]
/arkcompiler/ets_runtime/ecmascript/compiler/
Dstub_builder.cpp3245 BRANCH(IsFastTypeArray(jsType), &isFastTypeArray, &notFastTypeArray); in GetPropertyByIndex()
3495 BRANCH(IsFastTypeArray(jsType), &isFastTypeArray, &notFastTypeArray); in GetPropertyByName()
4189 BRANCH(IsFastTypeArray(jsType), &isFastTypeArray, &notFastTypeArray); in SetPropertyByIndex()
4400 BRANCH(IsFastTypeArray(jsType), &isFastTypeArray, &notFastTypeArray); in DefinePropertyByIndex()
4569 BRANCH(IsFastTypeArray(jsType), &isFastTypeArray, &notFastTypeArray); in SetPropertyByName()
4853 BRANCH(IsFastTypeArray(jsType), &isFastTypeArray, &notFastTypeArray); in DefinePropertyByName()
Dstub_builder.h938 GateRef IsFastTypeArray(GateRef jsType);
Dnew_object_stub_builder.cpp2364 BRANCH(IsFastTypeArray(arrayType), &thisObjIsFastTypedArray, slowPath); in NewTypedArrayFromCtor()
Dstub_builder-inl.h2419 inline GateRef StubBuilder::IsFastTypeArray(GateRef jsType) in IsFastTypeArray() function