; --------------------------------------------------------------------------------
; @Title: Example of statistic performance analysis for 68020/32Bit without data tags
; @Description:
;   by using the multiple trace strategy.
;   This strategy tries to find prefetches by looking to the next cycles.
;   If fetching continues after the address, it is assumed that the location
;   was executed. When the next cycle is not fetched, then the access was only
;   a prefetch.
; @Props: NoWelcome
; @Author: -
; @Copyright: (C) 1989-2014 Lauterbach GmbH, licensed for use with TRACE32(R) only
; --------------------------------------------------------------------------------
; $Id: perf_h12.cmm 9825 2016-08-22 11:59:22Z mschaeffner $


; select stack operation mode (so the meassurement stops automatically)
  Analyzer.Mode Stack

; program trigger unit for selective trace
  Analyzer.ReProgram perf_h12.ts

; define prefetch detection strategy
  Analyzer.STATistic.PreFetch OFF
  Analyzer.STATistic.PIPELINE ON

; define sorting mode
  Analyzer.STATistic.Sort Address

; set tags in code
  Break.SetFunc /NPreFetch

  ENDDO

