/external/llvm-project/llvm/include/llvm/Object/ |
D | StackMapParser.h | 305 StackMapParser(ArrayRef<uint8_t> StackMapSection) in StackMapParser() argument 306 : StackMapSection(StackMapSection) { in StackMapParser() 309 assert(StackMapSection[0] == 3 && in StackMapParser() 318 RecordAccessor(&StackMapSection[CurrentRecordOffset]).getSizeInBytes(); in StackMapParser() 323 static Error validateHeader(ArrayRef<uint8_t> StackMapSection) { in validateHeader() argument 325 if (StackMapSection.size() < 16) in validateHeader() 327 "the stack map section size (" + Twine(StackMapSection.size()) + in validateHeader() 330 unsigned Version = StackMapSection[0]; in validateHeader() 348 return read<uint32_t>(&StackMapSection[NumFunctionsOffset]); in getNumFunctions() 353 return read<uint32_t>(&StackMapSection[NumConstantsOffset]); in getNumConstants() [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Object/ |
D | StackMapParser.h | 304 StackMapParser(ArrayRef<uint8_t> StackMapSection) in StackMapParser() argument 305 : StackMapSection(StackMapSection) { in StackMapParser() 308 assert(StackMapSection[0] == 3 && in StackMapParser() 317 RecordAccessor(&StackMapSection[CurrentRecordOffset]).getSizeInBytes(); in StackMapParser() 330 return read<uint32_t>(&StackMapSection[NumFunctionsOffset]); in getNumFunctions() 335 return read<uint32_t>(&StackMapSection[NumConstantsOffset]); in getNumConstants() 340 return read<uint32_t>(&StackMapSection[NumRecordsOffset]); in getNumRecords() 345 return FunctionAccessor(StackMapSection.data() + in getFunction() 357 FunctionAccessor(StackMapSection.data() + in functions_end() 368 return ConstantAccessor(StackMapSection.data() + in getConstant() [all …]
|
/external/llvm/include/llvm/Object/ |
D | StackMapParser.h | 297 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/llvm/include/llvm/MC/ |
D | MCObjectFileInfo.h | 147 MCSection *StackMapSection; variable 285 MCSection *getStackMapSection() const { return StackMapSection; } in getStackMapSection()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/ |
D | MCObjectFileInfo.h | 159 MCSection *StackMapSection = nullptr; variable 328 MCSection *getStackMapSection() const { return StackMapSection; } in getStackMapSection()
|
/external/llvm-project/llvm/include/llvm/MC/ |
D | MCObjectFileInfo.h | 161 MCSection *StackMapSection = nullptr; variable 335 MCSection *getStackMapSection() const { return StackMapSection; } in getStackMapSection()
|
/external/llvm/tools/llvm-readobj/ |
D | MachODumper.cpp | 650 object::SectionRef StackMapSection; in printStackMap() local 655 StackMapSection = Sec; in printStackMap() 660 if (StackMapSection == object::SectionRef()) in printStackMap() 664 StackMapSection.getContents(StackMapContents); in printStackMap()
|
D | COFFDumper.cpp | 1505 object::SectionRef StackMapSection; in printStackMap() local 1510 StackMapSection = Sec; in printStackMap() 1515 if (StackMapSection == object::SectionRef()) in printStackMap() 1519 StackMapSection.getContents(StackMapContents); in printStackMap()
|
D | ELFDumper.cpp | 2338 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/llvm-project/llvm/tools/llvm-readobj/ |
D | MachODumper.cpp | 666 object::SectionRef StackMapSection; in printStackMap() local 675 StackMapSection = Sec; in printStackMap() 680 if (StackMapSection == object::SectionRef()) in printStackMap() 684 unwrapOrError(Obj->getFileName(), StackMapSection.getContents()); in printStackMap()
|
D | COFFDumper.cpp | 1895 SectionRef StackMapSection; in printStackMap() local 1904 StackMapSection = Sec; in printStackMap() 1909 if (StackMapSection == SectionRef()) in printStackMap() 1913 unwrapOrError(Obj->getFileName(), StackMapSection.getContents()); in printStackMap()
|
D | ELFDumper.cpp | 3422 const Elf_Shdr *StackMapSection = findSectionByName(".llvm_stackmaps"); in printStackMap() local 3423 if (!StackMapSection) in printStackMap() 3428 describe(*StackMapSection) + ": " + in printStackMap() 3433 Obj.getSectionContents(*StackMapSection); in printStackMap()
|
/external/llvm/lib/CodeGen/ |
D | StackMaps.cpp | 534 MCSection *StackMapSection = in serializeToStackMapSection() local 536 OS.SwitchSection(StackMapSection); in serializeToStackMapSection()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/ |
D | StackMaps.cpp | 562 MCSection *StackMapSection = in serializeToStackMapSection() local 564 OS.SwitchSection(StackMapSection); in serializeToStackMapSection()
|
/external/llvm/lib/MC/ |
D | MCObjectFileInfo.cpp | 277 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-10.0/llvm/lib/MC/ |
D | MCObjectFileInfo.cpp | 288 StackMapSection = Ctx->getMachOSection("__LLVM_STACKMAPS", "__llvm_stackmaps", in initMachOMCObjectFileInfo() 482 StackMapSection = in initELFMCObjectFileInfo() 739 StackMapSection = Ctx->getCOFFSection(".llvm_stackmaps", in initCOFFMCObjectFileInfo()
|
/external/llvm-project/llvm/lib/MC/ |
D | MCObjectFileInfo.cpp | 291 StackMapSection = Ctx->getMachOSection("__LLVM_STACKMAPS", "__llvm_stackmaps", in initMachOMCObjectFileInfo() 490 StackMapSection = in initELFMCObjectFileInfo() 772 StackMapSection = Ctx->getCOFFSection(".llvm_stackmaps", in initCOFFMCObjectFileInfo()
|
/external/llvm-project/llvm/lib/CodeGen/ |
D | StackMaps.cpp | 708 MCSection *StackMapSection = in serializeToStackMapSection() local 710 OS.SwitchSection(StackMapSection); in serializeToStackMapSection()
|