Deleted Added
sdiff udiff text old ( 5489:94a7bb476fca ) new ( 5494:85c8d296c1cb )
full compact
1/*
2 * Copyright (c) 2002-2005 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 25 unchanged lines hidden (view full) ---

34 */
35#include <cstring>
36
37#include "base/chunk_generator.hh"
38#include "base/trace.hh"
39#include "mem/mem_object.hh"
40#include "mem/port.hh"
41
42/**
43 * Special class for port objects that are used as peers for
44 * unconnected ports. Assigning instances of this class to newly
45 * allocated ports allows us to guarantee that every port has a peer
46 * object (so there's no need to check for null peer pointers), while
47 * catching uses of unconnected ports.
48 */
49class DefaultPeerPort : public Port
50{
51 protected:
52 void blowUp()
53 {
54 Port *peer = getPeer();
55 fatal("unconnected port: %s", peer ? peer->name() : "<unknown>");
56 }
57
58 public:
59 DefaultPeerPort(Port *_peer)
60 : Port("default_port", NULL, _peer)
61 { }
62
63 bool recvTiming(PacketPtr)
64 {
65 blowUp();
66 return false;
67 }
68

--- 22 unchanged lines hidden (view full) ---

91 void getDeviceAddressRanges(AddrRangeList &, bool &)
92 {
93 blowUp();
94 }
95
96 bool isDefaultPort() const { return true; }
97};
98
99
100Port::Port(const std::string &_name, MemObject *_owner, Port *_peer) :
101 portName(_name),
102 peer(_peer ? _peer : new DefaultPeerPort(this)),
103 owner(_owner)
104{
105}
106
107Port::~Port()
108{
109 disconnectFromPeer();
110}
111
112void
113Port::disconnectFromPeer()
114{
115 if (peer) {
116 assert(peer->getPeer() == this);
117 peer->disconnect();
118 }
119}
120
121void
122Port::disconnect()
123{
124 // This notification should come only from our peer, so we must
125 // have one,
126 assert(peer != NULL);
127 // We must clear 'peer' here, else if owner->deletePort() calls
128 // delete on us then we'll recurse infinitely through the Port
129 // destructor.
130 peer = NULL;
131 // If owner->deletePort() returns true, then we've been deleted,
132 // so don't do anything but get out of here. If not, reset peer
133 // pointer to a DefaultPeerPort.
134 if (!(owner && owner->deletePort(this)))
135 peer = new DefaultPeerPort(this);
136}
137
138void
139Port::setPeer(Port *port)
140{
141 DPRINTF(Config, "setting peer to %s, old peer %s\n",
142 port->name(), peer ? peer->name() : "<null>");
143
144 // You'd think we'd want to disconnect from the previous peer
145 // here, but it turns out that with some functional ports the old
146 // peer keeps using the connection, and it works because
147 // functional ports are unidirectional.
148 //
149 // disconnectFromPeer();
150
151 peer = port;
152}
153
154void
155Port::blobHelper(Addr addr, uint8_t *p, int size, MemCmd cmd)
156{
157 Request req;
158
159 for (ChunkGenerator gen(addr, size, peerBlockSize());

--- 44 unchanged lines hidden ---