MEM: Move all read/write blob functions from Port to PortProxy
authorAndreas Hansson <andreas.hansson@arm.com>
Fri, 24 Feb 2012 16:46:39 +0000 (11:46 -0500)
committerAndreas Hansson <andreas.hansson@arm.com>
Fri, 24 Feb 2012 16:46:39 +0000 (11:46 -0500)
commit485d103255c0f64ebf697650c899fe7a80db1d6d
tree3826b9e0a3d340a4318bb4900ded5742734824aa
parent9e3c8de30bafe33f35e4b9e82fb49418941f8cb7
MEM: Move all read/write blob functions from Port to PortProxy

This patch moves the readBlob/writeBlob/memsetBlob from the Port class
to the PortProxy class, thus making a clear separation of the basic
port functionality (recv/send functional/atomic/timing), and the
higher-level functional accessors available on the port proxies.

There are only a few places in the code base where the blob functions
were used on ports, and they are all for peeking into the memory
system without making a normal memory access (in the memtest, and the
malta and tsunami pchip). The memtest also exemplifies how easy it is
to create a non-translating proxy if desired. The malta and tsunami
pchip used a slave port to perform a functional read, and this is now
changed to rely on the physProxy of the system (to which they already
have a pointer).
src/cpu/testers/memtest/memtest.cc
src/cpu/testers/memtest/memtest.hh
src/dev/alpha/tsunami_pchip.cc
src/dev/mips/malta_pchip.cc
src/mem/SConscript
src/mem/port.cc
src/mem/port.hh
src/mem/port_proxy.cc [new file with mode: 0644]
src/mem/port_proxy.hh