mem_delay.hh (12802:c861c5743fc0) mem_delay.hh (12823:ba630bc7a36d)
1/*
2 * Copyright (c) 2018 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

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

120 bool tryTiming(PacketPtr pkt) override { return true; }
121
122 private:
123
124 MemDelay& parent;
125
126 };
127
1/*
2 * Copyright (c) 2018 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

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

120 bool tryTiming(PacketPtr pkt) override { return true; }
121
122 private:
123
124 MemDelay& parent;
125
126 };
127
128 bool checkFunctional(PacketPtr pkt);
128 bool trySatisfyFunctional(PacketPtr pkt);
129
130 MasterPort masterPort;
131 SlavePort slavePort;
132
133 ReqPacketQueue reqQueue;
134 RespPacketQueue respQueue;
135 SnoopRespPacketQueue snoopRespQueue;
136

--- 49 unchanged lines hidden ---
129
130 MasterPort masterPort;
131 SlavePort slavePort;
132
133 ReqPacketQueue reqQueue;
134 RespPacketQueue respQueue;
135 SnoopRespPacketQueue snoopRespQueue;
136

--- 49 unchanged lines hidden ---