aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-12-21benchmark fastcompAlon Zakai
2013-12-21error on unsupported features in fastcompAlon Zakai
2013-12-21Update test other.test_demangle to pass after the previous commit which ↵Jukka Jylänki
added demangling '_main' to 'main()'.
2013-12-20update browser.test_preload_fileAlon Zakai
2013-12-20fix emcc usage of file packagerAlon Zakai
2013-12-20update tests for recent file packager changesAlon Zakai
2013-12-20fix file packagerAlon Zakai
2013-12-20fuzz i64 math as wellAlon Zakai
2013-12-20do not force asm in fuzzerAlon Zakai
2013-12-20randomize opt level in csmith driverAlon Zakai
2013-12-20fuzz testcaseAlon Zakai
2013-12-20Merge pull request #1922 from coolwanglu/embed_dot_filesAlon Zakai
--exclude-file
2013-12-20Merge pull request #1635 from juj/emscripten_logAlon Zakai
emscripten_log() and emscripten_get_callstack()
2013-12-20fuzz testcaseAlon Zakai
2013-12-20fuzz testcaseAlon Zakai
2013-12-20improve fuzz testcase runnerAlon Zakai
2013-12-20simplify ir for fastcomp after the autodebugger runsAlon Zakai
2013-12-20make fuzz tester executableAlon Zakai
2013-12-20csmith fixesAlon Zakai
2013-12-20Fix browser.test_emrun to utilize the EMSCRIPTEN_BROWSER env. variable like ↵Jukka Jylänki
the rest of the browser suite does, instead of always testing user default browser.
2013-12-20In browser.test_emrun, use --log_stdout and --log_stderr to capture run ↵Jukka Jylänki
output instead of python pipe, since on linux, spawning chrome browser would run into a mysterious issue where piping the emrun output would hang the python subprocess spawn.
2013-12-20Improve emrun browser launch detach detection on linux. Shield log printing ↵Jukka Jylänki
with mutex to not interleave multiple prints to same line without a delimiting newline.
2013-12-20Fix potential race condition in emrun where the browser was spawned before ↵Jukka Jylänki
the web server, and theoretically browser could attempt to load the page before server is even up. Not detected in practice, but could happen.
2013-12-20Remove unneeded newline append in emrun when logging to file.Jukka Jylänki
2013-12-20Make emrun executable on linuxJukka Jylänki
2013-12-20Add verbose debug print to emrun exit to troubleshoot linux process hang ↵Jukka Jylänki
issue when spawning chrome browser.
2013-12-20Remove bad print in emrun when the message that arrived out-of-sequence ↵Jukka Jylänki
should not have been printed, but queued to be printed later.
2013-12-20Move emscripten-source-map.min.js to src/ since it is a non-tests file ↵Jukka Jylänki
needed by public use when user wants to emscripten_log with a C callstack. Remove redundant emscripten_demangle function.
2013-12-20Update emscripten_log to work with the handwritten JS demangler. Update tests.Jukka Jylänki
2013-12-20Also give the ability to print out function parameters in the callstack with ↵Jukka Jylänki
emscripten_get_callstack.
2013-12-20Add new functions emscripten_log() in emscripten.h which allows printing out ↵Jukka Jylänki
log messages with callstack information, and function emscripten_get_callstack(), which allows programmatically obtaining the current callstack.
2013-12-20Merge pull request #1934 from juj/eglCreateContextjuj
eglCreateContext.
2013-12-20Make EGL function eglCreateContext spec-conformant and actually read the ↵Jukka Jylänki
EGL_CONTEXT_CLIENT_VERSION field when creating a context. Require the version number 2, since WebGL1 maps to GLES2.
2013-12-19simplify for fastcomp together with other link operationsAlon Zakai
2013-12-19move fastcomp simplification code into emcc, and simplify itAlon Zakai
2013-12-19avoid llvm-dis in fastcompAlon Zakai
2013-12-19make default tests work in fastcompAlon Zakai
2013-12-19make test_outline more lenientAlon Zakai
2013-12-19Merge pull request #1935 from sunfishcode/incomingAlon Zakai
Optimize away masks on stores to HEAP8 and HEAP16.
2013-12-19Merge pull request #1932 from juj/emrun_argc_argvAlon Zakai
Implement command line passing to work to emrun when --emrun is passed.
2013-12-19Merge pull request #1933 from ehostunreach/computed_gotoAlon Zakai
Clean up test_indirectbr_many with the help of preprocessor macros
2013-12-19Optimize away masks on stores to HEAP8 and HEAP16.Dan Gohman
Optimize HEAP8[i] = x & 255 to HEAP8[i] = x, and similar for HEAP16.
2013-12-19fix tests/cases/phientryimplicit.llAlon Zakai
2013-12-19Clean up test_indirectbr_many using preprocessor macrosVasilis Kalintiris
2013-12-19more dotzero fixesAlon Zakai
2013-12-19remove java_nbody from core benchmarksAlon Zakai
2013-12-19Implement command line passing to work to emrun when --emrun is passed.Jukka Jylänki
2013-12-19Support --browser_info and --system_info in emrun when used with --android.Jukka Jylänki
2013-12-19Add support for listing detected browsers on Android in emrun, when emrun ↵Jukka Jylänki
--android --list_browsers is called.
2013-12-19Require that --browser is used with --android.Jukka Jylänki