2006-01-29 23:28:04 +01:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2003 The Regents of The University of Michigan
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are
|
|
|
|
* met: redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer;
|
|
|
|
* redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution;
|
|
|
|
* neither the name of the copyright holders nor the names of its
|
|
|
|
* contributors may be used to endorse or promote products derived from
|
|
|
|
* this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
2006-06-01 01:26:56 +02:00
|
|
|
*
|
|
|
|
* Authors: Steve Reinhardt
|
2006-01-29 23:28:04 +01:00
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file
|
|
|
|
* Declaration of a non-full system Page Table.
|
|
|
|
*/
|
|
|
|
|
2009-05-17 23:34:52 +02:00
|
|
|
#ifndef __MEM_PAGE_TABLE_HH__
|
|
|
|
#define __MEM_PAGE_TABLE_HH__
|
2006-01-29 23:28:04 +01:00
|
|
|
|
|
|
|
#include <string>
|
|
|
|
|
2006-03-10 01:21:35 +01:00
|
|
|
#include "arch/isa_traits.hh"
|
2007-08-27 05:33:57 +02:00
|
|
|
#include "arch/tlb.hh"
|
2006-06-27 21:04:11 +02:00
|
|
|
#include "base/hashmap.hh"
|
2009-05-17 23:34:50 +02:00
|
|
|
#include "base/types.hh"
|
2009-09-23 17:34:21 +02:00
|
|
|
#include "config/the_isa.hh"
|
2009-05-17 23:34:52 +02:00
|
|
|
#include "mem/request.hh"
|
2007-08-27 05:33:57 +02:00
|
|
|
#include "sim/serialize.hh"
|
2006-01-29 23:28:04 +01:00
|
|
|
|
2007-10-26 04:04:44 +02:00
|
|
|
class Process;
|
2006-01-29 23:28:04 +01:00
|
|
|
|
|
|
|
/**
|
2006-08-15 01:25:07 +02:00
|
|
|
* Page Table Declaration.
|
2006-01-29 23:28:04 +01:00
|
|
|
*/
|
2006-02-21 02:53:38 +01:00
|
|
|
class PageTable
|
2006-01-29 23:28:04 +01:00
|
|
|
{
|
|
|
|
protected:
|
2007-08-27 05:33:57 +02:00
|
|
|
typedef m5::hash_map<Addr, TheISA::TlbEntry> PTable;
|
|
|
|
typedef PTable::iterator PTableItr;
|
|
|
|
PTable pTable;
|
2006-06-27 21:04:11 +02:00
|
|
|
|
|
|
|
struct cacheElement {
|
|
|
|
Addr vaddr;
|
2007-08-27 05:33:57 +02:00
|
|
|
TheISA::TlbEntry entry;
|
|
|
|
};
|
2006-06-27 21:04:11 +02:00
|
|
|
|
|
|
|
struct cacheElement pTableCache[3];
|
2006-01-29 23:28:04 +01:00
|
|
|
|
2006-02-21 02:53:38 +01:00
|
|
|
const Addr pageSize;
|
|
|
|
const Addr offsetMask;
|
|
|
|
|
2007-10-26 04:04:44 +02:00
|
|
|
Process *process;
|
2006-01-29 23:28:04 +01:00
|
|
|
|
|
|
|
public:
|
|
|
|
|
2007-10-26 04:04:44 +02:00
|
|
|
PageTable(Process *_process, Addr _pageSize = TheISA::VMPageSize);
|
2006-01-29 23:28:04 +01:00
|
|
|
|
|
|
|
~PageTable();
|
|
|
|
|
2006-02-21 02:53:38 +01:00
|
|
|
Addr pageAlign(Addr a) { return (a & ~offsetMask); }
|
|
|
|
Addr pageOffset(Addr a) { return (a & offsetMask); }
|
2006-01-29 23:28:04 +01:00
|
|
|
|
2006-08-14 09:18:38 +02:00
|
|
|
void allocate(Addr vaddr, int64_t size);
|
2009-02-16 23:47:39 +01:00
|
|
|
void remap(Addr vaddr, int64_t size, Addr new_vaddr);
|
|
|
|
void deallocate(Addr vaddr, int64_t size);
|
2006-02-21 02:53:38 +01:00
|
|
|
|
2007-08-27 05:33:57 +02:00
|
|
|
/**
|
|
|
|
* Lookup function
|
|
|
|
* @param vaddr The virtual address.
|
|
|
|
* @return entry The page table entry corresponding to vaddr.
|
|
|
|
*/
|
|
|
|
bool lookup(Addr vaddr, TheISA::TlbEntry &entry);
|
|
|
|
|
2006-01-29 23:28:04 +01:00
|
|
|
/**
|
|
|
|
* Translate function
|
|
|
|
* @param vaddr The virtual address.
|
2008-11-15 18:30:10 +01:00
|
|
|
* @param paddr Physical address from translation.
|
|
|
|
* @return True if translation exists
|
2006-01-29 23:28:04 +01:00
|
|
|
*/
|
2006-02-21 02:53:38 +01:00
|
|
|
bool translate(Addr vaddr, Addr &paddr);
|
2006-01-29 23:28:04 +01:00
|
|
|
|
2008-11-15 18:30:10 +01:00
|
|
|
/**
|
|
|
|
* Simplified translate function (just check for translation)
|
|
|
|
* @param vaddr The virtual address.
|
|
|
|
* @return True if translation exists
|
|
|
|
*/
|
|
|
|
bool translate(Addr vaddr) { Addr dummy; return translate(vaddr, dummy); }
|
|
|
|
|
2006-01-29 23:28:04 +01:00
|
|
|
/**
|
2006-02-21 02:53:38 +01:00
|
|
|
* Perform a translation on the memory request, fills in paddr
|
2007-08-27 05:33:57 +02:00
|
|
|
* field of req.
|
2006-01-29 23:28:04 +01:00
|
|
|
* @param req The memory request.
|
|
|
|
*/
|
2007-08-27 05:33:57 +02:00
|
|
|
Fault translate(RequestPtr req);
|
2006-01-29 23:28:04 +01:00
|
|
|
|
2007-06-05 07:03:35 +02:00
|
|
|
/**
|
|
|
|
* Update the page table cache.
|
|
|
|
* @param vaddr virtual address (page aligned) to check
|
2007-08-27 05:33:57 +02:00
|
|
|
* @param pte page table entry to return
|
2007-06-05 07:03:35 +02:00
|
|
|
*/
|
2007-08-27 05:33:57 +02:00
|
|
|
inline void updateCache(Addr vaddr, TheISA::TlbEntry entry)
|
2007-06-05 07:03:35 +02:00
|
|
|
{
|
2007-08-27 05:33:57 +02:00
|
|
|
pTableCache[2].entry = pTableCache[1].entry;
|
2007-06-05 07:03:35 +02:00
|
|
|
pTableCache[2].vaddr = pTableCache[1].vaddr;
|
2007-08-27 05:33:57 +02:00
|
|
|
pTableCache[1].entry = pTableCache[0].entry;
|
2007-06-05 07:03:35 +02:00
|
|
|
pTableCache[1].vaddr = pTableCache[0].vaddr;
|
2007-08-27 05:33:57 +02:00
|
|
|
pTableCache[0].entry = entry;
|
2007-06-05 07:03:35 +02:00
|
|
|
pTableCache[0].vaddr = vaddr;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-10-18 01:38:36 +02:00
|
|
|
void serialize(std::ostream &os);
|
2007-08-27 05:33:57 +02:00
|
|
|
|
2006-10-18 01:38:36 +02:00
|
|
|
void unserialize(Checkpoint *cp, const std::string §ion);
|
2006-01-29 23:28:04 +01:00
|
|
|
};
|
|
|
|
|
2009-05-17 23:34:52 +02:00
|
|
|
#endif // __MEM_PAGE_TABLE_HH__
|