Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-10-02 | remove whitespace in call args | Alon Zakai | |
2013-10-02 | remove unnecessary function param coercion parens | Alon Zakai | |
2013-10-02 | remove whitespace in stack ops | Alon Zakai | |
2013-10-02 | bigger var chunks | Alon Zakai | |
2013-10-02 | remove whitespace in misc function stuff | Alon Zakai | |
2013-10-02 | remove whitespace in assignments | Alon Zakai | |
2013-10-02 | remove whitespace in switch | Alon Zakai | |
2013-10-02 | remove whitespace in mathops | Alon Zakai | |
2013-10-02 | remove unnecessary whitespace in while(1) | Alon Zakai | |
2013-10-02 | remove unnecessary whitespace in branches | Alon Zakai | |
2013-10-02 | COMPILER_FASTPATHS option | Alon Zakai | |
2013-10-02 | debugging aid | Alon Zakai | |
2013-10-02 | fast-path simple icmp | Alon Zakai | |
2013-10-02 | fix intertype of comparisons' last parameter | Alon Zakai | |
2013-10-02 | align function tables in non-asm mode | Alon Zakai | |
2013-10-02 | Merge pull request #1693 from sunfishcode/incoming | Alon Zakai | |
Optimize alignment rounding. | |||
2013-10-02 | Merge pull request #1666 from waywardmonkeys/add-mktemp | Alon Zakai | |
Add mktemp | |||
2013-10-02 | Optimize 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-02 | comment on FUNCTION_POINTER_ALIGNMENT | Alon Zakai | |
2013-10-03 | Make SDL_rotozoomSurface rotate into the correct direction | Felix H. Dahlke | |
2013-10-02 | fixed problem where module.exports, which is needed by node.js gets ↵ | Fraser Adams | |
incorrectly minified by Closure. Simple change from module.exports = Module to module['exports'] = Module fixes this. Added simple test case compiling with --O2 -closure 1 to /tests/Module-exports | |||
2013-10-02 | make function pointer aliasing configurable | Alon Zakai | |
2013-10-02 | Fix the handling of uniform arrays in the GL interop layer. In GL, arrays of ↵ | Jukka Jylänki | |
uniforms need to have consecutive locations, i.e. array[x] is at location array[0] + x. The uniform mapping table mechanism in library_gl.js did not take into account that user could do int loc = getUniformLocation("array[0]") and then call glUniform3fv(loc+2, data). In the fix, uniforms are mapped so that arrays will be guaranteed to get consecutive locations. | |||
2013-10-02 | Add -s CASE_INSENSITIVE_FS=1 linker option to allow VFS to lookup files in ↵ | Jukka Jylänki | |
case-insensitive mode. | |||
2013-10-01 | optimize asm function table emitting | Alon Zakai | |
2013-10-01 | fix C_STRUCT usage in sdl | Alon Zakai | |
2013-10-01 | Break 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-30 | fix other.test_static_link | Alon Zakai | |
2013-09-30 | Merge branch 'incoming' of github.com:ngld/emscripten into incoming1.6.4 | Alon Zakai | |
Conflicts: AUTHORS src/library_sdl.js tools/shared.py | |||
2013-09-30 | add mouse wheel events support in GLUT library | Antoine Lambert | |
2013-09-29 | Merge pull request #1601 from inolen/idbfs | Alon Zakai | |
NODEFS and IDBFS support | |||
2013-09-27 | make sure to only fast-path stuff we expect | Alon Zakai | |
2013-09-27 | improve intertyper profiler | Alon Zakai | |
2013-09-27 | clean up intertyper paths fork | Alon Zakai | |
2013-09-27 | fix load fast path regexp | Alon Zakai | |
2013-09-27 | better relooper load error | Alon Zakai | |
2013-09-27 | restructure fast paths code flow | Alon Zakai | |
2013-09-27 | fast-path simple loads | Alon Zakai | |
2013-09-27 | fix fast path regexp | Alon Zakai | |
2013-09-27 | fast-path simple geps | Alon Zakai | |
2013-09-27 | intertyper fast paths setup and proof of concept | Alon Zakai | |
2013-09-27 | improve processMathOp quoting | Alon Zakai | |
2013-09-27 | better check for when things need quoting | Alon Zakai | |
2013-09-27 | === in isLocalVar | Alon Zakai | |
2013-09-27 | - added idbfs and nodefs | Anthony Pesch | |
- minor coding convention fixes | |||
2013-09-27 | - made chdir use FS.chdir | Anthony Pesch | |
- changed direct references to FS.currentPath to use FS.cwd() - fixed mountpoint resolving in mount - added async FS.syncfs | |||
2013-09-26 | intertyper profiler | Alon Zakai | |
2013-09-26 | optimize parseLLVMString | Alon Zakai | |
2013-09-26 | add total time to html compiler phase | Alon Zakai | |
2013-09-26 | optimize makeSignOp | Alon Zakai | |