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.cpp454 BRANCH(IsFastTypeArray(arrayType), &isFastTypedArray, slowPath); in Reverse()
896 BRANCH(IsFastTypeArray(jsType), &typedArray, slowPath); in CopyWithin()
1431 BRANCH(IsFastTypeArray(arrayType), &isFastTypedArray, slowPath); in Filter()
1565 BRANCH(IsFastTypeArray(arrayType), &isFastTypedArray, slowPath); in Slice()
2141 BRANCH(IsFastTypeArray(GetObjectType(LoadHClass(thisValue))), &typedArray, slowPath); in Sort()
2191 BRANCH(IsFastTypeArray(GetObjectType(LoadHClass(thisValue))), &typedArrayIsFast, slowPath); in Set()
2232 BRANCH(IsFastTypeArray(srcType), &isFastTypeArray, slowPath); in Set()
2489 BRANCH(IsFastTypeArray(GetObjectType(LoadHClass(thisValue))), &typedArray, slowPath); in ToSorted()
2543 BRANCH(IsFastTypeArray(arrayType), &thisObjIsFastTypedArray, slowPath); in Of()
2639 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.cpp2367 BRANCH(IsFastTypeArray(arrayType), &thisObjIsFastTypedArray, slowPath); in NewTypedArrayFromCtor()
Dstub_builder-inl.h2424 inline GateRef StubBuilder::IsFastTypeArray(GateRef jsType) in IsFastTypeArray() function