aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2013-10-25fround on numerical constants, and fix some related parse issuesAlon Zakai
2013-10-25use fround in asm initializers and coercionsAlon Zakai
2013-10-25move to FROUND option for Math.froundAlon Zakai
2013-10-25handle internal illegal iX fields in calculateStructAlignmentAlon Zakai
2013-10-24handle empty inline asms; fixes #1729Alon Zakai
2013-10-24map depth and stencil buffers activation from GLFW to WebGLAntoine Lambert
2013-10-24map depth and stencil buffers activation from SDL to WebGLAntoine Lambert
2013-10-24map depth and stencil buffers activation from GLUT to WebGLAntoine Lambert
2013-10-23write out html and side js when html output is requested, to improve page ↵Alon Zakai
load times
2013-10-23Merge pull request #1726 from juj/sdl_setvideomode_0_0Alon Zakai
SDL_SetVideoMode(0,0, ...)
2013-10-23fix bug with parsing of empty typesAlon Zakai
2013-10-23Implement SDL_SetVideoMode(0,0, ...) to create the canvas in whatever size ↵Jukka Jylänki
the <canvas> was in, and not try to resize the canvas to 0x0 pixels. Derive a new test for that from sdl_ogl.c. Fixes #1059.
2013-10-22Merge pull request #1722 from juj/fix_nodefs_windowsjuj
Fix nodefs windows
2013-10-23Add a staticInit() initializer function to node fs.Jukka Jylänki
2013-10-22remove --pre-run option in file packager, handle all that automaticallyAlon Zakai
2013-10-22Fake node.js stat() call on Windows to report a blocksize and blocks number. ↵Jukka Jylänki
Otherwise these would be 'undefined', which later in unit tests would throw an error in SAFE_HEAP_STORE. Fixes o1.test_unistd_truncate.
2013-10-21Fixes to nodefs filesystem so that test_unistd_io passes on Windows. Don't ↵Jukka Jylänki
pass integer permission modes to node.js open function, but use only the documented string open caps.
2013-10-19commented-out compiler profiler supportAlon Zakai
2013-10-19improve internal compiler BenchmarkerAlon Zakai
2013-10-18avoid allocating huge lists for [BIGNUM x type] typesAlon Zakai
2013-10-18fix simd math operations and improve testAlon Zakai
2013-10-18vector bitcastsAlon Zakai
2013-10-18support for vector types nested in othersAlon Zakai
2013-10-18integrate the SIMD polyfill codeAlon Zakai
2013-10-18basic support for uint32x4Alon Zakai
2013-10-18extractelementAlon Zakai
2013-10-18simd fixAlon Zakai
2013-10-18shufflevectorAlon Zakai
2013-10-18insertelementAlon Zakai
2013-10-18vector loads and storesAlon Zakai
2013-10-18vector loadAlon Zakai
2013-10-18add basic float simd callsAlon Zakai
2013-10-18define vector literal typeAlon Zakai
2013-10-18setup to do vector ops in processMathopAlon Zakai
2013-10-18stubs for insertelement and shufflevectorAlon Zakai
2013-10-18use HEAPF32 for <4 x float>Alon Zakai
2013-10-18do not fail on trying to analyze <N x type>Alon Zakai
2013-10-17optimize globalVariableHandler a littleAlon Zakai
2013-10-16simplify bss handlingAlon Zakai
2013-10-16emit only tokens from tokenize, avoid allocating an object to wrap themAlon Zakai
2013-10-16remove .item from tokenizer outputAlon Zakai
2013-10-16optimize test for merging of *'s to last tokenAlon Zakai
2013-10-16do not add ',' tokens during param list processingAlon Zakai
2013-10-16commented assertion for tokenizeAlon Zakai
2013-10-16tokenize '{' normallyAlon Zakai
2013-10-16Merge branch 'fix-module-exports-with-closure-try2' of ↵Alon Zakai
github.com:fadams/emscripten into incoming Conflicts: AUTHORS tests/test_other.py
2013-10-16Merge branch 'antialiasing' of github.com:wsmind/emscripten into incomingAlon Zakai
Conflicts: AUTHORS
2013-10-15work around ie limitations on canvas data not having .set()Alon Zakai
2013-10-15Merge pull request #1712 from juj/fix_ie_safari_callstackAlon Zakai
Don't try to demangle call stack on browsers where the feature is not supported.
2013-10-15cache ',' tokenAlon Zakai