unidecompiler-plugin-wasm 0.1.1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- unidecompiler_plugin_wasm-0.1.1/PKG-INFO +28 -0
- unidecompiler_plugin_wasm-0.1.1/README.md +13 -0
- unidecompiler_plugin_wasm-0.1.1/pyproject.toml +24 -0
- unidecompiler_plugin_wasm-0.1.1/setup.cfg +4 -0
- unidecompiler_plugin_wasm-0.1.1/src/unidecompiler_plugin_wasm/__init__.py +1 -0
- unidecompiler_plugin_wasm-0.1.1/src/unidecompiler_plugin_wasm/lifter.py +779 -0
- unidecompiler_plugin_wasm-0.1.1/src/unidecompiler_plugin_wasm/module.py +436 -0
- unidecompiler_plugin_wasm-0.1.1/src/unidecompiler_plugin_wasm/plugin.py +51 -0
- unidecompiler_plugin_wasm-0.1.1/src/unidecompiler_plugin_wasm/simulation.py +49 -0
- unidecompiler_plugin_wasm-0.1.1/src/unidecompiler_plugin_wasm/support.py +11 -0
- unidecompiler_plugin_wasm-0.1.1/src/unidecompiler_plugin_wasm.egg-info/PKG-INFO +28 -0
- unidecompiler_plugin_wasm-0.1.1/src/unidecompiler_plugin_wasm.egg-info/SOURCES.txt +14 -0
- unidecompiler_plugin_wasm-0.1.1/src/unidecompiler_plugin_wasm.egg-info/dependency_links.txt +1 -0
- unidecompiler_plugin_wasm-0.1.1/src/unidecompiler_plugin_wasm.egg-info/entry_points.txt +2 -0
- unidecompiler_plugin_wasm-0.1.1/src/unidecompiler_plugin_wasm.egg-info/requires.txt +3 -0
- unidecompiler_plugin_wasm-0.1.1/src/unidecompiler_plugin_wasm.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: unidecompiler-plugin-wasm
|
|
3
|
+
Version: 0.1.1
|
|
4
|
+
Summary: WebAssembly frontend plugin for unidecompiler
|
|
5
|
+
Author-email: Wker <1670133844@qq.com>
|
|
6
|
+
License-Expression: AGPL-3.0-or-later
|
|
7
|
+
Project-URL: Homepage, https://github.com/Wker666/unidecompiler
|
|
8
|
+
Project-URL: Repository, https://github.com/Wker666/unidecompiler
|
|
9
|
+
Project-URL: Issues, https://github.com/Wker666/unidecompiler/issues
|
|
10
|
+
Requires-Python: >=3.11
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
Requires-Dist: unidecompiler<0.2.0,>=0.1.1
|
|
13
|
+
Requires-Dist: wasm<2,>=1.2
|
|
14
|
+
Requires-Dist: wasmtime<40,>=24
|
|
15
|
+
|
|
16
|
+
# unidecompiler-plugin-wasm
|
|
17
|
+
|
|
18
|
+
Frontend plugin for WebAssembly `.wasm` modules. It validates and decodes
|
|
19
|
+
modules with `wasm` and `wasmtime`, then submits neutral thin IR to
|
|
20
|
+
`unidecompiler`.
|
|
21
|
+
|
|
22
|
+
Install with:
|
|
23
|
+
|
|
24
|
+
```sh
|
|
25
|
+
python -m pip install unidecompiler-plugin-wasm
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
The plugin is discovered automatically by compatible CLI and GUI hosts.
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# unidecompiler-plugin-wasm
|
|
2
|
+
|
|
3
|
+
Frontend plugin for WebAssembly `.wasm` modules. It validates and decodes
|
|
4
|
+
modules with `wasm` and `wasmtime`, then submits neutral thin IR to
|
|
5
|
+
`unidecompiler`.
|
|
6
|
+
|
|
7
|
+
Install with:
|
|
8
|
+
|
|
9
|
+
```sh
|
|
10
|
+
python -m pip install unidecompiler-plugin-wasm
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
The plugin is discovered automatically by compatible CLI and GUI hosts.
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "unidecompiler-plugin-wasm"
|
|
7
|
+
version = "0.1.1"
|
|
8
|
+
description = "WebAssembly frontend plugin for unidecompiler"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = "AGPL-3.0-or-later"
|
|
11
|
+
authors = [{ name = "Wker", email = "1670133844@qq.com" }]
|
|
12
|
+
requires-python = ">=3.11"
|
|
13
|
+
dependencies = ["unidecompiler>=0.1.1,<0.2.0", "wasm>=1.2,<2", "wasmtime>=24,<40"]
|
|
14
|
+
|
|
15
|
+
[project.urls]
|
|
16
|
+
Homepage = "https://github.com/Wker666/unidecompiler"
|
|
17
|
+
Repository = "https://github.com/Wker666/unidecompiler"
|
|
18
|
+
Issues = "https://github.com/Wker666/unidecompiler/issues"
|
|
19
|
+
|
|
20
|
+
[project.entry-points."unidecompiler.frontends"]
|
|
21
|
+
wasm = "unidecompiler_plugin_wasm.plugin:WasmFrontendPlugin"
|
|
22
|
+
|
|
23
|
+
[tool.setuptools.packages.find]
|
|
24
|
+
where = ["src"]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
"""Frontend adapter for WebAssembly modules."""
|