Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/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()
320 RecordAccessor(&StackMapSection[CurrentRecordOffset]).getSizeInBytes(); in StackMapParser()
325 static Error validateHeader(ArrayRef<uint8_t> StackMapSection) { in validateHeader() argument
327 if (StackMapSection.size() < 16) in validateHeader()
329 "the stack map section size (" + Twine(StackMapSection.size()) + in validateHeader()
332 unsigned Version = StackMapSection[0]; in validateHeader()
350 return read<uint32_t>(&StackMapSection[NumFunctionsOffset]); in getNumFunctions()
355 return read<uint32_t>(&StackMapSection[NumConstantsOffset]); in getNumConstants()
[all …]
/openbsd-src/gnu/llvm/llvm/include/llvm/MC/
H A DMCObjectFileInfo.h159 MCSection *StackMapSection = nullptr; variable
350 MCSection *getStackMapSection() const { return StackMapSection; } in getStackMapSection()
/openbsd-src/gnu/llvm/llvm/tools/llvm-readobj/
H A DMachODumper.cpp711 object::SectionRef StackMapSection; in printStackMap() local
720 StackMapSection = Sec; in printStackMap()
725 if (StackMapSection == object::SectionRef()) in printStackMap()
729 unwrapOrError(Obj->getFileName(), StackMapSection.getContents()); in printStackMap()
H A DCOFFDumper.cpp1982 SectionRef StackMapSection; in printStackMap() local
1991 StackMapSection = Sec; in printStackMap()
1996 if (StackMapSection == SectionRef()) in printStackMap()
2000 unwrapOrError(Obj->getFileName(), StackMapSection.getContents()); in printStackMap()
H A DELFDumper.cpp3210 const Elf_Shdr *StackMapSection = findSectionByName(".llvm_stackmaps"); in printStackMap() local
3211 if (!StackMapSection) in printStackMap()
3216 describe(*StackMapSection) + ": " + in printStackMap()
3221 Obj.getSectionContents(*StackMapSection); in printStackMap()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/
H A DStackMaps.cpp739 MCSection *StackMapSection = in serializeToStackMapSection() local
741 OS.switchSection(StackMapSection); in serializeToStackMapSection()
/openbsd-src/gnu/llvm/llvm/lib/MC/
H A DMCObjectFileInfo.cpp305 StackMapSection = Ctx->getMachOSection("__LLVM_STACKMAPS", "__llvm_stackmaps", in initMachOMCObjectFileInfo()
519 StackMapSection = in initELFMCObjectFileInfo()
821 StackMapSection = Ctx->getCOFFSection(".llvm_stackmaps", in initCOFFMCObjectFileInfo()