HomeSort by: relevance | last modified time | path
    Searched refs:StackMapSection (Results 1 - 7 of 7) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/Object/
StackMapParser.h 307 StackMapParser(ArrayRef<uint8_t> StackMapSection)
308 : StackMapSection(StackMapSection) {
311 assert(StackMapSection[0] == 3 &&
320 RecordAccessor(&StackMapSection[CurrentRecordOffset]).getSizeInBytes();
325 static Error validateHeader(ArrayRef<uint8_t> StackMapSection) {
327 if (StackMapSection.size() < 16)
329 "the stack map section size (" + Twine(StackMapSection.size()) +
332 unsigned Version = StackMapSection[0];
350 return read<uint32_t>(&StackMapSection[NumFunctionsOffset])
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/MC/
MCObjectFileInfo.h 161 MCSection *StackMapSection = nullptr;
340 MCSection *getStackMapSection() const { return StackMapSection; }
  /src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
MachODumper.cpp 669 object::SectionRef StackMapSection;
678 StackMapSection = Sec;
683 if (StackMapSection == object::SectionRef())
687 unwrapOrError(Obj->getFileName(), StackMapSection.getContents());
COFFDumper.cpp 1913 SectionRef StackMapSection;
1922 StackMapSection = Sec;
1927 if (StackMapSection == SectionRef())
1931 unwrapOrError(Obj->getFileName(), StackMapSection.getContents());
ELFDumper.cpp 3107 const Elf_Shdr *StackMapSection = findSectionByName(".llvm_stackmaps");
3108 if (!StackMapSection)
3113 describe(*StackMapSection) + ": " +
3118 Obj.getSectionContents(*StackMapSection);
  /src/external/apache2/llvm/dist/llvm/lib/MC/
MCObjectFileInfo.cpp 292 StackMapSection = Ctx->getMachOSection("__LLVM_STACKMAPS", "__llvm_stackmaps",
491 StackMapSection =
782 StackMapSection = Ctx->getCOFFSection(".llvm_stackmaps",
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
StackMaps.cpp 722 MCSection *StackMapSection =
724 OS.SwitchSection(StackMapSection);

Completed in 28 milliseconds