Skip to content
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

alloc free creates, memory import support, and more #3

Open
wants to merge 41 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
41 commits
Select commit Hold shift + click to select a range
074e7ed
update .gitignore
leon-thomm Oct 4, 2023
330e369
adding wat files for examples
leon-thomm Oct 3, 2023
07f8e2c
adding some code documentation
leon-thomm Oct 4, 2023
b21048b
rewriting section parsing
leon-thomm Oct 4, 2023
0a03ab5
reorganizing parsers
leon-thomm Oct 4, 2023
b86dd3a
minor parser doc changes
leon-thomm Oct 4, 2023
8abf67f
parser doc fix
leon-thomm Oct 4, 2023
71da83b
undo parser name section parsing fix
leon-thomm Oct 17, 2023
52ed549
redo parser name section parsing fix
leon-thomm Oct 17, 2023
7803e0f
copy paste hell (fix previous commit)
leon-thomm Oct 17, 2023
f8a03ce
Merge branch 'dandelion-dev' into cosmetic-parser-changes
leon-thomm Oct 17, 2023
1700ead
Merge pull request #1 from eth-easl/cosmetic-parser-changes
leon-thomm Oct 17, 2023
76b9e2c
fix old run_manual! usage
leon-thomm Oct 17, 2023
fbe31e2
Merge pull request #2 from eth-easl/cosmetic-parser-changes
leon-thomm Oct 17, 2023
cea4936
add option --no-alloc
leon-thomm Oct 17, 2023
3f3355c
do not overwrite Cargo.toml
leon-thomm Oct 19, 2023
2da921d
prevent IndirectFuncRet dead_code warning
leon-thomm Oct 21, 2023
1f05eed
add option --crate-name
leon-thomm Oct 21, 2023
818cd0d
remove panic handler
leon-thomm Oct 22, 2023
12578a5
improve --crate-name help text
leon-thomm Oct 22, 2023
265ae3e
allow static initialization
leon-thomm Oct 28, 2023
4b601b1
print memory size
leon-thomm Nov 6, 2023
932b252
make WasmModule::new() non-const
leon-thomm Nov 12, 2023
3e32aa1
remove const-friendly memory initialization
leon-thomm Nov 12, 2023
74b8bba
add option --extern-memory
leon-thomm Nov 12, 2023
96fcaef
silence some warnings
leon-thomm Nov 21, 2023
7cdd656
support memory import
leon-thomm Dec 11, 2023
f89337d
remove --extern-memory
leon-thomm Dec 11, 2023
efd9d9f
make memory public
leon-thomm Dec 15, 2023
fcd54b6
update .gitignore
leon-thomm Dec 27, 2023
3d64253
Merge pull request #3 from eth-easl/dandelion-dev
leon-thomm Jan 8, 2024
5c95c7e
add some basic testing
leon-thomm Jan 8, 2024
ce06868
Merge branch 'dandelion-dev'
leon-thomm Jan 8, 2024
438b2d0
remove lock files
leon-thomm Jan 8, 2024
4683a10
update .gitignore
leon-thomm Jan 8, 2024
b97d75f
re-structure integration test
leon-thomm Jan 8, 2024
a5ddcb8
warning message for #2
leon-thomm Jan 11, 2024
117fc87
bring back Cargo.lock
leon-thomm Jan 11, 2024
17e8f57
add option --static-func-rets
leon-thomm Jan 11, 2024
95ed2d8
remove .wat files
leon-thomm Jan 11, 2024
3141ce3
remove unnecessary const
leon-thomm Jan 14, 2024
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
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
*~
/generated
/target
target
.vscode
*.wat
Loading