Sequencer.hh revision 6155:2b8fec056712
1
2/*
3 * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer;
10 * redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution;
13 * neither the name of the copyright holders nor the names of its
14 * contributors may be used to endorse or promote products derived from
15 * this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
18 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
19 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
20 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
21 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
22 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
23 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
24 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
25 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
26 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
27 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
28 */
29
30/*
31 * $Id: Sequencer.h 1.70 2006/09/27 14:56:41-05:00 bobba@s1-01.cs.wisc.edu $
32 *
33 * Description:
34 *
35 */
36
37#ifndef SEQUENCER_H
38#define SEQUENCER_H
39
40#include "mem/ruby/common/Global.hh"
41#include "mem/ruby/config/RubyConfig.hh"
42#include "mem/ruby/common/Consumer.hh"
43#include "mem/protocol/CacheRequestType.hh"
44#include "mem/protocol/AccessModeType.hh"
45#include "mem/protocol/GenericMachineType.hh"
46#include "mem/protocol/PrefetchBit.hh"
47#include "mem/gems_common/Map.hh"
48#include "mem/packet.hh"
49
50class DataBlock;
51class AbstractChip;
52class CacheMsg;
53class Address;
54class MachineID;
55
56class Sequencer : public Consumer {
57public:
58  // Constructors
59  Sequencer(AbstractChip* chip_ptr, int version);
60
61  // Destructor
62  ~Sequencer();
63
64  // Public Methods
65  void wakeup(); // Used only for deadlock detection
66
67  static void printConfig(ostream& out);
68
69  // returns total number of outstanding request (includes prefetches)
70  int getNumberOutstanding();
71  // return only total number of outstanding demand requests
72  int getNumberOutstandingDemand();
73  // return only total number of outstanding prefetch requests
74  int getNumberOutstandingPrefetch();
75
76  // remove load/store request from queue
77  void removeLoadRequest(const Address & addr, int thread);
78  void removeStoreRequest(const Address & addr, int thread);
79
80  void printProgress(ostream& out) const;
81
82  // returns a pointer to the request in the request tables
83  CacheMsg & getReadRequest( const Address & addr, int thread );
84  CacheMsg & getWriteRequest( const Address & addr, int thread );
85
86  // called by Ruby when transaction completes
87  void writeConflictCallback(const Address& address);
88  void readConflictCallback(const Address& address);
89  void writeConflictCallback(const Address& address, GenericMachineType respondingMach, int thread);
90  void readConflictCallback(const Address& address, GenericMachineType respondingMach, int thread);
91  void conflictCallback(const CacheMsg& request, GenericMachineType respondingMach, int thread);
92
93  void writeCallback(const Address& address, DataBlock& data);
94  void readCallback(const Address& address, DataBlock& data);
95  void writeCallback(const Address& address);
96  void readCallback(const Address& address);
97  void writeCallback(const Address& address, DataBlock& data, GenericMachineType respondingMach, PrefetchBit pf, int thread);
98  void readCallback(const Address& address, DataBlock& data, GenericMachineType respondingMach, PrefetchBit pf, int thread);
99  void writeCallback(const Address& address, DataBlock& data, GenericMachineType respondingMach, int thread);
100  void readCallback(const Address& address, DataBlock& data, GenericMachineType respondingMach, int thread);
101
102  // returns the thread ID of the request
103  int getRequestThreadID(const Address & addr);
104  // returns the physical address of the request
105  Address getRequestPhysicalAddress(const Address & lineaddr);
106  // returns whether a request is a prefetch request
107  bool isPrefetchRequest(const Address & lineaddr);
108
109  //notifies driver of debug print
110  void printDebug();
111
112  // called by Tester or Simics
113  void makeRequest(const Packet* pkt, void* data);
114  void makeRequest(const CacheMsg& request); // depricate this function
115  bool doRequest(const CacheMsg& request);
116  void issueRequest(const CacheMsg& request);
117  bool isReady(const Packet* pkt) const;
118  bool isReady(const CacheMsg& request) const; // depricate this function
119  bool empty() const;
120  void resetRequestTime(const Address& addr, int thread);
121  Address getLogicalAddressOfRequest(Address address, int thread);
122  AccessModeType getAccessModeOfRequest(Address address, int thread);
123  //uint64 getSequenceNumberOfRequest(Address addr, int thread);
124
125  void print(ostream& out) const;
126  void checkCoherence(const Address& address);
127
128  bool getRubyMemoryValue(const Address& addr, char* value, unsigned int size_in_bytes);
129  bool setRubyMemoryValue(const Address& addr, char *value, unsigned int size_in_bytes);
130
131  void removeRequest(const CacheMsg& request);
132private:
133  // Private Methods
134  bool tryCacheAccess(const Address& addr, CacheRequestType type, const Address& pc, AccessModeType access_mode, int size, DataBlock*& data_ptr);
135  //  void conflictCallback(const CacheMsg& request, GenericMachineType respondingMach, int thread);
136  void hitCallback(const CacheMsg& request, DataBlock& data, GenericMachineType respondingMach, int thread);
137  bool insertRequest(const CacheMsg& request);
138
139
140  // Private copy constructor and assignment operator
141  Sequencer(const Sequencer& obj);
142  Sequencer& operator=(const Sequencer& obj);
143
144  // Data Members (m_ prefix)
145  AbstractChip* m_chip_ptr;
146
147  // indicates what processor on the chip this sequencer is associated with
148  int m_version;
149
150  // One request table per SMT thread
151  Map<Address, CacheMsg>** m_writeRequestTable_ptr;
152  Map<Address, CacheMsg>** m_readRequestTable_ptr;
153  // Global outstanding request count, across all request tables
154  int m_outstanding_count;
155  bool m_deadlock_check_scheduled;
156
157};
158
159// Output operator declaration
160ostream& operator<<(ostream& out, const Sequencer& obj);
161
162// ******************* Definitions *******************
163
164// Output operator definition
165extern inline
166ostream& operator<<(ostream& out, const Sequencer& obj)
167{
168  obj.print(out);
169  out << flush;
170  return out;
171}
172
173#endif //SEQUENCER_H
174
175