aboutsummaryrefslogtreecommitdiff
path: root/src/jsifier.js
AgeCommit message (Expand)Author
2013-01-23refactor makeComparison and use it in more placesAlon Zakai
2013-01-23fix comparison in indirectbr for asmAlon Zakai
2013-01-23add value to returns when function returns a non-voidAlon Zakai
2013-01-23detect nativized variable types properly in asm coercionsAlon Zakai
2013-01-23make getReturnType handle non-function pointer typesAlon Zakai
2013-01-23handle function pointer calls to functions that return function pointers (ins...Alon Zakai
2013-01-20fix varargs by pointer in asmAlon Zakai
2013-01-20fix -O1Alon Zakai
2013-01-20__asm and __sig in library, separatelyAlon Zakai
2013-01-19fix LIBRARY_DEBUG for asmAlon Zakai
2013-01-18fix unrelooped code for asmAlon Zakai
2013-01-18add return in functions whose types return but do not actually returnAlon Zakai
2013-01-17Merge pull request #778 from caiiiycuk/exception_catching_in_scopeAlon Zakai
2013-01-17pack global constant allocations to save space, and allow typed array .set() ...Alon Zakai
2013-01-17Implement exceptions in whitelistAleksander Guryanov
2013-01-16fix resumeAlon Zakai
2013-01-16do not emit __asm lib stuff in FULL_LIBRARY modeAlon Zakai
2013-01-16allow defining asm library functions, which are then included as if they were...Alon Zakai
2013-01-15handle phis from indirectbrAlon Zakai
2013-01-15ensure explicit floats in function call arguments and all coercionsAlon Zakai
2013-01-14use | in switch joined evaluationsAlon Zakai
2013-01-14fix atomics for asmAlon Zakai
2013-01-14fix asm var defs of illegalsAlon Zakai
2013-01-14clear message when exception catching is disabled and an exception is thrownAlon Zakai
2013-01-13don't emit switch in jsifier.js in reloop mode; we would do that in the relooperAlon Zakai
2013-01-13add testcase with big switch for #781Alon Zakai
2013-01-10auto-export some special functions if they are dependencies of a JS library e...Alon Zakai
2013-01-10fix calling of functions library-redirected to Math.*Alon Zakai
2013-01-10do not emit values for redirected library idents, they would not be used anyhowAlon Zakai
2013-01-10call library aliases directly by their target nameAlon Zakai
2013-01-08asm coerce varargs argumentAlon Zakai
2013-01-08ensure a return when an abort happens in a function that returns somethingAlon Zakai
2013-01-07add asm.js mode to relooper, for label comparisons1.2.1Alon Zakai
2013-01-07always coerce asm callsAlon Zakai
2013-01-07notice Math.* library redirects as being functionsAlon Zakai
2013-01-07fix bug with adding non-functions to libraryFunctions in ASM_JSAlon Zakai
2012-12-31properly forward unnamed global externals to asmAlon Zakai
2012-12-31Merge branch 'incoming' into asm_jsAlon Zakai
2012-12-29save legalizedI64 state for multiphase compilationAlon Zakai
2012-12-27allow (unoptimal) single-phase compiler.js invocationAlon Zakai
2012-12-25print library debug to stdout, not errAlon Zakai
2012-12-21merge incomingAlon Zakai
2012-12-19Merge pull request #746 from xxuejie/function-name-filterAlon Zakai
2012-12-14fix tempParam bugsAlon Zakai
2012-12-14asm coerce alloca computationsAlon Zakai
2012-12-13treat externals as globals in asmAlon Zakai
2012-12-13emit numeric constants for global variables, using our knowledge of the fixed...Alon Zakai
2012-12-13always print out global base, even if not usedAlon Zakai
2012-12-13reorganize initial allocations to the stack, so that static memory for global...Alon Zakai
2012-12-11fix regression with not indexizing functionsAlon Zakai