Deleted Added
sdiff udiff text old ( 9796:485399270ca1 ) new ( 9813:bba03800b376 )
full compact
1/*
2 * Copyright (c) 2012-2013 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

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

406 * Find next request ready time from among possible sources.
407 */
408 Tick nextMSHRReadyTime() const;
409
410 public:
411 /** Instantiates a basic cache object. */
412 Cache(const Params *p);
413
414 void regStats();
415
416 /** serialize the state of the caches
417 * We currently don't support checkpointing cache state, so this panics.
418 */
419 virtual void serialize(std::ostream &os);
420 void unserialize(Checkpoint *cp, const std::string &section);
421};
422
423#endif // __CACHE_HH__