aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2013-10-30fix call legalization temp typesAlon Zakai
2013-10-30remove stale forwarding code in intertyperAlon Zakai
2013-10-30begin to add emscripten_float32x4_signmaskAlon Zakai
2013-10-30fix missing semicolons on simd load and storeAlon Zakai
2013-10-29clean up simd code, fix uint32x4 heap offsets, and add testingAlon Zakai
2013-10-29handle vector types in calcAllocatedSizeAlon Zakai
2013-10-29optimize scanString to not run the regex more than onceAlon Zakai
2013-10-29put assertions in performance-sensitive code behind ASSERTIONS flagAlon Zakai
2013-10-28small whitespace style fixAlon Zakai
2013-10-28Merge branch 'master' of github.com:icetooth/emscripten into incomingAlon Zakai
2013-10-28fix glGetString and eglQueryString, and optimize emulated glGetStringAlon Zakai
2013-10-28optimize createStreamAlon Zakai
2013-10-28fix handling of generating path with a mountpoint ending with '/'Alon Zakai
2013-10-28reuse ops objects in MEMFS.createNodeAlon Zakai
2013-10-28do not normalize in getPath, since our paths elements are already okAlon Zakai
2013-10-28optimize PATH.basenameAlon Zakai
2013-10-28remove unused (by us) second parameter from PATH.basenameAlon Zakai
2013-10-28avoid constant path normalization in getPathAlon Zakai
2013-10-28add PATH.join2 as a fast way to join 2 path elements without the generic ↵Alon Zakai
overhead of PATH.join
2013-10-28remove assertion code from PATH.joinAlon Zakai
2013-10-28optimize FS.createNodeAlon Zakai
2013-10-28reuse node in last chmod call from createDataFileAlon Zakai
2013-10-28reuse node in open call from createDataFileAlon Zakai
2013-10-28reuse node in chmod call from createDataFileAlon Zakai
2013-10-28reuse some FS errors in places where overhead is high and stack importance ↵Alon Zakai
is low
2013-10-28only do run dependency tracking when assertions are onAlon Zakai
2013-10-28optimize Module.setStatusAlon Zakai
2013-10-27Merge branch 'webgl_context_attributes' of github.com:anlambert/emscripten ↵Alon Zakai
into incoming
2013-10-26cache string allocations in glGetString and eglQueryStringAlon Zakai
2013-10-26fixed float read performance in _scanStringicetooth
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