aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-07-25fix find_bigfuncs.pyAlon Zakai
2013-07-24flatten if chains in outliner, and be more careful to avoid outlining ↵Alon Zakai
through an outline call
2013-07-24fix EXPORT_ALL in asm modeAlon Zakai
2013-07-24Merge pull request #1428 from juj/gl_num_compressed_formatsAlon Zakai
Implement glGetIntegerv(GL_NUM_COMPRESSED_TEXTURE_FORMATS).
2013-07-24Merge pull request #1386 from michaeljbishop/sdl_rwopsAlon Zakai
Add support for `SDL_RWFromConstMem()` for .ogg files.
2013-07-24link to file packaging docsAlon Zakai
2013-07-24do invoke_* on LLVM invokes using function pointers; fixes #1423Alon Zakai
2013-07-24Merge pull request #1394 from inolen/stat_testsAlon Zakai
added lchmod, new tests, fixed for mknod return values
2013-07-24properly handle loads of i24s and similar illegal valuesAlon Zakai
2013-07-23properly handle generation of instances of structures ending in [0 x ..]Alon Zakai
2013-07-23better error messageAlon Zakai
2013-07-23fix test_sscanf_6, which was reading uninitialized memoryAlon Zakai
2013-07-23fix scanString hardcoded HEAP32 referenceAlon Zakai
2013-07-23do not outline through an outline callAlon Zakai
2013-07-23fix test_glgetattachedshadersAlon Zakai
2013-07-23Merge branch 'master' of github.com:ToadKing/emscripten into incomingAlon Zakai
2013-07-24Implement glGetIntegerv(GL_NUM_COMPRESSED_TEXTURE_FORMATS).Jukka Jylänki
2013-07-23update testToadKing
2013-07-23use a separate stack location for control variable information for each ↵Alon Zakai
outlined function, to avoid problems when outlining right through the support code for a previous outlining
2013-07-23fix Math.imul closuringAlon Zakai
2013-07-23fix test_files* after the changes to stderrAlon Zakai
2013-07-23fix structure size when it has a [0 x ..] at the end - that should add nothingAlon Zakai
2013-07-22change error message to assertToadKing
add testcase for glGetAttachedShaders
2013-07-22clean up outlinings limit codeAlon Zakai
2013-07-22Merge pull request #1424 from sbalko/strftime-implAlon Zakai
Implement strftime
2013-07-22have a fixed limit for the number of outlinings we perform on a single functionAlon Zakai
2013-07-22Made getMimetype() a public method of the Browser module and used itMichael J. Bishop
inside the SDL module.
2013-07-22Merge pull request #1406 from inolen/printerr_fixesAlon Zakai
fixed stderr output to use printErr
2013-07-22no need to closure-guard Math.imul definitions (only used internally anyhow, ↵Alon Zakai
and need to be consistent with later Math.imul uses
2013-07-22allow closure with -g1 (only preserve whitespace)Alon Zakai
2013-07-22fix regression of double-counting varargsAlon Zakai
2013-07-22Added mime type information to SDL_rwops in `SDL_RWFromFile` as a hintMichael J. Bishop
to processing down the line. Changed the `Pointer_stringify()` call to occur in `SDL_RWFromFile` instead of downstream which makes more sense. Cleaned up formatting.
2013-07-21notice varargs when creating library function wrappersAlon Zakai
2013-07-22Formatting changes as requested for pull requestSoeren Balko
2013-07-22Implement strftime (incl. tests)Soeren Balko
2013-07-21add browser audio option for test runnerAlon Zakai
2013-07-21Merge branch 'isgraph' of github.com:ToadKing/emscripten into incomingAlon Zakai
2013-07-21Merge pull request #1412 from michaeljbishop/pread-fixAlon Zakai
Fixes in pread()
2013-07-21add self to AUTHORSToadKing
2013-07-21abort outlining if it leads to the new function or old function exceeding ↵Alon Zakai
the original function in size
2013-07-21clean up test codeAlon Zakai
2013-07-21add more outline testingAlon Zakai
2013-07-21fix semantics of control variable handling in outlining: zero out when ↵Alon Zakai
calling outlined funcitons, and right after using the value, so that we can handle nested outlined calls
2013-07-20save all versions in test_outlineAlon Zakai
2013-07-20simplify heuristics for restarting in outlinerAlon Zakai
2013-07-20stop trying to outline in outlined code, appears to not be necessary anymoreAlon Zakai
2013-07-20add more outliner testingAlon Zakai
2013-07-20use blocks in switch cases in outlinerAlon Zakai
2013-07-20allow sp to be modified in outlined code, by changing the model to where ↵Alon Zakai
outlined code returns sp (which also parallels that we sent it as the single parameter)
2013-07-20adjust outlining heuristics to fully outline even big functionsAlon Zakai