Home
last modified time | relevance | path

Searched refs:stackMapAddr (Results 1 – 7 of 7) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/stackmap/
Dllvm_stackmap_parser.h35 bool PUBLIC_API CalculateStackMap(std::unique_ptr<uint8_t []> stackMapAddr);
36 bool PUBLIC_API CalculateStackMap(std::unique_ptr<uint8_t []> stackMapAddr,
Dllvm_stackmap_parser.cpp183 bool LLVMStackMapParser::CalculateStackMap(std::unique_ptr<uint8_t []> stackMapAddr) in CalculateStackMap() argument
185 if (!stackMapAddr) { in CalculateStackMap()
189 dataInfo_ = std::make_unique<DataInfo>(std::move(stackMapAddr)); in CalculateStackMap()
249 bool LLVMStackMapParser::CalculateStackMap(std::unique_ptr<uint8_t []> stackMapAddr, in CalculateStackMap() argument
252 bool ret = CalculateStackMap(std::move(stackMapAddr)); in CalculateStackMap()
Dark_stackmap_builder.h68 …::pair<std::shared_ptr<uint8_t>, uint32_t> PUBLIC_API Run(std::unique_ptr<uint8_t []> stackMapAddr,
72 void Collect(std::unique_ptr<uint8_t []> stackMapAddr,
Dark_stackmap_builder.cpp59 …d::shared_ptr<uint8_t>, uint32_t> ArkStackMapBuilder::Run(std::unique_ptr<uint8_t []> stackMapAddr, in Run() argument
64 auto result = parser.CalculateStackMap(std::move(stackMapAddr), hostCodeSectionAddr, 0); in Run()
74 std::unique_ptr<uint8_t []> stackMapAddr, in Collect()
81 …auto result = parser.CalculateStackMap(std::move(stackMapAddr), hostCodeSectionAddr, hostCodeSecti… in Collect()
/arkcompiler/ets_runtime/ecmascript/mem/
Dmachine_code.h39 uintptr_t stackMapAddr {0};
Dmachine_code.cpp69 if (memcpy_s(stackmapAddr, desc->stackMapSize, reinterpret_cast<uint8_t*>(desc->stackMapAddr), in SetData()
/arkcompiler/ets_runtime/ecmascript/compiler/
Dfile_generators.cpp632 machineCodeDesc->stackMapAddr = stackMapPtr; in GetMemoryCodeInfos()