cmdwin::caln

The cmdwin::caln commands manage cache line operations. They affect memory elements within a designated cache. The following table summarizes these commands.

Table 1. Cache line commands
Command Description
cmdwin::caln::get Displays cache line
cmdwin::caln::flush Flushes cache line
cmdwin::caln::inval Invalidates cache line
cmdwin::caln::lock Locks/unlocks cache line
cmdwin::caln::set Writes specified data to cache line
Syntax
command [<cache ID>] <line> [<count>]
Parameters
<cache ID> 

Optional. Specifies the cache that the command affects, otherwise it affects the default cache.

<line> 

Specifies the cache line to affect.

<count> 

Optional. Specifies the number of cache lines the command affect.

Examples

The following table lists and defines examples of the cmdwin::caln commands.

Table 2. copy Command-line debugger command - Examples
Command Description
cmdwin::caln:get 2 Displays the second cache line.
cmdwin::caln:flush 2 Flushes line 2 of the default cache.
cmdwin::caln:set 2 = 0 1 1 2 3 5 8 13 Sets the contents of cache line two, where the first word has a value of 0, the second word has a value of 1, the third word has a value of 1, the fourth word has a value of 2, and so on.