aboutsummaryrefslogtreecommitdiff
path: root/tools
AgeCommit message (Collapse)Author
2013-02-28disable v8 stack size increase because of windows instability; make it easy ↵Alon Zakai
to at least add params to node/v8 in ~/.emscripten by defining a list there and not just a string
2013-02-28enlarge v8/node stack size, to avoid relooper stack overflows on huge projectsAlon Zakai
2013-02-28test updatesAlon Zakai
2013-02-28inline by default, now that lto is off by defaultAlon Zakai
2013-02-27Merge pull request #872 from juj/popen_printAlon Zakai
Add additional error reporting to Popen failures on Windows to be able t...
2013-02-26only put filenames with no space in response fileVladimir Vukicevic
llvm-link can't seem to handle spaces in response files sanely, and I can't find a way to quote them. So just don't include them, and use it only on Windows.
2013-02-26add cache debuggingVladimir Vukicevic
2013-02-26clean up response file codeAlon Zakai
2013-02-26Generate response file for llvm-linkVladimir Vukicevic
2013-02-26make DEBUG an intAlon Zakai
2013-02-26sort settings keys, to ensure the same order for debugging and jcache ↵Alon Zakai
comparisons
2013-02-26do not emit EMSCRIPTEN_GENERATED_FUNCTIONS to the final output, it is just ↵Alon Zakai
needed internally
2013-02-26save last cache clear timeAlon Zakai
2013-02-26allow adjusting # of cpu cores to use with EMCC_CORESAlon Zakai
2013-02-26only check # of cores once in js optimizerAlon Zakai
2013-02-26more jcache logging in debug modeAlon Zakai
2013-02-26adjust cache sizes a little more and update testsAlon Zakai
2013-02-26adjust chunking sizesAlon Zakai
2013-02-25remove debug printAlon Zakai
2013-02-25remove llvm-nm/dis checks for bitcode in is_bitcodeAlon Zakai
2013-02-25only do llvm-nm in linking if there is at least one ar fileAlon Zakai
2013-02-25cache llvm-nm resultsAlon Zakai
2013-02-25Add additional error reporting to Popen failures on Windows to be able to ↵Jukka Jylänki
pinpoint what command line causes a failure.
2013-02-23commented out debugging tipAlon Zakai
2013-02-22fix jsfuncchunking bugAlon Zakai
2013-02-22fix minor jcache bug and add assertionsAlon Zakai
2013-02-21Merge pull request #859 from waywardmonkeys/cmdline-fixesAlon Zakai
Cmdline fixes
2013-02-21hide verbose file packager outputAlon Zakai
2013-02-20Provide error message on invalid command to emmake.Bruce Mitchener
Previously, this would just throw an exception, now it provides a reasonable error message.
2013-02-18run closure in -O3, it makes sense there with the other unsafe optimizationsAlon Zakai
2013-02-17fix registerize bug on functions with arguments but no localsAlon Zakai
2013-02-08do not disable corrections/roundings/overflows in -O3Alon Zakai
2013-02-04optimize num >> num in js optimizer, necessary for asm now that we do not do ↵Alon Zakai
shift optimization there
2013-02-02eliminate into labelsAlon Zakai
2013-02-02always use labels in multiple blocks; emit no more one-time loops but rather ↵1.2.4Alon Zakai
labeled ifs
2013-01-31hide some warnings when not in debug mode; helps in #811Alon Zakai
2013-01-26use -fno-math-errno in native lib builds tooAlon Zakai
2013-01-25improve benchmark infrastructure in preparation for zlib benchmarkAlon Zakai
2013-01-23add final asm return of proper type, not always intAlon Zakai
2013-01-19support 0x[a-f] as well in +X to X.0 correction for asmAlon Zakai
2013-01-19support 0x... numbers in +X to X.0 correction for asmAlon Zakai
2013-01-19emit 5.0 instead of +5 in asmAlon Zakai
2013-01-18fix simplyExpressions bug with removing too many |0sAlon Zakai
2013-01-16js optimize debugging commentAlon Zakai
2013-01-15Merge pull request #780 from juj/no-ms-compatibilityAlon Zakai
Don't run Clang in MS compatibility mode on Windows (-fno-ms-compatibility).
2013-01-15collect local vars in asm normalization from later defs, not just initialsAlon Zakai
2013-01-14do not remove asm heap coercion in js optimizer when optimizing h8 & 255Alon Zakai
2013-01-13Don't run Clang in MS compatibility mode on Windows (-fno-ms-compatibility). ↵Jukka Jylänki
Fixes #762. Thanks to d0k in #llvm for the helpful insight!
2013-01-12emit 0.0 in asm double definitionsAlon Zakai
2013-01-12refactor use of asm in js optimizerAlon Zakai