MEM: Remove the Broadcast destination from the packet
authorAndreas Hansson <andreas.hansson@arm.com>
Sat, 14 Apr 2012 09:45:55 +0000 (05:45 -0400)
committerAndreas Hansson <andreas.hansson@arm.com>
Sat, 14 Apr 2012 09:45:55 +0000 (05:45 -0400)
commit750f33a90194f3f827ef887fb7e151235e61c919
tree0146b730df44c6be8a77ac6ab86795558e394d22
parentdccca0d3a9c985972d3d603190e62899d03825e8
MEM: Remove the Broadcast destination from the packet

This patch simplifies the packet by removing the broadcast flag and
instead more firmly relying on (and enforcing) the semantics of
transactions in the classic memory system, i.e. request packets are
routed from a master to a slave based on the address, and when they
are created they have neither a valid source, nor destination. On
their way to the slave, the request packet is updated with a source
field for all modules that multiplex packets from multiple master
(e.g. a bus). When a request packet is turned into a response packet
(at the final slave), it moves the potentially populated source field
to the destination field, and the response packet is routed through
any multiplexing components back to the master based on the
destination field.

Modules that connect multiplexing components, such as caches and
bridges store any existing source and destination field in the sender
state as a stack (just as before).

The packet constructor is simplified in that there is no longer a need
to pass the Packet::Broadcast as the destination (this was always the
case for the classic memory system). In the case of Ruby, rather than
using the parameter to the constructor we now rely on setDest, as
there is already another three-argument constructor in the packet
class.

In many places where the packet information was printed as part of
DPRINTFs, request packets would be printed with a numeric "dest" that
would always be -1 (Broadcast) and that field is now removed from the
printing.
32 files changed:
src/arch/arm/table_walker.cc
src/arch/x86/intmessage.hh
src/arch/x86/pagetable_walker.cc
src/cpu/checker/cpu.cc
src/cpu/checker/cpu_impl.hh
src/cpu/inorder/resources/cache_unit.cc
src/cpu/inorder/resources/cache_unit.hh
src/cpu/o3/fetch_impl.hh
src/cpu/o3/lsq_unit.hh
src/cpu/o3/lsq_unit_impl.hh
src/cpu/ozone/front_end_impl.hh
src/cpu/ozone/lw_lsq.hh
src/cpu/ozone/lw_lsq_impl.hh
src/cpu/simple/atomic.cc
src/cpu/simple/timing.cc
src/cpu/testers/directedtest/InvalidateGenerator.cc
src/cpu/testers/directedtest/SeriesRequestGenerator.cc
src/cpu/testers/memtest/memtest.cc
src/cpu/testers/networktest/networktest.cc
src/cpu/testers/rubytest/Check.cc
src/dev/io_device.cc
src/mem/bridge.cc
src/mem/bridge.hh
src/mem/bus.cc
src/mem/cache/cache_impl.hh
src/mem/cache/prefetch/base.cc
src/mem/cache/tags/iic.cc
src/mem/packet.hh
src/mem/port.cc
src/mem/port_proxy.cc
src/mem/ruby/recorder/CacheRecorder.cc
src/mem/ruby/system/RubyPort.cc