• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/bin/sh
2
3tools_path=`cd $(dirname "$0");pwd`
4if [ ! "$D8_PATH" ]; then
5  d8_public=`which d8`
6  if [ $d8_public ]; then D8_PATH=$(dirname "$d8_public"); fi
7fi
8[ "$D8_PATH" ] || D8_PATH=$tools_path/..
9d8_exec=$D8_PATH/d8
10
11if [ "$1" == "--no-build" ]; then
12  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
19# find the name of the log file to process, it must not start with a dash.
20log_file="v8.log"
21for arg in "$@"
22do
23  if [[ "${arg}" != -* ]]; then
24    log_file=${arg}
25  fi
26done
27
28# nm spits out 'no symbols found' messages to stderr.
29cat $log_file | $d8_exec $tools_path/splaytree.js $tools_path/codemap.js \
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
34