arkcompiler_ets_runtime/ecmascript/on_heap.h
linxiang8 4604a5d086 add onheap testcase
Issue: https://gitee.com/openharmony/arkcompiler_ets_runtime/issues/I8XTLL
Signed-off-by: linxiang8 <linxiang8@huawei.com>
Change-Id: I62fa6347a641f0de7d45c1c50392bc21c3092a41
2024-01-22 19:19:08 +08:00

51 lines
1.4 KiB
C++

/*
* Copyright (c) 2023 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_ON_HEAP_H
#define ECMASCRIPT_ON_HEAP_H
#include "ecmascript/js_tagged_value.h"
namespace panda::ecmascript {
enum class OnHeapMode : uint8_t {
NONE = 0,
ON_HEAP,
NOT_ON_HEAP,
};
class OnHeap {
public:
static bool IsNone(OnHeapMode mode)
{
return !(mode == OnHeapMode::ON_HEAP || mode == OnHeapMode::NOT_ON_HEAP);
}
static OnHeapMode Merge(OnHeapMode first, OnHeapMode second)
{
if (IsNone(first) || IsNone(second) || (first != second)) {
return OnHeapMode::NONE;
}
return first;
}
static bool ToBoolean(OnHeapMode mode)
{
ASSERT(!IsNone(mode));
return mode == OnHeapMode::ON_HEAP;
}
};
} // namespace panda::ecmascript
#endif // ECMASCRIPT_ON_HEAP_H