-
Notifications
You must be signed in to change notification settings - Fork 13
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
Refactor exec_jec #207
Refactor exec_jec #207
Conversation
Added another bugfix that fits nowhere else. |
6d16348
to
f36b6c2
Compare
The lifetime of the error message was tied to the lifetime of the Value.
We have already generalized Arc<Transaction>
Add getters for members that we read. Clarify that the unit of `len` is bits.
f36b6c2
to
b561354
Compare
Rebased on master. Creating the buffers inside the helper methods is much cleaner than passing mutable references. Added assertions that the active read / write frame are large enough. Resolved misunderstanding that jet source / target type is as wide as active read / write frame (actually the relation is type ≤ frame). |
/// ## Panics | ||
/// | ||
/// Active read frame has fewer bits than `bit_width`. | ||
unsafe fn get_input_frame( |
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.
In b561354:
Ok, awesome, this is looking much cleaner.
Should add a ## Safety
section to the doc simply saying that it returns a CFrameItem
which points into the returned Vec
and that the Vec
must outlive the CFrameItem
.
Alternately we could create a new opaque type struct BackedCFrameItem
which holds the Vec
, implements Deref<CFrameItem>
, and which would then ensure that you were obeying the lifetime rules. I think that if you did this, you could eliminate unsafe
from this method.
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.
Ok, will do. I haven't been working much with unsafe, so these comments on how to write unsafe Rust (somewhat) safely are appreciated :)
/// ## Panics | ||
/// | ||
/// Active write frame has fewer bits than `bit_width`. | ||
fn update_active_write_frame(mac: &mut BitMachine, bit_width: usize, buffer: &[UWORD]) { |
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.
In b561354:
Here you still need unsafe
because the passed buffer might now be wide enough for your c_readBit
calls. I think you can add another assert!
that buffer.len()
is the right length to avoid this unsafety.
Split the function into parts: 1. Write input to C read frame 2. Prepare output C write frame 3. Execute jet 4. Read output from C write frame I also find it easier to keep separate input and output buffers. Both buffers are allocated with their final capacity so the performance should be the same. Introduce active_{read, write}_bit_width methods to keep code better readable.
b561354
to
44d20a9
Compare
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.
ACK 44d20a9
A small change that fits into no other PR.