aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-03-08remove unneeded lineAlon Zakai
2013-03-08add explicit markers in generated code of where functions and asm areAlon Zakai
2013-03-08disable minificationAlon Zakai
2013-03-08do not emit function names on runtime functionsAlon Zakai
2013-03-08handle assigns into globals at the top of asm functions in normalizeAsmAlon Zakai
2013-03-08fix global minifyingAlon Zakai
2013-03-08initial work on asm.js minifier infrastructureAlon Zakai
2013-03-08run registerize pass lastAlon Zakai
2013-03-08deprecate USE_TYPED_ARRAYS=1 and QUANTUM_SIZE=1Alon Zakai
2013-03-08send only a marker of generated functions to js-optimizer.js; we either know ↵Alon Zakai
the generated functions and send only them, or we don't know them and send all the code, in either case js-optimizer.js does not need a list of generated functions
2013-03-08disable test_openjpeg in s_x_xAlon Zakai
2013-03-07experimental patch to simplify generated function detectionAlon Zakai
2013-03-07Merge branch 'gagern-ldc2' into incomingAlon Zakai
2013-03-07Merge branch 'ldc' of github.com:gagern/emscripten into gagern-ldc2Alon Zakai
2013-03-07Merge pull request #930 from waywardmonkeys/update-catch-undefAlon Zakai
-fcatch-undefined-behavior is deprecated.
2013-03-07support llvm_ctpop_*; fixes #918Alon Zakai
2013-03-07Merge pull request #931 from xxuejie/stdlib_strtodAlon Zakai
Implement strtod in native C code as part of libc.
2013-03-07Merge pull request #932 from tobydox/incomingAlon Zakai
Emit correct code for setjmp() calls when in UNALIGNED_MEMORY mode
2013-03-07FULL_ES2 todoAlon Zakai
2013-03-07use temp buffers for indices in glDrawElements in FULL_ES2Alon Zakai
2013-03-07use temp buffers in FULL_ES2 array buffersAlon Zakai
2013-03-07refactor gl temporary buffer codeAlon Zakai
2013-03-07optimize out creation of new JS objects in each glVertexAttribPointer call ↵Alon Zakai
in FULL_ES2
2013-03-07add test for animation in FULL_ES2Alon Zakai
2013-03-07fix FULL_ES2 bug with not taking into account 'first' in glDrawArraysAlon Zakai
2013-03-07Merge pull request #933 from vvuk/cache-fixAlon Zakai
Fix debug prints in tools/cache.py
2013-03-07gl commentsAlon Zakai
2013-03-07gl whitespace cleanupAlon Zakai
2013-03-07Fix debug prints in tools/cache.pyVladimir Vukicevic
2013-03-06Move strtod, strtold, strtof, strtod_l, strtold_l, atof from JS side to libc ↵1.2.9Xuejie "Rafael" Xiao
side, this can fix double precision bug in original strtod implementation.
2013-03-06simplify loop unrolling of memcpy and memsetAlon Zakai
2013-03-06patch to allow loopvars from memset/cpy in asmAlon Zakai
2013-03-06remove trivial whitespaceAlon Zakai
2013-03-06loopify big memcpys in asmAlon Zakai
2013-03-06loopify big memsets in asmAlon Zakai
2013-03-06fix IE comma issueAlon Zakai
2013-03-06enable pointer lock checkbox by defaultAlon Zakai
2013-03-06Merge pull request #845 from MichaelRiss/FullScreenEnhancementAlon Zakai
Improved fullscreen functionality.
2013-03-06assert on no variable name collisions for #923Alon Zakai
2013-03-06more log output in failed emscripten subprocessesAlon Zakai
2013-03-06Merge pull request #929 from waywardmonkeys/remove-test-OsAlon Zakai
Remove test_Os now that emcc supports -Os.
2013-03-06Merge pull request #848 from manuels/incomingAlon Zakai
Add getopt and getopt_long (libc) support
2013-03-06Merge pull request #920 from waywardmonkeys/fix-include-orderAlon Zakai
Search libcxx includes before others (libc).
2013-03-06update csmith driverAlon Zakai
2013-03-06Merge pull request #925 from waywardmonkeys/implement-llabsAlon Zakai
Implement llabs().
2013-03-06Emit correct code for setjmp() calls when in UNALIGNED_MEMORY modeTobias Doerffel
makeSetValue() returns multiple statements when in UNALIGNED_MEMORY mode and thus have to be separated by commas in this context.
2013-03-07Implement llabs().Bruce Mitchener
2013-03-06-fcatch-undefined-behavior is deprecated.Bruce Mitchener
Use -fsanitize=undefined.
2013-03-06Remove test_Os now that emcc supports -Os.Bruce Mitchener
2013-03-06realize fullscreen options (resize canvas and lock pointer) with checkboxesMichael Riss