Sequencer.hh revision 6763
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.hh 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/common/Consumer.hh"
42#include "mem/protocol/CacheRequestType.hh"
43#include "mem/protocol/AccessModeType.hh"
44#include "mem/protocol/GenericMachineType.hh"
45#include "mem/protocol/PrefetchBit.hh"
46#include "mem/ruby/system/RubyPort.hh"
47#include "mem/gems_common/Map.hh"
48#include "mem/ruby/common/Address.hh"
49
50class DataBlock;
51class CacheMsg;
52class MachineID;
53class CacheMemory;
54class AbstractController;
55
56struct SequencerRequest {
57  RubyRequest ruby_request;
58  int64_t id;
59  Time issue_time;
60
61  SequencerRequest(const RubyRequest & _ruby_request, int64_t _id, Time _issue_time)
62    : ruby_request(_ruby_request), id(_id), issue_time(_issue_time)
63  {}
64};
65
66std::ostream& operator<<(std::ostream& out, const SequencerRequest& obj);
67
68class Sequencer : public Consumer, public RubyPort {
69public:
70  // Constructors
71  Sequencer(const string & name);
72  void init(const vector<string> & argv);
73
74  // Destructor
75  ~Sequencer();
76
77  // Public Methods
78  void wakeup(); // Used only for deadlock detection
79
80  void printConfig(ostream& out) const;
81
82  void printProgress(ostream& out) const;
83
84  void writeCallback(const Address& address, DataBlock& data);
85  void readCallback(const Address& address, DataBlock& data);
86
87  // called by Tester or Simics
88  int64_t makeRequest(const RubyRequest & request);
89  bool isReady(const RubyRequest& request);
90  bool empty() const;
91
92  void print(ostream& out) const;
93  void checkCoherence(const Address& address);
94
95  //  bool getRubyMemoryValue(const Address& addr, char* value, unsigned int size_in_bytes);
96  //  bool setRubyMemoryValue(const Address& addr, char *value, unsigned int size_in_bytes);
97
98  void removeRequest(SequencerRequest* request);
99private:
100  // Private Methods
101  bool tryCacheAccess(const Address& addr, CacheRequestType type, const Address& pc, AccessModeType access_mode, int size, DataBlock*& data_ptr);
102  void issueRequest(const RubyRequest& request);
103
104  void hitCallback(SequencerRequest* request, DataBlock& data);
105  bool insertRequest(SequencerRequest* request);
106
107
108  // Private copy constructor and assignment operator
109  Sequencer(const Sequencer& obj);
110  Sequencer& operator=(const Sequencer& obj);
111
112private:
113  int m_max_outstanding_requests;
114  int m_deadlock_threshold;
115
116  AbstractController* m_controller;
117  MessageBuffer* m_mandatory_q_ptr;
118  CacheMemory* m_dataCache_ptr;
119  CacheMemory* m_instCache_ptr;
120
121  // indicates what processor on the chip this sequencer is associated with
122  int m_version;
123  int m_controller_type;
124
125  Map<Address, SequencerRequest*> m_writeRequestTable;
126  Map<Address, SequencerRequest*> m_readRequestTable;
127  // Global outstanding request count, across all request tables
128  int m_outstanding_count;
129  bool m_deadlock_check_scheduled;
130  int m_servicing_atomic;
131  int m_atomics_counter;
132};
133
134// Output operator declaration
135ostream& operator<<(ostream& out, const Sequencer& obj);
136
137// ******************* Definitions *******************
138
139// Output operator definition
140extern inline
141ostream& operator<<(ostream& out, const Sequencer& obj)
142{
143  obj.print(out);
144  out << flush;
145  return out;
146}
147
148#endif //SEQUENCER_H
149
150