First iteration

This commit is contained in:
David Gonzalez Martin 2024-06-20 21:41:20 +02:00
commit e07d65cd54
5 changed files with 2976 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
build/

15
bootstrap/entry.S Normal file
View File

@ -0,0 +1,15 @@
.section .text
.extern entry_point
.global _start
_start:
xor %ebp, %ebp
popq %rdi
mov %rsp, %rsi
and $~0xf, %rsp
pushq %rsp
pushq $0
call entry_point
mov $231, %eax
xor %edi, %edi
syscall

2933
bootstrap/main.cpp Normal file

File diff suppressed because it is too large Load Diff

23
run.sh Executable file
View File

@ -0,0 +1,23 @@
#!/bin/sh
set -ex
mkdir -p build
time clang++ \
-o build/hatch \
bootstrap/main.cpp \
bootstrap/entry.S \
-g \
-std=gnu++23 \
-Wall \
-Wextra \
-Wpedantic \
-Wno-nested-anon-types \
-pedantic \
-ffreestanding \
-nostdlib \
-static \
-fno-exceptions \
-fno-stack-protector \
-ferror-limit=1 \
`#-ftime-report` \
-MJ build/compile_commands.json
gf2 -ex r build/hatch

4
tests/first/main.nat Normal file
View File

@ -0,0 +1,4 @@
fn[cc(.c)] main [export] () s32
{
return 0;
}