Home
last modified time | relevance | path

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

/netbsd/external/apache2/llvm/dist/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 …]
/netbsd/external/apache2/llvm/dist/llvm/include/llvm/MC/
H A DMCObjectFileInfo.h161 MCSection *StackMapSection = nullptr; variable
340 MCSection *getStackMapSection() const { return StackMapSection; } in getStackMapSection()
/netbsd/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
H A DMachODumper.cpp669 object::SectionRef StackMapSection; in printStackMap() local
678 StackMapSection = Sec; in printStackMap()
683 if (StackMapSection == object::SectionRef()) in printStackMap()
687 unwrapOrError(Obj->getFileName(), StackMapSection.getContents()); in printStackMap()
H A DCOFFDumper.cpp1913 SectionRef StackMapSection; in printStackMap() local
1922 StackMapSection = Sec; in printStackMap()
1927 if (StackMapSection == SectionRef()) in printStackMap()
1931 unwrapOrError(Obj->getFileName(), StackMapSection.getContents()); in printStackMap()
H A DELFDumper.cpp3107 const Elf_Shdr *StackMapSection = findSectionByName(".llvm_stackmaps"); in printStackMap() local
3108 if (!StackMapSection) in printStackMap()
3113 describe(*StackMapSection) + ": " + in printStackMap()
3118 Obj.getSectionContents(*StackMapSection); in printStackMap()
/netbsd/external/apache2/llvm/dist/llvm/lib/MC/
H A DMCObjectFileInfo.cpp292 StackMapSection = Ctx->getMachOSection("__LLVM_STACKMAPS", "__llvm_stackmaps", in initMachOMCObjectFileInfo()
491 StackMapSection = in initELFMCObjectFileInfo()
782 StackMapSection = Ctx->getCOFFSection(".llvm_stackmaps", in initCOFFMCObjectFileInfo()
/netbsd/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DStackMaps.cpp722 MCSection *StackMapSection = in serializeToStackMapSection() local
724 OS.SwitchSection(StackMapSection); in serializeToStackMapSection()