Home
last modified time | relevance | path

Searched refs:GetU8 (Results 1 – 21 of 21) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFDebugMacro.cpp28 uint8_t flags = debug_macro_data.GetU8(offset); in ParseHeader()
47 uint8_t entry_count = debug_macro_data.GetU8(offset); in SkipOperandTable()
50 debug_macro_data.GetU8(offset); in SkipOperandTable()
56 debug_macro_data.GetU8(offset); in SkipOperandTable()
67 static_cast<llvm::dwarf::MacroEntryType>(debug_macro_data.GetU8(offset)); in ReadMacroEntries()
126 debug_macro_data.GetU8(offset)); in ReadMacroEntries()
H A DDWARFDebugArangeSet.cpp62 m_header.addr_size = data.GetU8(offset_ptr); in extract()
63 m_header.seg_size = data.GetU8(offset_ptr); in extract()
H A DDWARFFormValue.cpp51 m_value.value.uval = data.GetU8(offset_ptr); in ExtractValue()
87 m_value.value.uval = data.GetU8(offset_ptr); in ExtractValue()
223 uint8_t size = debug_info_data.GetU8(offset_ptr); in SkipValue()
H A DManualDWARFIndex.cpp564 switch (data.GetU8(offset_ptr)) { in Decode()
/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DDWARFCallFrameInfo.cpp271 cie_sp->version = m_cfi_data.GetU8(&offset); in ParseCIE()
280 cie_sp->augmentation[i] = m_cfi_data.GetU8(&offset); in ParseCIE()
302 cie_sp->address_size = m_cfi_data.GetU8(&offset); in ParseCIE()
303 cie_sp->segment_size = m_cfi_data.GetU8(&offset); in ParseCIE()
312 : m_cfi_data.GetU8(&offset); in ParseCIE()
338 cie_sp->lsda_addr_encoding = m_cfi_data.GetU8(&offset); in ParseCIE()
354 uint8_t arg_ptr_encoding = m_cfi_data.GetU8(&offset); in ParseCIE()
368 cie_sp->ptr_encoding = m_cfi_data.GetU8(&offset); in ParseCIE()
387 uint8_t inst = m_cfi_data.GetU8(&offset); in ParseCIE()
638 uint8_t inst = m_cfi_data.GetU8(&offset); in FDEToUnwindPlan()
[all …]
H A DSymtab.cpp1340 const uint8_t num_cstr_maps = data.GetU8(offset_ptr); in Decode()
1342 uint8_t type = data.GetU8(offset_ptr); in Decode()
H A DSymbol.cpp670 const bool is_addr = data.GetU8(offset_ptr) != 0; in Decode()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/
H A DThreadElfCore.cpp368 pr_state = data.GetU8(&offset); in Parse()
369 pr_sname = data.GetU8(&offset); in Parse()
370 pr_zomb = data.GetU8(&offset); in Parse()
371 pr_nice = data.GetU8(&offset); in Parse()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/
H A DELFHeader.cpp117 if (data.GetU8(offset, &e_ident, EI_NIDENT) == nullptr) in Parse()
340 if (data.GetU8(offset, &st_info, 2) == nullptr) in Parse()
348 if (data.GetU8(offset, &st_info, 2) == nullptr) in Parse()
H A DObjectFileELF.cpp1315 uint8_t FormatVersion = data.GetU8(&Offset); in ParseARMAttributes()
1330 uint8_t Tag = data.GetU8(&Offset); in ParseARMAttributes()
1519 switch (data.GetU8(&offset)) { in GetSectionHeaderInfo()
/freebsd/contrib/llvm-project/lldb/source/Expression/
H A DDWARFExpression.cpp350 const uint8_t op = m_data.GetU8(&offset); in GetLocation_DW_OP_addr()
376 const uint8_t op = m_data.GetU8(&offset); in Update_DW_OP_addr()
434 const uint8_t op = m_data.GetU8(&offset); in ContainsThreadLocalStorage()
465 const uint8_t op = m_data.GetU8(&offset); in LinkThreadLocalStorage()
875 const uint8_t op = opcodes.GetU8(&offset); in Evaluate()
1040 uint8_t size = opcodes.GetU8(&offset); in Evaluate()
1207 stack.push_back(to_generic(opcodes.GetU8(&offset))); in Evaluate()
1210 stack.push_back(to_generic((int8_t)opcodes.GetU8(&offset))); in Evaluate()
1272 uint8_t pick_idx = opcodes.GetU8(&offset); in Evaluate()
2338 uint8_t opcode = opcodes.GetU8(&op_offset); in MatchesOperand()
H A DIRMemoryMap.cpp765 scalar = extractor.GetU8(&offset); in ReadScalarFromMemory()
/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DDataExtractor.cpp317 uint8_t DataExtractor::GetU8(offset_t *offset_ptr) const { in GetU8() function in DataExtractor
330 void *DataExtractor::GetU8(offset_t *offset_ptr, void *dst, in GetU8() function in DataExtractor
530 return GetU8(offset_ptr); in GetMaxU64()
930 sstr.Printf(" %2.2x", GetU8(&offset)); in PutToLog()
933 char ch = GetU8(&offset); in PutToLog()
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DDataExtractor.h610 uint8_t GetU8(lldb::offset_t *offset_ptr) const;
646 void *GetU8(lldb::offset_t *offset_ptr, void *dst, uint32_t count) const;
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DDataFileCache.cpp235 while (uint8_t sig_encoding = data.GetU8(offset_ptr)) { in Decode()
238 const uint8_t length = data.GetU8(offset_ptr); in Decode()
H A DMangled.cpp447 MangledEncoding encoding = (MangledEncoding)data.GetU8(offset_ptr); in Decode()
H A DDumpDataExtractor.cpp454 s->Printf("%2.2x", DE.GetU8(&offset)); in DumpDataExtractor()
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBData.cpp185 value = m_opaque_sp->GetU8(&offset); in GetUnsignedInt8()
339 ok = m_opaque_sp->GetU8(&offset, buf, size); in ReadRawData()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/JSON/
H A DObjectFileJSON.cpp199 uint32_t magic = data.GetU8(&offset); in MagicBytesMatch()
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/CTF/
H A DSymbolFileCTF.cpp110 ctf_header.preamble.version = m_data.GetU8(&offset); in ParseHeader()
111 ctf_header.preamble.flags = m_data.GetU8(&offset); in ParseHeader()
/freebsd/contrib/llvm-project/lldb/source/Plugins/Disassembler/LLVMC/
H A DDisassemblerLLVMC.cpp468 m_opcode.SetOpcode8(data.GetU8(&data_offset), byte_order); in Decode()
636 const uint8_t uval8 = data.GetU8(&offset); in CalculateMnemonicOperandsAndComment()