aboutsummaryrefslogtreecommitdiff
path: root/tools
AgeCommit message (Collapse)Author
2014-06-13Fix ffdb.py issue on Windows where user cannot abort logging with Ctrl-C. ↵Jukka Jylänki
Add log colors to Windows prints as well. Make default logging output format contain less cruft.
2014-06-11Hide false warnings in 'ffdb.py install --run --log' if app was not ↵Jukka Jylänki
installed or running before.
2014-06-11Improve Ctrl-C exception detection to cover the whole ffdb.py app.Jukka Jylänki
2014-06-10Add support for printing out a memory summary of a running application with ↵Jukka Jylänki
ffdb via 'ffdb.py memory <app>'.
2014-06-10Add support for printing FFOS device system description fields (deviceActor ↵Jukka Jylänki
getDescription verb) with 'ffdb.py desc'
2014-06-10Fix ffdb issue when taking a screenshot and the screenshot is small enough ↵Jukka Jylänki
to fit into a single message instead of having multiple fragments.
2014-06-10Fix message queueing issue in ffdb.py which could discard log messages if ↵Jukka Jylänki
the app was spamming a lot of them.
2014-06-09minor cleanLu Wang
2014-06-09Add support for passing --run command to ffdb install&launch when a packaged ↵Jukka Jylänki
app .zip file is passed.
2014-06-09Add options --run and --log to ffdb launch and install commands for conveniency.Jukka Jylänki
2014-06-09Merge pull request #2399 from waywardmonkeys/cleanup-includesAlon Zakai
Cleanup includes
2014-06-09Improve error message that is shown in ffdb when DevTools is not enabled on ↵Jukka Jylänki
a FFOS device.
2014-06-09Add a nicer quit message when pressing Ctrl-C to abort an operation in ffdb.Jukka Jylänki
2014-06-09Improved error messages printed from tools/ffdb.py. Added new commands ↵Jukka Jylänki
'get', 'set', 'unset', 'hide-prompt' and 'restore-prompt' to ffdb.
2014-06-07On Windows, properly clean up temporary .rsp response file used during the ↵Jukka Jylänki
build after finished so the C:\Users\clb\AppData\Local\Temp directory doesn't litter up with .rsp files.
2014-06-07Remove non-existing include paths.Bruce Mitchener
2014-06-06recurse on deps_info.json, and remove workaround we needed without thatAlon Zakai
2014-06-06Add options --host, --port, --verbose and --simulator to tools/ffdb.pyJukka Jylänki
2014-06-06Remember to free up resources used by Devtools connection for ffdb ↵Jukka Jylänki
screenshot capture. Report out captured image dimensions for better error detection.
2014-06-06Add support to tools/ffdb.py to take a screenshot of the FFOS device screen.Jukka Jylänki
2014-06-06Add support to tools/ffdb.py to perform B2G 2.0 bulk data transfers for ↵Jukka Jylänki
binary data uploads. Gives about 4MB/sec data uploads as opposed to ~350KB/sec on old B2G 1.4 devices.
2014-06-06Fix issue in tools/ffdb.py where installing an app using a relative path ↵Jukka Jylänki
would place the files in wrong directory inside the zip file, causing the install to fail after upload is finished.
2014-06-06Improve error reporting in tools/ffdb.pyJukka Jylänki
2014-06-06In tools/ffdb.py, compress the zip files before uploading to improve ↵Jukka Jylänki
packaged app installation times.
2014-06-04pull code out of loops when they have a single break and it allows us to ↵Alon Zakai
turn them into simpler do-whiles
2014-06-04Fix registerizeHarder handling of unlabelled 'continue' inside a 'switch'.Ryan Kelly
2014-06-02Merge pull request #2364 from juj/musl_stdioAlon Zakai
Musl stdio
2014-06-02fix very large doubles; fixes #2392Alon Zakai
2014-05-27clean up shell code using uglify, in optimized builds, when not using closureAlon Zakai
2014-05-23leave bool&1 as is if not going straight into a bitwise operator, to work ↵Alon Zakai
around v8 issue 2513
2014-05-23Migrate snprintf to musl. Move the most common sprintf-related code to libc ↵Jukka Jylänki
instead of libcextra to avoid pulling libcextra in on common runs.
2014-05-23Migrate to using musl libc sprintf family to gain compiled asm.js ↵Jukka Jylänki
performance. Keep a copy of handwritten vfprintf and fprintf around to be compatible with the Emscripten filesystem IO library. Also migrate frexp which sprintf depends on to musl libc.
2014-05-23Migrate to using musl libc sscanf to improve performance. Keep the existing ↵Jukka Jylänki
JS vfscanf for Emscripten FS compatibility, and add the musl-specific version to be used when called from sscanf and vsscanf.
2014-05-22improve warning on failing to validate reposAlon Zakai
2014-05-20wipe out emscripten.py output when it fails, so the error does not cascade ↵Alon Zakai
weirdly; fixes #2368
2014-05-20Merge pull request #2369 from juj/musl_charfuncsAlon Zakai
Musl charfuncs
2014-05-21Migrate is*, to* and stro* to use musl libc.Jukka Jylänki
2014-05-20Merge branch 'archive_groups' of github.com:rsturgell/emscripten into incomingAlon Zakai
Conflicts: AUTHORS
2014-05-19Archive groups code review changes.Ryan Sturgell
2014-05-20Fix elimination of conditional expressions in registerizeHarder.Ryan Kelly
Previously, attempts to eliminate a side-effect-free conditional expression would corrupt internal block state, because the sub-nodes belong to a different block than the one containing the expression. This fixes the problem by not splitting side-effect free conditionals across multiple blocks.
2014-05-19add testcases for last few commitsAlon Zakai
2014-05-19add conditional to hasSideEffectsAlon Zakai
2014-05-19fix emitsBoolean handling of conditional, and add handling of numAlon Zakai
2014-05-19add line bisector toolAlon Zakai
2014-05-19do not move around loop variable incrementations when the helper is used ↵Alon Zakai
outside the loop
2014-05-18fix looptemp replacements when there is a continue with a phi of the loop ↵Alon Zakai
variable
2014-05-16merge loop and helper variables when their use ranges do not overlapAlon Zakai
2014-05-16optimize loop vars even if there is some code (like a phi) in the if block ↵Alon Zakai
where the loop break is, if it does not interfere
2014-05-15support const methods, not just attributes, in webidl binderAlon Zakai
2014-05-13conditionalize in all boolean-emitting expressionsAlon Zakai