Files
ark_js_runtime/ecmascript/common.h
T
dingwen 53808f9634 Snapshot support serialize builtins object independently
description:Add SerializeBuiltins interface, support create EcmaVM by deserializing builtins.snapshot file
issue:https://gitee.com/openharmony/ark_js_runtime/issues/I5B3QM
Signed-off-by: dingwen <dingwen6@huawei.com>

Change-Id: I0d19efe34826bdb58366df9eed571285afbcccca
2022-06-09 21:21:44 +08:00

81 lines
2.3 KiB
C++

/*
* 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.
*/
#ifndef ECMASCRIPT_COMMON_H
#define ECMASCRIPT_COMMON_H
#include "libpandabase/macros.h"
namespace panda {
namespace ecmascript {
enum BarrierMode { SKIP_BARRIER, WRITE_BARRIER, READ_BARRIER };
/*
* TriggerGCType is categorized according to the scope the GC expects to cover.
* Different GC algorithms may be applied to different GC types.
* For example, SemiSpace GC for young generation GC, Mark-Sweep-Compact for full GC, etc.
*/
enum TriggerGCType {
// GC is expected to cover young space only;
YOUNG_GC,
// GC is expected to cover young space and necessary old spaces;
OLD_GC,
// GC is expected to cover all valid heap spaces;
FULL_GC,
GC_TYPE_LAST
};
constexpr size_t NUM_MANDATORY_JSFUNC_ARGS = 3;
using Address = uintptr_t;
#define PUBLIC_API PANDA_PUBLIC_API
#ifdef NDEBUG
#define DUMP_API_ATTR __attribute__((unused))
#else
#ifndef PANDA_TARGET_WINDOWS
#define DUMP_API_ATTR __attribute__((visibility ("default"), used))
#else
#define DUMP_API_ATTR __attribute__((unused))
#endif
#endif
#ifdef PANDA_TARGET_32
#define STATIC_ASSERT_EQ_ARCH32(a, b) static_assert(a == b)
#else
#define STATIC_ASSERT_EQ_ARCH32(a, b)
#endif
#ifdef PANDA_TARGET_64
#define STATIC_ASSERT_EQ_ARCH64(a, b) static_assert(a == b)
#else
#define STATIC_ASSERT_EQ_ARCH64(a, b)
#endif
#if defined(PANDA_TARGET_WINDOWS) || defined(PANDA_TARGET_MACOS)
#define WIN_OR_MAC_PLATFORM true
#else
#define WIN_OR_MAC_PLATFORM false
#endif
#define STATIC_ASSERT_EQ_ARCH(expect, valueArch32, valueArch64) \
STATIC_ASSERT_EQ_ARCH32(expect, valueArch32) \
STATIC_ASSERT_EQ_ARCH64(expect, valueArch64)
} // namespace ecmascript
} // namespace panda
#endif // ECMASCRIPT_COMMON_H