Deleted Added
sdiff udiff text old ( 7087:fb8d5786ff30 ) new ( 8953:488d45aeb672 )
full compact
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

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

41#define __ARCH_X86_PAGETABLE_HH__
42
43#include <iostream>
44#include <string>
45
46#include "base/bitunion.hh"
47#include "base/misc.hh"
48#include "base/types.hh"
49
50class Checkpoint;
51
52namespace X86ISA
53{
54 BitUnion64(VAddr)
55 Bitfield<20, 12> longl1;
56 Bitfield<29, 21> longl2;
57 Bitfield<38, 30> longl3;
58 Bitfield<47, 39> longl4;
59
60 Bitfield<20, 12> pael1;
61 Bitfield<29, 21> pael2;

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

67
68 struct TlbEntry
69 {
70 // The base of the physical page.
71 Addr paddr;
72
73 // The beginning of the virtual page this entry maps.
74 Addr vaddr;
75 // The size of the page this entry represents.
76 Addr size;
77
78 // Read permission is always available, assuming it isn't blocked by
79 // other mechanisms.
80 bool writable;
81 // Whether this page is accesible without being in supervisor mode.
82 bool user;
83 // Whether to use write through or write back. M5 ignores this and
84 // lets the caches handle the writeback policy.
85 //bool pwt;
86 // Whether the page is cacheable or not.
87 bool uncacheable;
88 // Whether or not to kick this page out on a write to CR3.
89 bool global;
90 // A bit used to form an index into the PAT table.
91 bool patBit;
92 // Whether or not memory on this page can be executed.
93 bool noExec;
94
95 TlbEntry(Addr asn, Addr _vaddr, Addr _paddr);
96 TlbEntry() {}
97
98 void
99 updateVaddr(Addr new_vaddr)
100 {
101 vaddr = new_vaddr;
102 }

--- 12 unchanged lines hidden ---