Home
last modified time | relevance | path

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

/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()
319 RecordAccessor(&StackMapSection[CurrentRecordOffset]).getSizeInBytes(); in StackMapParser()
324 static Error validateHeader(ArrayRef<uint8_t> StackMapSection) { in validateHeader() argument
326 if (StackMapSection.size() < 16) in validateHeader()
328 "the stack map section size (" + Twine(StackMapSection.size()) + in validateHeader()
331 unsigned Version = StackMapSection[0]; in validateHeader()
349 return read<uint32_t>(&StackMapSection[NumFunctionsOffset]); in getNumFunctions()
354 return read<uint32_t>(&StackMapSection[NumConstantsOffset]); in getNumConstants()
[all …]
/llvm-project/llvm/include/llvm/MC/
H A DMCObjectFileInfo.h163 MCSection *StackMapSection = nullptr;
359 MCSection *getStackMapSection() const { return StackMapSection; }
159 MCSection *StackMapSection = nullptr; global() variable
/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.cpp2117 SectionRef StackMapSection; in printAddrsig()
2126 StackMapSection = Sec; in printAddrsig()
2131 if (StackMapSection == SectionRef()) in printAddrsig()
2135 unwrapOrError(Obj->getFileName(), StackMapSection.getContents()); in printAddrsig()
2074 SectionRef StackMapSection; printStackMap() local
H A DELFDumper.cpp3438 const Elf_Shdr *StackMapSection = findSectionByName(".llvm_stackmaps"); in printStackMap()
3439 if (!StackMapSection) in printStackMap()
3444 describe(*StackMapSection) + ": " + in printStackMap()
3449 Obj.getSectionContents(*StackMapSection); in printStackMap()
3425 const Elf_Shdr *StackMapSection = findSectionByName(".llvm_stackmaps"); printStackMap() local
/llvm-project/llvm/lib/MC/
H A DMCObjectFileInfo.cpp314 StackMapSection = Ctx->getMachOSection("__LLVM_STACKMAPS", "__llvm_stackmaps", in initMachOMCObjectFileInfo()
530 StackMapSection = in initELFMCObjectFileInfo()
792 StackMapSection = Ctx->getCOFFSection(".llvm_stackmaps", in initSPIRVMCObjectFileInfo()
/llvm-project/llvm/lib/CodeGen/
H A DStackMaps.cpp729 MCSection *StackMapSection = in serializeToStackMapSection()
731 OS.switchSection(StackMapSection); in serializeToStackMapSection()
736 MCSection *StackMapSection = serializeToStackMapSection() local