- 论坛徽章:
- 0
|
再来分析一下立即数的产生,其寻址方式是这样的:
11 8 7 0
+----------+-------------------------------+
| Rotate | Imm |
+----------+-------------------------------+
[7:0] Unsigned 8 bit immediate value
[11:8] Shift applied to Imm
The immediate operand rotate field is a 4 bit unsigned integer which specifies a shift operation on the 8 bit immediate value. This value is zero extended to 32 bits, and then subject to a rotate right by twice the value in the rotate field. This enables many common constants to be generated, for example all powers of 2
1. 取低8位,先用0扩展为32位数
2. 将所得32位数循环右移 2*Rotate位,Rotate为[11:8]
来分析一句:mov r2, #300。反汇编如下:
8004: e3a02f4b mov r2, #300 ; 0x12c
立即数是直接放在指令内部的。
1. 取其低8位:0x4b
2. 扩展为32位:0x0000 004b
3. 2*Rotate = 2*15 = 30
4. 循环右移30位(相当于左移2位)。即0100 1011 左移2位,得到0001 0010 1100 ,即0x12c,十进制等于300
对于0x53000000的计算方法也是相同的。 mov r1, #0x53000000 这样写确实是可行的。
以上是从http://blog.chinaunix.net/space. ... og&cuid=2055392这个博客中摘取的
按照上面的说明可以推算出0x12c怎么算的
现在小弟的疑问是低8为为0x4b和Rotate[11:8]为0xf,这个从何而知的 |
|