CommMonitor.py (10615:cd8aae15f89a) CommMonitor.py (10995:a114e2712642)
1# Copyright (c) 2012 ARM Limited
2# All rights reserved.
3#
4# The license below extends only to copyright in the software and shall
5# not be construed as granting a license to any other intellectual
6# property including but not limited to intellectual property relating
7# to a hardware implementation of the functionality of the software
8# licensed hereunder. You may use the software subject to the license

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

105 disable_transaction_hists = Param.Bool(False, "Disable transaction count " \
106 "histograms")
107
108 # address distributions (heatmaps) with associated address masks
109 # to selectively only look at certain bits of the address
110 read_addr_mask = Param.Addr(MaxAddr, "Address mask for read address")
111 write_addr_mask = Param.Addr(MaxAddr, "Address mask for write address")
112 disable_addr_dists = Param.Bool(True, "Disable address distributions")
1# Copyright (c) 2012 ARM Limited
2# All rights reserved.
3#
4# The license below extends only to copyright in the software and shall
5# not be construed as granting a license to any other intellectual
6# property including but not limited to intellectual property relating
7# to a hardware implementation of the functionality of the software
8# licensed hereunder. You may use the software subject to the license

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

105 disable_transaction_hists = Param.Bool(False, "Disable transaction count " \
106 "histograms")
107
108 # address distributions (heatmaps) with associated address masks
109 # to selectively only look at certain bits of the address
110 read_addr_mask = Param.Addr(MaxAddr, "Address mask for read address")
111 write_addr_mask = Param.Addr(MaxAddr, "Address mask for write address")
112 disable_addr_dists = Param.Bool(True, "Disable address distributions")
113
114 # optional stack distance calculator
115 stack_dist_calc = Param.StackDistCalc(NULL, "Stack distance calculator")