-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathuser.d
57 lines (47 loc) · 1.2 KB
/
user.d
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
extern (C):
import ldc.attributes;
import ldc.llvmasm;
import common;
extern __gshared ubyte __stack_top;
int syscall(int sysno, int arg0, int arg1, int arg2)
{
// LLVMはmemory clobberを単に無視し、またLDCは常にインラインアセンブラで
// ReadWriteMemoryな関数属性が付与され、これはmemory clobberが付与される
// のと同じ効果があるため `~{memory}` は不要だが、わかりやすさのために
// 残しておく。
return __asm!int(
"ecall",
"={a0},{a0},{a1},{a2},{a3},~{memory}",
arg0, arg1, arg2, sysno
);
}
void putchar(char ch)
{
syscall(SYS_PUTCHAR, ch, 0, 0);
}
int getchar()
{
return syscall(SYS_GETCHAR, 0, 0, 0);
}
noreturn exit()
{
syscall(SYS_EXIT, 0, 0, 0);
for (;;) {}
}
int readfile(const char* filename, char* buf, int len)
{
return syscall(SYS_READFILE, cast(int) filename, cast(int) buf, len);
}
int writefile(const char* filename, const char* buf, int len)
{
return syscall(SYS_WRITEFILE, cast(int) filename, cast(int) buf, len);
}
@section(".text.start")
@naked void start()
{
__asm(`
mv sp, $0
call main
call exit
`, "r", &__stack_top);
}