aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-11-12version 1.7.51.7.5Alon Zakai
2013-11-12ignore first L when demangling, literalness is irrelevant to the main nameAlon Zakai
2013-11-12refactor demanglerAlon Zakai
2013-11-12demangle constructorsAlon Zakai
2013-11-12demangle new and deleteAlon Zakai
2013-11-11version 1.7.41.7.4Alon Zakai
2013-11-11Merge pull request #1774 from fadams/fix-getaddrinfo-null-hintsAlon Zakai
Provided an implementation for gai_strerror and gave getaddrinfo sensibl...
2013-11-11fix joystick browser integrationAlon Zakai
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-11Replaced loop in gai_strerror with writeAsciiToMemory call and made the ↵Fraser Adams
comment around hopefully a little more descriptive
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-10bump EMSCRIPTEN_VERSION in tools/shared.py to 1.7.3Fraser Adams
2013-11-10Changed library.js line 7509 to use hint !== 0 test vice hint != 0Fraser Adams
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-09Provided an implementation for gai_strerror and gave getaddrinfo sensible ↵Fraser Adams
default behaviour when hints is set to NULL. Ideally getaddrinfo should supply multiple addrinfo values when hints is NULL or ai_family is set to AF_UNSPEC but this is a somewhat more complex proposition
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