Size: a a a

WebAssembly — русскоговорящее сообщество

2019 July 17

k

kolay` in WebAssembly — русскоговорящее сообщество
does quick.js support arm?
источник

P

Parra in WebAssembly — русскоговорящее сообщество
it doesn't depend on the architecture
источник

P

Parra in WebAssembly — русскоговорящее сообщество
that's solved by gcc or clang (or ecmascripten)
источник

P

Parra in WebAssembly — русскоговорящее сообщество
this is the output of a hello world
источник

P

Parra in WebAssembly — русскоговорящее сообщество
источник

ҪҸ

Ҫѐҏӗѫӑ Ҹҋ 🤖 in WebAssembly — русскоговорящее сообщество
i need same thing but for wasm
источник

ҪҸ

Ҫѐҏӗѫӑ Ҹҋ 🤖 in WebAssembly — русскоговорящее сообщество
or just arm baseline compiler or small footprint interpreter
источник

ҪҸ

Ҫѐҏӗѫӑ Ҹҋ 🤖 in WebAssembly — русскоговорящее сообщество
can’t wait for cranelift arm support
источник

MV

Mikhail Voronov in WebAssembly — русскоговорящее сообщество
Parra
it can compile js files into c files embedding the bytecode inside
But it isn't translate or transform js to wasm, is it? It just compiles js engine with embedded js code into wasm and then inside wasm the engine interprets this js code.
источник

MV

Mikhail Voronov in WebAssembly — русскоговорящее сообщество
Parra
no idea about it, do you have references?
источник

P

Parra in WebAssembly — русскоговорящее сообщество
Mikhail Voronov
But it isn't translate or transform js to wasm, is it? It just compiles js engine with embedded js code into wasm and then inside wasm the engine interprets this js code.
it converts js code to binary or c files
источник

P

Parra in WebAssembly — русскоговорящее сообщество
it embeds the bytecode into c files and uses the runtime to launch it
источник

P

Parra in WebAssembly — русскоговорящее сообщество
it can also act as a jit
источник

MV

Mikhail Voronov in WebAssembly — русскоговорящее сообщество
but it seems that NectarJS isn't product ready
источник

P

Parra in WebAssembly — русскоговорящее сообщество
wasm is unrelated but you can compile the c code to wasm with ecmascripten
источник

P

Parra in WebAssembly — русскоговорящее сообщество
Mikhail Voronov
but it seems that NectarJS isn't product ready
quickjs is, it passes all tests from es2019 specification
источник

MV

Mikhail Voronov in WebAssembly — русскоговорящее сообщество
Parra
it embeds the bytecode into c files and uses the runtime to launch it
I mean that there are two ways: 1. you can directly translate a code on some language (not only JS) to wasm like the AssemblyScript approach and 2. you can translate to wasm the interpreter and then run a code on it.
источник

P

Parra in WebAssembly — русскоговорящее сообщество
Parra
wasm is unrelated but you can compile the c code to wasm with ecmascripten
which wasn't possible before (or at least without doing it directly to c)
источник

P

Parra in WebAssembly — русскоговорящее сообщество
Mikhail Voronov
I mean that there are two ways: 1. you can directly translate a code on some language (not only JS) to wasm like the AssemblyScript approach and 2. you can translate to wasm the interpreter and then run a code on it.
you can do both with QuickJS
источник

P

Parra in WebAssembly — русскоговорящее сообщество
you can compile the compiler to wasm and jit js code later on or compile js code to c code from browser
источник