arkcompiler_ets_runtime/ecmascript/shared_mm/shared_mm.h
xiongluo c7ab7dddd8 change mutex based on pthread_mutex
Signed-off-by: xiongluo <xiongluo@huawei.com>
Change-Id: I232c1378a20dcef26e61cee76b7b40cccc5b5e9f
2023-09-27 15:11:28 +08:00

50 lines
1.6 KiB
C++

/*
* Copyright (c) 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 ECMASCRIPT_SHARED_MEMORY_MANAGER_MANAGER_H
#define ECMASCRIPT_SHARED_MEMORY_MANAGER_MANAGER_H
#include "ecmascript/mem/c_containers.h"
#include "ecmascript/platform/mutex.h"
namespace panda {
class EcmaVm;
namespace ecmascript {
class JSSharedMemoryManager {
public:
PUBLIC_API ~JSSharedMemoryManager();
static JSSharedMemoryManager *GetInstance()
{
static JSSharedMemoryManager jsSharedMemoryManager;
return &jsSharedMemoryManager;
}
bool CreateOrLoad(void **pointer, size_t size);
static void RemoveSharedMemory(void *pointer, void *data);
private:
JSSharedMemoryManager() = default;
void InsertSharedMemory(const void *pointer);
void IncreaseRefSharedMemory(const void *pointer);
void DecreaseRefSharedMemory(const void *pointer);
void FreeBuffer(void *mem);
void *AllocateBuffer(size_t size);
RecursiveMutex jsSharedMemoryLock_;
CMap<const uint64_t, int32_t> loadedJSSharedMemory_;
};
} // namespace ecmascript
} // namespace panda
#endif // ECMASCRIPT_SHARED_MEMORY_MANAGER_MANAGER_H