tlb.hh (12406:86bde4a026b5) tlb.hh (12455:c88f0b37f433)
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

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

139 * @param req Request to updated in-place.
140 * @param tc Thread context that created the request.
141 * @param mode Request type (read/write/execute).
142 * @return A fault on failure, NoFault otherwise.
143 */
144 Fault finalizePhysical(RequestPtr req, ThreadContext *tc,
145 Mode mode) const override;
146
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

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

139 * @param req Request to updated in-place.
140 * @param tc Thread context that created the request.
141 * @param mode Request type (read/write/execute).
142 * @return A fault on failure, NoFault otherwise.
143 */
144 Fault finalizePhysical(RequestPtr req, ThreadContext *tc,
145 Mode mode) const override;
146
147 TlbEntry * insert(Addr vpn, TlbEntry &entry);
147 TlbEntry *insert(Addr vpn, const TlbEntry &entry);
148
149 /*
150 * Function to register Stats
151 */
152 void regStats() override;
153
154 // Checkpointing
155 void serialize(CheckpointOut &cp) const override;

--- 17 unchanged lines hidden ---
148
149 /*
150 * Function to register Stats
151 */
152 void regStats() override;
153
154 // Checkpointing
155 void serialize(CheckpointOut &cp) const override;

--- 17 unchanged lines hidden ---