Sequencer.hh revision 9104
16145Snate@binkert.org/*
26145Snate@binkert.org * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
36145Snate@binkert.org * All rights reserved.
46145Snate@binkert.org *
56145Snate@binkert.org * Redistribution and use in source and binary forms, with or without
66145Snate@binkert.org * modification, are permitted provided that the following conditions are
76145Snate@binkert.org * met: redistributions of source code must retain the above copyright
86145Snate@binkert.org * notice, this list of conditions and the following disclaimer;
96145Snate@binkert.org * redistributions in binary form must reproduce the above copyright
106145Snate@binkert.org * notice, this list of conditions and the following disclaimer in the
116145Snate@binkert.org * documentation and/or other materials provided with the distribution;
126145Snate@binkert.org * neither the name of the copyright holders nor the names of its
136145Snate@binkert.org * contributors may be used to endorse or promote products derived from
146145Snate@binkert.org * this software without specific prior written permission.
156145Snate@binkert.org *
166145Snate@binkert.org * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
176145Snate@binkert.org * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
186145Snate@binkert.org * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
196145Snate@binkert.org * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
206145Snate@binkert.org * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
216145Snate@binkert.org * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
226145Snate@binkert.org * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
236145Snate@binkert.org * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
246145Snate@binkert.org * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
256145Snate@binkert.org * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
266145Snate@binkert.org * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
276145Snate@binkert.org */
286145Snate@binkert.org
297039Snate@binkert.org#ifndef __MEM_RUBY_SYSTEM_SEQUENCER_HH__
307039Snate@binkert.org#define __MEM_RUBY_SYSTEM_SEQUENCER_HH__
316145Snate@binkert.org
327055Snate@binkert.org#include <iostream>
337055Snate@binkert.org
347455Snate@binkert.org#include "base/hashmap.hh"
358229Snate@binkert.org#include "mem/protocol/GenericMachineType.hh"
368165Snilay@cs.wisc.edu#include "mem/protocol/RubyRequestType.hh"
379104Shestness@cs.utexas.edu#include "mem/protocol/SequencerRequestType.hh"
387039Snate@binkert.org#include "mem/ruby/common/Address.hh"
397039Snate@binkert.org#include "mem/ruby/common/Consumer.hh"
406285Snate@binkert.org#include "mem/ruby/system/RubyPort.hh"
416145Snate@binkert.org
426145Snate@binkert.orgclass DataBlock;
436285Snate@binkert.orgclass CacheMemory;
446876Ssteve.reinhardt@amd.com
458737Skoansin.tan@gmail.comstruct RubySequencerParams;
466145Snate@binkert.org
477039Snate@binkert.orgstruct SequencerRequest
487039Snate@binkert.org{
498615Snilay@cs.wisc.edu    PacketPtr pkt;
508615Snilay@cs.wisc.edu    RubyRequestType m_type;
517039Snate@binkert.org    Time issue_time;
526285Snate@binkert.org
538615Snilay@cs.wisc.edu    SequencerRequest(PacketPtr _pkt, RubyRequestType _m_type, Time _issue_time)
548615Snilay@cs.wisc.edu        : pkt(_pkt), m_type(_m_type), issue_time(_issue_time)
557039Snate@binkert.org    {}
566285Snate@binkert.org};
576285Snate@binkert.org
586763SBrad.Beckmann@amd.comstd::ostream& operator<<(std::ostream& out, const SequencerRequest& obj);
596763SBrad.Beckmann@amd.com
607039Snate@binkert.orgclass Sequencer : public RubyPort, public Consumer
617039Snate@binkert.org{
627039Snate@binkert.org  public:
636876Ssteve.reinhardt@amd.com    typedef RubySequencerParams Params;
647039Snate@binkert.org    Sequencer(const Params *);
657039Snate@binkert.org    ~Sequencer();
666145Snate@binkert.org
677039Snate@binkert.org    // Public Methods
687039Snate@binkert.org    void wakeup(); // Used only for deadlock detection
696145Snate@binkert.org
707055Snate@binkert.org    void printConfig(std::ostream& out) const;
716145Snate@binkert.org
727055Snate@binkert.org    void printProgress(std::ostream& out) const;
736145Snate@binkert.org
747039Snate@binkert.org    void writeCallback(const Address& address, DataBlock& data);
757546SBrad.Beckmann@amd.com
767546SBrad.Beckmann@amd.com    void writeCallback(const Address& address,
777546SBrad.Beckmann@amd.com                       GenericMachineType mach,
787546SBrad.Beckmann@amd.com                       DataBlock& data);
797546SBrad.Beckmann@amd.com
807565SBrad.Beckmann@amd.com    void writeCallback(const Address& address,
817565SBrad.Beckmann@amd.com                       GenericMachineType mach,
827565SBrad.Beckmann@amd.com                       DataBlock& data,
837565SBrad.Beckmann@amd.com                       Time initialRequestTime,
847565SBrad.Beckmann@amd.com                       Time forwardRequestTime,
857565SBrad.Beckmann@amd.com                       Time firstResponseTime);
867565SBrad.Beckmann@amd.com
877039Snate@binkert.org    void readCallback(const Address& address, DataBlock& data);
886145Snate@binkert.org
897546SBrad.Beckmann@amd.com    void readCallback(const Address& address,
907546SBrad.Beckmann@amd.com                      GenericMachineType mach,
917546SBrad.Beckmann@amd.com                      DataBlock& data);
927546SBrad.Beckmann@amd.com
937565SBrad.Beckmann@amd.com    void readCallback(const Address& address,
947565SBrad.Beckmann@amd.com                      GenericMachineType mach,
957565SBrad.Beckmann@amd.com                      DataBlock& data,
967565SBrad.Beckmann@amd.com                      Time initialRequestTime,
977565SBrad.Beckmann@amd.com                      Time forwardRequestTime,
987565SBrad.Beckmann@amd.com                      Time firstResponseTime);
997565SBrad.Beckmann@amd.com
1008615Snilay@cs.wisc.edu    RequestStatus makeRequest(PacketPtr pkt);
1017039Snate@binkert.org    bool empty() const;
1028688Snilay@cs.wisc.edu    int outstandingCount() const { return m_outstanding_count; }
1038688Snilay@cs.wisc.edu    bool
1048688Snilay@cs.wisc.edu    isDeadlockEventScheduled() const
1058688Snilay@cs.wisc.edu    {
1068688Snilay@cs.wisc.edu        return deadlockCheckEvent.scheduled();
1078688Snilay@cs.wisc.edu    }
1088688Snilay@cs.wisc.edu
1098688Snilay@cs.wisc.edu    void
1108688Snilay@cs.wisc.edu    descheduleDeadlockEvent()
1118688Snilay@cs.wisc.edu    {
1128688Snilay@cs.wisc.edu        deschedule(deadlockCheckEvent);
1138688Snilay@cs.wisc.edu    }
1146145Snate@binkert.org
1157055Snate@binkert.org    void print(std::ostream& out) const;
1167055Snate@binkert.org    void printStats(std::ostream& out) const;
1177039Snate@binkert.org    void checkCoherence(const Address& address);
1186145Snate@binkert.org
1197455Snate@binkert.org    void markRemoved();
1207039Snate@binkert.org    void removeRequest(SequencerRequest* request);
1218717Snilay@cs.wisc.edu    void evictionCallback(const Address& address);
1226145Snate@binkert.org
1239104Shestness@cs.utexas.edu    void recordRequestType(SequencerRequestType requestType);
1249104Shestness@cs.utexas.edu
1257039Snate@binkert.org  private:
1268615Snilay@cs.wisc.edu    void issueRequest(PacketPtr pkt, RubyRequestType type);
1276145Snate@binkert.org
1287546SBrad.Beckmann@amd.com    void hitCallback(SequencerRequest* request,
1297546SBrad.Beckmann@amd.com                     GenericMachineType mach,
1307560SBrad.Beckmann@amd.com                     DataBlock& data,
1317565SBrad.Beckmann@amd.com                     bool success,
1327565SBrad.Beckmann@amd.com                     Time initialRequestTime,
1337565SBrad.Beckmann@amd.com                     Time forwardRequestTime,
1347565SBrad.Beckmann@amd.com                     Time firstResponseTime);
1357546SBrad.Beckmann@amd.com
1368615Snilay@cs.wisc.edu    RequestStatus insertRequest(PacketPtr pkt, RubyRequestType request_type);
1376285Snate@binkert.org
1387560SBrad.Beckmann@amd.com    bool handleLlsc(const Address& address, SequencerRequest* request);
1396145Snate@binkert.org
1407039Snate@binkert.org    // Private copy constructor and assignment operator
1417039Snate@binkert.org    Sequencer(const Sequencer& obj);
1427039Snate@binkert.org    Sequencer& operator=(const Sequencer& obj);
1436145Snate@binkert.org
1447039Snate@binkert.org  private:
1457039Snate@binkert.org    int m_max_outstanding_requests;
1467039Snate@binkert.org    int m_deadlock_threshold;
1476145Snate@binkert.org
1487039Snate@binkert.org    CacheMemory* m_dataCache_ptr;
1497039Snate@binkert.org    CacheMemory* m_instCache_ptr;
1506285Snate@binkert.org
1517455Snate@binkert.org    typedef m5::hash_map<Address, SequencerRequest*> RequestTable;
1527455Snate@binkert.org    RequestTable m_writeRequestTable;
1537455Snate@binkert.org    RequestTable m_readRequestTable;
1547039Snate@binkert.org    // Global outstanding request count, across all request tables
1557039Snate@binkert.org    int m_outstanding_count;
1567039Snate@binkert.org    bool m_deadlock_check_scheduled;
1576145Snate@binkert.org
1587039Snate@binkert.org    int m_store_waiting_on_load_cycles;
1597039Snate@binkert.org    int m_store_waiting_on_store_cycles;
1607039Snate@binkert.org    int m_load_waiting_on_store_cycles;
1617039Snate@binkert.org    int m_load_waiting_on_load_cycles;
1626859Sdrh5@cs.wisc.edu
1638171Stushar@csail.mit.edu    bool m_usingNetworkTester;
1648171Stushar@csail.mit.edu
1657039Snate@binkert.org    class SequencerWakeupEvent : public Event
1667039Snate@binkert.org    {
1677039Snate@binkert.org      private:
1687039Snate@binkert.org        Sequencer *m_sequencer_ptr;
1696899SBrad.Beckmann@amd.com
1707039Snate@binkert.org      public:
1717039Snate@binkert.org        SequencerWakeupEvent(Sequencer *_seq) : m_sequencer_ptr(_seq) {}
1727039Snate@binkert.org        void process() { m_sequencer_ptr->wakeup(); }
1737039Snate@binkert.org        const char *description() const { return "Sequencer deadlock check"; }
1747039Snate@binkert.org    };
1756886SBrad.Beckmann@amd.com
1767039Snate@binkert.org    SequencerWakeupEvent deadlockCheckEvent;
1776145Snate@binkert.org};
1786145Snate@binkert.org
1797055Snate@binkert.orginline std::ostream&
1807055Snate@binkert.orgoperator<<(std::ostream& out, const Sequencer& obj)
1816145Snate@binkert.org{
1827039Snate@binkert.org    obj.print(out);
1837055Snate@binkert.org    out << std::flush;
1847039Snate@binkert.org    return out;
1856145Snate@binkert.org}
1866145Snate@binkert.org
1877039Snate@binkert.org#endif // __MEM_RUBY_SYSTEM_SEQUENCER_HH__
188