Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Object/
H A DStackMapParser.h306 StackMapParser(ArrayRef<uint8_t> StackMapSection) in StackMapParser() argument
307 : StackMapSection(StackMapSection) { in StackMapParser()
310 assert(StackMapSection[0] == 3 && in StackMapParser()
326 if (StackMapSection.size() < 16) in validateHeader()
331 unsigned Version = StackMapSection[0]; in validateHeader()
359 return read<uint32_t>(&StackMapSection[NumRecordsOffset]); in getNumRecords()
364 return FunctionAccessor(StackMapSection.data() + in getFunction()
376 FunctionAccessor(StackMapSection.data() + in functions_end()
387 return ConstantAccessor(StackMapSection.data() + in getConstant()
399 ConstantAccessor(StackMapSection.data() + in constants_end()
[all …]
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCObjectFileInfo.h159 MCSection *StackMapSection = nullptr; variable
353 MCSection *getStackMapSection() const { return StackMapSection; } in getStackMapSection()
/freebsd-14.2/contrib/llvm-project/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.cpp2071 SectionRef StackMapSection; in printStackMap() local
2080 StackMapSection = Sec; in printStackMap()
2085 if (StackMapSection == SectionRef()) in printStackMap()
2089 unwrapOrError(Obj->getFileName(), StackMapSection.getContents()); in printStackMap()
H A DELFDumper.cpp3449 const Elf_Shdr *StackMapSection = findSectionByName(".llvm_stackmaps"); in printStackMap() local
3450 if (!StackMapSection) in printStackMap()
3455 describe(*StackMapSection) + ": " + in printStackMap()
3460 Obj.getSectionContents(*StackMapSection); in printStackMap()
/freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/
H A DStackMaps.cpp736 MCSection *StackMapSection = in serializeToStackMapSection() local
738 OS.switchSection(StackMapSection); in serializeToStackMapSection()
/freebsd-14.2/contrib/llvm-project/llvm/lib/MC/
H A DMCObjectFileInfo.cpp314 StackMapSection = Ctx->getMachOSection("__LLVM_STACKMAPS", "__llvm_stackmaps", in initMachOMCObjectFileInfo()
528 StackMapSection = in initELFMCObjectFileInfo()
837 StackMapSection = Ctx->getCOFFSection(".llvm_stackmaps", in initCOFFMCObjectFileInfo()