Read-Allocate / Write-Allocate
Posted sinferwu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Read-Allocate / Write-Allocate相关的知识,希望对你有一定的参考价值。
1.CPU读Cache时:
●若hit,则CPU直接从Cache中读取数据即可。
●若miss,有两种处理方式:
>Read through,即直接从内存中读取数据;
>Read allocate,先把数据读取到Cache中,再从Cache中读数据。
2.CPU写Cache时:
●若hit,有两种处理方式:
>Write through:把数据同时写到Cache和内存中;
>Write back:先把数据写到Cache中,再通过flush方式写入到内存中。
●若miss,有两种处理方式:
>Write allocate:先把要写的数据载入到Cache中,写Cache,然后再通过flush方式写入到内存中;
>No write allocate:直接把要写的数据写入到内存中。
https://blog.csdn.net/steven_yan_2014/article/details/42101757
AXI4 Memory attributes有: Read-Allocate / Write-Allocate.
以上是关于Read-Allocate / Write-Allocate的主要内容,如果未能解决你的问题,请参考以下文章