Home
last modified time | relevance | path

Searched defs:RegisterValue (Results 1 – 7 of 7) sorted by relevance

/llvm-project/lldb/include/lldb/Utility/
H A DRegisterValue.h56 RegisterValue() : m_scalar(static_cast<unsigned long>(0)) {} in RegisterValue() function
58 explicit RegisterValue(uint8_t inst) : m_type(eTypeUInt8) { m_scalar = inst; } in RegisterValue() function
60 explicit RegisterValue(uint16_t inst) : m_type(eTypeUInt16) { in RegisterValue() function
64 explicit RegisterValue(uint32_t inst) : m_type(eTypeUInt32) { in RegisterValue() function
68 explicit RegisterValue(uint64_t inst) : m_type(eTypeUInt64) { in RegisterValue() function
72 explicit RegisterValue(llvm::APInt inst) : m_type(eTypeUInt128) { in RegisterValue() function
76 explicit RegisterValue(float value) : m_type(eTypeFloat) { m_scalar = value; } in RegisterValue() function
78 explicit RegisterValue(double value) : m_type(eTypeDouble) { in RegisterValue() function
82 explicit RegisterValue(long double value) : m_type(eTypeLongDouble) { in RegisterValue() function
86 explicit RegisterValue(llvm::ArrayRef<uint8_t> bytes, in RegisterValue() function
/llvm-project/llvm/tools/llvm-exegesis/lib/
H A DRegisterValue.h27 struct RegisterValue { in zero() argument
28 static RegisterValue zero(MCRegister Reg) { return {Reg, APInt()}; } argument
26 struct RegisterValue { global() struct
29 ValueRegisterValue global() argument
/llvm-project/lldb/include/lldb/Core/
H A DDumpRegisterValue.h19 class RegisterValue; variable
H A DEmulateInstruction.h31 class RegisterValue; variable
[all...]
/llvm-project/lldb/source/Plugins/Process/minidump/
H A DRegisterContextMinidump_ARM.cpp539 const RegisterValue &) { in WriteRegister()
H A DRegisterContextMinidump_ARM64.cpp822 const RegisterValue &) { in WriteRegister()
/llvm-project/lldb/include/lldb/
H A Dlldb-forward.h182 class RegisterValue; global() variable