Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-03-04 | emscripten_jcache_printf | Alon Zakai | |
2013-03-04 | fix cmpxchg for asm | Alon Zakai | |
2013-03-04 | Implement _SC_NPROCESSORS_ONLN. | Bruce Mitchener | |
This lets std::hardware_concurrency() give a valid return value. | |||
2013-03-04 | Implement nanosleep. | Bruce Mitchener | |
2013-03-03 | do not emit bash on legalized variables of <= 32 bits | Alon Zakai | |
2013-03-03 | remove no-longer-needed INIT_STACK | Alon Zakai | |
2013-03-03 | remove ASM_JS warning and add check for exception catching being off in it, ↵ | Alon Zakai | |
the last remaining issue for it | |||
2013-03-03 | optimize allocate()ion of zeroinit | Alon Zakai | |
2013-03-03 | parse volatile in cmpxchg, closes #875 | Alon Zakai | |
2013-03-03 | allow parseArbitraryInt to parse illegal constants | Alon Zakai | |
2013-03-02 | more atomic implementations, closes #874 | Alon Zakai | |
2013-03-02 | GLImmediate should depend on GLEmulation | Alon Zakai | |
2013-03-03 | No need for 'func' parameter | Lorant Pinter | |
2013-03-03 | Added Runtime.removeFunction() | Lorant Pinter | |
2013-03-02 | fix another memset fuzz bug | Alon Zakai | |
2013-03-02 | fix memset bug | Alon Zakai | |
2013-03-02 | Merge pull request #883 from MichaelRiss/perrorFix | Alon Zakai | |
Perror formatting fix | |||
2013-03-01 | limit memory growth to 1GB | Alon Zakai | |
2013-03-01 | optimize processing of things like false & constant, add getFastValue in ↵ | Alon Zakai | |
makeSignOp, and add fuzz tests that now pass | |||
2013-03-01 | do not emit code in a label after a returnfail | Alon Zakai | |
2013-03-01 | abort on loads from absolute addresses, just like saves | Alon Zakai | |
2013-03-01 | make intentional faults work in asm | Alon Zakai | |
2013-03-01 | handle calls to aliases in asm | Alon Zakai | |
2013-02-28 | do not emit floats from getFastValue divisions, can break asm | Alon Zakai | |
2013-02-28 | fix insertvalue of undef, fixes s_x_x.test_exceptions | Alon Zakai | |
2013-02-28 | simplify audio fix from last commit | Alon Zakai | |
2013-02-28 | Merge pull request #890 from ehsan/mix_quickload | Alon Zakai | |
Make Mix_QuickLoad_RAW work again | |||
2013-02-28 | pthread_key_delete | Alon Zakai | |
2013-02-28 | Make Mix_QuickLoad_RAW work again | Ehsan Akhgari | |
2013-02-28 | add missing calloc dependency in gc | Alon Zakai | |
2013-02-28 | inline by default, now that lto is off by default | Alon Zakai | |
2013-02-28 | translate undef to 0 in toNiceIdent, so it never gets emitted as an identifier | Alon Zakai | |
2013-02-28 | support multiple arguments to default html print, printErr | Alon Zakai | |
2013-02-27 | Merge pull request #882 from lptr/function-lookup-from-module | Alon Zakai | |
Reverse the order of function lookup in getCFunc() to avoid eval() | |||
2013-02-27 | Merge pull request #887 from MichaelRiss/glVertex2i | Alon Zakai | |
Add glVertex3i and glVertex2i calls | |||
2013-02-27 | fix glIs* | Alon Zakai | |
2013-02-27 | expose current buffers outside of FULL_ES2 - needed for gl emulation | Alon Zakai | |
2013-02-27 | refactor byteSizeByTypeRoot and use it in FULL_ES2 | Alon Zakai | |
2013-02-27 | cleanups | Alon Zakai | |
2013-02-27 | Add client-side vertex attribs and index buffers | Vladimir Vukicevic | |
2013-02-27 | Implement SDL_TEXTINPUT | Ehsan Akhgari | |
2013-02-28 | Add glVertex3i and glVertex2i calls | Michael 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-27 | FORCE_GL_EMULATION option | Alon Zakai | |
2013-02-27 | properly emit calls to gl passthroughs with 0 params, and test for glError | Alon Zakai | |
2013-02-27 | Merge pull request #884 from vvuk/check-heap-align | Alon Zakai | |
Add CHECK_HEAP_ALIGN to perform runtime alignment checks | |||
2013-02-27 | Fixed the following problems in the perror function: | Michael Riss | |
- putc is not declared -> replaced by fputc - puts was used to output the user message which automatically introduced an unwanted newline between user message and error description -> replaced by fputs which does not add the newline Signed-off-by: Michael Riss <Michael.Riss@gmx.de> | |||
2013-02-27 | Remove the inner-try again -- not needed at all | Lorant Pinter | |
2013-02-27 | Put back try-catch around closure exported function lookup | Lorant Pinter | |
2013-02-27 | Reverse the order of function lookup in getCFunc() to avoid having to call ↵ | Lorant Pinter | |
eval() | |||
2013-02-26 | Add CHECK_HEAP_ALIGN to perform runtime alignment checks | Vladimir Vukicevic | |
Adds a much cheaper CHECK_HEAP_ALIGN option to do heap access alignment checks. Less extensive than SAFE_HEAP, but also much cheaper. |