tlb.hh (10474:799c8ee4ecba) | tlb.hh (10687:276da6265ab8) |
---|---|
1/* 2 * Copyright (c) 2001-2005 The Regents of The University of Michigan 3 * Copyright (c) 2007 MIPS Technologies, Inc. 4 * All rights reserved. 5 * 6 * Redistribution and use in source and binary forms, with or without 7 * modification, are permitted provided that the following conditions are 8 * met: redistributions of source code must retain the above copyright --- 23 unchanged lines hidden (view full) --- 32 * Korey Sewell 33 */ 34 35#ifndef __ARCH_MIPS_TLB_HH__ 36#define __ARCH_MIPS_TLB_HH__ 37 38#include <map> 39 | 1/* 2 * Copyright (c) 2001-2005 The Regents of The University of Michigan 3 * Copyright (c) 2007 MIPS Technologies, Inc. 4 * All rights reserved. 5 * 6 * Redistribution and use in source and binary forms, with or without 7 * modification, are permitted provided that the following conditions are 8 * met: redistributions of source code must retain the above copyright --- 23 unchanged lines hidden (view full) --- 32 * Korey Sewell 33 */ 34 35#ifndef __ARCH_MIPS_TLB_HH__ 36#define __ARCH_MIPS_TLB_HH__ 37 38#include <map> 39 |
40#include "arch/generic/tlb.hh" |
|
40#include "arch/mips/isa_traits.hh" 41#include "arch/mips/pagetable.hh" 42#include "arch/mips/utility.hh" 43#include "arch/mips/vtophys.hh" 44#include "base/statistics.hh" 45#include "mem/request.hh" 46#include "params/MipsTLB.hh" 47#include "sim/sim_object.hh" | 41#include "arch/mips/isa_traits.hh" 42#include "arch/mips/pagetable.hh" 43#include "arch/mips/utility.hh" 44#include "arch/mips/vtophys.hh" 45#include "base/statistics.hh" 46#include "mem/request.hh" 47#include "params/MipsTLB.hh" 48#include "sim/sim_object.hh" |
48#include "sim/tlb.hh" | |
49 50class ThreadContext; 51 52/* MIPS does not distinguish between a DTLB and an ITLB -> unified TLB 53 However, to maintain compatibility with other architectures, we'll 54 simply create an ITLB and DTLB that will point to the real TLB */ 55namespace MipsISA { 56 --- 78 unchanged lines hidden --- | 49 50class ThreadContext; 51 52/* MIPS does not distinguish between a DTLB and an ITLB -> unified TLB 53 However, to maintain compatibility with other architectures, we'll 54 simply create an ITLB and DTLB that will point to the real TLB */ 55namespace MipsISA { 56 --- 78 unchanged lines hidden --- |