WebAssembly-Nodejs 작업
Javascript에는 wasm 코드와 함께 작동 할 수있는 API가 많이 있습니다. API는 nodejs에서도 지원됩니다.
시스템에 NODEJS를 설치하십시오. Factorialtest.js 파일을 만듭니다.
아래와 같이 C ++ 팩토리얼 코드를 사용하겠습니다.
int fact(int n) {
if ((n==0)||(n==1))
return 1;
else
return n*fact(n-1);
}
Wasm Explorer를 엽니 다. https://mbebenita.github.io/WasmExplorer/ 아래와 같이-
첫 번째 열에는 C ++ 팩토리얼 함수가 있고 두 번째 열에는 WebAssembly 텍스트 형식이 있고 마지막 열에는 x86 어셈블리 코드가 있습니다.
WebAssembly 텍스트 형식은 다음과 같습니다.
(module
(table 0 anyfunc)
(memory $0 1)
(export "memory" (memory $0))
(export "_Z4facti" (func $_Z4facti))
(func $_Z4facti (; 0 ;) (param $0 i32) (result i32)
(local $1 i32)
(set_local $1(i32.const 1))
(block $label$0
(br_if $label$0
(i32.eq
(i32.or
(get_local $0)
(i32.const 1)
)
(i32.const 1)
)
)
(set_local $1
(i32.const 1)
)
(loop $label$1
(set_local $1
(i32.mul
(get_local $0)
(get_local $1)
)
)
(br_if $label$1
(i32.ne
(i32.or
(tee_local $0
(i32.add
(get_local $0)
(i32.const -1)
)
)
(i32.const 1)
)
(i32.const 1)
)
)
)
)
(get_local $1)
)
)
C ++ 함수 팩트는 "_Z4facti”을 WebAssembly Text 형식으로합니다.
Factorialtest.js
const fs = require('fs');
const buf = fs.readFileSync('./factorial.wasm');
const lib = WebAssembly.instantiate(new Uint8Array(buf)).
then(res => {
for (var i=1;i<=10;i++) {
console.log("The factorial of "+i+" = "+res.instance.exports._Z4facti(i))
}
}
);
명령 줄에서 factorialtest.js 명령 노드를 실행하면 출력은 다음과 같습니다.
C:\wasmnode>node factorialtest.js
The factorial of 1 = 1
The factorial of 2 = 2
The factorial of 3 = 6
The factorial of 4 = 24
The factorial of 5 = 120
The factorial of 6 = 720
The factorial of 7 = 5040
The factorial of 8 = 40320
The factorial of 9 = 362880
The factorial of 10 = 3628800