Deleted Added
sdiff udiff text old ( 4465:70123ac99284 ) new ( 4762:c94e103c83ad )
full compact
1/*
2 * Copyright (c) 2001-2005 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;

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

36#include "arch/alpha/pagetable.hh"
37#include "arch/alpha/tlb.hh"
38#include "arch/alpha/faults.hh"
39#include "base/inifile.hh"
40#include "base/str.hh"
41#include "base/trace.hh"
42#include "config/alpha_tlaser.hh"
43#include "cpu/thread_context.hh"
44#include "params/AlphaDTB.hh"
45#include "params/AlphaITB.hh"
46
47using namespace std;
48using namespace EV5;
49
50namespace AlphaISA {
51///////////////////////////////////////////////////////////////////////
52//
53// Alpha TLB

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

596 if (advance)
597 nextnlu();
598
599 return *pte;
600}
601
602/* end namespace AlphaISA */ }
603
604AlphaISA::ITB *
605AlphaITBParams::create()
606{
607 return new AlphaISA::ITB(name, size);
608}
609
610AlphaISA::DTB *
611AlphaDTBParams::create()
612{
613 return new AlphaISA::DTB(name, size);
614}