cpu.hh (8794:e2ac2b7164dd) cpu.hh (8796:a2ae5c378d0a)
1/*
2 * Copyright (c) 2004-2005 The Regents of The University of Michigan
3 * Copyright (c) 2011 Regents of the University of California
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright

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

708
709 /** Temporary fix for the lock flag, works in the UP case. */
710 bool lockFlag;
711
712 /** Stat for total number of times the CPU is descheduled. */
713 Stats::Scalar timesIdled;
714 /** Stat for total number of cycles the CPU spends descheduled. */
715 Stats::Scalar idleCycles;
1/*
2 * Copyright (c) 2004-2005 The Regents of The University of Michigan
3 * Copyright (c) 2011 Regents of the University of California
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright

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

708
709 /** Temporary fix for the lock flag, works in the UP case. */
710 bool lockFlag;
711
712 /** Stat for total number of times the CPU is descheduled. */
713 Stats::Scalar timesIdled;
714 /** Stat for total number of cycles the CPU spends descheduled. */
715 Stats::Scalar idleCycles;
716 /** Stat for total number of cycles the CPU spends descheduled due to a
717 * quiesce operation or waiting for an interrupt. */
718 Stats::Scalar quiesceCycles;
716 /** Stat for the number of committed instructions per thread. */
717 Stats::Vector committedInsts;
718 /** Stat for the total number of committed instructions. */
719 Stats::Scalar totalCommittedInsts;
720 /** Stat for the CPI per thread. */
721 Stats::Formula cpi;
722 /** Stat for the total CPI. */
723 Stats::Formula totalCpi;

--- 17 unchanged lines hidden ---
719 /** Stat for the number of committed instructions per thread. */
720 Stats::Vector committedInsts;
721 /** Stat for the total number of committed instructions. */
722 Stats::Scalar totalCommittedInsts;
723 /** Stat for the CPI per thread. */
724 Stats::Formula cpi;
725 /** Stat for the total CPI. */
726 Stats::Formula totalCpi;

--- 17 unchanged lines hidden ---