physical.cc revision 3751
12391SN/A/*
22391SN/A * Copyright (c) 2001-2005 The Regents of The University of Michigan
32391SN/A * All rights reserved.
42391SN/A *
52391SN/A * Redistribution and use in source and binary forms, with or without
62391SN/A * modification, are permitted provided that the following conditions are
72391SN/A * met: redistributions of source code must retain the above copyright
82391SN/A * notice, this list of conditions and the following disclaimer;
92391SN/A * redistributions in binary form must reproduce the above copyright
102391SN/A * notice, this list of conditions and the following disclaimer in the
112391SN/A * documentation and/or other materials provided with the distribution;
122391SN/A * neither the name of the copyright holders nor the names of its
132391SN/A * contributors may be used to endorse or promote products derived from
142391SN/A * this software without specific prior written permission.
152391SN/A *
162391SN/A * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
172391SN/A * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
182391SN/A * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
192391SN/A * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
202391SN/A * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
212391SN/A * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
222391SN/A * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
232391SN/A * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
242391SN/A * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
252391SN/A * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
262391SN/A * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
272665Ssaidi@eecs.umich.edu *
282665Ssaidi@eecs.umich.edu * Authors: Ron Dreslinski
292914Ssaidi@eecs.umich.edu *          Ali Saidi
302391SN/A */
312391SN/A
322391SN/A#include <sys/types.h>
332391SN/A#include <sys/mman.h>
342391SN/A#include <errno.h>
352391SN/A#include <fcntl.h>
362391SN/A#include <unistd.h>
372391SN/A#include <zlib.h>
382391SN/A
392391SN/A#include <iostream>
402391SN/A#include <string>
412391SN/A
423348Sbinkertn@umich.edu#include "arch/isa_traits.hh"
432391SN/A#include "base/misc.hh"
442391SN/A#include "config/full_system.hh"
452394SN/A#include "mem/physical.hh"
462391SN/A#include "sim/builder.hh"
472415SN/A#include "sim/eventq.hh"
483348Sbinkertn@umich.edu#include "sim/host.hh"
492394SN/A
502391SN/Ausing namespace std;
512423SN/Ausing namespace TheISA;
522391SN/A
533012Ssaidi@eecs.umich.eduPhysicalMemory::PhysicalMemory(Params *p)
543012Ssaidi@eecs.umich.edu    : MemObject(p->name), pmemAddr(NULL), port(NULL), lat(p->latency), _params(p)
552391SN/A{
563012Ssaidi@eecs.umich.edu    if (params()->addrRange.size() % TheISA::PageBytes != 0)
572391SN/A        panic("Memory Size not divisible by page size\n");
582391SN/A
592391SN/A    int map_flags = MAP_ANON | MAP_PRIVATE;
603012Ssaidi@eecs.umich.edu    pmemAddr = (uint8_t *)mmap(NULL, params()->addrRange.size(), PROT_READ | PROT_WRITE,
612391SN/A                                map_flags, -1, 0);
622391SN/A
633012Ssaidi@eecs.umich.edu    if (pmemAddr == (void *)MAP_FAILED) {
642391SN/A        perror("mmap");
652391SN/A        fatal("Could not mmap!\n");
662391SN/A    }
672391SN/A
683751Sgblack@eecs.umich.edu    //If requested, initialize all the memory to 0
693751Sgblack@eecs.umich.edu    if(params()->zero)
703751Sgblack@eecs.umich.edu        memset(pmemAddr, 0, params()->addrRange.size());
713751Sgblack@eecs.umich.edu
723012Ssaidi@eecs.umich.edu    pagePtr = 0;
732391SN/A}
742391SN/A
752541SN/Avoid
762541SN/APhysicalMemory::init()
772541SN/A{
782541SN/A    if (!port)
792541SN/A        panic("PhysicalMemory not connected to anything!");
802541SN/A    port->sendStatusChange(Port::RangeChange);
812541SN/A}
822541SN/A
832391SN/APhysicalMemory::~PhysicalMemory()
842391SN/A{
853012Ssaidi@eecs.umich.edu    if (pmemAddr)
863012Ssaidi@eecs.umich.edu        munmap(pmemAddr, params()->addrRange.size());
872416SN/A    //Remove memPorts?
882391SN/A}
892391SN/A
902391SN/AAddr
912391SN/APhysicalMemory::new_page()
922391SN/A{
933012Ssaidi@eecs.umich.edu    Addr return_addr = pagePtr << LogVMPageSize;
943012Ssaidi@eecs.umich.edu    return_addr += params()->addrRange.start;
952391SN/A
963012Ssaidi@eecs.umich.edu    ++pagePtr;
972391SN/A    return return_addr;
982391SN/A}
992391SN/A
1002408SN/Aint
1012408SN/APhysicalMemory::deviceBlockSize()
1022408SN/A{
1032409SN/A    //Can accept anysize request
1042409SN/A    return 0;
1052408SN/A}
1062408SN/A
1073012Ssaidi@eecs.umich.eduTick
1083349Sbinkertn@umich.eduPhysicalMemory::calculateLatency(PacketPtr pkt)
1093012Ssaidi@eecs.umich.edu{
1103012Ssaidi@eecs.umich.edu    return lat;
1113012Ssaidi@eecs.umich.edu}
1122413SN/A
1133170Sstever@eecs.umich.edu
1143170Sstever@eecs.umich.edu
1153170Sstever@eecs.umich.edu// Add load-locked to tracking list.  Should only be called if the
1163170Sstever@eecs.umich.edu// operation is a load and the LOCKED flag is set.
1173170Sstever@eecs.umich.eduvoid
1183170Sstever@eecs.umich.eduPhysicalMemory::trackLoadLocked(Request *req)
1193170Sstever@eecs.umich.edu{
1203170Sstever@eecs.umich.edu    Addr paddr = LockedAddr::mask(req->getPaddr());
1213170Sstever@eecs.umich.edu
1223170Sstever@eecs.umich.edu    // first we check if we already have a locked addr for this
1233170Sstever@eecs.umich.edu    // xc.  Since each xc only gets one, we just update the
1243170Sstever@eecs.umich.edu    // existing record with the new address.
1253170Sstever@eecs.umich.edu    list<LockedAddr>::iterator i;
1263170Sstever@eecs.umich.edu
1273170Sstever@eecs.umich.edu    for (i = lockedAddrList.begin(); i != lockedAddrList.end(); ++i) {
1283170Sstever@eecs.umich.edu        if (i->matchesContext(req)) {
1293170Sstever@eecs.umich.edu            DPRINTF(LLSC, "Modifying lock record: cpu %d thread %d addr %#x\n",
1303170Sstever@eecs.umich.edu                    req->getCpuNum(), req->getThreadNum(), paddr);
1313170Sstever@eecs.umich.edu            i->addr = paddr;
1323170Sstever@eecs.umich.edu            return;
1333170Sstever@eecs.umich.edu        }
1343170Sstever@eecs.umich.edu    }
1353170Sstever@eecs.umich.edu
1363170Sstever@eecs.umich.edu    // no record for this xc: need to allocate a new one
1373170Sstever@eecs.umich.edu    DPRINTF(LLSC, "Adding lock record: cpu %d thread %d addr %#x\n",
1383170Sstever@eecs.umich.edu            req->getCpuNum(), req->getThreadNum(), paddr);
1393170Sstever@eecs.umich.edu    lockedAddrList.push_front(LockedAddr(req));
1403170Sstever@eecs.umich.edu}
1413170Sstever@eecs.umich.edu
1423170Sstever@eecs.umich.edu
1433170Sstever@eecs.umich.edu// Called on *writes* only... both regular stores and
1443170Sstever@eecs.umich.edu// store-conditional operations.  Check for conventional stores which
1453170Sstever@eecs.umich.edu// conflict with locked addresses, and for success/failure of store
1463170Sstever@eecs.umich.edu// conditionals.
1473170Sstever@eecs.umich.edubool
1483170Sstever@eecs.umich.eduPhysicalMemory::checkLockedAddrList(Request *req)
1493170Sstever@eecs.umich.edu{
1503170Sstever@eecs.umich.edu    Addr paddr = LockedAddr::mask(req->getPaddr());
1513170Sstever@eecs.umich.edu    bool isLocked = req->isLocked();
1523170Sstever@eecs.umich.edu
1533170Sstever@eecs.umich.edu    // Initialize return value.  Non-conditional stores always
1543170Sstever@eecs.umich.edu    // succeed.  Assume conditional stores will fail until proven
1553170Sstever@eecs.umich.edu    // otherwise.
1563170Sstever@eecs.umich.edu    bool success = !isLocked;
1573170Sstever@eecs.umich.edu
1583170Sstever@eecs.umich.edu    // Iterate over list.  Note that there could be multiple matching
1593170Sstever@eecs.umich.edu    // records, as more than one context could have done a load locked
1603170Sstever@eecs.umich.edu    // to this location.
1613170Sstever@eecs.umich.edu    list<LockedAddr>::iterator i = lockedAddrList.begin();
1623170Sstever@eecs.umich.edu
1633170Sstever@eecs.umich.edu    while (i != lockedAddrList.end()) {
1643170Sstever@eecs.umich.edu
1653170Sstever@eecs.umich.edu        if (i->addr == paddr) {
1663170Sstever@eecs.umich.edu            // we have a matching address
1673170Sstever@eecs.umich.edu
1683170Sstever@eecs.umich.edu            if (isLocked && i->matchesContext(req)) {
1693170Sstever@eecs.umich.edu                // it's a store conditional, and as far as the memory
1703170Sstever@eecs.umich.edu                // system can tell, the requesting context's lock is
1713170Sstever@eecs.umich.edu                // still valid.
1723170Sstever@eecs.umich.edu                DPRINTF(LLSC, "StCond success: cpu %d thread %d addr %#x\n",
1733170Sstever@eecs.umich.edu                        req->getCpuNum(), req->getThreadNum(), paddr);
1743170Sstever@eecs.umich.edu                success = true;
1753170Sstever@eecs.umich.edu            }
1763170Sstever@eecs.umich.edu
1773170Sstever@eecs.umich.edu            // Get rid of our record of this lock and advance to next
1783170Sstever@eecs.umich.edu            DPRINTF(LLSC, "Erasing lock record: cpu %d thread %d addr %#x\n",
1793170Sstever@eecs.umich.edu                    i->cpuNum, i->threadNum, paddr);
1803170Sstever@eecs.umich.edu            i = lockedAddrList.erase(i);
1813170Sstever@eecs.umich.edu        }
1823170Sstever@eecs.umich.edu        else {
1833170Sstever@eecs.umich.edu            // no match: advance to next record
1843170Sstever@eecs.umich.edu            ++i;
1853170Sstever@eecs.umich.edu        }
1863170Sstever@eecs.umich.edu    }
1873170Sstever@eecs.umich.edu
1883170Sstever@eecs.umich.edu    if (isLocked) {
1893170Sstever@eecs.umich.edu        req->setScResult(success ? 1 : 0);
1903170Sstever@eecs.umich.edu    }
1913170Sstever@eecs.umich.edu
1923170Sstever@eecs.umich.edu    return success;
1933170Sstever@eecs.umich.edu}
1943170Sstever@eecs.umich.edu
1953029Ssaidi@eecs.umich.eduvoid
1963349Sbinkertn@umich.eduPhysicalMemory::doFunctionalAccess(PacketPtr pkt)
1972413SN/A{
1983749Sgblack@eecs.umich.edu    assert(pkt->getAddr() >= params()->addrRange.start &&
1993584Ssaidi@eecs.umich.edu           pkt->getAddr() + pkt->getSize() <= params()->addrRange.start +
2003584Ssaidi@eecs.umich.edu           params()->addrRange.size());
2012414SN/A
2023175Srdreslin@umich.edu    if (pkt->isRead()) {
2033170Sstever@eecs.umich.edu        if (pkt->req->isLocked()) {
2043170Sstever@eecs.umich.edu            trackLoadLocked(pkt->req);
2053170Sstever@eecs.umich.edu        }
2063281Srdreslin@umich.edu        DPRINTF(MemoryAccess, "Performing Read of size %i on address 0x%x\n",
2073281Srdreslin@umich.edu                pkt->getSize(), pkt->getAddr());
2082641Sstever@eecs.umich.edu        memcpy(pkt->getPtr<uint8_t>(),
2093012Ssaidi@eecs.umich.edu               pmemAddr + pkt->getAddr() - params()->addrRange.start,
2102641Sstever@eecs.umich.edu               pkt->getSize());
2113175Srdreslin@umich.edu    }
2123175Srdreslin@umich.edu    else if (pkt->isWrite()) {
2133170Sstever@eecs.umich.edu        if (writeOK(pkt->req)) {
2143281Srdreslin@umich.edu            DPRINTF(MemoryAccess, "Performing Write of size %i on address 0x%x\n",
2153281Srdreslin@umich.edu                    pkt->getSize(), pkt->getAddr());
2163170Sstever@eecs.umich.edu            memcpy(pmemAddr + pkt->getAddr() - params()->addrRange.start,
2173170Sstever@eecs.umich.edu                   pkt->getPtr<uint8_t>(), pkt->getSize());
2182631SN/A        }
2193175Srdreslin@umich.edu    }
2203175Srdreslin@umich.edu    else if (pkt->isInvalidate()) {
2213175Srdreslin@umich.edu        //upgrade or invalidate
2223175Srdreslin@umich.edu        pkt->flags |= SATISFIED;
2233175Srdreslin@umich.edu    }
2243175Srdreslin@umich.edu    else {
2252413SN/A        panic("unimplemented");
2262413SN/A    }
2272420SN/A
2282641Sstever@eecs.umich.edu    pkt->result = Packet::Success;
2292413SN/A}
2302413SN/A
2312413SN/APort *
2322738Sstever@eecs.umich.eduPhysicalMemory::getPort(const std::string &if_name, int idx)
2332413SN/A{
2342738Sstever@eecs.umich.edu    if (if_name == "port" && idx == -1) {
2352499SN/A        if (port != NULL)
2362499SN/A           panic("PhysicalMemory::getPort: additional port requested to memory!");
2372640Sstever@eecs.umich.edu        port = new MemoryPort(name() + "-port", this);
2382499SN/A        return port;
2392519SN/A    } else if (if_name == "functional") {
2403196Srdreslin@umich.edu        /* special port for functional writes at startup. And for memtester */
2412640Sstever@eecs.umich.edu        return new MemoryPort(name() + "-funcport", this);
2422462SN/A    } else {
2432462SN/A        panic("PhysicalMemory::getPort: unknown port %s requested", if_name);
2442462SN/A    }
2452413SN/A}
2462413SN/A
2472413SN/Avoid
2482413SN/APhysicalMemory::recvStatusChange(Port::Status status)
2492413SN/A{
2502413SN/A}
2512413SN/A
2522640Sstever@eecs.umich.eduPhysicalMemory::MemoryPort::MemoryPort(const std::string &_name,
2532640Sstever@eecs.umich.edu                                       PhysicalMemory *_memory)
2542914Ssaidi@eecs.umich.edu    : SimpleTimingPort(_name), memory(_memory)
2552413SN/A{ }
2562413SN/A
2572413SN/Avoid
2582413SN/APhysicalMemory::MemoryPort::recvStatusChange(Port::Status status)
2592413SN/A{
2602413SN/A    memory->recvStatusChange(status);
2612413SN/A}
2622413SN/A
2632413SN/Avoid
2642522SN/APhysicalMemory::MemoryPort::getDeviceAddressRanges(AddrRangeList &resp,
2652522SN/A                                            AddrRangeList &snoop)
2662413SN/A{
2672522SN/A    memory->getAddressRanges(resp, snoop);
2682497SN/A}
2692497SN/A
2702497SN/Avoid
2712522SN/APhysicalMemory::getAddressRanges(AddrRangeList &resp, AddrRangeList &snoop)
2722497SN/A{
2732522SN/A    snoop.clear();
2742522SN/A    resp.clear();
2753091Sstever@eecs.umich.edu    resp.push_back(RangeSize(params()->addrRange.start,
2763091Sstever@eecs.umich.edu                             params()->addrRange.size()));
2772413SN/A}
2782413SN/A
2792415SN/Aint
2802415SN/APhysicalMemory::MemoryPort::deviceBlockSize()
2812415SN/A{
2822415SN/A    return memory->deviceBlockSize();
2832415SN/A}
2842413SN/A
2852413SN/ATick
2863349Sbinkertn@umich.eduPhysicalMemory::MemoryPort::recvAtomic(PacketPtr pkt)
2872413SN/A{
2883029Ssaidi@eecs.umich.edu    memory->doFunctionalAccess(pkt);
2893029Ssaidi@eecs.umich.edu    return memory->calculateLatency(pkt);
2902413SN/A}
2912413SN/A
2922413SN/Avoid
2933349Sbinkertn@umich.eduPhysicalMemory::MemoryPort::recvFunctional(PacketPtr pkt)
2942413SN/A{
2953612Srdreslin@umich.edu    //Since we are overriding the function, make sure to have the impl of the
2963612Srdreslin@umich.edu    //check or functional accesses here.
2973612Srdreslin@umich.edu    std::list<std::pair<Tick,PacketPtr> >::iterator i = transmitList.begin();
2983612Srdreslin@umich.edu    std::list<std::pair<Tick,PacketPtr> >::iterator end = transmitList.end();
2993612Srdreslin@umich.edu    bool notDone = true;
3003612Srdreslin@umich.edu
3013612Srdreslin@umich.edu    while (i != end && notDone) {
3023612Srdreslin@umich.edu        PacketPtr target = i->second;
3033612Srdreslin@umich.edu        // If the target contains data, and it overlaps the
3043612Srdreslin@umich.edu        // probed request, need to update data
3053612Srdreslin@umich.edu        if (target->intersect(pkt))
3063612Srdreslin@umich.edu            notDone = fixPacket(pkt, target);
3073612Srdreslin@umich.edu        i++;
3083612Srdreslin@umich.edu    }
3093612Srdreslin@umich.edu
3103091Sstever@eecs.umich.edu    // Default implementation of SimpleTimingPort::recvFunctional()
3113091Sstever@eecs.umich.edu    // calls recvAtomic() and throws away the latency; we can save a
3123091Sstever@eecs.umich.edu    // little here by just not calculating the latency.
3132413SN/A    memory->doFunctionalAccess(pkt);
3142413SN/A}
3152413SN/A
3162914Ssaidi@eecs.umich.eduunsigned int
3172914Ssaidi@eecs.umich.eduPhysicalMemory::drain(Event *de)
3182914Ssaidi@eecs.umich.edu{
3192914Ssaidi@eecs.umich.edu    int count = port->drain(de);
3202914Ssaidi@eecs.umich.edu    if (count)
3212914Ssaidi@eecs.umich.edu        changeState(Draining);
3222914Ssaidi@eecs.umich.edu    else
3232914Ssaidi@eecs.umich.edu        changeState(Drained);
3242914Ssaidi@eecs.umich.edu    return count;
3252914Ssaidi@eecs.umich.edu}
3262413SN/A
3272391SN/Avoid
3282391SN/APhysicalMemory::serialize(ostream &os)
3292391SN/A{
3302391SN/A    gzFile compressedMem;
3312391SN/A    string filename = name() + ".physmem";
3322391SN/A
3332391SN/A    SERIALIZE_SCALAR(filename);
3342391SN/A
3352391SN/A    // write memory file
3362391SN/A    string thefile = Checkpoint::dir() + "/" + filename.c_str();
3372391SN/A    int fd = creat(thefile.c_str(), 0664);
3382391SN/A    if (fd < 0) {
3392391SN/A        perror("creat");
3402391SN/A        fatal("Can't open physical memory checkpoint file '%s'\n", filename);
3412391SN/A    }
3422391SN/A
3432391SN/A    compressedMem = gzdopen(fd, "wb");
3442391SN/A    if (compressedMem == NULL)
3452391SN/A        fatal("Insufficient memory to allocate compression state for %s\n",
3462391SN/A                filename);
3472391SN/A
3483012Ssaidi@eecs.umich.edu    if (gzwrite(compressedMem, pmemAddr, params()->addrRange.size()) != params()->addrRange.size()) {
3492391SN/A        fatal("Write failed on physical memory checkpoint file '%s'\n",
3502391SN/A              filename);
3512391SN/A    }
3522391SN/A
3532391SN/A    if (gzclose(compressedMem))
3542391SN/A        fatal("Close failed on physical memory checkpoint file '%s'\n",
3552391SN/A              filename);
3562391SN/A}
3572391SN/A
3582391SN/Avoid
3592391SN/APhysicalMemory::unserialize(Checkpoint *cp, const string &section)
3602391SN/A{
3612391SN/A    gzFile compressedMem;
3622391SN/A    long *tempPage;
3632391SN/A    long *pmem_current;
3642391SN/A    uint64_t curSize;
3652391SN/A    uint32_t bytesRead;
3662391SN/A    const int chunkSize = 16384;
3672391SN/A
3682391SN/A
3692391SN/A    string filename;
3702391SN/A
3712391SN/A    UNSERIALIZE_SCALAR(filename);
3722391SN/A
3732391SN/A    filename = cp->cptDir + "/" + filename;
3742391SN/A
3752391SN/A    // mmap memoryfile
3762391SN/A    int fd = open(filename.c_str(), O_RDONLY);
3772391SN/A    if (fd < 0) {
3782391SN/A        perror("open");
3792391SN/A        fatal("Can't open physical memory checkpoint file '%s'", filename);
3802391SN/A    }
3812391SN/A
3822391SN/A    compressedMem = gzdopen(fd, "rb");
3832391SN/A    if (compressedMem == NULL)
3842391SN/A        fatal("Insufficient memory to allocate compression state for %s\n",
3852391SN/A                filename);
3862391SN/A
3873012Ssaidi@eecs.umich.edu    // unmap file that was mmaped in the constructor
3883012Ssaidi@eecs.umich.edu    // This is done here to make sure that gzip and open don't muck with our
3893012Ssaidi@eecs.umich.edu    // nice large space of memory before we reallocate it
3903012Ssaidi@eecs.umich.edu    munmap(pmemAddr, params()->addrRange.size());
3912391SN/A
3923012Ssaidi@eecs.umich.edu    pmemAddr = (uint8_t *)mmap(NULL, params()->addrRange.size(), PROT_READ | PROT_WRITE,
3932391SN/A                                MAP_ANON | MAP_PRIVATE, -1, 0);
3942391SN/A
3953012Ssaidi@eecs.umich.edu    if (pmemAddr == (void *)MAP_FAILED) {
3962391SN/A        perror("mmap");
3972391SN/A        fatal("Could not mmap physical memory!\n");
3982391SN/A    }
3992391SN/A
4002391SN/A    curSize = 0;
4012391SN/A    tempPage = (long*)malloc(chunkSize);
4022391SN/A    if (tempPage == NULL)
4032391SN/A        fatal("Unable to malloc memory to read file %s\n", filename);
4042391SN/A
4052391SN/A    /* Only copy bytes that are non-zero, so we don't give the VM system hell */
4063012Ssaidi@eecs.umich.edu    while (curSize < params()->addrRange.size()) {
4072391SN/A        bytesRead = gzread(compressedMem, tempPage, chunkSize);
4083012Ssaidi@eecs.umich.edu        if (bytesRead != chunkSize && bytesRead != params()->addrRange.size() - curSize)
4092391SN/A            fatal("Read failed on physical memory checkpoint file '%s'"
4102391SN/A                  " got %d bytes, expected %d or %d bytes\n",
4113012Ssaidi@eecs.umich.edu                  filename, bytesRead, chunkSize, params()->addrRange.size()-curSize);
4122391SN/A
4132391SN/A        assert(bytesRead % sizeof(long) == 0);
4142391SN/A
4152391SN/A        for (int x = 0; x < bytesRead/sizeof(long); x++)
4162391SN/A        {
4172391SN/A             if (*(tempPage+x) != 0) {
4183012Ssaidi@eecs.umich.edu                 pmem_current = (long*)(pmemAddr + curSize + x * sizeof(long));
4192391SN/A                 *pmem_current = *(tempPage+x);
4202391SN/A             }
4212391SN/A        }
4222391SN/A        curSize += bytesRead;
4232391SN/A    }
4242391SN/A
4252391SN/A    free(tempPage);
4262391SN/A
4272391SN/A    if (gzclose(compressedMem))
4282391SN/A        fatal("Close failed on physical memory checkpoint file '%s'\n",
4292391SN/A              filename);
4302391SN/A
4312391SN/A}
4322391SN/A
4332413SN/A
4342391SN/ABEGIN_DECLARE_SIM_OBJECT_PARAMS(PhysicalMemory)
4352391SN/A
4362391SN/A    Param<string> file;
4372391SN/A    Param<Range<Addr> > range;
4382565SN/A    Param<Tick> latency;
4393751Sgblack@eecs.umich.edu    Param<bool> zero;
4402391SN/A
4412391SN/AEND_DECLARE_SIM_OBJECT_PARAMS(PhysicalMemory)
4422391SN/A
4432391SN/ABEGIN_INIT_SIM_OBJECT_PARAMS(PhysicalMemory)
4442391SN/A
4452391SN/A    INIT_PARAM_DFLT(file, "memory mapped file", ""),
4462565SN/A    INIT_PARAM(range, "Device Address Range"),
4473751Sgblack@eecs.umich.edu    INIT_PARAM(latency, "Memory access latency"),
4483751Sgblack@eecs.umich.edu    INIT_PARAM(zero, "Zero initialize memory")
4492391SN/A
4502391SN/AEND_INIT_SIM_OBJECT_PARAMS(PhysicalMemory)
4512391SN/A
4522391SN/ACREATE_SIM_OBJECT(PhysicalMemory)
4532391SN/A{
4543012Ssaidi@eecs.umich.edu    PhysicalMemory::Params *p = new PhysicalMemory::Params;
4553012Ssaidi@eecs.umich.edu    p->name = getInstanceName();
4563012Ssaidi@eecs.umich.edu    p->addrRange = range;
4573012Ssaidi@eecs.umich.edu    p->latency = latency;
4583751Sgblack@eecs.umich.edu    p->zero = zero;
4593012Ssaidi@eecs.umich.edu    return new PhysicalMemory(p);
4602391SN/A}
4612391SN/A
4622391SN/AREGISTER_SIM_OBJECT("PhysicalMemory", PhysicalMemory)
463