aboutsummaryrefslogtreecommitdiff
path: root/src/library.js
AgeCommit message (Collapse)Author
2012-03-05do not rely on browser timezone info, it is very unpredictableAlon Zakai
2012-02-26remove I64_MODE, it is equal to 1 in USE_TYPED_ARRAYS 2 and only thereAlon Zakai
2012-02-22fix typed exceptions for o1 and aboveAlon Zakai
2012-02-22misc library fixes for libcxxabi+test_typed_exceptionsAlon Zakai
2012-02-22use libcxxabi for dynamic_castAlon Zakai
2012-02-21Merge pull request #265 from adetaylor/polymorphic-exception-handlingAlon Zakai
Polymorphic exception handling.
2012-02-20Polymorphic exception handling.Adrian Taylor
Previously exception handling only worked if there were a 'catch' block which precisely matched the type of the thrown exception. That's not always the case if we're trying to catch subclasses. This change enhances behaviour to match subclasses, and also covers some other cases where we weren't catching the right thing.
2012-02-18do not include __inline with full libraryAlon Zakai
2012-02-18basic support for setjmp/longjmpAlon Zakai
2012-02-14Merge pull request #246 from adetaylor/atexit-fixAlon Zakai
Fix for order in which 'atexit' registered functions are called
2012-02-13actually return the valid pointer in dynamic castAlon Zakai
2012-02-12Fixing order of atexit calls.Adrian Taylor
2012-02-11only support i64 mode 1 in ta2Alon Zakai
2012-02-11fix parseIntAlon Zakai
2012-02-10Merge pull request #232 from FishingCactus/opengles_wipAlon Zakai
Opengles fixes
2012-02-09Implement std::uncaught_exception() in jsEhsan Akhgari
2012-02-09Fix readdir()julien.hamaide
2012-02-05fix bug with sscanf on negative floatsAlon Zakai
2012-02-05do ATINIT and ATEXIT in orderAlon Zakai
2012-02-05add preRun and postRun hooks in Module, and tweak FS initializationAlon Zakai
2012-02-05auto-call FS.init only if not already initializedAlon Zakai
2012-02-04assert on FS.init being only called onceAlon Zakai
2012-02-02stubs for _l localized versions of strtol* functionsAlon Zakai
2012-01-31fix rusage struct def in libraryAlon Zakai
2012-01-31do not rely on debug metadata (which can be lost in llvm unsafe opts) for ↵Alon Zakai
structure type info
2012-01-28Merge branch 'master' into llvmoptsAlon Zakai
2012-01-28Merge branch 'master' into glgearsEhsan Akhgari
2012-01-27Merge branch 'handle_broken_lli' into glgearsEhsan Akhgari
Conflicts: src/preamble.js
2012-01-26ntohl etc.Alon Zakai
2012-01-25Add tests for div() and sincos(), and also implement and test sincosfEhsan Akhgari
2012-01-24fix some i64 printing rounding errorsAlon Zakai
2012-01-24fix i64 mode 1 bitshifts, and improve printing of i64 mode 1sAlon Zakai
2012-01-23Fix the implementation of div()Ehsan Akhgari
2012-01-22Implement div()Ehsan Akhgari
2012-01-22Change the signature of sincos to match the GNU libc oneEhsan Akhgari
2012-01-22Implement sincosEhsan Akhgari
2012-01-18Merge branch 'master' into libcxxAlon Zakai
2012-01-18add return value in munmapAlon Zakai
2012-01-18Optimized mmap implementation to use malloc and memset instead of allocate.Jeff Terrace
2012-01-17add some library stubsAlon Zakai
2012-01-16remove iostream from libraryAlon Zakai
2012-01-16some libcxx js stubsAlon Zakai
2012-01-16make root writable by default, removing the need to add root.write = trueAlon Zakai
2012-01-16remove hack for ignorePermissions in the filesystem API, which removes the ↵Alon Zakai
need to set ignorePermissions to true before run() is called
2012-01-16refactor runtime init and exit codeAlon Zakai
2012-01-12Merge pull request #170 from FishingCactus/class_exceptionAlon Zakai
Catching specific exception type now works
2012-01-12Fix library exception function to work with QUANTUM_SIZE=1julien.hamaide
2012-01-10Update stub malloc to byte-align by 8, update dlmalloc not to use mmap, and ↵Jeff Terrace
update mmap to use malloc when MAP_ANONYMOUS
2012-01-08support alignment in memset and memcpy in ta2Alon Zakai
2012-01-07fix safe heap bug with memmoveAlon Zakai