| /freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | DWARFDebugMacro.cpp | 28 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 D | DWARFFormValue.cpp | 50 m_value.uval = data.GetU8(offset_ptr); in ExtractValue() 88 m_value.uval = data.GetU8(offset_ptr); in ExtractValue() 220 uint8_t size = debug_info_data.GetU8(offset_ptr); in SkipValue()
|
| H A D | ManualDWARFIndexSet.cpp | 57 switch (data.GetU8(offset_ptr)) { in DecodeIndexSet()
|
| /freebsd/contrib/llvm-project/lldb/source/Symbol/ |
| H A D | DWARFCallFrameInfo.cpp | 302 cie_sp->version = m_cfi_data.GetU8(&offset); in ParseCIE() 311 cie_sp->augmentation[i] = m_cfi_data.GetU8(&offset); in ParseCIE() 333 cie_sp->address_size = m_cfi_data.GetU8(&offset); in ParseCIE() 334 cie_sp->segment_size = m_cfi_data.GetU8(&offset); in ParseCIE() 343 : m_cfi_data.GetU8(&offset); in ParseCIE() 369 cie_sp->lsda_addr_encoding = m_cfi_data.GetU8(&offset); in ParseCIE() 385 uint8_t arg_ptr_encoding = m_cfi_data.GetU8(&offset); in ParseCIE() 399 cie_sp->ptr_encoding = m_cfi_data.GetU8(&offset); in ParseCIE() 418 uint8_t inst = m_cfi_data.GetU8(&offset); in ParseCIE() 622 uint8_t inst = m_cfi_data.GetU8(&offset); in ParseFDE() [all …]
|
| H A D | Symtab.cpp | 1339 const uint8_t num_cstr_maps = data.GetU8(offset_ptr); in Decode() 1341 uint8_t type = data.GetU8(offset_ptr); in Decode()
|
| H A D | Symbol.cpp | 672 const bool is_addr = data.GetU8(offset_ptr) != 0; in Decode()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/ObjectFile/ELF/ |
| H A D | ELFHeader.cpp | 117 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 D | ObjectFileELF.cpp | 1291 uint8_t FormatVersion = data.GetU8(&Offset); in ParseARMAttributes() 1306 uint8_t Tag = data.GetU8(&Offset); in ParseARMAttributes() 1512 switch (data.GetU8(&offset)) { in GetSectionHeaderInfo()
|
| /freebsd/contrib/llvm-project/lldb/source/Expression/ |
| H A D | DWARFExpression.cpp | 377 uint8_t length = data.GetU8(&offset); in GetOpcodeDataSize() 408 const LocationAtom op = static_cast<LocationAtom>(m_data.GetU8(&offset)); in GetLocation_DW_OP_addr() 437 const LocationAtom op = static_cast<LocationAtom>(m_data.GetU8(&offset)); in Update_DW_OP_addr() 495 const LocationAtom op = static_cast<LocationAtom>(m_data.GetU8(&offset)); in ContainsThreadLocalStorage() 526 const LocationAtom op = static_cast<LocationAtom>(m_data.GetU8(&offset)); in LinkThreadLocalStorage() 1000 const uint8_t op = opcodes.GetU8(&offset); in Evaluate() 1105 uint8_t size = opcodes.GetU8(&offset); in Evaluate() 1272 stack.push_back(to_generic(opcodes.GetU8(&offset))); in Evaluate() 1275 stack.push_back(to_generic((int8_t)opcodes.GetU8(&offset))); in Evaluate() 1337 uint8_t pick_idx = opcodes.GetU8(&offset); in Evaluate() [all …]
|
| H A D | IRMemoryMap.cpp | 763 scalar = extractor.GetU8(&offset); in ReadScalarFromMemory()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/Process/elf-core/ |
| H A D | ThreadElfCore.cpp | 430 pr_state = data.GetU8(&offset); in Parse() 431 pr_sname = data.GetU8(&offset); in Parse() 432 pr_zomb = data.GetU8(&offset); in Parse() 433 pr_nice = data.GetU8(&offset); in Parse()
|
| /freebsd/contrib/llvm-project/lldb/source/Utility/ |
| H A D | DataExtractor.cpp | 317 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 D | DataExtractor.h | 610 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 D | DataFileCache.cpp | 240 while (uint8_t sig_encoding = data.GetU8(offset_ptr)) { in Decode() 243 const uint8_t length = data.GetU8(offset_ptr); in Decode()
|
| H A D | Mangled.cpp | 484 MangledEncoding encoding = (MangledEncoding)data.GetU8(offset_ptr); in Decode()
|
| H A D | DumpDataExtractor.cpp | 455 s->Printf("%2.2x", DE.GetU8(&offset)); in DumpDataExtractor()
|
| /freebsd/contrib/llvm-project/lldb/source/API/ |
| H A D | SBData.cpp | 185 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 D | ObjectFileJSON.cpp | 242 uint32_t magic = data.GetU8(&offset); in MagicBytesMatch()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/CTF/ |
| H A D | SymbolFileCTF.cpp | 111 ctf_header.preamble.version = m_data.GetU8(&offset); in ParseHeader() 112 ctf_header.preamble.flags = m_data.GetU8(&offset); in ParseHeader()
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/Disassembler/LLVMC/ |
| H A D | DisassemblerLLVMC.cpp | 469 m_opcode.SetOpcode8(data.GetU8(&data_offset), byte_order); in Decode() 643 const uint8_t uval8 = data.GetU8(&offset); in CalculateMnemonicOperandsAndComment()
|