aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-09-04Merge pull request #1587 from inolen/openal_buffers_revertAlon Zakai
revert pr #1493
2013-09-04restore ZTVN10 hacks, but only for non-ta2 where we do not link in libcxxabiAlon Zakai
2013-09-04Merge pull request #1582 from waywardmonkeys/simplify-timezoneAlon Zakai
Simplify timezone
2013-09-04longjmp test across asm modulesAlon Zakai
2013-09-04dlopen+exceptions+asm is not supported yetAlon Zakai
2013-09-04remove no longer needed library.js constants for some libcxxabi stuff, which ↵Alon Zakai
can confuse INCLUDE_FULL_LIBRARY+exceptions
2013-09-04do not emit externals in side modulesAlon Zakai
2013-09-04do not fail in test_dlfcn_qsort of js engine cannot do asm validation; fixes ↵Alon Zakai
#1591
2013-09-04handle glBufferData usages that are not in WebGL; fixes #1589Alon Zakai
2013-09-04fix repeated calls to glDraw* where the count changes but not the client ↵Alon Zakai
attributes; fixes part of #1589
2013-09-04Merge branch 'vertex_array_object_bug' of ↵Alon Zakai
github.com:michaeljbishop/emscripten into incoming
2013-09-04Added test which shows broken GL emulation when:Michael J. Bishop
1. Binding to a VertexObjectBuffer and calling `glDrawArrays` on two different sections of it. 2. Using `glVertexPointer` with actual pointer to a vertex array and calling `glDrawArrays` on two different sections of it.
2013-09-04Revert "reimplement getCurrentTime"Anthony Pesch
This reverts commit bd615f6f4499cc2b928c5603ba98d6bd689e608e.
2013-09-04Simplify some timezone code.Bruce Mitchener
Since we only allow GMT as a timezone and ignore what the browser says, we can simplify a lot of this code.
2013-09-03add extCall_* methods in asm dlopen support, parallel to invoke in that they ↵Alon Zakai
are able to access other modules, but do not catch exceptions
2013-09-03abort with error message if dlopen called in asm.js mode without DLOPEN_SUPPORTAlon Zakai
2013-09-03refactor dlfcn support into DLFCNAlon Zakai
2013-09-03add some long double libc stubsAlon Zakai
2013-09-03handle the case of EXPORTED_FUNCTIONS=@Alon Zakai
2013-09-03assert guards against cross-module stack leaksAlon Zakai
2013-09-03remove obsolete header parsing codeAlon Zakai
2013-09-03always keep malloc and free alive and exported, for internal use and other ↵Alon Zakai
modules
2013-09-03add browser module testAlon Zakai
2013-09-03support -E in emccAlon Zakai
2013-09-03free H_BASE on cleanupAnthony Pesch
2013-09-03do not eliminate supposedly stub functions in side modules, as they may be ↵Alon Zakai
imported from the parent
2013-09-03wip test_dlfcn_mallocsAlon Zakai
2013-09-03remove unneeded settings from DLOPEN_SUPPORTAlon Zakai
2013-09-03do no run cleanups on dlclose of selfAlon Zakai
2013-09-03add test_dlfcn_funcsAlon Zakai
2013-09-03typo fix, index is in arguments[0]Anthony Pesch
2013-09-03fix cleanup code to not happen in main moduleAlon Zakai
2013-09-03clean up shared modules when dlclose()dAlon Zakai
2013-09-03do not require LINKABLE in DLOPEN_SUPPORTAlon Zakai
2013-09-03rename testAlon Zakai
2013-09-03move neededTables assignment to right place; fixes test_dlfcn_unique_sigAlon Zakai
2013-09-03clean up dlfcn testsAlon Zakai
2013-09-03fix test_dlfcn_unique_sig in non-asmAlon Zakai
2013-09-03fix non-asm dlfcn setup codeAlon Zakai
2013-09-03use a separate stack in each asm module; fixes asm2g.test_dlfcn_stack_forwardAlon Zakai
2013-09-03added test_dlfcn_stack_forwardAnthony Pesch
2013-09-03added dlopen test to test function pointers with signatures not found in the ↵Anthony Pesch
main module
2013-09-03fix asm validation of side modulesAlon Zakai
2013-09-03fix test_dlfcn_selfAlon Zakai
2013-09-03update test_dlfcn_varargsAlon Zakai
2013-09-03update test_dlfcn_varargsAlon Zakai
2013-09-03update test_dlfcn_aliasAlon Zakai
2013-09-03update test_dlfcn_data_and_fptrAlon Zakai
2013-09-03support function pointer calls across asm modules by passing them all ↵Alon Zakai
through invoke (for now), and have a global function table in the Runtime, which modules register their functions to
2013-09-03use function table offset for F_BASE_* in shared modulesAlon Zakai