Sequencer.hh (9171:ae88ecf37145) Sequencer.hh (9184:a1a8f137b796)
1/*
2 * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 125 unchanged lines hidden (view full) ---

134 bool handleLlsc(const Address& address, SequencerRequest* request);
135
136 // Private copy constructor and assignment operator
137 Sequencer(const Sequencer& obj);
138 Sequencer& operator=(const Sequencer& obj);
139
140 private:
141 int m_max_outstanding_requests;
1/*
2 * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 125 unchanged lines hidden (view full) ---

134 bool handleLlsc(const Address& address, SequencerRequest* request);
135
136 // Private copy constructor and assignment operator
137 Sequencer(const Sequencer& obj);
138 Sequencer& operator=(const Sequencer& obj);
139
140 private:
141 int m_max_outstanding_requests;
142 int m_deadlock_threshold;
142 Cycles m_deadlock_threshold;
143
144 CacheMemory* m_dataCache_ptr;
145 CacheMemory* m_instCache_ptr;
146
147 typedef m5::hash_map<Address, SequencerRequest*> RequestTable;
148 RequestTable m_writeRequestTable;
149 RequestTable m_readRequestTable;
150 // Global outstanding request count, across all request tables

--- 33 unchanged lines hidden ---
143
144 CacheMemory* m_dataCache_ptr;
145 CacheMemory* m_instCache_ptr;
146
147 typedef m5::hash_map<Address, SequencerRequest*> RequestTable;
148 RequestTable m_writeRequestTable;
149 RequestTable m_readRequestTable;
150 // Global outstanding request count, across all request tables

--- 33 unchanged lines hidden ---