RubyDirectedTester.cc (12129:879f7ad9e246) RubyDirectedTester.cc (12749:223c83ed9979)
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

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

96bool
97RubyDirectedTester::CpuPort::recvTimingResp(PacketPtr pkt)
98{
99 tester->hitCallback(id, pkt->getAddr());
100
101 //
102 // Now that the tester has completed, delete the packet, then return
103 //
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

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

96bool
97RubyDirectedTester::CpuPort::recvTimingResp(PacketPtr pkt)
98{
99 tester->hitCallback(id, pkt->getAddr());
100
101 //
102 // Now that the tester has completed, delete the packet, then return
103 //
104 delete pkt->req;
105 delete pkt;
106 return true;
107}
108
109MasterPort*
110RubyDirectedTester::getCpuPort(int idx)
111{
112 assert(idx >= 0 && idx < ports.size());

--- 33 unchanged lines hidden ---
104 delete pkt;
105 return true;
106}
107
108MasterPort*
109RubyDirectedTester::getCpuPort(int idx)
110{
111 assert(idx >= 0 && idx < ports.size());

--- 33 unchanged lines hidden ---