Hi, I have a function as follows. @Benchmark void f() { g(h()); } Put another way, f() is an entry point for g() and h(). Is it possible to make JMH to measure the performance of g() and h() individually? Best.