pagetable_walker.hh (9044:904ddeecc653) pagetable_walker.hh (9294:8fb03b13de02)
1/*
2 * Copyright (c) 2007 The Hewlett-Packard Development Company
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

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

164 };
165
166 public:
167 // Kick off the state machine.
168 Fault start(ThreadContext * _tc, BaseTLB::Translation *translation,
169 RequestPtr req, BaseTLB::Mode mode);
170 Fault startFunctional(ThreadContext * _tc, Addr &addr,
171 unsigned &logBytes, BaseTLB::Mode mode);
1/*
2 * Copyright (c) 2007 The Hewlett-Packard Development Company
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

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

164 };
165
166 public:
167 // Kick off the state machine.
168 Fault start(ThreadContext * _tc, BaseTLB::Translation *translation,
169 RequestPtr req, BaseTLB::Mode mode);
170 Fault startFunctional(ThreadContext * _tc, Addr &addr,
171 unsigned &logBytes, BaseTLB::Mode mode);
172 MasterPort &getMasterPort(const std::string &if_name, int idx = -1);
172 BaseMasterPort &getMasterPort(const std::string &if_name,
173 PortID idx = InvalidPortID);
173
174 protected:
175 // The TLB we're supposed to load.
176 TLB * tlb;
177 System * sys;
178 MasterID masterId;
179
180 // Functions for dealing with packets.

--- 28 unchanged lines hidden ---
174
175 protected:
176 // The TLB we're supposed to load.
177 TLB * tlb;
178 System * sys;
179 MasterID masterId;
180
181 // Functions for dealing with packets.

--- 28 unchanged lines hidden ---