summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2012-12-30emscripten_async_wget_dataAlon Zakai
2012-12-30fix i64 precise moduloAlon Zakai
2012-12-30fix mmap; fixes #769Alon Zakai
2012-12-30fix parseInt of '0'Alon Zakai
2012-12-30minor i64 parsing fixesAlon Zakai
2012-12-30parse empty i64 strings properlyAlon Zakai
2012-12-30use precise 64-bit parsing for parseInt, add bswap64 test, fixes #768Alon Zakai
2012-12-30update bignum code with bugfix from upstream, and add i64Math code to parseAlon Zakai
2012-12-29add llvm_bswap_i64 for #768Alon Zakai
2012-12-29force mmap to return page-aligned addresses, and check for valid input in munmapAlon Zakai
2012-12-29save legalizedI64 state for multiphase compilationAlon Zakai
2012-12-28fix repeated compilationAlon Zakai
2012-12-28Add comment,test,authors. Change indentation and comma spaceAnthony Liot
Modify the indentation Add Author Add comment Add test inside runner.py
2012-12-27compile given ll in compiler.htmlAlon Zakai
2012-12-27option to provide raw ll to compiler.jsAlon Zakai
2012-12-27compile and run in compiler.htmlAlon Zakai
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-21merge incomingAlon 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-14fix breakage in async_prepare_dataAlon Zakai
2012-12-14add some browser/sdl function signaturesAlon Zakai
2012-12-14fix tempParam bugsAlon Zakai
2012-12-14asm coerce alloca computationsAlon Zakai
2012-12-14fix glut display funcAlon Zakai
2012-12-14fix emscripten_async_callAlon Zakai
2012-12-14must have named globals in shared libsAlon Zakai
2012-12-13note global usage of impure ptrAlon Zakai
2012-12-13use makeGlobalUse where neededAlon Zakai
2012-12-13Merge branch 'incoming' into asm_jsAlon Zakai
2012-12-13replace noticePtr hack with makeGlobalUse that detects use before indexing ↵Alon Zakai
and makes unindexable
2012-12-13treat externals as globals in asmAlon Zakai
2012-12-13don't align STATICTOP needlesslyAlon Zakai
2012-12-13emit numeric constants for global variables, using our knowledge of the ↵Alon Zakai
fixed value of GLOBAL_BASE
2012-12-13always print out global base, even if not usedAlon Zakai
2012-12-13ensure tempDoublePtr is properly alignedAlon Zakai
2012-12-13reorganize initial allocations to the stack, so that static memory for ↵Alon Zakai
globals begins exactly where the stack ends
2012-12-13default to NAMED_GLOBALSAlon Zakai
2012-12-13chunk very large array literals in global constants, to avoid 'array ↵Alon Zakai
initializer too large errors' closes #194
2012-12-13Add emscripten_async_wget2 with progress callbackAnthony Liot
Send request Post & Get with progress callback Add sample HTTP using emscripten_async_wget2