aboutsummaryrefslogtreecommitdiff
path: root/src/jsifier.js
AgeCommit message (Expand)Author
2013-05-30handle phi loops properlyAlon Zakai
2013-05-25use smaller special label for longjmpAlon Zakai
2013-05-25do not emit resumeException when exceptions are disabledAlon Zakai
2013-05-23fix argument counting regression from 5efd506 ; fixes #1202Alon Zakai
2013-05-21fix invokes of abortAlon Zakai
2013-05-21fix asm.js coercionAlon Zakai
2013-05-21Merge pull request #1195 from inolen/longjmp_signedAlon Zakai
2013-05-21Convert threwValue check to boolean expressionAnthony Pesch
2013-05-19trigger setjmp on negative valuesAnthony Pesch
2013-05-15refactor code to generate empty function tablesAlon Zakai
2013-05-04make memory management sane: 0 is null, then static including globals, then s...Alon Zakai
2013-05-04emit aborting stubs for DEAD_FUNCTIONSAlon Zakai
2013-05-02only emit aborting function stubs on undefined symbols in asm modeAlon Zakai
2013-05-02ensure floats in varargsAlon Zakai
2013-05-02use full alignment in varargsAlon Zakai
2013-04-29make sure to align unnamed globalsAlon Zakai
2013-04-29do not get confused by local vars that alias names of library functions, and ...Alon Zakai
2013-04-29fix va_argAlon Zakai
2013-04-29fix varargs alignment in le32Alon Zakai
2013-04-29fully align varargs and formatString arguments all to 64-bitAlon Zakai
2013-04-29align the stack to 64 bits in le32Alon Zakai
2013-04-29implement le32 varargs as a struct with two fields: a start and an offsetAlon Zakai
2013-04-29work towards le32 varargsAlon Zakai
2013-04-29ERROR_ON_UNRESOLVED_SYMBOLS optionAlon Zakai
2013-04-29only show landingpad warnings in VERBOSE modeAlon Zakai
2013-04-26fix test_warn_undefinedAlon Zakai
2013-04-26fix auto-returns after aborts in float-returning functions, and enable popple...Alon Zakai
2013-04-25emit missing function warnings only in verbose modeAlon Zakai
2013-04-25fix test_runtimelinkAlon Zakai
2013-04-24warn on missing functionsAlon Zakai
2013-04-24auto-generate library stubs that abort for missing library functions, and imp...Alon Zakai
2013-04-23properly coerce setjmp helpersAlon Zakai
2013-04-23remove UNRESOLVED_AS_DEAD since it doesn't workAlon Zakai
2013-04-23fix memory corruption in setjmp/asm.js; fixes #1087Alon Zakai
2013-04-23clear errors on calling dead functionsAlon Zakai
2013-04-22make sure to coerce arguments to invoke due to setjmpAlon Zakai
2013-04-22use invoke when doing a setjmp-guarding call via a function pointerAlon Zakai
2013-04-19properly clear __THREW__ in asm exceptionsAlon Zakai
2013-04-18exit to caller when setjmp encounters an id that is not ours; enable test_lon...Alon Zakai
2013-04-18setjmp support for asm.jsAlon Zakai
2013-04-17emit landingpad variable assignment to avoid errors, even when exceptions are...Alon Zakai
2013-04-17do not emit landingpad call to cxa_find_matching_catch if exceptions are disa...Alon Zakai
2013-04-17emit return in unreachable in asm modeAlon Zakai
2013-04-14use compiled compiler-rt code for i64 multiplicationAlon Zakai
2013-04-14add handwritten asm i64SubtractAlon Zakai
2013-04-12coerce arguments to cxa_find_matching_catch; enable remaining asm.js exceptio...Alon Zakai
2013-04-12fix __THREW__ initialization in asm.js invokes; test_exceptions now enabled a...Alon Zakai
2013-04-12asm-coerce arguments to invoke_*Alon Zakai
2013-04-12move exception resuming into a dedicated functionAlon Zakai
2013-04-12fix forced calls through invoke_*Alon Zakai