[완료] lea이 이렇게도 쓰이나요?
글쓴이: freestyle / 작성시간: 화, 2008/12/02 - 10:06오후
#include <stdio.h> int func2(int *a, int *b); int main(void) { int a = 3, b = 5; int c; c = func2(&a, &b); printf("%d\n", c); return 0; } int func2(int *a, int *b) { return *a + *b; }
.file "test2.c" .section .rodata .LC0: .string "%d\n" .text .globl main .type main, @function main: pushl %ebp movl %esp, %ebp subl $20, %esp movl $3, -8(%ebp) movl $5, -12(%ebp) leal -12(%ebp), %eax movl %eax, 4(%esp) leal -8(%ebp), %eax movl %eax, (%esp) call func2 movl %eax, -4(%ebp) movl -4(%ebp), %eax movl %eax, 4(%esp) movl $.LC0, (%esp) call printf movl $0, %eax leave ret .size main, .-main .globl func2 .type func2, @function func2: pushl %ebp movl %esp, %ebp movl 8(%ebp), %eax movl (%eax), %edx movl 12(%ebp), %eax movl (%eax), %eax leal (%edx,%eax), %eax popl %ebp ret .size func2, .-func2 .ident "GCC: (GNU) 4.1.2 20070925 (Red Hat 4.1.2-27)" .section .note.GNU-stack,"",@progbits
궁금한 것은 이부분입니다.
leal (%edx,%eax), %eax
edx에 들어있는 정수값과 eax에 들어있는 정수값을 덧셈 연산해 eax에 저장하는 부분인데,
Quote:
4바이트 단위로 된 정수 배열(int array[])의 eax번째 값을 참조하는 경우 (int array[eax]) :AT&T : array(, %eax, 4)
Intel : [eax * 4 + array]위 배열에서 ebx 인덱스에서 시작하여 eax번째 값을 참조하는 경우 (int array[ebx + eax]) :
AT&T : array(%ebx, %eax, 4)
Intel : [ebx + eax * 4 + array]
이것과 같은 것인지요?
여기서는 array도 안 쓰였고, 마지막 자리도 안 쓰였는데 말이죠...
Forums:
다릅니다.
인용한 문구에서 array의 경우 displacement로 사용된 값입니다.
displacement가 없을 경우 두 register를 조합하여 간접 주소 접근을 사용하려면 16-bit x86 assembly에서는 base register와 index register의 조합만 허용했습니다만 32-bit IA-32 assembly에서는 임의의 범용 register간에도 허용하고 있습니다.
인용하신 예제의 경우 displacement값을 사용하지 않는 간접 주소 접근입니다. Intel Assembly로는 "lea eax, [edx + eax]"가 됩니다.
감사합니다~
말씀해 주셔서 'The IA-32 Intel Architecture Software Developer's Manual Volume 2 Instruction Set'을
찾아보니 나와 있네요 ^^;
설명 해 주시지 않았다면 무슨 말인지 몰랐겠지만...
감사합니다.
--------------------------------------
Go to the U-City
----------------------------------------------------------------------------------------
Don't Feed the Trolls!
----------------------------------------------------------------------------------------
댓글 달기