gem5 v24.0.0.0
|
#include <remote_gdb.hh>
Public Member Functions | |
char * | data () const |
Return the pointer to the raw bytes buffer containing the register values. | |
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). | |
void | getRegs (ThreadContext *) |
Fill the raw buffer from the registers in the ThreadContext. | |
void | setRegs (ThreadContext *) const |
Set the ThreadContext's registers from the values in the raw buffer. | |
const std::string | name () const |
Return the name to use in places like DPRINTF. | |
Public Member Functions inherited from gem5::BaseGdbRegCache | |
BaseGdbRegCache (BaseRemoteGDB *g) | |
virtual | ~BaseGdbRegCache () |
Private Member Functions | |
BaseGdbRegCache (BaseRemoteGDB *g) | |
Private Attributes | ||
struct { | ||
uint32_t gpr [32] | ||
uint32_t sr | ||
uint32_t lo | ||
uint32_t hi | ||
uint32_t badvaddr | ||
uint32_t cause | ||
uint32_t pc | ||
uint32_t fpr [32] | ||
uint32_t fsr | ||
uint32_t fir | ||
} | r | |
Additional Inherited Members | |
Protected Attributes inherited from gem5::BaseGdbRegCache | |
BaseRemoteGDB * | gdb |
Definition at line 51 of file remote_gdb.hh.
|
inlineprivate |
Definition at line 134 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 gem5::BaseGdbRegCache.
Definition at line 69 of file remote_gdb.hh.
References r.
|
virtual |
Fill the raw buffer from the registers in the ThreadContext.
Implements gem5::BaseGdbRegCache.
Definition at line 172 of file remote_gdb.cc.
References DPRINTF, gem5::X86ISA::floatRegClass, gem5::ThreadContext::getReg(), gem5::ArmISA::i, gem5::PCStateBase::instAddr(), gem5::ArmISA::intRegClass, gem5::ThreadContext::pcState(), and gem5::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 gem5::BaseGdbRegCache.
Definition at line 74 of file remote_gdb.hh.
References gem5::BaseGdbRegCache::gdb, and gem5::BaseRemoteGDB::name().
|
virtual |
Set the ThreadContext's registers from the values in the raw buffer.
Implements gem5::BaseGdbRegCache.
Definition at line 191 of file remote_gdb.cc.
References DPRINTF, gem5::X86ISA::floatRegClass, gem5::ArmISA::i, gem5::ArmISA::intRegClass, gem5::ThreadContext::pcState(), gem5::ThreadContext::setMiscRegNoEffect(), and gem5::ThreadContext::setReg().
|
inlinevirtual |
Return the size of the raw buffer, in bytes (i.e., half of the number of digits in the g/G packet).
Implements gem5::BaseGdbRegCache.
Definition at line 70 of file remote_gdb.hh.
References r.
uint32_t gem5::MipsISA::RemoteGDB::MipsGdbRegCache::badvaddr |
Definition at line 61 of file remote_gdb.hh.
uint32_t gem5::MipsISA::RemoteGDB::MipsGdbRegCache::cause |
Definition at line 62 of file remote_gdb.hh.
uint32_t gem5::MipsISA::RemoteGDB::MipsGdbRegCache::fir |
Definition at line 66 of file remote_gdb.hh.
uint32_t gem5::MipsISA::RemoteGDB::MipsGdbRegCache::fpr[32] |
Definition at line 64 of file remote_gdb.hh.
uint32_t gem5::MipsISA::RemoteGDB::MipsGdbRegCache::fsr |
Definition at line 65 of file remote_gdb.hh.
uint32_t gem5::MipsISA::RemoteGDB::MipsGdbRegCache::gpr[32] |
Definition at line 57 of file remote_gdb.hh.
uint32_t gem5::MipsISA::RemoteGDB::MipsGdbRegCache::hi |
Definition at line 60 of file remote_gdb.hh.
uint32_t gem5::MipsISA::RemoteGDB::MipsGdbRegCache::lo |
Definition at line 59 of file remote_gdb.hh.
uint32_t gem5::MipsISA::RemoteGDB::MipsGdbRegCache::pc |
Definition at line 63 of file remote_gdb.hh.
uint32_t gem5::MipsISA::RemoteGDB::MipsGdbRegCache::sr |
Definition at line 58 of file remote_gdb.hh.