Home
last modified time | relevance | path

Searched refs:stackmapSize (Results 1 – 2 of 2) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/compiler/
Dfile_generators.cpp36 uint32_t stackmapSize = des.GetSecSize(ElfSecName::LLVM_STACKMAP); in CollectStackMapDes() local
37 std::unique_ptr<uint8_t[]> stackmapPtr(std::make_unique<uint8_t[]>(stackmapSize)); in CollectStackMapDes()
43 …if (memcpy_s(stackmapPtr.get(), stackmapSize, reinterpret_cast<void *>(addr), stackmapSize) != EOK… in CollectStackMapDes()
65 uint32_t stackmapSize = des.GetSecSize(ElfSecName::LLVM_STACKMAP); in CollectAnStackMapDes() local
66 std::unique_ptr<uint8_t[]> stackmapPtr(std::make_unique<uint8_t[]>(stackmapSize)); in CollectAnStackMapDes()
72 …if (memcpy_s(stackmapPtr.get(), stackmapSize, reinterpret_cast<void *>(addr), stackmapSize) != EOK… in CollectAnStackMapDes()
/arkcompiler/ets_runtime/ecmascript/stackmap/
Dllvm_stackmap_parser.cpp239 size_t stackmapSize = 0; in CalStackMapSize() local
244 stackmapSize += value.size(); in CalStackMapSize()
246 return stackmapSize; in CalStackMapSize()