有關(guān)arm匯編中的align
.align n
它的含義就是使得下面的代碼按一定規(guī)則對(duì)齊,.align n 指令的對(duì)齊值有兩種方案,n 或 2^n ,
各種平臺(tái)最初的匯編器一般都不是gas,采取方案1或2的都很多,gas的目標(biāo)是取代原來(lái)的匯編器,
必然要保持和原來(lái)匯編器的兼容,因此在gas中如何解釋 .align指令會(huì)顯得有些混亂,原因在于保持兼容。
arm-linu是按照2^n的方案對(duì)齊的,需要說(shuō)明的是這個(gè)對(duì)齊和ld-script里的對(duì)齊不同,不是一會(huì)事。
下面的英文就不同平臺(tái)的對(duì)齊進(jìn)行了說(shuō)明:
版本2.11.92.0.12的gas的info(Mandrake 8.2上的)這樣說(shuō):
The way the required alignment is specified varies from system to system. For the a29k,
hppa, m68k, m88k, w65, sparc, and Hitachi SH, and i386 using ELF format, the first expression
is the alignment request in bytes. For example `.align 8 advances the location counter until
it is a multiple of 8. If the location counter is already a multiple of 8, no change is needed.
For other systems, including the i386 using a.out format, and the arm and strongarm,
it is the number of low-order zero bits the location counter must have after advancement.
For example `.align 3 advances the location counter until it a multiple of 8.
If the location counter is already a multiple of 8, no change is needed.
從這段文字來(lái)看,ARM的.align 5就是2的5次方對(duì)齊,也就是4字節(jié)對(duì)齊,通過(guò)反匯編也可以看出對(duì)齊方式:
.align 5
stmfd sp!, {r0 - r3, lr}
mov r0, ip
ldmfd sp!, {r0 - r3, pc}^
.align 5
stmfd sp!, {r0 - r3, lr}
mov r0, ip
mov ip, r0
ldmfd sp!, {r0 - r3, pc}^
反匯編:
00000000 <.text>:
0: e92d400f stmdb sp!, {r0, r1, r2, r3, lr}
4: e1a0000c mov r0, ip
8: e8fd800f ldmia sp!, {r0, r1, r2, r3, pc}^
...
20: e92d400f stmdb sp!, {r0, r1, r2, r3, lr}
24: e1a0000c mov r0, ip
28: e1a0c000 mov ip, r0
2c: e8fd800f ldmia sp!, {r0, r1, r2, r3, pc}^
30: e1a00000 nop (mov r0,r0)
34: e1a00000 nop (mov r0,r0)
38: e1a00000 nop (mov r0,r0)
3c: e1a00000 nop (mov r0,r0)
一些忠告:
In the future, everytime when you build an elf file, you need meantime created your map file.
And then you will avoid mistakes like this align.
Also, please also pick up some linker script knowlege part. For embedded system,
we frequently play the linker script to tune an image, for example,
align some special section and so on for protection or/and cache purpose.
wish helpful
評(píng)論