I'm trying to run an existing C project in a browser without relying on addons/plugins/etc. Sources are 3MB, resulting compiled bitcode (llvm-link) is 3.5M.
When running the bitcode with lli the memory use is about 150MB, same as when compiling a native ELF binary and running it.
Emscripten (-O2 --closure 0) compiles the bitcode to a 24MB .js file, and when running that with Node.js, I run out of memory (top shows about 2GB of memory use).
As the jslinux demo has shown, it should be possible to interpret native code. It should arguably be easier to interpret compiled bitcode with acceptable performance. My question is whether there is any project that tries to interpret LLVM IR in javascript (as opposed to translating the IR to javascript, like Emscripten, mandreel and others do).