aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
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-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-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
2013-07-20do a restart in the outliner only if the total cost is not too highAlon Zakai
2013-07-20recursively outline when the total cost is not too high, and adjust ↵Alon Zakai
outlining parameters
2013-07-20do not try another outlining pass if there is not that much left anyhowAlon Zakai
2013-07-20fix isgraphToadKing
2013-07-19Touched up formatting.Michael J. Bishop
No functional change.
2013-07-19attempt a final outline from the start after any outlining, not just a ↵Alon Zakai
recursive one
2013-07-19after outlining recursively, try to outline once more from the beginningAlon Zakai
2013-07-19handle %Nc in sscanf; fixes #1407Alon Zakai
2013-07-19simplify and correct the logic for falling back to the entry ident when an ↵Alon Zakai
invalid label id shows up; fixes #1399
2013-07-19handle out param in SDL_GetKeyboardState; fixes #1404Alon Zakai
2013-07-19Merge pull request #1402 from imvu/embind-updates-pull-requestAlon Zakai
Embind updates pull request
2013-07-19Merge pull request #1414 from inolen/dlclose_refcount_fixAlon Zakai
fix for dlclose refcount cleanup
2013-07-19ensure a final return after inlining, if necessaryAlon Zakai
2013-07-19remove variables owned by outlined code from the parentAlon Zakai
2013-07-19enable first working zlib outlining testAlon Zakai
2013-07-18fix for refcount cleanupAnthony Pesch
2013-07-18preparations for outline test on zlibAlon Zakai
2013-07-18improve find_bigfuncsAlon Zakai
2013-07-18wipe out control flow variable before calling outlined codeAlon Zakai
2013-07-18do not miss returns that are statementsAlon Zakai
2013-07-18do not emit spills in outlined code for variables that only appear in the ↵Alon Zakai
outlines code
2013-07-18do not outline into outlined code for now, and refactor code analysis a littleAlon Zakai
2013-07-18add coercions on return proxying in outlinerAlon Zakai
2013-07-18emit only necessary return proxying code when outliningAlon Zakai
2013-07-18send variables to outlines code even if just written; they may not be ↵Alon Zakai
written to, and we would write a zero incorrectly