mirror of
https://gitee.com/openharmony/arkcompiler_ets_runtime
synced 2025-04-13 21:20:29 +00:00

Issue: https://gitee.com/openharmony/arkcompiler_ets_runtime/issues/IAAM12 Signed-off-by: xiongluo <xiongluo@huawei.com> Change-Id: I5785021320e5dcc164671c79bdc26975abedc68b
52 lines
2.0 KiB
C++
Executable File
52 lines
2.0 KiB
C++
Executable File
/*
|
|
* Copyright (c) 2024 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_SHARED_SET_H
|
|
#define ECMASCRIPT_JS_SHARED_SET_H
|
|
|
|
#include "ecmascript/js_object.h"
|
|
#include "ecmascript/js_tagged_value-inl.h"
|
|
|
|
namespace panda::ecmascript {
|
|
class JSSharedSet : public JSObject {
|
|
public:
|
|
CAST_CHECK(JSSharedSet, IsJSSharedSet);
|
|
|
|
static bool Delete(JSThread *thread, const JSHandle<JSSharedSet> &set, const JSHandle<JSTaggedValue> &value);
|
|
|
|
static void Add(JSThread *thread, const JSHandle<JSSharedSet> &set, const JSHandle<JSTaggedValue> &value);
|
|
|
|
static void Clear(JSThread *thread, const JSHandle<JSSharedSet> &set);
|
|
|
|
static bool Has(JSThread *thread, const JSHandle<JSSharedSet> &set, JSTaggedValue value);
|
|
|
|
static uint32_t GetSize(JSThread *thread, const JSHandle<JSSharedSet> &set);
|
|
|
|
static JSTaggedValue GetValue(JSThread *thread, const JSHandle<JSSharedSet> &set, int entry);
|
|
|
|
static constexpr size_t LINKED_SET_OFFSET = JSObject::SIZE;
|
|
ACCESSORS_SYNCHRONIZED(LinkedSet, LINKED_SET_OFFSET, MOD_RECORD_OFFSET)
|
|
ACCESSORS_SYNCHRONIZED_PRIMITIVE_FIELD(ModRecord, uint32_t, MOD_RECORD_OFFSET, LAST_OFFSET)
|
|
DEFINE_ALIGN_SIZE(LAST_OFFSET);
|
|
|
|
static constexpr uint32_t MAX_INLINE = PropertyAttributes::MAX_FAST_PROPS_CAPACITY -
|
|
SIZE / JSTaggedValue::TaggedTypeSize() + 1;
|
|
DECL_VISIT_OBJECT_FOR_JS_OBJECT(JSObject, LINKED_SET_OFFSET, MOD_RECORD_OFFSET)
|
|
DECL_DUMP()
|
|
};
|
|
} // namespace panda::ecmascript
|
|
|
|
#endif // ECMASCRIPT_JS_SHARED_SET_H
|