summaryrefslogtreecommitdiff
path: root/src/mem/bus.hh
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2006-10-09 18:12:45 -0400
committerGabe Black <gblack@eecs.umich.edu>2006-10-09 18:12:45 -0400
commit187dcb18bfd87db63ad914d2ba04f0bd2dc0637d (patch)
tree90dcd17621c986448f2f24b1af5e95598c7784d6 /src/mem/bus.hh
parent2df9053bb0c158ae40f810b63be8ed0066465012 (diff)
downloadgem5-187dcb18bfd87db63ad914d2ba04f0bd2dc0637d.tar.xz
Potentially functional partially timed bandwidth limitted bus model.
src/mem/bus.cc: Fixes to the previous hand merging, and put the snooping back into recvTiming and out of it's own function. src/mem/bus.hh: Put snooping back into recvTiming and not in it's own function. --HG-- extra : convert_revision : fd031b7e6051a5be07ed6926454fde73b1739dc6
Diffstat (limited to 'src/mem/bus.hh')
-rw-r--r--src/mem/bus.hh9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/mem/bus.hh b/src/mem/bus.hh
index f8a006911..c9b0a76a0 100644
--- a/src/mem/bus.hh
+++ b/src/mem/bus.hh
@@ -97,15 +97,6 @@ class Bus : public MemObject
*/
Port *findPort(Addr addr, int id);
- /** Finds the port a packet should be sent to. If the bus is blocked, no port
- * is returned.
- * @param pkt Packet to find a destination port for.
- * @param id Id of the port this packet was received from
- * (to prevent loops)
- */
-
- Port *findDestPort(PacketPtr pkt, int id);
-
/** Find all ports with a matching snoop range, except src port. Keep in mind
* that the ranges shouldn't overlap or you will get a double snoop to the same
* interface.and the cache will assert out.