-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
/
fast.v
285 lines (254 loc) · 8.79 KB
/
fast.v
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
// Copyright (c) 2019-2024 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
import arrays
import log
const warmup_samples = 2
const max_samples = 20
const discard_highest_samples = 16
const voptions = ' -skip-unused -show-timings -stats '
const fast_dir = os.real_path(os.dir(@FILE))
const fast_log_path = os.real_path(os.join_path(fast_dir, 'fast.log'))
const vdir = os.real_path(os.dir(os.dir(os.dir(fast_dir))))
fn elog(msg string) {
line := '${time.now().format_ss_micro()} ${msg}\n'
if mut f := os.open_append(fast_log_path) {
f.write_string(line) or {}
f.close()
}
log.info(msg)
}
fn lsystem(cmd string) int {
elog('lsystem: ${cmd}')
return os.system(cmd)
}
fn lexec(cmd string) string {
elog(' lexec: ${cmd}')
return os.execute(cmd).output.trim_right('\r\n')
}
fn main() {
// ensure all log messages will be visible to the observers, even if the program panics
log.set_always_flush(true)
total_sw := time.new_stopwatch()
elog('fast.html generator start')
defer {
elog('fast.html generator end, total: ${total_sw.elapsed().milliseconds():6} ms')
}
mut ccompiler_path := 'tcc'
if vdir.contains('/tmp/cirrus-ci-build') {
ccompiler_path = 'clang'
}
if os.args.contains('-clang') {
ccompiler_path = 'clang'
}
elog('fast_dir: ${fast_dir} | vdir: ${vdir} | compiler: ${ccompiler_path}')
os.chdir(fast_dir)!
if !os.exists('${vdir}/v') && !os.is_dir('${vdir}/vlib') {
elog('fast.html generator needs to be located in `v/cmd/tools/fast`')
exit(1)
}
if !os.exists('table.html') {
os.create('table.html')!
}
if !os.args.contains('-noupdate') {
elog('Fetching updates...')
ret := lsystem('${vdir}/v up')
if ret != 0 {
elog('failed to update V, exit_code: ${ret}')
return
}
}
// fetch the last commit's hash
commit := lexec('git rev-parse HEAD')[..8]
if os.exists('fast.vlang.io/index.html') {
uploaded_index := os.read_file('fast.vlang.io/index.html')!
if uploaded_index.contains('>${commit}<') {
elog('NOTE: commit ${commit} had been benchmarked already.')
if !os.args.contains('-force') {
elog('nothing more to do')
return
}
}
}
os.chdir(vdir)!
message := lexec('git log --pretty=format:"%s" -n1 ${commit}')
commit_date := lexec('git log -n1 --pretty="format:%at" ${commit}')
date := time.unix(commit_date.i64())
elog('Benchmarking commit ${commit} , with commit message: "${message}", commit_date: ${commit_date}, date: ${date}')
// build an optimized V
if os.args.contains('-do-not-rebuild-vprod') {
if !os.exists('vprod') {
elog('Exiting, since if you use `-do-not-rebuild-vprod`, you should already have a `${vdir}/vprod` executable, but it is missing!')
return
}
} else {
elog(' Building vprod...')
if os.args.contains('-noprod') {
lexec('./v -o vprod cmd/v') // for faster debugging
} else {
lexec('./v -o vprod -prod -prealloc cmd/v')
}
}
if !os.args.contains('-do-not-rebuild-caches') {
elog('clearing caches...')
// cache vlib modules
lexec('${vdir}/v wipe-cache')
lexec('${vdir}/v -o vwarm_caches -cc ${ccompiler_path} cmd/v')
}
// measure
diff1 := measure('${vdir}/vprod ${voptions} -o v.c cmd/v', 'v.c')
diff2 := measure('${vdir}/vprod ${voptions} -cc ${ccompiler_path} -o v2 cmd/v', 'v2')
diff3 := 0 // measure('$vdir/vprod -native $vdir/cmd/tools/1mil.v', 'native 1mil')
diff4 := measure('${vdir}/vprod ${voptions} -cc ${ccompiler_path} examples/hello_world.v',
'hello.v')
vc_size := os.file_size('v.c') / 1000
scan, parse, check, cgen, vlines := measure_steps_minimal(vdir)!
html_message := message.replace_each(['<', '<', '>', '>'])
os.chdir(fast_dir)!
// place the new row on top
table := os.read_file('table.html')!
new_table :=
' <tr>
<td>${date.format()}</td>
<td><a target=_blank href="https://github.com/vlang/v/commit/${commit}">${commit}</a></td>
<td>${html_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>
<td>${scan}ms</td>
<td>${vlines}</td>
<td>${int(f64(vlines) / f64(diff1) * 1000.0)}</td>
</tr>\n' +
table.trim_space() + '\n'
os.write_file('table.html', new_table)!
// 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(new_table)!
res.writeln(footer)!
res.close()
// upload the result to github pages
if os.args.contains('-upload') {
$if freebsd {
// Note: tcc currently can not compile vpm on FreeBSD, due to its dependence on net.ssl and net.mbedtls, so force using clang instead:
elog('FreeBSD: compiling the VPM tool with clang...')
lexec('${vdir}/vprod -cc clang ${vdir}/cmd/tools/vpm/')
os.chdir('${fast_dir}/docs.vlang.io/docs_generator/')!
elog('FreeBSD: installing the dependencies for the docs generator...')
lexec('${vdir}/vprod install')
os.chdir(fast_dir)!
}
os.chdir('${fast_dir}/fast.vlang.io/')!
elog('Uploading to fast.vlang.io/ ...')
lexec('git checkout gh-pages')
os.mv('../index.html', 'index.html')!
elog(' adding changes...')
lexec('git commit -am "update fast.vlang.io for commit ${commit}"')
elog(' pushing...')
lexec('git push origin gh-pages')
elog(' uploading to fast.vlang.io/ done')
os.chdir(fast_dir)!
os.chdir('${fast_dir}/docs.vlang.io/')!
elog('Uploading to docs.vlang.io/ ...')
elog(' pulling upstream changes...')
lexec('git pull')
elog(' running build.vsh...')
lexec('${vdir}/vprod run build.vsh')
elog(' adding new docs...')
lexec('git add .')
elog(' commiting...')
lexec('git commit -am "update docs for commit ${commit}"')
elog(' pushing...')
lexec('git push')
elog(' uploading to fast.vlang.io/ done')
os.chdir(fast_dir)!
}
}
// measure returns milliseconds
fn measure(cmd string, description string) int {
elog(' Measuring ${description}, warmups: ${warmup_samples}, samples: ${max_samples}, discard: ${discard_highest_samples}, with cmd: `${cmd}`')
for _ in 0 .. warmup_samples {
os.system(cmd)
}
mut runs := []int{}
for r in 0 .. max_samples {
sw := time.new_stopwatch()
os.execute(cmd)
sample := int(sw.elapsed().milliseconds())
runs << sample
elog(' Sample ${r + 1:2}/${max_samples:2} ... ${sample} ms')
}
runs.sort()
elog(' runs before discarding: ${runs}, avg: ${f64(arrays.sum(runs) or { 0 }) / runs.len:5.2f}')
// Discard the highest times, since on AWS, they are caused by random load spikes,
// that are unpredictable, add noise and skew the statistics, without adding useful
// insights:
for _ in 0 .. discard_highest_samples {
runs.pop()
}
elog(' runs after discarding: ${runs}, avg: ${f64(arrays.sum(runs) or { 0 }) / runs.len:5.2f}')
return int(f64(arrays.sum(runs) or { 0 }) / runs.len)
}
fn measure_steps_minimal(vdir string) !(int, int, int, int, int) {
elog('measure_steps_minimal ${vdir}, samples: ${max_samples}')
mut scans, mut parses, mut checks, mut cgens, mut vliness := []int{}, []int{}, []int{}, []int{}, []int{}
for i in 0 .. max_samples {
scan, parse, check, cgen, vlines, cmd := measure_steps_one_sample(vdir)
scans << scan
parses << parse
checks << check
cgens << cgen
vliness << vlines
elog(' [${i:2}/${max_samples:2}] scan: ${scan} ms, min parse: ${parse} ms, min check: ${check} ms, min cgen: ${cgen} ms, min vlines: ${vlines} ms, cmd: ${cmd}')
}
scan, parse, check, cgen, vlines := arrays.min(scans)!, arrays.min(parses)!, arrays.min(checks)!, arrays.min(cgens)!, arrays.min(vliness)!
elog('measure_steps_minimal => min scan: ${scan} ms, min parse: ${parse} ms, min check: ${check} ms, min cgen: ${cgen} ms, min vlines: ${vlines} ms')
return scan, parse, check, cgen, vlines
}
fn measure_steps_one_sample(vdir string) (int, int, int, int, int, string) {
cmd := '${vdir}/vprod ${voptions} -o v.c cmd/v'
resp := os.execute(cmd)
mut scan, mut parse, mut check, mut cgen, mut vlines := 0, 0, 0, 0, 0
lines := resp.output.split_into_lines()
if lines.len == 3 {
parse = lines[0].before('.').int()
check = lines[1].before('.').int()
cgen = lines[2].before('.').int()
} else {
ms_lines := lines.map(it.split(' ms '))
for line in ms_lines {
if line.len == 2 {
if line[1] == 'SCAN' {
scan = line[0].int()
}
if line[1] == 'PARSE' {
parse = line[0].int()
}
if line[1] == 'CHECK' {
check = line[0].int()
}
if line[1] == 'C GEN' {
cgen = line[0].int()
}
} else {
// fetch number of V lines
if line[0].contains('V') && line[0].contains('source') && line[0].contains('size') {
start := line[0].index(':') or { 0 }
end := line[0].index('lines,') or { 0 }
s := line[0][start + 1..end]
vlines = s.trim_space().int()
}
}
}
}
return scan, parse, check, cgen, vlines, cmd
}