Skip to content

Happy New Moon with Report is an open-source implementation of WebAssembly written entirely in Java. It is typically used to run or test Web Assembly Modules (*.wasm) in Java.

License

fishjd/HappyNewMoonWithReport

Repository files navigation

Happy New Moon with Report

Happy New Moon with Report is an open-source implementation of WebAssembly written entirely in Java for the JVM environment. The goal is to run wasm code on the command line or embedded in a larger application.

Happy New Moon with Report doesn't concern itself with the production of the WASM binary files; these files are produced with another tools such as Emscripten, wabt or binaryen or any of the number of languages that can output to WebAssembly such as Rust.

Happy New Moon With Report fills the same goals as WasmTime for the JVM environment.

Think of Happy New Moon With Report as the Rhino of Web Assembly. Rhino runs JavaScript in Java; Happy New Moon with Report runs WebAssembly in Java.

Happy New Moon With Report has nothing to do with reporting or fireworks.

For a list of Web Assembly languages see: Awesome WASM languages.

The basic use case is:

Wasm wasm = new Wasm("your Web Assembly Module.wasm");
wasm.exports().yourFunction();

A more concrete example.

Load HelloWorld.wasm file and call the HelloWorld() function in Java;

Wasm wasm = new Wasm("HelloWorld.wasm");
System.out.println(wasm.exports().HelloWorld());

Goals

  1. An interpreter of *.wasm files in the Java Language
  2. Code in the Web Assembly Specification language. For example Happy New Moon With Report creates an web assembly full I32 object for the Web Assembly I32 data type. If there is a object in the Web Assembly specification there will be an analogous object in Happy New Moon With Report. Conversion to Java is 'pressed down' as far a possible in the code. This should allow causal readers of the code to understand it with only a beginning understanding of Java.
  3. Testing and Debugging should enable a large insight to the code. Each opcode is implemented individually allowing you to investigate what WebAssembly is doing.
  4. Every object has links to the Web Assembly Specification. This will explain what the code is implementing.
  5. Happy New Moon With Report is only an interpreter. No conversion from text files (.wast) to modules (.wasm).
  6. Easily embeddable in your Java project.
  7. Compatible with the Web Assembly Specification.
  8. Well commented to help casual readers.
  9. Tested with extensive unit tests.

Where to start your journey in the code

Wasm.java

The main object is in Wasm.java.
This opens the wasm module(*.wasm), parses the web assembly sections such as

WasmInstance.Java

The main loop of the interpreter is in WasmInstance.Java. In the execute(BytesFile) function an opcode is decoded and executed.

A unit test on how to load a Web Assembly module and execute a function.

See WasmAdd32Test.Java This will need to be simplified in future revisions, It is currently a bit of a mess.

The wasm module is in the add32 folder.
This folder also contains the wasm text files and notes on the bytes in the wasm module.

