holey-bytes/hblang/README.md

520 lines
8.7 KiB
Markdown
Raw Normal View History

2024-06-15 08:37:50 +00:00
# HERE SHALL THE DOCUMENTATION RESIDE
2024-06-20 09:18:36 +00:00
## Enforced Political Views
2024-06-15 08:38:16 +00:00
2024-06-20 09:18:36 +00:00
- worse is better
- less is more
- embrace `unsafe {}`
- adhere `macro_rules!`
- pessimization == death (put in `std::pin::Pin` and left with hungry crabs)
- importing external dependencies == death (`fn(dependencies) -> ExecutionStrategy`)
- above sell not be disputed, discussed, or questioned
## What hblang is
Holey-Bytes-Language (hblang for short) (*.hb) is the only true language targeting hbvm byte code. hblang is low level, manually managed, and procedural. Its rumored to be better then writing hbasm and you should probably use it for complex applications.
## What hblang isnt't
hblang knows what it isn't, because it knows what it is, hblang computes this by sub...
## Examples
Examples are also used in tests. To add an example that runs during testing add:
2024-06-15 08:46:53 +00:00
<pre>
2024-06-15 08:49:02 +00:00
#### &lt;name&gt
2024-06-15 08:48:42 +00:00
```hb
&lt;example&gt
```
2024-06-15 08:46:53 +00:00
</pre>
and also:
```rs
<name> => README;
```
to the `run_tests` macro at the bottom of the `src/codegen.rs`.
2024-06-20 09:18:36 +00:00
### Tour Examples
Following examples incrementally introduce language features and syntax.
#### main_fn
2024-06-15 08:37:50 +00:00
```hb
2024-06-20 09:18:36 +00:00
main := fn(): int {
return 1;
2024-06-15 08:37:50 +00:00
}
2024-06-20 09:18:36 +00:00
```
2024-06-15 08:37:50 +00:00
2024-06-20 09:18:36 +00:00
#### arithmetic
```hb
2024-06-15 08:37:50 +00:00
main := fn(): int {
2024-07-19 19:04:22 +00:00
return 10 - 20 / 2 + 4 * (2 + 2) - 4 * 4 + 1
2024-06-20 09:18:36 +00:00
}
```
#### functions
```hb
main := fn(): int {
2024-07-19 19:04:22 +00:00
return add_one(10) + add_two(20)
2024-06-20 09:18:36 +00:00
}
add_two := fn(x: int): int {
2024-07-19 19:04:22 +00:00
return x + 2
2024-06-20 09:18:36 +00:00
}
add_one := fn(x: int): int {
2024-07-19 19:04:22 +00:00
return x + 1
2024-06-15 08:37:50 +00:00
}
```
2024-06-25 17:46:48 +00:00
#### comments
```hb
// commant is an item
main := fn(): int {
// comment is a statement
2024-07-19 19:04:22 +00:00
foo(/* comment is an exprression /* if you are crazy */ */)
return 0
2024-06-25 17:46:48 +00:00
}
2024-07-19 19:04:22 +00:00
foo := fn(comment: void): void return /* comment evaluates to void */
2024-06-25 17:46:48 +00:00
// comments might be formatted in the future
```
2024-06-15 08:37:50 +00:00
#### if_statements
```hb
main := fn(): int {
2024-07-19 19:04:22 +00:00
return fib(10)
2024-06-15 08:37:50 +00:00
}
fib := fn(x: int): int {
if x <= 2 {
2024-07-19 19:04:22 +00:00
return 1
2024-06-15 08:37:50 +00:00
} else {
2024-07-19 19:04:22 +00:00
return fib(x - 1) + fib(x - 2)
2024-06-15 08:37:50 +00:00
}
}
```
2024-06-20 09:18:36 +00:00
#### variables
2024-06-15 08:37:50 +00:00
```hb
main := fn(): int {
2024-07-19 19:04:22 +00:00
ඞ := 1
b := 2
ඞ += 1
return ඞ - b
2024-06-15 08:37:50 +00:00
}
```
2024-06-20 09:18:36 +00:00
#### loops
2024-06-15 08:37:50 +00:00
```hb
main := fn(): int {
2024-07-19 19:04:22 +00:00
return fib(10)
2024-06-15 08:37:50 +00:00
}
2024-06-20 09:18:36 +00:00
fib := fn(n: int): int {
2024-07-19 19:04:22 +00:00
a := 0
b := 1
2024-06-20 09:18:36 +00:00
loop {
2024-07-19 19:04:22 +00:00
if n == 0 break
c := a + b
a = b
b = c
n -= 1
2024-06-15 08:37:50 +00:00
2024-07-19 19:04:22 +00:00
stack_reclamation_edge_case := 0
2024-06-15 08:37:50 +00:00
2024-07-19 19:04:22 +00:00
continue
2024-06-20 09:18:36 +00:00
}
2024-07-19 19:04:22 +00:00
return a
2024-06-15 08:37:50 +00:00
}
```
2024-06-20 09:18:36 +00:00
#### pointers
2024-06-15 08:37:50 +00:00
```hb
main := fn(): int {
2024-07-19 19:04:22 +00:00
a := 1
b := &a
modify(b)
drop(a)
stack_reclamation_edge_case := 0
return *b - 2
2024-06-20 09:18:36 +00:00
}
2024-06-15 08:37:50 +00:00
2024-06-20 09:18:36 +00:00
modify := fn(a: ^int): void {
2024-07-19 19:04:22 +00:00
*a = 2
return
2024-06-15 08:37:50 +00:00
}
2024-06-20 09:18:36 +00:00
drop := fn(a: int): void {
2024-07-19 19:04:22 +00:00
return
2024-06-15 08:37:50 +00:00
}
```
#### structs
```hb
Ty := struct {
a: int,
b: int,
}
Ty2 := struct {
ty: Ty,
c: int,
}
main := fn(): int {
2024-07-19 19:04:22 +00:00
finst := Ty2.{ty: Ty.{a: 4, b: 1}, c: 3}
inst := odher_pass(finst)
2024-06-15 08:37:50 +00:00
if inst.c == 3 {
2024-07-19 19:04:22 +00:00
return pass(&inst.ty)
2024-06-15 08:37:50 +00:00
}
2024-07-19 19:04:22 +00:00
return 0
2024-06-15 08:37:50 +00:00
}
pass := fn(t: ^Ty): int {
2024-07-19 19:04:22 +00:00
.{a, b} := *t
return a - b
2024-06-15 08:37:50 +00:00
}
odher_pass := fn(t: Ty2): Ty2 {
2024-07-19 19:04:22 +00:00
return t
2024-06-15 08:37:50 +00:00
}
```
2024-06-20 09:18:36 +00:00
#### struct_operators
2024-06-15 08:37:50 +00:00
```hb
2024-06-20 09:18:36 +00:00
Point := struct {
x: int,
y: int,
2024-06-15 08:37:50 +00:00
}
2024-06-20 09:18:36 +00:00
Rect := struct {
a: Point,
b: Point,
2024-06-15 08:37:50 +00:00
}
2024-06-20 09:18:36 +00:00
main := fn(): int {
2024-07-19 19:04:22 +00:00
a := Point.(1, 2)
b := Point.(3, 4)
2024-06-20 09:18:36 +00:00
2024-07-19 19:04:22 +00:00
d := Rect.(a + b, b - a)
d2 := Rect.(Point.(0, 0) - b, a)
d2 += d
2024-06-20 09:18:36 +00:00
2024-07-19 19:04:22 +00:00
c := d2.a + d2.b
return c.x + c.y
2024-06-15 08:37:50 +00:00
}
```
2024-06-20 09:18:36 +00:00
#### global_variables
2024-06-15 08:37:50 +00:00
```hb
2024-07-19 19:04:22 +00:00
global_var := 10
2024-06-20 09:18:36 +00:00
2024-07-19 19:04:22 +00:00
complex_global_var := fib(global_var) - 5
2024-06-20 09:18:36 +00:00
fib := fn(n: int): int {
if 2 > n {
2024-07-19 19:04:22 +00:00
return n
2024-06-20 09:18:36 +00:00
}
2024-07-19 19:04:22 +00:00
return fib(n - 1) + fib(n - 2)
2024-06-20 09:18:36 +00:00
}
2024-06-15 08:37:50 +00:00
main := fn(): int {
2024-07-19 19:04:22 +00:00
return complex_global_var
2024-06-15 08:37:50 +00:00
}
2024-06-20 09:18:36 +00:00
```
note: values of global variables are evaluated at compile time
2024-06-15 08:37:50 +00:00
2024-06-20 09:18:36 +00:00
#### directives
```hb
2024-07-19 19:04:22 +00:00
foo := @use("foo.hb")
2024-06-15 08:37:50 +00:00
2024-06-20 09:18:36 +00:00
main := fn(): int {
2024-07-19 19:04:22 +00:00
byte := @as(u8, 10)
same_type_as_byte := @as(@TypeOf(byte), 30)
wide_uint := @as(u32, 40)
truncated_uint := @as(u8, @intcast(wide_uint))
size_of_Type_in_bytes := @sizeof(foo.Type)
align_of_Type_in_bytes := @alignof(foo.Type)
hardcoded_pointer := @as(^u8, @bitcast(10))
ecall_that_returns_int := @eca(int, 1, foo.Type.(10, 20), 5, 6)
return 0
2024-06-15 08:37:50 +00:00
}
2024-07-08 09:00:35 +00:00
// in module: foo.hb
Type := struct {
brah: int,
blah: int,
}
2024-06-20 09:18:36 +00:00
```
2024-06-15 08:37:50 +00:00
2024-07-08 09:00:35 +00:00
- `@use(<string>)`: imports a module based of string, the string is passed to a loader that can be customized, default loader uses following syntax:
- `((rel:|)(<path>)|git:<git-addr>:<path>)`: `rel:` and `''` prefixes both mean module is located at `path` relavive to the current file, `git:` takes a git url without `https://` passed as `git-addr`, `path` then refers to file within the repository
2024-06-20 09:18:36 +00:00
- `@TypeOf(<expr>)`: results into literal type of whatever the type of `<expr>` is, `<expr>` is not included in final binary
- `@as(<ty>, <expr>)`: hint to the compiler that `@TypeOf(<expr>) == <ty>`
- `@intcast(<expr>)`: needs to be used when conversion of `@TypeOf(<expr>)` would loose precision (widening of integers is implicit)
- `@sizeof(<ty>), @alignof(<ty>)`: I think explaining this would insult your intelligence
- `@bitcast(<expr>)`: tell compiler to assume `@TypeOf(<expr>)` is whatever is inferred, so long as size and alignment did not change
- `@eca(<ty>, <expr>...)`: invoke `eca` instruction, where `<ty>` is the type this will return and `<expr>...` are arguments passed to the call
2024-06-15 08:37:50 +00:00
2024-07-02 12:49:05 +00:00
#### c_strings
```hb
2024-07-07 11:42:48 +00:00
str_len := fn(str: ^u8): int {
2024-07-19 19:04:22 +00:00
len := 0
2024-07-07 11:42:48 +00:00
loop if *str == 0 break else {
2024-07-19 19:04:22 +00:00
len += 1
str += 1
2024-07-02 12:49:05 +00:00
}
2024-07-19 19:04:22 +00:00
return len
2024-07-02 12:49:05 +00:00
}
2024-07-07 11:42:48 +00:00
main := fn(): int {
// when string ends with '\0' its a C string and thus type is '^u8'
2024-07-19 19:04:22 +00:00
some_str := "abඞ\n\r\t\{ff}\{fff0f0ff}\0"
len := str_len(some_str)
some_other_str := "fff\0"
lep := str_len(some_other_str)
return lep + len
2024-07-07 11:42:48 +00:00
}
2024-07-02 12:49:05 +00:00
```
2024-07-08 09:00:35 +00:00
#### struct_patterns
```hb
2024-07-19 19:04:22 +00:00
.{fib, fib_iter, Fiber} := @use("fibs.hb")
2024-07-08 09:00:35 +00:00
main := fn(): int {
2024-07-19 19:04:22 +00:00
.{a, b} := Fiber.{a: 10, b: 10}
return fib(a) - fib_iter(b)
2024-07-08 09:00:35 +00:00
}
// in module: fibs.hb
2024-07-19 19:04:22 +00:00
Fiber := struct {a: u8, b: u8}
2024-07-08 09:00:35 +00:00
fib := fn(n: int): int if n < 2 {
2024-07-19 19:04:22 +00:00
return n
2024-07-08 09:00:35 +00:00
} else {
2024-07-19 19:04:22 +00:00
return fib(n - 1) + fib(n - 2)
}
2024-07-08 09:00:35 +00:00
fib_iter := fn(n: int): int {
2024-07-19 19:04:22 +00:00
a := 0
b := 1
2024-07-08 09:00:35 +00:00
loop if n == 0 break else {
2024-07-19 19:04:22 +00:00
c := a + b
a = b
b = c
n -= 1
2024-07-08 09:00:35 +00:00
}
2024-07-19 19:04:22 +00:00
return a
2024-07-08 09:00:35 +00:00
}
```
2024-07-08 16:08:58 +00:00
#### arrays
```hb
main := fn(): int {
2024-07-19 19:04:22 +00:00
arr := [int].(1, 2, 4)
return pass(&arr)
2024-07-08 16:08:58 +00:00
}
pass := fn(arr: ^[int; 3]): int {
2024-07-19 19:04:22 +00:00
return arr[0] + arr[1] + arr[arr[1]]
2024-07-08 16:08:58 +00:00
}
```
2024-06-20 09:18:36 +00:00
### Incomplete Examples
2024-06-15 08:37:50 +00:00
#### comptime_pointers
```hb
main := fn(): int {
2024-07-19 19:04:22 +00:00
$integer := 7
modify(&integer)
return integer
}
modify := fn($num: ^int): void {
2024-07-19 19:04:22 +00:00
$: *num = 0
}
```
2024-06-20 09:18:36 +00:00
#### generic_types
2024-06-15 08:37:50 +00:00
```hb
2024-06-24 15:26:00 +00:00
MALLOC_SYS_CALL := 69
FREE_SYS_CALL := 96
2024-07-19 19:04:22 +00:00
malloc := fn(size: uint, align: uint): ^void return @eca(^void, MALLOC_SYS_CALL, size, align)
free := fn(ptr: ^void, size: uint, align: uint): void return @eca(void, FREE_SYS_CALL, ptr, size, align)
2024-06-24 15:26:00 +00:00
2024-06-20 09:18:36 +00:00
Vec := fn($Elem: type): type {
return struct {
data: ^Elem,
len: uint,
cap: uint,
2024-07-19 19:04:22 +00:00
}
2024-06-20 09:18:36 +00:00
}
2024-07-19 19:04:22 +00:00
new := fn($Elem: type): Vec(Elem) return Vec(Elem).{data: @bitcast(0), len: 0, cap: 0}
2024-06-24 15:26:00 +00:00
deinit := fn($Elem: type, vec: ^Vec(Elem)): void {
2024-06-24 15:45:58 +00:00
free(@bitcast(vec.data), vec.cap * @sizeof(Elem), @alignof(Elem));
2024-07-19 19:04:22 +00:00
*vec = new(Elem)
2024-07-19 11:51:38 +00:00
return
2024-06-24 15:26:00 +00:00
}
push := fn($Elem: type, vec: ^Vec(Elem), value: Elem): ^Elem {
if vec.len == vec.cap {
if vec.cap == 0 {
2024-07-19 19:04:22 +00:00
vec.cap = 1
2024-06-24 15:26:00 +00:00
} else {
2024-07-19 19:04:22 +00:00
vec.cap *= 2
2024-06-24 15:26:00 +00:00
}
2024-07-19 19:04:22 +00:00
new_alloc := @as(^Elem, @bitcast(malloc(vec.cap * @sizeof(Elem), @alignof(Elem))))
if new_alloc == 0 return 0
src_cursor := vec.data
dst_cursor := new_alloc
end := vec.data + vec.len
2024-06-24 15:26:00 +00:00
loop if src_cursor == end break else {
2024-07-19 19:04:22 +00:00
*dst_cursor = *src_cursor
src_cursor += 1
dst_cursor += 1
2024-06-24 15:26:00 +00:00
}
2024-06-24 15:45:58 +00:00
if vec.len != 0 {
2024-07-19 19:04:22 +00:00
free(@bitcast(vec.data), vec.len * @sizeof(Elem), @alignof(Elem))
2024-06-24 15:45:58 +00:00
}
2024-07-19 19:04:22 +00:00
vec.data = new_alloc
2024-06-24 15:26:00 +00:00
}
slot := vec.data + vec.len;
2024-07-19 19:04:22 +00:00
*slot = value
vec.len += 1
return slot
2024-06-24 15:26:00 +00:00
}
2024-06-15 08:37:50 +00:00
main := fn(): int {
2024-07-19 19:04:22 +00:00
vec := new(int)
push(int, &vec, 69)
res := *vec.data
deinit(int, &vec)
return res
2024-06-15 08:37:50 +00:00
}
```
2024-06-24 15:26:00 +00:00
#### generic_functions
```hb
2024-07-19 19:04:22 +00:00
add := fn($T: type, a: T, b: T): T return a + b
2024-06-24 15:26:00 +00:00
main := fn(): int {
2024-07-19 19:04:22 +00:00
return add(u32, 2, 2) - add(int, 1, 3)
2024-06-24 15:26:00 +00:00
}
```
2024-06-20 09:18:36 +00:00
#### fb_driver
2024-06-15 08:37:50 +00:00
```hb
2024-07-19 19:04:22 +00:00
arm_fb_ptr := fn(): int return 100
x86_fb_ptr := fn(): int return 100
2024-06-20 09:18:36 +00:00
check_platform := fn(): int {
2024-07-19 19:04:22 +00:00
return x86_fb_ptr()
2024-06-15 08:37:50 +00:00
}
2024-06-20 09:18:36 +00:00
set_pixel := fn(x: int, y: int, width: int): int {
2024-07-19 19:04:22 +00:00
pix_offset := y * width + x
return 0
2024-06-20 09:18:36 +00:00
}
2024-06-15 08:37:50 +00:00
2024-06-20 09:18:36 +00:00
main := fn(): int {
2024-07-19 19:04:22 +00:00
fb_ptr := check_platform()
width := 100
height := 30
x := 0
y := 0
loop {
if x <= height + 1 {
set_pixel(x, y, width)
x += 1
} else {
set_pixel(x, y, width)
x = 0
y += 1
}
if y == width {
break
}
}
return 0
2024-06-15 08:37:50 +00:00
}
```
2024-06-20 09:18:36 +00:00
### Purely Testing Examples
2024-06-15 08:37:50 +00:00
#### different_types
```hb
Color := struct {
r: u8,
g: u8,
b: u8,
a: u8,
}
Point := struct {
x: u32,
y: u32,
}
Pixel := struct {
color: Color,
point: Point,
}
main := fn(): int {
pixel := Pixel.{
color: Color.{
r: 255,
g: 0,
b: 0,
a: 255,
},
point: Point.{
x: 0,
y: 2,
},
2024-07-19 19:04:22 +00:00
}
soupan := 1
2024-07-07 10:15:48 +00:00
if *(&pixel.point.x + soupan) != 2 {
2024-07-19 19:04:22 +00:00
return 0
2024-06-15 08:37:50 +00:00
}
if *(&pixel.point.y - 1) != 0 {
2024-07-19 19:04:22 +00:00
return 64
2024-06-15 08:37:50 +00:00
}
return pixel.point.x + pixel.point.y + pixel.color.r
2024-07-19 19:04:22 +00:00
+ pixel.color.g + pixel.color.b + pixel.color.a
2024-06-15 08:37:50 +00:00
}
```
2024-07-18 15:55:55 +00:00
#### struct_return_from_module_function
```hb
2024-07-19 19:04:22 +00:00
bar := @use("bar.hb")
2024-07-18 15:55:55 +00:00
main := fn(): int {
2024-07-19 19:04:22 +00:00
return 7 - bar.foo().x - bar.foo().y - bar.foo().z
2024-07-18 15:55:55 +00:00
}
// in module: bar.hb
2024-07-20 16:52:24 +00:00
foo := fn(): Foo {
2024-07-19 19:04:22 +00:00
return .{x: 3, y: 2, z: 2}
2024-07-18 15:55:55 +00:00
}
2024-07-20 16:52:24 +00:00
Foo := struct {x: int, y: u32, z: u32}
2024-07-18 15:55:55 +00:00
```