lsq.hh (5529:9ae69b9cd7fd) lsq.hh (5606:6da7a58b0bc8)
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;

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

293 {
294 protected:
295 /** Pointer to LSQ. */
296 LSQ *lsq;
297
298 public:
299 /** Default constructor. */
300 DcachePort(LSQ *_lsq)
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;

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

293 {
294 protected:
295 /** Pointer to LSQ. */
296 LSQ *lsq;
297
298 public:
299 /** Default constructor. */
300 DcachePort(LSQ *_lsq)
301 : Port(_lsq->name() + "-dport"), lsq(_lsq)
301 : Port(_lsq->name() + "-dport", _lsq->cpu), lsq(_lsq)
302 { }
303
304 bool snoopRangeSent;
305
306 virtual void setPeer(Port *port);
307
308 protected:
309 /** Atomic version of receive. Panics. */

--- 80 unchanged lines hidden ---
302 { }
303
304 bool snoopRangeSent;
305
306 virtual void setPeer(Port *port);
307
308 protected:
309 /** Atomic version of receive. Panics. */

--- 80 unchanged lines hidden ---