page_table.hh (2985:c010893f23ae) page_table.hh (3311:7eb47a60dbd4)
1/*
2 * Copyright (c) 2003 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

90
91 /**
92 * Perform a translation on the memory request, fills in paddr
93 * field of mem_req.
94 * @param req The memory request.
95 */
96 Fault translate(RequestPtr &req);
97
1/*
2 * Copyright (c) 2003 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

90
91 /**
92 * Perform a translation on the memory request, fills in paddr
93 * field of mem_req.
94 * @param req The memory request.
95 */
96 Fault translate(RequestPtr &req);
97
98 void serialize(std::ostream &os);
99 void unserialize(Checkpoint *cp, const std::string &section);
98};
99
100#endif
100};
101
102#endif