gem5
v19.0.0.0
|
This object is a proxy for a port or other object which implements the functional response protocol, to be used for debug accesses. More...
#include <port_proxy.hh>
Public Types | |
typedef std::function< void(PacketPtr pkt)> | SendFunctionalFunc |
Public Member Functions | |
PortProxy (SendFunctionalFunc func, unsigned int cacheLineSize) | |
PortProxy (const MasterPort &port, unsigned int cacheLineSize) | |
virtual | ~PortProxy () |
void | readBlobPhys (Addr addr, Request::Flags flags, void *p, int size) const |
Fixed functionality for use in base classes. More... | |
void | writeBlobPhys (Addr addr, Request::Flags flags, const void *p, int size) const |
Write size bytes from p to physical address. More... | |
void | memsetBlobPhys (Addr addr, Request::Flags flags, uint8_t v, int size) const |
Fill size bytes starting at physical addr with byte value val. More... | |
virtual bool | tryReadBlob (Addr addr, void *p, int size) const |
Methods to override in base classes. More... | |
virtual bool | tryWriteBlob (Addr addr, const void *p, int size) const |
Write size bytes from p to address. More... | |
virtual bool | tryMemsetBlob (Addr addr, uint8_t val, int size) const |
Fill size bytes starting at addr with byte value val. More... | |
void | readBlob (Addr addr, void *p, int size) const |
Higher level interfaces based on the above. More... | |
void | writeBlob (Addr addr, const void *p, int size) const |
Same as tryWriteBlob, but insists on success. More... | |
void | memsetBlob (Addr addr, uint8_t v, int size) const |
Same as tryMemsetBlob, but insists on success. More... | |
template<typename T > | |
T | read (Addr address) const |
Read sizeof(T) bytes from address and return as object T. More... | |
template<typename T > | |
void | write (Addr address, const T &data) const |
Write object T to address. More... | |
template<typename T > | |
T | read (Addr address, ByteOrder guest_byte_order) const |
Read sizeof(T) bytes from address and return as object T. More... | |
template<typename T > | |
void | write (Addr address, T data, ByteOrder guest_byte_order) const |
Write object T to address. More... | |
bool | tryWriteString (Addr addr, const char *str) const |
Write the string str into guest memory at address addr. More... | |
void | writeString (Addr addr, const char *str) const |
Same as tryWriteString, but insists on success. More... | |
bool | tryReadString (std::string &str, Addr addr) const |
Reads the string at guest address addr into the std::string str. More... | |
void | readString (std::string &str, Addr addr) const |
Same as tryReadString, but insists on success. More... | |
bool | tryReadString (char *str, Addr addr, size_t maxlen) const |
Reads the string at guest address addr into the char * str, reading up to maxlen characters. More... | |
void | readString (char *str, Addr addr, size_t maxlen) const |
Same as tryReadString, but insists on success. More... | |
Private Member Functions | |
void | recvFunctionalSnoop (PacketPtr pkt) override |
Receive a functional snoop request packet from the peer. More... | |
![]() | |
void | send (FunctionalResponseProtocol *peer, PacketPtr pkt) const |
Send a functional request packet, where the data is instantly updated everywhere in the memory system, without affecting the current state of any block or moving the block. More... | |
Private Attributes | |
SendFunctionalFunc | sendFunctional |
const unsigned int | _cacheLineSize |
Granularity of any transactions issued through this proxy. More... | |
This object is a proxy for a port or other object which implements the functional response protocol, to be used for debug accesses.
This proxy object is used when non structural entities (e.g. thread contexts, object file loaders) need access to the memory system. It calls the corresponding functions on the underlying protocol, and provides templatized convenience access functions.
The addresses are interpreted as physical addresses.
Definition at line 82 of file port_proxy.hh.
typedef std::function<void(PacketPtr pkt)> PortProxy::SendFunctionalFunc |
Definition at line 85 of file port_proxy.hh.
|
inline |
Definition at line 102 of file port_proxy.hh.
|
inline |
Definition at line 105 of file port_proxy.hh.
References _cacheLineSize, and MasterPort::sendFunctional().
|
inlinevirtual |
Definition at line 110 of file port_proxy.hh.
References addr, memsetBlobPhys(), MipsISA::p, readBlobPhys(), ArmISA::v, and writeBlobPhys().
|
inline |
Same as tryMemsetBlob, but insists on success.
Definition at line 199 of file port_proxy.hh.
References data, fatal, read(), tryMemsetBlob(), tryWriteString(), and write().
Referenced by brkFunc(), Gicv3Its::moveAllPendingState(), and MemoryImage::writeSegment().
void PortProxy::memsetBlobPhys | ( | Addr | addr, |
Request::Flags | flags, | ||
uint8_t | v, | ||
int | size | ||
) | const |
Fill size bytes starting at physical addr with byte value val.
Definition at line 79 of file port_proxy.cc.
References writeBlobPhys().
Referenced by SecurePortProxy::tryMemsetBlob(), SETranslatingPortProxy::tryMemsetBlob(), FSTranslatingPortProxy::tryMemsetBlob(), tryMemsetBlob(), and ~PortProxy().
T PortProxy::read | ( | Addr | address | ) | const |
Read sizeof(T) bytes from address and return as object T.
Definition at line 284 of file port_proxy.hh.
References data, and readBlob().
Referenced by ArmSemihosting::call32(), ArmSemihosting::call64(), Linux::ThreadInfo::curTaskInfo(), Linux::ThreadInfo::curTaskMmFromTaskStruct(), Linux::ThreadInfo::curTaskPIDFromTaskStruct(), Linux::ThreadInfo::curTaskStartFromTaskStruct(), Linux::ThreadInfo::curTaskTGIDFromTaskStruct(), MipsISA::StackTrace::decodePrologue(), X86ISA::StackTrace::decodePrologue(), AlphaISA::StackTrace::decodePrologue(), dumpDmesgEntry(), AlphaSystem::fixFuncEventAddr(), Linux::ThreadInfo::get_data(), AlphaISA::getArgument(), SparcISA::getArgument(), ArmISA::getArgument(), AlphaISA::kernel_pte_lookup(), memsetBlob(), MipsISA::ProcessInfo::pid(), X86ISA::ProcessInfo::pid(), ArmISA::ProcessInfo::pid(), AlphaISA::ProcessInfo::pid(), AlphaISA::ProcessInfo::ProcessInfo(), X86ISA::LongModePTE::read(), ArmSemihosting::readString(), ArmISA::readSymbol(), X86ISA::readSymbol(), MipsISA::ProcessInfo::task(), X86ISA::ProcessInfo::task(), ArmISA::ProcessInfo::task(), AlphaISA::ProcessInfo::task(), and SparcISA::vtophys().
Read sizeof(T) bytes from address and return as object T.
Performs endianness conversion from the selected guest to host order.
Definition at line 300 of file port_proxy.hh.
References data, gtoh(), and readBlob().
|
inline |
Higher level interfaces based on the above.
Same as tryReadBlob, but insists on success.
Definition at line 179 of file port_proxy.hh.
References fatal, and tryReadBlob().
Referenced by BaseBufferArg::copyIn(), Linux::ThreadInfo::curThreadInfo(), TsunamiPChip::dmaAddr(), dumpDmesgEntry(), X86ISA::m5PageFault(), Gicv3Its::moveAllPendingState(), Arguments::operator T*(), VirtDescriptor::read(), read(), BaseRemoteGDB::read(), Gicv3Redistributor::readEntryLPI(), Trace::TarmacParserRecord::readMemNoEffect(), ArmSemihosting::readString(), readvFunc(), VPtr< T >::refresh(), Process::replicatePage(), DmaReadFifo::resumeFillFunctional(), VirtDescriptor::update(), Gicv3Redistributor::update(), PseudoInst::writefile(), and writevFunc().
void PortProxy::readBlobPhys | ( | Addr | addr, |
Request::Flags | flags, | ||
void * | p, | ||
int | size | ||
) | const |
Fixed functionality for use in base classes.
Read size bytes memory at physical address and store in p.
Definition at line 45 of file port_proxy.cc.
References _cacheLineSize, ChunkGenerator::done(), Request::funcMasterId, MipsISA::p, MemCmd::ReadReq, and sendFunctional.
Referenced by SecurePortProxy::tryReadBlob(), SETranslatingPortProxy::tryReadBlob(), FSTranslatingPortProxy::tryReadBlob(), tryReadBlob(), and ~PortProxy().
|
inline |
Same as tryReadString, but insists on success.
Definition at line 257 of file port_proxy.hh.
References fatal, and tryReadString().
Referenced by PseudoInst::addsymbol(), RiscvProcess::argsInit(), Linux::ThreadInfo::curTaskNameFromTaskStruct(), MipsISA::ProcessInfo::name(), X86ISA::ProcessInfo::name(), AlphaISA::ProcessInfo::name(), ArmISA::ProcessInfo::name(), Arguments::operator char *(), AnnotateDumpCallback::process(), and PseudoInst::writefile().
|
inline |
Same as tryReadString, but insists on success.
Definition at line 274 of file port_proxy.hh.
References fatal, and tryReadString().
|
inlineoverrideprivatevirtual |
Receive a functional snoop request packet from the peer.
Implements FunctionalRequestProtocol.
Definition at line 94 of file port_proxy.hh.
References panic.
|
inlinevirtual |
Fill size bytes starting at addr with byte value val.
Returns true on success and false on failure.
Reimplemented in FSTranslatingPortProxy, SETranslatingPortProxy, and SecurePortProxy.
Definition at line 165 of file port_proxy.hh.
References memsetBlobPhys().
Referenced by memsetBlob().
|
inlinevirtual |
Methods to override in base classes.
Read size bytes memory at address and store in p. Returns true on success and false on failure.
Reimplemented in FSTranslatingPortProxy, SETranslatingPortProxy, and SecurePortProxy.
Definition at line 143 of file port_proxy.hh.
References readBlobPhys().
Referenced by readBlob(), and tryReadString().
bool PortProxy::tryReadString | ( | std::string & | str, |
Addr | addr | ||
) | const |
Reads the string at guest address addr into the std::string str.
Returns true on success and false on failure.
Definition at line 102 of file port_proxy.cc.
References ArmISA::c, and tryReadBlob().
Referenced by accessFunc(), chdirFunc(), chmodFunc(), chownFunc(), execveFunc(), fstatat64Func(), lstat64Func(), lstatFunc(), mkdirFunc(), mknodFunc(), openatFunc(), readlinkFunc(), readString(), renameFunc(), rmdirFunc(), stat64Func(), statfsFunc(), statFunc(), truncate64Func(), truncateFunc(), unlinkFunc(), utimesFunc(), and writeString().
bool PortProxy::tryReadString | ( | char * | str, |
Addr | addr, | ||
size_t | maxlen | ||
) | const |
Reads the string at guest address addr into the char * str, reading up to maxlen characters.
The last character read is always a nul terminator. Returns true on success and false on failure.
Definition at line 115 of file port_proxy.cc.
References tryReadBlob().
|
inlinevirtual |
Write size bytes from p to address.
Returns true on success and false on failure.
Reimplemented in FSTranslatingPortProxy, SETranslatingPortProxy, and SecurePortProxy.
Definition at line 154 of file port_proxy.hh.
References writeBlobPhys().
Referenced by Sparc32Process::flushWindows(), Sparc64Process::flushWindows(), tryWriteString(), and writeBlob().
bool PortProxy::tryWriteString | ( | Addr | addr, |
const char * | str | ||
) | const |
Write the string str into guest memory at address addr.
Returns true on success and false on failure.
Definition at line 92 of file port_proxy.cc.
References tryWriteBlob().
Referenced by memsetBlob(), and writeString().
void PortProxy::write | ( | Addr | address, |
const T & | data | ||
) | const |
Write object T to address.
Writes sizeof(T) bytes.
Definition at line 293 of file port_proxy.hh.
References writeBlob().
Referenced by archPrctlFunc(), AlphaProcess::argsInit(), MipsProcess::argsInit(), RiscvProcess::argsInit(), PowerProcess::argsInit(), SparcProcess::argsInit(), ArmProcess::argsInit(), X86ISA::X86Process::argsInit(), FreebsdAlphaSystem::doCalibrateClocks(), AlphaSystem::initState(), LinuxAlphaSystem::initState(), X86ISA::I386Process::initState(), memsetBlob(), ArmSemihosting::readString(), ArmSemihosting::semiExit(), AlphaSystem::setAlphaAccess(), LinuxAlphaSystem::setDelayLoop(), and X86ISA::LongModePTE::write().
void PortProxy::write | ( | Addr | address, |
T | data, | ||
ByteOrder | guest_byte_order | ||
) | const |
Write object T to address.
Writes sizeof(T) bytes. Performs endianness conversion from host to the selected guest order.
Definition at line 309 of file port_proxy.hh.
References htog(), and writeBlob().
|
inline |
Same as tryWriteBlob, but insists on success.
Definition at line 189 of file port_proxy.hh.
References fatal, and tryWriteBlob().
Referenced by AlphaProcess::argsInit(), MipsProcess::argsInit(), RiscvProcess::argsInit(), PowerProcess::argsInit(), SparcProcess::argsInit(), ArmProcess::argsInit(), X86ISA::X86Process::argsInit(), Sparc32Process::argsInit(), Sparc64Process::argsInit(), BaseBufferArg::copyOut(), copyStringArray(), AlphaSystem::initState(), LinuxX86System::initState(), ArmLinuxProcess32::initState(), X86System::initState(), LinuxArmSystem::initState(), X86ISA::X86_64Process::initState(), LinuxAlphaSystem::initState(), X86ISA::I386Process::initState(), mmapFunc(), Gicv3Its::moveAllPendingState(), SimpleDisk::read(), PseudoInst::readfile(), ArmSemihosting::readString(), readvFunc(), Process::replicatePage(), setTLSFunc32(), timeFunc(), VirtDescriptor::write(), write(), BaseRemoteGDB::write(), Gicv3Redistributor::writeEntryLPI(), X86ISA::SMBios::SMBiosStructure::writeOut(), X86ISA::IntelMP::FloatingPointer::writeOut(), X86ISA::IntelMP::BaseConfigEntry::writeOut(), X86ISA::IntelMP::ExtConfigEntry::writeOut(), X86ISA::SMBios::BiosInformation::writeOut(), X86ISA::IntelMP::ConfigTable::writeOut(), X86ISA::IntelMP::Processor::writeOut(), X86ISA::SMBios::SMBiosTable::writeOut(), X86ISA::IntelMP::BusHierarchy::writeOut(), writeOutField(), writeOutString(), X86ISA::SMBios::SMBiosStructure::writeOutStrings(), MemoryImage::writeSegment(), X86ISA::E820Table::writeTo(), and writeVal().
void PortProxy::writeBlobPhys | ( | Addr | addr, |
Request::Flags | flags, | ||
const void * | p, | ||
int | size | ||
) | const |
Write size bytes from p to physical address.
Definition at line 62 of file port_proxy.cc.
References _cacheLineSize, ChunkGenerator::done(), Request::funcMasterId, MipsISA::p, sendFunctional, and MemCmd::WriteReq.
Referenced by memsetBlobPhys(), SecurePortProxy::tryWriteBlob(), SETranslatingPortProxy::tryWriteBlob(), FSTranslatingPortProxy::tryWriteBlob(), tryWriteBlob(), and ~PortProxy().
|
inline |
Same as tryWriteString, but insists on success.
Definition at line 241 of file port_proxy.hh.
References fatal, tryReadString(), and tryWriteString().
Referenced by RiscvProcess::argsInit(), PowerProcess::argsInit(), SparcProcess::argsInit(), ArmProcess::argsInit(), X86ISA::X86Process::argsInit(), and copyStringArray().
|
private |
Granularity of any transactions issued through this proxy.
Definition at line 91 of file port_proxy.hh.
Referenced by PortProxy(), readBlobPhys(), and writeBlobPhys().
|
private |
Definition at line 88 of file port_proxy.hh.
Referenced by readBlobPhys(), and writeBlobPhys().