Searched refs:GetDataStart (Results 1 - 25 of 26) sorted by relevance

12

/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Expression/
H A DExpressionVariable.cpp29 return const_cast<uint8_t *>(m_frozen_sp->GetDataExtractor().GetDataStart());
H A DMaterializer.cpp568 m_original_data.reset(new DataBufferHeap(data.GetDataStart(), data.GetByteSize()));
578 map.WriteMemory(m_temporary_allocation, data.GetDataStart(), data.GetByteSize(), write_error);
647 !memcmp(m_original_data->GetBytes(), data.GetDataStart(), data.GetByteSize()))
1275 m_register_contents.reset(new DataBufferHeap(register_data.GetDataStart(), register_data.GetByteSize()));
1279 map.WriteMemory(load_addr, register_data.GetDataStart(), register_data.GetByteSize(), write_error);
1326 if (!memcmp(register_data.GetDataStart(), m_register_contents->GetBytes(), register_data.GetByteSize()))
1336 RegisterValue register_value (const_cast<uint8_t*>(register_data.GetDataStart()), register_data.GetByteSize(), register_data.GetByteOrder());
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/Process/elf-core/
H A DRegisterContextPOSIXCore_powerpc.cpp24 m_gpr_buffer.reset(new DataBufferHeap(gpregset.GetDataStart(), gpregset.GetByteSize()));
27 m_fpr_buffer.reset(new DataBufferHeap(fpregset.GetDataStart(), fpregset.GetByteSize()));
30 m_vec_buffer.reset(new DataBufferHeap(vregset.GetDataStart(), vregset.GetByteSize()));
H A DRegisterContextPOSIXCore_arm.cpp23 m_gpr_buffer.reset(new DataBufferHeap(gpregset.GetDataStart(), gpregset.GetByteSize()));
H A DRegisterContextPOSIXCore_arm64.cpp23 m_gpr_buffer.reset(new DataBufferHeap(gpregset.GetDataStart(), gpregset.GetByteSize()));
H A DRegisterContextPOSIXCore_mips64.cpp23 m_gpr_buffer.reset(new DataBufferHeap(gpregset.GetDataStart(), gpregset.GetByteSize()));
H A DProcessElfCore.cpp635 const uint8_t *start = m_auxv.GetDataStart();
/freebsd-11.0-release/contrib/llvm/tools/lldb/include/lldb/Core/
H A DDataEncoder.h183 GetDataStart () function in class:lldb_private::DataEncoder
189 GetDataStart () const function in class:lldb_private::DataEncoder
H A DDataExtractor.h587 GetDataStart () const function in class:lldb_private::DataExtractor
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Core/
H A DValueObjectConstResult.cpp91 DataBufferSP shared_data_buffer(new DataBufferHeap(data.GetDataStart(), data.GetByteSize()));
95 m_value.GetScalar() = (uintptr_t)m_data.GetDataStart();
H A DValueObjectRegister.cpp381 m_value.GetScalar() = (uintptr_t)m_data.GetDataStart();
H A DDataExtractor.cpp342 return SetData (data.GetDataStart() + data_offset, data_length, data.GetByteOrder());
2224 memcpy(bytes_ptr, GetDataStart(), GetByteSize());
2225 memcpy(bytes_ptr + GetByteSize(), rhs.GetDataStart(), rhs.GetByteSize());
2252 memcpy(bytes_ptr, GetDataStart(), GetByteSize());
2272 const llvm::ArrayRef<uint8_t> data(GetDataStart(),max_data);
H A DValueObject.cpp1145 data.GetDataStart(),
1165 const_cast<uint8_t *>(m_data.GetDataStart()),
1168 m_value.GetScalar() = (uintptr_t)m_data.GetDataStart();
1931 const_cast<uint8_t *>(m_data.GetDataStart()),
1935 m_value.GetScalar() = (uintptr_t)m_data.GetDataStart();
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/DataFormatters/
H A DStringPrinter.cpp280 if (data.GetByteSize() && data.GetDataStart() && data.GetDataEnd())
289 const SourceDataType *data_ptr = (const SourceDataType*)data.GetDataStart();
306 data_ptr = (const SourceDataType*)data.GetDataStart();
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/Process/gdb-remote/
H A DGDBRemoteRegisterContext.cpp232 if (response.GetHexBytes(const_cast<void *>(reinterpret_cast<const void *>(m_reg_data.GetDataStart())),
417 packet.PutBytesAsRawHex8 (m_reg_data.GetDataStart(),
635 memcpy (reg_ctx->GetBytes(), m_reg_data.GetDataStart(), m_reg_info.GetRegisterDataByteSize());
735 restore_data.SetData(restore_data.GetDataStart(), bytes_extracted, m_reg_data.GetByteOrder());
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Symbol/
H A DArmUnwindInfo.cpp444 return m_arm_extab_data.GetDataStart() + (data_file_addr - m_arm_extab_sp->GetFileAddress());
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/Disassembler/llvm/
H A DDisassemblerLLVMC.cpp79 const uint8_t *opcode_data = data.GetDataStart();
116 const uint8_t *opcode_data = data.GetDataStart();
324 const uint8_t *opcode_data = data.GetDataStart();
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFASTParserGo.cpp537 // form_value.BlockData() - debug_info_data.GetDataStart(),
711 uint32_t block_offset = form_value.BlockData() - debug_info_data.GetDataStart();
H A DDWARFDebugInfoEntry.cpp547 uint32_t block_offset = form_value.BlockData() - debug_info_data.GetDataStart();
H A DSymbolFileDWARF.cpp4079 uint32_t block_offset = form_value.BlockData() - debug_info_data.GetDataStart();
4124 uint32_t string_offset = str - (const char *)debug_info_data.GetDataStart();
4139 uint32_t block_offset = form_value.BlockData() - debug_info_data.GetDataStart();
H A DDWARFASTParserClang.cpp2639 uint32_t block_offset = form_value.BlockData() - debug_info_data.GetDataStart();
3065 uint32_t block_offset = form_value.BlockData() - debug_info_data.GetDataStart();
3216 // DWARFDataExtractor location(debug_info_data, form_value.BlockData() - debug_info_data.GetDataStart(), block_length);
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/Instruction/MIPS/
H A DEmulateInstructionMIPS.cpp699 llvm::ArrayRef<uint8_t> raw_insn (data.GetDataStart(), data.GetByteSize());
792 llvm::ArrayRef<uint8_t> raw_insn (data.GetDataStart(), data.GetByteSize());
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/ObjectFile/ELF/
H A DObjectFileELF.cpp603 segment_data.GetDataStart(),
784 gnu_debuglink_crc = calc_gnu_debuglink_crc32 (data.GetDataStart(), data.GetByteSize());
1062 m_gnu_debuglink_crc = calc_gnu_debuglink_crc32 (m_data.GetDataStart(), m_data.GetByteSize());
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionDeclMap.cpp1885 var_location = Value(const_value_extractor.GetDataStart(), const_value_extractor.GetByteSize());
/freebsd-11.0-release/contrib/llvm/tools/lldb/source/Plugins/Instruction/MIPS64/
H A DEmulateInstructionMIPS64.cpp662 llvm::ArrayRef<uint8_t> raw_insn (data.GetDataStart(), data.GetByteSize());

Completed in 316 milliseconds

12