On Sun, Apr 5, 2015 at 3:44 AM, Soeren Balko <[email protected]> wrote:
> The use-case would be to test the asmjs-compliant SIMD extensions in > Firefox. My understanding is that emscripten generates code that accesses > the SIMD object outside the asm.js module. > In Firefox Nightly, the SIMD object can be used within asm.js code . Emscripten's SIMD output is fully validating, and it's optimized directly to native SIMD instructions (for Float32x4 and Int32x4, at present). Most of what you can do in asm.js can be accessed from C/C++, with intrinsics or from regular language features. If there's something important in asm.js that isn't covered, we'll probably be interested in finding ways to cover it, since this will usually have many advantages over any kind of validating EM_ASM approach. Dan -- You received this message because you are subscribed to the Google Groups "emscripten-discuss" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. For more options, visit https://groups.google.com/d/optout.
