112340Szulian@eit.uni-kl.de# This format supports comments using the '#' symbol as the leading
212340Szulian@eit.uni-kl.de# character of the line
312340Szulian@eit.uni-kl.de#
412340Szulian@eit.uni-kl.de# The file format contains [STATE]+ [INIT] [TRANSITION]+ in any order,
512340Szulian@eit.uni-kl.de# where the states are the nodes in the graph, init describes what
612340Szulian@eit.uni-kl.de# state to start in, and transition describes the edges of the graph.
712340Szulian@eit.uni-kl.de#
812340Szulian@eit.uni-kl.de# STATE <id> <duration (ticks)> <type>
912340Szulian@eit.uni-kl.de#
1012340Szulian@eit.uni-kl.de# State IDLE idles
1112340Szulian@eit.uni-kl.de#
1212340Szulian@eit.uni-kl.de# States LINEAR and RANDOM have additional:
1312340Szulian@eit.uni-kl.de# STATE = [LINEAR, RANDOM]
1412340Szulian@eit.uni-kl.de# <id>
1512340Szulian@eit.uni-kl.de# <duration (ticks)>
1612340Szulian@eit.uni-kl.de# <type>
1712340Szulian@eit.uni-kl.de# <percent reads>
1812340Szulian@eit.uni-kl.de# <start addr>
1912340Szulian@eit.uni-kl.de# <end addr>
2012340Szulian@eit.uni-kl.de# <access size (bytes)>
2112340Szulian@eit.uni-kl.de# <min period (ticks)>
2212340Szulian@eit.uni-kl.de# <max period (ticks)>
2312340Szulian@eit.uni-kl.de# <data limit (bytes)>
2412340Szulian@eit.uni-kl.de#
2512340Szulian@eit.uni-kl.de# State TRACE plays back a pre-recorded trace once
2612340Szulian@eit.uni-kl.de#
2712340Szulian@eit.uni-kl.de# Addresses are expressed as decimal numbers, both in the
2812340Szulian@eit.uni-kl.de# configuration and the trace file. The period in the linear and
2912340Szulian@eit.uni-kl.de# random state is from a uniform random distribution over the
3012340Szulian@eit.uni-kl.de# interval. If a specific value is desired, then the min and max can
3112340Szulian@eit.uni-kl.de# be set to the same value.
3212340Szulian@eit.uni-kl.deSTATE 0 100 IDLE
3312340Szulian@eit.uni-kl.deSTATE 1 10000000 LINEAR 100 2147483648 2181038080 64 30000 30000 0
3412340Szulian@eit.uni-kl.deINIT 0
3512340Szulian@eit.uni-kl.deTRANSITION 0 1 1
3612340Szulian@eit.uni-kl.deTRANSITION 1 0 1
37