tlb.hh (11175:2324ed5fa9f4) tlb.hh (11800:54436a1784dc)
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

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

36 *
37 * Authors: Gabe Black
38 */
39
40#ifndef __ARCH_X86_TLB_HH__
41#define __ARCH_X86_TLB_HH__
42
43#include <list>
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

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

36 *
37 * Authors: Gabe Black
38 */
39
40#ifndef __ARCH_X86_TLB_HH__
41#define __ARCH_X86_TLB_HH__
42
43#include <list>
44#include <string>
45#include <vector>
46
47#include "arch/generic/tlb.hh"
44#include <vector>
45
46#include "arch/generic/tlb.hh"
48#include "arch/x86/regs/segment.hh"
49#include "arch/x86/pagetable.hh"
50#include "base/trie.hh"
47#include "arch/x86/pagetable.hh"
48#include "base/trie.hh"
51#include "mem/mem_object.hh"
52#include "mem/request.hh"
53#include "params/X86TLB.hh"
49#include "mem/request.hh"
50#include "params/X86TLB.hh"
54#include "sim/sim_object.hh"
55
56class ThreadContext;
51
52class ThreadContext;
57class Packet;
58
59namespace X86ISA
60{
61 class Walker;
62
63 class TLB : public BaseTLB
64 {
65 protected:

--- 103 unchanged lines hidden ---
53
54namespace X86ISA
55{
56 class Walker;
57
58 class TLB : public BaseTLB
59 {
60 protected:

--- 103 unchanged lines hidden ---