arm架構(gòu)的linux內(nèi)核中,clrex指令的作用是什么
《arm architecture reference manual》B2-1292以下簡稱arm arm手冊
本文引用地址:http://m.butianyuan.cn/article/201611/317220.htmThe ClearExclusiveLocal() procedure takes as arguments the processor identifier processorid . The procedure clearsthe local record of processor processorid for which an address has had a request for an exclusive access. It isIMPLEMENTATION DEFINED whether this operation also clears the global record of processor processorid that anaddress has had a request for an exclusive access
該指令的作用就是在獨占訪問結(jié)束時,清除cpu中本地處理器針對某塊內(nèi)存區(qū)域的獨占訪問標(biāo)志(核中的某個狀態(tài)寄存器),以防在未清除時的其他操作,對系統(tǒng)產(chǎn)生影響。對于是否同時清除全局的獨占訪問標(biāo)志,需要在設(shè)計cpu時的架構(gòu)師決定。
2. clrex指令的作用很獨特,在linux內(nèi)核中用在什么地方呢?
用在如下地方:
(1)數(shù)據(jù)中止異常、指令預(yù)取中止異常的處理時調(diào)用
(調(diào)用linaro-aarch64/arch/arm/mm/abort-ev7.s v7_early_abort==》clrex)
(2)從svc模式下的irq異常、未定義指令異常、數(shù)據(jù)中止異常、指令預(yù)取中止異常,處理結(jié)束返回時調(diào)用
(調(diào)用宏:linaro-aarch64/arch/arm/kernel/entry-header.s svc_exit)
(3) 返回到用戶層的快速系統(tǒng)調(diào)用/慢速系統(tǒng)調(diào)用(ret_slow_syscall,ret_fast_syscall==》
調(diào)用宏:linaro-aarch64/arch/arm/kernel/entry-header.s restore_user_regs==》clrex)
(4) run_all_tests 函數(shù)調(diào)用(==》kprobe_arm_test_cases==》TEST_UNSUPPORTED("clrex") ==》clrex)
該函數(shù)是一個驅(qū)動模塊,可以動態(tài)加載。
如上所示:基本所有的異常都要用到該指令,系統(tǒng)調(diào)用的返回也能用到。
雖然異常和系統(tǒng)調(diào)用的代碼在內(nèi)核中不多,但是當(dāng)內(nèi)核運行起來時,異常和系統(tǒng)調(diào)用的執(zhí)行頻率特別高!
所以該指令還是非常有用的。
評論