This function references the result of performance measurement. [RH850][E1/E2/E20/Full-spec emulator]
[Specification format]
debugger.Performance.Get()
|
[Argument(s)]
None
[Return value]
List of performance measurement information (see the PerformanceInfo class for detail)
[Detailed description]
- | Performance measurement information is shown by the following format. |
[performance-measurement-event-number] [count] [performance-measurement-mode] [performance-measurement-item]
|
[Example of use]
>>>pf = debugger.Performance.Get()
1 2030 MaxCount AllFetchCall
2 3000 MinCount AllFetchBranch
>>>print pf[0].Count
2030
>>>print pf[0].Mode
PerformanceMode.MaxCount
>>>
|