新聞中心

        EEPW首頁 > 嵌入式系統 > 設計應用 > 有關arm匯編中的align

        有關arm匯編中的align

        作者: 時間:2016-11-20 來源:網絡 收藏
        經常會看到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上的)這樣說:

        本文引用地址:http://www.104case.com/article/201611/318973.htm

        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



        關鍵詞: arm匯編中alig

        評論


        技術專區

        關閉
        主站蜘蛛池模板: 绥中县| 玛多县| 河间市| 杭锦旗| 莱州市| 台北市| 肇州县| 拜城县| 宿迁市| 顺昌县| 涟源市| 棋牌| 宿松县| 沙洋县| 玉林市| 鄂州市| 柳州市| 嘉祥县| 西平县| 黎川县| 平江县| 淮北市| 奎屯市| 曲松县| 海南省| 溧阳市| 阿图什市| 商城县| 武川县| 德钦县| 盘山县| 营山县| 黔西| 余干县| 梧州市| 花莲市| 军事| 萍乡市| 修武县| 绵阳市| 富顺县|