blob: 9789697547bd0a7d90b3220354c1c950ca1123f7 [file] [log] [blame]
Steve Blocka7e24c12009-10-30 11:49:00 +00001#!/bin/sh
2
3tools_path=`cd $(dirname "$0");pwd`
4if [ ! "$D8_PATH" ]; then
5 d8_public=`which d8`
Steve Block44f0eee2011-05-26 01:26:41 +01006 if [ -x $d8_public ]; then D8_PATH=$(dirname "$d8_public"); fi
Steve Blocka7e24c12009-10-30 11:49:00 +00007fi
8[ "$D8_PATH" ] || D8_PATH=$tools_path/..
9d8_exec=$D8_PATH/d8
10
Steve Block44f0eee2011-05-26 01:26:41 +010011if [ "$1" = "--no-build" ]; then
Steve Blocka7e24c12009-10-30 11:49:00 +000012 shift
13else
14# compile d8 if it doesn't exist, assuming this script
15# resides in the repository.
16 [ -x $d8_exec ] || scons -j4 -C $D8_PATH -Y $tools_path/.. d8
17fi
18
Steve Block44f0eee2011-05-26 01:26:41 +010019
Andrei Popescu31002712010-02-23 13:46:05 +000020# find the name of the log file to process, it must not start with a dash.
21log_file="v8.log"
22for arg in "$@"
23do
Steve Block44f0eee2011-05-26 01:26:41 +010024 if ! expr "X${arg}" : "^X-" > /dev/null; then
Andrei Popescu31002712010-02-23 13:46:05 +000025 log_file=${arg}
26 fi
27done
28
Steve Block44f0eee2011-05-26 01:26:41 +010029
Steve Blocka7e24c12009-10-30 11:49:00 +000030# nm spits out 'no symbols found' messages to stderr.
Andrei Popescu31002712010-02-23 13:46:05 +000031cat $log_file | $d8_exec $tools_path/splaytree.js $tools_path/codemap.js \
Steve Blocka7e24c12009-10-30 11:49:00 +000032 $tools_path/csvparser.js $tools_path/consarray.js \
33 $tools_path/profile.js $tools_path/profile_view.js \
34 $tools_path/logreader.js $tools_path/tickprocessor.js \
35 $tools_path/tickprocessor-driver.js -- $@ 2>/dev/null