page_table.hh (6214:1ec0ec8933ae) page_table.hh (6216:2f4020838149)
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;

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

28 * Authors: Steve Reinhardt
29 */
30
31/**
32 * @file
33 * Declaration of a non-full system Page Table.
34 */
35
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;

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

28 * Authors: Steve Reinhardt
29 */
30
31/**
32 * @file
33 * Declaration of a non-full system Page Table.
34 */
35
36#ifndef __PAGE_TABLE__
37#define __PAGE_TABLE__
36#ifndef __MEM_PAGE_TABLE_HH__
37#define __MEM_PAGE_TABLE_HH__
38
39#include <string>
40
38
39#include <string>
40
41#include "sim/faults.hh"
42#include "arch/isa_traits.hh"
43#include "arch/tlb.hh"
44#include "base/hashmap.hh"
41#include "arch/isa_traits.hh"
42#include "arch/tlb.hh"
43#include "base/hashmap.hh"
45#include "mem/request.hh"
46#include "base/types.hh"
44#include "base/types.hh"
45#include "mem/request.hh"
46#include "sim/faults.hh"
47#include "sim/serialize.hh"
48
49class Process;
50
51/**
52 * Page Table Declaration.
53 */
54class PageTable

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

128 }
129
130
131 void serialize(std::ostream &os);
132
133 void unserialize(Checkpoint *cp, const std::string &section);
134};
135
47#include "sim/serialize.hh"
48
49class Process;
50
51/**
52 * Page Table Declaration.
53 */
54class PageTable

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

128 }
129
130
131 void serialize(std::ostream &os);
132
133 void unserialize(Checkpoint *cp, const std::string &section);
134};
135
136#endif
136#endif // __MEM_PAGE_TABLE_HH__