|
gem5
v19.0.0.0
|
#include <remote_gdb.hh>
Classes | |
| struct | M5_ATTR_PACKED |
Public Member Functions | |
| char * | data () const |
| Return the pointer to the raw bytes buffer containing the register values. More... | |
| size_t | size () const |
| Return the size of the raw buffer, in bytes (i.e., half of the number of digits in the g/G packet). More... | |
| void | getRegs (ThreadContext *) |
| Fill the raw buffer from the registers in the ThreadContext. More... | |
| void | setRegs (ThreadContext *) const |
| Set the ThreadContext's registers from the values in the raw buffer. More... | |
| const std::string | name () const |
| Return the name to use in places like DPRINTF. More... | |
Public Member Functions inherited from BaseGdbRegCache | |
| BaseGdbRegCache (BaseRemoteGDB *g) | |
| virtual | ~BaseGdbRegCache () |
Private Attributes | |
| struct X86ISA::RemoteGDB::AMD64GdbRegCache::M5_ATTR_PACKED | r |
Additional Inherited Members | |
Protected Attributes inherited from BaseGdbRegCache | |
| BaseRemoteGDB * | gdb |
Definition at line 95 of file remote_gdb.hh.
|
inlinevirtual |
Return the pointer to the raw bytes buffer containing the register values.
Each byte of this buffer is literally encoded as two hex digits in the g or G RSP packet.
Implements BaseGdbRegCache.
Definition at line 131 of file remote_gdb.hh.
References X86ISA::RemoteGDB::X86GdbRegCache::r.
|
virtual |
Fill the raw buffer from the registers in the ThreadContext.
Implements BaseGdbRegCache.
Definition at line 108 of file remote_gdb.cc.
References DPRINTF, ArmISA::INTREG_R10, ArmISA::INTREG_R11, ArmISA::INTREG_R12, ArmISA::INTREG_R13, ArmISA::INTREG_R14, ArmISA::INTREG_R15, ArmISA::INTREG_R8, ArmISA::INTREG_R9, X86ISA::MISCREG_CS, X86ISA::MISCREG_DS, X86ISA::MISCREG_ES, X86ISA::MISCREG_FS, X86ISA::MISCREG_GS, X86ISA::MISCREG_RFLAGS, X86ISA::MISCREG_SS, ThreadContext::pcState(), X86ISA::r, ThreadContext::readIntReg(), and ThreadContext::readMiscRegNoEffect().
|
inlinevirtual |
Return the name to use in places like DPRINTF.
Having each concrete superclass redefine this member is useful in situations where the class of the regCache can change on the fly.
Implements BaseGdbRegCache.
Definition at line 136 of file remote_gdb.hh.
References BaseGdbRegCache::gdb, and BaseRemoteGDB::name().
|
virtual |
Set the ThreadContext's registers from the values in the raw buffer.
Implements BaseGdbRegCache.
Definition at line 160 of file remote_gdb.cc.
References DPRINTF, ArmISA::INTREG_R10, ArmISA::INTREG_R11, ArmISA::INTREG_R12, ArmISA::INTREG_R13, ArmISA::INTREG_R14, ArmISA::INTREG_R15, ArmISA::INTREG_R8, ArmISA::INTREG_R9, X86ISA::MISCREG_CS, X86ISA::MISCREG_DS, X86ISA::MISCREG_ES, X86ISA::MISCREG_FS, X86ISA::MISCREG_GS, X86ISA::MISCREG_RFLAGS, X86ISA::MISCREG_SS, ThreadContext::pcState(), X86ISA::r, ThreadContext::readMiscRegNoEffect(), ThreadContext::setIntReg(), ThreadContext::setMiscReg(), and warn.
|
inlinevirtual |
Return the size of the raw buffer, in bytes (i.e., half of the number of digits in the g/G packet).
Implements BaseGdbRegCache.
Definition at line 132 of file remote_gdb.hh.
References X86ISA::RemoteGDB::X86GdbRegCache::getRegs(), X86ISA::RemoteGDB::X86GdbRegCache::r, and X86ISA::RemoteGDB::X86GdbRegCache::setRegs().
|
private |