mirror of
https://github.com/openharmony/ark_js_runtime.git
synced 2026-08-27 02:31:17 -04:00
fe09e292ef
details: 1. store vm in heap profiler 2. make DumpHeapSnapshot not static issue: https://gitee.com/openharmony/ark_js_runtime/issues/I57OBY Signed-off-by: wengchangcheng <wengchangcheng@huawei.com> Change-Id: I436b17cb96198160437fbe70764181ab080d7c51
83 lines
2.5 KiB
C++
83 lines
2.5 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_HPROF_STRING_HASHMAP_H
|
|
#define ECMASCRIPT_HPROF_STRING_HASHMAP_H
|
|
|
|
#include "ecmascript/ecma_vm.h"
|
|
#include "ecmascript/mem/c_containers.h"
|
|
#include "ecmascript/mem/c_string.h"
|
|
#include "os/mem.h"
|
|
|
|
namespace panda::ecmascript {
|
|
using StringKey = uint64_t;
|
|
using StringId = uint64_t;
|
|
|
|
// An Implementation for Native StringTable without Auto Mem-Management
|
|
// To make sure when using String, it still stays where it was.
|
|
class StringHashMap {
|
|
public:
|
|
explicit StringHashMap(const EcmaVM *vm) : vm_(vm)
|
|
{
|
|
ASSERT(vm_ != nullptr);
|
|
}
|
|
~StringHashMap()
|
|
{
|
|
Clear();
|
|
}
|
|
NO_MOVE_SEMANTIC(StringHashMap);
|
|
NO_COPY_SEMANTIC(StringHashMap);
|
|
/*
|
|
* The ID is the seat number in JSON file Range from 0~string_table_.size()
|
|
*/
|
|
StringId GetStringId(const CString *string) const;
|
|
/*
|
|
* Get all keys sorted by insert order
|
|
*/
|
|
const CVector<StringKey> &GetOrderedKeyStorage() const
|
|
{
|
|
return orderedKey_;
|
|
}
|
|
/*
|
|
* Get string by its hash key
|
|
*/
|
|
CString *GetStringByKey(StringKey key) const;
|
|
size_t GetCapcity() const
|
|
{
|
|
ASSERT(orderedKey_.size() == hashmap_.size());
|
|
return orderedKey_.size();
|
|
}
|
|
/*
|
|
* For external call to use this StringTable
|
|
*/
|
|
CString *GetString(CString as);
|
|
|
|
private:
|
|
StringKey GenerateStringKey(const CString *string) const;
|
|
CString *FindOrInsertString(CString *string);
|
|
CString *FormatString(CString *string) const;
|
|
/*
|
|
* Free all memory
|
|
*/
|
|
void Clear();
|
|
const EcmaVM *vm_;
|
|
CVector<StringKey> orderedKey_; // Used for Serialize Order
|
|
size_t index_ {2}; // 2: Offset the String-Table Header
|
|
CUnorderedMap<StringKey, StringId> indexMap_;
|
|
CUnorderedMap<StringKey, CString *> hashmap_;
|
|
};
|
|
} // namespace panda::ecmascript
|
|
#endif // ECMASCRIPT_HPROF_STRING_HASHMAP_H
|