blob: 79b440fa6c64b46f8035a7faf8cb26887404fb8b [file] [log] [blame]
Steve Blocka7e24c12009-10-30 11:49:00 +00001@echo off
2
3SET tools_dir=%~dp0
John Reck59135872010-11-02 12:39:01 -07004IF 1%D8_PATH% == 1 (SET D8_PATH=%tools_dir%..)
Steve Blocka7e24c12009-10-30 11:49:00 +00005
Andrei Popescu31002712010-02-23 13:46:05 +00006SET log_file=v8.log
7
8rem find the name of the log file to process, it must not start with a dash.
9rem we prepend cmdline args with a number (in fact, any letter or number)
10rem to cope with empty arguments.
11SET arg1=1%1
12IF NOT %arg1:~0,2% == 1 (IF NOT %arg1:~0,2% == 1- SET log_file=%1)
13SET arg2=2%2
14IF NOT %arg2:~0,2% == 2 (IF NOT %arg2:~0,2% == 2- SET log_file=%2)
15SET arg3=3%3
16IF NOT %arg3:~0,2% == 3 (IF NOT %arg3:~0,2% == 3- SET log_file=%3)
17SET arg4=4%4
18IF NOT %arg4:~0,2% == 4 (IF NOT %arg4:~0,2% == 4- SET log_file=%4)
19SET arg5=5%5
20IF NOT %arg5:~0,2% == 5 (IF NOT %arg5:~0,2% == 5- SET log_file=%5)
21SET arg6=6%6
22IF NOT %arg6:~0,2% == 6 (IF NOT %arg6:~0,2% == 6- SET log_file=%6)
23SET arg7=7%7
24IF NOT %arg7:~0,2% == 7 (IF NOT %arg7:~0,2% == 7- SET log_file=%7)
25SET arg8=8%8
26IF NOT %arg8:~0,2% == 8 (IF NOT %arg8:~0,2% == 8- SET log_file=%8)
27SET arg9=9%9
28IF NOT %arg9:~0,2% == 9 (IF NOT %arg9:~0,2% == 9- SET log_file=%9)
29
Ben Murdochb8a8cc12014-11-26 15:28:44 +000030type %log_file% | %D8_PATH%\d8 %tools_dir%splaytree.js %tools_dir%codemap.js %tools_dir%csvparser.js %tools_dir%consarray.js %tools_dir%profile.js %tools_dir%profile_view.js %tools_dir%logreader.js %tools_dir%SourceMap.js %tools_dir%tickprocessor.js %tools_dir%tickprocessor-driver.js -- --windows %*