码迷,mamicode.com
首页 > 其他好文 > 详细

Read-Allocate / Write-Allocate

时间:2020-06-12 14:58:22      阅读:67      评论:0      收藏:0      [点我收藏+]

标签:ack   blog   通过   flush   两种   读取   cpu   读取数据   oca   

 

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

标签:ack   blog   通过   flush   两种   读取   cpu   读取数据   oca   

原文地址:https://www.cnblogs.com/sinferwu/p/13098952.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!