パフォーマンス計測の設定を行います。【RH850】【E1/E2/E20/Full-spec emulator/IE850A】
[指定形式]
debugger.Performance.Set(PerformanceCondition)
|
[引数]
[戻り値]
パフォーマンス計測の設定に成功した場合 :パフォーマンス計測イベント番号
パフォーマンス計測の設定に失敗した場合 :None
[詳細説明]
- | PerformanceConditionで指定されている内容に従って,パフォーマンス計測の設定を行います。 |
[使用例]
>>>pf = PerformanceCondition()
>>>pf.StartAddress = 0x1000
>>>pf.EndAddress = 0xffe000
>>>pf.EndData = 0x10
>>>pf.EndPerformanceType = PerformanceType.Read
>>>pf.PerformanceMode = PerformanceMode.MaxCount
>>>pf.PerformanceItem = PerformanceItem.AllFetchBranch
>>>ps = debugger.Performance.Set(pf)
1
>>>print ps
1
>>>
|