Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/compiler/
Dfile_generators.cpp27 uint32_t stackmapSize = des.GetSecSize(ElfSecName::LLVM_STACKMAP); in CollectStackMapDes() local
28 std::unique_ptr<uint8_t[]> stackmapPtr(std::make_unique<uint8_t[]>(stackmapSize)); in CollectStackMapDes()
34 …if (memcpy_s(stackmapPtr.get(), stackmapSize, reinterpret_cast<void *>(addr), stackmapSize) != EOK… in CollectStackMapDes()
51 uint32_t stackmapSize = des.GetSecSize(ElfSecName::LLVM_STACKMAP); in CollectAnStackMapDes() local
52 std::unique_ptr<uint8_t[]> stackmapPtr(std::make_unique<uint8_t[]>(stackmapSize)); in CollectAnStackMapDes()
58 …if (memcpy_s(stackmapPtr.get(), stackmapSize, reinterpret_cast<void *>(addr), stackmapSize) != EOK… in CollectAnStackMapDes()
/arkcompiler/ets_runtime/ecmascript/stackmap/
Dllvm_stackmap_parser.cpp169 size_t stackmapSize = 0; in CalStackMapSize() local
174 stackmapSize += value.size(); in CalStackMapSize()
176 return stackmapSize; in CalStackMapSize()