comm_monitor.cc (11847:22d08b519cb0) comm_monitor.cc (11848:f438fcbab00e)
1/*
2 * Copyright (c) 2012-2013, 2015 ARM Limited
3 * Copyright (c) 2016 Google Inc.
4 * All rights reserved.
5 *
6 * The license below extends only to copyright in the software and shall
7 * not be construed as granting a license to any other intellectual
8 * property including but not limited to intellectual property relating

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

485 .init(params()->transaction_bins)
486 .name(name() + ".readTransHist")
487 .desc("Histogram of read transactions per sample period")
488 .flags(stats.disableTransactionHists ? nozero : pdf);
489
490 stats.writeTransHist
491 .init(params()->transaction_bins)
492 .name(name() + ".writeTransHist")
1/*
2 * Copyright (c) 2012-2013, 2015 ARM Limited
3 * Copyright (c) 2016 Google Inc.
4 * All rights reserved.
5 *
6 * The license below extends only to copyright in the software and shall
7 * not be construed as granting a license to any other intellectual
8 * property including but not limited to intellectual property relating

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

485 .init(params()->transaction_bins)
486 .name(name() + ".readTransHist")
487 .desc("Histogram of read transactions per sample period")
488 .flags(stats.disableTransactionHists ? nozero : pdf);
489
490 stats.writeTransHist
491 .init(params()->transaction_bins)
492 .name(name() + ".writeTransHist")
493 .desc("Histogram of read transactions per sample period")
493 .desc("Histogram of write transactions per sample period")
494 .flags(stats.disableTransactionHists ? nozero : pdf);
495
496 stats.readAddrDist
497 .init(0)
498 .name(name() + ".readAddrDist")
499 .desc("Read address distribution")
500 .flags(stats.disableAddrDists ? nozero : pdf);
501

--- 50 unchanged lines hidden ---
494 .flags(stats.disableTransactionHists ? nozero : pdf);
495
496 stats.readAddrDist
497 .init(0)
498 .name(name() + ".readAddrDist")
499 .desc("Read address distribution")
500 .flags(stats.disableAddrDists ? nozero : pdf);
501

--- 50 unchanged lines hidden ---