/* * Copyright (c) 2021 Huawei Device Co., Ltd. * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef ECMASCRIPT_JS_STABLE_ARRAY_H #define ECMASCRIPT_JS_STABLE_ARRAY_H #include "ecmascript/base/typed_array_helper.h" #include "ecmascript/js_array.h" #include "ecmascript/js_dataview.h" #include "ecmascript/js_hclass.h" #include "ecmascript/js_typed_array.h" #include "ecmascript/js_tagged_value.h" namespace panda::ecmascript { class JSStableArray { public: enum SeparatorFlag : int { MINUS_ONE = -1, MINUS_TWO = -2 }; static JSTaggedValue Push(JSHandle receiver, EcmaRuntimeCallInfo *argv); static JSTaggedValue Push(JSHandle receiver, EcmaRuntimeCallInfo *argv); static JSTaggedValue Pop(JSHandle receiver, EcmaRuntimeCallInfo *argv); static JSTaggedValue Pop(JSHandle receiver, EcmaRuntimeCallInfo *argv); static JSTaggedValue Splice(JSHandle receiver, EcmaRuntimeCallInfo *argv, uint32_t start, uint32_t insertCount, uint32_t actualDeleteCount, JSHandle newArrayHandle, uint32_t len); static JSTaggedValue Splice(JSHandle receiver, EcmaRuntimeCallInfo *argv, uint32_t start, uint32_t insertCount, uint32_t actualDeleteCount, JSHandle newArrayHandle, uint32_t len); static JSTaggedValue Shift(JSHandle receiver, EcmaRuntimeCallInfo *argv); static JSTaggedValue Shift(JSHandle receiver, EcmaRuntimeCallInfo *argv); static JSTaggedValue Join(JSThread *thread, JSHandle receiver, JSHandle sepStringHandle, int64_t length); static JSTaggedValue HandleFindIndexOfStable(JSThread *thread, JSHandle thisObjHandle, JSHandle callbackFnHandle, JSHandle thisArgHandle, uint32_t &k); static JSTaggedValue HandleFindLastIndexOfStable(JSThread *thread, JSHandle thisObjHandle, JSHandle callbackFnHandle, JSHandle thisArgHandle, int64_t &k); static JSTaggedValue HandleEveryOfStable(JSThread *thread, JSHandle thisObjHandle, JSHandle callbackFnHandle, JSHandle thisArgHandle, uint32_t &k); static JSTaggedValue HandleSomeOfStable(JSThread *thread, JSHandle thisObjHandle, JSHandle callbackFnHandle, JSHandle thisArgHandle, uint32_t &k); static JSTaggedValue HandleforEachOfStable(JSThread *thread, JSHandle thisObjHandle, JSHandle callbackFnHandle, JSHandle thisArgHandle, uint32_t len, uint32_t &k); static JSTaggedValue IndexOf(JSThread *thread, JSHandle receiver, JSHandle searchElement, uint32_t from, uint32_t len); static JSTaggedValue LastIndexOf(JSThread *thread, JSHandle receiver, JSHandle searchElement, uint32_t from, uint32_t len); static JSTaggedValue Filter(JSHandle newArrayHandle, JSHandle thisObjHandle, EcmaRuntimeCallInfo *argv, uint32_t &k, uint32_t &toIndex); static JSTaggedValue Map(JSHandle newArrayHandle, JSHandle thisObjHandle, EcmaRuntimeCallInfo *argv, uint32_t &k, uint32_t len); static JSTaggedValue Reverse(JSThread *thread, JSHandle thisObjHandle, int64_t &lower, uint32_t len); static JSTaggedValue FastReverse(JSThread *thread, JSHandle elements, int64_t &lower, uint32_t len, ElementsKind kind); static JSTaggedValue Concat(JSThread *thread, JSHandle newArrayHandle, JSHandle thisObjHandle, int64_t &k, int64_t &n); template static JSTaggedValue FastCopyFromArrayToTypedArray(JSThread *thread, JSHandle &target, DataViewType targetType, uint64_t targetOffset, uint32_t srcLength, JSHandle &obj); static JSTaggedValue At(JSHandle receiver, EcmaRuntimeCallInfo *argv); static JSTaggedValue At(JSHandle receiver, EcmaRuntimeCallInfo *argv); static JSTaggedValue With(JSThread *thread, JSHandle receiver, int64_t insertCount, int64_t index, JSHandle value); static JSTaggedValue ToSpliced(JSHandle receiver, EcmaRuntimeCallInfo *argv, int64_t argc, int64_t actualStart, int64_t actualSkipCount, int64_t insertCount); static JSTaggedValue ToReversed(JSThread *thread, JSHandle receiver, int64_t insertCount); static JSTaggedValue Reduce(JSThread *thread, JSHandle thisObjHandle, JSHandle callbackFnHandle, JSMutableHandle accumulator, int64_t &k, int64_t &len); static JSTaggedValue Slice(JSThread *thread, JSHandle thisObjHandle, int64_t &k, int64_t &count); static JSTaggedValue Sort(JSThread *thread, const JSHandle &thisObj, const JSHandle &callbackFnHandle); static JSTaggedValue Fill(JSThread *thread, const JSHandle &thisObj, const JSHandle &value, int64_t start, int64_t end, int64_t len); static JSTaggedValue HandleFindLastOfStable(JSThread *thread, JSHandle thisObjHandle, JSHandle callbackFnHandle, JSHandle thisArgHandle, JSMutableHandle &kValue, int64_t &k); static JSTaggedValue HandleReduceRightOfStable(JSThread *thread, JSHandle thisObjHandle, JSHandle callbackFnHandle, JSMutableHandle &accumulator, JSHandle thisArgHandle, int64_t &k); private: static void SetSepValue(JSHandle sepStringHandle, int &sep, uint32_t &sepLength); enum class IndexOfType { IndexOf, LastIndexOf }; struct IndexOfContext { JSThread *thread; JSHandle receiver; JSHandle searchElement; uint32_t fromIndex; uint32_t length; }; template static JSTaggedValue FindRawData(IndexOfContext &ctx, Predicate &&predicate); template static JSTaggedValue FindLastRawData(IndexOfContext &ctx, Predicate &&predicate); template static JSTaggedValue FindRawDataDispatch(IndexOfType type, IndexOfContext &ctx, Predicate &&predicate); static JSTaggedValue IndexOfZero(IndexOfType type, IndexOfContext &ctx); static JSTaggedValue IndexOfInt32(IndexOfType type, IndexOfContext &ctx, JSTaggedValue searchElement); static JSTaggedValue IndexOfDouble(IndexOfType type, IndexOfContext &ctx, JSTaggedValue searchElement); static JSTaggedValue IndexOfObjectAddress(IndexOfType type, IndexOfContext &ctx, JSTaggedValue searchElement); static JSTaggedValue IndexOfString(IndexOfType type, IndexOfContext &ctx, JSTaggedValue searchElement); static JSTaggedValue IndexOfBigInt(IndexOfType type, IndexOfContext &ctx, JSTaggedValue searchElement); static JSTaggedValue IndexOfDispatch(IndexOfType type, IndexOfContext &ctx, JSTaggedValue searchElement); static JSTaggedValue UpdateArrayCapacity(JSHandle &thisObjHandle, uint32_t &len, uint32_t &insertCount, uint32_t &actualDeleteCount, JSHandle &receiver, uint32_t &start, JSThread *thread, bool &needTransition, JSHandle &holeHandle, EcmaRuntimeCallInfo *argv, JSHandle &thisObjVal, JSHandle &lengthKey); static void HandleArray(JSHandle &newArrayHandle, uint32_t &actualDeleteCount, JSThread *thread, uint32_t &start, JSHandle &thisObjHandle, JSHandle &holeHandle); static JSTaggedValue JoinUseTreeString(const JSThread* thread, JSHandle receiverValue, JSHandle sepStringHandle, int sep, CVector>& vec); inline static bool WorthUseTreeString(int sep, size_t allocateLength, uint32_t len); // Allocate object larger than 256 need liner search in the free object list, // so try to use tree string when the join result is larger than 256. static constexpr size_t TREE_STRING_THRESHOLD = 256; static constexpr size_t NUM_2 = 2; }; } // namespace panda::ecmascript #endif // ECMASCRIPT_JS_STABLE_ARRAY_H