124 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			V
		
	
	
			
		
		
	
	
			124 lines
		
	
	
		
			3.5 KiB
		
	
	
	
		
			V
		
	
	
| // Copyright (c) 2019-2021 Alexander Medvednikov. All rights reserved.
 | |
| // Use of this source code is governed by an MIT license
 | |
| // that can be found in the LICENSE file.
 | |
| import os
 | |
| import time
 | |
| 
 | |
| fn main() {
 | |
| 	exe := os.executable()
 | |
| 	dir := os.dir(exe)
 | |
| 	vdir := os.dir(os.dir(os.dir(dir)))
 | |
| 	if !os.exists('$vdir/v') && !os.is_dir('$vdir/vlib') {
 | |
| 		println('fast.html generator needs to be located in `v/cmd/tools/fast`')
 | |
| 	}
 | |
| 	println('fast.html generator\n')
 | |
| 	println('Fetching updates...')
 | |
| 	ret := os.system('$vdir/v up')
 | |
| 	if ret != 0 {
 | |
| 		println('failed to update V')
 | |
| 		return
 | |
| 	}
 | |
| 	// Fetch the last commit's hash
 | |
| 	commit := exec('git rev-parse HEAD')[..8]
 | |
| 	if !os.exists('table.html') {
 | |
| 		os.create('table.html') ?
 | |
| 	}
 | |
| 	mut table := os.read_file('table.html') ?
 | |
| 	if table.contains('>$commit<') {
 | |
| 		println('nothing to benchmark')
 | |
| 		exit(1)
 | |
| 		return
 | |
| 	}
 | |
| 	// for i, commit in commits {
 | |
| 	message := exec('git log --pretty=format:"%s" -n1 $commit')
 | |
| 	// println('\n${i + 1}/$commits.len Benchmarking commit $commit "$message"')
 | |
| 	println('\nBenchmarking commit $commit "$message"')
 | |
| 	// Build an optimized V
 | |
| 	// println('Checking out ${commit}...')
 | |
| 	// exec('git checkout $commit')
 | |
| 	println('  Building vprod...')
 | |
| 	exec('v -o $vdir/vprod -prod $vdir/cmd/v')
 | |
| 	diff1 := measure('$vdir/vprod -cc clang -o v.c -show-timings $vdir/cmd/v', 'v.c')
 | |
| 	diff2 := measure('$vdir/vprod -cc clang -o v2 $vdir/cmd/v', 'v2')
 | |
| 	diff3 := measure('$vdir/vprod -x64 $vdir/cmd/tools/1mil.v', 'x64 1mil')
 | |
| 	diff4 := measure('$vdir/vprod -cc clang $vdir/examples/hello_world.v', 'hello.v')
 | |
| 	vc_size := os.file_size('v.c') / 1000
 | |
| 	// parse/check/cgen
 | |
| 	parse, check, cgen := measure_steps(vdir)
 | |
| 	// println('Building V took ${diff}ms')
 | |
| 	commit_date := exec('git log -n1 --pretty="format:%at" $commit')
 | |
| 	date := time.unix(commit_date.int())
 | |
| 	mut out := os.create('table.html') ?
 | |
| 	// Place the new row on top
 | |
| 	table = 
 | |
| 		'<tr>
 | |
| 		<td>$date.format()</td>
 | |
| 		<td><a target=_blank href="https://github.com/vlang/v/commit/$commit">$commit</a></td>
 | |
| 		<td>$message</td>
 | |
| 		<td>${diff1}ms</td>
 | |
| 		<td>${diff2}ms</td>
 | |
| 		<td>${diff3}ms</td>
 | |
| 		<td>${diff4}ms</td>
 | |
| 		<td>$vc_size KB</td>
 | |
| 		<td>${parse}ms</td>
 | |
| 		<td>${check}ms</td>
 | |
| 		<td>${cgen}ms</td>
 | |
| 	</tr>\n' +
 | |
| 		table.trim_space()
 | |
| 	out.writeln(table) ?
 | |
| 	out.close()
 | |
| 	// Regenerate index.html
 | |
| 	header := os.read_file('header.html') ?
 | |
| 	footer := os.read_file('footer.html') ?
 | |
| 	mut res := os.create('index.html') ?
 | |
| 	res.writeln(header) ?
 | |
| 	res.writeln(table) ?
 | |
| 	res.writeln(footer) ?
 | |
| 	res.close()
 | |
| 	//}
 | |
| 	// exec('git checkout master')
 | |
| 	// os.write_file('last_commit.txt', commits[commits.len - 1]) ?
 | |
| }
 | |
| 
 | |
| fn exec(s string) string {
 | |
| 	e := os.exec(s) or { panic(err) }
 | |
| 	return e.output.trim_right('\r\n')
 | |
| }
 | |
| 
 | |
| // returns milliseconds
 | |
| fn measure(cmd string, description string) int {
 | |
| 	println('  Measuring $description')
 | |
| 	println('  Warming up...')
 | |
| 	for _ in 0 .. 3 {
 | |
| 		exec(cmd)
 | |
| 	}
 | |
| 	println('  Building...')
 | |
| 	mut runs := []int{}
 | |
| 	for r in 0 .. 5 {
 | |
| 		println('  Sample ${r + 1}/5')
 | |
| 		sw := time.new_stopwatch({})
 | |
| 		exec(cmd)
 | |
| 		runs << int(sw.elapsed().milliseconds())
 | |
| 	}
 | |
| 	// discard lowest and highest time
 | |
| 	runs.sort()
 | |
| 	runs = runs[1..4]
 | |
| 	mut sum := 0
 | |
| 	for run in runs {
 | |
| 		sum += run
 | |
| 	}
 | |
| 	return int(sum / 3)
 | |
| }
 | |
| 
 | |
| fn measure_steps(vdir string) (int, int, int) {
 | |
| 	resp := os.exec('$vdir/vprod -o v.c -show-timings $vdir/cmd/v') or { panic(err) }
 | |
| 	lines := resp.output.split_into_lines()
 | |
| 	if lines.len != 3 {
 | |
| 		return 0, 0, 0
 | |
| 	}
 | |
| 	parse := lines[0].before('.').int()
 | |
| 	check := lines[1].before('.').int()
 | |
| 	cgen := lines[2].before('.').int()
 | |
| 	return parse, check, cgen
 | |
| }
 |