Lines Matching refs:stackmapAddr
44 void ArkStackMapParser::GetArkDeopt(uint8_t *stackmapAddr, uint32_t length, in GetArkDeopt() argument
47 BinaryBufferParser binBufparser(stackmapAddr, length); in GetArkDeopt()
48 ParseArkDeopt(callsiteHead, binBufparser, stackmapAddr, deopts); in GetArkDeopt()
51 void ArkStackMapParser::GetArkDeopt(uintptr_t callSiteAddr, uint8_t *stackmapAddr, in GetArkDeopt() argument
54 StackMapSecHead *head = reinterpret_cast<StackMapSecHead *>(stackmapAddr); in GetArkDeopt()
60 …CallsiteHead *callsiteHead = reinterpret_cast<CallsiteHead *>(stackmapAddr + sizeof(StackMapSecHea… in GetArkDeopt()
66 GetArkDeopt(stackmapAddr, length, *found, deopts); in GetArkDeopt()
69 void ArkStackMapParser::GetConstInfo(uintptr_t callSiteAddr, ConstInfo &info, uint8_t *stackmapAddr… in GetConstInfo()
72 GetArkDeopt(callSiteAddr, stackmapAddr, deopts); in GetConstInfo()
108 uintptr_t callSiteAddr, uintptr_t callsiteFp, uintptr_t callSiteSp, uint8_t *stackmapAddr) const in IteratorStackMap()
110 StackMapSecHead *head = reinterpret_cast<StackMapSecHead *>(stackmapAddr); in IteratorStackMap()
121 …CallsiteHead *callsiteHead = reinterpret_cast<CallsiteHead *>(stackmapAddr + sizeof(StackMapSecHea… in IteratorStackMap()
127 BinaryBufferParser binBufparser(stackmapAddr, length); in IteratorStackMap()
128 ParseArkStackMap(*found, binBufparser, stackmapAddr, arkStackMap); in IteratorStackMap()