pagetable_walker.cc (13784:1941dc118243) pagetable_walker.cc (13892:0182a0601f66)
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
170Port &
171Walker::getPort(const std::string &if_name, PortID idx)
172{
173 if (if_name == "port")
174 return port;
175 else
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
170Port &
171Walker::getPort(const std::string &if_name, PortID idx)
172{
173 if (if_name == "port")
174 return port;
175 else
176 return MemObject::getPort(if_name, idx);
176 return ClockedObject::getPort(if_name, idx);
177}
178
179void
180Walker::WalkerState::initState(ThreadContext * _tc,
181 BaseTLB::Mode _mode, bool _isTiming)
182{
183 assert(state == Ready);
184 started = false;

--- 539 unchanged lines hidden ---
177}
178
179void
180Walker::WalkerState::initState(ThreadContext * _tc,
181 BaseTLB::Mode _mode, bool _isTiming)
182{
183 assert(state == Ready);
184 started = false;

--- 539 unchanged lines hidden ---