mirror of
https://gitee.com/openharmony/arkcompiler_ets_runtime
synced 2024-11-27 04:00:37 +00:00
d8cf9a50f7
Issue: https://gitee.com/open_harmony/dashboard?issue_id=IACDZP Change-Id: I729c3a2741cb2571d6f7184b2726e5f06eca802a Signed-off-by: Andrey Efremov <efremov.andrey@huawei-partners.com>
78 lines
2.3 KiB
C++
78 lines
2.3 KiB
C++
/*
|
|
* Copyright (c) 2021-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_FREE_OBJECT_H
|
|
#define ECMASCRIPT_FREE_OBJECT_H
|
|
|
|
#include "ecmascript/js_hclass.h"
|
|
#include "ecmascript/mem/barriers.h"
|
|
#include "ecmascript/mem/tagged_object.h"
|
|
|
|
#define INVALID_OBJECT ((FreeObject *) JSTaggedValue::NULL_POINTER)
|
|
|
|
namespace panda::ecmascript {
|
|
class BaseHeap;
|
|
|
|
class FreeObject : public TaggedObject {
|
|
public:
|
|
static FreeObject *Cast(uintptr_t object)
|
|
{
|
|
return reinterpret_cast<FreeObject *>(object);
|
|
}
|
|
static FreeObject *FillFreeObject(BaseHeap *heap, uintptr_t address, size_t size);
|
|
|
|
inline bool IsEmpty() const
|
|
{
|
|
return Available() == 0;
|
|
}
|
|
|
|
inline uintptr_t GetBegin() const
|
|
{
|
|
return reinterpret_cast<uintptr_t>(this);
|
|
}
|
|
|
|
inline uintptr_t GetEnd() const
|
|
{
|
|
return reinterpret_cast<uintptr_t>(this) + Available();
|
|
}
|
|
|
|
inline void SetAvailable(uint32_t size)
|
|
{
|
|
if (size >= SIZE) {
|
|
Barriers::SetPrimitive<JSTaggedType>(this, SIZE_OFFSET, JSTaggedValue(size).GetRawData());
|
|
}
|
|
}
|
|
|
|
uint32_t Available() const;
|
|
|
|
bool IsFreeObject() const;
|
|
|
|
// Before operating any freeobject, need to mark unpoison when is_asan is true.
|
|
void AsanUnPoisonFreeObject() const;
|
|
|
|
// After operating any freeobject, need to marked poison again when is_asan is true
|
|
void AsanPoisonFreeObject() const;
|
|
|
|
static constexpr size_t NEXT_OFFSET = TaggedObjectSize();
|
|
ACCESSORS_FIXED_SIZE_FIELD(Next, FreeObject *, JSTaggedType, NEXT_OFFSET, SIZE_OFFSET)
|
|
// TaggedArray visitor may be error while concurrent marking
|
|
ACCESSORS(Size, SIZE_OFFSET, SIZE)
|
|
};
|
|
|
|
static_assert((FreeObject::SIZE % static_cast<uint8_t>(MemAlignment::MEM_ALIGN_OBJECT)) == 0);
|
|
} // namespace panda::ecmascript
|
|
|
|
#endif // ECMASCRIPT_MEM_FREE_OBJECT_H
|