aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2012-12-27allow (unoptimal) single-phase compiler.js invocationAlon Zakai
2012-12-25patch up compiler.htmlAlon Zakai
2012-12-25fix typoAlon Zakai
2012-12-25print library debug to stdout, not errAlon Zakai
2012-12-24fix llvm.expect and add testAlon Zakai
2012-12-24show js stack in C assertionsAlon Zakai
2012-12-24fix ctlz and add testAlon Zakai
2012-12-23llvm_ctlz_i64Alon Zakai
2012-12-21by default only keep main aliveAlon Zakai
2012-12-20timebAlon Zakai
2012-12-20modify sdl error textAlon Zakai
2012-12-20SDL_SetGammaAlon Zakai
2012-12-19Merge pull request #746 from xxuejie/function-name-filterAlon Zakai
Add function name filter for LABEL_DEBUG
2012-12-13chunk very large array literals in global constants, to avoid 'array ↵Alon Zakai
initializer too large errors' closes #194
2012-12-12clamp glColor floats to [0,1]Alon Zakai
2012-12-10Remove regexp case since it is slow and rarely usedXuejie Xiao
2012-12-08better fix for the exception testcase in #747 - set the current exception ↵Alon Zakai
when we are resuming after an end-catch which wiped it out, but not otherwise
2012-12-08properly use identifier given to resume instruction, avoids issues with ↵Alon Zakai
cxa_catch cleaning it up; fixes test_multiexception, the exception-handling part of #747
2012-12-07rewrite setjmp code to identify, uniquely, each setjmp and match it to a ↵Alon Zakai
longjmp. add testcase for #747, works in unoptimized builds
2012-12-07clear setjmped when handling a longjmp, so we can proceed to longjmp later ↵Alon Zakai
correctly; fixes #747
2012-12-07Add function name filter for LABEL_DEBUGXuejie Xiao
2012-12-07properly implement uitofp/sitofp using our existing code for that; fixes #745Alon Zakai
2012-11-28fix sprintfAlon Zakai
2012-11-27avoid overhead in named globals buildsAlon Zakai
2012-11-27do not index globals referred to by name in libraryAlon Zakai
2012-11-27llvm global ctors is not indexableAlon Zakai
2012-11-27fix global indexing bugsAlon Zakai
2012-11-27fix alias precheckAlon Zakai
2012-11-27do global indexing up frontAlon Zakai
2012-11-27fix vtable null termination with indexed globalsAlon Zakai
2012-11-27do not globalIndex externalsAlon Zakai
2012-11-27correct indexed globals in structured constantsAlon Zakai
2012-11-27external globals and not indexableAlon Zakai
2012-11-27fix assignment to indexed globalAlon Zakai
2012-11-27always use names for aliasesAlon Zakai
2012-11-27notice type of aliases when no named globalsAlon Zakai
2012-11-27switch to all or nothing named globals, and add testingAlon Zakai
2012-11-27fix NUM_NAMED_GLOBALS bug with global postsets and add test coverageAlon Zakai
2012-11-24allow limited the amount of named globalsAlon Zakai
2012-11-24remove STRING_TABLE in preparation for better system to reduce # of globalsAlon Zakai
2012-11-24fix snprintf on output size 0Alon Zakai
2012-11-23assert on string operations not exceeding memoryAlon Zakai
2012-11-23fix fminAlon Zakai
2012-11-23fix sscanf n bug, fixes #727Alon Zakai
2012-11-23fix glBufferSubDataAlon Zakai
2012-11-22Merge pull request #726 from xxuejie/incomingAlon Zakai
Add strtof function(use strtod instead)
2012-11-22fix setjmp/longjmp to notice if we actually setjmped in the invocation of ↵Alon Zakai
the function on the stack, so recursive functions can use setjmp/longjmp
2012-11-22drand48Alon Zakai
2012-11-22forward only the actually necessary data between emscript phasesAlon Zakai
2012-11-21a few mono-llvm intrinsicsAlon Zakai