changeset 51ff41f6a4a5 in /z/repo/gem5 details: http://repo.gem5.org/gem5?cmd=changeset;node=51ff41f6a4a5 description: mem: Add probe support to the CommMonitor
This changeset adds a standardized probe point type to monitor packets in the memory system and adds two probe points to the CommMonitor class. These probe points enable monitoring of successfully delivered requests and successfully delivered responses. Memory system probe listeners should use the BaseMemProbe base class to provide a unified configuration interface and reuse listener registration code. Unlike the ProbeListenerObject class, the BaseMemProbe allows objects to be wired to multiple ProbeManager instances as long as they use the same probe point name. diffstat: src/mem/comm_monitor.cc | 47 ++++++++++++++++--- src/mem/comm_monitor.hh | 16 ++++++ src/mem/probes/BaseMemProbe.py | 49 +++++++++++++++++++++ src/mem/probes/SConscript | 43 ++++++++++++++++++ src/mem/probes/base.cc | 62 ++++++++++++++++++++++++++ src/mem/probes/base.hh | 97 ++++++++++++++++++++++++++++++++++++++++++ src/sim/probe/mem.hh | 87 +++++++++++++++++++++++++++++++++++++ 7 files changed, 392 insertions(+), 9 deletions(-) diffs (truncated from 490 to 300 lines): diff -r 4e27d8806403 -r 51ff41f6a4a5 src/mem/comm_monitor.cc --- a/src/mem/comm_monitor.cc Mon Aug 03 23:08:40 2015 -0500 +++ b/src/mem/comm_monitor.cc Tue Aug 04 10:29:13 2015 +0100 @@ -139,6 +139,13 @@ } +void +CommMonitor::regProbePoints() +{ + ppPktReq.reset(new ProbePoints::Packet(getProbeManager(), "PktRequest")); + ppPktResp.reset(new ProbePoints::Packet(getProbeManager(), "PktResponse")); +} + BaseMasterPort& CommMonitor::getMasterPort(const std::string& if_name, PortID idx) { @@ -174,6 +181,8 @@ Tick CommMonitor::recvAtomic(PacketPtr pkt) { + ppPktReq->notify(pkt); + // do stack distance calculations if enabled if (stackDistCalc) stackDistCalc->update(pkt->cmd, pkt->getAddr()); @@ -191,7 +200,10 @@ traceStream->write(pkt_msg); } - return masterPort.sendAtomic(pkt); + const Tick delay(masterPort.sendAtomic(pkt)); + assert(pkt->isResponse()); + ppPktResp->notify(pkt); + return delay; } Tick @@ -208,14 +220,15 @@ // Store relevant fields of packet, because packet may be modified // or even deleted when sendTiming() is called. - bool is_read = pkt->isRead(); - bool is_write = pkt->isWrite(); - MemCmd cmd = pkt->cmd; - int cmd_idx = pkt->cmdToIndex(); - Request::FlagsType req_flags = pkt->req->getFlags(); - unsigned size = pkt->getSize(); - Addr addr = pkt->getAddr(); - bool expects_response = pkt->needsResponse() && !pkt->memInhibitAsserted(); + const bool is_read = pkt->isRead(); + const bool is_write = pkt->isWrite(); + const MemCmd cmd = pkt->cmd; + const int cmd_idx = pkt->cmdToIndex(); + const Request::FlagsType req_flags = pkt->req->getFlags(); + const unsigned size = pkt->getSize(); + const Addr addr = pkt->getAddr(); + const bool expects_response( + pkt->needsResponse() && !pkt->memInhibitAsserted()); // If a cache miss is served by a cache, a monitor near the memory // would see a request which needs a response, but this response @@ -234,6 +247,17 @@ delete pkt->popSenderState(); } + if (successful) { + // The receiver might already have modified the packet. We + // want to give the probe access to the original packet, which + // means we need to fake the original packet by temporarily + // restoring the command. + const MemCmd response_cmd(pkt->cmd); + pkt->cmd = cmd; + ppPktReq->notify(pkt); + pkt->cmd = response_cmd; + } + // If successful and we are calculating stack distances, update // the calculator if (successful && stackDistCalc) @@ -378,6 +402,11 @@ } } + if (successful) { + assert(pkt->isResponse()); + ppPktResp->notify(pkt); + } + if (successful && is_read) { // Decrement number of outstanding read requests DPRINTF(CommMonitor, "Received read response\n"); diff -r 4e27d8806403 -r 51ff41f6a4a5 src/mem/comm_monitor.hh --- a/src/mem/comm_monitor.hh Mon Aug 03 23:08:40 2015 -0500 +++ b/src/mem/comm_monitor.hh Tue Aug 04 10:29:13 2015 +0100 @@ -46,6 +46,7 @@ #include "mem/stack_dist_calc.hh" #include "params/CommMonitor.hh" #include "proto/protoio.hh" +#include "sim/probe/mem.hh" #include "sim/system.hh" /** @@ -82,6 +83,7 @@ void init() M5_ATTR_OVERRIDE; void regStats() M5_ATTR_OVERRIDE; void startup() M5_ATTR_OVERRIDE; + void regProbePoints() M5_ATTR_OVERRIDE; public: // MemObject interfaces BaseMasterPort& getMasterPort(const std::string& if_name, @@ -428,6 +430,20 @@ /** Instantiate stats */ MonitorStats stats; + + protected: // Probe points + /** + * @{ + * @name Memory system probe points + */ + + /** Successfully forwarded request packet */ + ProbePoints::PacketUPtr ppPktReq; + + /** Successfully forwarded response packet */ + ProbePoints::PacketUPtr ppPktResp; + + /** @} */ }; #endif //__MEM_COMM_MONITOR_HH__ diff -r 4e27d8806403 -r 51ff41f6a4a5 src/mem/probes/BaseMemProbe.py --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/mem/probes/BaseMemProbe.py Tue Aug 04 10:29:13 2015 +0100 @@ -0,0 +1,49 @@ +# Copyright (c) 2015 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. +# +# Authors: Andreas Sandberg + +from m5.params import * +from m5.proxy import * +from m5.SimObject import SimObject + +class BaseMemProbe(SimObject): + type = 'BaseMemProbe' + abstract = True + cxx_header = "mem/probes/base.hh" + + manager = VectorParam.SimObject(Parent.any, + "Probe manager(s) to instrument") + probe_name = Param.String("PktRequest", "Memory request probe to use") diff -r 4e27d8806403 -r 51ff41f6a4a5 src/mem/probes/SConscript --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/mem/probes/SConscript Tue Aug 04 10:29:13 2015 +0100 @@ -0,0 +1,43 @@ +# -*- mode:python -*- + +# Copyright (c) 2015 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. +# +# Authors: Andreas Sandberg + +Import('*') + +SimObject('BaseMemProbe.py') +Source('base.cc') diff -r 4e27d8806403 -r 51ff41f6a4a5 src/mem/probes/base.cc --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/mem/probes/base.cc Tue Aug 04 10:29:13 2015 +0100 @@ -0,0 +1,62 @@ +/* + * Copyright (c) 2015 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. + * + * Authors: Andreas Sandberg + */ + +#include "mem/probes/base.hh" + +#include "params/BaseMemProbe.hh" + + +BaseMemProbe::BaseMemProbe(BaseMemProbeParams *p) + : SimObject(p) +{ +} + +void +BaseMemProbe::regProbeListeners() +{ + const BaseMemProbeParams *p( + dynamic_cast<const BaseMemProbeParams *>(params())); + assert(p); + + listeners.resize(p->manager.size()); + for (int i = 0; i < p->manager.size(); i++) { + ProbeManager *const mgr(p->manager[i]->getProbeManager()); + listeners[i].reset(new PacketListener(*this, mgr, p->probe_name)); + } +} diff -r 4e27d8806403 -r 51ff41f6a4a5 src/mem/probes/base.hh --- /dev/null Thu Jan 01 00:00:00 1970 +0000 _______________________________________________ gem5-dev mailing list gem5-dev@gem5.org http://m5sim.org/mailman/listinfo/gem5-dev