Deleted Added
sdiff udiff text old ( 5184:8782de2949e5 ) new ( 5237:6c819dbe8045 )
full compact
1/*
2 * Copyright (c) 2007 The Hewlett-Packard Development Company
3 * All rights reserved.
4 *
5 * Redistribution and use of this software in source and binary forms,
6 * with or without modification, are permitted provided that the
7 * following conditions are met:
8 *

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

57
58#ifndef __ARCH_X86_PAGETABLE_HH__
59#define __ARCH_X86_PAGETABLE_HH__
60
61#include <iostream>
62#include <string>
63
64#include "sim/host.hh"
65#include "base/misc.hh"
66
67class Checkpoint;
68
69namespace X86ISA
70{
71 struct VAddr
72 {
73 VAddr(Addr a) { panic("not implemented yet."); }
74 };
75
76 struct TlbEntry
77 {
78 // The base of the physical page.
79 Addr paddr;
80
81 // The beginning of the virtual page this entry maps.
82 Addr vaddr;
83 // The size of the page this entry represents.

--- 33 unchanged lines hidden ---