aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-05-28initialize errnoAlon Zakai
2013-05-28add std::exception testcaseAlon Zakai
2013-05-28implement ~exception in header, to make std::exception usable; fixes #1198Alon Zakai
2013-05-27make sure emscripten_run_script_int returns an intAlon Zakai
2013-05-27define EMSCRIPTEN in the environment when using emmakeAlon Zakai
2013-05-27emscripten_exit_with_live_runtimeAlon Zakai
2013-05-25improve test_llvmswitchAlon Zakai
2013-05-25fix registerize semantics to treat each arm of ifs and switches separatelyAlon Zakai
2013-05-25registerize in asm switchesAlon Zakai
2013-05-25add test for current state of asm registerize in switches (i.e., do almost ↵Alon Zakai
nothing)
2013-05-25use smaller special label for longjmpAlon Zakai
2013-05-25eliminate into switch casesAlon Zakai
2013-05-25silence exceptions during cxa_free_exceptionAlon Zakai
2013-05-25tiny bit more embind testingAlon Zakai
2013-05-25enable asm.js in embind, with extra reserved function pointers by defaultAlon Zakai
2013-05-25do not emit resumeException when exceptions are disabledAlon Zakai
2013-05-25additional embind testingAlon Zakai
2013-05-24handle globals with no value and no zeroinitAlon Zakai
2013-05-24auto-export malloc, needed by file packagerAlon Zakai
2013-05-24Merge pull request #1203 from michaeljbishop/objc-supportAlon Zakai
Allow Emscripten to recognize and compile .m and .mm files
2013-05-24Simplified code by using a tuple in combination with `endsWith`.Michael Bishop
2013-05-24show --help in emcc even if there are other argsAlon Zakai
2013-05-23make file packager closure-friendlyAlon Zakai
2013-05-23remove llvm.global_ctors from libcxx symbolsAlon Zakai
2013-05-23properly expand response files in EXPORTED_FUNCTIONS, which is used before ↵Alon Zakai
compiler.js
2013-05-23support relative paths in -s KEY=@pathAlon Zakai
2013-05-23handle ./ in file packagingAlon Zakai
2013-05-23Merge pull request #1204 from sunfishcode/incomingAlon Zakai
Optimize (x&A)<<B>>B.
2013-05-23Add myself to the AUTHORS file.Dan Gohman
2013-05-23add linpack benchmarkAlon Zakai
2013-05-23actually implement clock_gettime()Alon Zakai
2013-05-23fix argument counting regression from 5efd506 ; fixes #1202Alon Zakai
2013-05-23Allowed Emscripten to recognize and compile .m and .mm filesMichael J. Bishop
(Objective-C and Objective-C++, respectively)
2013-05-23add 2011 splash slidesAlon Zakai
2013-05-22handle dynamic indexes properly, even out of bounds, for array gep lookups; ↵Alon Zakai
fixes #865
2013-05-22Browser.safeCallbackAlon Zakai
2013-05-22do not call code-running callbacks if ABORTing; fixes #1191Alon Zakai
2013-05-22Optimize (x&A)<<B>>B.Dan Gohman
Add an optimization to simplifyExpressionsPre to replace (x&A)<<B>>B with X&A if possible. This comes up frequently in C++ with bool variables.
2013-05-21remove warningAlon Zakai
2013-05-21show awaited run dependencies only in ASSERTIONS buildsAlon Zakai
2013-05-21fix test_sdl_audioAlon Zakai
2013-05-21allocate using NORMAL in FS.init, to avoid races with data packages arriving ↵Alon Zakai
and using malloc before us
2013-05-21disable closure in some non-asm tests where it fails to properly minify ↵Alon Zakai
Math.imul
2013-05-21Conform to coding conventions.tingyuan
2013-05-21Make a temporary variable local.tingyuan
2013-05-21Unleash the 4k alignment of mmap() in the test_mmap().tingyuan
2013-05-21mmap(): Align to malloc's default alignment instead of pages.tingyuan
2013-05-21Assert that MAP_SHARED is only specified with files backed by HEAP.tingyuan
2013-05-211. mmap(): Make use of files that is backed by HEAP.tingyuan
2. mmap(): Use valloc() directly. 3. mmap(): Try to avoid Array.slice() when possible.
2013-05-21Specialize Array/TypedArray in allocate() to avoid unnecessary array ↵tingyuan
constructions.