Home
last modified time | relevance | path

Searched refs:addr_byte_size (Results 1 – 19 of 19) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBData.cpp78 void SBData::SetAddressByteSize(uint8_t addr_byte_size) { in SetAddressByteSize() argument
79 LLDB_INSTRUMENT_VA(this, addr_byte_size); in SetAddressByteSize()
82 m_opaque_sp->SetAddressByteSize(addr_byte_size); in SetAddressByteSize()
387 LLDB_INSTRUMENT_VA(endian, addr_byte_size, data); in CreateDataFromCString()
396 new DataExtractor(buffer_sp, endian, addr_byte_size)); in CreateDataFromCString()
407 LLDB_INSTRUMENT_VA(endian, addr_byte_size, array, array_len); in CreateDataFromUInt64Array()
416 new DataExtractor(buffer_sp, endian, addr_byte_size)); in CreateDataFromUInt64Array()
436 new DataExtractor(buffer_sp, endian, addr_byte_size)); in CreateDataFromUInt32Array()
456 new DataExtractor(buffer_sp, endian, addr_byte_size)); in CreateDataFromSInt64Array()
476 new DataExtractor(buffer_sp, endian, addr_byte_size)); in CreateDataFromSInt32Array()
[all …]
/freebsd/contrib/llvm-project/lldb/include/lldb/API/
H A DSBData.h32 void SetAddressByteSize(uint8_t addr_byte_size);
93 uint32_t addr_byte_size,
100 uint32_t addr_byte_size,
105 uint32_t addr_byte_size,
110 uint32_t addr_byte_size,
115 uint32_t addr_byte_size,
120 uint32_t addr_byte_size,
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionVariable.cpp27 uint32_t addr_byte_size) in ClangExpressionVariable() argument
31 ValueObjectConstResult::Create(exe_scope, byte_order, addr_byte_size); in ClangExpressionVariable()
52 uint32_t addr_byte_size) in ClangExpressionVariable() argument
56 ValueObjectConstResult::Create(exe_scope, byte_order, addr_byte_size); in ClangExpressionVariable()
H A DClangPersistentVariables.cpp43 uint32_t addr_byte_size) { in CreatePersistentVariable() argument
45 exe_scope, name, compiler_type, byte_order, addr_byte_size)); in CreatePersistentVariable()
H A DClangExpressionVariable.h67 lldb::ByteOrder byte_order, uint32_t addr_byte_size);
77 lldb::ByteOrder byte_order, uint32_t addr_byte_size);
H A DClangPersistentVariables.h54 uint32_t addr_byte_size) override;
/freebsd/contrib/llvm-project/lldb/source/Core/
H A DValueObjectConstResult.cpp31 uint32_t addr_byte_size, in Create() argument
35 addr_byte_size, address)) in Create()
42 uint32_t addr_byte_size, in ValueObjectConstResult() argument
48 m_data.SetAddressByteSize(addr_byte_size); in ValueObjectConstResult()
132 uint32_t addr_byte_size) { in Create() argument
136 addr_byte_size)) in Create()
143 AddressType address_type, uint32_t addr_byte_size) in ValueObjectConstResult() argument
147 m_data.SetAddressByteSize(addr_byte_size); in ValueObjectConstResult()
148 m_value.GetScalar().GetData(m_data, addr_byte_size); in ValueObjectConstResult()
/freebsd/contrib/llvm-project/lldb/include/lldb/Core/
H A DValueObjectConstResult.h40 uint32_t addr_byte_size, lldb::addr_t address = LLDB_INVALID_ADDRESS);
56 AddressType address_type, uint32_t addr_byte_size);
126 lldb::ByteOrder byte_order, uint32_t addr_byte_size,
145 uint32_t addr_byte_size);
H A DAddress.h259 uint32_t addr_byte_size = UINT32_MAX, bool all_ranges = false,
/freebsd/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM/
H A DEmulateInstructionARM.cpp986 addr += addr_byte_size; in EmulatePUSH()
1115 addr += addr_byte_size; in EmulatePOP()
2609 uint32_t reg_byte_size = single_regs ? addr_byte_size : addr_byte_size * 2; in EmulateVPUSH()
2701 uint32_t reg_byte_size = single_regs ? addr_byte_size : addr_byte_size * 2; in EmulateVPOP()
4005 offset += addr_byte_size; in EmulateLDM()
4097 Rn - (addr_byte_size * BitCount(registers)) + addr_byte_size; in EmulateLDMDA()
4118 offset += addr_byte_size; in EmulateLDMDA()
4254 offset += addr_byte_size; in EmulateLDMDB()
4366 offset += addr_byte_size; in EmulateLDMIB()
4684 offset += addr_byte_size; in EmulateSTM()
[all …]
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectTarget.cpp1971 result.GetOutputStream().SetAddressByteSize(addr_byte_size); in DoExecute()
1972 result.GetErrorStream().SetAddressByteSize(addr_byte_size); in DoExecute()
2076 result.GetOutputStream().SetAddressByteSize(addr_byte_size); in DoExecute()
2077 result.GetErrorStream().SetAddressByteSize(addr_byte_size); in DoExecute()
2171 result.GetOutputStream().SetAddressByteSize(addr_byte_size); in DoExecute()
2172 result.GetErrorStream().SetAddressByteSize(addr_byte_size); in DoExecute()
2385 result.GetErrorStream().SetAddressByteSize(addr_byte_size); in DoExecute()
2468 result.GetErrorStream().SetAddressByteSize(addr_byte_size); in DoExecute()
2609 result.GetErrorStream().SetAddressByteSize(addr_byte_size); in DoExecute()
3258 uint32_t addr_byte_size = in DoExecute() local
[all …]
H A DCommandObjectSource.cpp374 uint32_t addr_byte_size = target->GetArchitecture().GetAddressByteSize(); in DumpLinesInFunctions() local
427 addr += addr_byte_size) { in DumpLinesInFunctions()
546 uint32_t addr_byte_size = target->GetArchitecture().GetAddressByteSize(); in DoExecute() local
547 result.GetOutputStream().SetAddressByteSize(addr_byte_size); in DoExecute()
548 result.GetErrorStream().SetAddressByteSize(addr_byte_size); in DoExecute()
/freebsd/contrib/llvm-project/lldb/include/lldb/Expression/
H A DDWARFExpression.h78 uint8_t addr_byte_size);
H A DExpressionVariable.h221 uint32_t addr_byte_size) = 0;
/freebsd/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/CPlusPlus/ItaniumABI/
H A DItaniumABILanguageRuntime.cpp344 const uint32_t addr_byte_size = m_process->GetAddressByteSize(); in GetDynamicTypeAndAddress() local
346 vtable_load_addr - 2 * addr_byte_size; in GetDynamicTypeAndAddress()
353 offset_to_top_location, addr_byte_size, INT64_MIN, error); in GetDynamicTypeAndAddress()
/freebsd/contrib/llvm-project/lldb/source/Expression/
H A DDWARFExpression.cpp62 uint8_t addr_byte_size) { in UpdateValue() argument
69 m_data.SetAddressByteSize(addr_byte_size); in UpdateValue()
392 const uint32_t addr_byte_size = m_data.GetAddressByteSize(); in Update_DW_OP_addr() local
402 m_data.GetByteOrder(), addr_byte_size); in Update_DW_OP_addr()
463 const uint32_t addr_byte_size = m_data.GetAddressByteSize(); in LinkThreadLocalStorage() local
471 m_data.GetByteOrder(), addr_byte_size); in LinkThreadLocalStorage()
/freebsd/contrib/llvm-project/lldb/source/Plugins/UnwindAssembly/InstEmulation/
H A DUnwindAssemblyInstEmulation.cpp83 const uint32_t addr_byte_size = m_arch.GetAddressByteSize(); in GetNonCallSiteUnwindPlanFromAssembly() local
96 m_initial_sp = (1ull << ((addr_byte_size * 8) - 1)); in GetNonCallSiteUnwindPlanFromAssembly()
/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DArchSpec.cpp32 uint32_t addr_byte_size; member
700 return core_def->addr_byte_size; in GetAddressByteSize()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DProcess.cpp2112 const uint32_t addr_byte_size = GetAddressByteSize(); in WritePointerToMemory() local
2113 if (addr_byte_size <= 4) in WritePointerToMemory()
2117 return WriteScalarToMemory(vm_addr, scalar, addr_byte_size, error) == in WritePointerToMemory()
2118 addr_byte_size; in WritePointerToMemory()