Home
last modified time | relevance | path

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

/external/llvm/include/llvm/Object/
DStackMapParser.h298 StackMapV1Parser(ArrayRef<uint8_t> StackMapSection) in StackMapV1Parser() argument
299 : StackMapSection(StackMapSection) { in StackMapV1Parser()
302 assert(StackMapSection[0] == 1 && in StackMapV1Parser()
311 RecordAccessor(&StackMapSection[CurrentRecordOffset]).getSizeInBytes(); in StackMapV1Parser()
324 return read<uint32_t>(&StackMapSection[NumFunctionsOffset]); in getNumFunctions()
329 return read<uint32_t>(&StackMapSection[NumConstantsOffset]); in getNumConstants()
334 return read<uint32_t>(&StackMapSection[NumRecordsOffset]); in getNumRecords()
339 return FunctionAccessor(StackMapSection.data() + in getFunction()
351 FunctionAccessor(StackMapSection.data() + in functions_end()
362 return ConstantAccessor(StackMapSection.data() + in getConstant()
[all …]
/external/llvm/include/llvm/MC/
DMCObjectFileInfo.h145 MCSection *StackMapSection; variable
280 MCSection *getStackMapSection() const { return StackMapSection; } in getStackMapSection()
/external/llvm/tools/llvm-readobj/
DMachODumper.cpp645 object::SectionRef StackMapSection; in printStackMap() local
650 StackMapSection = Sec; in printStackMap()
655 if (StackMapSection == object::SectionRef()) in printStackMap()
659 StackMapSection.getContents(StackMapContents); in printStackMap()
DCOFFDumper.cpp1152 object::SectionRef StackMapSection; in printStackMap() local
1157 StackMapSection = Sec; in printStackMap()
1162 if (StackMapSection == object::SectionRef()) in printStackMap()
1166 StackMapSection.getContents(StackMapContents); in printStackMap()
DELFDumper.cpp2148 const Elf_Shdr *StackMapSection = nullptr; in printStackMap() local
2152 StackMapSection = &Sec; in printStackMap()
2157 if (!StackMapSection) in printStackMap()
2162 Obj->getSectionContents(StackMapSection); in printStackMap()
/external/llvm/lib/MC/
DMCObjectFileInfo.cpp268 StackMapSection = Ctx->getMachOSection("__LLVM_STACKMAPS", "__llvm_stackmaps", in initMachOMCObjectFileInfo()
546 StackMapSection = in initELFMCObjectFileInfo()
778 StackMapSection = Ctx->getCOFFSection(".llvm_stackmaps", in initCOFFMCObjectFileInfo()
/external/llvm/lib/CodeGen/
DStackMaps.cpp534 MCSection *StackMapSection = in serializeToStackMapSection() local
536 OS.SwitchSection(StackMapSection); in serializeToStackMapSection()