Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-11-08 | invalidate calls on conditionals in js optimizer, to avoid eliminating into ↵ | Alon Zakai | |
a non-executing code path | |||
2013-11-06 | Merge pull request #1748 from caiiiycuk/fix_sdl_colors | Alon Zakai | |
Fix SDL_SetColors && SDL_envets | |||
2013-11-06 | Merge pull request #1743 from fadams/fix-nodejs-socket-client | Alon Zakai | |
add support for node.js to act as a socket client | |||
2013-11-05 | use __proto__ when available for new streams, otherwise do a full copy; ↵ | Alon Zakai | |
fixes #1759, #1760 | |||
2013-11-05 | stub for pthread_rwlock_init | Alon Zakai | |
2013-11-05 | handle errors in ioctl | Alon Zakai | |
2013-11-05 | support ASM_JS=2 not just in test runner, and remove some unneeded uses in ↵ | Alon Zakai | |
test suite | |||
2013-11-04 | fake dladdr | Alon Zakai | |
2013-11-04 | pthread_mutexattr_setpshared stub | Alon Zakai | |
2013-11-04 | add testcase for select fix | Alon Zakai | |
2013-11-04 | add missing parens for select mathop | Alon Zakai | |
2013-11-04 | Merge pull request #1735 from juj/name_js_functions | Alon Zakai | |
Name js functions. | |||
2013-11-04 | Removed RunnerCore import as no longer needed and added return ↵ | Fraser Adams | |
self.skip('node is not present') to test_nodejs_sockets_echo if node isn't available | |||
2013-11-04 | Give names to most manually assigned functions in the .js files, in form ↵ | Jukka Jylänki | |
"var x = function()" -> "function x()" so that error stack traces and profiling stack traces are more informative and do not contain anonymous functions. | |||
2013-11-03 | CONTRIBUTING.markdown | Alon Zakai | |
2013-11-02 | moved nodejs client test case into main sockets test class as requested. Run ↵ | Fraser Adams | |
with ./runner.py sockets.test_nodejs_sockets_echo | |||
2013-11-01 | Merge pull request #1752 from michaeljbishop/glgetintegerv-fix | Alon Zakai | |
Adds to a test case verifying return values from glGetIntegerv | |||
2013-11-01 | Merge pull request #1750 from juj/no_copy_vfs_to_heap | juj | |
no_copy_vfs_to_heap | |||
2013-11-02 | Add command line parameter --no-heap-copy that optimizes for small memory ↵ | Jukka Jylänki | |
footprint and fread() performance over the default behavior that copied VFS to HEAP, that is designed for mmap() performance. Adjust MEMFS node contentMode enum to reflect whether content is off the main HEAP or not. Note that this enum is not much used, so this has little effect. Add browser tests to check that fread() and mmap() work with and without --no-heap-copy. | |||
2013-11-01 | add vector support for and, or and xor | Alon Zakai | |
2013-11-01 | Adds to a test case verifying glGetIntegerv returns | Michael J. Bishop | |
correct results when the current texture id is not TEXTURE0 and fixes library_gl.js so that it returns correct results. | |||
2013-10-31 | Merge branch 'fixup-node-version-check' of github.com:bnoordhuis/emscripten ↵ | Alon Zakai | |
into incoming Conflicts: AUTHORS | |||
2013-10-31 | change getTexUnitType assertion to warnOnce | Alon Zakai | |
2013-10-30 | handle vector zeroinitializers | Alon Zakai | |
2013-10-30 | remove finalizeParam and properly use finalizeLLVMParameter everywhere | Alon Zakai | |
2013-10-30 | use proper base type when finalizing vectors | Alon Zakai | |
2013-10-30 | add some more sdl scancodes | Alon Zakai | |
2013-10-30 | Merge pull request #1751 from waywardmonkeys/sdl-scancode-fix | Alon Zakai | |
Fix handling of backspace SDL scancode. | |||
2013-10-30 | fix negative zero handling | Alon Zakai | |
2013-10-30 | make sure the eval in emscripten_run_script_string emits a string | Alon Zakai | |
2013-10-30 | simplify parseParamTokens now that it uses parseLLVMSegment | Alon Zakai | |
2013-10-30 | make parseParamTokens use parseLLVMSegment | Alon Zakai | |
2013-10-30 | handle more return types in getReturnType | Alon Zakai | |
2013-10-30 | optimize isIllegalType | Alon Zakai | |
2013-10-30 | fix tests/cases/caall.ll | Alon Zakai | |
2013-10-30 | fix call legalization temp types | Alon Zakai | |
2013-10-31 | Fix handling of backspace SDL scancode. | Bruce Mitchener | |
Fixes #1749. | |||
2013-10-30 | remove stale forwarding code in intertyper | Alon Zakai | |
2013-10-30 | tools: parse pre-release node.js version numbers | Ben Noordhuis | |
`node` binaries built from upstream git have a "-pre" suffix attached to the version number. Fix the version parser to handle those. | |||
2013-10-30 | begin to add emscripten_float32x4_signmask | Alon Zakai | |
2013-10-30 | replace window.WebSocket with window['WebSocket'] to avoid closure compiler ↵ | Fraser Adams | |
issues | |||
2013-10-30 | improve simd tests | Alon Zakai | |
2013-10-30 | fix missing semicolons on simd load and store | Alon Zakai | |
2013-10-30 | Fix SDL_SetColors && SDL_envets | Aleksander Guryanov | |
2013-10-29 | clean up simd code, fix uint32x4 heap offsets, and add testing | Alon Zakai | |
2013-10-29 | handle vector types in calcAllocatedSize | Alon Zakai | |
2013-10-29 | updated library_sockfs.js to make WebSocket a local var and updated ↵ | Fraser Adams | |
library_browser.js to modify requestAnimationFrame to provide a fallback to setTimeout if window is undefined | |||
2013-10-29 | bump js minifier name limit, and optimize to not create all the names on ↵ | Alon Zakai | |
smaller inputs | |||
2013-10-29 | optimize scanString to not run the regex more than once | Alon Zakai | |
2013-10-29 | put assertions in performance-sensitive code behind ASSERTIONS flag | Alon Zakai | |