-
Notifications
You must be signed in to change notification settings - Fork 1.4k
add UC_CTL go bindings #2204
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
Open
K4ddate
wants to merge
26
commits into
unicorn-engine:dev
Choose a base branch
from
K4ddate:master
base: dev
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
add UC_CTL go bindings #2204
Changes from 2 commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
16d8d95
update readme
wtdcode b94ff99
add UC_CTL go bindings
2da916c
glib_compat/glib_compact: Clear the buffer in g_hash_table_resize (#2…
MarsDoge 052f33e
Enable install for rust bindings (#2224)
wtdcode cdf38b9
Remove ninja installation from macos runners (#2225)
scribam 8803d46
Fix `read_sprr_perm` for Apple real CPUs and GitHub Actions; enable A…
patryk4815 2e76a45
Fix cmake deprecation warning (#2226)
scribam e9e2d3f
Add support for clangarm64 (#2228)
scribam 869969f
Revert "glib_compat/glib_compact: Clear the buffer in g_hash_table_re…
wtdcode 3132d29
Python bindings: Use ABI3 wheels (#2223)
Antelox 8f29cc9
concurrent control (#2235)
wtdcode 667febe
Sync FAQ
wtdcode bd8dd78
bump 2.1.4
wtdcode 72a37ac
bump consts
wtdcode d515023
Update ChangeLog
wtdcode c0915a7
fix rust bindings
wtdcode efb1354
Also add bindings.rs wrapper
wtdcode 231df7d
update changelog
wtdcode 12d7a52
refactor rust packages
wtdcode d51e192
refactor rust directories
wtdcode 1017230
add a comment
wtdcode d891611
update release ci
wtdcode 1da40fe
Fix incorrect folder name under release
wtdcode 5cc267d
implement glib_random_bytes for msvc
wtdcode 2a2bcc8
fix again
wtdcode b1893ab
add UC_CTL go bindings
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
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
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
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 |
---|---|---|
@@ -1,3 +1,22 @@ | ||
uc_err uc_reg_read_batch_helper(uc_engine *handle, int *regs, uint64_t *val_out, int count); | ||
uc_err uc_reg_write_batch_helper(uc_engine *handle, int *regs, uint64_t *val_in, int count); | ||
uc_err uc_ctl_get_mode_helper(uc_engine *handle, int *mode); | ||
uc_err uc_ctl_get_page_size_helper(uc_engine *handle, uint32_t *ptr); | ||
uc_err uc_ctl_set_page_size_helper(uc_engine *handle, uint32_t page_size); | ||
uc_err uc_ctl_get_arch_helper(uc_engine *handle, int *arch); | ||
uc_err uc_ctl_get_timeout_helper(uc_engine *handle, uint64_t *ptr); | ||
uc_err uc_ctl_exits_enable_helper(uc_engine *handle); | ||
uc_err uc_ctl_exits_disable_helper(uc_engine *handle); | ||
uc_err uc_ctl_get_exits_cnt_helper(uc_engine *handle, size_t *ptr); | ||
uc_err uc_ctl_get_exits_helper(uc_engine *handle, uint64_t *exits, size_t len); | ||
uc_err uc_ctl_set_exits_helper(uc_engine *handle, uint64_t *exits, size_t len); | ||
uc_err uc_ctl_get_cpu_model_helper(uc_engine *handle, int *model); | ||
uc_err uc_ctl_set_cpu_model_helper(uc_engine *handle, int model); | ||
uc_err uc_ctl_remove_cache_helper(uc_engine *handle, uint64_t address, uint64_t end); | ||
uc_err uc_ctl_request_cache_helper(uc_engine *handle, uint64_t address, uc_tb *tb); | ||
uc_err uc_ctl_flush_tb_helper(uc_engine *handle); | ||
uc_err uc_ctl_flush_tlb_helper(uc_engine *handle); | ||
uc_err uc_ctl_tlb_mode_helper(uc_engine *handle, int mode); | ||
uc_err uc_ctl_get_tcg_buffer_size_helper(uc_engine *handle, uint32_t *size); | ||
uc_err uc_ctl_set_tcg_buffer_size_helper(uc_engine *handle, uint32_t size); | ||
uc_err uc_ctl_context_mode_helper(uc_engine *handle, int mode); |
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
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.
Uh oh!
There was an error while loading. Please reload this page.