aboutsummaryrefslogtreecommitdiff
path: root/src/preamble.js
AgeCommit message (Expand)Author
2013-07-22no need to closure-guard Math.imul definitions (only used internally anyhow, ...Alon Zakai
2013-07-07comment on ccall array type being 8 bitAlon Zakai
2013-07-03Merge pull request #1341 from inolen/pointer_stringify_hangAlon Zakai
2013-07-03run postSets in a global initializer, before all other global initializersAlon Zakai
2013-07-01assert on bad pointer in Pointer_stringifyAnthony Pesch
2013-05-30export PGOMonitorAlon Zakai
2013-05-22do not call code-running callbacks if ABORTing; fixes #1191Alon Zakai
2013-05-21show awaited run dependencies only in ASSERTIONS buildsAlon Zakai
2013-05-21Specialize Array/TypedArray in allocate() to avoid unnecessary array construc...tingyuan
2013-05-19export imul through closureAlon Zakai
2013-05-04make memory management sane: 0 is null, then static including globals, then s...Alon Zakai
2013-04-29improve safe heap loggingAlon Zakai
2013-04-19support for Runtime.addFunction in asm.jsAlon Zakai
2013-04-18setjmp support for asm.jsAlon Zakai
2013-04-09remove ATMAIN hack, use a designated runPostSets function for postSetsAlon Zakai
2013-04-09run postsets right before main, and after the memory initializer has been set upAlon Zakai
2013-04-09always load memory initializer asynchronously, to keep shell and web as simil...Alon Zakai
2013-04-05allow non-ta2 memory initializer loadingAlon Zakai
2013-04-05wait for Browser to show up to fetch memory initializerAlon Zakai
2013-04-05refactor preRun additionsAlon Zakai
2013-04-05use a separate memory initialization fileAlon Zakai
2013-04-05refactor runtime initializationAlon Zakai
2013-04-05initialize runtime from run() (asynchronously, if run is asynchronous)Alon Zakai
2013-03-18process in chunks in fast path in Pointer_stringifyAlon Zakai
2013-03-18check for utf and avoid the overhead if not necessary; remove UTF_STRING_SUPPORTAlon Zakai
2013-03-18make Pointer_stringify argument handling consistentAlon Zakai
2013-03-17improve error message on memory growth in asm.jsAlon Zakai
2013-03-15add option to disable utf support, and test that in asm2gAlon Zakai
2013-03-15remove unused Array_stringifyAlon Zakai
2013-03-10pgo for unused function detectionAlon Zakai
2013-03-03optimize allocate()ion of zeroinitAlon Zakai
2013-03-01limit memory growth to 1GBAlon Zakai
2013-02-27Merge pull request #882 from lptr/function-lookup-from-moduleAlon Zakai
2013-02-27Remove the inner-try again -- not needed at allLorant Pinter
2013-02-27Put back try-catch around closure exported function lookupLorant Pinter
2013-02-27Reverse the order of function lookup in getCFunc() to avoid having to call ev...Lorant Pinter
2013-02-26Add CHECK_HEAP_ALIGN to perform runtime alignment checksVladimir Vukicevic
2013-02-26Merge branch 'incoming' of github.com:lptr/emscripten into lptr-incomingAlon Zakai
2013-02-25always replace Math.imul in non-precise i32 mul mode, and disable test for th...Alon Zakai
2013-02-22use Math.imul for precise 32-bit mulAlon Zakai
2013-02-22always use Math.imul, with fast polyfill. will be useful for faster 64-bit mathAlon Zakai
2013-02-21Added some commentsLorant Pinter
2013-02-20In allocate() only query native type size when neededLorant Pinter
2013-02-17fix CHECK_OVERFLOWAlon Zakai
2013-02-17typoAlon Zakai
2013-02-17fix indentationAlon Zakai
2013-02-17remove PROFILE option. It adds unacceptable overhead, and all browsers have p...Alon Zakai
2013-02-17remove PGO option. It is only relevant for non-ta2 builds, which are on the w...Alon Zakai
2013-02-17remove asm memory masking per the new specAlon Zakai
2013-01-31fix bootstrap memset safe heap accessAlon Zakai