aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
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-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-03Make SDL_rotozoomSurface rotate into the correct directionFelix H. Dahlke
2013-10-02fixed 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-02make function pointer aliasing configurableAlon Zakai
2013-10-02Fix 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-02Add -s CASE_INSENSITIVE_FS=1 linker option to allow VFS to lookup files in ↵Jukka Jylänki
case-insensitive mode.
2013-10-01optimize asm function table emittingAlon Zakai
2013-10-01fix C_STRUCT usage in sdlAlon 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-30fix other.test_static_linkAlon 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-30add mouse wheel events support in GLUT libraryAntoine Lambert
2013-09-29Merge pull request #1601 from inolen/idbfsAlon Zakai
NODEFS and IDBFS support
2013-09-27make sure to only fast-path stuff we expectAlon Zakai
2013-09-27improve intertyper profilerAlon Zakai
2013-09-27clean up intertyper paths forkAlon Zakai
2013-09-27fix load fast path regexpAlon Zakai
2013-09-27better relooper load errorAlon Zakai
2013-09-27restructure fast paths code flowAlon Zakai
2013-09-27fast-path simple loadsAlon Zakai
2013-09-27fix fast path regexpAlon Zakai
2013-09-27fast-path simple gepsAlon Zakai
2013-09-27intertyper fast paths setup and proof of conceptAlon Zakai
2013-09-27improve processMathOp quotingAlon Zakai
2013-09-27better check for when things need quotingAlon Zakai
2013-09-27=== in isLocalVarAlon Zakai
2013-09-27 - added idbfs and nodefsAnthony Pesch
- minor coding convention fixes
2013-09-27 - made chdir use FS.chdirAnthony Pesch
- changed direct references to FS.currentPath to use FS.cwd() - fixed mountpoint resolving in mount - added async FS.syncfs
2013-09-26intertyper profilerAlon Zakai
2013-09-26optimize parseLLVMStringAlon Zakai
2013-09-26add total time to html compiler phaseAlon Zakai
2013-09-26optimize makeSignOpAlon Zakai
2013-09-26hackish optimization for pre processing of heap inits, avoid pure numeric ↵Alon Zakai
strings
2013-09-26fix getFastValue regressionAlon Zakai
2013-09-26remove makeGetPos and part of noNeedFirstAlon Zakai
2013-09-26optimize getFastValueAlon Zakai
2013-09-26Merge pull request #1669 from ngld/fix-sscanf-whitespaceAlon Zakai
Fix #1668: whiteSpace in _scanString should use only char codes as keys
2013-09-25Merge pull request #1670 from waywardmonkeys/add-locale-stuffAlon Zakai
Add locale stuff
2013-09-25optimize getFastValueAlon Zakai
2013-09-26Add wprintf, swprintf, vswprintf, vfwprintf, etc.Bruce Mitchener
2013-09-26Implement locale-ignoring strcoll_l.Bruce Mitchener
2013-09-26Add a lot of locale code.Bruce Mitchener
2013-09-25hide output by default in compiler_funcs.html, main use is profilingAlon Zakai
2013-09-25try to load relooper for src dir, if not in expected locationAlon Zakai
2013-09-25add option to run funcs stage in the browserAlon Zakai