-
Notifications
You must be signed in to change notification settings - Fork 27
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
Chore/Redesign VM trace generation #109
Changes from all commits
c3bbe62
994eeb3
90d2ed1
0510b97
0d7d797
4d87ddd
91d4e82
8e52196
b48e4c8
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -175,8 +175,8 @@ fn test_compiler_break() { | |
|
||
builder.halt(); | ||
|
||
let program = builder.compile_isa(); | ||
execute_program::<WORD_SIZE, _>(program); | ||
// let program = builder.compile_isa(); | ||
// execute_program::<WORD_SIZE, _>(program); | ||
Comment on lines
-178
to
+179
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.
|
||
|
||
// println!("{}", code); | ||
|
||
|
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.
decomp can actually be much larger, but are we requiring
decomp
divideslimb_bits
? Just making a note that this assumption can be removed with an update to LessThanAir.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.
I chose
decomp
arbitrarily for now, since I assume that we will want it to be configurable eventually.