Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-03-15 | fix strncasecmp comparison signedness | Alon Zakai | |
2013-03-15 | optimize use of .charCodeAt(0) at compile time | Alon Zakai | |
2013-03-15 | asmify strcasecmp | Alon Zakai | |
2013-03-15 | asmify strncasecmp | Alon Zakai | |
2013-03-15 | asmify tolower | Alon Zakai | |
2013-03-14 | optimize strcat a little | Alon Zakai | |
2013-03-14 | asmify strcat | Alon Zakai | |
2013-03-14 | add branch in strncpy to avoid reading from possible invalid memory | Alon Zakai | |
2013-03-14 | optimize bitshift64* a little | Alon Zakai | |
2013-03-14 | fix bitshift64Ashr bug | Alon Zakai | |
2013-03-14 | move dynamic 64-bit shifts into asm library calls | Alon Zakai | |
2013-03-12 | asmify strncpy | Alon Zakai | |
2013-03-12 | write strcpy in asm and add some testing | Alon Zakai | |
2013-03-12 | optimize pread to use typed array set() | Alon Zakai | |
2013-03-12 | infrastructure for implementing i64 math in asm.js, and implement i64Add and ↵ | Alon Zakai | |
llvm_uadd_with_overflow_i64 that way | |||
2013-03-12 | Fix the return value of fgets(). | tingyuan | |
2013-03-11 | add ASSERTIONS to asm2g, and fix assertions for asm | Alon Zakai | |
2013-03-07 | support llvm_ctpop_*; fixes #918 | Alon Zakai | |
2013-03-07 | Merge pull request #931 from xxuejie/stdlib_strtod | Alon Zakai | |
Implement strtod in native C code as part of libc. | |||
2013-03-07 | Merge pull request #932 from tobydox/incoming | Alon Zakai | |
Emit correct code for setjmp() calls when in UNALIGNED_MEMORY mode | |||
2013-03-06 | Move strtod, strtold, strtof, strtod_l, strtold_l, atof from JS side to libc ↵1.2.9 | Xuejie "Rafael" Xiao | |
side, this can fix double precision bug in original strtod implementation. | |||
2013-03-06 | simplify loop unrolling of memcpy and memset | Alon Zakai | |
2013-03-06 | Emit correct code for setjmp() calls when in UNALIGNED_MEMORY mode | Tobias Doerffel | |
makeSetValue() returns multiple statements when in UNALIGNED_MEMORY mode and thus have to be separated by commas in this context. | |||
2013-03-07 | Implement llabs(). | Bruce Mitchener | |
2013-03-05 | Merge pull request #922 from waywardmonkeys/implement-signbit | Alon Zakai | |
Implement signbit in terms of copysign. | |||
2013-03-06 | Implement signbit in terms of copysign. | Bruce Mitchener | |
Currently, copysign is broken for negative zero, so this will be as well. Fixes #911. | |||
2013-03-05 | Merge pull request #924 from waywardmonkeys/implement-sched-yield | Alon Zakai | |
Implement stub for sched_yield(). | |||
2013-03-05 | Merge pull request #926 from waywardmonkeys/implement-pthread-cond-timedwait | Alon Zakai | |
Implement stub for pthread_cond_timedwait(). | |||
2013-03-06 | Add some return values for pthread_cond_*. | Bruce Mitchener | |
2013-03-06 | Implement stub for sched_yield(). | Bruce Mitchener | |
This was in the headers, but had no implementation resulting in an undefined at runtime. | |||
2013-03-05 | Merge pull request #912 from waywardmonkeys/implement-nanosleep | Alon Zakai | |
Implement nanosleep. | |||
2013-03-05 | Merge pull request #913 from waywardmonkeys/implement-sc-nprocessors-onln | Alon Zakai | |
Implement _SC_NPROCESSORS_ONLN. | |||
2013-03-05 | Implement stub for pthread_cond_timedwait(). | Bruce Mitchener | |
This was in the headers, but had no implementation resulting in an undefined at runtime. | |||
2013-03-04 | emscripten_jcache_printf | Alon Zakai | |
2013-03-04 | Implement _SC_NPROCESSORS_ONLN. | Bruce Mitchener | |
This lets std::hardware_concurrency() give a valid return value. | |||
2013-03-04 | Implement nanosleep. | Bruce Mitchener | |
2013-03-02 | fix another memset fuzz bug | Alon Zakai | |
2013-03-02 | fix memset bug | Alon Zakai | |
2013-03-02 | Merge pull request #883 from MichaelRiss/perrorFix | Alon Zakai | |
Perror formatting fix | |||
2013-02-28 | pthread_key_delete | Alon Zakai | |
2013-02-27 | Fixed the following problems in the perror function: | Michael Riss | |
- putc is not declared -> replaced by fputc - puts was used to output the user message which automatically introduced an unwanted newline between user message and error description -> replaced by fputs which does not add the newline Signed-off-by: Michael Riss <Michael.Riss@gmx.de> | |||
2013-02-27 | Add a stub pthread_mutex_trylock(). | Bruce Mitchener | |
2013-02-26 | Merge pull request #857 from caiiiycuk/writefds | Alon Zakai | |
draft implementation for writefds | |||
2013-02-26 | handle missing pthread key-values properly | Vladimir Vukicevic | |
2013-02-25 | fix asm.js parsing of memcpy | Alon Zakai | |
2013-02-23 | implementation for writefds | Aleksander Guryanov | |
2013-02-22 | asmify memcmp | Alon Zakai | |
2013-02-21 | Merge pull request #860 from waywardmonkeys/strtok-alloc | Alon Zakai | |
Statically allocate the strtok state block so it doesn't trip up our leak detection | |||
2013-02-21 | Add TODO for missing %c functionality. | Roger Braun | |
2013-02-21 | Handle %c in sscanf. | Roger Braun | |