Home
last modified time | relevance | path

Searched refs:SetUInt (Results 1 – 13 of 13) sorted by relevance

/llvm-project-15.0.7/lldb/source/Plugins/Process/elf-core/
H A DRegisterContextPOSIXCore_s390x.cpp62 value.SetUInt(v, reg_info->byte_size); in ReadRegister()
71 value.SetUInt(v, reg_info->byte_size); in ReadRegister()
/llvm-project-15.0.7/lldb/source/Plugins/Process/Utility/
H A DRegisterContextDummy.cpp93 value.SetUInt(LLDB_INVALID_ADDRESS, reg_info->byte_size); in ReadRegister()
H A DRegisterContextHistory.cpp94 value.SetUInt(m_pc_value, reg_info->byte_size); in ReadRegister()
/llvm-project-15.0.7/lldb/source/Utility/
H A DRegisterValue.cpp381 if (!SetUInt(uval64, reg_info->byte_size)) { in SetValueFromString()
410 if (!SetUInt(ival64, reg_info->byte_size)) { in SetValueFromString()
734 bool RegisterValue::SetUInt(uint64_t uint, uint32_t byte_size) { in SetUInt() function in RegisterValue
/llvm-project-15.0.7/lldb/source/Plugins/Process/Linux/
H A DNativeRegisterContextLinux.cpp142 value.SetUInt(static_cast<unsigned long>(data), size); in DoReadRegisterValue()
/llvm-project-15.0.7/lldb/source/Core/
H A DEmulateInstruction.cpp139 if (reg_value.SetUInt(uint_value, reg_info.byte_size)) in WriteRegisterUnsigned()
150 if (reg_value.SetUInt(uint_value, reg_info->byte_size)) in WriteRegisterUnsigned()
/llvm-project-15.0.7/lldb/include/lldb/Utility/
H A DRegisterValue.h215 bool SetUInt(uint64_t uint, uint32_t byte_size);
/llvm-project-15.0.7/lldb/source/Plugins/UnwindAssembly/InstEmulation/
H A DUnwindAssemblyInstEmulation.cpp100 cfa_reg_value.SetUInt(m_initial_sp, m_cfa_reg_info.byte_size); in GetNonCallSiteUnwindPlanFromAssembly()
377 reg_value.SetUInt(reg_id, reg_info.byte_size); in GetRegisterValue()
/llvm-project-15.0.7/lldb/source/Host/common/
H A DNativeRegisterContext.cpp237 if (!value.SetUInt(uval, reg_info->byte_size)) in WriteRegisterFromUnsigned()
/llvm-project-15.0.7/lldb/source/Target/
H A DRegisterContext.cpp215 if (value.SetUInt(uval, reg_info->byte_size)) in WriteRegisterFromUnsigned()
H A DRegisterContextUnwind.cpp1130 value.SetUInt(regloc.location.inferred_value, reg_info->byte_size); in ReadRegisterValueFromRegisterLocation()
/llvm-project-15.0.7/lldb/source/Plugins/Instruction/ARM/
H A DEmulationStateARM.cpp235 success = reg_value.SetUInt(reg_uval, reg_info->byte_size); in ReadPseudoRegister()
/llvm-project-15.0.7/lldb/source/Plugins/Process/Windows/Common/x64/
H A DRegisterContextWindows_x64.cpp351 reg_value.SetUInt##size(reg_val); \ in ReadRegister()