Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 1 | #!/bin/sh |
| 2 | |
| 3 | tools_path=`cd $(dirname "$0");pwd` |
| 4 | if [ ! "$D8_PATH" ]; then |
| 5 | d8_public=`which d8` |
Steve Block | 44f0eee | 2011-05-26 01:26:41 +0100 | [diff] [blame] | 6 | if [ -x $d8_public ]; then D8_PATH=$(dirname "$d8_public"); fi |
Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 7 | fi |
| 8 | [ "$D8_PATH" ] || D8_PATH=$tools_path/.. |
| 9 | d8_exec=$D8_PATH/d8 |
| 10 | |
Ben Murdoch | 3fb3ca8 | 2011-12-02 17:19:32 +0000 | [diff] [blame^] | 11 | if [ ! -x $d8_exec ]; then |
| 12 | echo "d8 shell not found in $D8_PATH" |
| 13 | echo "To build, execute 'scons <flags> d8' from the V8 directory" |
| 14 | exit 1 |
Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 15 | fi |
| 16 | |
Steve Block | 44f0eee | 2011-05-26 01:26:41 +0100 | [diff] [blame] | 17 | |
Andrei Popescu | 3100271 | 2010-02-23 13:46:05 +0000 | [diff] [blame] | 18 | # find the name of the log file to process, it must not start with a dash. |
| 19 | log_file="v8.log" |
| 20 | for arg in "$@" |
| 21 | do |
Steve Block | 44f0eee | 2011-05-26 01:26:41 +0100 | [diff] [blame] | 22 | if ! expr "X${arg}" : "^X-" > /dev/null; then |
Andrei Popescu | 3100271 | 2010-02-23 13:46:05 +0000 | [diff] [blame] | 23 | log_file=${arg} |
| 24 | fi |
| 25 | done |
| 26 | |
Steve Block | 44f0eee | 2011-05-26 01:26:41 +0100 | [diff] [blame] | 27 | |
Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 28 | # nm spits out 'no symbols found' messages to stderr. |
Andrei Popescu | 3100271 | 2010-02-23 13:46:05 +0000 | [diff] [blame] | 29 | cat $log_file | $d8_exec $tools_path/splaytree.js $tools_path/codemap.js \ |
Steve Block | a7e24c1 | 2009-10-30 11:49:00 +0000 | [diff] [blame] | 30 | $tools_path/csvparser.js $tools_path/consarray.js \ |
| 31 | $tools_path/profile.js $tools_path/profile_view.js \ |
| 32 | $tools_path/logreader.js $tools_path/tickprocessor.js \ |
| 33 | $tools_path/tickprocessor-driver.js -- $@ 2>/dev/null |