Created
June 11, 2023 21:05
-
-
Save fwbrasil/478e0d8422d2589601fdd4d2561ecdc6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang='en'> | |
<head> | |
<meta charset='utf-8'> | |
<style> | |
body {margin: 0; padding: 10px; background-color: #ffffff} | |
h1 {margin: 5px 0 0 0; font-size: 18px; font-weight: normal; text-align: center} | |
header {margin: -24px 0 5px 0; line-height: 24px} | |
button {font: 12px sans-serif; cursor: pointer} | |
p {margin: 5px 0 5px 0} | |
a {color: #0366d6} | |
#hl {position: absolute; display: none; overflow: hidden; white-space: nowrap; pointer-events: none; background-color: #ffffe0; outline: 1px solid #ffc000; height: 15px} | |
#hl span {padding: 0 3px 0 3px} | |
#status {overflow: hidden; white-space: nowrap} | |
#match {overflow: hidden; white-space: nowrap; display: none; float: right; text-align: right} | |
#reset {cursor: pointer} | |
#canvas {width: 100%; height: 400px} | |
</style> | |
</head> | |
<body style='font: 12px Verdana, sans-serif'> | |
<h1>Allocation profile</h1> | |
<header style='text-align: left'><button id='reverse' title='Reverse'>🔻</button> <button id='search' title='Search'>🔍</button></header> | |
<header style='text-align: right'>Produced by <a href='https://github.com/jvm-profiling-tools/async-profiler'>async-profiler</a></header> | |
<canvas id='canvas'></canvas> | |
<div id='hl'><span></span></div> | |
<p id='match'>Matched: <span id='matchval'></span> <span id='reset' title='Clear'>❌</span></p> | |
<p id='status'> </p> | |
<script> | |
// Copyright 2020 Andrei Pangin | |
// Licensed under the Apache License, Version 2.0. | |
'use strict'; | |
var root, rootLevel, px, pattern; | |
var reverse = false; | |
const levels = Array(25); | |
for (let h = 0; h < levels.length; h++) { | |
levels[h] = []; | |
} | |
const canvas = document.getElementById('canvas'); | |
const c = canvas.getContext('2d'); | |
const hl = document.getElementById('hl'); | |
const status = document.getElementById('status'); | |
const canvasWidth = canvas.offsetWidth; | |
const canvasHeight = canvas.offsetHeight; | |
canvas.style.width = canvasWidth + 'px'; | |
canvas.width = canvasWidth * (devicePixelRatio || 1); | |
canvas.height = canvasHeight * (devicePixelRatio || 1); | |
if (devicePixelRatio) c.scale(devicePixelRatio, devicePixelRatio); | |
c.font = document.body.style.font; | |
const palette = [ | |
[0xb2e1b2, 20, 20, 20], | |
[0x50e150, 30, 30, 30], | |
[0x50cccc, 30, 30, 30], | |
[0xe15a5a, 30, 40, 40], | |
[0xc8c83c, 30, 30, 10], | |
[0xe17d00, 30, 30, 0], | |
[0xcce880, 20, 20, 20], | |
]; | |
function getColor(p) { | |
const v = Math.random(); | |
return '#' + (p[0] + ((p[1] * v) << 16 | (p[2] * v) << 8 | (p[3] * v))).toString(16); | |
} | |
function f(level, left, width, type, title, inln, c1, int) { | |
levels[level].push({left: left, width: width, color: getColor(palette[type]), title: title, | |
details: (int ? ', int=' + int : '') + (c1 ? ', c1=' + c1 : '') + (inln ? ', inln=' + inln : '') | |
}); | |
} | |
function samples(n) { | |
return n === 1 ? '1 sample' : n.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ',') + ' samples'; | |
} | |
function pct(a, b) { | |
return a >= b ? '100' : (100 * a / b).toFixed(2); | |
} | |
function findFrame(frames, x) { | |
let left = 0; | |
let right = frames.length - 1; | |
while (left <= right) { | |
const mid = (left + right) >>> 1; | |
const f = frames[mid]; | |
if (f.left > x) { | |
right = mid - 1; | |
} else if (f.left + f.width <= x) { | |
left = mid + 1; | |
} else { | |
return f; | |
} | |
} | |
if (frames[left] && (frames[left].left - x) * px < 0.5) return frames[left]; | |
if (frames[right] && (x - (frames[right].left + frames[right].width)) * px < 0.5) return frames[right]; | |
return null; | |
} | |
function search(r) { | |
if (r === true && (r = prompt('Enter regexp to search:', '')) === null) { | |
return; | |
} | |
pattern = r ? RegExp(r) : undefined; | |
const matched = render(root, rootLevel); | |
document.getElementById('matchval').textContent = pct(matched, root.width) + '%'; | |
document.getElementById('match').style.display = r ? 'inherit' : 'none'; | |
} | |
function render(newRoot, newLevel) { | |
if (root) { | |
c.fillStyle = '#ffffff'; | |
c.fillRect(0, 0, canvasWidth, canvasHeight); | |
} | |
root = newRoot || levels[0][0]; | |
rootLevel = newLevel || 0; | |
px = canvasWidth / root.width; | |
const x0 = root.left; | |
const x1 = x0 + root.width; | |
const marked = []; | |
function mark(f) { | |
return marked[f.left] >= f.width || (marked[f.left] = f.width); | |
} | |
function totalMarked() { | |
let total = 0; | |
let left = 0; | |
Object.keys(marked).sort(function(a, b) { return a - b; }).forEach(function(x) { | |
if (+x >= left) { | |
total += marked[x]; | |
left = +x + marked[x]; | |
} | |
}); | |
return total; | |
} | |
function drawFrame(f, y, alpha) { | |
if (f.left < x1 && f.left + f.width > x0) { | |
c.fillStyle = pattern && f.title.match(pattern) && mark(f) ? '#ee00ee' : f.color; | |
c.fillRect((f.left - x0) * px, y, f.width * px, 15); | |
if (f.width * px >= 21) { | |
const chars = Math.floor(f.width * px / 7); | |
const title = f.title.length <= chars ? f.title : f.title.substring(0, chars - 2) + '..'; | |
c.fillStyle = '#000000'; | |
c.fillText(title, Math.max(f.left - x0, 0) * px + 3, y + 12, f.width * px - 6); | |
} | |
if (alpha) { | |
c.fillStyle = 'rgba(255, 255, 255, 0.5)'; | |
c.fillRect((f.left - x0) * px, y, f.width * px, 15); | |
} | |
} | |
} | |
for (let h = 0; h < levels.length; h++) { | |
const y = reverse ? h * 16 : canvasHeight - (h + 1) * 16; | |
const frames = levels[h]; | |
for (let i = 0; i < frames.length; i++) { | |
drawFrame(frames[i], y, h < rootLevel); | |
} | |
} | |
return totalMarked(); | |
} | |
canvas.onmousemove = function() { | |
const h = Math.floor((reverse ? event.offsetY : (canvasHeight - event.offsetY)) / 16); | |
if (h >= 0 && h < levels.length) { | |
const f = findFrame(levels[h], event.offsetX / px + root.left); | |
if (f) { | |
if (f != root) getSelection().removeAllRanges(); | |
hl.style.left = (Math.max(f.left - root.left, 0) * px + canvas.offsetLeft) + 'px'; | |
hl.style.width = (Math.min(f.width, root.width) * px) + 'px'; | |
hl.style.top = ((reverse ? h * 16 : canvasHeight - (h + 1) * 16) + canvas.offsetTop) + 'px'; | |
hl.firstChild.textContent = f.title; | |
hl.style.display = 'block'; | |
canvas.title = f.title + '\n(' + samples(f.width) + f.details + ', ' + pct(f.width, levels[0][0].width) + '%)'; | |
canvas.style.cursor = 'pointer'; | |
canvas.onclick = function() { | |
if (f != root) { | |
render(f, h); | |
canvas.onmousemove(); | |
} | |
}; | |
status.textContent = 'Function: ' + canvas.title; | |
return; | |
} | |
} | |
canvas.onmouseout(); | |
} | |
canvas.onmouseout = function() { | |
hl.style.display = 'none'; | |
status.textContent = '\xa0'; | |
canvas.title = ''; | |
canvas.style.cursor = ''; | |
canvas.onclick = ''; | |
} | |
canvas.ondblclick = function() { | |
getSelection().selectAllChildren(hl); | |
} | |
document.getElementById('reverse').onclick = function() { | |
reverse = !reverse; | |
render(); | |
} | |
document.getElementById('search').onclick = function() { | |
search(true); | |
} | |
document.getElementById('reset').onclick = function() { | |
search(false); | |
} | |
window.onkeydown = function() { | |
if (event.ctrlKey && event.keyCode === 70) { | |
event.preventDefault(); | |
search(true); | |
} else if (event.keyCode === 27) { | |
search(false); | |
} | |
} | |
f(0,0,18987,3,'all') | |
f(1,0,18980,1,'java/lang/Thread.run') | |
f(2,0,18980,1,'java/util/concurrent/ThreadPoolExecutor$Worker.run') | |
f(3,0,18980,1,'java/util/concurrent/ThreadPoolExecutor.runWorker') | |
f(4,0,2721,1,'java/util/concurrent/FutureTask.run') | |
f(5,0,2721,1,'java/util/concurrent/Executors$RunnableAdapter.call') | |
f(6,0,2721,1,'java/util/concurrent/FutureTask.run') | |
f(7,0,2721,1,'org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call') | |
f(8,0,2721,1,'org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call') | |
f(9,0,2721,1,'java/lang/reflect/Method.invoke') | |
f(10,0,2721,1,'jdk/internal/reflect/DelegatingMethodAccessorImpl.invoke') | |
f(11,0,2721,1,'jdk/internal/reflect/NativeMethodAccessorImpl.invoke') | |
f(12,0,2721,1,'jdk/internal/reflect/NativeMethodAccessorImpl.invoke0') | |
f(13,0,2721,1,'kyo/bench/jmh_generated/DeepBindBench_forkKyo_jmhTest.forkKyo_Throughput') | |
f(14,0,2721,1,'kyo/bench/jmh_generated/DeepBindBench_forkKyo_jmhTest.forkKyo_thrpt_jmhStub') | |
f(15,0,2721,1,'kyo/bench/Bench.forkKyo') | |
f(16,0,198,1,'java/lang/invoke/Invokers$Holder.linkToTargetMethod') | |
f(17,0,198,1,'java/lang/invoke/DirectMethodHandle$Holder.newInvokeSpecial') | |
f(18,0,198,1,'java/lang/invoke/DirectMethodHandle.allocateInstance') | |
f(19,0,198,2,'kyo.bench.Bench$$Lambda$37+0x0000000800c3e0d0') | |
f(16,198,223,1,'kyo/bench/Bench.kyo$bench$Bench$$_$_$transformLoop$1') | |
f(17,198,223,2,'kyo.bench.Bench$$anon$1') | |
f(16,421,1765,1,'kyo/bench/Bench.runLoop$2') | |
f(17,421,782,1,'kyo/bench/Bench$$anon$1.apply') | |
f(18,421,91,1,'kyo/bench/Bench.kyo$bench$Bench$$_$_$transformLoop$1') | |
f(19,421,91,1,'kyo/bench/Bench$$Lambda$39.0x0000000800c82330.apply') | |
f(20,421,91,1,'kyo/bench/Bench.$anonfun$2') | |
f(21,421,91,1,'kyo/concurrent/fibers$Fiber.block') | |
f(22,421,91,2,'kyo.concurrent.fibers$Fiber$$anon$10') | |
f(18,512,691,1,'kyo/concurrent/fibers$Fibers$$anon$33.apply') | |
f(19,512,691,1,'kyo/concurrent/fibers$Fibers.kyo$concurrent$fibers$Fibers$$_$transformLoop$2') | |
f(20,512,691,1,'kyo/concurrent/fibers$Fibers$$Lambda$38.0x0000000800c3f828.apply') | |
f(21,512,691,1,'kyo/concurrent/fibers$Fibers.$anonfun$4') | |
f(22,512,36,2,'kyo.concurrent.fibers$Fibers$$anon$32') | |
f(22,548,496,2,'kyo.concurrent.scheduler.IOTask') | |
f(22,1044,159,1,'kyo/concurrent/fibers$Fiber$.promise') | |
f(23,1044,159,2,'kyo.concurrent.fibers$Fiber') | |
f(17,1203,983,1,'kyo/concurrent/fibers$Fiber$$anon$10.apply') | |
f(18,1203,983,1,'kyo/concurrent/fibers$Fiber$$anon$10.apply') | |
f(19,1203,983,1,'kyo/concurrent/scheduler/IOPromise.block') | |
f(20,1203,983,1,'kyo/concurrent/scheduler/IOPromise.loop$4') | |
f(21,1203,425,1,'java/util/concurrent/locks/AbstractQueuedSynchronizer.acquireSharedInterruptibly') | |
f(22,1203,425,1,'java/util/concurrent/locks/AbstractQueuedSynchronizer.acquire') | |
f(23,1203,155,2,'java.util.concurrent.locks.AbstractQueuedSynchronizer$SharedNode') | |
f(23,1358,270,1,'java/util/concurrent/locks/AbstractQueuedSynchronizer.tryInitializeHead') | |
f(24,1358,270,2,'java.util.concurrent.locks.AbstractQueuedSynchronizer$ExclusiveNode') | |
f(21,1628,211,2,'kyo.concurrent.scheduler.IOPromise$$anon$1') | |
f(21,1839,347,1,'kyo/concurrent/scheduler/IOPromise.loop$5') | |
f(22,1839,347,1,'kyo/concurrent/scheduler/IOPromise$Pending.add') | |
f(23,1839,347,2,'kyo.concurrent.scheduler.IOPromise$Pending$$anon$3') | |
f(16,2186,535,1,'kyo/concurrent/fibers$Fibers.forkFiber') | |
f(17,2186,240,1,'java/lang/invoke/Invokers$Holder.linkToTargetMethod') | |
f(18,2186,240,1,'java/lang/invoke/DirectMethodHandle$Holder.newInvokeSpecial') | |
f(19,2186,240,1,'java/lang/invoke/DirectMethodHandle.allocateInstance') | |
f(20,2186,240,2,'kyo.concurrent.fibers$Fibers$$Lambda$38+0x0000000800c3f828') | |
f(17,2426,218,1,'kyo/concurrent/fibers$Fibers.kyo$concurrent$fibers$Fibers$$_$transformLoop$2') | |
f(18,2426,218,2,'kyo.concurrent.fibers$Fibers$$anon$33') | |
f(17,2644,77,1,'kyo/locals$Locals$.save') | |
f(18,2644,77,2,'kyo.locals$Locals$$anon$3') | |
f(4,2721,18,1,'kyo/concurrent/scheduler/Coordinator$$$Lambda$49.0x0000000800d1baf0.run') | |
f(5,2721,18,1,'kyo/concurrent/scheduler/Coordinator$.$init$$$anonfun$1') | |
f(6,2721,18,1,'kyo/concurrent/scheduler/Coordinator$.update') | |
f(7,2721,18,1,'java/util/concurrent/ThreadPoolExecutor.execute') | |
f(8,2721,18,1,'java/util/concurrent/SynchronousQueue.offer') | |
f(9,2721,18,1,'java/util/concurrent/SynchronousQueue$TransferStack.transfer') | |
f(10,2721,18,1,'java/util/concurrent/SynchronousQueue$TransferStack.snode') | |
f(11,2721,18,2,'java.util.concurrent.SynchronousQueue$TransferStack$SNode') | |
f(4,2739,18,1,'kyo/concurrent/scheduler/Coordinator$$$Lambda$50.0x0000000800d1bd18.run') | |
f(5,2739,18,1,'kyo/concurrent/scheduler/Coordinator$.$init$$$anonfun$2') | |
f(6,2739,18,1,'kyo/concurrent/scheduler/Scheduler$.cycle') | |
f(7,2739,18,1,'java/lang/invoke/Invokers$Holder.linkToTargetMethod') | |
f(8,2739,18,1,'java/lang/invoke/DirectMethodHandle$Holder.newInvokeSpecial') | |
f(9,2739,18,1,'java/lang/invoke/DirectMethodHandle.allocateInstance') | |
f(10,2739,18,1,'jdk/internal/misc/Unsafe.allocateInstance') | |
f(11,2739,18,2,'kyo.concurrent.scheduler.Scheduler$$$Lambda$58+0x0000000800d4c000') | |
f(4,2757,16223,1,'kyo/concurrent/scheduler/Scheduler$$$Lambda$52.0x0000000800d22ac0.run') | |
f(5,2757,16223,1,'kyo/concurrent/scheduler/Scheduler$.startWorkers$$anonfun$1') | |
f(6,2757,16223,1,'kyo/concurrent/scheduler/Worker.runWorker') | |
f(7,2757,16221,1,'kyo/concurrent/scheduler/IOTask.run') | |
f(8,2757,16221,1,'kyo/concurrent/scheduler/IOTask.eval') | |
f(9,2757,16135,1,'kyo/bench/DeepBindBench$$anon$1.apply') | |
f(10,2757,16135,1,'kyo/bench/DeepBindBench$$anon$1.apply') | |
f(11,2757,16135,1,'kyo/bench/DeepBindBench.kyo$bench$DeepBindBench$$_$loop$1') | |
f(12,2757,16135,2,'kyo.bench.DeepBindBench$$anon$1') | |
f(9,18892,86,1,'kyo/concurrent/fibers$Fibers$$anon$32.apply') | |
f(10,18892,86,1,'kyo/concurrent/fibers$Fibers$$anon$32.apply') | |
f(11,18892,86,1,'kyo/bench/Bench$$Lambda$37.0x0000000800c3e0d0.apply') | |
f(12,18892,86,1,'kyo/bench/Bench.$anonfun$1') | |
f(13,18892,86,1,'kyo/bench/Bench.kyoBenchFiber') | |
f(14,18892,86,1,'kyo/bench/DeepBindBench.kyoBench') | |
f(15,18892,86,1,'kyo/bench/DeepBindBench.kyo$bench$DeepBindBench$$_$loop$1') | |
f(16,18892,86,2,'kyo.bench.DeepBindBench$$anon$1') | |
f(7,18978,2,1,'kyo/concurrent/scheduler/Scheduler$.steal') | |
f(8,18978,2,1,'kyo/concurrent/scheduler/Worker.steal') | |
f(9,18978,2,1,'kyo/concurrent/scheduler/Queue.steal') | |
f(10,18978,2,1,'scala/runtime/ObjectRef.create') | |
f(11,18978,2,2,'scala.runtime.ObjectRef') | |
f(1,18980,7,1,'org/openjdk/jmh/runner/ForkedMain.main') | |
f(2,18980,7,1,'org/openjdk/jmh/runner/ForkedRunner.run') | |
f(3,18980,7,1,'org/openjdk/jmh/runner/BaseRunner.runBenchmarksForked') | |
f(4,18980,7,1,'org/openjdk/jmh/runner/BaseRunner.doSingle') | |
f(5,18980,7,1,'org/openjdk/jmh/runner/BaseRunner.runBenchmark') | |
f(6,18980,7,1,'org/openjdk/jmh/runner/BaseRunner.runBenchmark') | |
f(7,18980,6,1,'org/openjdk/jmh/runner/BenchmarkHandler.runIteration') | |
f(8,18980,1,2,'org.openjdk.jmh.runner.InfraControl') | |
f(8,18981,5,1,'org/openjdk/jmh/runner/InfraControl.awaitWarmdownReady') | |
f(9,18981,5,1,'org/openjdk/jmh/runner/InfraControlL2.awaitWarmdownReady') | |
f(10,18981,5,1,'java/util/concurrent/CountDownLatch.await') | |
f(11,18981,5,1,'java/util/concurrent/locks/AbstractQueuedSynchronizer.acquireSharedInterruptibly') | |
f(12,18981,5,1,'java/util/concurrent/locks/AbstractQueuedSynchronizer.acquire') | |
f(13,18981,5,2,'java.util.concurrent.locks.AbstractQueuedSynchronizer$SharedNode') | |
f(7,18986,1,1,'org/openjdk/jmh/runner/ForkedRunner$1.accept') | |
f(8,18986,1,1,'org/openjdk/jmh/runner/link/BinaryLinkClient.pushResults') | |
f(9,18986,1,1,'java/lang/ClassLoader.loadClass') | |
f(10,18986,1,1,'jdk/internal/loader/ClassLoaders$AppClassLoader.loadClass') | |
f(11,18986,1,1,'jdk/internal/loader/BuiltinClassLoader.loadClass') | |
f(12,18986,1,1,'jdk/internal/loader/BuiltinClassLoader.loadClassOrNull') | |
f(13,18986,1,1,'jdk/internal/loader/BuiltinClassLoader.findClassOnClassPathOrNull') | |
f(14,18986,1,1,'jdk/internal/loader/URLClassPath.getResource') | |
f(15,18986,1,1,'jdk/internal/loader/URLClassPath$JarLoader.getResource') | |
f(16,18986,1,1,'java/util/jar/JarFile.getJarEntry') | |
f(17,18986,1,1,'java/util/jar/JarFile.getEntry') | |
f(18,18986,1,1,'java/util/zip/ZipFile.getEntry') | |
f(19,18986,1,1,'java/util/zip/ZipFile$Source.getEntryPos') | |
f(20,18986,1,1,'java/util/zip/ZipCoder$UTF8ZipCoder.toString') | |
f(21,18986,1,1,'java/lang/System$2.newStringUTF8NoRepl') | |
f(22,18986,1,1,'java/lang/String.newStringUTF8NoRepl') | |
f(23,18986,1,1,'java/util/Arrays.copyOfRange') | |
f(24,18986,1,2,'byte[]') | |
search(); | |
</script></body></html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html lang='en'> | |
<head> | |
<meta charset='utf-8'> | |
<style> | |
body {margin: 0; padding: 10px; background-color: #ffffff} | |
h1 {margin: 5px 0 0 0; font-size: 18px; font-weight: normal; text-align: center} | |
header {margin: -24px 0 5px 0; line-height: 24px} | |
button {font: 12px sans-serif; cursor: pointer} | |
p {margin: 5px 0 5px 0} | |
a {color: #0366d6} | |
#hl {position: absolute; display: none; overflow: hidden; white-space: nowrap; pointer-events: none; background-color: #ffffe0; outline: 1px solid #ffc000; height: 15px} | |
#hl span {padding: 0 3px 0 3px} | |
#status {overflow: hidden; white-space: nowrap} | |
#match {overflow: hidden; white-space: nowrap; display: none; float: right; text-align: right} | |
#reset {cursor: pointer} | |
#canvas {width: 100%; height: 656px} | |
</style> | |
</head> | |
<body style='font: 12px Verdana, sans-serif'> | |
<h1>CPU profile</h1> | |
<header style='text-align: left'><button id='reverse' title='Reverse'>🔻</button> <button id='search' title='Search'>🔍</button></header> | |
<header style='text-align: right'>Produced by <a href='https://github.com/jvm-profiling-tools/async-profiler'>async-profiler</a></header> | |
<canvas id='canvas'></canvas> | |
<div id='hl'><span></span></div> | |
<p id='match'>Matched: <span id='matchval'></span> <span id='reset' title='Clear'>❌</span></p> | |
<p id='status'> </p> | |
<script> | |
// Copyright 2020 Andrei Pangin | |
// Licensed under the Apache License, Version 2.0. | |
'use strict'; | |
var root, rootLevel, px, pattern; | |
var reverse = false; | |
const levels = Array(41); | |
for (let h = 0; h < levels.length; h++) { | |
levels[h] = []; | |
} | |
const canvas = document.getElementById('canvas'); | |
const c = canvas.getContext('2d'); | |
const hl = document.getElementById('hl'); | |
const status = document.getElementById('status'); | |
const canvasWidth = canvas.offsetWidth; | |
const canvasHeight = canvas.offsetHeight; | |
canvas.style.width = canvasWidth + 'px'; | |
canvas.width = canvasWidth * (devicePixelRatio || 1); | |
canvas.height = canvasHeight * (devicePixelRatio || 1); | |
if (devicePixelRatio) c.scale(devicePixelRatio, devicePixelRatio); | |
c.font = document.body.style.font; | |
const palette = [ | |
[0xb2e1b2, 20, 20, 20], | |
[0x50e150, 30, 30, 30], | |
[0x50cccc, 30, 30, 30], | |
[0xe15a5a, 30, 40, 40], | |
[0xc8c83c, 30, 30, 10], | |
[0xe17d00, 30, 30, 0], | |
[0xcce880, 20, 20, 20], | |
]; | |
function getColor(p) { | |
const v = Math.random(); | |
return '#' + (p[0] + ((p[1] * v) << 16 | (p[2] * v) << 8 | (p[3] * v))).toString(16); | |
} | |
function f(level, left, width, type, title, inln, c1, int) { | |
levels[level].push({left: left, width: width, color: getColor(palette[type]), title: title, | |
details: (int ? ', int=' + int : '') + (c1 ? ', c1=' + c1 : '') + (inln ? ', inln=' + inln : '') | |
}); | |
} | |
function samples(n) { | |
return n === 1 ? '1 sample' : n.toString().replace(/\B(?=(\d{3})+(?!\d))/g, ',') + ' samples'; | |
} | |
function pct(a, b) { | |
return a >= b ? '100' : (100 * a / b).toFixed(2); | |
} | |
function findFrame(frames, x) { | |
let left = 0; | |
let right = frames.length - 1; | |
while (left <= right) { | |
const mid = (left + right) >>> 1; | |
const f = frames[mid]; | |
if (f.left > x) { | |
right = mid - 1; | |
} else if (f.left + f.width <= x) { | |
left = mid + 1; | |
} else { | |
return f; | |
} | |
} | |
if (frames[left] && (frames[left].left - x) * px < 0.5) return frames[left]; | |
if (frames[right] && (x - (frames[right].left + frames[right].width)) * px < 0.5) return frames[right]; | |
return null; | |
} | |
function search(r) { | |
if (r === true && (r = prompt('Enter regexp to search:', '')) === null) { | |
return; | |
} | |
pattern = r ? RegExp(r) : undefined; | |
const matched = render(root, rootLevel); | |
document.getElementById('matchval').textContent = pct(matched, root.width) + '%'; | |
document.getElementById('match').style.display = r ? 'inherit' : 'none'; | |
} | |
function render(newRoot, newLevel) { | |
if (root) { | |
c.fillStyle = '#ffffff'; | |
c.fillRect(0, 0, canvasWidth, canvasHeight); | |
} | |
root = newRoot || levels[0][0]; | |
rootLevel = newLevel || 0; | |
px = canvasWidth / root.width; | |
const x0 = root.left; | |
const x1 = x0 + root.width; | |
const marked = []; | |
function mark(f) { | |
return marked[f.left] >= f.width || (marked[f.left] = f.width); | |
} | |
function totalMarked() { | |
let total = 0; | |
let left = 0; | |
Object.keys(marked).sort(function(a, b) { return a - b; }).forEach(function(x) { | |
if (+x >= left) { | |
total += marked[x]; | |
left = +x + marked[x]; | |
} | |
}); | |
return total; | |
} | |
function drawFrame(f, y, alpha) { | |
if (f.left < x1 && f.left + f.width > x0) { | |
c.fillStyle = pattern && f.title.match(pattern) && mark(f) ? '#ee00ee' : f.color; | |
c.fillRect((f.left - x0) * px, y, f.width * px, 15); | |
if (f.width * px >= 21) { | |
const chars = Math.floor(f.width * px / 7); | |
const title = f.title.length <= chars ? f.title : f.title.substring(0, chars - 2) + '..'; | |
c.fillStyle = '#000000'; | |
c.fillText(title, Math.max(f.left - x0, 0) * px + 3, y + 12, f.width * px - 6); | |
} | |
if (alpha) { | |
c.fillStyle = 'rgba(255, 255, 255, 0.5)'; | |
c.fillRect((f.left - x0) * px, y, f.width * px, 15); | |
} | |
} | |
} | |
for (let h = 0; h < levels.length; h++) { | |
const y = reverse ? h * 16 : canvasHeight - (h + 1) * 16; | |
const frames = levels[h]; | |
for (let i = 0; i < frames.length; i++) { | |
drawFrame(frames[i], y, h < rootLevel); | |
} | |
} | |
return totalMarked(); | |
} | |
canvas.onmousemove = function() { | |
const h = Math.floor((reverse ? event.offsetY : (canvasHeight - event.offsetY)) / 16); | |
if (h >= 0 && h < levels.length) { | |
const f = findFrame(levels[h], event.offsetX / px + root.left); | |
if (f) { | |
if (f != root) getSelection().removeAllRanges(); | |
hl.style.left = (Math.max(f.left - root.left, 0) * px + canvas.offsetLeft) + 'px'; | |
hl.style.width = (Math.min(f.width, root.width) * px) + 'px'; | |
hl.style.top = ((reverse ? h * 16 : canvasHeight - (h + 1) * 16) + canvas.offsetTop) + 'px'; | |
hl.firstChild.textContent = f.title; | |
hl.style.display = 'block'; | |
canvas.title = f.title + '\n(' + samples(f.width) + f.details + ', ' + pct(f.width, levels[0][0].width) + '%)'; | |
canvas.style.cursor = 'pointer'; | |
canvas.onclick = function() { | |
if (f != root) { | |
render(f, h); | |
canvas.onmousemove(); | |
} | |
}; | |
status.textContent = 'Function: ' + canvas.title; | |
return; | |
} | |
} | |
canvas.onmouseout(); | |
} | |
canvas.onmouseout = function() { | |
hl.style.display = 'none'; | |
status.textContent = '\xa0'; | |
canvas.title = ''; | |
canvas.style.cursor = ''; | |
canvas.onclick = ''; | |
} | |
canvas.ondblclick = function() { | |
getSelection().selectAllChildren(hl); | |
} | |
document.getElementById('reverse').onclick = function() { | |
reverse = !reverse; | |
render(); | |
} | |
document.getElementById('search').onclick = function() { | |
search(true); | |
} | |
document.getElementById('reset').onclick = function() { | |
search(false); | |
} | |
window.onkeydown = function() { | |
if (event.ctrlKey && event.keyCode === 70) { | |
event.preventDefault(); | |
search(true); | |
} else if (event.keyCode === 27) { | |
search(false); | |
} | |
} | |
f(0,0,422,3,'all') | |
f(1,0,1,3,'[unknown]') | |
f(2,0,1,3,'/usr/lib/x86_64-linux-gnu/libc.so.6') | |
f(3,0,1,5,'entry_SYSCALL_64_after_hwframe') | |
f(4,0,1,5,'do_syscall_64') | |
f(5,0,1,5,'__x64_sys_futex') | |
f(6,0,1,5,'do_futex') | |
f(7,0,1,5,'futex_wait') | |
f(8,0,1,5,'futex_wait_queue_me') | |
f(9,0,1,5,'schedule') | |
f(10,0,1,5,'__schedule') | |
f(11,0,1,5,'finish_task_switch.isra.0') | |
f(1,1,421,1,'java/lang/Thread.run') | |
f(2,1,421,1,'java/util/concurrent/ThreadPoolExecutor$Worker.run') | |
f(3,1,421,1,'java/util/concurrent/ThreadPoolExecutor.runWorker') | |
f(4,1,49,1,'java/util/concurrent/FutureTask.run') | |
f(5,1,49,1,'java/util/concurrent/Executors$RunnableAdapter.call') | |
f(6,1,49,1,'java/util/concurrent/FutureTask.run') | |
f(7,1,49,1,'org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call') | |
f(8,1,49,1,'org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call') | |
f(9,1,49,1,'java/lang/reflect/Method.invoke') | |
f(10,1,49,1,'jdk/internal/reflect/DelegatingMethodAccessorImpl.invoke') | |
f(11,1,49,1,'jdk/internal/reflect/NativeMethodAccessorImpl.invoke') | |
f(12,1,49,1,'jdk/internal/reflect/NativeMethodAccessorImpl.invoke0') | |
f(13,1,49,1,'kyo/bench/jmh_generated/DeepBindBench_forkKyo_jmhTest.forkKyo_Throughput') | |
f(14,1,49,1,'kyo/bench/jmh_generated/DeepBindBench_forkKyo_jmhTest.forkKyo_thrpt_jmhStub') | |
f(15,1,49,1,'kyo/bench/Bench.forkKyo',2,0,0) | |
f(16,1,1,2,'kyo/bench/Bench.kyo$bench$Bench$$_$_$transformLoop$1',1,0,0) | |
f(16,2,48,1,'kyo/bench/Bench.runLoop$2',1,0,0) | |
f(17,2,20,1,'kyo/bench/Bench$$anon$1.apply') | |
f(18,2,20,1,'kyo/concurrent/fibers$Fibers$$anon$33.apply',1,0,0) | |
f(19,2,20,1,'kyo/concurrent/fibers$Fibers.kyo$concurrent$fibers$Fibers$$_$transformLoop$2',1,0,0) | |
f(20,3,19,1,'kyo/concurrent/fibers$Fibers$$Lambda$38.0x0000000800c3f828.apply') | |
f(21,3,19,1,'kyo/concurrent/fibers$Fibers.$anonfun$4') | |
f(22,3,19,1,'kyo/concurrent/scheduler/Scheduler$.schedule') | |
f(23,3,19,1,'kyo/concurrent/scheduler/Scheduler$.submit') | |
f(24,3,19,1,'kyo/concurrent/scheduler/Worker.enqueue') | |
f(25,3,19,1,'java/util/concurrent/locks/LockSupport.unpark') | |
f(26,3,19,1,'jdk/internal/misc/Unsafe.unpark') | |
f(27,3,1,3,'Unsafe_Unpark') | |
f(27,4,18,3,'pthread_cond_signal') | |
f(28,4,18,5,'entry_SYSCALL_64_after_hwframe') | |
f(29,4,18,5,'do_syscall_64') | |
f(30,4,18,5,'__x64_sys_futex') | |
f(31,4,18,5,'do_futex') | |
f(32,4,18,5,'futex_wake') | |
f(33,5,1,5,'get_futex_key') | |
f(33,6,1,5,'mark_wake_futex') | |
f(34,6,1,5,'plist_del') | |
f(33,7,15,5,'wake_up_q') | |
f(34,7,14,5,'_raw_spin_unlock_irqrestore') | |
f(34,21,1,5,'try_to_wake_up') | |
f(17,22,28,1,'kyo/concurrent/fibers$Fiber$$anon$10.apply',1,0,0) | |
f(18,22,28,1,'kyo/concurrent/fibers$Fiber$$anon$10.apply',1,0,0) | |
f(19,22,28,1,'kyo/concurrent/scheduler/IOPromise.block',1,0,0) | |
f(20,22,28,1,'kyo/concurrent/scheduler/IOPromise.loop$4',1,0,0) | |
f(21,22,27,1,'java/util/concurrent/locks/AbstractQueuedSynchronizer.acquireSharedInterruptibly') | |
f(22,22,27,1,'java/util/concurrent/locks/AbstractQueuedSynchronizer.acquire') | |
f(23,22,1,2,'java/util/concurrent/locks/AbstractQueuedSynchronizer$Node.clearStatus',1,0,0) | |
f(23,23,25,1,'java/util/concurrent/locks/LockSupport.park') | |
f(24,23,25,1,'jdk/internal/misc/Unsafe.park') | |
f(25,24,2,3,'Unsafe_Park') | |
f(26,24,1,3,'/usr/lib/x86_64-linux-gnu/libc.so.6') | |
f(26,25,1,4,'Parker::park(bool, long)') | |
f(25,26,22,3,'[unknown]') | |
f(26,26,22,3,'/usr/lib/x86_64-linux-gnu/libc.so.6') | |
f(27,26,22,5,'entry_SYSCALL_64_after_hwframe') | |
f(28,26,22,5,'do_syscall_64') | |
f(29,26,20,5,'__x64_sys_futex') | |
f(30,26,20,5,'do_futex') | |
f(31,26,20,5,'futex_wait') | |
f(32,27,1,5,'__get_user_nocheck_4') | |
f(32,28,17,5,'futex_wait_queue_me') | |
f(33,28,1,5,'__schedule') | |
f(33,29,16,5,'schedule') | |
f(34,29,16,5,'__schedule') | |
f(35,29,16,5,'finish_task_switch.isra.0') | |
f(36,44,1,5,'asm_sysvec_hyperv_stimer0') | |
f(37,44,1,5,'sysvec_hyperv_stimer0') | |
f(38,44,1,5,'irq_exit_rcu') | |
f(39,44,1,5,'__irq_exit_rcu') | |
f(40,44,1,5,'__softirqentry_text_start') | |
f(32,45,1,5,'futex_wait_setup') | |
f(29,46,1,5,'syscall_enter_from_user_mode') | |
f(29,47,1,5,'syscall_exit_to_user_mode') | |
f(30,47,1,5,'exit_to_user_mode_prepare') | |
f(31,47,1,5,'exit_to_user_mode_loop') | |
f(32,47,1,5,'__rseq_handle_notify_resume') | |
f(23,48,1,2,'kyo/concurrent/scheduler/IOPromise$$anon$1.tryAcquireShared',1,0,0) | |
f(21,49,1,2,'kyo/concurrent/scheduler/IOPromise.loop$5',1,0,0) | |
f(4,50,1,1,'kyo/concurrent/scheduler/Coordinator$$$Lambda$49.0x0000000800d1baf0.run') | |
f(5,50,1,1,'kyo/concurrent/scheduler/Coordinator$.$init$$$anonfun$1') | |
f(6,50,1,1,'kyo/concurrent/scheduler/Coordinator$.update') | |
f(7,50,1,1,'java/lang/Thread.sleep') | |
f(8,50,1,3,'[unknown]') | |
f(9,50,1,3,'/usr/lib/x86_64-linux-gnu/libc.so.6') | |
f(10,50,1,5,'entry_SYSCALL_64_after_hwframe') | |
f(11,50,1,5,'do_syscall_64') | |
f(12,50,1,5,'__x64_sys_futex') | |
f(13,50,1,5,'do_futex') | |
f(14,50,1,5,'futex_wait') | |
f(15,50,1,5,'futex_wait_queue_me') | |
f(16,50,1,5,'schedule') | |
f(17,50,1,5,'__schedule') | |
f(18,50,1,5,'finish_task_switch.isra.0') | |
f(4,51,371,1,'kyo/concurrent/scheduler/Scheduler$$$Lambda$52.0x0000000800d22ac0.run') | |
f(5,51,371,1,'kyo/concurrent/scheduler/Scheduler$.startWorkers$$anonfun$1') | |
f(6,51,371,1,'kyo/concurrent/scheduler/Worker.runWorker') | |
f(7,55,75,2,'kyo/concurrent/scheduler/IOTask.run',51,0,0) | |
f(8,55,11,2,'kyo/concurrent/scheduler/IOTask.curr_$eq',11,0,0) | |
f(8,66,25,1,'kyo/concurrent/scheduler/IOTask.eval',1,0,0) | |
f(9,67,24,1,'kyo/concurrent/scheduler/IOTask.loop$8') | |
f(10,67,24,1,'kyo/concurrent/scheduler/IOPromise.kyo$concurrent$scheduler$IOPromise$$inline$complete') | |
f(11,67,24,1,'kyo/concurrent/scheduler/IOPromise.complete') | |
f(12,67,24,1,'kyo/concurrent/scheduler/IOPromise$Pending.flush') | |
f(13,67,24,1,'kyo/concurrent/scheduler/IOPromise$Pending.loop$7') | |
f(14,67,24,1,'kyo/concurrent/scheduler/IOPromise$Pending$$anon$3.run') | |
f(15,67,24,1,'kyo/concurrent/scheduler/IOPromise$$anon$1.apply') | |
f(16,67,24,1,'kyo/concurrent/scheduler/IOPromise$$anon$1.apply') | |
f(17,67,24,1,'java/util/concurrent/locks/AbstractQueuedSynchronizer.releaseShared') | |
f(18,67,24,1,'java/util/concurrent/locks/AbstractQueuedSynchronizer.signalNext') | |
f(19,67,24,1,'java/util/concurrent/locks/LockSupport.unpark') | |
f(20,67,24,1,'jdk/internal/misc/Unsafe.unpark') | |
f(21,67,24,3,'pthread_cond_signal') | |
f(22,67,24,5,'entry_SYSCALL_64_after_hwframe') | |
f(23,67,24,5,'do_syscall_64') | |
f(24,67,23,5,'__x64_sys_futex') | |
f(25,67,23,5,'do_futex') | |
f(26,67,23,5,'futex_wake') | |
f(27,69,21,5,'wake_up_q') | |
f(28,69,21,5,'_raw_spin_unlock_irqrestore') | |
f(24,90,1,5,'syscall_enter_from_user_mode') | |
f(8,91,39,2,'scala/runtime/BoxesRunTime.equals',39,0,0) | |
f(9,91,39,2,'scala/runtime/BoxesRunTime.equals2',39,0,0) | |
f(7,130,266,2,'kyo/concurrent/scheduler/Queue.poll',266,0,0) | |
f(8,130,3,2,'java/lang/invoke/Invokers$Holder.linkToTargetMethod',3,0,0) | |
f(9,130,3,2,'java/lang/invoke/DirectMethodHandle$Holder.newInvokeSpecial',3,0,0) | |
f(8,133,263,2,'kyo/concurrent/scheduler/Queue.modify',263,0,0) | |
f(9,161,1,2,'java/util/concurrent/atomic/AtomicBoolean.compareAndSet',1,0,0) | |
f(9,162,234,2,'kyo/concurrent/scheduler/Queue$$Lambda$55.0x0000000800d46a48.apply',234,0,0) | |
f(10,182,214,2,'kyo/concurrent/scheduler/Queue.poll$$anonfun$1',214,0,0) | |
f(11,227,141,2,'kyo/concurrent/scheduler/Queue.isEmpty',141,0,0) | |
f(12,367,1,2,'kyo/concurrent/scheduler/Queue.items',1,0,0) | |
f(11,368,28,2,'scala/collection/mutable/PriorityQueue.dequeue',28,0,0) | |
f(12,378,18,2,'scala/collection/mutable/PriorityQueue.scala$collection$mutable$PriorityQueue$$resarr',18,0,0) | |
f(7,396,26,1,'kyo/concurrent/scheduler/Scheduler$.idle') | |
f(8,396,26,1,'kyo/concurrent/scheduler/Worker.park') | |
f(9,396,26,1,'java/util/concurrent/locks/LockSupport.parkNanos') | |
f(10,396,26,1,'jdk/internal/misc/Unsafe.park') | |
f(11,396,2,3,'Unsafe_Park') | |
f(12,397,1,3,'/usr/lib/x86_64-linux-gnu/libc.so.6') | |
f(13,397,1,5,'entry_SYSCALL_64_after_hwframe') | |
f(14,397,1,5,'do_syscall_64') | |
f(15,397,1,5,'__x64_sys_futex') | |
f(16,397,1,5,'do_futex') | |
f(11,398,24,3,'[unknown]') | |
f(12,398,24,3,'/usr/lib/x86_64-linux-gnu/libc.so.6') | |
f(13,402,20,5,'entry_SYSCALL_64_after_hwframe') | |
f(14,402,20,5,'do_syscall_64') | |
f(15,402,17,5,'__x64_sys_futex') | |
f(16,402,17,5,'do_futex') | |
f(17,402,17,5,'futex_wait') | |
f(18,402,17,5,'futex_wait_queue_me') | |
f(19,402,17,5,'schedule') | |
f(20,403,16,5,'__schedule') | |
f(21,403,16,5,'finish_task_switch.isra.0') | |
f(15,419,1,5,'syscall_enter_from_user_mode') | |
f(15,420,2,5,'syscall_exit_to_user_mode') | |
f(16,420,2,5,'exit_to_user_mode_prepare') | |
f(17,420,2,5,'exit_to_user_mode_loop') | |
search(); | |
</script></body></html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<html><body> | |
<a href='https://jmh.morethan.io/?source=output/jmh-result.json'><h2>Results</h2></a><br> | |
<h2>Flamegraphs:</h2> | |
<a href='output/index.html'>index.html</a><br> | |
<a href='output/DeepBindBench-alloc.html'>DeepBindBench-alloc.html</a><br> | |
<a href='output/DeepBindBench-cpu.html'>DeepBindBench-cpu.html</a><br> | |
</body></html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[ | |
{ | |
"jmhVersion" : "1.36", | |
"benchmark" : "kyo.bench.DeepBindBench.forkKyo", | |
"mode" : "thrpt", | |
"threads" : 1, | |
"forks" : 1, | |
"jvm" : "/home/runner/.jabba/jdk/[email protected]/bin/java", | |
"jvmArgs" : [ | |
"-Dcats.effect.tracing.mode=DISABLED" | |
], | |
"jdkVersion" : "17", | |
"vmName" : "OpenJDK 64-Bit Server VM", | |
"vmVersion" : "17+35-2724", | |
"warmupIterations" : 10, | |
"warmupTime" : "1 s", | |
"warmupBatchSize" : 1, | |
"measurementIterations" : 5, | |
"measurementTime" : "1 s", | |
"measurementBatchSize" : 1, | |
"primaryMetric" : { | |
"score" : 20307.611154549544, | |
"scoreError" : 1855.265208265836, | |
"scoreConfidence" : [ | |
18452.34594628371, | |
22162.87636281538 | |
], | |
"scorePercentiles" : { | |
"0.0" : 19727.414308079227, | |
"50.0" : 20288.36687430522, | |
"90.0" : 20814.644240194182, | |
"95.0" : 20814.644240194182, | |
"99.0" : 20814.644240194182, | |
"99.9" : 20814.644240194182, | |
"99.99" : 20814.644240194182, | |
"99.999" : 20814.644240194182, | |
"99.9999" : 20814.644240194182, | |
"100.0" : 20814.644240194182 | |
}, | |
"scoreUnit" : "ops/s", | |
"rawData" : [ | |
[ | |
19947.49076524166, | |
19727.414308079227, | |
20814.644240194182, | |
20760.13958492743, | |
20288.36687430522 | |
] | |
] | |
}, | |
"secondaryMetrics" : { | |
} | |
} | |
] | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment