pagetable_walker.cc (9165:f9e3dac185ba) pagetable_walker.cc (9294:8fb03b13de02)
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

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

168}
169
170bool Walker::sendTiming(WalkerState* sendingState, PacketPtr pkt)
171{
172 pkt->senderState = new WalkerSenderState(sendingState, pkt->senderState);
173 return port.sendTimingReq(pkt);
174}
175
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

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

168}
169
170bool Walker::sendTiming(WalkerState* sendingState, PacketPtr pkt)
171{
172 pkt->senderState = new WalkerSenderState(sendingState, pkt->senderState);
173 return port.sendTimingReq(pkt);
174}
175
176MasterPort &
177Walker::getMasterPort(const std::string &if_name, int idx)
176BaseMasterPort &
177Walker::getMasterPort(const std::string &if_name, PortID idx)
178{
179 if (if_name == "port")
180 return port;
181 else
182 return MemObject::getMasterPort(if_name, idx);
183}
184
185void

--- 508 unchanged lines hidden ---
178{
179 if (if_name == "port")
180 return port;
181 else
182 return MemObject::getMasterPort(if_name, idx);
183}
184
185void

--- 508 unchanged lines hidden ---