timing.hh (4873:b135f6e6adfe) timing.hh (5103:391933804192)
1/*
2 * Copyright (c) 2002-2005 The Regents of The University of Michigan
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;

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

198 void completeDataAccess(PacketPtr );
199 void advanceInst(Fault fault);
200
201 private:
202
203 typedef EventWrapper<TimingSimpleCPU, &TimingSimpleCPU::fetch> FetchEvent;
204 FetchEvent *fetchEvent;
205
1/*
2 * Copyright (c) 2002-2005 The Regents of The University of Michigan
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;

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

198 void completeDataAccess(PacketPtr );
199 void advanceInst(Fault fault);
200
201 private:
202
203 typedef EventWrapper<TimingSimpleCPU, &TimingSimpleCPU::fetch> FetchEvent;
204 FetchEvent *fetchEvent;
205
206 struct IprEvent : Event {
207 Packet *pkt;
208 TimingSimpleCPU *cpu;
209 IprEvent(Packet *_pkt, TimingSimpleCPU *_cpu, Tick t);
210 virtual void process();
211 virtual const char *description();
212 };
213
206 void completeDrain();
207};
208
209#endif // __CPU_SIMPLE_TIMING_HH__
214 void completeDrain();
215};
216
217#endif // __CPU_SIMPLE_TIMING_HH__