summaryrefslogtreecommitdiff
path: root/mem
diff options
context:
space:
mode:
authorRon Dreslinski <rdreslin@umich.edu>2006-02-15 14:21:09 -0500
committerRon Dreslinski <rdreslin@umich.edu>2006-02-15 14:21:09 -0500
commit7f114ca41930c7e0a71dfb105472671cfa25ddec (patch)
treed2d696e7633a347bb5ca2824720caed578f62fe2 /mem
parent3298e937d389c2fa0a5e5a8eeb1db2a3fac3e7e3 (diff)
downloadgem5-7f114ca41930c7e0a71dfb105472671cfa25ddec.tar.xz
Many changes that make the new mem system compile. Now to convert the rest of the tree to use the new mem system.
mem/mem_object.hh: Create constrtor so it compiles mem/packet.hh: Fix typedefs so they compile, add in a few more headers for compilation mem/page_table.cc: convert to new mem system so it compiles mem/page_table.hh: fix it to the version that had asid support. Make it compile in the new system mem/physical.cc: Fix some compilation bugs mem/physical.hh: Add a type that made compile fail mem/port.hh: Fix a spelling error that messed up compilation mem/request.hh: fix typedefs and forward declerations so it compiles --HG-- extra : convert_revision : 580fb1ba31ada799ff0122601b8b5a8d994bb8af
Diffstat (limited to 'mem')
-rw-r--r--mem/mem_object.hh7
-rw-r--r--mem/packet.hh10
-rw-r--r--mem/page_table.cc115
-rw-r--r--mem/page_table.hh31
-rw-r--r--mem/physical.cc5
-rw-r--r--mem/physical.hh1
-rw-r--r--mem/port.hh2
-rw-r--r--mem/request.hh15
8 files changed, 120 insertions, 66 deletions
diff --git a/mem/mem_object.hh b/mem/mem_object.hh
index c6c5076e8..634fb164a 100644
--- a/mem/mem_object.hh
+++ b/mem/mem_object.hh
@@ -41,9 +41,14 @@
* The base MemoryObject class, allows for an accesor function to a
* simobj that returns the Port.
*/
-class MemoryObject : public SimObject
+class MemObject : public SimObject
{
public:
+ MemObject(const std::string &name)
+ : SimObject(name)
+ {};
+
+ public:
/** Additional function to return the Port of a memory object. */
virtual Port *getPort(const char *if_name) = 0;
};
diff --git a/mem/packet.hh b/mem/packet.hh
index ca2a84fb3..ef4eb85d9 100644
--- a/mem/packet.hh
+++ b/mem/packet.hh
@@ -36,6 +36,12 @@
#define __MEM_PACKET_HH__
#include "mem/request.hh"
+#include "targetarch/isa_traits.hh"
+#include "sim/root.hh"
+
+struct Packet;
+typedef Packet* PacketPtr;
+typedef uint8_t* PacketDataPtr;
/** List of all commands associated with a packet. */
enum Command
@@ -54,8 +60,6 @@ enum PacketResult
class SenderState{};
class Coherence{};
-typedef PacketDataPtr *unit8_t;
-
/**
* A Packet is the structure to handle requests between two levels
* of the memory system. The Request is a global object that trancends
@@ -118,6 +122,4 @@ struct Packet
short getDest() const { return dest; }
};
-typedef PacketPtr *Packet;
-
#endif //__MEM_PACKET_HH
diff --git a/mem/page_table.cc b/mem/page_table.cc
index 2b2145503..cd93c0692 100644
--- a/mem/page_table.cc
+++ b/mem/page_table.cc
@@ -34,34 +34,40 @@
#include <map>
#include <fstream>
-#include "base/bitfield.hh"
+using namespace std;
+
#include "base/intmath.hh"
#include "base/trace.hh"
-#include "mem/mem_cmd.hh"
-#include "mem/mem_req.hh"
+#include "mem/physical.hh"
#include "mem/page_table.hh"
#include "sim/builder.hh"
#include "sim/sim_object.hh"
-#include "sim/system.hh"
-
-using namespace std;
-PageTable::PageTable(System *_system, Addr _pageSize)
- : pageSize(_pageSize), offsetMask(mask(FloorLog2(_pageSize))),
- system(_system)
+PageTable::PageTable(const std::string &name)
+ : SimObject(name)
{
- assert(IsPowerOf2(pageSize));
}
PageTable::~PageTable()
{
+ //Iterate the page table freeing the memoruy
+ //Addr addr;
+ //std::map<Addr,Addr>::iterator iter;
+
+ //iter = pTable.begin();
+ //while(iter != pTable.end())
+ //{
+ //delete [] (uint8_t *)iter->second;
+// iter ++;
+ // }
+
}
Fault
PageTable::page_check(Addr addr, int size) const
{
if (size < sizeof(uint64_t)) {
- if (!IsPowerOf2(size)) {
+ if (!isPowerOf2(size)) {
panic("Invalid request size!\n");
return Machine_Check_Fault;
}
@@ -83,49 +89,78 @@ PageTable::page_check(Addr addr, int size) const
}
+Fault
+PageTable::translate(CpuRequestPtr &req)
+{
+//Should I check here for accesses that are > VMPageSize?
+ req->paddr = translate(req->vaddr, req->asid);
+ return page_check(req->paddr, req->size);
+}
-void
-PageTable::allocate(Addr vaddr, int size)
+Addr
+PageTable::translate(Addr vaddr, unsigned asid)
{
- // starting address must be page aligned
- assert(pageOffset(vaddr) == 0);
+ Addr hash_addr;
+ std::map<Addr,Addr>::iterator iter;
- for (; size > 0; size -= pageSize, vaddr += pageSize) {
- std::map<Addr,Addr>::iterator iter = pTable.find(vaddr);
+ //DPRINTF(PageTable,"PageTable: Virtual Address %#x Translating for ASID %i\n",
+ // vaddr,asid);
- if (iter != pTable.end()) {
- // already mapped
- fatal("PageTable::allocate: address 0x%x already mapped", vaddr);
- }
+ //Create the hash_addr
+ //Combine vaddr and asid
+ hash_addr = vaddr & (~(VMPageSize - 1)) | asid;
- pTable[vaddr] = system->new_page();
- }
-}
+ //DPRINTF(PageTable,"PageTable: Hash Address %#x\n",hash_addr);
+ //Look into the page table
+ iter=pTable.find(hash_addr);
+ //bool page_fault = true;
-bool
-PageTable::translate(Addr vaddr, Addr &paddr)
-{
- Addr page_addr = pageAlign(vaddr);
- std::map<Addr,Addr>::iterator iter = pTable.find(page_addr);
+ //Store the translated address if found, and return
+ if (iter != pTable.end()) //Found??
+ {
+ Addr return_addr = iter->second + (vaddr & (VMPageSize - 1));
- if (iter == pTable.end()) {
- return false;
+ return return_addr;
}
+ else//Alocate a new page, register translation
+ {
+ Addr return_addr;
+
+ //DPRINTF(PageTable,"PageTable: Page Not Found. Allocating new page\n");
- paddr = iter->second + pageOffset(vaddr);
- return true;
+ Addr new_page = mem->new_page();
+
+ pTable[hash_addr] = new_page;
+
+ return_addr = new_page + (vaddr & (VMPageSize - 1));
+
+ return return_addr;
+ }
}
+BEGIN_DECLARE_SIM_OBJECT_PARAMS(PageTable)
-Fault
-PageTable::translate(MemReqPtr &req)
+ SimObjectParam<PhysicalMemory *> physmem;
+
+END_DECLARE_SIM_OBJECT_PARAMS(PageTable)
+
+BEGIN_INIT_SIM_OBJECT_PARAMS(PageTable)
+
+ INIT_PARAM_DFLT(physmem, "Pointer to functional memory", NULL)
+
+END_INIT_SIM_OBJECT_PARAMS(PageTable)
+
+CREATE_SIM_OBJECT(PageTable)
{
- assert(pageAlign(req->vaddr + req->size - 1) == pageAlign(req->vaddr));
- if (!translate(req->vaddr, req->paddr)) {
- return Machine_Check_Fault;
- }
- return page_check(req->paddr, req->size);
+ PageTable *pTable = new PageTable(getInstanceName());
+
+ if (physmem)
+ pTable->setPhysMem(physmem);
+
+ return pTable;
}
+
+REGISTER_SIM_OBJECT("PageTable", PageTable)
diff --git a/mem/page_table.hh b/mem/page_table.hh
index 785f0928f..7e534899f 100644
--- a/mem/page_table.hh
+++ b/mem/page_table.hh
@@ -38,50 +38,51 @@
#include <map>
#include "base/trace.hh"
-#include "mem/mem_req.hh"
-#include "mem/mem_cmd.hh"
+#include "mem/request.hh"
+#include "mem/packet.hh"
#include "sim/sim_object.hh"
-class System;
+class PhysicalMemory;
/**
* Page Table Decleration.
*/
-class PageTable
+class PageTable : public SimObject
{
protected:
std::map<Addr,Addr> pTable;
- const Addr pageSize;
- const Addr offsetMask;
-
- System *system;
+ PhysicalMemory *mem;
public:
- PageTable(System *_system, Addr _pageSize = VMPageSize);
+ /**
+ * Construct this interface.
+ * @param name The name of this interface.
+ * @param hier Pointer to the hierarchy wide parameters.
+ * @param _mem the connected memory.
+ */
+ PageTable(const std::string &name);
~PageTable();
- Addr pageAlign(Addr a) { return (a & ~offsetMask); }
- Addr pageOffset(Addr a) { return (a & offsetMask); }
+ void setPhysMem(PhysicalMemory *_mem) { mem = _mem; }
Fault page_check(Addr addr, int size) const;
- void allocate(Addr vaddr, int size);
-
/**
* Translate function
* @param vaddr The virtual address.
+ * @param asid The address space id.
* @return Physical address from translation.
*/
- bool translate(Addr vaddr, Addr &paddr);
+ Addr translate(Addr vaddr, unsigned asid);
/**
* Perform a translation on the memory request, fills in paddr field of mem_req.
* @param req The memory request.
*/
- Fault translate(MemReqPtr &req);
+ Fault translate(CpuRequestPtr &req);
};
diff --git a/mem/physical.cc b/mem/physical.cc
index c45e12750..02563ac70 100644
--- a/mem/physical.cc
+++ b/mem/physical.cc
@@ -43,11 +43,12 @@
#if FULL_SYSTEM
#include "mem/functional/memory_control.hh"
#endif
-#include "mem/functional/physical.hh"
+#include "mem/physical.hh"
#include "sim/host.hh"
#include "sim/builder.hh"
#include "targetarch/isa_traits.hh"
+
using namespace std;
#if FULL_SYSTEM
@@ -89,7 +90,7 @@ PhysicalMemory::PhysicalMemory(const string &n, Range<Addr> range,
#endif
PhysicalMemory::PhysicalMemory(const string &n)
- : FunctionalMemory(n), base_addr(0), pmem_addr(NULL)
+ : Memory(n), base_addr(0), pmem_addr(NULL)
{
// Hardcoded to 128 MB for now.
pmem_size = 1 << 27;
diff --git a/mem/physical.hh b/mem/physical.hh
index 5410024e5..a8ed45115 100644
--- a/mem/physical.hh
+++ b/mem/physical.hh
@@ -78,6 +78,7 @@ class PhysicalMemory : public Memory
virtual void unserialize(Checkpoint *cp, const std::string &section);
};
+uint64_t
PhysicalMemory::phys_read_qword(Addr addr) const
{
if (addr + sizeof(uint64_t) > pmem_size)
diff --git a/mem/port.hh b/mem/port.hh
index 81150b2a3..6b32adb57 100644
--- a/mem/port.hh
+++ b/mem/port.hh
@@ -120,7 +120,7 @@ class Port
an object wants to own some ranges and snoop on others, it will
need to use two different ports.
*/
- virtual void recvAddressRangeQuery(std::list<Range<Addr> > &range_list,
+ virtual void recvAddressRangesQuery(std::list<Range<Addr> > &range_list,
bool &owner) = 0;
public:
diff --git a/mem/request.hh b/mem/request.hh
index bcbf3fecf..9f03c4e75 100644
--- a/mem/request.hh
+++ b/mem/request.hh
@@ -34,9 +34,18 @@
#ifndef __MEM_REQUEST_HH__
#define __MEM_REQUEST_HH__
+#include "targetarch/isa_traits.hh"
+
+class Request;
+class CpuRequest;
+
+typedef Request* RequestPtr;
+typedef CpuRequest* CpuRequestPtr;
+
class Request
{
-
+ //@todo Make Accesor functions, make these private.
+ public:
/** The physical address of the request. */
Addr paddr;
@@ -53,10 +62,10 @@ class Request
Addr copyDest;
};
-typedef RequestPtr *Request;
-
class CpuRequest : public Request
{
+ //@todo Make Accesor functions, make these private.
+ public:
/** The virtual address of the request. */
Addr vaddr;