mirror of
https://github.com/openharmony/ark_runtime_core.git
synced 2026-07-18 18:24:30 -04:00
1aa56bf224
Signed-off-by: Ilya Trubachev <trubachev.ilya@huawei.com>
77 lines
1.9 KiB
C++
77 lines
1.9 KiB
C++
/*
|
|
* Copyright (c) 2021-2022 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 PANDA_RUNTIME_ASSERT_GC_SCOPE_H_
|
|
#define PANDA_RUNTIME_ASSERT_GC_SCOPE_H_
|
|
|
|
#include "macros.h"
|
|
|
|
#include <atomic>
|
|
|
|
namespace panda {
|
|
|
|
#ifndef NDEBUG
|
|
constexpr bool IS_GC_ALLOW_CHECK = true;
|
|
#else
|
|
constexpr bool IS_GC_ALLOW_CHECK = false;
|
|
#endif
|
|
|
|
template <bool IsDebug = IS_GC_ALLOW_CHECK>
|
|
class AssertGCScopeT {
|
|
public:
|
|
static bool IsAllowed()
|
|
{
|
|
return true;
|
|
}
|
|
};
|
|
|
|
template <>
|
|
class AssertGCScopeT<true> {
|
|
public:
|
|
AssertGCScopeT()
|
|
{
|
|
AssertGCScopeT::gc_flag.fetch_add(1, std::memory_order_relaxed);
|
|
}
|
|
|
|
~AssertGCScopeT()
|
|
{
|
|
AssertGCScopeT::gc_flag.fetch_sub(1, std::memory_order_relaxed);
|
|
}
|
|
|
|
static bool IsAllowed();
|
|
|
|
NO_COPY_SEMANTIC(AssertGCScopeT);
|
|
DEFAULT_NOEXCEPT_MOVE_SEMANTIC(AssertGCScopeT);
|
|
|
|
private:
|
|
static std::atomic<int> gc_flag;
|
|
};
|
|
|
|
using DisallowGarbageCollection = AssertGCScopeT<IS_GC_ALLOW_CHECK>;
|
|
|
|
#if !defined(NDEBUG)
|
|
// NOLINTNEXTLINE(cppcoreguidelines-macro-usage)
|
|
#define DISALLOW_GARGABE_COLLECTION [[maybe_unused]] DisallowGarbageCollection no_gc
|
|
#else
|
|
#define DISALLOW_GARGABE_COLLECTION
|
|
#endif
|
|
|
|
// NOLINTNEXTLINE(cppcoreguidelines-macro-usage)
|
|
#define DCHECK_ALLOW_GARBAGE_COLLECTION \
|
|
ASSERT_PRINT(AssertGCScopeT<IS_GC_ALLOW_CHECK>::IsAllowed(), "disallow execute garbage collection.");
|
|
} // namespace panda
|
|
|
|
#endif // PANDA_RUNTIME_ASSERT_GC_SCOPE_H_
|