arkcompiler_ets_runtime/ecmascript/shared_objects/js_shared_set.h
Gymee e3bb934d03 Fix define shared subclass which extends shared map/set/array
Issue: https://gitee.com/openharmony/arkcompiler_ets_runtime/issues/I9DALW
Signed-off-by: Gymee <yumeijie@huawei.com>
Change-Id: I6dc2eed0e6d06abfa23d53ec429214948cd9d467
2024-04-01 17:26:21 +08:00

52 lines
1.9 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);
bool Has(JSThread *thread, JSTaggedValue value) const;
uint32_t GetSize(JSThread *thread) const;
JSTaggedValue GetValue(JSThread *thread, int entry) const;
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