Age | Commit message (Collapse) | Author | |
---|---|---|---|
2013-04-08 | Remove '.' print in tools/js_optimizer.py on Windows. Fixes ↵ | Jukka Jylänki | |
other.test_chunking on Windows. On Windows, prints to stdout/stderr do not appear coherently synchronized per-line if multiple threads print data simultaneously to console. This caused other.test_chunking tests to fail when they receive output like emcc: step took 5.09 seconds emcc: running pre-closure post-opts emcc: running post-closure post-opts emcc: applying js optimization passes: ['eliminate', 'simplifyExpressionsPre', 'simplifyExpressionsPost', 'last'] splitting up js o. ptimization into 2 chunks of size 1048576, using 2 cores (total: 1.42 MB) emcc: step took 2.37 seconds emcc: total time: 11.75 seconds where the test looks for the string 'splitting up js optimization into' from the output. Note that the chunk processor thread has printed a single '.' in between the critical line, creating a race condition that randomly makes the test pass or fail, depending on where in the output the '.' lands in. | |||
2013-04-03 | bump MAX_NAMES | Alon Zakai | |
2013-03-12 | fix globalScope altering in runtimelink modules; fixes test_runtimelink | Alon Zakai | |
2013-03-11 | bump number of minified names | Alon Zakai | |
2013-03-10 | add 'progress' updates from multicore operations in emcc | Alon Zakai | |
2013-03-10 | use whitelist of lines to forward out of generated functions area | Alon Zakai | |
2013-03-09 | do not wipe out everything after the generated functions suffix; fixes ↵ | Alon Zakai | |
test_embind | |||
2013-03-09 | remove limitations on minified names | Alon Zakai | |
2013-03-09 | compress asm shell | Alon Zakai | |
2013-03-09 | improve non-asm parsing of generated functions area to be identical in ↵ | Alon Zakai | |
EMCC_DEBUG=1 and 2 | |||
2013-03-09 | do not emit generated functions suffix when no longer needed | Alon Zakai | |
2013-03-08 | save 0.0 in asm shell minification | Alon Zakai | |
2013-03-08 | fix another name collision | Alon Zakai | |
2013-03-08 | fix temporary workaround for register names | Alon Zakai | |
2013-03-08 | for now, do not use rX as minified names, reserve that for registerize locals | Alon Zakai | |
2013-03-08 | increase number of minified names, and add func markers | Alon Zakai | |
2013-03-08 | remove unnecessary semicolon; hello world minifies | Alon Zakai | |
2013-03-08 | start to minify inside functions, using global data from previous pass | Alon Zakai | |
2013-03-08 | minify globals in a pass before the functions | Alon Zakai | |
2013-03-08 | split out asm shell in js optimizer, in preparation for minification of globals | Alon Zakai | |
2013-03-08 | remove unneeded line | Alon Zakai | |
2013-03-08 | add explicit markers in generated code of where functions and asm are | Alon Zakai | |
2013-03-08 | disable minification | Alon Zakai | |
2013-03-08 | fix global minifying | Alon Zakai | |
2013-03-08 | initial work on asm.js minifier infrastructure | Alon Zakai | |
2013-03-08 | send only a marker of generated functions to js-optimizer.js; we either know ↵ | Alon Zakai | |
the generated functions and send only them, or we don't know them and send all the code, in either case js-optimizer.js does not need a list of generated functions | |||
2013-03-04 | fix some test failures | Chad Austin | |
2013-03-04 | Get the TempFiles object from the Configuration | Chad Austin | |
2013-03-04 | Make chunkify a free function | Chad Austin | |
2013-03-04 | Integrate azakai's style feedback and make sanity tests pass again. | Chad Austin | |
2013-03-04 | Remove TempFiles's dependency on global and environment variables | Chad Austin | |
2013-02-28 | disable 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-28 | test updates | Alon Zakai | |
2013-02-26 | do not emit EMSCRIPTEN_GENERATED_FUNCTIONS to the final output, it is just ↵ | Alon Zakai | |
needed internally | |||
2013-02-26 | allow adjusting # of cpu cores to use with EMCC_CORES | Alon Zakai | |
2013-02-26 | only check # of cores once in js optimizer | Alon Zakai | |
2013-02-26 | adjust cache sizes a little more and update tests | Alon Zakai | |
2013-02-26 | adjust chunking sizes | Alon Zakai | |
2013-02-22 | fix jsfuncchunking bug | Alon Zakai | |
2013-01-16 | js optimize debugging comment | Alon Zakai | |
2012-12-31 | Merge branch 'incoming' into asm_js | Alon Zakai | |
Conflicts: src/library_browser.js | |||
2012-12-23 | clean up all temp files in js optimizer | Alon Zakai | |
2012-12-23 | clean up temp files in js optimizer | Alon Zakai | |
2012-12-07 | notice function indentation in js_optimizer.py so that we properly scan ↵ | Alon Zakai | |
indented code in asm.js | |||
2012-12-07 | fix suffix in js optimizer | Alon Zakai | |
2012-11-22 | notice generated functions with $ in them | Alon Zakai | |
2012-11-22 | fix bug in js optimizer on closured data | Alon Zakai | |
2012-11-22 | more carefully split out functions in js optimizer | Alon Zakai | |
2012-11-21 | more jcache testing, and add newlines to ensure chunk separation | Alon Zakai | |
2012-11-21 | finish js optimizer caching and add tests | Alon Zakai | |