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;

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

284 }
285
286 issueRate
287 .name(name() + ".ISSUE:rate")
288 .desc("Inst issue rate")
289 .flags(total)
290 ;
291 issueRate = iqInstsIssued / cpu->numCycles;
292/*
293 issue_stores
294 .name(name() + ".ISSUE:stores")
295 .desc("Number of stores issued")
296 .flags(total)
297 ;
298 issue_stores = exe_refs - exe_loads;
299*/
300/*
301 issue_op_rate
302 .name(name() + ".ISSUE:op_rate")
303 .desc("Operation issue rate")
304 .flags(total)
305 ;
306 issue_op_rate = issued_ops / numCycles;
307*/
292
293 statFuBusy
294 .init(Num_OpClasses)
295 .name(name() + ".ISSUE:fu_full")
296 .desc("attempts to use FU when none available")
297 .flags(pdf | dist)
298 ;
299 for (int i=0; i < Num_OpClasses; ++i) {
300 statFuBusy.subname(i, opClassStrings[i]);

--- 1088 unchanged lines hidden ---