Skip to content

Instantly share code, notes, and snippets.

@fwbrasil
Created June 14, 2023 03:48
Show Gist options
  • Save fwbrasil/639a0a1d78dc44a08450ea0d2f84ff23 to your computer and use it in GitHub Desktop.
Save fwbrasil/639a0a1d78dc44a08450ea0d2f84ff23 to your computer and use it in GitHub Desktop.
<!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'>&#x1f53b;</button>&nbsp;&nbsp;<button id='search' title='Search'>&#x1f50d;</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'>&#x274c;</span></p>
<p id='status'>&nbsp;</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,3491,3,'all')
f(1,0,3490,1,'java/lang/Thread.run')
f(2,0,3490,1,'java/util/concurrent/ThreadPoolExecutor$Worker.run')
f(3,0,3490,1,'java/util/concurrent/ThreadPoolExecutor.runWorker')
f(4,0,284,1,'java/util/concurrent/FutureTask.run')
f(5,0,284,1,'java/util/concurrent/Executors$RunnableAdapter.call')
f(6,0,284,1,'java/util/concurrent/FutureTask.run')
f(7,0,284,1,'org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call')
f(8,0,284,1,'org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call')
f(9,0,284,1,'java/lang/reflect/Method.invoke')
f(10,0,284,1,'jdk/internal/reflect/DelegatingMethodAccessorImpl.invoke')
f(11,0,284,1,'jdk/internal/reflect/NativeMethodAccessorImpl.invoke')
f(12,0,284,1,'jdk/internal/reflect/NativeMethodAccessorImpl.invoke0')
f(13,0,284,1,'kyo/bench/jmh_generated/DeepBindBench_forkKyo_jmhTest.forkKyo_Throughput')
f(14,0,284,1,'kyo/bench/jmh_generated/DeepBindBench_forkKyo_jmhTest.forkKyo_thrpt_jmhStub')
f(15,0,284,1,'kyo/bench/Bench.forkKyo')
f(16,0,17,1,'java/lang/invoke/Invokers$Holder.linkToTargetMethod')
f(17,0,17,1,'java/lang/invoke/DirectMethodHandle$Holder.newInvokeSpecial')
f(18,0,17,1,'java/lang/invoke/DirectMethodHandle.allocateInstance')
f(19,0,17,2,'kyo.bench.Bench$$Lambda$37+0x0000000800c3e0d0')
f(16,17,24,1,'kyo/bench/Bench.kyo$bench$Bench$$_$_$transformLoop$1')
f(17,17,24,2,'kyo.bench.Bench$$anon$1')
f(16,41,180,1,'kyo/bench/Bench.runLoop$2')
f(17,41,82,1,'kyo/bench/Bench$$anon$1.apply')
f(18,41,14,1,'kyo/bench/Bench.kyo$bench$Bench$$_$_$transformLoop$1')
f(19,41,14,1,'kyo/bench/Bench$$Lambda$39.0x0000000800c82330.apply')
f(20,41,14,1,'kyo/bench/Bench.$anonfun$2')
f(21,41,14,1,'kyo/concurrent/fibers$Fiber.block')
f(22,41,14,2,'kyo.concurrent.fibers$Fiber$$anon$10')
f(18,55,68,1,'kyo/concurrent/fibers$Fibers$$anon$33.apply')
f(19,55,68,1,'kyo/concurrent/fibers$Fibers.kyo$concurrent$fibers$Fibers$$_$transformLoop$2')
f(20,55,68,1,'kyo/concurrent/fibers$Fibers$$Lambda$38.0x0000000800c3f828.apply')
f(21,55,68,1,'kyo/concurrent/fibers$Fibers.$anonfun$4')
f(22,55,5,2,'kyo.concurrent.fibers$Fibers$$anon$32')
f(22,60,32,2,'kyo.concurrent.scheduler.IOTask')
f(22,92,31,1,'kyo/concurrent/fibers$Fiber$.promise')
f(23,92,31,2,'kyo.concurrent.fibers$Fiber')
f(17,123,98,1,'kyo/concurrent/fibers$Fiber$$anon$10.apply')
f(18,123,98,1,'kyo/concurrent/fibers$Fiber$$anon$10.apply')
f(19,123,98,1,'kyo/concurrent/scheduler/IOPromise.block')
f(20,123,98,1,'kyo/concurrent/scheduler/IOPromise.loop$4')
f(21,123,50,1,'java/util/concurrent/locks/AbstractQueuedSynchronizer.acquireSharedInterruptibly')
f(22,123,50,1,'java/util/concurrent/locks/AbstractQueuedSynchronizer.acquire')
f(23,123,24,2,'java.util.concurrent.locks.AbstractQueuedSynchronizer$SharedNode')
f(23,147,26,1,'java/util/concurrent/locks/AbstractQueuedSynchronizer.tryInitializeHead')
f(24,147,26,2,'java.util.concurrent.locks.AbstractQueuedSynchronizer$ExclusiveNode')
f(21,173,26,2,'kyo.concurrent.scheduler.IOPromise$$anon$1')
f(21,199,22,1,'kyo/concurrent/scheduler/IOPromise.loop$5')
f(22,199,22,1,'kyo/concurrent/scheduler/IOPromise$Pending.add')
f(23,199,22,2,'kyo.concurrent.scheduler.IOPromise$Pending$$anon$3')
f(16,221,63,1,'kyo/concurrent/fibers$Fibers.forkFiber')
f(17,221,18,1,'java/lang/invoke/Invokers$Holder.linkToTargetMethod')
f(18,221,18,1,'java/lang/invoke/DirectMethodHandle$Holder.newInvokeSpecial')
f(19,221,18,1,'java/lang/invoke/DirectMethodHandle.allocateInstance')
f(20,221,18,2,'kyo.concurrent.fibers$Fibers$$Lambda$38+0x0000000800c3f828')
f(17,239,39,1,'kyo/concurrent/fibers$Fibers.kyo$concurrent$fibers$Fibers$$_$transformLoop$2')
f(18,239,39,2,'kyo.concurrent.fibers$Fibers$$anon$33')
f(17,278,6,1,'kyo/locals$Locals$.save')
f(18,278,6,2,'kyo.locals$Locals$$anon$3')
f(4,284,3,1,'kyo/concurrent/scheduler/Coordinator$$$Lambda$49.0x0000000800d1baf0.run')
f(5,284,3,1,'kyo/concurrent/scheduler/Coordinator$.$init$$$anonfun$1')
f(6,284,3,1,'kyo/concurrent/scheduler/Coordinator$.update')
f(7,284,3,1,'java/util/concurrent/ThreadPoolExecutor.execute')
f(8,284,3,1,'java/util/concurrent/SynchronousQueue.offer')
f(9,284,3,1,'java/util/concurrent/SynchronousQueue$TransferStack.transfer')
f(10,284,3,1,'java/util/concurrent/SynchronousQueue$TransferStack.snode')
f(11,284,3,2,'java.util.concurrent.SynchronousQueue$TransferStack$SNode')
f(4,287,3,1,'kyo/concurrent/scheduler/Coordinator$$$Lambda$50.0x0000000800d1bd18.run')
f(5,287,3,1,'kyo/concurrent/scheduler/Coordinator$.$init$$$anonfun$2')
f(6,287,3,1,'kyo/concurrent/scheduler/Scheduler$.cycle')
f(7,287,3,1,'java/lang/invoke/Invokers$Holder.linkToTargetMethod')
f(8,287,3,1,'java/lang/invoke/DirectMethodHandle$Holder.newInvokeSpecial')
f(9,287,3,1,'java/lang/invoke/DirectMethodHandle.allocateInstance')
f(10,287,3,1,'jdk/internal/misc/Unsafe.allocateInstance')
f(11,287,3,2,'kyo.concurrent.scheduler.Scheduler$$$Lambda$58+0x0000000800d4c000')
f(4,290,3200,1,'kyo/concurrent/scheduler/Scheduler$$$Lambda$52.0x0000000800d22ac0.run')
f(5,290,3200,1,'kyo/concurrent/scheduler/Scheduler$.startWorkers$$anonfun$1')
f(6,290,3200,1,'kyo/concurrent/scheduler/Worker.runWorker')
f(7,290,3196,1,'kyo/concurrent/scheduler/IOTask.run')
f(8,290,3196,1,'kyo/concurrent/scheduler/IOTask.eval')
f(9,290,3171,1,'kyo/bench/DeepBindBench$$anon$1.apply')
f(10,290,3171,1,'kyo/bench/DeepBindBench$$anon$1.apply')
f(11,290,3171,1,'kyo/bench/DeepBindBench.kyo$bench$DeepBindBench$$_$loop$1')
f(12,290,3171,2,'kyo.bench.DeepBindBench$$anon$1')
f(9,3461,25,1,'kyo/concurrent/fibers$Fibers$$anon$32.apply')
f(10,3461,25,1,'kyo/concurrent/fibers$Fibers$$anon$32.apply')
f(11,3461,25,1,'kyo/bench/Bench$$Lambda$37.0x0000000800c3e0d0.apply')
f(12,3461,25,1,'kyo/bench/Bench.$anonfun$1')
f(13,3461,25,1,'kyo/bench/Bench.kyoBenchFiber')
f(14,3461,25,1,'kyo/bench/DeepBindBench.kyoBench')
f(15,3461,25,1,'kyo/bench/DeepBindBench.kyo$bench$DeepBindBench$$_$loop$1')
f(16,3461,25,2,'kyo.bench.DeepBindBench$$anon$1')
f(7,3486,3,1,'kyo/concurrent/scheduler/Queue.poll')
f(8,3486,3,1,'java/lang/invoke/Invokers$Holder.linkToTargetMethod')
f(9,3486,3,1,'java/lang/invoke/DirectMethodHandle$Holder.newInvokeSpecial')
f(10,3486,3,1,'java/lang/invoke/DirectMethodHandle.allocateInstance')
f(11,3486,3,1,'jdk/internal/misc/Unsafe.allocateInstance')
f(12,3486,3,2,'kyo.concurrent.scheduler.Queue$$Lambda$55+0x0000000800d46c78')
f(7,3489,1,1,'kyo/concurrent/scheduler/Scheduler$.steal')
f(8,3489,1,1,'kyo/concurrent/scheduler/Worker.steal')
f(9,3489,1,1,'kyo/concurrent/scheduler/Queue.steal')
f(10,3489,1,1,'scala/runtime/ObjectRef.create')
f(11,3489,1,2,'scala.runtime.ObjectRef')
f(1,3490,1,1,'org/openjdk/jmh/runner/ForkedMain.main')
f(2,3490,1,1,'org/openjdk/jmh/runner/ForkedRunner.run')
f(3,3490,1,1,'org/openjdk/jmh/runner/BaseRunner.runBenchmarksForked')
f(4,3490,1,1,'org/openjdk/jmh/runner/BaseRunner.doSingle')
f(5,3490,1,1,'org/openjdk/jmh/runner/BaseRunner.runBenchmark')
f(6,3490,1,1,'org/openjdk/jmh/runner/BaseRunner.runBenchmark')
f(7,3490,1,1,'org/openjdk/jmh/runner/BenchmarkHandler.runIteration')
f(8,3490,1,1,'org/openjdk/jmh/runner/InfraControl.awaitWarmdownReady')
f(9,3490,1,1,'org/openjdk/jmh/runner/InfraControlL2.awaitWarmdownReady')
f(10,3490,1,1,'java/util/concurrent/CountDownLatch.await')
f(11,3490,1,1,'java/util/concurrent/locks/AbstractQueuedSynchronizer.acquireSharedInterruptibly')
f(12,3490,1,1,'java/util/concurrent/locks/AbstractQueuedSynchronizer.acquire')
f(13,3490,1,2,'java.util.concurrent.locks.AbstractQueuedSynchronizer$SharedNode')
search();
</script></body></html>
<!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: 576px}
</style>
</head>
<body style='font: 12px Verdana, sans-serif'>
<h1>CPU profile</h1>
<header style='text-align: left'><button id='reverse' title='Reverse'>&#x1f53b;</button>&nbsp;&nbsp;<button id='search' title='Search'>&#x1f50d;</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'>&#x274c;</span></p>
<p id='status'>&nbsp;</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(36);
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,85,3,'all')
f(1,0,4,3,'/usr/lib/x86_64-linux-gnu/libc.so.6')
f(2,0,4,3,'thread_native_entry(Thread*)')
f(3,0,4,4,'Thread::call_run()')
f(4,0,4,4,'JavaThread::thread_main_inner()')
f(5,0,4,4,'CompileBroker::compiler_thread_loop()')
f(6,0,4,4,'CompileBroker::invoke_compiler_on_method(CompileTask*)')
f(7,0,4,4,'C2Compiler::compile_method(ciEnv*, ciMethod*, int, bool, DirectiveSet*)')
f(8,0,4,4,'Compile::Compile(ciEnv*, ciMethod*, int, bool, bool, bool, bool, bool, DirectiveSet*)')
f(9,0,2,4,'Compile::Code_Gen()')
f(10,0,1,4,'PhaseChaitin::Register_Allocate()')
f(11,0,1,4,'PhaseChaitin::build_ifg_physical(ResourceArea*)')
f(12,0,1,4,'PhaseChaitin::interfere_with_live(unsigned int, IndexSet*) [clone .part.0]')
f(10,1,1,4,'PhaseOutput::Output()')
f(11,1,1,4,'PhaseOutput::BuildOopMaps()')
f(9,2,2,4,'Compile::Optimize()')
f(10,2,2,4,'PhaseIdealLoop::optimize(PhaseIterGVN&, LoopOptsMode)')
f(11,2,2,4,'PhaseIdealLoop::build_and_optimize(LoopOptsMode)')
f(12,2,1,4,'PhaseIdealLoop::Dominators()')
f(12,3,1,4,'ProjNode::pinned() const')
f(1,4,81,1,'java/lang/Thread.run')
f(2,4,81,1,'java/util/concurrent/ThreadPoolExecutor$Worker.run')
f(3,4,81,1,'java/util/concurrent/ThreadPoolExecutor.runWorker')
f(4,4,9,1,'java/util/concurrent/FutureTask.run')
f(5,4,9,1,'java/util/concurrent/Executors$RunnableAdapter.call')
f(6,4,9,1,'java/util/concurrent/FutureTask.run')
f(7,4,9,1,'org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call')
f(8,4,9,1,'org/openjdk/jmh/runner/BenchmarkHandler$BenchmarkTask.call')
f(9,4,9,1,'java/lang/reflect/Method.invoke')
f(10,4,9,1,'jdk/internal/reflect/DelegatingMethodAccessorImpl.invoke')
f(11,4,9,1,'jdk/internal/reflect/NativeMethodAccessorImpl.invoke')
f(12,4,9,1,'jdk/internal/reflect/NativeMethodAccessorImpl.invoke0')
f(13,4,9,1,'kyo/bench/jmh_generated/DeepBindBench_forkKyo_jmhTest.forkKyo_Throughput')
f(14,4,9,1,'kyo/bench/jmh_generated/DeepBindBench_forkKyo_jmhTest.forkKyo_thrpt_jmhStub')
f(15,4,9,1,'kyo/bench/Bench.forkKyo')
f(16,4,9,1,'kyo/bench/Bench.runLoop$2')
f(17,4,5,1,'kyo/bench/Bench$$anon$1.apply')
f(18,4,5,1,'kyo/concurrent/fibers$Fibers$$anon$33.apply')
f(19,4,5,1,'kyo/concurrent/fibers$Fibers.kyo$concurrent$fibers$Fibers$$_$transformLoop$2')
f(20,4,5,1,'kyo/concurrent/fibers$Fibers$$Lambda$38.0x0000000800c3f828.apply')
f(21,4,5,1,'kyo/concurrent/fibers$Fibers.$anonfun$4')
f(22,4,5,1,'kyo/concurrent/scheduler/Scheduler$.schedule')
f(23,4,5,1,'kyo/concurrent/scheduler/Scheduler$.submit')
f(24,4,5,1,'kyo/concurrent/scheduler/Worker.enqueue')
f(25,4,5,1,'java/util/concurrent/locks/LockSupport.unpark')
f(26,4,5,1,'jdk/internal/misc/Unsafe.unpark')
f(27,4,5,3,'pthread_cond_signal')
f(28,4,5,5,'entry_SYSCALL_64_after_hwframe')
f(29,4,5,5,'do_syscall_64')
f(30,4,5,5,'__x64_sys_futex')
f(31,4,5,5,'do_futex')
f(32,4,5,5,'futex_wake')
f(33,5,4,5,'wake_up_q')
f(34,5,4,5,'_raw_spin_unlock_irqrestore')
f(17,9,4,1,'kyo/concurrent/fibers$Fiber$$anon$10.apply')
f(18,9,4,1,'kyo/concurrent/fibers$Fiber$$anon$10.apply')
f(19,9,4,1,'kyo/concurrent/scheduler/IOPromise.block')
f(20,9,4,1,'kyo/concurrent/scheduler/IOPromise.loop$4')
f(21,9,4,1,'java/util/concurrent/locks/AbstractQueuedSynchronizer.acquireSharedInterruptibly')
f(22,9,4,1,'java/util/concurrent/locks/AbstractQueuedSynchronizer.acquire')
f(23,9,4,1,'java/util/concurrent/locks/LockSupport.park')
f(24,9,4,1,'jdk/internal/misc/Unsafe.park')
f(25,9,2,3,'Unsafe_Park')
f(26,9,1,3,'/usr/lib/x86_64-linux-gnu/libc.so.6')
f(27,9,1,5,'entry_SYSCALL_64_after_hwframe')
f(28,9,1,5,'do_syscall_64')
f(29,9,1,5,'__x64_sys_futex')
f(30,9,1,5,'do_futex')
f(31,9,1,5,'futex_wake')
f(26,10,1,4,'Parker::park(bool, long)')
f(25,11,2,3,'[unknown]')
f(26,11,2,3,'/usr/lib/x86_64-linux-gnu/libc.so.6')
f(27,11,2,5,'entry_SYSCALL_64_after_hwframe')
f(28,11,2,5,'do_syscall_64')
f(29,11,2,5,'__x64_sys_futex')
f(30,11,2,5,'do_futex')
f(31,11,2,5,'futex_wait')
f(32,11,2,5,'futex_wait_queue_me')
f(33,11,2,5,'schedule')
f(34,11,2,5,'__schedule')
f(35,11,2,5,'finish_task_switch.isra.0')
f(4,13,72,1,'kyo/concurrent/scheduler/Scheduler$$$Lambda$52.0x0000000800d22ac0.run')
f(5,13,72,1,'kyo/concurrent/scheduler/Scheduler$.startWorkers$$anonfun$1')
f(6,13,72,1,'kyo/concurrent/scheduler/Worker.runWorker',0,2,0)
f(7,13,1,3,'g1_post_barrier_slow')
f(7,14,66,1,'kyo/concurrent/scheduler/IOTask.run')
f(8,14,66,2,'kyo/concurrent/scheduler/IOTask.eval',59,0,0)
f(9,64,7,2,'kyo/bench/DeepBindBench$$anon$1.apply',7,0,0)
f(10,64,7,2,'kyo/bench/DeepBindBench$$anon$1.apply',7,0,0)
f(11,65,6,2,'kyo/bench/DeepBindBench.kyo$bench$DeepBindBench$$_$loop$1',6,0,0)
f(12,70,1,2,'kyo/bench/DeepBindBench$$anon$1.<init>',1,0,0)
f(9,71,2,2,'kyo/concurrent/scheduler/IOTask$.kyo$concurrent$scheduler$IOTask$$$avoidUnstableIf',2,0,0)
f(9,73,7,1,'kyo/concurrent/scheduler/IOTask.loop$8')
f(10,73,7,1,'kyo/concurrent/scheduler/IOPromise.kyo$concurrent$scheduler$IOPromise$$inline$complete')
f(11,73,7,1,'kyo/concurrent/scheduler/IOPromise.complete')
f(12,73,7,1,'kyo/concurrent/scheduler/IOPromise$Pending.flush')
f(13,73,7,1,'kyo/concurrent/scheduler/IOPromise$Pending.loop$7')
f(14,73,7,1,'kyo/concurrent/scheduler/IOPromise$Pending$$anon$3.run')
f(15,73,7,1,'kyo/concurrent/scheduler/IOPromise$$anon$1.apply')
f(16,73,7,1,'kyo/concurrent/scheduler/IOPromise$$anon$1.apply')
f(17,73,7,1,'java/util/concurrent/locks/AbstractQueuedSynchronizer.releaseShared')
f(18,73,7,1,'java/util/concurrent/locks/AbstractQueuedSynchronizer.signalNext')
f(19,73,7,1,'java/util/concurrent/locks/LockSupport.unpark')
f(20,73,7,1,'jdk/internal/misc/Unsafe.unpark')
f(21,73,7,3,'pthread_cond_signal')
f(22,73,7,5,'entry_SYSCALL_64_after_hwframe')
f(23,73,7,5,'do_syscall_64')
f(24,73,7,5,'__x64_sys_futex')
f(25,73,7,5,'do_futex')
f(26,73,7,5,'futex_wake')
f(27,73,7,5,'wake_up_q')
f(28,73,7,5,'_raw_spin_unlock_irqrestore')
f(7,80,4,1,'kyo/concurrent/scheduler/Scheduler$.idle')
f(8,80,4,1,'kyo/concurrent/scheduler/Worker.park',1,0,0)
f(9,80,4,1,'java/util/concurrent/locks/LockSupport.parkNanos',1,0,0)
f(10,80,1,2,'java/util/concurrent/locks/LockSupport.setBlocker',1,0,0)
f(10,81,3,1,'jdk/internal/misc/Unsafe.park')
f(11,81,3,3,'[unknown]')
f(12,81,3,3,'/usr/lib/x86_64-linux-gnu/libc.so.6')
f(13,82,2,5,'entry_SYSCALL_64_after_hwframe')
f(14,82,2,5,'do_syscall_64')
f(15,82,2,5,'__x64_sys_futex')
f(16,82,2,5,'do_futex')
f(17,82,2,5,'futex_wait')
f(18,82,2,5,'futex_wait_queue_me')
f(19,82,2,5,'schedule')
f(20,82,2,5,'__schedule')
f(21,82,2,5,'finish_task_switch.isra.0')
f(7,84,1,2,'kyo/concurrent/scheduler/Worker.stop$1',1,0,0)
search();
</script></body></html>
<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>
[
{
"jmhVersion" : "1.36",
"benchmark" : "kyo.bench.DeepBindBench.forkKyo",
"mode" : "thrpt",
"threads" : 1,
"forks" : 1,
"jvm" : "/home/runner/.jabba/jdk/openjdk@1.17.0/bin/java",
"jvmArgs" : [
"-Dcats.effect.tracing.mode=DISABLED"
],
"jdkVersion" : "17",
"vmName" : "OpenJDK 64-Bit Server VM",
"vmVersion" : "17+35-2724",
"warmupIterations" : 1,
"warmupTime" : "1 s",
"warmupBatchSize" : 1,
"measurementIterations" : 1,
"measurementTime" : "1 s",
"measurementBatchSize" : 1,
"primaryMetric" : {
"score" : 15464.547724809087,
"scoreError" : "NaN",
"scoreConfidence" : [
"NaN",
"NaN"
],
"scorePercentiles" : {
"0.0" : 15464.547724809087,
"50.0" : 15464.547724809087,
"90.0" : 15464.547724809087,
"95.0" : 15464.547724809087,
"99.0" : 15464.547724809087,
"99.9" : 15464.547724809087,
"99.99" : 15464.547724809087,
"99.999" : 15464.547724809087,
"99.9999" : 15464.547724809087,
"100.0" : 15464.547724809087
},
"scoreUnit" : "ops/s",
"rawData" : [
[
15464.547724809087
]
]
},
"secondaryMetrics" : {
}
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment