Deleted Added
sdiff udiff text old ( 9446:644f2a2c9bfc ) new ( 9448:569d1e8f74e4 )
full compact
1/*
2 * Copyright (c) 2011-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

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

360 *a particular thread.
361 */
362 EventQueue **comLoadEventQueue;
363
364 System *system;
365
366 /**
367 * Serialize this object to the given output stream.
368 * @param os The stream to serialize to.
369 */
370 virtual void serialize(std::ostream &os);
371
372 /**
373 * Reconstruct the state of this object from a checkpoint.
374 * @param cp The checkpoint use.
375 * @param section The section name of this object
376 */
377 virtual void unserialize(Checkpoint *cp, const std::string &section);
378
379 /**
380 * Return pointer to CPU's branch predictor (NULL if none).
381 * @return Branch predictor pointer.
382 */
383 virtual BranchPred *getBranchPred() { return NULL; };
384
385 virtual Counter totalInsts() const = 0;
386
387 virtual Counter totalOps() const = 0;

--- 52 unchanged lines hidden ---