aboutsummaryrefslogtreecommitdiff
path: root/tools
AgeCommit message (Collapse)Author
2012-01-05do not add compiler opts to CFLAGS, we add them in emcc anyhow (which is safer)Alon Zakai
2012-01-05Merge branch 'master' of git://github.com/jterrace/emscripten into incomingJeff Terrace
2012-01-04properly remove all local system include dirsAlon Zakai
2012-01-04Set HOST_* variables for cross-compilingJeff Terrace
2012-01-03Merge pull request #155 from FishingCactus/osx_darwin_fixAlon Zakai
Fix bit code detection when llvm is compiled with darwin as a target
2012-01-03force a target of i386-pc-linux-gnuAlon Zakai
2012-01-03Add comment for Osx specific treatment of bitcode filesjulien.hamaide
2012-01-03Fix bitcode support when llvm is compiled for darwin targetjulien.hamaide
2012-01-03remove label setting when we get to a single entry, even if the label ↵Alon Zakai
setting is not in a block by itself
2012-01-02use -idirafter instead of -I for our system dirs, to allow overridingAlon Zakai
2012-01-02load default settings into Settings on resetAlon Zakai
2012-01-01remove __label__ settings in hoisted blocks and if we are sure the label ↵Alon Zakai
setting is unimportant because the next code after us is not a check for the label
2012-01-01fix bug in loopOptimizer with not removing all unneeded labelsAlon Zakai
2012-01-01add .ll debugging output option to emccAlon Zakai
2011-12-31simplify shift optimizer and make it safer by not optimizing out >> << combosAlon Zakai
2011-12-31fix and enable optimizeShiftsAggressive testAlon Zakai
2011-12-31fix shift optimizer bugsAlon Zakai
2011-12-30improve shift optimizer testsAlon Zakai
2011-12-30fix bug with optimizing shifts too large for us to be optimizingAlon Zakai
2011-12-30add var for new variables in shiftOptimizer, and tweak cost function logicAlon Zakai
2011-12-29make shift optimizer output more similar to normal outputAlon Zakai
2011-12-29let shiftOptimizer either replace the original variable, or keep it and add ↵Alon Zakai
a new shifted variable
2011-12-29clean optimizeShiftsAlon Zakai
2011-12-29work harder to not modify original order of +,+,+ sets in optimizeShifts; ↵Alon Zakai
improves speed in corrections benchmark
2011-12-29tweak optimizeShifts cost functionAlon Zakai
2011-12-29fix bug with optimizeShifts asserting shifted constants can always be simplifiedAlon Zakai
2011-12-28do not recombine large shifts in optimizeShiftsAlon Zakai
2011-12-28simplify optimizeShiftsAlon Zakai
2011-12-28fix autodebugger bug with pointersAlon Zakai
2011-12-28fix bug in optimizeShifts with not fixing the shift of X = needsShiftAlon Zakai
2011-12-28ignore string nodes when recombining additions in optimizeShiftsAlon Zakai
2011-12-28do not turn shifts into slow additions in optimizeShiftsAlon Zakai
2011-12-28fix optimizeShifts bugAlon Zakai
2011-12-28complete optimizeShiftsAlon Zakai
2011-12-28initial work on optimizeShifts pass in js optimizerAlon Zakai
2011-12-27improve js optimizer removal of unnecessary |0'sAlon Zakai
2011-12-23clean up and fix js optimizer vacuum and hoisterAlon Zakai
2011-12-23fix crash when TEMP_DIR not defined in ~/.emscriptenAlon Zakai
2011-12-22js optimizer bug with removing necessary ifs, even though they have empty ↵Alon Zakai
blocks (they prevent reaching the else)
2011-12-22fix some hoisting bugs, including not hoisting inside inner loopsAlon Zakai
2011-12-22better temp dir definition and usage, and more debugging output in emccAlon Zakai
2011-12-22refactor vacuum out in js optimizerAlon Zakai
2011-12-22improve hoister cleanup a littleAlon Zakai
2011-12-22fix hoister bug with ['block']Alon Zakai
2011-12-21fix hoistMultiples bugAlon Zakai
2011-12-21fix hoistMultiples crashAlon Zakai
2011-12-20refactoring and fixes for running more tests in new o1 and o2 modesAlon Zakai
2011-12-20refactor test system, replace ta2 runs with o1 (-O1 with SAFE_HEAP) and o2 ↵Alon Zakai
(-O2 without closure)
2011-12-20fix js optimizer bugAlon Zakai
2011-12-20hoist multiples into branchings right before themAlon Zakai