aboutsummaryrefslogtreecommitdiff
path: root/emscripten.py
AgeCommit message (Collapse)Author
2014-05-27set MAX_SETJMPS to fastcomp; 1.18.41.18.4Alon Zakai
2014-05-20wipe out emscripten.py output when it fails, so the error does not cascade ↵Alon Zakai
weirdly; fixes #2368
2014-05-12warn on bad exports, fixes #2338Alon Zakai
2014-05-08Merge pull request #2311 from fadams/fix-64bit-long-return-issueAlon Zakai
Fix 64bit long return issue
2014-05-07add Runtime.setTempRet0 method for symmetryFraser Adams
2014-05-06update setTemp* as wellAlon Zakai
2014-05-05export SAFE_FT_MASK in non-fastcomp, to fix some asm validation errorsAlon Zakai
2014-05-03add f0 in non-fastcomp when neededAlon Zakai
2014-05-03emit a global const for Math_fround(0) to avoid function call overheads in ↵Alon Zakai
the fround polyfill
2014-05-03Removed redundant wrapping function around Runtime.stackAlloc, ↵Fraser Adams
Runtime.stackSave and Runtime.stackRestore assignments to their respective versions in the asm namespace. Reran test suite and retested with my own app which makes heavy use of stackSave and stackRestore.
2014-05-02handle floats in jsCall properly; fixes asm2f.test_embind_2Alon Zakai
2014-04-27In fastcomp we actually need only tempRet0 and no higher indexes, removed ↵Fraser Adams
the higher indexes
2014-04-25support disabling ALIASING_FUNCTION_POINTERS in fastcompAlon Zakai
2014-04-24check function table masks in safe heap modeAlon Zakai
2014-04-24Fixed finger trouble typo added to emscripten.pyFraser Adams
2014-04-24Committing the actual change nowFraser Adams
2014-03-05disable asm validation when backend tells usAlon Zakai
2014-03-04Pass OPT_LEVEL into llc's -O option.Dan Gohman
2014-03-03forward assertions setting into backend, and test checking for invalid # of ↵Alon Zakai
args in static calls
2014-03-02fix ASSERTIONS output on bad function pointer callsAlon Zakai
2014-03-01sort function signatures in ASSERTIONS=2 abort message dumps, attempting to ↵Alon Zakai
show most likely related ones first
2014-03-01fix other.test_dangerous_func_castAlon Zakai
2014-03-01add test for #2175Alon Zakai
2014-03-01improve assertions message on function pointer errorsAlon Zakai
2014-02-25Introduce the asmjs-unknown-emscripten target triple.Dan Gohman
2014-02-25Fix a variety of pylint warnings.Dan Gohman
2014-02-21turn fastcomp on by default, disabling can be done with EMCC_FAST_COMPILER=0 ↵Alon Zakai
in the env
2014-02-18useful info in ASSERTIONS=1 and 2 in fastcomp for bad function pointer ↵Alon Zakai
calls, and update other.test_dangerous_func_cast to test that
2014-02-17support reserved function pointers in fastcompAlon Zakai
2014-02-17check all i64 functions for whether we need to include precise i64 codeAlon Zakai
2014-02-04WARN_UNALIGNED option for fastcompAlon Zakai
2014-02-03fix wrapper coercions on floats in fastcompAlon Zakai
2014-02-03support for floats in fastcompAlon Zakai
2014-02-02parse exports from fastcomp, and enable test_llvm_usedAlon Zakai
2014-01-30asmify randAlon Zakai
2014-01-28fix fastcomp detection; fixes #2072Alon Zakai
2014-01-17remove stale commentAlon Zakai
2014-01-16enable a form of safe heap in asm, using js optimizer pass to ensure full ↵Alon Zakai
coverage and support for fastcomp
2014-01-13optimize searching in set of implemented functions in fastcomp toolchain codeAlon Zakai
2014-01-12export named globals from fastcomp to jsAlon Zakai
2014-01-07notice simd signal from fastcompAlon Zakai
2013-12-19move fastcomp simplification code into emcc, and simplify itAlon Zakai
2013-12-19more dotzero fixesAlon Zakai
2013-12-18fix dot zero correction after < or >Alon Zakai
2013-12-15more float dotzero fixesAlon Zakai
2013-12-15fix for dot fixingAlon Zakai
2013-12-15when not running js opts in fastcomp, fix +f to f.0 in pythonAlon Zakai
2013-12-15timing reports for fastcompAlon Zakai
2013-12-14take into account redirects in wrappersAlon Zakai
2013-12-13do not import functions implemented by fastcompAlon Zakai