aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2012-03-10better handling of detection of scriptArgs and argumentsAlon Zakai
2012-03-10be careful when flushing streams that may have been closed, during shutdownAlon Zakai
2012-03-10properly implement isattyAlon Zakai
2012-03-10allow Module.stdin,out,err to provide defaults for streamsAlon Zakai
2012-03-10export malloc and free by default, many libraries need thatAlon Zakai
2012-03-10add HEAPF64, useful sometimes for manually optimized codeAlon Zakai
2012-03-06Merge pull request #301 from richardassar/array-preallocAlon Zakai
Optimisation of FS.createDataFile
2012-03-06standardize switch comparisons on signed valuesAlon Zakai
2012-03-06escape & in htmlAlon Zakai
2012-03-06ignore fence llvm itemsAlon Zakai
2012-03-05handle signedness properly in 64-bit div, mul, remAlon Zakai
2012-03-05do not rely on browser timezone info, it is very unpredictableAlon Zakai
2012-03-05fix i64 comparisonsAlon Zakai
2012-03-05properly handle html-unfriendly print() outputAlon Zakai
2012-03-05Optimisation of FS.createDataFileThe_Fly
2012-03-04make string constant comments safe for inclusion in htmlAlon Zakai
2012-03-03add noExitRuntime optionAlon Zakai
2012-03-02commentAlon Zakai
2012-03-02minify label ids to numbers early in the analysisAlon Zakai
2012-03-01emit smaller labels for loopsAlon Zakai
2012-02-29optimize alignMemoryPageAlon Zakai
2012-02-29fix i64 invoke args, and parsing of very large i64 (and other illegal) constantsAlon Zakai
2012-02-29better fix for leaked globalsAlon Zakai
2012-02-29do not pollute global scope except for node (where we must)Alon Zakai
2012-02-29prevent 3965src etc. from leaking to global scopeAlon Zakai
2012-02-28handle invoke that returns i64Alon Zakai
2012-02-27properly handle illegal phi literalsAlon Zakai
2012-02-27legalize switch i64Alon Zakai
2012-02-26remove I64_MODE, it is equal to 1 in USE_TYPED_ARRAYS 2 and only thereAlon Zakai
2012-02-25support more mathops in legalizerAlon Zakai
2012-02-25fix paramTypesAlon Zakai
2012-02-25refactor out paramX in mathopsAlon Zakai
2012-02-23ccall/cwrap docsAlon Zakai
2012-02-23do not break on \r\n on windowsAlon Zakai
2012-02-23cwrap (like ccall, but returns a wrapper function)Alon Zakai
2012-02-22fix typed exceptions for o1 and aboveAlon Zakai
2012-02-22misc library fixes for libcxxabi+test_typed_exceptionsAlon Zakai
2012-02-22support sub atomicAlon Zakai
2012-02-22use libcxxabi for dynamic_castAlon Zakai
2012-02-21work around v8 slowness bug by not calling new Array for HEAPAlon Zakai
2012-02-21Merge pull request #265 from adetaylor/polymorphic-exception-handlingAlon Zakai
Polymorphic exception handling.
2012-02-20handle bitcasts of doubles to i64s and vice versa properlyAlon Zakai
2012-02-20handle setjmp without an explicit entryAlon Zakai
2012-02-20generate signed legalized 32-bit chunksAlon Zakai
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-18ccall docsAlon Zakai
2012-02-18ccallAlon Zakai
2012-02-18add missing module exportAlon Zakai
2012-02-18do not include __inline with full libraryAlon Zakai
2012-02-18basic support for setjmp/longjmpAlon Zakai