Sequencer.hh (8688:5ca9dd977386) Sequencer.hh (8717:5c253f1031d7)
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;

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

112 }
113
114 void print(std::ostream& out) const;
115 void printStats(std::ostream& out) const;
116 void checkCoherence(const Address& address);
117
118 void markRemoved();
119 void removeRequest(SequencerRequest* request);
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;

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

112 }
113
114 void print(std::ostream& out) const;
115 void printStats(std::ostream& out) const;
116 void checkCoherence(const Address& address);
117
118 void markRemoved();
119 void removeRequest(SequencerRequest* request);
120 void evictionCallback(const Address& address);
120
121 private:
122 void issueRequest(PacketPtr pkt, RubyRequestType type);
123
124 void hitCallback(SequencerRequest* request,
125 GenericMachineType mach,
126 DataBlock& data,
127 bool success,

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

176operator<<(std::ostream& out, const Sequencer& obj)
177{
178 obj.print(out);
179 out << std::flush;
180 return out;
181}
182
183#endif // __MEM_RUBY_SYSTEM_SEQUENCER_HH__
121
122 private:
123 void issueRequest(PacketPtr pkt, RubyRequestType type);
124
125 void hitCallback(SequencerRequest* request,
126 GenericMachineType mach,
127 DataBlock& data,
128 bool success,

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

177operator<<(std::ostream& out, const Sequencer& obj)
178{
179 obj.print(out);
180 out << std::flush;
181 return out;
182}
183
184#endif // __MEM_RUBY_SYSTEM_SEQUENCER_HH__
184