lsq.hh (5489:94a7bb476fca) lsq.hh (5494:85c8d296c1cb)
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;

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

291 class DcachePort : public Port
292 {
293 protected:
294 /** Pointer to LSQ. */
295 LSQ *lsq;
296
297 public:
298 /** Default constructor. */
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;

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

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

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

--- 80 unchanged lines hidden ---