1/*
2 * Copyright (c) 2010-2012 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

282 virtual bool isSnooping() const { return true; }
283
284 public:
285
286 /**
287 * A snooping DMA port merely calls the construtor of the DMA
288 * port.
289 */
290 SnoopingDmaPort(MemObject *dev, System *s, Tick min_backoff,
291 Tick max_backoff) :
292 DmaPort(dev, s, min_backoff, max_backoff)
290 SnoopingDmaPort(MemObject *dev, System *s) :
291 DmaPort(dev, s)
292 { }
293 };
294
295 struct WalkerState //: public SimObject
296 {
297 /** Thread context that we're doing the walk for */
298 ThreadContext *tc;
299

--- 130 unchanged lines hidden ---