-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.s
58 lines (58 loc) · 908 Bytes
/
main.s
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
.file "main.c"
.text
.globl GLOBAL_VAR
.section .rodata
.LC0:
.string "This is the 'GLOBAL_VAR'."
.section .data.rel.local,"aw"
.align 8
.type GLOBAL_VAR, @object
.size GLOBAL_VAR, 8
GLOBAL_VAR:
.quad .LC0
.section .rodata
.LC1:
.string "69"
.text
.globl main
.type main, @function
main:
.LFB0:
.cfi_startproc
endbr64
pushq %rbp
.cfi_def_cfa_offset 16
.cfi_offset 6, -16
movq %rsp, %rbp
.cfi_def_cfa_register 6
movq GLOBAL_VAR(%rip), %rax
movq %rax, %rdi
call puts@PLT
leaq .LC1(%rip), %rax
movq %rax, %rdi
call puts@PLT
movl $0, %eax
popq %rbp
.cfi_def_cfa 7, 8
ret
.cfi_endproc
.LFE0:
.size main, .-main
.ident "GCC: (Ubuntu 11.4.0-1ubuntu1~22.04) 11.4.0"
.section .note.GNU-stack,"",@progbits
.section .note.gnu.property,"a"
.align 8
.long 1f - 0f
.long 4f - 1f
.long 5
0:
.string "GNU"
1:
.align 8
.long 0xc0000002
.long 3f - 2f
2:
.long 0x3
3:
.align 8
4: