aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-04-25more docs for function pointer castsAlon Zakai
2013-04-25emit missing function warnings only in verbose modeAlon Zakai
2013-04-25clearer warnings on incompatible function pointer castsAlon Zakai
2013-04-25fix test_runtimelinkAlon Zakai
2013-04-25Merge branch 'idb-preload-cache' of github.com:modeswitch/emscripten into ↵Alon Zakai
modeswitch-idb-preload-cache
2013-04-25clean up meminit detectionAlon Zakai
2013-04-25debugging text cleanupAlon Zakai
2013-04-25Try/catch around idb open.Alan Kligman
2013-04-25If caching fails, proceed to process package data.Alan Kligman
2013-04-25If there's a problem, fall back to default non-cache loading from remote.Alan Kligman
2013-04-25Add browser.test_preload_caching to unit tests. Replace modified-time check ↵Alan Kligman
with uuid check for cached packages, and remove HEAD XHR.
2013-04-25Add --use-preload-cache option to emcc, which passes it through to ↵Alan Kligman
file_packager.
2013-04-25Fix incorrect cache logic (probably copy pasta error). Add ↵Alan Kligman
Module.preloadResults to store preload stats (for testing purposes).
2013-04-25Updated documentation for --use-preload-cache.Alan Kligman
2013-04-25Fix broken unit tests (browser.test_sdl_image_compressed, ↵Alan Kligman
browser.test_preload_file, browser.compressed_file). Fix style issues. Move some branch-specific code into the branch, rather than having it outside.
2013-04-25Ignore lzma native binaries.Alan Kligman
2013-04-25Fix missing parameter in cacheRemotePackage invocation. Remove debug ↵Alan Kligman
console.log.
2013-04-25Add --use-preload-cache flag to enable indexeddb preload cache. Defaults to ↵Alan Kligman
original behaviour.
2013-04-25Add no-cache to HEAD request.Alan Kligman
2013-04-25Preloading script now uses indexeddb to cache asset packages. Will load them ↵Alan Kligman
from indexeddb if possible.
2013-04-24Merge pull request #1089 from waywardmonkeys/remove-wchar-embindAlon Zakai
emscripten libcextra provides wmemset,wmemcpy.
2013-04-24Merge pull request #1091 from waywardmonkeys/fix-libcextra-symbolsAlon Zakai
Don't list internal / undefined symbols.
2013-04-24fix asm validation of llvm_uadd_with_overflow_i64Alon Zakai
2013-04-24simplify i64Add|Substract coercionsAlon Zakai
2013-04-24Merge pull request #1090 from inolen/incomingAlon Zakai
Persist return value for wrapped functions
2013-04-24Merge pull request #1088 from juj/branchless_i64_opsAlon Zakai
Remove 'if()' branches from i64 add and subtract code.
2013-04-24avoid warning on llvm_dbg_declareAlon Zakai
2013-04-24warn on missing functionsAlon Zakai
2013-04-24Added self to AUTHORSAnthony Pesch
2013-04-24Remove unneeded >>> 0 in llvm_uadd_with_overflow_i64.Jukka Jylänki
2013-04-24fix and simplify a few str* asm library functionsAlon Zakai
2013-04-24update testsAlon Zakai
2013-04-24auto-generate library stubs that abort for missing library functions, and ↵Alon Zakai
implement DEAD_FUNCTIONS that way
2013-04-24Don't list internal / undefined symbols.Bruce Mitchener
2013-04-23Persist return value for wrapped functionsAnthony Pesch
2013-04-23disable s_x_x in test_libcextraAlon Zakai
2013-04-24emscripten libcextra provides wmemset,wmemcpy.Bruce Mitchener
2013-04-23Merge pull request #1063 from waywardmonkeys/musl-libc1.3.7Alon Zakai
Add wchar and multibyte libc functions
2013-04-23add coercion in strncasecmpAlon Zakai
2013-04-23add missing coercion in strcatAlon Zakai
2013-04-23properly coerce setjmp helpersAlon Zakai
2013-04-23coerce output of bitshift*Alon Zakai
2013-04-23emit coercion on i64 math call return valuesAlon 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-23add a define of __EMSCRIPTEN__Alon Zakai
2013-04-23Improve test/cases/uadd_overflow_64_ta2.ll to check that the tricky addition ↵Jukka Jylänki
case 0xFFFFFFFFFFFFFFFF + 0x0000000100000001 is handled correctly.
2013-04-23Restore the overflow check to llvm_uadd_with_overflow_i64 to account for the ↵Jukka Jylänki
case 0xFFFFFFFFFFFFFFFF + 0x0000000100000001 == 0x0000000100000000.
2013-04-23add test for repeated longjmp to a single setjmpAlon Zakai
2013-04-23clear errors on calling dead functionsAlon Zakai