debugger.Performance.Information
|
This function displays performance measurement information. [RH850][E1/E2/E20/Full-spec emulator]
[Specification format]
debugger.Performance.Information()
|
[Argument(s)]
None
[Return value]
List of performance measurement information (see the PerformanceEventInfo class for detail)
[Detailed description]
- | This function displays software trace information displays in the following format. |
[performance-measurement-event-number] [performance-measurement-name] [state] [start-address] - [end-address]
|
[Example of use]
>>>pi = debugger.Performance.Information()
1 PythonPerformanceMeasurement001 Enable 0x00000200 - 0x00000300
>>>print pi.Enable
True
>>>print pi.StartAddress
0x00000200
>>>
|