Sequencer.hh (7550:7d97cec15818) Sequencer.hh (7560:29d5891a96d6)
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;

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

100 private:
101 bool tryCacheAccess(const Address& addr, CacheRequestType type,
102 const Address& pc, AccessModeType access_mode,
103 int size, DataBlock*& data_ptr);
104 void issueRequest(const RubyRequest& request);
105
106 void hitCallback(SequencerRequest* request,
107 GenericMachineType mach,
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;

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

100 private:
101 bool tryCacheAccess(const Address& addr, CacheRequestType type,
102 const Address& pc, AccessModeType access_mode,
103 int size, DataBlock*& data_ptr);
104 void issueRequest(const RubyRequest& request);
105
106 void hitCallback(SequencerRequest* request,
107 GenericMachineType mach,
108 DataBlock& data);
108 DataBlock& data,
109 bool success);
109
110 bool insertRequest(SequencerRequest* request);
111
110
111 bool insertRequest(SequencerRequest* request);
112
112 void handleLlscWrites(const Address& address, SequencerRequest* request);
113 bool handleLlsc(const Address& address, SequencerRequest* request);
113
114 // Private copy constructor and assignment operator
115 Sequencer(const Sequencer& obj);
116 Sequencer& operator=(const Sequencer& obj);
117
118 private:
119 int m_max_outstanding_requests;
120 int m_deadlock_threshold;

--- 42 unchanged lines hidden ---
114
115 // Private copy constructor and assignment operator
116 Sequencer(const Sequencer& obj);
117 Sequencer& operator=(const Sequencer& obj);
118
119 private:
120 int m_max_outstanding_requests;
121 int m_deadlock_threshold;

--- 42 unchanged lines hidden ---