aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2013-06-22show auto-linking decision process only in VERBOSEAlon Zakai
2013-06-21do not run addition optimization pass in asm; it just adds overhead, and ↵Alon Zakai
minorly increases code size by changing addition order against the grain of operator precedence
2013-06-21update testsAlon Zakai
2013-06-21reduce indentation in relooper1.5.1Alon Zakai
2013-06-21decrease indentation in jsifierAlon Zakai
2013-06-21decrease indentation level in js optimizerAlon Zakai
2013-06-21do not eliminate loop vars when there is a shared helperAlon Zakai
2013-06-21todoAlon Zakai
2013-06-20Merge pull request #1312 from juj/win_test_statics_fixAlon Zakai
In metadata, store paths parsed from .ll files using forward slashes on Windows.
2013-06-20do not return node in main simplifyNotCompsPass all the time, it thinks it ↵Alon Zakai
is being replaced and adds much overhead
2013-06-20remove unneeded argument handling in lua-scimarkAlon Zakai
2013-06-20asmify copyTempFloat|DoubleAlon Zakai
2013-06-20fix browser test harnessAlon Zakai
2013-06-20ensure a coercion on invoke callsAlon Zakai
2013-06-19fix CHECK_ALIGNAlon Zakai
2013-06-19hardcode arguments in benchmarks, even luaAlon Zakai
2013-06-19move lua binarytree args handling into lua scriptAlon Zakai
2013-06-19update fastLong.jsAlon Zakai
2013-06-19fix bug with reducing f()|0|constAlon Zakai
2013-06-19fix memmoveAlon Zakai
2013-06-19properly coerce imprecise i64 math callsAlon Zakai
2013-06-19keep |0 on function calls, allow other bitwise ops on heap accesses etc.Alon Zakai
2013-06-20In metadata, store paths parsed from .ll files using forward slashes on ↵Jukka Jylänki
Windows. Fixes safe heap line detection on Windows (the code splits on '/' only as path delimiter), closes issue #1233.
2013-06-19keep coercions on heap accesses and function calls, but fully optimize them ↵Alon Zakai
otherwise
2013-06-18Merge pull request #1308 from int3/better-testsAlon Zakai
Some refactoring / general improvements to the test runner.
2013-06-18Favor explicit parameter passing over string manipulation.Jez Ng
2013-06-18Actually exit test runner when browser tests are done.Jez Ng
Using __del__ didn't work for me with Python 2.7.2 on OS X.
2013-06-18Make more tests use btest().Jez Ng
Also fix test_glgears_deriv so that it actually animates its gears.
2013-06-18Merge pull request #1304 from int3/sdlAlon Zakai
Fix SDL color encoding
2013-06-18Missed out making some tests portable.Jez Ng
2013-06-18post messages to crunch worker with a new arrayBuffer, to avoid copying an ↵Alon Zakai
underlying one
2013-06-18Merge pull request #1307 from int3/node-version-updateAlon Zakai
Update minimum node version to v0.8.
2013-06-18reduce error to warning on having no functionsAlon Zakai
2013-06-18Update minimum node version.Jez Ng
2013-06-18disable new test_varargs in x86 (requires le32 now)Alon Zakai
2013-06-18Merge pull request #1301 from Manny-MADE/va_lists_fixAlon Zakai
BUGFIX: lists cannot be copied as "llvm_va_copy" was broken, didn't copy list offset
2013-06-18add wip inlinejs2 testAlon Zakai
2013-06-18do not do full Browser.init() in workers, just the minimum we needAlon Zakai
2013-06-18do not use EMCC_OPTIMIZE_NORMALLY in relooperAlon Zakai
2013-06-18Fix bug in file_packager.py introduced in my recent pull request that caused ↵Jukka Jylänki
all files to be skipped from being packaged if the path contains a relative '.' in its path name (e.g. './path/etc').
2013-06-18CHANGED: using spaces instead of tabs to match project codestylemanny/MADE
2013-06-18CHANGED: using spaces instead of tabs to match project codestylemanny/MADE
2013-06-18CHANGED: added myself to AUTHORSmanny/MADE
2013-06-18ADDED: test to ensure va_lists work properly when copied, reinitialized etc.manny/MADE
2013-06-18IMPROVED: va_list offset is not hardcoded, added commentsmanny/MADE
2013-06-18BUGFIX: lists cannot be llvm_va_copy was broken, didn't copy list offsetmanny/MADE
2013-06-17Make browser tests nicer to run.Jez Ng
A bunch of misc changes, including fixing compile-time warnings, and muting the Python server request log.
2013-06-17Fix SDL color encoding.Jez Ng
Little-endian + RGBA means that red is located at the lowest-order bits, not the highest. The hello_world_sdl test is now portable, because we no longer write to individual bytes. We also add a test for a completely blank screen, which should be black, not red. Closes #1287, #761, #765.
2013-06-17improve inline js testAlon Zakai
2013-06-17Merge pull request #1281 from juj/noninput_cmdline_optsAlon Zakai
Improve emcc input file detection to ignore all arguments that precede a...