inst_queue.hh (2935:d1223a6c9156) inst_queue.hh (3125:febd811bccc6)
1/*
2 * Copyright (c) 2004-2006 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

474 /** Stat for number of non-speculative instructions removed due to a squash.
475 */
476 Stats::Scalar<> iqSquashedNonSpecRemoved;
477 // Also include number of instructions rescheduled and replayed.
478
479 /** Distribution of number of instructions in the queue.
480 * @todo: Need to create struct to track the entry time for each
481 * instruction. */
1/*
2 * Copyright (c) 2004-2006 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

474 /** Stat for number of non-speculative instructions removed due to a squash.
475 */
476 Stats::Scalar<> iqSquashedNonSpecRemoved;
477 // Also include number of instructions rescheduled and replayed.
478
479 /** Distribution of number of instructions in the queue.
480 * @todo: Need to create struct to track the entry time for each
481 * instruction. */
482 Stats::VectorDistribution<> queueResDist;
482// Stats::VectorDistribution<> queueResDist;
483 /** Distribution of the number of instructions issued. */
484 Stats::Distribution<> numIssuedDist;
485 /** Distribution of the cycles it takes to issue an instruction.
486 * @todo: Need to create struct to track the ready time for each
487 * instruction. */
483 /** Distribution of the number of instructions issued. */
484 Stats::Distribution<> numIssuedDist;
485 /** Distribution of the cycles it takes to issue an instruction.
486 * @todo: Need to create struct to track the ready time for each
487 * instruction. */
488 Stats::VectorDistribution<> issueDelayDist;
488// Stats::VectorDistribution<> issueDelayDist;
489
490 /** Number of times an instruction could not be issued because a
491 * FU was busy.
492 */
493 Stats::Vector<> statFuBusy;
494// Stats::Vector<> dist_unissued;
495 /** Stat for total number issued for each instruction type. */
496 Stats::Vector2d<> statIssuedInstType;
497
498 /** Number of instructions issued per cycle. */
499 Stats::Formula issueRate;
500
501 /** Number of times the FU was busy. */
502 Stats::Vector<> fuBusy;
503 /** Number of times the FU was busy per instruction issued. */
504 Stats::Formula fuBusyRate;
505};
506
507#endif //__CPU_O3_INST_QUEUE_HH__
489
490 /** Number of times an instruction could not be issued because a
491 * FU was busy.
492 */
493 Stats::Vector<> statFuBusy;
494// Stats::Vector<> dist_unissued;
495 /** Stat for total number issued for each instruction type. */
496 Stats::Vector2d<> statIssuedInstType;
497
498 /** Number of instructions issued per cycle. */
499 Stats::Formula issueRate;
500
501 /** Number of times the FU was busy. */
502 Stats::Vector<> fuBusy;
503 /** Number of times the FU was busy per instruction issued. */
504 Stats::Formula fuBusyRate;
505};
506
507#endif //__CPU_O3_INST_QUEUE_HH__