stats.cc (10259:ebb376f73dd2) stats.cc (11419:9c7b55faea5d)
1/*
2 * Copyright (c) 2012-2014 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

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

77 .precision(6);
78 cpi = baseCpu.numCycles / numInsts;
79
80 ipc
81 .name(name + ".ipc")
82 .desc("IPC: instructions per cycle")
83 .precision(6);
84 ipc = numInsts / baseCpu.numCycles;
1/*
2 * Copyright (c) 2012-2014 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

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

77 .precision(6);
78 cpi = baseCpu.numCycles / numInsts;
79
80 ipc
81 .name(name + ".ipc")
82 .desc("IPC: instructions per cycle")
83 .precision(6);
84 ipc = numInsts / baseCpu.numCycles;
85
86 committedInstType
87 .init(baseCpu.numThreads, Enums::Num_OpClass)
88 .name(name + ".op_class")
89 .desc("Class of committed instruction")
90 .flags(Stats::total | Stats::pdf | Stats::dist);
91 committedInstType.ysubnames(Enums::OpClassStrings);
85}
86
87};
92}
93
94};