-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathamd64.c
112 lines (91 loc) · 2.24 KB
/
amd64.c
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
/*
* Copyright (c) 2021 Brian Callahan <[email protected]>
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
#include "bfc.h"
void
amd64_prologue(int fd)
{
dputs("\t.text\n", fd);
dputs("\t.p2align 4, 0xcc\n", fd);
dputs("\t.globl\tmain\n", fd);
dputs("\t.type\tmain,@function\n", fd);
dputs("main:\n", fd);
dputs("\tpushq\t%rbp\n", fd);
dputs("\tmovq\t%rsp, %rbp\n", fd);
dputs("\tleaq\ttape(%rip), %r15\n", fd);
}
void
amd64_epilogue(int fd)
{
dputs("\txorl\t%eax, %eax\n", fd);
dputs("\tleaveq\n", fd);
dputs("\tretq\n", fd);
dputs("\t.size\tmain,.-main\n", fd);
dputs("\t.local\ttape\n", fd);
dputs("\t.comm\ttape,65536,1\n", fd);
dputs("\t.end\n", fd);
}
void
amd64_left(int fd)
{
dputs("\tdecq\t%r15\n", fd);
}
void
amd64_right(int fd)
{
dputs("\tincq\t%r15\n", fd);
}
void
amd64_inc(int fd)
{
dputs("\tmovsbl\t(%r15), %eax\n", fd);
dputs("\tincl\t%eax\n", fd);
dputs("\tmovb\t%al, (%r15)\n", fd);
}
void
amd64_dec(int fd)
{
dputs("\tmovsbl\t(%r15), %eax\n", fd);
dputs("\tdecl\t%eax\n", fd);
dputs("\tmovb\t%al, (%r15)\n", fd);
}
void
amd64_getchar(int fd)
{
dputs("\tmovl\t$0, %edi\n", fd);
dputs("\tmovq\t%r15, %rsi\n", fd);
dputs("\tmovl\t$1, %edx\n", fd);
dputs("\tcall\tread@PLT\n", fd);
}
void
amd64_putchar(int fd)
{
dputs("\tmovl\t$1, %edi\n", fd);
dputs("\tmovq\t%r15, %rsi\n", fd);
dputs("\tmovl\t$1, %edx\n", fd);
dputs("\tcall\twrite@PLT\n", fd);
}
void
amd64_open_loop(int fd)
{
dputs("\tmovsbl\t(%r15), %eax\n", fd);
dputs("\tcmpl\t$0, %eax\n", fd);
dputs("\tje\t.LE", fd);
}
void
amd64_close_loop(int fd)
{
dputs("\tjmp\t.LB", fd);
}