OLD | NEW |
1 #!/bin/sh | 1 #!/bin/sh |
2 | 2 |
3 tools_path=`cd $(dirname "$0");pwd` | 3 tools_path=`cd $(dirname "$0");pwd` |
4 if [ ! "$D8_PATH" ]; then | 4 if [ ! "$D8_PATH" ]; then |
5 d8_public=`which d8` | 5 d8_public=`which d8` |
6 if [ -x $d8_public ]; then D8_PATH=$(dirname "$d8_public"); fi | 6 if [ -x $d8_public ]; then D8_PATH=$(dirname "$d8_public"); fi |
7 fi | 7 fi |
8 [ "$D8_PATH" ] || D8_PATH=$tools_path/.. | 8 [ "$D8_PATH" ] || D8_PATH=$tools_path/.. |
9 d8_exec=$D8_PATH/d8 | 9 d8_exec=$D8_PATH/d8 |
10 | 10 |
11 if [ "$1" = "--no-build" ]; then | 11 if [ ! -x $d8_exec ]; then |
12 shift | 12 echo "d8 shell not found in $D8_PATH" |
13 else | 13 echo "To build, execute 'scons <flags> d8' from the V8 directory" |
14 # compile d8 if it doesn't exist, assuming this script | 14 exit 1 |
15 # resides in the repository. | |
16 [ -x $d8_exec ] || scons -j4 -C $D8_PATH -Y $tools_path/.. d8 | |
17 fi | 15 fi |
18 | 16 |
19 | 17 |
20 # find the name of the log file to process, it must not start with a dash. | 18 # find the name of the log file to process, it must not start with a dash. |
21 log_file="v8.log" | 19 log_file="v8.log" |
22 for arg in "$@" | 20 for arg in "$@" |
23 do | 21 do |
24 if ! expr "X${arg}" : "^X-" > /dev/null; then | 22 if ! expr "X${arg}" : "^X-" > /dev/null; then |
25 log_file=${arg} | 23 log_file=${arg} |
26 fi | 24 fi |
27 done | 25 done |
28 | 26 |
29 | 27 |
30 # nm spits out 'no symbols found' messages to stderr. | 28 # nm spits out 'no symbols found' messages to stderr. |
31 cat $log_file | $d8_exec $tools_path/splaytree.js $tools_path/codemap.js \ | 29 cat $log_file | $d8_exec $tools_path/splaytree.js $tools_path/codemap.js \ |
32 $tools_path/csvparser.js $tools_path/consarray.js \ | 30 $tools_path/csvparser.js $tools_path/consarray.js \ |
33 $tools_path/profile.js $tools_path/profile_view.js \ | 31 $tools_path/profile.js $tools_path/profile_view.js \ |
34 $tools_path/logreader.js $tools_path/tickprocessor.js \ | 32 $tools_path/logreader.js $tools_path/tickprocessor.js \ |
35 $tools_path/tickprocessor-driver.js -- $@ 2>/dev/null | 33 $tools_path/tickprocessor-driver.js -- $@ 2>/dev/null |
OLD | NEW |