Home
last modified time | relevance | path

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

/external/llvm/include/llvm/Object/
DStackMapParser.h297 StackMapV1Parser(ArrayRef<uint8_t> StackMapSection) in StackMapV1Parser() argument
298 : StackMapSection(StackMapSection) { in StackMapV1Parser()
301 assert(StackMapSection[0] == 1 && in StackMapV1Parser()
310 RecordAccessor(&StackMapSection[CurrentRecordOffset]).getSizeInBytes(); in StackMapV1Parser()
323 return read<uint32_t>(&StackMapSection[NumFunctionsOffset]); in getNumFunctions()
328 return read<uint32_t>(&StackMapSection[NumConstantsOffset]); in getNumConstants()
333 return read<uint32_t>(&StackMapSection[NumRecordsOffset]); in getNumRecords()
338 return FunctionAccessor(StackMapSection.data() + in getFunction()
350 FunctionAccessor(StackMapSection.data() + in functions_end()
361 return ConstantAccessor(StackMapSection.data() + in getConstant()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Object/
DStackMapParser.h296 StackMapV2Parser(ArrayRef<uint8_t> StackMapSection) in StackMapV2Parser() argument
297 : StackMapSection(StackMapSection) { in StackMapV2Parser()
300 assert(StackMapSection[0] == 2 && in StackMapV2Parser()
309 RecordAccessor(&StackMapSection[CurrentRecordOffset]).getSizeInBytes(); 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()
[all …]
/external/llvm/include/llvm/MC/
DMCObjectFileInfo.h147 MCSection *StackMapSection; variable
285 MCSection *getStackMapSection() const { return StackMapSection; } in getStackMapSection()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/MC/
DMCObjectFileInfo.h156 MCSection *StackMapSection; variable
311 MCSection *getStackMapSection() const { return StackMapSection; } in getStackMapSection()
/external/llvm/tools/llvm-readobj/
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()
DCOFFDumper.cpp1505 object::SectionRef StackMapSection; in printStackMap() local
1510 StackMapSection = Sec; in printStackMap()
1515 if (StackMapSection == object::SectionRef()) in printStackMap()
1519 StackMapSection.getContents(StackMapContents); in printStackMap()
DELFDumper.cpp2338 const Elf_Shdr *StackMapSection = nullptr; in printStackMap() local
2342 StackMapSection = &Sec; in printStackMap()
2347 if (!StackMapSection) in printStackMap()
2352 unwrapOrError(Obj->getSectionContents(StackMapSection)); in printStackMap()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-readobj/
DMachODumper.cpp652 object::SectionRef StackMapSection; in printStackMap() local
657 StackMapSection = Sec; in printStackMap()
662 if (StackMapSection == object::SectionRef()) in printStackMap()
666 StackMapSection.getContents(StackMapContents); in printStackMap()
DCOFFDumper.cpp1806 object::SectionRef StackMapSection; in printStackMap() local
1811 StackMapSection = Sec; in printStackMap()
1816 if (StackMapSection == object::SectionRef()) in printStackMap()
1820 StackMapSection.getContents(StackMapContents); in printStackMap()
DELFDumper.cpp2425 const Elf_Shdr *StackMapSection = nullptr; in printStackMap() local
2429 StackMapSection = &Sec; in printStackMap()
2434 if (!StackMapSection) in printStackMap()
2438 unwrapOrError(Obj->getSectionContents(StackMapSection)); in printStackMap()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
DStackMaps.cpp564 MCSection *StackMapSection = in serializeToStackMapSection() local
566 OS.SwitchSection(StackMapSection); in serializeToStackMapSection()
/external/llvm/lib/CodeGen/
DStackMaps.cpp534 MCSection *StackMapSection = in serializeToStackMapSection() local
536 OS.SwitchSection(StackMapSection); in serializeToStackMapSection()
/external/llvm/lib/MC/
DMCObjectFileInfo.cpp277 StackMapSection = Ctx->getMachOSection("__LLVM_STACKMAPS", "__llvm_stackmaps", in initMachOMCObjectFileInfo()
582 StackMapSection = in initELFMCObjectFileInfo()
827 StackMapSection = Ctx->getCOFFSection(".llvm_stackmaps", in initCOFFMCObjectFileInfo()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/MC/
DMCObjectFileInfo.cpp285 StackMapSection = Ctx->getMachOSection("__LLVM_STACKMAPS", "__llvm_stackmaps", in initMachOMCObjectFileInfo()
611 StackMapSection = in initELFMCObjectFileInfo()
862 StackMapSection = Ctx->getCOFFSection(".llvm_stackmaps", in initCOFFMCObjectFileInfo()