packet: get rid of unused intersect() function.
authorSteve Reinhardt <stever@eecs.umich.edu>
Fri, 27 Jul 2007 19:46:55 +0000 (12:46 -0700)
committerSteve Reinhardt <stever@eecs.umich.edu>
Fri, 27 Jul 2007 19:46:55 +0000 (12:46 -0700)
--HG--
extra : convert_revision : f0a2947ccc49e0d18bc17a59371fa396d9ebd6c0

src/mem/packet.cc
src/mem/packet.hh

index 8cd3567684e9428f20bd1349d1b5bc282d1159ad..c7c6ec083ae6ac6ba5c70343e065d6ec65cda562 100644 (file)
@@ -152,18 +152,6 @@ Packet::allocate()
     data = new uint8_t[getSize()];
 }
 
-/** Do the packet modify the same addresses. */
-bool
-Packet::intersect(PacketPtr p)
-{
-    Addr s1 = getAddr();
-    Addr e1 = getAddr() + getSize() - 1;
-    Addr s2 = p->getAddr();
-    Addr e2 = p->getAddr() + p->getSize() - 1;
-
-    return !(s1 > e2 || e1 < s2);
-}
-
 
 bool
 Packet::checkFunctional(Addr addr, int size, uint8_t *data)
index c6534d6c9a054a82ff409a743b4986b05c2484bc..2b650a51e2e8d3d46bbcd906b58885cd9c570755 100644 (file)
@@ -564,9 +564,6 @@ class Packet : public FastAlloc
     /** If there isn't data in the packet, allocate some. */
     void allocate();
 
-    /** Do the packet modify the same addresses. */
-    bool intersect(PacketPtr p);
-
     /**
      * Check a functional request against a memory value represented
      * by a base/size pair and an associated data array.  If the