Skip to content

Extend the C- and JS-APIs #2586

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
merged 26 commits into from
Jul 22, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,14 @@ Current Trunk
Rename old lists to be clearer and more consistent with that, so now there is
"remove list" to remove, "add list" to add, and "only list" which if set means
that only those functions should be instrumented and nothing else.
- Renamed various ambiguous C-API functions for consistency:
- `BinaryenBlockGetChild` to `BinaryenBlockGetChildAt`
- `BinaryenSwitchGetName` to `BinaryenSwitchGetNameAt`
- `BinaryenCallGetOperand` to `BinaryenCallGetOperandAt`
- `BinaryenCallIndirectGetOperand` to `BinaryenCallIndirectGetOperandAt`
- `BinaryenHostGetOperand` to `BinaryenHostGetOperandAt`
- `BinaryenThrowGetOperand` to `BinaryenThrowGetOperandAt`
- `BinaryenTupleMakeGetOperand` to `BinaryenTupleMakeGetOperandAt`

v94
---
Expand Down
1,052 changes: 1,026 additions & 26 deletions src/binaryen-c.cpp

Large diffs are not rendered by default.

794 changes: 773 additions & 21 deletions src/binaryen-c.h

Large diffs are not rendered by default.

Loading