aboutsummaryrefslogtreecommitdiff
path: root/src/library.js
AgeCommit message (Collapse)Author
2013-05-16Merge pull request #1173 from manuels/incomingAlon Zakai
Fix bug in rename() that occures if new filename starts with the old filename
2013-05-15Fix bug in rename() that occures if new filename starts with the old filenamemanuels
2013-05-09fix 0x0 in formatString; fixes #1164Alon Zakai
2013-05-09changed getLength to cacheLengthJohn Allwine
2013-05-09changed createLazyFile to only issue xhr requests when the file is accessed ↵John Allwine
(fixes issue #1127)
2013-05-08Issue #1134: scanf does not treat CR, FF, VT as whitespaceAnthony Thibault
2013-05-08Fix bug in rename() that occures if new filename starts with the old filenamemanuels
2013-05-05add test for sdl allocation, and warn when using stub malloc/freeAlon Zakai
2013-05-04make memory management sane: 0 is null, then static including globals, then ↵Alon Zakai
stack, then dynamic/sbrk. deprecate shared libs (BUILD_AS_SHARED_LIB)
2013-05-03fix asm.js coercionAlon Zakai
2013-05-02fixes strcat so that it returns the correct valueTom Fairfield
It should return the "dest" pointer that was passed in. test_strings has been updated with a test for the correct behavior.
2013-05-02guard against exceptions in connect(), which can happen due to e.g. security ↵Alon Zakai
violations for websockets
2013-04-30fix varargsAlon Zakai
2013-04-29update emscripten_jcache_printfAlon Zakai
2013-04-29clean up formatString varargs handlingAlon Zakai
2013-04-29fix sscanf, note that all varargs are 64-bit alignedAlon Zakai
2013-04-29read 32-bit chunks of 64-bit varargs in the 64-bit blocks they are inAlon 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-29clarify what we do in le32 v*printf etc. functionsAlon 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-25fix llvm_uadd_with_overflow_i64 in the case of 0 higher bitsAlon Zakai
2013-04-24fix asm validation of llvm_uadd_with_overflow_i64Alon Zakai
2013-04-24simplify i64Add|Substract coercionsAlon Zakai
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-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-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-23Restore the overflow check to llvm_uadd_with_overflow_i64 to account for the ↵Jukka Jylänki
case 0xFFFFFFFFFFFFFFFF + 0x0000000100000001 == 0x0000000100000000.
2013-04-23Remove 'if()' branches from i64 add and subtract code.Jukka Jylänki
2013-04-22show clear error message instead of 987 when too many setjmp callsAlon Zakai
2013-04-22Add musl multibyte function implementations.Bruce Mitchener
2013-04-22Add musl wchar function implementations.Bruce Mitchener
2013-04-19add erf dep and testingAlon Zakai
2013-04-19Merge pull request #1060 from arlolra/socketpairAlon Zakai
Socketpair
2013-04-18exit to caller when setjmp encounters an id that is not ours; enable ↵Alon Zakai
test_longjmp2 and 3 in asm
2013-04-18throw in longjmp, do not overwrite previous throw data in setThrew, and ↵Alon Zakai
enable test_longjmp in asm
2013-04-18setjmp support for asm.jsAlon Zakai
2013-04-18Just return op not supported.Arlo Breault
See #1060
2013-04-18be more flexible in check for keeping std* as low values; cttz/ctlz can add ↵Alon Zakai
512 bytes to initial allocations
2013-04-14use compiled compiler-rt code for i64 multiplicationAlon Zakai
2013-04-14asmify ctlz/cttzAlon Zakai
2013-04-14add handwritten asm i64SubtractAlon Zakai
2013-04-13fix overflow detection in i64 uadd, and add testcaseAlon Zakai
2013-04-13socketpairArlo Breault