aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-03-28fix the case where emcc's input and output is a bitcode fileAlon Zakai
2014-03-28emcc logging improvementsAlon Zakai
2014-03-28add fastcomp env var to library builds in test runner, to fix errors in ↵Alon Zakai
slow2asm.test_the_bullet
2014-03-28fix SDL bug where freeing the surface screen did not work properlyAlon Zakai
2014-03-28add fuzz testcase for nested i24 constantExprsAlon Zakai
2014-03-27fix test_files_m on latest spidermonkey, which shows more warningsAlon Zakai
2014-03-27remove stack parameter from js optimizer traverse(), to avoid overhead when ↵Alon Zakai
not needed
2014-03-27improve debug logging of emcc invocationAlon Zakai
2014-03-27optimize away individual loop vars, even if we can't remove them allAlon Zakai
2014-03-26typo in .d code generationAlon Zakai
2014-03-26testcase for i64 < 0Alon Zakai
2014-03-26make llvm-lit test emit verbose outputAlon Zakai
2014-03-26eliminate X=X which can happen due to eliminationAlon Zakai
2014-03-26make tests/cases/usenullcall.ll a fastcomp-only testAlon Zakai
2014-03-26handle --default-object-ext properly, and other emcc fixesAlon Zakai
2014-03-25add dependency file testingAlon Zakai
2014-03-25let emcc directly access bitcode files when possible, to emit proper .d ↵Alon Zakai
files and avoid unnecessary copies
2014-03-25improve testcaseAlon Zakai
2014-03-25add testcase for use of call outputs to absolute targetsAlon Zakai
2014-03-24--emit-symbol-map optionAlon Zakai
2014-03-241.14.01.14.0Alon Zakai
2014-03-24Merge branch 'patch-1' of github.com:dandv/emscripten into incomingAlon Zakai
Conflicts: README.markdown
2014-03-24Merge branch 'patch-2' of github.com:dandv/emscripten into incomingAlon Zakai
Conflicts: AUTHORS
2014-03-24Adding @dandvDan Dascalescu
2014-03-24Merge pull request #2236 from waywardmonkeys/remove-invalid-type-info-destructorAlon Zakai
Remove empty std::type_info destructor.
2014-03-24fix caching of asm const strings; fixes #2253Alon Zakai
2014-03-23testcase for issue #2244Alon Zakai
2014-03-22do not warn on missing emscripten_ functionsAlon Zakai
2014-03-20Explain what LLVM is for new usersDan Dascalescu
2014-03-18Merge pull request #2237 from waywardmonkeys/runner-helpAlon Zakai
Update test runner help text.
2014-03-18comment on webrtc testAlon Zakai
2014-03-18webrtc test fixAlon Zakai
2014-03-18Merge pull request #2241 from Noxalus/incomingAlon Zakai
Complete the list of properly supported keys
2014-03-18Complete the list of properly supported keysNoxalus
Sort the key code and scan code maps by key and add many missing keys.
2014-03-18Merge pull request #2231 from modeswitch/incomingAlon Zakai
Add local broker for webrtc p2p test. Fixes #1974.
2014-03-18Update test runner help text.Bruce Mitchener
There is no more o1 test target.
2014-03-18Remove empty std::type_info destructor.Bruce Mitchener
This is provided by libcxxabi and there are actually 3 different destructors, not just this one, so let things pick up libcxxabi correctly.
2014-03-17add ifs benchmarkAlon Zakai
2014-03-17flip a non-existent else block in simplifyIfs, if adding such a block can helpAlon Zakai
2014-03-17flip in simplifyElses if it can helpAlon Zakai
2014-03-17fuse if-elses where the relooper did not emit a label clearingAlon Zakai
2014-03-17make simplifyIfs a settings optionAlon Zakai
2014-03-17fix else fusing when label has multiple assigns or checksAlon Zakai
2014-03-17comment on outlining downsidesAlon Zakai
2014-03-17fuse elses to remove unnecessary label settings and checks, after we ↵Alon Zakai
simplified ifs
2014-03-17don't commaify if it doesn't helpAlon Zakai
2014-03-17simplify nested ifs with identical elsesAlon Zakai
2014-03-17uncommaify between ifs that can potentially be simplifiedAlon Zakai
2014-03-17remove unnecessary code from simplifyIfsAlon Zakai
2014-03-17add another if testcase in relooperAlon Zakai