diff options
author | Steve Reinhardt <stever@eecs.umich.edu> | 2006-02-21 11:27:53 -0500 |
---|---|---|
committer | Steve Reinhardt <stever@eecs.umich.edu> | 2006-02-21 11:27:53 -0500 |
commit | 8a753f6ae23d9f2c00be2230344d81e031b62b4c (patch) | |
tree | 6b534d0ace3f32b8bcb65cd13d821cde01bc11cf /mem/port.hh | |
parent | 00be4e8510f587603cf358d615d19d8bbf8ec57e (diff) | |
download | gem5-8a753f6ae23d9f2c00be2230344d81e031b62b4c.tar.xz |
Move read/writeBlob functions to Port class;
clean up implementation a little.
SConscript:
Add mem/port.cc
cpu/simple/cpu.cc:
cpu/simple/cpu.hh:
Move read/writeBlob functions to base Port class.
mem/port.hh:
Implement read/writeBlob functions.
No need for them to be virtual since the proxy
object (now called TranslatingPort) is not a
subclass of Port.
mem/port.cc:
Implement read/writeBlob functions.
--HG--
extra : convert_revision : a3660eaa43a7c286aca962f17fa32fbd42bf1fa6
Diffstat (limited to 'mem/port.hh')
-rw-r--r-- | mem/port.hh | 24 |
1 files changed, 11 insertions, 13 deletions
diff --git a/mem/port.hh b/mem/port.hh index 2d8be1905..d7a0faba2 100644 --- a/mem/port.hh +++ b/mem/port.hh @@ -173,29 +173,22 @@ class Port bool &owner) { peer->recvAddressRangesQuery(range_list, owner); } - // For the read/write blob functional - // This should be sufficient for everything except ProxyMemory - // which needs to slip a translation step in as well. (Unless it - // does the translation underneath sendFunctional(), in which case - // maybe this doesn't need to be virtual at all.) Do we need - // similar wrappers for sendAtomic()? If not, should we drop the - // "Functional" from the names? + // Do we need similar wrappers for sendAtomic()? If not, should + // we drop the "Functional" from the names? /** This function is a wrapper around sendFunctional() that breaks a larger, arbitrarily aligned access into appropriate chunks. The default implementation can use getBlockSize() to determine the block size and go from there. */ - virtual void readBlobFunctional(Addr addr, uint8_t *p, int size) - { panic("Unimplemented"); } + void readBlobFunctional(Addr addr, uint8_t *p, int size); /** This function is a wrapper around sendFunctional() that breaks a larger, arbitrarily aligned access into appropriate chunks. The default implementation can use getBlockSize() to determine the block size and go from there. */ - virtual void writeBlobFunctional(Addr addr, uint8_t *p, int size) - { panic("Unimplemented"); } + void writeBlobFunctional(Addr addr, uint8_t *p, int size); /** Fill size bytes starting at addr with byte value val. This should not need to be virtual, since it can be implemented in @@ -205,8 +198,13 @@ class Port prot_memset on the old functional memory that's never used), but Nate claims it is. */ - void memsetBlobFunctional(Addr addr, uint8_t val, int size) - { panic("Unimplemented"); } + void memsetBlobFunctional(Addr addr, uint8_t val, int size); + + private: + + /** Internal helper function for read/writeBlob(). + */ + void blobHelper(Addr addr, uint8_t *p, int size, Command cmd); }; #endif //__MEM_PORT_HH__ |