aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-11-06Merge pull request #1743 from fadams/fix-nodejs-socket-clientAlon Zakai
add support for node.js to act as a socket client
2013-11-05use __proto__ when available for new streams, otherwise do a full copy; ↵Alon Zakai
fixes #1759, #1760
2013-11-05stub for pthread_rwlock_initAlon Zakai
2013-11-05handle errors in ioctlAlon Zakai
2013-11-05support ASM_JS=2 not just in test runner, and remove some unneeded uses in ↵Alon Zakai
test suite
2013-11-04fake dladdrAlon Zakai
2013-11-04pthread_mutexattr_setpshared stubAlon Zakai
2013-11-04add testcase for select fixAlon Zakai
2013-11-04add missing parens for select mathopAlon Zakai
2013-11-04Merge pull request #1735 from juj/name_js_functionsAlon Zakai
Name js functions.
2013-11-04Removed 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-04Give 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-03CONTRIBUTING.markdownAlon Zakai
2013-11-02moved nodejs client test case into main sockets test class as requested. Run ↵Fraser Adams
with ./runner.py sockets.test_nodejs_sockets_echo
2013-11-01Merge pull request #1752 from michaeljbishop/glgetintegerv-fixAlon Zakai
Adds to a test case verifying return values from glGetIntegerv
2013-11-01Merge pull request #1750 from juj/no_copy_vfs_to_heapjuj
no_copy_vfs_to_heap
2013-11-02Add 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-01add vector support for and, or and xorAlon Zakai
2013-11-01Adds to a test case verifying glGetIntegerv returnsMichael 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-31Merge branch 'fixup-node-version-check' of github.com:bnoordhuis/emscripten ↵Alon Zakai
into incoming Conflicts: AUTHORS
2013-10-31change getTexUnitType assertion to warnOnceAlon Zakai
2013-10-30handle vector zeroinitializersAlon Zakai
2013-10-30remove finalizeParam and properly use finalizeLLVMParameter everywhereAlon Zakai
2013-10-30use proper base type when finalizing vectorsAlon Zakai
2013-10-30add some more sdl scancodesAlon Zakai
2013-10-30Merge pull request #1751 from waywardmonkeys/sdl-scancode-fixAlon Zakai
Fix handling of backspace SDL scancode.
2013-10-30fix negative zero handlingAlon Zakai
2013-10-30make sure the eval in emscripten_run_script_string emits a stringAlon Zakai
2013-10-30simplify parseParamTokens now that it uses parseLLVMSegmentAlon Zakai
2013-10-30make parseParamTokens use parseLLVMSegmentAlon Zakai
2013-10-30handle more return types in getReturnTypeAlon Zakai
2013-10-30optimize isIllegalTypeAlon Zakai
2013-10-30fix tests/cases/caall.llAlon Zakai
2013-10-30fix call legalization temp typesAlon Zakai
2013-10-31Fix handling of backspace SDL scancode.Bruce Mitchener
Fixes #1749.
2013-10-30remove stale forwarding code in intertyperAlon Zakai
2013-10-30tools: parse pre-release node.js version numbersBen 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-30begin to add emscripten_float32x4_signmaskAlon Zakai
2013-10-30replace window.WebSocket with window['WebSocket'] to avoid closure compiler ↵Fraser Adams
issues
2013-10-30improve simd testsAlon 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-29updated 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-29bump js minifier name limit, and optimize to not create all the names on ↵Alon Zakai
smaller inputs
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-28Merge pull request #1740 from waywardmonkeys/boost-libcxx-libc-interactionAlon Zakai
Fix an issue with Boost compilation.