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()
2535 BRANCH(IsFastTypeArray(arrayType), &thisObjIsFastTypedArray, slowPath); in Of()
2631 BRANCH(IsFastTypeArray(GetObjectType(LoadHClass(thisValue))), &typedArrayIsFast, slowPath); in Map()
[all …]
/arkcompiler/ets_runtime/ecmascript/compiler/
Dstub_builder.cpp3266 BRANCH(IsFastTypeArray(jsType), &isFastTypeArray, &notFastTypeArray); in GetPropertyByIndex()
3516 BRANCH(IsFastTypeArray(jsType), &isFastTypeArray, &notFastTypeArray); in GetPropertyByName()
4210 BRANCH(IsFastTypeArray(jsType), &isFastTypeArray, &notFastTypeArray); in SetPropertyByIndex()
4421 BRANCH(IsFastTypeArray(jsType), &isFastTypeArray, &notFastTypeArray); in DefinePropertyByIndex()
4590 BRANCH(IsFastTypeArray(jsType), &isFastTypeArray, &notFastTypeArray); in SetPropertyByName()
4874 BRANCH(IsFastTypeArray(jsType), &isFastTypeArray, &notFastTypeArray); in DefinePropertyByName()
Dstub_builder.h940 GateRef IsFastTypeArray(GateRef jsType);
Dnew_object_stub_builder.cpp2364 BRANCH(IsFastTypeArray(arrayType), &thisObjIsFastTypedArray, slowPath); in NewTypedArrayFromCtor()
Dstub_builder-inl.h2424 inline GateRef StubBuilder::IsFastTypeArray(GateRef jsType) in IsFastTypeArray() function