-
-
Notifications
You must be signed in to change notification settings - Fork 341
Initial pass at new host ABI #7795
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Changes from 1 commit
Commits
Show all changes
14 commits
Select commit
Hold shift + click to select a range
47286b0
Add host_abi.zig
rtfeldman f53d97c
Use explicit env pointer
rtfeldman 6664b2f
fix typo
rtfeldman 324c028
Use comptime for RocCall and RocOps
rtfeldman be5f68c
Revise doc comment
rtfeldman e528bbf
Update some doc comments
rtfeldman b7489e7
Add a comment about zig std
rtfeldman 6cba47b
Use varargs for RocCall
rtfeldman e5ffde4
Add HostFns
rtfeldman abdbb99
We don't know Ret at comptime
rtfeldman 609bac1
Rename ret to answer
rtfeldman b231752
Make RocRealloc extern
rtfeldman 1448adb
fix typo
rtfeldman d078548
Make some other structs `extern`
rtfeldman File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Rename ret to answer
- Loading branch information
commit 609bac1e41a39edf5b38a4c0b0aabd52effc6215
There are no files selected for viewing
This file contains hidden or 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 |
---|---|---|
|
@@ -68,7 +68,7 @@ pub fn RocOps(comptime CallEnv: type, comptime HostFns: type) type { | |
pub const RocAlloc = struct { | ||
alignment: usize, | ||
length: usize, | ||
ret: *anyopaque, | ||
answer: *anyopaque, | ||
rtfeldman marked this conversation as resolved.
Show resolved
Hide resolved
|
||
}; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This is a bit different from how we're doing it in the Rust compiler. Some notes:
|
||
|
||
/// When RocOps.roc_dealloc gets called, it will be passed one of these. | ||
|
@@ -87,7 +87,7 @@ pub const RocDealloc = struct { | |
pub const RocRealloc = struct { | ||
rtfeldman marked this conversation as resolved.
Show resolved
Hide resolved
|
||
alignment: usize, | ||
new_length: usize, | ||
ret: *anyopaque, | ||
answer: *anyopaque, | ||
}; | ||
|
||
/// The UTF-8 string message the host receives when a Roc program crashes | ||
|
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Not sure if this helps here since the struct has no padding, but in Zig std lib we've started using an Alignment type that stores the log2 value. It's pretty handy because you only need 6 bits to describe any alignment for a 64-bit address.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice, that's a cool trick! I agree that it probably doesn't help here, but that's a good one to know for future reference. 🤘