stat_control.cc (10367:bf52480abd01) stat_control.cc (11793:ef606668d247)
1/*
2 * Copyright (c) 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

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

41 *
42 * Authors: Nathan Binkert
43 * Sascha Bischoff
44 */
45
46// This file will contain default statistics for the simulator that
47// don't really belong to a specific simulator object
48
1/*
2 * Copyright (c) 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

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

41 *
42 * Authors: Nathan Binkert
43 * Sascha Bischoff
44 */
45
46// This file will contain default statistics for the simulator that
47// don't really belong to a specific simulator object
48
49#include "sim/stat_control.hh"
50
49#include <fstream>
50#include <iostream>
51#include <list>
52
53#include "base/callback.hh"
54#include "base/hostinfo.hh"
55#include "base/statistics.hh"
56#include "base/time.hh"
57#include "cpu/base.hh"
58#include "sim/global_event.hh"
51#include <fstream>
52#include <iostream>
53#include <list>
54
55#include "base/callback.hh"
56#include "base/hostinfo.hh"
57#include "base/statistics.hh"
58#include "base/time.hh"
59#include "cpu/base.hh"
60#include "sim/global_event.hh"
59#include "sim/stat_control.hh"
60
61using namespace std;
62
63Stats::Formula simSeconds;
64Stats::Value simTicks;
65Stats::Value finalTick;
66Stats::Value simFreq;
67

--- 235 unchanged lines hidden ---
61
62using namespace std;
63
64Stats::Formula simSeconds;
65Stats::Value simTicks;
66Stats::Value finalTick;
67Stats::Value simFreq;
68

--- 235 unchanged lines hidden ---