commit_impl.hh (2702:8a3ee279559b) commit_impl.hh (2727:91e17c7ee622)
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;

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

199
200 statComBranches
201 .init(cpu->number_of_threads)
202 .name(name() + ".COM:branches")
203 .desc("Number of branches committed")
204 .flags(total)
205 ;
206
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;

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

199
200 statComBranches
201 .init(cpu->number_of_threads)
202 .name(name() + ".COM:branches")
203 .desc("Number of branches committed")
204 .flags(total)
205 ;
206
207 //
208 // Commit-Eligible instructions...
209 //
210 // -> The number of instructions eligible to commit in those
211 // cycles where we reached our commit BW limit (less the number
212 // actually committed)
213 //
214 // -> The average value is computed over ALL CYCLES... not just
215 // the BW limited cycles
216 //
217 // -> The standard deviation is computed only over cycles where
218 // we reached the BW limit
219 //
220 commitEligible
221 .init(cpu->number_of_threads)
222 .name(name() + ".COM:bw_limited")
223 .desc("number of insts not committed due to BW limits")
224 .flags(total)
225 ;
226
227 commitEligibleSamples

--- 1057 unchanged lines hidden ---
207 commitEligible
208 .init(cpu->number_of_threads)
209 .name(name() + ".COM:bw_limited")
210 .desc("number of insts not committed due to BW limits")
211 .flags(total)
212 ;
213
214 commitEligibleSamples

--- 1057 unchanged lines hidden ---