ElasticTrace.py (11247:76f75db08e09) ElasticTrace.py (11253:daf9f91b11e9)
1# Copyright (c) 2013 - 2015 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

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

54 depWindowSize = Param.Unsigned(desc="Instruction window size used for " \
55 "recording and processing data " \
56 "dependencies")
57 # The committed instruction count from which to start tracing
58 startTraceInst = Param.UInt64(0, "The number of committed instructions " \
59 "after which to start tracing. Default " \
60 "zero means start tracing from first " \
61 "committed instruction.")
1# Copyright (c) 2013 - 2015 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

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

54 depWindowSize = Param.Unsigned(desc="Instruction window size used for " \
55 "recording and processing data " \
56 "dependencies")
57 # The committed instruction count from which to start tracing
58 startTraceInst = Param.UInt64(0, "The number of committed instructions " \
59 "after which to start tracing. Default " \
60 "zero means start tracing from first " \
61 "committed instruction.")
62
62 # Whether to trace virtual addresses for memory accesses
63 traceVirtAddr = Param.Bool(False, "Set to true if virtual addresses are " \
64 "to be traced.")