1. ホーム
  2. assembly

[解決済み] アセンブルmov命令

2022-03-01 20:34:36

質問

cプログラムとアセンブリプログラムを比較して、アセンブリを学習しています。

以下はそのコードです。

.file   "ex3.c"
.section    .rodata
.LC0:
    .string "I am %d years old.\n"
.LC1:
    .string "I am %d inches tall.\n"
    .text
    .globl  main
    .type   main, @function
main:
    pushl   %ebp    //establish stack frame//
    movl    %esp, %ebp //move esp into ebp, all contents saved down stack//
    andl    $-16, %esp //16 from esp for local var space//
    subl    $32, %esp//stack frame reserving - 32 bytes//
    movl    $10, 24(%esp)
    movl    $72, 28(%esp)
    movl    24(%esp), %eax
    movl    %eax, 4(%esp)
    movl    $.LC0, (%esp)
    call    printf
    movl    28(%esp), %eax
    movl    %eax, 4(%esp)
    movl    $.LC1, (%esp)
    call    printf
    movl    $0, %eax
    leave
    ret
    .size   main, .-main
    .ident  "GCC: (Ubuntu 4.8.2-19ubuntu1) 4.8.2"
    .section    .note.GNU-stack,"",@progbits

この行の場合

movl    $10, 24(%esp)

もし私が正しく理解していれば、10の値をespレジスタに移動させると言っていることになります。しかし、24は何をしているのでしょうか?移動させる値は"$"で表すので、espに移動しているとは思えません(と思う)。

どのように解決するのですか?

movl $10,24(%esp)

の意味は、10進10進の長さ(4バイト)のリテラルを、(1)で指されたアドレスで始まる4バイトのメモリ位置に移動させることです。 esp レジスタに10進数24を足したもので、基本的にはローカル変数です。