Deleted Added
sdiff udiff text old ( 9652:553ad940c9db ) new ( 9749:cffb82b745cf )
full compact
1/*
2 * Copyright (c) 2011-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

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

390 * @return Branch predictor pointer.
391 */
392 virtual BranchPred *getBranchPred() { return NULL; };
393
394 virtual Counter totalInsts() const = 0;
395
396 virtual Counter totalOps() const = 0;
397
398 // Function tracing
399 private:
400 bool functionTracingEnabled;
401 std::ostream *functionTraceStream;
402 Addr currentFunctionStart;
403 Addr currentFunctionEnd;
404 Tick functionEntryTick;
405 void enableFunctionTrace();

--- 43 unchanged lines hidden ---