关于arm7汇编指令中的BL的问题。

Jamie   2007-8-4 11:03 楼主
我在看一个ADS自带的swi的例子时,遇到了这么一个问题:

vec = (routine - (unsigned)vector - 8) >> 2;

这句话老师告诉我是为了算出软中断处理程序距软中断向量的相对位置。
然后我问为什么减8,再右移两位。在arm手册中找到了,关于bl:


Specifies the address to branch to. The branch target address is calculated by:
1. Sign-extending the 24-bit signed (two's complement) immediate to 32 bits.
2. Shifting the result left two bits.
3. Adding this to the contents of the PC, which contains the address of the branch instruction plus 8.

我理解的是把"bl address"中的 addr 取出来先扩展成32位,再左移两位,再加到pc上,再加8。
我想问的是:是不是我们写"bl address"这条指令后,编译时,编译器就把 addr 就做了扩展,左移的操作,当执行软中断时,把 addr 取出来,加到pc中,再加8,就跳转到软中断处理程序了,是这个样子吗?如果是的话,编译器为什么做这一系列的操作,有什么好处吗?

回复评论 (1)

ARM是RISC CPU,所有指令等长---32bit。要在32bit内容纳一条BL指令,而这条BL指令不仅包含操作码还包含操作数(这里是地址),因此显然这个操作数要少于32bit,因此要牺牲几个位。
点赞  2007-8-4 21:00
电子工程世界版权所有 京B2-20211791 京ICP备10001474号-1 京公网安备 11010802033920号
    写回复