Testing the `HelloWorld.wasm' Web Assembly Module in JUnit.

@Test
public void testHelloWorld throws Exception {
	Wasm wasm = new Wasm("HelloWorld.wasm");
	assertEquals("Hello World", wasm.exports().HelloWorld());
}

Similar Projects

WasmTime is same for the Rust language.

For the 'Go' language: Wagon (https://github.com/go-interpreter/wagon).

A Web Assembly virtual Machine written in C/C++: WAVM (https://github.com/WAVM/WAVM).

'Life' is a secure & fast WebAssembly VM built for decentralized applications, written in Go (https://github.com/perlin-network/life).

For a list of Web Assembly Run times at Awesome WASM runtimes.

To compile Java to WebAssembly use ByteCoder

Progress

All I32 and I64 instruction are complete.
F32 Math, Bitwise, and Comparison opcodes completed. Only Conversions remain. F64 Bitwise, Comparison opcodes completed. Math and Conversions remain.

128 opcodes completed.

To do:

Branching opcodes: 9 remaining. Other opcodes: 5 remaining; Floating point opcodes: 42 remaining.

Sections

[Source] (http://webassembly.org/docs/binary-encoding/#module-structure)

Custom (a.k.a Name) section : Completed

Type Section : Completed

Import Section: To Do

Function Section: Completed

Table Section: Completed

Memory Section: Completed

Global Section: Completed

Export Section: Completed

Start Section: Completed

Code Section: See Opcodes list below.

Data Section: To Do

OpCodes Completed

[Source] (https://webassembly.github.io/spec/core/appendix/index-instructions.html)

  • UnReachable 0x00
  • NOP 0x01
  • Block 0x02
  • Loop 0x03
  • If 0x04
  • Else 0x05
  • End 0x0B
  • Br 0x0C
  • Br_if 0x0D
  • Br_table 0x0E
  • Return 0x0F
  • Call 0x10
  • Call_indirect 0x11
  • Drop 0x1A
  • Select 0x1B
  • Get_local 0x20
  • Set_local 0x21
  • Tee_local 0x22
  • Get_global 0x23
  • Set_global 0x24
  • I32_load 0x28
  • I64_load 0x29
  • f32_load 0x2A
  • f64_load 0x2B
  • i32_load8-S 0x2C
  • i32_load8-U 0x2D
  • i32_load16-S 0x2E
  • i32_load16-U 0x2F
  • i64_load8-S 0x30
  • i64_load8-U 0x31
  • i64_load16-S 0x32
  • i64_load16-U 0x33
  • i64_load32-S 0x34
  • i64_load32-U 0x35
  • i32_store 0x36
  • i64_store 0x37
  • f32_store 0x38
  • f64_store 0x39
  • i32_store-8 0x3A
  • i32_store-16 0x3B
  • i64_store-8 0x3C
  • i64_store-16 0x3D
  • i64_store-32 0x3E
  • Current_memory 0x3F
  • Grow_memory 0x40
  • i32_const 0x41
  • i64_const 0x42
  • f32_const 0x43
  • f64_const 0x44
  • i32_eqz 0x46
  • i32_eq 0x47
  • i32_ne 0x48
  • i32_ls_s 0x49
  • i32_gt_s 0x4A
  • i32_gt_u 0x4B
  • i32_lt_s 0x4C
  • i32_lt_u 0x4D
  • i32_gt_s 0x4E
  • i32_gt_u 0x4F
  • i64_eqz 0x50
  • i64_eq 0x51
  • i64_ne 0x52
  • i64_lt_s 0x53
  • i64_lt_u 0x54
  • i64_gt_s 0x55
  • i64_gt_u 0x56
  • i64_lt_s 0x57
  • i64_lt_u 0x58
  • i64_gt_s 0x59
  • i64_gt_u 0x5A
  • f32.eq 0x5B
  • f32.ne 0x5C
  • f32.lt 0x5D
  • f32.gt 0x5E
  • f32.le 0x5F
  • f32.ge 0x60
  • f64.eq 0x61
  • f64.ne 0x62
  • f64.lt 0x63
  • f64.gt 0x64
  • f64.le 0x65
  • f64.ge 0x66
  • i32.clz 0x67
  • i32.ctz 0x68
  • i32.popcnt 0x69
  • i32.add 0x6A
  • i32.sub 0x6B
  • i32.mul 0x6C
  • i32.div_s 0x6D
  • i32.div_u 0x6E
  • i32.rem_s 0x6F
  • i32.rem_u 0x70
  • i32.and 0x71
  • i32.or 0x72
  • i32.xor 0x73
  • i32.shl 0x74
  • i32.shr_s 0x75
  • i32.shr_u 0x76
  • i32.rotl 0x77
  • i32.rotr 0x78
  • i64.clz 0x79
  • i64.ctz 0x7A
  • i64.popcnt 0x7B
  • i64.add 0x7C
  • i64.sub 0x7D
  • i64.mul 0x7E
  • i64.div_s 0x7F
  • i64.div_u 0x80
  • i64.rem_s 0x81
  • i64.rem_u 0x82
  • i64.and 0x83
  • i64.or 0x84
  • i64.xor 0x85
  • i64.shl 0x86
  • i64.shr_s 0x87
  • i64.shr_u 0x88
  • i64.rotl 0x89
  • i64.rotr 0x8A
  • f32.abs 0x8B
  • f32.neg 0x8C
  • f32.ceil 0x8D
  • f32.floor 0x8E
  • f32.trunk 0x8F
  • f32.nearest 0x90
  • f32.sqrt 0x91
  • f32.add 0x92
  • f32.sub 0x93
  • f32.mul 0x94
  • f32.div 0x95
  • f32.min 0x96
  • f32.max 0x97
  • f32.copysign 0x98
  • f64.abs 0x99
  • f64.neg 0x9A
  • f64.ceil 0x9B
  • f64.floor 0x9C
  • f64.trunk 0x9D
  • f64.nearest 0x9E
  • f64.sqrt 0x9F
  • f64.add 0xA0
  • f64.sub 0xA1
  • f64.mul 0xA2
  • f64.div 0xA3
  • f64.min 0xA4
  • f64.max 0xA5
  • f64.copysign 0xA6
  • f32.warp/i64 0xA7
  • f32.trunc_s/f32 0xA8
  • f32.trunc_u/f32 0xA9
  • f32.trunc_s/f64 0xAA
  • f32.trunc_u/f64 0xAB
  • i64.extend_s/i32 0xAC
  • i64.extend_u/i32 0xAD
  • i64.trunc_s/f32 0xAE
  • i64.trunc_u/f32 0xAF
  • i64.trunc_s/f64 0xB0
  • i64.trunc_u/f64 0xB1
  • f32.convert_s/i32 0xB2
  • f32.convert_u/i32 0xB3
  • f32.convert_u/i64 0xB4
  • f32.convert_u/i64 0xB5
  • f32.demote/f64 0xB6
  • f64.convert_s/i32 0xB7
  • f64.convert_u/i32 0xB8
  • f64.convert_s/i64 0xB9
  • f64.convert_u/i64 0xBA
  • f64.promote/f32 0xBB
  • i32.reinterpert/f32 0xBC
  • i64.reinterpert/f64 0xBD
  • f32.reinterpert/i32 0xBD
  • f64.reinterpert/i64 0xBF
  • i32.extend8_s 0xC0
  • i32.extend16_s 0xC1
  • i64.extend8_s 0xC2
  • i64.extend16_s 0xC3
  • i64.extend34_s 0xC4
  • i32.trunc_sat_f32_s 0xFC 0x00
  • i32.trunc_sat_f32_u 0xFC 0x01
  • i32.trunc_sat_f64_s 0xFC 0x02
  • i32.trunc_sat_f64_u 0xFC 0x03
  • i64.trunc_sat_f32_s 0xFC 0x04
  • i64.trunc_sat_f32_u 0xFC 0x05
  • i64.trunc_sat_f64_s 0xFC 0x06
  • i64.trunc_sat_f64_u 0xFC 0x07

About

Happy New Moon with Report is an open-source implementation of WebAssembly written entirely in Java. It is typically used to run or test Web Assembly Modules (*.wasm) in Java.

Topics

Resources

License

Code of conduct

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published