Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-10-02 | explicitly define setjmp helper vars | Alon Zakai | |
2013-10-02 | fix misc library asm validations | Alon Zakai | |
2013-10-02 | overflow numbers directly in js compiler | Alon Zakai | |
2013-10-02 | when function is actually void, do not capture it's output even if llvm ↵ | Alon Zakai | |
mistakenly bitcasts that way | |||
2013-10-02 | optimize Math.x to Math_x | Alon Zakai | |
2013-10-02 | if not running js opts, ensure a . in asmEnsureFloat immediately | Alon Zakai | |
2013-10-02 | define legalized bitshift vars explicitly | Alon Zakai | |
2013-10-02 | add explicit var to indirectbr | Alon Zakai | |
2013-10-02 | add explicit variable for invoke chunks | Alon Zakai | |
2013-10-02 | add explicit vars for phi dependency breaks | Alon Zakai | |
2013-10-02 | add explicit vars for illegal mathops and landingpad | Alon Zakai | |
2013-10-02 | register phi variables in function | Alon Zakai | |
2013-10-02 | chunk label init with the rest | Alon Zakai | |
2013-10-02 | todo | Alon Zakai | |
2013-10-02 | add final return in non-relooped asm.js output | Alon Zakai | |
2013-10-02 | remove newlines from function line results, simplify joining them | Alon Zakai | |
2013-10-02 | remove inter-function indentation | Alon Zakai | |
2013-10-02 | remove whitespace after switch loop | Alon Zakai | |
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 | |