arkcompiler_ets_runtime/ecmascript/dfx/vm_thread_control.h
luochuhao fee924816d Add multi-abc-file support in stub compiler and aot compiler and related adaptation.
Use methodId of func in pandafile as index for each aot func in llvmModule.

Issue: https://gitee.com/openharmony/ark_js_runtime/issues/I598P5
Signed-off-by: luochuhao <luochuhao@huawei.com>
Change-Id: I9646d6a80c8138744ebbd617837550b4661f27d3
2022-05-29 16:59:27 +08:00

65 lines
1.9 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_VM_THREAD_CONTROL_H
#define ECMASCRIPT_VM_THREAD_CONTROL_H
#include "libpandabase/utils/bit_field.h"
#include "os/mutex.h"
namespace panda::ecmascript {
class VmThreadControl {
public:
using VMNeedSuspensionBit = BitField<bool, 0, 1>;
using VMHasSuspendedBit = VMNeedSuspensionBit::NextFlag;
void SetVMNeedSuspension(bool flag)
{
uint64_t newVal = VMNeedSuspensionBit::Update(threadStateBitField_, flag);
threadStateBitField_ = newVal;
}
bool VMNeedSuspension()
{
return VMNeedSuspensionBit::Decode(threadStateBitField_);
}
bool CheckSafepoint();
void SuspendVM();
void ResumeVM();
bool NotifyVMThreadSuspension();
void SetVMSuspended(bool flag)
{
uint64_t newVal = VMHasSuspendedBit::Update(threadStateBitField_, flag);
threadStateBitField_ = newVal;
}
bool IsSuspended()
{
return VMHasSuspendedBit::Decode(threadStateBitField_);
}
private:
std::atomic<uint8_t> threadStateBitField_ {0};
os::memory::Mutex vmThreadSuspensionMutex_;
os::memory::ConditionVariable vmThreadNeedSuspensionCV_;
os::memory::ConditionVariable vmThreadHasSuspendedCV_;
};
} // namespace panda::ecmascript
#endif // ECMASCRIPT_VM_THREAD_CONTROL_H