Home
last modified time | relevance | path

Searched refs:getU8 (Results 1 – 25 of 44) sorted by relevance

12

/external/swiftshader/third_party/llvm-7.0/llvm/tools/obj2yaml/
Ddwarf2yaml.cpp95 NewEntry.Descriptor = PubSectionData.getU8(&Offset); in dumpPubSection()
259 DebugLines.MinInstLength = LineData.getU8(&Offset); in dumpDebugLines()
261 DebugLines.MaxOpsPerInst = LineData.getU8(&Offset); in dumpDebugLines()
262 DebugLines.DefaultIsStmt = LineData.getU8(&Offset); in dumpDebugLines()
263 DebugLines.LineBase = LineData.getU8(&Offset); in dumpDebugLines()
264 DebugLines.LineRange = LineData.getU8(&Offset); in dumpDebugLines()
265 DebugLines.OpcodeBase = LineData.getU8(&Offset); in dumpDebugLines()
269 DebugLines.StandardOpcodeLengths.push_back(LineData.getU8(&Offset)); in dumpDebugLines()
291 NewOp.Opcode = (dwarf::LineNumberOps)LineData.getU8(&Offset); in dumpDebugLines()
296 (dwarf::LineNumberExtendedOps)LineData.getU8(&Offset); in dumpDebugLines()
[all …]
/external/swiftshader/third_party/LLVM/lib/DebugInfo/
DDWARFDebugLine.cpp144 prologue->MinInstLength = debug_line_data.getU8(offset_ptr); in parsePrologue()
145 prologue->DefaultIsStmt = debug_line_data.getU8(offset_ptr); in parsePrologue()
146 prologue->LineBase = debug_line_data.getU8(offset_ptr); in parsePrologue()
147 prologue->LineRange = debug_line_data.getU8(offset_ptr); in parsePrologue()
148 prologue->OpcodeBase = debug_line_data.getU8(offset_ptr); in parsePrologue()
152 uint8_t op_len = debug_line_data.getU8(offset_ptr); in parsePrologue()
205 uint8_t opcode = debug_line_data.getU8(offset_ptr); in parseStatementTable()
214 uint8_t sub_opcode = debug_line_data.getU8(offset_ptr); in parseStatementTable()
DDWARFFormValue.cpp101 Value.uval = data.getU8(offset_ptr); in extractValue()
115 Value.uval = data.getU8(offset_ptr); in extractValue()
188 uint8_t size = debug_info_data.getU8(offset_ptr); in skipValue()
DDWARFDebugArangeSet.cpp72 Header.AddrSize = data.getU8(offset_ptr); in extract()
73 Header.SegSize = data.getU8(offset_ptr); in extract()
DDWARFCompileUnit.cpp35 AddrSize = debug_info.getU8(offset_ptr); in extract()
66 AddrSize = debug_info_data.getU8 (&offset); in extract()
/external/llvm/lib/DebugInfo/DWARF/
DDWARFDebugLine.cpp86 MinInstLength = debug_line_data.getU8(offset_ptr); in parse()
88 MaxOpsPerInst = debug_line_data.getU8(offset_ptr); in parse()
89 DefaultIsStmt = debug_line_data.getU8(offset_ptr); in parse()
90 LineBase = debug_line_data.getU8(offset_ptr); in parse()
91 LineRange = debug_line_data.getU8(offset_ptr); in parse()
92 OpcodeBase = debug_line_data.getU8(offset_ptr); in parse()
96 uint8_t op_len = debug_line_data.getU8(offset_ptr); in parse()
265 uint8_t opcode = debug_line_data.getU8(offset_ptr); in parse()
274 uint8_t sub_opcode = debug_line_data.getU8(offset_ptr); in parse()
DDWARFDebugFrame.cpp106 uint8_t Opcode = Data.getU8(Offset); in parseInstructions()
141 addInstruction(Opcode, Data.getU8(Offset)); in parseInstructions()
469 uint8_t c = Data.getU8(&Offset); in dumpDataAux()
552 uint8_t Version = Data.getU8(&Offset); in parse()
556 Data.getU8(&Offset); in parse()
558 uint8_t SegmentDescriptorSize = Version < 4 ? 0 : Data.getU8(&Offset); in parse()
581 LSDAPointerEncoding = Data.getU8(&Offset); in parse()
586 PersonalityEncoding = Data.getU8(&Offset); in parse()
591 FDEPointerEncoding = Data.getU8(&Offset); in parse()
DDWARFDebugArangeSet.cpp46 HeaderData.AddrSize = data.getU8(offset_ptr); in extract()
47 HeaderData.SegSize = data.getU8(offset_ptr); in extract()
DDWARFFormValue.cpp166 Value.uval = data.getU8(offset_ptr); in extractValue()
180 Value.uval = data.getU8(offset_ptr); in extractValue()
282 uint8_t size = debug_info_data.getU8(offset_ptr); in skipValue()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/DebugInfo/DWARF/
DDWARFDebugFrame.cpp40 uint8_t Opcode = Data.getU8(Offset); in parse()
81 addInstruction(Opcode, Data.getU8(Offset)); in parse()
336 uint8_t c = Data.getU8(&Offset); in dumpDataAux()
389 uint8_t Version = Data.getU8(&Offset); in parse()
393 Data.getU8(&Offset); in parse()
395 uint8_t SegmentDescriptorSize = Version < 4 ? 0 : Data.getU8(&Offset); in parse()
418 LSDAPointerEncoding = Data.getU8(&Offset); in parse()
424 PersonalityEncoding = Data.getU8(&Offset); in parse()
431 FDEPointerEncoding = Data.getU8(&Offset); in parse()
DDWARFDebugLine.cpp177 int FormatCount = DebugLineData.getU8(OffsetPtr); in parseV5EntryFormat()
210 int DirEntryCount = DebugLineData.getU8(OffsetPtr); in parseV5DirFileTables()
237 int FileEntryCount = DebugLineData.getU8(OffsetPtr); in parseV5DirFileTables()
318 FormParams.AddrSize = DebugLineData.getU8(OffsetPtr); in parse()
322 SegSelectorSize = DebugLineData.getU8(OffsetPtr); in parse()
327 MinInstLength = DebugLineData.getU8(OffsetPtr); in parse()
329 MaxOpsPerInst = DebugLineData.getU8(OffsetPtr); in parse()
330 DefaultIsStmt = DebugLineData.getU8(OffsetPtr); in parse()
331 LineBase = DebugLineData.getU8(OffsetPtr); in parse()
332 LineRange = DebugLineData.getU8(OffsetPtr); in parse()
[all …]
DDWARFDebugArangeSet.cpp56 HeaderData.AddrSize = data.getU8(offset_ptr); in extract()
57 HeaderData.SegSize = data.getU8(offset_ptr); in extract()
DDWARFListTable.cpp52 HeaderData.AddrSize = Data.getU8(OffsetPtr); in extract()
53 HeaderData.SegSize = Data.getU8(OffsetPtr); in extract()
DDWARFExpression.cpp117 Opcode = Data.getU8(&Offset); in extract()
134 Operands[Operand] = Data.getU8(&Offset); in extract()
250 OS << format(" 0x%02x", Expr->Data.getU8(&Offset)); in print()
267 OS << format(" %02x", Data.getU8(&FailOffset)); in print()
DDWARFDebugAddr.cpp74 HeaderData.AddrSize = Data.getU8(OffsetPtr); in extract()
75 HeaderData.SegSize = Data.getU8(OffsetPtr); in extract()
DDWARFFormValue.cpp96 uint8_t size = DebugInfoData.getU8(OffsetPtr); in skipValue()
234 Value.uval = Data.getU8(OffsetPtr); in extractValue()
250 Value.uval = Data.getU8(OffsetPtr); in extractValue()
DDWARFDebugPubTable.cpp39 uint8_t IndexEntryValue = GnuStyle ? PubNames.getU8(&Offset) : 0; in DWARFDebugPubTable()
/external/swiftshader/third_party/LLVM/lib/Support/
DDataExtractor.cpp50 uint8_t DataExtractor::getU8(uint32_t *offset_ptr) const { in getU8() function in DataExtractor
55 DataExtractor::getU8(uint32_t *offset_ptr, uint8_t *dst, uint32_t count) const { in getU8() function in DataExtractor
95 return getU8(offset_ptr); in getUnsigned()
110 return (int8_t)getU8(offset_ptr); in getSigned()
/external/llvm/lib/Support/
DDataExtractor.cpp50 uint8_t DataExtractor::getU8(uint32_t *offset_ptr) const { in getU8() function in DataExtractor
55 DataExtractor::getU8(uint32_t *offset_ptr, uint8_t *dst, uint32_t count) const { in getU8() function in DataExtractor
95 return getU8(offset_ptr); in getUnsigned()
110 return (int8_t)getU8(offset_ptr); in getSigned()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Support/
DDataExtractor.cpp50 uint8_t DataExtractor::getU8(uint32_t *offset_ptr) const { in getU8() function in DataExtractor
55 DataExtractor::getU8(uint32_t *offset_ptr, uint8_t *dst, uint32_t count) const { in getU8() function in DataExtractor
102 return getU8(offset_ptr); in getUnsigned()
117 return (int8_t)getU8(offset_ptr); in getSigned()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-readobj/
DDwarfCFIEHPrinter.h122 auto Version = DE.getU8(&Offset); in printEHFrameHdr()
127 uint64_t EHFramePtrEnc = DE.getU8(&Offset); in printEHFrameHdr()
132 uint64_t FDECountEnc = DE.getU8(&Offset); in printEHFrameHdr()
137 uint64_t TableEnc = DE.getU8(&Offset); in printEHFrameHdr()
/external/swiftshader/third_party/LLVM/include/llvm/Support/
DDataExtractor.h145 uint8_t getU8(uint32_t *offset_ptr) const;
170 uint8_t *getU8(uint32_t *offset_ptr, uint8_t *dst, uint32_t count) const;
/external/llvm/include/llvm/Support/
DDataExtractor.h147 uint8_t getU8(uint32_t *offset_ptr) const;
172 uint8_t *getU8(uint32_t *offset_ptr, uint8_t *dst, uint32_t count) const;
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/
DDataExtractor.h193 uint8_t getU8(uint32_t *offset_ptr) const;
218 uint8_t *getU8(uint32_t *offset_ptr, uint8_t *dst, uint32_t count) const;
/external/swiftshader/third_party/llvm-7.0/llvm/lib/XRay/
DInstrumentationMap.cpp103 auto Kind = Extractor.getU8(&OffsetPtr); in loadELF64()
113 Entry.AlwaysInstrument = Extractor.getU8(&OffsetPtr) != 0; in loadELF64()

12