Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/include/llvm/Object/
H A DStackMapParser.h307 StackMapParser(ArrayRef<uint8_t> StackMapSection) in StackMapParser() argument
308 : StackMapSection(StackMapSection) { in StackMapParser()
311 assert(StackMapSection[0] == 3 && in StackMapParser()
327 if (StackMapSection.size() < 16) in validateHeader()
332 unsigned Version = StackMapSection[0]; in validateHeader()
360 return read<uint32_t>(&StackMapSection[NumRecordsOffset]); in getNumRecords()
365 return FunctionAccessor(StackMapSection.data() + in getFunction()
377 FunctionAccessor(StackMapSection.data() + in functions_end()
388 return ConstantAccessor(StackMapSection.data() + in getConstant()
400 ConstantAccessor(StackMapSection.data() + in constants_end()
[all …]
/llvm-project-15.0.7/llvm/include/llvm/MC/
H A DMCObjectFileInfo.h162 MCSection *StackMapSection = nullptr; variable
354 MCSection *getStackMapSection() const { return StackMapSection; } in getStackMapSection()
/llvm-project-15.0.7/llvm/tools/llvm-readobj/
H A DMachODumper.cpp713 object::SectionRef StackMapSection; in printStackMap() local
722 StackMapSection = Sec; in printStackMap()
727 if (StackMapSection == object::SectionRef()) in printStackMap()
731 unwrapOrError(Obj->getFileName(), StackMapSection.getContents()); in printStackMap()
H A DCOFFDumper.cpp1917 SectionRef StackMapSection; in printStackMap() local
1926 StackMapSection = Sec; in printStackMap()
1931 if (StackMapSection == SectionRef()) in printStackMap()
1935 unwrapOrError(Obj->getFileName(), StackMapSection.getContents()); in printStackMap()
H A DELFDumper.cpp3205 const Elf_Shdr *StackMapSection = findSectionByName(".llvm_stackmaps"); in printStackMap() local
3206 if (!StackMapSection) in printStackMap()
3211 describe(*StackMapSection) + ": " + in printStackMap()
3216 Obj.getSectionContents(*StackMapSection); in printStackMap()
/llvm-project-15.0.7/llvm/lib/MC/
H A DMCObjectFileInfo.cpp309 StackMapSection = Ctx->getMachOSection("__LLVM_STACKMAPS", "__llvm_stackmaps", in initMachOMCObjectFileInfo()
520 StackMapSection = in initELFMCObjectFileInfo()
822 StackMapSection = Ctx->getCOFFSection(".llvm_stackmaps", in initCOFFMCObjectFileInfo()
/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DStackMaps.cpp722 MCSection *StackMapSection = in serializeToStackMapSection() local
724 OS.switchSection(StackMapSection); in serializeToStackMapSection()