summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2013-01-17Merge pull request #778 from caiiiycuk/exception_catching_in_scopeAlon Zakai
Implement exceptions in scopes
2013-01-17pack global constant allocations to save space, and allow typed array .set() ↵Alon Zakai
for writing them out
2013-01-17Implement exceptions in whitelistAleksander Guryanov
2013-01-16library: Support external libraries that modify Array.prototypeJasper St. Pierre
While a somewhat-dangerous practice, existing users do do this, and we shouldn't abort on it. Using hasOwnProperty is a simple way to make sure we're checking the dense array itself, not the prototype.
2013-01-16fix resumeAlon Zakai
2013-01-16missing var in fake mallocAlon Zakai
2013-01-16- remove erroneous, trailing comma at the end of the previously added ↵Michael Riss
gluOrtho2D function - fix my AUTHORS name Signed-off-by: Michael Riss <Michael.Riss@gmx.de>
2013-01-16Added the gluOrtho2D function.Michael Riss
Signed-off-by: Michael Riss <Michael.Riss@gmx.de>
2013-01-16do not emit __asm lib stuff in FULL_LIBRARY modeAlon Zakai
2013-01-16allow defining asm library functions, which are then included as if they ↵Alon Zakai
were generated code
2013-01-16allow forcing asm mode in makeGetValue, to allow library functions to use ↵Alon Zakai
asm notation
2013-01-15handle phis from indirectbrAlon Zakai
2013-01-15make sure to not emit bools in i64Math commandsAlon Zakai
2013-01-15asm coercions on args to bitshift64Alon Zakai
2013-01-15make bitshift64 use integer constants for the opAlon Zakai
2013-01-15ensure explicit floats in function call arguments and all coercionsAlon Zakai
2013-01-14add |0 to ne, eq icmpsAlon Zakai
2013-01-14fix type of [i|f]cmpAlon Zakai
2013-01-14make 64-bit comparisons avoid &&,||Alon Zakai
2013-01-14use tempBigInt properly in asmAlon Zakai
2013-01-14use | in switch joined evaluationsAlon Zakai
2013-01-14asm-coerce i64Math argumentsAlon Zakai
2013-01-14asm coerce the outputs of heap reads for tempDoubleAlon Zakai
2013-01-14use &,| to combine illegal reductionsAlon Zakai
2013-01-14fix atomics for asmAlon Zakai
2013-01-14fix asm var defs of illegalsAlon Zakai
2013-01-14refactor setting of tempDoublePtr to allow simple type coercion of valueAlon Zakai
2013-01-14clear message when exception catching is disabled and an exception is thrownAlon Zakai
2013-01-14Added floating point aliases for sscanfmanuels
2013-01-13don't emit switch in jsifier.js in reloop mode; we would do that in the relooperAlon Zakai
2013-01-13add testcase with big switch for #781Alon Zakai
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