aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2013-03-05Merge pull request #897 from lptr/unregister_functionsAlon Zakai
Add Runtime.removeFunction()
2013-03-05Merge pull request #912 from waywardmonkeys/implement-nanosleepAlon Zakai
Implement nanosleep.
2013-03-05Merge pull request #913 from waywardmonkeys/implement-sc-nprocessors-onlnAlon Zakai
Implement _SC_NPROCESSORS_ONLN.
2013-03-05make FindLabeledLoops not recurse on ->NextAlon Zakai
2013-03-05update relooper testsAlon Zakai
2013-03-04Delete the compiled relooper.js (but allow specification of an arbitrary ↵Chad Austin
relooper)
2013-03-04emscripten_jcache_printfAlon Zakai
2013-03-04fix cmpxchg for asmAlon Zakai
2013-03-04Implement _SC_NPROCESSORS_ONLN.Bruce Mitchener
This lets std::hardware_concurrency() give a valid return value.
2013-03-04Implement nanosleep.Bruce Mitchener
2013-03-03do not emit bash on legalized variables of <= 32 bitsAlon Zakai
2013-03-03remove no-longer-needed INIT_STACKAlon Zakai
2013-03-03remove ASM_JS warning and add check for exception catching being off in it, ↵Alon Zakai
the last remaining issue for it
2013-03-03optimize allocate()ion of zeroinitAlon Zakai
2013-03-03parse volatile in cmpxchg, closes #875Alon Zakai
2013-03-03allow parseArbitraryInt to parse illegal constantsAlon Zakai
2013-03-02more atomic implementations, closes #874Alon Zakai
2013-03-02GLImmediate should depend on GLEmulationAlon Zakai
2013-03-03No need for 'func' parameterLorant Pinter
2013-03-03Added Runtime.removeFunction()Lorant Pinter
2013-03-02fix another memset fuzz bugAlon Zakai
2013-03-02fix memset bugAlon Zakai
2013-03-02Merge pull request #883 from MichaelRiss/perrorFixAlon Zakai
Perror formatting fix
2013-03-01limit memory growth to 1GBAlon Zakai
2013-03-01optimize processing of things like false & constant, add getFastValue in ↵Alon Zakai
makeSignOp, and add fuzz tests that now pass
2013-03-01do not emit code in a label after a returnfailAlon Zakai
2013-03-01abort on loads from absolute addresses, just like savesAlon Zakai
2013-03-01make intentional faults work in asmAlon Zakai
2013-03-01handle calls to aliases in asmAlon Zakai
2013-02-28do not emit floats from getFastValue divisions, can break asmAlon Zakai
2013-02-28fix insertvalue of undef, fixes s_x_x.test_exceptionsAlon Zakai
2013-02-28simplify audio fix from last commitAlon Zakai
2013-02-28Merge pull request #890 from ehsan/mix_quickloadAlon Zakai
Make Mix_QuickLoad_RAW work again
2013-02-28pthread_key_deleteAlon Zakai
2013-02-28Make Mix_QuickLoad_RAW work againEhsan Akhgari
2013-02-28add missing calloc dependency in gcAlon Zakai
2013-02-28inline by default, now that lto is off by defaultAlon Zakai
2013-02-28translate undef to 0 in toNiceIdent, so it never gets emitted as an identifierAlon Zakai
2013-02-28support multiple arguments to default html print, printErrAlon Zakai
2013-02-27Merge pull request #882 from lptr/function-lookup-from-moduleAlon Zakai
Reverse the order of function lookup in getCFunc() to avoid eval()
2013-02-27Merge pull request #887 from MichaelRiss/glVertex2iAlon Zakai
Add glVertex3i and glVertex2i calls
2013-02-27fix glIs*Alon Zakai
2013-02-27expose current buffers outside of FULL_ES2 - needed for gl emulationAlon Zakai
2013-02-27refactor byteSizeByTypeRoot and use it in FULL_ES2Alon Zakai
2013-02-27cleanupsAlon Zakai
2013-02-27Add client-side vertex attribs and index buffersVladimir Vukicevic
2013-02-27Implement SDL_TEXTINPUTEhsan Akhgari
2013-02-28Add glVertex3i and glVertex2i callsMichael Riss
These are basically just aliases for the glVertex3f function. Javascript seems to convert the integers to float values correctly. However, I did not follow the code path through the immediate mode emulation to know for sure. In my applications it works for "normal", small values (e.g. 1, 500, 1000, ...).
2013-02-27FORCE_GL_EMULATION optionAlon Zakai
2013-02-27properly emit calls to gl passthroughs with 0 params, and test for glErrorAlon Zakai