aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-11-11version 1.7.31.7.3Alon Zakai
2013-11-11Merge branch 'sdl_joystick' of github.com:jvilk/emscripten into incomingAlon Zakai
2013-11-11remove unnecessary ltoing in benchmark suiteAlon Zakai
2013-11-11Merge branch 'incoming' into f32Alon Zakai
2013-11-11remove asm1f from ALLAlon Zakai
2013-11-11test suite changes for f32 landing: enable float32_precise in all modes, ↵Alon Zakai
disable asm1f (rely on testing in float32_precise and fasta), and mark asm2f as permanent
2013-11-11add option for precise f32 in benchmarksAlon Zakai
2013-11-11coerce to double before converting a float to an i64Alon Zakai
2013-11-11benchmark linpack in both float and double modesAlon Zakai
2013-11-11minify in asm arg coercions that denormalizeAsm generates, to handle ↵Alon Zakai
Math.fround calls
2013-11-11minify in asm var definitions that denormalizeAsm generates, to handle ↵Alon Zakai
Math.fround calls
2013-11-10use writeAsciiToMemory in library.js in more placesAlon Zakai
2013-11-10more precise float testingAlon Zakai
2013-11-10Merge pull request #1779 from juj/fix_test_lua_spacesAlon Zakai
Fix test_lua on Windows buildbot.
2013-11-10Merge pull request #1778 from ToadKing/nanosleep-fixAlon Zakai
nanosleep - don't write to rmtp if it's NULL
2013-11-10Merge pull request #1780 from juj/gles2_less_throwsAlon Zakai
throw() less in GLES2 usage.
2013-11-10Make GL library more spec conformant by not throwing exceptions on errors, ↵Jukka Jylänki
but instead reporting them via glGetError() as the GLES2 spec says. Use the linker flag "-s GL_ASSERTIONS=1" to enable additional debug-time error logging from the GL layer for error reasons.
2013-11-10Fix Makefile in test_lua in the case when make is in a path that contains ↵Jukka Jylänki
spaces (e.g. c:\program files\emscripten\...\mingw32-make).
2013-11-10nanosleep - don't write to rmtp if it's NULLToadKing
2013-11-10[SDL] Joystick API implementation using HTML5 Gamepad APIJohn Vilk
Works in browsers that implement the working draft of the standard (current Chrome / Firefox stable): http://www.w3.org/TR/2012/WD-gamepad-20120529/#gamepad-interface ...and browsers that implement the editor's draft (current Firefox Nightly): https://dvcs.w3.org/hg/gamepad/raw-file/default/gamepad.html#idl-def-Gamepad Contains unit tests for both event types.
2013-11-09add asm2f to ALLAlon Zakai
2013-11-09support inline asm comments; fixes #1766Alon Zakai
2013-11-09Merge pull request #1772 from juj/fix_test_asm_pgo_windowsAlon Zakai
Fix test_asm_pgo on Windows.
2013-11-09make asm2f do full optimization, including minificationAlon Zakai
2013-11-09Fix test_asm_pgo on Windows by using response files. The test failed by ↵Jukka Jylänki
exceeding Windows command line length limitations, giving an error "WindowsError: [Error 87] The parameter is incorrect". Also extend the logging given by EM_BUILD_VERBOSE=3 to print out the compiler invokations.
2013-11-09test both float and double in fastaAlon Zakai
2013-11-09optimize fround polyfill a tiny bitAlon Zakai
2013-11-09Merge pull request #1773 from juj/fix_test_luaAlon Zakai
Fix test_lua on Windows.
2013-11-09Math.* have no side effectsAlon Zakai
2013-11-09consolidate side effect checking codeAlon Zakai
2013-11-09remove unneeded varAlon Zakai
2013-11-09optimize hasSideEffectsAlon Zakai
2013-11-09fix ensureDot logicAlon Zakai
2013-11-09Fix test_lua on Windows when built using mingw32-make. That tool got ↵Jukka Jylänki
confused by a '#' comment at the end of a command line, so move the comment to its own separate line.
2013-11-08emit proper large float constants when js opts are to be runAlon Zakai
2013-11-08fix float/int bitcast optimization to recognize and preserve Math_froundAlon Zakai
2013-11-08fix registerize pass for float32Alon Zakai
2013-11-08initial work for float32 support in js optimizerAlon Zakai
2013-11-08add asm2f test subsuiteAlon Zakai
2013-11-08Merge branch 'incoming' into f32Alon Zakai
Conflicts: src/parseTools.js src/preamble.js
2013-11-08Merge pull request #1767 from waywardmonkeys/update-libcxx1.7.2Alon Zakai
Update libcxx
2013-11-08Merge branch 'master' of github.com:bobroberts177/emscripten into incomingAlon Zakai
2013-11-08Merge pull request #1761 from prenaux/developAlon Zakai
GLUT support for DELETE & BACKSPACE keys ; Fixed lzma.js doit.sh so that it works on Windows ; Removed unnecessary warning in em++ ;
2013-11-08Merge pull request #1764 from juj/name_more_functionsAlon Zakai
Add more names for functions that show up in Firefox profiler as anonymous.
2013-11-08no-op for __builtin_prefetch; fixes #1765Alon Zakai
2013-11-08Merge pull request #1768 from juj/gles2_func_stubsAlon Zakai
GLES2 func stubs.
2013-11-08invalidate calls on conditionals in js optimizer, to avoid eliminating into ↵Alon Zakai
a non-executing code path
2013-11-07Add self to AUTHORSbobroberts177
2013-11-07Implement GLES2 glShaderBinary and glReleaseShaderCompiler functions as ↵Jukka Jylänki
no-op stubs. Add a machinery for glGetError() to report errors generated by the library_gl.js interop layer.
2013-11-07Add more names for functions that show up in Firefox profiler as anonymous.Jukka Jylänki