page_table.cc (6820:2980bd04e6df) page_table.cc (7678:f19b6a3a8cec)
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;

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

33/**
34 * @file
35 * Definitions of page table.
36 */
37#include <string>
38#include <map>
39#include <fstream>
40
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;

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

33/**
34 * @file
35 * Definitions of page table.
36 */
37#include <string>
38#include <map>
39#include <fstream>
40
41#include "arch/faults.hh"
42#include "base/bitfield.hh"
43#include "base/intmath.hh"
44#include "base/trace.hh"
45#include "config/the_isa.hh"
46#include "mem/page_table.hh"
41#include "base/bitfield.hh"
42#include "base/intmath.hh"
43#include "base/trace.hh"
44#include "config/the_isa.hh"
45#include "mem/page_table.hh"
46#include "sim/faults.hh"
47#include "sim/process.hh"
48#include "sim/sim_object.hh"
49#include "sim/system.hh"
50
51using namespace std;
52using namespace TheISA;
53
54PageTable::PageTable(Process *_process, Addr _pageSize)

--- 173 unchanged lines hidden ---
47#include "sim/process.hh"
48#include "sim/sim_object.hh"
49#include "sim/system.hh"
50
51using namespace std;
52using namespace TheISA;
53
54PageTable::PageTable(Process *_process, Addr _pageSize)

--- 173 unchanged lines hidden ---