Deleted Added
sdiff udiff text old ( 10713:eddb533708cb ) new ( 10719:b4fc9ad648aa )
full compact
1/*
2 * Copyright (c) 2011-2015 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

304 Layer(_port, _xbar, _name) {}
305
306 protected:
307
308 void sendRetry(SlavePort* retry_port)
309 { retry_port->sendRetrySnoopResp(); }
310 };
311
312 /** cycles of overhead per transaction */
313 const Cycles headerCycles;
314 /** the width of the xbar in bytes */
315 const uint32_t width;
316
317 AddrRangeMap<PortID> portMap;
318
319 /**
320 * Remember where request packets came from so that we can route
321 * responses to the appropriate port. This relies on the fact that

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

399 */
400 AddrRangeList getAddrRanges() const;
401
402 /**
403 * Calculate the timing parameters for the packet. Updates the
404 * headerDelay and payloadDelay fields of the packet
405 * object with the relative number of ticks required to transmit
406 * the header and the payload, respectively.
407 */
408 void calcPacketTiming(PacketPtr pkt);
409
410 /**
411 * Remember for each of the master ports of the crossbar if we got
412 * an address range from the connected slave. For convenience,
413 * also keep track of if we got ranges from all the slave modules
414 * or not.
415 */
416 std::vector<bool> gotAddrRanges;

--- 49 unchanged lines hidden ---