blob: 0b0a1fbd2745139ef43b2838aa4a599f3861af85 [file] [log] [blame]
Steve Blocka7e24c12009-10-30 11:49:00 +00001#!/bin/sh
2
Ben Murdoch592a9fc2012-03-05 11:04:45 +00003tools_path=`cd $(dirname "$0");pwd`
4if [ ! "$D8_PATH" ]; then
5 d8_public=`which d8`
6 if [ -x $d8_public ]; then D8_PATH=$(dirname "$d8_public"); fi
7fi
8[ "$D8_PATH" ] || D8_PATH=$tools_path/..
9d8_exec=$D8_PATH/d8
10
11if [ ! -x $d8_exec ]; then
Ben Murdoch592a9fc2012-03-05 11:04:45 +000012 echo "d8 shell not found in $D8_PATH"
Ben Murdoch85b71792012-04-11 18:30:58 +010013 echo "To build, execute 'scons <flags> d8' from the V8 directory"
Ben Murdoch592a9fc2012-03-05 11:04:45 +000014 exit 1
15fi
Steve Block44f0eee2011-05-26 01:26:41 +010016
Ben Murdoch85b71792012-04-11 18:30:58 +010017
18# find the name of the log file to process, it must not start with a dash.
19log_file="v8.log"
20for arg in "$@"
21do
22 if ! expr "X${arg}" : "^X-" > /dev/null; then
23 log_file=${arg}
24 fi
25done
26
27
Steve Blocka7e24c12009-10-30 11:49:00 +000028# nm spits out 'no symbols found' messages to stderr.
Andrei Popescu31002712010-02-23 13:46:05 +000029cat $log_file | $d8_exec $tools_path/splaytree.js $tools_path/codemap.js \
Steve Blocka7e24c12009-10-30 11:49:00 +000030 $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