metaonly config ICacheSupport.common$ // module-wide |
|
Common module configuration parameters
DETAILS
All modules have this configuration parameter. Its name
contains the '$' character to ensure it does not conflict with
configuration parameters declared by the module. This allows
new configuration parameters to be added in the future without
any chance of breaking existing modules.
ICacheSupport.inv() // module-wide |
|
Invalidates range of memory
Bool inv(
Ptr blockPtr,
SizeT byteCnt,
Bool wait,
Error.Block *
eb);
ARGUMENTS
blockPtr
start address of range to be invalidated
byteCnt
number of bytes to be invalidated
wait
wait until the operation is completed
eb
error block
DETAILS
Invalidate the range of memory within the specified starting
address and byte count. The range of addresses operated on
gets quantized to whole cache lines in each cache. All lines
in range are invalidated for all the 'type' caches.
RETURNS
true for success; false for error.
ICacheSupport.wait() // module-wide |
|
Wait for a previous cache operation to complete
DETAILS
Wait for the cache wb/wbInv/inv operation to complete. A cache
operation is not truly complete until it has worked its way
through all buffering and all memory writes have landed in the
source memory.
RETURNS
true for success; false for error.
ICacheSupport.wb() // module-wide |
|
Writes a range of memory from all cache(s)
Bool wb(
Ptr blockPtr,
SizeT byteCnt,
Bool wait,
Error.Block *
eb);
ARGUMENTS
blockPtr
start address of range to be invalidated
byteCnt
number of bytes to be invalidated
wait
wait until the operation is completed
eb
error block
DETAILS
Writes the range of memory within the specified starting
address and byte count. The range of addresses operated on
gets quantized to whole cache lines in each cache. All lines
within the range are left valid in the 'type' caches and the data
within the range will be written to the source memory.
RETURNS
true for success; false for error.
ICacheSupport.wbInv() // module-wide |
|
Writes back and invalidates range fo memory
Bool wbInv(
Ptr blockPtr,
SizeT byteCnt,
Bool wait,
Error.Block *
eb);
ARGUMENTS
blockPtr
start address of range to be invalidated
byteCnt
number of bytes to be invalidated
wait
wait until the operation is completed
eb
error block
DETAILS
Writes and invalidates the range of memory within the
specified starting address and byte count. The range of
addresses operated on gets quantized to whole cache lines in
each cache. All lines within the range are written to the
source memory and then invalidated for all 'type' caches.
RETURNS
true for success; false for error.