RubyTester.cc (8965:1ebd7c856abc) RubyTester.cc (8975:7f36d4436074)
1/*
2 * Copyright (c) 2012 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

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

140 idx);
141 }
142 return *readPorts[read_idx];
143 }
144 }
145}
146
147bool
1/*
2 * Copyright (c) 2012 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

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

140 idx);
141 }
142 return *readPorts[read_idx];
143 }
144 }
145}
146
147bool
148RubyTester::CpuPort::recvTiming(PacketPtr pkt)
148RubyTester::CpuPort::recvTimingResp(PacketPtr pkt)
149{
150 // retrieve the subblock and call hitCallback
151 RubyTester::SenderState* senderState =
152 safe_cast<RubyTester::SenderState*>(pkt->senderState);
153 SubBlock* subblock = senderState->subBlock;
154 assert(subblock != NULL);
155
156 // pop the sender state from the packet

--- 99 unchanged lines hidden ---
149{
150 // retrieve the subblock and call hitCallback
151 RubyTester::SenderState* senderState =
152 safe_cast<RubyTester::SenderState*>(pkt->senderState);
153 SubBlock* subblock = senderState->subBlock;
154 assert(subblock != NULL);
155
156 // pop the sender state from the packet

--- 99 unchanged lines hidden ---