aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-10-02assert in normalizeAsmAlon Zakai
2013-10-02register phi variables in functionAlon Zakai
2013-10-02chunk label init with the restAlon Zakai
2013-10-02todoAlon Zakai
2013-10-02add final return in non-relooped asm.js outputAlon Zakai
2013-10-02run 'last' js optimization phase if asm.js, even if nothing else to runAlon Zakai
2013-10-02remove newlines from function line results, simplify joining themAlon Zakai
2013-10-02remove inter-function indentationAlon Zakai
2013-10-02remove whitespace after switch loopAlon Zakai
2013-10-02remove whitespace in call argsAlon Zakai
2013-10-02remove unnecessary function param coercion parensAlon Zakai
2013-10-02remove whitespace in stack opsAlon Zakai
2013-10-02bigger var chunksAlon Zakai
2013-10-02remove whitespace in misc function stuffAlon Zakai
2013-10-02remove whitespace in assignmentsAlon Zakai
2013-10-02remove whitespace in switchAlon Zakai
2013-10-02remove whitespace in mathopsAlon Zakai
2013-10-02remove unnecessary whitespace in while(1)Alon Zakai
2013-10-02remove unnecessary whitespace in branchesAlon Zakai
2013-10-02COMPILER_FASTPATHS optionAlon Zakai
2013-10-02debugging aidAlon Zakai
2013-10-02fast-path simple icmpAlon Zakai
2013-10-02fix intertype of comparisons' last parameterAlon Zakai
2013-10-02align function tables in non-asm modeAlon Zakai
2013-10-02Merge pull request #1693 from sunfishcode/incomingAlon Zakai
Optimize alignment rounding.
2013-10-02error on linkable modules without asmAlon Zakai
2013-10-02Merge pull request #1666 from waywardmonkeys/add-mktempAlon Zakai
Add mktemp
2013-10-02Optimize alignment rounding.Dan Gohman
Replace x>>2<<2 and x>>3<<3 with x&-4 and x&-8, respectively, since an and is cheaper than two shifts.
2013-10-02comment on FUNCTION_POINTER_ALIGNMENTAlon Zakai
2013-10-02link in files in autodebuggerAlon Zakai
2013-10-02make function pointer aliasing configurableAlon Zakai
2013-10-02Merge pull request #1686 from juj/icase_vfsAlon Zakai
Icase vfs
2013-10-02Add -s CASE_INSENSITIVE_FS=1 linker option to allow VFS to lookup files in ↵Jukka Jylänki
case-insensitive mode.
2013-10-01make function table emitting nicerAlon Zakai
2013-10-01optimize indexize/blockaddrsize in emscripten.pyAlon Zakai
2013-10-01optimize asm function table emittingAlon Zakai
2013-10-01fix C_STRUCT usage in sdlAlon Zakai
2013-10-01disable some recently-changed tests in modes where they need inline js or emccAlon Zakai
2013-10-01test runner commentAlon Zakai
2013-10-01Break up mkstemp impl to provide mktemp impl.Bruce Mitchener
The libcxx test suite wants mktemp(), so provide it by pulling out some of the internals of mkstemp().
2013-09-30update unistd tests to run only on nodeAlon Zakai
2013-09-30run test_fs_nodefs_rw only in nodeAlon Zakai
2013-09-30fix other.test_static_linkAlon Zakai
2013-09-30update test_outlineAlon Zakai
2013-09-30fix sanity.test_emcc_caching (we now have a cache dir earlier on)Alon Zakai
2013-09-30Merge branch 'incoming' of github.com:ngld/emscripten into incoming1.6.4Alon Zakai
Conflicts: AUTHORS src/library_sdl.js tools/shared.py
2013-09-29 - append to Building.COMPILER_TEST_OPTS for unistd testsAnthony Pesch
2013-09-29Merge pull request #1601 from inolen/idbfsAlon Zakai
NODEFS and IDBFS support
2013-09-29 - added basic nodefs r/w testAnthony Pesch
2013-09-29 - added test for FS.syncfs functionalityAnthony Pesch