This repository has been archived by the owner on Apr 4, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathjmh.sc
61 lines (51 loc) · 1.56 KB
/
jmh.sc
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
import ammonite.ops._
import mill._, scalalib._, modules._
trait Jmh extends ScalaModule {
def ivyDeps = super.ivyDeps() ++ Agg(ivy"org.openjdk.jmh:jmh-core:1.23")
def runJmh(args: String*) = T.command {
val (_, resources) = generateBenchmarkSources()
Jvm.runSubprocess(
"org.openjdk.jmh.Main",
classPath = (runClasspath() ++ generatorDeps()).map(_.path) ++
Seq(compileGeneratedSources().path, resources),
mainArgs = args,
workingDir = T.ctx.dest
)
}
def compileGeneratedSources = T {
val dest = T.ctx.dest
val (sourcesDir, _) = generateBenchmarkSources()
val sources = ls.rec(sourcesDir).filter(_.isFile)
%%("javac",
sources.map(_.toString),
"-cp",
(runClasspath() ++ generatorDeps()).map(_.path.toString).mkString(":"),
"-d",
dest)(wd = dest)
PathRef(dest)
}
// returns sources and resources directories
def generateBenchmarkSources = T {
val dest = T.ctx().dest
val sourcesDir = dest / 'jmh_sources
val resourcesDir = dest / 'jmh_resources
rm(sourcesDir)
mkdir(sourcesDir)
rm(resourcesDir)
mkdir(resourcesDir)
Jvm.runSubprocess(
"org.openjdk.jmh.generators.bytecode.JmhBytecodeGenerator",
(runClasspath() ++ generatorDeps()).map(_.path),
mainArgs = Array(
compile().classes.path,
sourcesDir,
resourcesDir,
"default"
).map(_.toString)
)
(sourcesDir, resourcesDir)
}
def generatorDeps = resolveDeps(
T { Agg(ivy"org.openjdk.jmh:jmh-generator-bytecode:1.21") }
)
}