[Assembly Language] Stack Memory 스택 메모리
Memory Structure 메모리의 구조
http://www.tcpschool.com/c/c_memory_structure
https://hyunable.github.io/2018/01/15/CS-memory/
Stack Frame 스택 프레임
http://www.tcpschool.com/c/c_memory_stackframe
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
%include "io64.inc"
section .text
global CMAIN
CMAIN:
mov rbp, rsp; for correct debugging
; 스택 메모리, 스택 프레임
; 레지스터는 다양한 용도로 사용
; - a b c d 범용 레지스터
; - 포인터 레지스터 (포인터 = 위치를 가리키는!)
; -- ip (Instruction Pointer) : 다음 수행 명령어의 위치
; -- sp (Stack Pointer) : 현재 스택 top 위치(일종의 cursor)
; -- bp (Base Pointer) : 스택 상대주소 계산용
;--------------------------
;push 1
;push 2
;push 3
;pop rax
;pop rbx
;pop rcx
;--------------------------
push rax ;rax값 임시저장
push rbx ;rbx값 임시저장
push 1
push 2
call MAX
PRINT_DEC 8, rax
NEWLINE
add rsp, 16
pop rbx ;rbx값 복원
pop rax ;rax값 복원
xor rax, rax
ret
MAX:
push rbp
mov rbp, rsp
mov rax, [rbp+16]
mov rbx, [rbp+24]
cmp rax, rbx
jg L1
mov rax, rbx
L1:
pop rbp
ret
; [!] 스택(stack)이라는 메모리 영역을 사용
; 함수가 사용하는 일종의 메모장
; - 매개 변수 전달
; - 돌아갈 주소 관리
; 초기화 되지 않은 데이터
;[변수이름] [크기] [개수]`
;[크기] resb(1) resw(2) resd(4) resq(8)
section .data
msg db 'Hello World', 0x00
; 초기화 되지 않은 데이터
;[변수이름] [크기] [개수]`
;[크기] resb(1) resw(2) resd(4) resq(8)
section .bss
e resb 10
|
cs |
'⭐ Programming > Assembly Language' 카테고리의 다른 글
[Assembly Language] Register Basic (0) | 2022.05.23 |
---|---|
[Assembly Language] Data Basic (0) | 2022.05.23 |
[Assembly Language] 함수 기초 (0) | 2022.03.19 |
[Assembly Language] 배열과 주소 (0) | 2022.03.18 |
[Assembly Language] 분기문, IA-32 Register (0) | 2022.03.18 |
댓글
이 글 공유하기
다른 글
-
[Assembly Language] Register Basic
[Assembly Language] Register Basic
2022.05.23 -
[Assembly Language] Data Basic
[Assembly Language] Data Basic
2022.05.23 -
[Assembly Language] 함수 기초
[Assembly Language] 함수 기초
2022.03.19 -
[Assembly Language] 배열과 주소
[Assembly Language] 배열과 주소
2022.03.18