aboutsummaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2013-01-13workarounds for chrome bug 169705Alon Zakai
2013-01-11make asm i32 multiply use signed mathAlon Zakai
2013-01-11correct sign when casting int to double in asmAlon Zakai
2013-01-11more tempDoublePtr refactoringAlon Zakai
2013-01-11make makeGetTempDouble asm-friendlyAlon Zakai
2013-01-11refactor makeGetTempDoubleAlon Zakai
2013-01-11fix glVertex3fAlon Zakai
2013-01-11fix gl lib alias calling from js lib codeAlon Zakai
2013-01-11fix connect(); cannot call from js lib code into a lib alias, must call the ↵Alon Zakai
target
2013-01-11fix asm multiply for both floats and intsAlon Zakai
2013-01-11perform asm multiply in getFastValue, so it is used everywhere it needs to beAlon Zakai
2013-01-10ensure that finalized float values are asm-coercedAlon Zakai
2013-01-10auto-export some special functions if they are dependencies of a JS library ↵Alon Zakai
element
2013-01-10properly name Math.* redirects in function tableAlon Zakai
2013-01-10fix calling of functions library-redirected to Math.*Alon Zakai
2013-01-10restore basic malloc/free implementationAlon Zakai
2013-01-10do not emit values for redirected library idents, they would not be used anyhowAlon Zakai
2013-01-10remove unneeded malloc/free/etc. stuff from library.jsAlon Zakai
2013-01-10call library aliases directly by their target nameAlon Zakai
2013-01-10link in memcpy after opts and lto if it shows up only at that timeAlon Zakai
2013-01-09no point in sending alignment info to libc memcpy()Alon Zakai
2013-01-09make stub memcpy more functional, useful in some testsAlon Zakai
2013-01-09use musl memcpy instead of out handwritten js oneAlon Zakai
2013-01-09fix asmEnsureFloat and asmInitializerAlon Zakai
2013-01-08fix asmCoercion for aggregate typesAlon Zakai
2013-01-08uncomment exception stubAlon Zakai
2013-01-08asm coerce varargs argumentAlon Zakai
2013-01-08stub _ZNSt9exceptionD2Ev for the case where dlmalloc is included but not ↵Alon Zakai
libcxx, to avoid an asm warning
2013-01-08ensure a return when an abort happens in a function that returns somethingAlon Zakai
2013-01-08refactor networking code to start supporting multiple backendsAlon Zakai
2013-01-07Merge remote-tracking branch 'wolfviking/incoming' into incomingAlon Zakai
Conflicts: AUTHORS src/library_browser.js system/include/emscripten/emscripten.h
2013-01-07fix asm relooper bug1.2.2Alon Zakai
2013-01-07do not asm coerce values of type void (e.g. functions that return nothing)Alon Zakai
2013-01-07ensure float literals are hinted as floats in asmAlon Zakai
2013-01-07add asm.js mode to relooper, for label comparisons1.2.1Alon Zakai
2013-01-07update relooper testsAlon Zakai
2013-01-07always coerce asm callsAlon Zakai
2013-01-07reset the stack top when CATCH_EXIT_CODEAlon Zakai
2013-01-07disable EXCEPTION_DEBUG by defaultAlon Zakai
2013-01-07notice Math.* library redirects as being functionsAlon Zakai
2013-01-07fix bug with adding non-functions to libraryFunctions in ASM_JSAlon Zakai
2013-01-06do not call run if dependencies are resolved but we were not supposed to ↵Alon Zakai
call run in the first place
2013-01-06index, rindexAlon Zakai
2013-01-05fix networking for both stream and dgramAlon Zakai
2013-01-04handle sending forced messages of non-multiple-of-4 sizesAlon Zakai
2013-01-04SOCKET_FORCED_MESSAGING optionAlon Zakai
2013-01-04refactor socket code, ensure that each call to recv/recvmsg receives a ↵Alon Zakai
single separate message
2013-01-04rename socket queueAlon Zakai
2013-01-04refactor socket code, ensure that we send all a sendmsg's iovs in a single ↵Alon Zakai
socket send
2013-01-03fix sdl shutdown crashAlon Zakai