将arm的汇编代码插入C函数,如何插入extern变量?

时间:2014-03-26 09:20:52

标签: c gcc assembly inline-assembly

我有一个C文件f1.c,里面有几个函数。我需要在armv4的汇编代码中编写其中一个函数,然后将它放回到f1.c中。 所以我将汇编代码中我想要的函数解压缩到另一个文件(名为test1.c)并用以下代码编译它:

arm-linux-gnueabi-gcc -S -march=armv4 test1.c 

在test1.c中我有:

extern long int li1, li2, li3;
int main()
{
    iowrite32(li1, li2);
    iowrite32(li3, li1);
    return 0;
}

之后我得到以下代码test1.s:

.arch armv4
.eabi_attribute 27, 3
.fpu vfpv3-d16
.eabi_attribute 20, 1
.eabi_attribute 21, 1
.eabi_attribute 23, 3
.eabi_attribute 24, 1
.eabi_attribute 25, 1
.eabi_attribute 26, 2
.eabi_attribute 30, 6
.eabi_attribute 34, 0
.eabi_attribute 18, 4
.file   "test1.c"
.text
.align  2
.global main
.type   main, %function
main:
    @ Function supports interworking.
    @ args = 0, pretend = 0, frame = 0
    @ frame_needed = 1, uses_anonymous_args = 0
    stmfd   sp!, {fp, lr}
    add fp, sp, #4
    ldr r3, .L2
    ldr r2, [r3, #0]
    ldr r3, .L2+4
    ldr r3, [r3, #0]
    mov r0, r2
    mov r1, r3
    bl  iowrite32
    ldr r3, .L2+8
    ldr r2, [r3, #0]
    ldr r3, .L2
    ldr r3, [r3, #0]
    mov r0, r2
    mov r1, r3
    bl  iowrite32
    mov r3, #0
    mov r0, r3
    sub sp, fp, #4
    ldmfd   sp!, {fp, lr}
    bx  lr
.L3:
    .align  2
.L2:
    .word   li1
    .word   li2
    .word   li3
    .size   main, .-main
    .ident  "GCC: (Ubuntu/Linaro 4.6.3-1ubuntu5) 4.6.3"
    .section    .note.GNU-stack,"",%progbits

问题是我需要将汇编代码(t1.s)放回文件f1.C,所以我使用:

asm volatile( "stmfd    sp!, {fp, lr}\n\t"
              "add  fp, sp, #4\n\t"
              [...]);

但我不知道如何放回指令,例如:      ldr r3,.L2

因为它们引用了外部变量,这些变量位于L2和f1.c的标签下,如果我尝试则不会编译

    "ldr r3, .L2\n\t"

有人能告诉我怎么做吗? 谢谢。

1 个答案:

答案 0 :(得分:0)

最后,我这样做: 而不是:

    "ldr    r3, .L2+4\n\t"

我将变量的方向保存在另一个寄存器中:

    "ldr    r4, =li2\n\t"

然后我将它加载到第一个:

    "ldr    r3, [r4]\n\t"

我不知道这是否是正确答案,但它会按预期编译并运作