2021-09-04 08:06:49 +00:00
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2021-09-07 14:24:16 +00:00
|
|
|
#ifndef ECMASCRIPT_JS_STABLE_ARRAY_H
|
|
|
|
#define ECMASCRIPT_JS_STABLE_ARRAY_H
|
2021-09-04 08:06:49 +00:00
|
|
|
|
|
|
|
#include "ecmascript/js_array.h"
|
2022-09-29 07:21:51 +00:00
|
|
|
#include "ecmascript/js_dataview.h"
|
|
|
|
#include "ecmascript/js_typed_array.h"
|
2021-09-04 08:06:49 +00:00
|
|
|
#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<JSArray> receiver, EcmaRuntimeCallInfo *argv);
|
|
|
|
static JSTaggedValue Pop(JSHandle<JSArray> receiver, EcmaRuntimeCallInfo *argv);
|
2023-12-07 02:26:29 +00:00
|
|
|
static JSTaggedValue Splice(JSHandle<JSArray> receiver, EcmaRuntimeCallInfo *argv, uint32_t start,
|
2023-12-16 10:35:43 +00:00
|
|
|
uint32_t insertCount, uint32_t actualDeleteCount,
|
|
|
|
JSHandle<JSObject> newArrayHandle, uint32_t len);
|
2021-09-07 14:24:16 +00:00
|
|
|
static JSTaggedValue Shift(JSHandle<JSArray> receiver, EcmaRuntimeCallInfo *argv);
|
2021-09-04 08:06:49 +00:00
|
|
|
static JSTaggedValue Join(JSHandle<JSArray> receiver, EcmaRuntimeCallInfo *argv);
|
2022-07-25 02:00:43 +00:00
|
|
|
static JSTaggedValue HandleFindIndexOfStable(JSThread *thread, JSHandle<JSObject> thisObjHandle,
|
|
|
|
JSHandle<JSTaggedValue> callbackFnHandle,
|
|
|
|
JSHandle<JSTaggedValue> thisArgHandle, uint32_t &k);
|
2023-08-09 08:16:04 +00:00
|
|
|
static JSTaggedValue HandleFindLastIndexOfStable(JSThread *thread, JSHandle<JSObject> thisObjHandle,
|
|
|
|
JSHandle<JSTaggedValue> callbackFnHandle,
|
|
|
|
JSHandle<JSTaggedValue> thisArgHandle, int64_t &k);
|
2022-07-14 09:56:30 +00:00
|
|
|
static JSTaggedValue HandleEveryOfStable(JSThread *thread, JSHandle<JSObject> thisObjHandle,
|
|
|
|
JSHandle<JSTaggedValue> callbackFnHandle,
|
|
|
|
JSHandle<JSTaggedValue> thisArgHandle, uint32_t &k);
|
|
|
|
static JSTaggedValue HandleforEachOfStable(JSThread *thread, JSHandle<JSObject> thisObjHandle,
|
|
|
|
JSHandle<JSTaggedValue> callbackFnHandle,
|
2023-09-06 12:07:06 +00:00
|
|
|
JSHandle<JSTaggedValue> thisArgHandle, uint32_t len, uint32_t &k);
|
2022-07-21 09:00:58 +00:00
|
|
|
static JSTaggedValue IndexOf(JSThread *thread, JSHandle<JSTaggedValue> receiver,
|
|
|
|
JSHandle<JSTaggedValue> searchElement, uint32_t from, uint32_t len);
|
2023-08-18 01:20:10 +00:00
|
|
|
static JSTaggedValue LastIndexOf(JSThread *thread, JSHandle<JSTaggedValue> receiver,
|
|
|
|
JSHandle<JSTaggedValue> searchElement, uint32_t from, uint32_t len);
|
2022-08-11 08:52:48 +00:00
|
|
|
static JSTaggedValue Filter(JSHandle<JSObject> newArrayHandle, JSHandle<JSObject> thisObjHandle,
|
2022-09-09 13:31:27 +00:00
|
|
|
EcmaRuntimeCallInfo *argv, uint32_t &k, uint32_t &toIndex);
|
2022-08-11 08:52:48 +00:00
|
|
|
static JSTaggedValue Map(JSHandle<JSObject> newArrayHandle, JSHandle<JSObject> thisObjHandle,
|
|
|
|
EcmaRuntimeCallInfo *argv, uint32_t &k, uint32_t len);
|
2023-11-15 13:09:41 +00:00
|
|
|
static JSTaggedValue Reverse(JSThread *thread, JSHandle<JSObject> thisObjHandle,
|
|
|
|
int64_t &lower, uint32_t len);
|
2022-08-11 08:52:48 +00:00
|
|
|
static JSTaggedValue Concat(JSThread *thread, JSHandle<JSObject> newArrayHandle,
|
2022-09-09 13:31:27 +00:00
|
|
|
JSHandle<JSObject> thisObjHandle, int64_t &k, int64_t &n);
|
2022-09-29 07:21:51 +00:00
|
|
|
static JSTaggedValue FastCopyFromArrayToTypedArray(JSThread *thread, JSHandle<JSTypedArray> &target,
|
2023-08-15 12:47:48 +00:00
|
|
|
DataViewType targetType, uint64_t targetOffset,
|
2023-12-18 07:57:47 +00:00
|
|
|
uint32_t srcLength, JSHandle<JSObject> &obj);
|
2023-06-27 13:09:25 +00:00
|
|
|
static JSTaggedValue At(JSHandle<JSArray> receiver, EcmaRuntimeCallInfo *argv);
|
2023-08-28 04:21:13 +00:00
|
|
|
static JSTaggedValue With(JSThread *thread, JSHandle<JSArray> receiver,
|
|
|
|
int64_t insertCount, int64_t index, JSHandle<JSTaggedValue> value);
|
|
|
|
static JSTaggedValue ToSpliced(JSHandle<JSArray> receiver, EcmaRuntimeCallInfo *argv,
|
|
|
|
int64_t argc, int64_t actualStart, int64_t actualSkipCount, int64_t insertCount);
|
2023-09-06 12:07:06 +00:00
|
|
|
static JSTaggedValue ToReversed(JSThread *thread, JSHandle<JSArray> receiver, int64_t insertCount);
|
2023-08-04 07:32:25 +00:00
|
|
|
static JSTaggedValue Reduce(JSThread *thread, JSHandle<JSObject> thisObjHandle,
|
|
|
|
JSHandle<JSTaggedValue> callbackFnHandle,
|
|
|
|
JSMutableHandle<JSTaggedValue> accumulator, int64_t &k, int64_t &len);
|
2023-08-15 06:30:30 +00:00
|
|
|
static JSTaggedValue Slice(JSThread *thread, JSHandle<JSObject> thisObjHandle, int64_t &k, int64_t &count);
|
2023-08-18 01:20:10 +00:00
|
|
|
|
2023-10-27 01:58:48 +00:00
|
|
|
static JSTaggedValue Sort(JSThread *thread, const JSHandle<JSObject> &thisObj,
|
|
|
|
const JSHandle<JSTaggedValue> &callbackFnHandle);
|
2024-01-03 06:17:20 +00:00
|
|
|
static JSTaggedValue Fill(JSThread *thread, const JSHandle<JSObject> &thisObj,
|
|
|
|
const JSHandle<JSTaggedValue> &value,
|
|
|
|
int64_t start, int64_t end, int64_t len);
|
2023-10-27 01:58:48 +00:00
|
|
|
|
2023-08-18 01:20:10 +00:00
|
|
|
private:
|
2023-09-21 07:31:27 +00:00
|
|
|
static void SetSepValue(JSHandle<EcmaString> sepStringHandle, int &sep, uint32_t &sepLength);
|
2023-08-18 01:20:10 +00:00
|
|
|
enum class IndexOfType {
|
|
|
|
IndexOf,
|
|
|
|
LastIndexOf
|
|
|
|
};
|
|
|
|
|
|
|
|
struct IndexOfContext {
|
|
|
|
JSThread *thread;
|
|
|
|
JSHandle<JSTaggedValue> receiver;
|
|
|
|
JSHandle<JSTaggedValue> searchElement;
|
|
|
|
uint32_t fromIndex;
|
|
|
|
uint32_t length;
|
|
|
|
};
|
|
|
|
|
|
|
|
template <class Predicate>
|
|
|
|
static JSTaggedValue FindRawData(IndexOfContext &ctx, Predicate &&predicate);
|
|
|
|
template <class Predicate>
|
|
|
|
static JSTaggedValue FindLastRawData(IndexOfContext &ctx, Predicate &&predicate);
|
|
|
|
template <class Predicate>
|
|
|
|
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);
|
2021-09-04 08:06:49 +00:00
|
|
|
};
|
|
|
|
} // namespace panda::ecmascript
|
2022-07-21 09:00:58 +00:00
|
|
|
#endif // ECMASCRIPT_JS_STABLE_ARRAY_H
|