forked from RealNeGate/tilde-backend
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cac638f
commit 8029367
Showing
1 changed file
with
10 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,18 @@ | ||
# FUT | ||
|
||
FUT (pronounced foot) is a new debug format i've started prototyping with a few other peple. for now it's just gonna be random thoughts that i'll organize later. | ||
FUT (pronounced foot) is a new debug format i've started prototyping with a | ||
few other peple. for now it's just gonna be random thoughts that i'll organize | ||
later. | ||
|
||
# Symbol table | ||
# Languages we care about | ||
|
||
Wanna have a few acceleration structures when it comes to the symbol table, one of them being RVA -> Symbol (just gonna sort the RVA Symbol pairs and then one could do a binary search) | ||
C, C++, D, Go, Rust, Odin, Zig, Nim | ||
|
||
# Symbol table | ||
|
||
Wanna have a few acceleration structures when it comes to the symbol table, one of them being RVA -> Symbol (just gonna sort the RVA Symbol pairs and then one could do a binary search) | ||
|
||
# Type system | ||
|
||
Type table is a graph and nodes refer to each other via offsets in the type table, they don't have fixed sizes. There's a hash map that goes from name -> type. | ||
|