1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/tools/fast/fast.v

90 lines
2.5 KiB
V
Raw Normal View History

2020-01-23 23:04:46 +03:00
// Copyright (c) 2019-2020 Alexander Medvednikov. All rights reserved.
2019-11-07 20:38:27 +03:00
// Use of this source code is governed by an MIT license
// that can be found in the LICENSE file.
2019-12-23 13:09:22 +03:00
import (
os
time
filepath
)
2019-11-07 20:38:27 +03:00
fn main() {
exe := os.executable()
2019-12-23 13:09:22 +03:00
dir := filepath.dir(exe)
vdir := filepath.dir(filepath.dir(dir))
if !os.exists('$vdir/v') && !os.is_dir('$vdir/vlib') {
2019-11-07 21:47:31 +03:00
println('fast.html generator needs to be located in `v/tools/fast/`')
2019-12-16 22:22:04 +03:00
}
2019-11-07 20:38:27 +03:00
println('fast.html generator\n')
// Fetch the last commit's hash
2019-11-08 00:07:53 +03:00
println('Fetching updates...')
2019-12-16 22:22:04 +03:00
ret := os.system('git pull --rebase')
if ret != 0 {
println('failed to git pull')
return
}
2019-11-07 20:38:27 +03:00
mut commit_hash := exec('git rev-parse HEAD')
commit_hash = commit_hash[..7]
if !os.exists('table.html') {
2019-11-07 21:47:31 +03:00
os.create('table.html') or { panic(err) }
2019-12-16 22:22:04 +03:00
}
2019-11-07 21:47:31 +03:00
mut table := os.read_file('table.html') or { panic(err) }
2019-11-07 20:38:27 +03:00
// Do nothing if it's already been processed.
if table.contains(commit_hash) {
println('Commit $commit_hash has already been processed')
return
2019-12-16 22:22:04 +03:00
}
2019-11-07 20:38:27 +03:00
// Build an optimized V
println('Building vprod...')
exec('v -o $vdir/vprod -prod $vdir/v.v')
2019-11-07 21:47:31 +03:00
println('Measuring...')
2019-11-07 21:53:07 +03:00
diff1 := measure('$vdir/vprod -cc clang -o v.c $vdir/v.v')
diff2 := measure('$vdir/vprod -cc clang -o v2 $vdir/v.v')
2020-01-20 04:19:16 +03:00
diff3 := measure('$vdir/vprod -x64 $vdir/tools/1mil.v')
2019-11-07 21:59:34 +03:00
diff4 := measure('$vdir/vprod -cc clang $vdir/examples/hello_world.v')
2019-11-07 21:47:31 +03:00
//println('Building V took ${diff}ms')
2019-11-07 20:38:27 +03:00
commit_date := exec('git log -n1 --pretty="format:%at"')
message := exec('git log -n1 --pretty="format:%s"')
date := time.unix(commit_date.int())
2019-12-01 12:50:13 +03:00
mut out := os.create('table.html') or { panic(err) }
2019-11-07 20:38:27 +03:00
// Place the new row on top
table =
'<tr>
<td>${date.format()}</td>
<td><a target=_blank href="https://github.com/vlang/v/commit/$commit_hash">$commit_hash</a></td>
<td>$message</td>
2019-11-07 21:47:31 +03:00
<td>${diff1}ms</td>
<td>${diff2}ms</td>
<td>${diff3}ms</td>
2019-11-07 21:59:34 +03:00
<td>${diff4}ms</td>
2019-11-07 20:38:27 +03:00
</tr>\n' +
table.trim_space()
out.writeln(table)
out.close()
// Regenerate index.html
header := os.read_file('header.html') or { panic(err) }
footer := os.read_file('footer.html') or { panic(err) }
2019-12-01 12:50:13 +03:00
mut res := os.create('index.html') or { panic(err) }
2019-11-07 20:38:27 +03:00
res.writeln(header)
res.writeln(table)
res.writeln(footer)
2019-11-07 20:38:27 +03:00
res.close()
}
2019-11-07 20:38:27 +03:00
fn exec(s string) string {
e := os.exec(s) or { panic(err) }
return e.output
}
2019-11-07 21:47:31 +03:00
// returns milliseconds
fn measure(cmd string) int {
println('Warming up...')
for i in 0..3 {
exec(cmd)
2019-12-16 22:22:04 +03:00
}
2019-11-07 21:47:31 +03:00
println('Building...')
ticks := time.ticks()
exec(cmd)
return int(time.ticks() - ticks)
}