在线咨询
eetop公众号 创芯大讲堂 创芯人才网
切换到宽版

EETOP 创芯网论坛 (原名:电子顶级开发网)

手机号码,快捷登录

手机号码,快捷登录

找回密码

  登录   注册  

快捷导航
搜帖子
查看: 2425|回复: 0

[讨论] arm汇编的.align

[复制链接]
发表于 2012-7-19 23:18:09 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。

您需要 登录 才可以下载或查看,没有账号?注册

x
经常会看到arm-linux汇编中有如下的指令:
  .align n
  它的含义就是使得下面的代码按一定规则对齐,.align n 指令的对齐值有两种方案,n 或 2^n ,各种平台最初的汇编器一般都不是gas,采取方案1或2的都很多,gas的目标是取代原来的汇编器,必然要保持和原来汇编器的兼容,因此在gas中如何解释 .align指令会显得有些混乱,原因在于保持兼容。
  arm-linu是按照2^n的方案对齐的,需要说明的是这个对齐和ld-script里的对齐不同,不是一会事。下面的英文就不同平台的对齐进行了说明:
  版本2.11.92.0.12的gas的info(Mandrake 8.2上的)这样说:
  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.
  从这段文字来看,ARM的.align 5就是2的5次方对齐,也就是4字节对齐,通过反汇编也可以看出对齐方式:
  .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
  以上就是我在网上找到并总结的有关.align的一些内容
您需要登录后才可以回帖 登录 | 注册

本版积分规则

关闭

站长推荐 上一条 /3 下一条

小黑屋| 关于我们| 联系我们| 在线咨询| 隐私声明| EETOP 创芯网
( 京ICP备:10050787号 京公网安备:11010502037710 )

GMT+8, 2024-4-20 10:13 , Processed in 0.020359 second(s), 7 queries , Gzip On, Redis On.

eetop公众号 创芯大讲堂 创芯人才网
快速回复 返回顶部 返回列表