lsq_unit.hh (4878:5b747482d2d8) lsq_unit.hh (5336:c7e21f4e5a2e)
1/*
2 * Copyright (c) 2004-2006 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;

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

268 public:
269 /** Constructs a writeback event. */
270 WritebackEvent(DynInstPtr &_inst, PacketPtr pkt, LSQUnit *lsq_ptr);
271
272 /** Processes the writeback event. */
273 void process();
274
275 /** Returns the description of this event. */
1/*
2 * Copyright (c) 2004-2006 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;

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

268 public:
269 /** Constructs a writeback event. */
270 WritebackEvent(DynInstPtr &_inst, PacketPtr pkt, LSQUnit *lsq_ptr);
271
272 /** Processes the writeback event. */
273 void process();
274
275 /** Returns the description of this event. */
276 const char *description();
276 const char *description() const;
277
278 private:
279 /** Instruction whose results are being written back. */
280 DynInstPtr inst;
281
282 /** The packet that would have been sent to memory. */
283 PacketPtr pkt;
284

--- 439 unchanged lines hidden ---
277
278 private:
279 /** Instruction whose results are being written back. */
280 DynInstPtr inst;
281
282 /** The packet that would have been sent to memory. */
283 PacketPtr pkt;
284

--- 439 unchanged lines hidden ---