Home
last modified time | relevance | path

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

/freebsd-12.1/contrib/llvm/include/llvm/Object/
H A DStackMapParser.h296 StackMapV2Parser(ArrayRef<uint8_t> StackMapSection) in StackMapV2Parser() argument
297 : StackMapSection(StackMapSection) { in StackMapV2Parser()
300 assert(StackMapSection[0] == 2 && in StackMapV2Parser()
322 return read<uint32_t>(&StackMapSection[NumFunctionsOffset]); in getNumFunctions()
327 return read<uint32_t>(&StackMapSection[NumConstantsOffset]); in getNumConstants()
332 return read<uint32_t>(&StackMapSection[NumRecordsOffset]); in getNumRecords()
337 return FunctionAccessor(StackMapSection.data() + in getFunction()
349 FunctionAccessor(StackMapSection.data() + in functions_end()
360 return ConstantAccessor(StackMapSection.data() + in getConstant()
372 ConstantAccessor(StackMapSection.data() + in constants_end()
[all …]
/freebsd-12.1/contrib/llvm/include/llvm/MC/
H A DMCObjectFileInfo.h158 MCSection *StackMapSection; variable
316 MCSection *getStackMapSection() const { return StackMapSection; } in getStackMapSection()
/freebsd-12.1/contrib/llvm/tools/llvm-readobj/
H A DMachODumper.cpp650 object::SectionRef StackMapSection; in printStackMap() local
655 StackMapSection = Sec; in printStackMap()
660 if (StackMapSection == object::SectionRef()) in printStackMap()
664 StackMapSection.getContents(StackMapContents); in printStackMap()
H A DCOFFDumper.cpp1838 object::SectionRef StackMapSection; in printStackMap() local
1843 StackMapSection = Sec; in printStackMap()
1848 if (StackMapSection == object::SectionRef()) in printStackMap()
1852 StackMapSection.getContents(StackMapContents); in printStackMap()
H A DELFDumper.cpp2473 const Elf_Shdr *StackMapSection = nullptr; in printStackMap() local
2477 StackMapSection = &Sec; in printStackMap()
2482 if (!StackMapSection) in printStackMap()
2486 unwrapOrError(Obj->getSectionContents(StackMapSection)); in printStackMap()
/freebsd-12.1/contrib/llvm/lib/MC/
H A DMCObjectFileInfo.cpp288 StackMapSection = Ctx->getMachOSection("__LLVM_STACKMAPS", "__llvm_stackmaps", in initMachOMCObjectFileInfo()
469 StackMapSection = in initELFMCObjectFileInfo()
716 StackMapSection = Ctx->getCOFFSection(".llvm_stackmaps", in initCOFFMCObjectFileInfo()
/freebsd-12.1/contrib/llvm/lib/CodeGen/
H A DStackMaps.cpp563 MCSection *StackMapSection = in serializeToStackMapSection() local
565 OS.SwitchSection(StackMapSection); in serializeToStackMapSection()