aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2013-05-25additional embind testingAlon Zakai
2013-05-24handle globals with no value and no zeroinitAlon Zakai
2013-05-24auto-export malloc, needed by file packagerAlon Zakai
2013-05-23actually implement clock_gettime()Alon Zakai
2013-05-23fix argument counting regression from 5efd506 ; fixes #1202Alon Zakai
2013-05-22handle dynamic indexes properly, even out of bounds, for array gep lookups; ↵Alon Zakai
fixes #865
2013-05-22Browser.safeCallbackAlon Zakai
2013-05-22do not call code-running callbacks if ABORTing; fixes #1191Alon Zakai
2013-05-21show awaited run dependencies only in ASSERTIONS buildsAlon Zakai
2013-05-21allocate using NORMAL in FS.init, to avoid races with data packages arriving ↵Alon Zakai
and using malloc before us
2013-05-21Conform to coding conventions.tingyuan
2013-05-21mmap(): Align to malloc's default alignment instead of pages.tingyuan
2013-05-21Assert that MAP_SHARED is only specified with files backed by HEAP.tingyuan
2013-05-211. mmap(): Make use of files that is backed by HEAP.tingyuan
2. mmap(): Use valloc() directly. 3. mmap(): Try to avoid Array.slice() when possible.
2013-05-21Specialize Array/TypedArray in allocate() to avoid unnecessary array ↵tingyuan
constructions.
2013-05-21fix crash when no exitPointerLock, see #1074Alon Zakai
2013-05-21fix invokes of abortAlon Zakai
2013-05-21fix asm.js coercionAlon Zakai
2013-05-21Merge pull request #1195 from inolen/longjmp_signedAlon Zakai
trigger setjmp on negative values
2013-05-21Merge pull request #1199 from j4m3z0r/sdl-fixesAlon Zakai
Fix Mix_PlayMusic's handling of loop argument in SDL
2013-05-21Convert threwValue check to boolean expressionAnthony Pesch
2013-05-21fix __errno_locationAlon Zakai
2013-05-21Merge branch 'incoming' of github.com:hyperlogic/emscripten into incomingAlon Zakai
2013-05-21Merge pull request #1186 from imvu/errno-runtime-leak-detection-fixAlon Zakai
Prevent runtime leak detection from tripping on __setErrNo
2013-05-21Merge pull request #1185 from imvu/embind-performance-and-code-size-improvementsAlon Zakai
Embind performance and code size improvements
2013-05-20Make looping behavior on effects match background music.James Gregory
2013-05-20According to http://www.libsdl.org/projects/SDL_mixer/docs/SDL_mixer.pdf, 0 ↵James Gregory
is the only value for the loop argument that does not cause looping on Mix_PlayMusic. Update Emscripten's implementation to respect this.
2013-05-20legalize i64 return types properlyAlon Zakai
2013-05-20correctly count the number of normal vars even when there are i64s before a ↵Alon Zakai
varargs
2013-05-19export imul through closureAlon Zakai
2013-05-19trigger setjmp on negative valuesAnthony Pesch
2013-05-19export callMain through closureAlon Zakai
2013-05-19Issue #1172: fix for fscanfAnthony Thibault
2013-05-17Prevent leak detection from tripping on __setErrNoChad Austin
2013-05-17embind should predeclare Module in case it's included before a shell in the ↵Chad Austin
custom SCons change
2013-05-17Allow implicit conversion from booleans to ints/floats (for WebGL)Chad Austin
2013-05-17Make jslint happy.Jukka Jylanki
2013-05-17Optimize __emval_new and __emval_decref.Jukka Jylänki
2013-05-17Implement an autorelease pool in embind.Chad Austin
2013-05-17embind: Fix issues by js syntax check, and remember to pass all required ↵Jukka Jylanki
symbols to new Function.
2013-05-17Optimize the implementation of C++ -> JS invoker functions generated by ↵Jukka Jylänki
__emval_get_method_caller by dynamically crafting them.
2013-05-17For sanity, make sure all types test the existence of the destructor stack ↵Jukka Jylänki
before pushing to it. __emval_get_method_caller calls toWireType with a null destructors array.
2013-05-17We can get away with passing memory_view on the stack here...Chad Austin
2013-05-17Switch to heapu32 for some reason...Chad Austin
2013-05-17Add support for (fast?) memory_view objects. If C++ passes a memory_view to ↵Chad Austin
JS, it gets converted into a typed array object on the other side. Intended for WebGL.
2013-05-17Checkpoint work towards making vtable->JS calls faster.Chad Austin
2013-05-17make fullscreen handling closure friendlyAlon Zakai
2013-05-17use GL. instead of this. in generateTempBuffers in order to not confuse closureAlon Zakai
2013-05-16make some more asm things closure-friendlyAlon Zakai
2013-05-16Merge pull request #1167 from j4m3z0r/issue645Alon Zakai
Issue #645: Implement eglQuerySurface for EGL_HEIGHT and EGL_WIDTH.