The [[maybe_unused]] attribute is now standard, so we can use that directly without hiding it behind a macro. Change-Id: If24ffd7e50bdb503cb3e6ea61f226ea794e84b8f Reviewed-on: https://gem5-review.googlesource.com/c/public/gem5/+/48511 Reviewed-by: Gabe Black <gabe.black@gmail.com> Maintainer: Gabe Black <gabe.black@gmail.com> Tested-by: kokoro <noreply+kokoro@google.com>
162 lines
4.8 KiB
C++
162 lines
4.8 KiB
C++
/*
|
|
* Copyright (c) 2013 ARM Limited
|
|
* All rights reserved
|
|
*
|
|
* The license below extends only to copyright in the software and shall
|
|
* not be construed as granting a license to any other intellectual
|
|
* property including but not limited to intellectual property relating
|
|
* to a hardware implementation of the functionality of the software
|
|
* licensed hereunder. You may use the software subject to the license
|
|
* terms below provided that you ensure that this notice is replicated
|
|
* unmodified and in its entirety in all distributions of the software,
|
|
* modified or unmodified, in source code or in binary form.
|
|
*
|
|
* 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.
|
|
*
|
|
*/
|
|
|
|
#include <cassert>
|
|
|
|
/**
|
|
* When building the debug binary, we need to undo the command-line
|
|
* definition of DEBUG not to clash with DRAMsim3 print macros that
|
|
* are included for no obvious reason.
|
|
*/
|
|
#ifdef DEBUG
|
|
#undef DEBUG
|
|
#endif
|
|
|
|
#include "mem/dramsim3_wrapper.hh"
|
|
|
|
#include <fstream>
|
|
|
|
#include "DRAMsim3/src/dramsim3.h"
|
|
#include "base/compiler.hh"
|
|
#include "base/logging.hh"
|
|
|
|
namespace gem5
|
|
{
|
|
|
|
namespace memory
|
|
{
|
|
|
|
DRAMsim3Wrapper::DRAMsim3Wrapper(const std::string& config_file,
|
|
const std::string& working_dir,
|
|
std::function<void(uint64_t)> read_cb,
|
|
std::function<void(uint64_t)> write_cb) :
|
|
dramsim(dramsim3::GetMemorySystem(config_file, working_dir,
|
|
read_cb, write_cb)),
|
|
_clockPeriod(0.0), _queueSize(0), _burstSize(0)
|
|
{
|
|
// there is no way of getting DRAMsim3 to tell us what frequency
|
|
// it is assuming, so we have to extract it ourselves
|
|
_clockPeriod = dramsim->GetTCK();
|
|
|
|
if (!_clockPeriod)
|
|
fatal("DRAMsim3 wrapper failed to get clock\n");
|
|
|
|
// we also need to know what transaction queue size DRAMsim3 is
|
|
// using so we can stall when responses are blocked
|
|
_queueSize = dramsim->GetQueueSize();
|
|
|
|
if (!_queueSize)
|
|
fatal("DRAMsim3 wrapper failed to get queue size\n");
|
|
|
|
|
|
// finally, get the data bus bits and burst length so we can add a
|
|
// sanity check for the burst size
|
|
unsigned int dataBusBits = dramsim->GetBusBits();
|
|
unsigned int burstLength = dramsim->GetBurstLength();
|
|
|
|
if (!dataBusBits || !burstLength)
|
|
fatal("DRAMsim3 wrapper failed to get burst size\n");
|
|
|
|
_burstSize = dataBusBits * burstLength / 8;
|
|
}
|
|
|
|
DRAMsim3Wrapper::~DRAMsim3Wrapper()
|
|
{
|
|
delete dramsim;
|
|
}
|
|
|
|
|
|
void
|
|
DRAMsim3Wrapper::printStats()
|
|
{
|
|
dramsim->PrintStats();
|
|
}
|
|
|
|
void
|
|
DRAMsim3Wrapper::resetStats()
|
|
{
|
|
dramsim->ResetStats();
|
|
}
|
|
|
|
void
|
|
DRAMsim3Wrapper::setCallbacks(std::function<void(uint64_t)> read_complete,
|
|
std::function<void(uint64_t)> write_complete)
|
|
{
|
|
dramsim->RegisterCallbacks(read_complete, write_complete);
|
|
}
|
|
|
|
bool
|
|
DRAMsim3Wrapper::canAccept(uint64_t addr, bool is_write) const
|
|
{
|
|
return dramsim->WillAcceptTransaction(addr, is_write);
|
|
}
|
|
|
|
void
|
|
DRAMsim3Wrapper::enqueue(uint64_t addr, bool is_write)
|
|
{
|
|
[[maybe_unused]] bool success = dramsim->AddTransaction(addr, is_write);
|
|
assert(success);
|
|
}
|
|
|
|
double
|
|
DRAMsim3Wrapper::clockPeriod() const
|
|
{
|
|
return _clockPeriod;
|
|
}
|
|
|
|
unsigned int
|
|
DRAMsim3Wrapper::queueSize() const
|
|
{
|
|
return _queueSize;
|
|
}
|
|
|
|
unsigned int
|
|
DRAMsim3Wrapper::burstSize() const
|
|
{
|
|
return _burstSize;
|
|
}
|
|
|
|
void
|
|
DRAMsim3Wrapper::tick()
|
|
{
|
|
dramsim->ClockTick();
|
|
}
|
|
|
|
} // namespace memory
|
|
} // namespace gem5
|