Wed, 21-Nov-2018 by Alan Haggai Alavi edit post
Original article was published on November 9, 2018
The overview page now shows all data displayed in the previous profiler's page as well as adds a "Start times of threads" chart. "GC" tab has been updated with sub-tabs to customise graphs using different display modes. The routines list now features a "goto" arrow for smooth and easy navigation.
Read more at: Where did I leave my AT-KEYs?
Even though it's only been a week and a half since my last report, there's already enough new stuff to report on! Let's dig right in.
Is there terribly much to say about this? It now shows the same data that was already available in the old profiler's overview page. It's the go-to page when you've changed your code in the hopes of making it faster, or changed your version of rakudo in hopes of not having to change your code in order to make it faster.
Here's a screenshot from the other profiler for comparison:
The main addition over the previous version is the "start times of threads" piece at the top left. In multi-threaded programs it shows you when more threads were added, for example if you use start
blocks on the default ThreadPoolScheduler
.
The GC Performance section gives you not only the average time spent doing minor and major collections, but also the minimum and maximum time.
The rest is pretty much the same, except the new version puts separators in numbers with more than three digits, which I find much easier on the eyes than eight-digit numbers without any hints to guide the eye.
The graphs at the top of the GC tab has changed a bit! There's now the option to show only major, only minor, or all collections in the graph, and there are three different display modes for the "Amounts of data" graphs.
The one shown by default gives bars split into three colors to signify how much of the nursery's content has been freed (green), kept around for another round (orange), or promoted to the old generation (red). That's the mode you can see in the screenshot above.
The second mode is "Combined Chart", which just stacks the amounts in kilobytes on top of each other. That means when more threads get added, the bars grow. In this example screenshot, you can barely even see orange or red in the bars, but this program is very light on long-lived allocations.
The third mode is "Split Charts", which has one chart for each "color". Since they all have their own scales, you can more easily see differences from run to run, even if some of the charts appear tiny in the "combined" or "combined relative" charts.
The routines overview – and actually all lists of routines in the program – have a new little clickable icon now. Here it is:
The icon I'm talking about is the little up-right-arrow in a little box after a routine's name. When you click on it, the row turns blue. Huh, that doesn't sound so useful? That's because the button brings you to the routines list and scrolls to and highlights the routine you've clicked on. If you're already right there, you will not notice a lot of change, of course.
However, it gets more interesting in the callers or callees lists:
Even better, since it actually uses links to actual URLs, the browser's back/forward buttons work with this.
Other useful places you can find this navigation feature are the allocations list and the call graph explorer:
AT-KEY
s at?If you have a very big profile, a routine you're interested in may be called in many, many places. Here's a profile of "zef list". Loading up the call graph for this routine may just explode my computer:
Note the number of Sites: 27 thousand. Not good.
But what if you're already in the call graph explorer anyway, and you just want to find your way towards functions that call your routine?
Enter the search box:
As you can see, when you input something in the search bar, hand icons will point you towards your destination in the call graph.
I'm looking to add many more different kinds of searches, for example I can imagine it would be interesting to see at a glance "which branches will ever reach non-core code". Searching for files ought to also be interesting.
Another idea I've had is that when you've entered a search term, it should be possible to exclude specific results, for example if there are many routines with the same name, but some of them are not the ones you mean. For example, "identity" is in pretty much every profile, since that's what many "return"s will turn into (when there's neither a decont nor a type check needed). However, Distributions (which is what zef deals in) also have an "identity" attribute, which is about name, version, author, etc.
At a much later point, perhaps even after the grant has finished, there could also be search queries that depend on the call tree's shape, for example "all instances where &postcircumfix:{ }
is called by &postcircumfix:{ }
".
Don't worry! I've already got an extra blog post in the works which will be a full report on overall completion of the grant. There'll be a copy of the original list (well, tree) of the "deliverables and inchstones" along with screenshots and short explanations.
I hope you're looking forward to it! I still need to replace the section that says "search functionality is currently missing" with a short and sweet description of what you read in the previous section :)
With that I wish you a good day and a pleasant weekend
- Timo
The Perl Foundation - supporting the Perl community since 2000. Find out more at www.perlfoundation.org.