ARM中的預(yù)取命令pld的使用
CPU architecture:ARM920T
本文引用地址:http://m.butianyuan.cn/article/201611/320011.htm最近在分析ARM Linux的copy_from_user,主要功能由__arch_copy_from_user實(shí)現(xiàn),該函數(shù)定義在linux/arch/arm/lib/uaccess.S文件中,使用匯編實(shí)現(xiàn),部分源碼如下:
[plain]view plaincopyprint?
- ENTRY(__arch_copy_from_user)
- stmfdsp!,{r0,r2,r4-r7,lr}
- cmpr2,#4
- blt.cfu_not_enough
- PLD(pld[r1,#0])//因?yàn)楹竺嬉玫絩0和r1,所有進(jìn)行預(yù)讀取,加速存儲(chǔ)器的訪問
- PLD(pld[r0,#0])
- andsip,r0,#3
- bne.cfu_dest_not_aligned
- .cfu_dest_aligned:
- andsip,r1,#3
- bne.cfu_src_not_aligned
- ...
[plain]view plaincopyprint?
- #if__LINUX_ARM_ARCH__>=5
- #definePLD(code...)code
- #else
- #definePLD(code...)
- #endif
功能:cache預(yù)讀?。≒LD,PreLoad),使用pld指示存儲(chǔ)系統(tǒng)從后面幾條指令所指定的存儲(chǔ)器地址讀取,存儲(chǔ)系統(tǒng)可使用這種方法加速以后的存儲(chǔ)器訪問。
格式:pld[Rn,{offset}]
其中:
- Rn 存儲(chǔ)器的基址寄存器。
- Offset 加在Rn上的偏移量。
評(píng)論