类似register uint32_t __regPriMask __ASM("primask");的代码分析
代码:
#define __ASM __asm /*!< asm keyword for ARM Compiler */
#define __INLINE __inline /*!< inline keyword for ARM Compiler */
#define __STATIC_INLINE static __inline
/** \brief Set Priority Mask
This function assigns the given value to the Priority Mask Register.
\param [in] priMask Priority Mask
*/
__STATIC_INLINE void __set_PRIMASK(uint32_t priMask)
{
register uint32_t __regPriMask __ASM("primask");
__regPriMask = (priMask);
}
参见armcc.chm文件9.155 Named register variables一节。
9.155 Named register variables
The compiler enables you to access registers of an ARM architecture-based processor or coprocessor using named register variables.
Syntax
register type var-name __asm(reg);type-
is the type of the named register variable.Any type of the same size as the register being named can be used in the declaration of a named register variable. The type can be a structure, but bitfield layout is sensitive to endianness.
var-name-
is the name of the named register variable.
reg-
is a character string denoting the name of a register on an ARM architecture-based processor, or for coprocessor registers, a string syntax that identifies the coprocessor and corresponds with how you intend to use the variable.Registers available for use with named register variables on ARM architecture-based processors are shown in the following table.
Table 9-19 Named registers available on ARM architecture-based processors
| Register | Character string for __asm |
Processors |
|---|---|---|
APSR |
"apsr" |
All processors |
CPSR |
"cpsr" |
All processors, apart from Cortex-M series processors. |
BASEPRI |
"basepri" |
ARMv7-M processors |
BASEPRI_MAX |
"basepri_max" |
ARMv7-M processors |
CONTROL |
"control" |
ARMv6-M and ARMv7-M processors |
DSP |
"dsp" |
ARMv6-M and ARMv7-M processors |
EAPSR |
"eapsr" |
ARMv6-M and ARMv7-M processors |
EPSR |
"epsr" |
ARMv6-M and ARMv7-M processors |
FAULTMASK |
"faultmask" |
ARMv7-M processors |
IAPSR |
"iapsr" |
ARMv6-M and ARMv7-M processors |
IEPSR |
"iepsr" |
ARMv6-M and ARMv7-M processors |
IPSR |
"ipsr" |
ARMv6-M and ARMv7-M processors |
MSP |
"msp" |
ARMv6-M and ARMv7-M processors |
PRIMASK |
"primask" |
ARMv6-M and ARMv7-M processors |
PSP |
"psp" |
ARMv6-M and ARMv7-M processors |
PSR |
"psr" |
ARMv6-M and ARMv7-M processors |
r0 to r12 |
"r0" to "r12" |
All processors |
r13 or sp |
"r13" or "sp" |
All processors |
r14 or lr |
"r14" or "lr" |
All processors |
r15 or pc |
"r15" or "pc" |
All processors |
SPSR |
"spsr" |
All processors, apart from Cortex-M series processors. |
XPSR |
"xpsr" |
ARMv6-M and ARMv7-M processors |
Table 9-20 Named registers available on targets with floating-point hardware
| Register | Character string for __asm |
|---|---|
FPSID |
"fpsid" |
FPSCR |
"fpscr" |
FPEXC |
"fpexc" |
FPINST |
"fpinst" |
FPINST2 |
"fpinst2" |
FPSR |
"fpsr" |
MVFR0 |
"mvfr0" |
MVFR1 |
"mvfr1" |
Note
Usage
Note
A global named register variable is global to the source file in which it is declared, not global to the program. It has no effect on other files, unless you use multifile compilation or you declare it in a header file.
Restrictions
r0 is always used to return result values from functions even if it is declared as a named register variable.r12, tools such as linkers do not change register usage in object files. The AAPCS reserves r12 as the inter-procedural scratch register. You must not declare r12 as a named register variable if you require its value to be preserved across function calls.Examples
apsr is declared as a named register variable for the "apsr" register:register unsigned int apsr __asm("apsr");
apsr = ~(~apsr | 0x40);
MRS r0,APSR ; formerly CPSR BIC r0,r0,#0x40 MSR CPSR_c, r0
PMCR is declared as a register variable associated with coprocessor cp15, with CRn = c9, CRm = c12, opcode1 = 0, and opcode2 = 0, in an MCR or an MRC instruction:register unsigned int PMCR __asm("cp15:0:c9:c12:0");
__inline void __reset_cycle_counter(void)
{
PMCR = 4;
}
__reset_cycle_counter PROC
MOV r0,#4
MCR p15,#0x0,r0,c9,c12,#0
BX lr
ENDP
cp15_control is declared as a register variable for accessing a coprocessor register. This example enables the MMU using CP15:register unsigned int cp15_control __asm("cp15:0:c1:c0:0");
cp15_control |= 0x1;
MRC p15,#0x0,r0,c1,c0,#0 ORR r0,r0,#1 MCR p15,#0x0,r0,c1,c0,#0
_msp, _control and _psp as named register variables to set up stack pointers:register unsigned int _control __asm("control");
register unsigned int _msp __asm("msp");
register unsigned int _psp __asm("psp");void init(void)
{
_msp = 0x30000000; // set up Main Stack Pointer
_control = _control | 3; // switch to User Mode with Process Stack
_psp = 0x40000000; // set up Process Stack Pointer
}
init MOV r0,#0x30000000 MSR MSP,r0 MRS r0,CONTROL ORR r0,r0,#3 MSR CONTROL,r0 MOV r0,#0x40000000 MSR PSP,r0 BX lr
类似register uint32_t __regPriMask __ASM("primask");的代码分析的更多相关文章
- wifi display代码 分析
转自:http://blog.csdn.net/lilian0118/article/details/23168531 这一章中我们来看Wifi Display连接过程的建立,包含P2P的部分和RTS ...
- Linux内核中的GPIO系统之(3):pin controller driver代码分析
一.前言 对于一个嵌入式软件工程师,我们的软件模块经常和硬件打交道,pin control subsystem也不例外,被它驱动的硬件叫做pin controller(一般ARM soc的datash ...
- Linux时间子系统之(十七):ARM generic timer驱动代码分析
专题文档汇总目录 Notes:ARM平台Clock/Timer架构:System counter.Timer以及两者之间关系:Per cpu timer通过CP15访问,System counter通 ...
- CC2431 代码分析③-忍辱负重的CC2430
这节主要分析CC2430的代码,是参考节点的代码,协调器代码我们放到最后分析. 代码分析的原则是事件为导向,我们从CC2431 盲节点code的分析中发现CC2431 向CC2430参考节点发送的信息 ...
- start_kernel之前的汇编代码分析
start_kernel之前的汇编代码分析 Boot中执行下面两句话之后,进入uclinux内核. theKernel = (void (*)(int, int, unsigned int))((ui ...
- C++反汇编代码分析–函数调用
转载:http://shitouer.cn/2010/06/method-called/ 代码如下:#include “stdlib.h” int sum(int a,int b,int m,int ...
- Linux时间子系统(十七) ARM generic timer驱动代码分析
一.前言 关注ARM平台上timer driver(clocksource chip driver和clockevent chip driver)的驱动工程师应该会注意到timer硬件的演化过程.在单 ...
- STM32F103 ucLinux开发之二(内核启动汇编代码分析)
start_kernel之前的汇编代码分析 Boot中执行下面两句话之后,进入uclinux内核. theKernel = (void (*)(int, int, unsigned int))((ui ...
- Linux内核中的GPIO系统之(3):pin controller driver代码分析--devm_kzalloc使用【转】
转自:http://www.wowotech.net/linux_kenrel/pin-controller-driver.html 一.前言 对于一个嵌入式软件工程师,我们的软件模块经常和硬件打交道 ...
随机推荐
- .net core系列之《.net core中使用MySql以及Dapper》
当我们决定使用.Net Core开发的时候,就放弃使用SqlServer的打算吧.那应该选择哪个数据库呢?一般选择MySql的比较多. 接下来我们来演示在.Net Core中使用MySQL吧. 1.原 ...
- C# 多维数组 交错数组的区别,即 [ , ] 与 [ ][ ]的区别
多维数组的声明 在声明时,必须指定数组的长度,格式为 type [lenght ,lenght ,lengh, ... ] int [,] test1 = new int [3,3]; 或声明时即赋值 ...
- rsync- sersync -inotify
Rsync简介 Rsync是一款优秀的.快速的.多功能的本地或远程数据镜像同步备份工具.适用于unix/linux/windows等多种平台 从软件的名称Rsync(Remote Rynhroniza ...
- EXP-00032: Non-DBAs may not export other users
Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bit ProductionWith the P ...
- 微软报表A4纸大小规则
总页宽:21cm,总页高:29.7cm 上下左右边距均为2.5cm 页眉页脚均为0.75cm 正文内容宽:16cm,高23.2cm
- 1、Node.js 我的开始+安装
内容:为什么开始学习node.js,需要安装哪些东西,及其安装过程 node.js的学习是按照菜鸟教程的node.js教程学习,学习这项技术主要是因为需要使用. 需要安装的东西:解释器,IDE(集成开 ...
- python内置模块(三)
hashlib模块 通过一个函数,把任意长度的数据转换为一个长度固定的数据串(通常用16进制的字符串表示). Python2中使用hashlib: import hashlib m = hashlib ...
- 安装chrome jsonView插件
1.打开 https://github.com : 2.搜索 jsonView 链接:https://github.com/search?utf8=%E2%9C%93&q=jsonview: ...
- PHP------TP命名空间
命名空间: 相当于一个虚拟的目录 正常管理文件使用文件夹--物理区分 TP框架的初始命名空间是:ThinkPHP\Library 在TP框架下命名空间里面使用\代表的是初始命名空间(ThinkPHP\ ...
- 34、springboot的热部署
热部署 在开发中我们修改一个Java文件后想看到效果不得不重启应用,这导致大量时间花费, 我们希望不重启应用的情况下,程序可以自动部署(热部署).有以下四种情况,如何能实现热部署. 1.模板引擎 在S ...