Skip to content

Instantly share code, notes, and snippets.

@raydiak
Created March 5, 2015 00:31
Show Gist options
  • Save raydiak/d3157c38107bcfb891c5 to your computer and use it in GitHub Desktop.
Save raydiak/d3157c38107bcfb891c5 to your computer and use it in GitHub Desktop.
sums profile
This file has been truncated, but you can view the full file.
<!DOCTYPE html>
<html lang="en" ng-app="moarProfApp" ng-controller="NavigationController">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>MoarVM Profiler Results</title>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap-theme.min.css">
<style>
body {
min-height: 500px;
padding-top: 70px;
}
.icyclegraph .call {
display: block;
border: 1px solid black;
overflow: hidden;
}
.icyclegraph .child {
float: left;
}
.icyclegraph a {
color: black;
}
</style>
</head>
<body >
<div class="navbar navbar-default navbar-fixed-top" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand">MoarVM Profiler Results</a>
</div>
<div class="navbar-collapse collapse">
<ul class="nav navbar-nav">
<li ng-class="Tab == 'Overview' ? 'active' : ''"><a href="#overview" ng-click="Tab = 'Overview'">Overview</a></li>
<li ng-class="Tab == 'Routines' ? 'active' : ''"><a href="#routines" ng-click="Tab = 'Routines'">Routines</a></li>
<li ng-class="Tab == 'Call Graph' ? 'active' : ''"><a href="#callgraph" ng-click="Tab = 'Call Graph'">Call Graph</a></li>
<li ng-class="Tab == 'Allocations' ? 'active' : ''"><a href="#allocations" ng-click="Tab = 'Allocations'">Allocations</a></li>
<li ng-class="Tab == 'GC' ? 'active' : ''"><a href="#gc" ng-click="Tab = 'GC'">GC</a></li>
<li ng-class="Tab == 'OSR/Deopt' ? 'active' : ''"><a href="#osrdeopt" ng-click="Tab = 'OSR/Deopt'">OSR / Deopt</a></li>
</ul>
</div>
</div>
</div>
<div class="container" ng-show="Tab == 'Overview'">
<div ng-controller="OverviewController">
<h3>Time Spent</h3>
<p>The profiled code ran for <strong>{{TotalTime}}ms</strong>. Of this,
<strong>{{OverheadTime}}ms</strong> were spent on garbage collection
and dynamic optimization (that's <strong>{{OverheadTimePercent}}%</strong>).
</p>
<table class="table table-striped table-condensed table-bordered">
<tbody>
<tr>
<td><strong>Executing Code</strong></td>
<td>
<div class="pull-left" style="width: 310px">
<div class="progress" style="width: 300px">
<div class="progress-bar progress-bar-success" role="progressbar" style="width: {{ExecutingTimePercent}}%;">
</div>
</div>
</div>
<div>
{{ExecutingTimePercent}}%
({{ExecutingTime}}ms)
</div>
</td>
</tr>
<tr>
<td><strong>Garbage Collection</strong></td>
<td>
<div class="pull-left" style="width: 310px">
<div class="progress" style="width: 300px">
<div class="progress-bar progress-bar-warning" role="progressbar" style="width: {{GCTimePercent}}%;">
</div>
</div>
</div>
<div>
{{GCTimePercent}}%
({{GCTime}}ms)
</div>
</td>
</tr>
<tr>
<td><strong>Dynamic Optimization</strong></td>
<td>
<div class="pull-left" style="width: 310px">
<div class="progress" style="width: 300px">
<div class="progress-bar progress-bar-warning" role="progressbar" style="width: {{SpeshTimePercent}}%;">
</div>
</div>
</div>
<div>
{{SpeshTimePercent}}%
({{SpeshTime}}ms)
</div>
</td>
</tr>
</tbody>
</table>
<h3>Call Frames</h3>
<p>In total, <strong>{{EntriesWithoutInline}} call frames</strong> were
entered and exited by the profiled code. Inlining eliminated the need
to create <strong>{{EntriesInline}} call frames</strong> (that's
<strong>{{InlinePercent}}%</strong>).
</p>
<table class="table table-striped table-condensed table-bordered">
<tbody>
<tr>
<td><strong>Interpreted Frames</strong></td>
<td>
<div class="pull-left" style="width: 310px">
<div class="progress" style="width: 300px">
<div class="progress-bar progress-bar-danger" role="progressbar" style="width: {{InterpFramesPercent}}%;">
</div>
</div>
</div>
<div>
{{InterpFramesPercent}}%
({{InterpFrames}})
</div>
</td>
</tr>
<tr>
<td><strong>Specialized Frames</strong></td>
<td>
<div class="pull-left" style="width: 310px">
<div class="progress" style="width: 300px">
<div class="progress-bar progress-bar-warning" role="progressbar" style="width: {{SpeshFramesPercent}}%;">
</div>
</div>
</div>
<div>
{{SpeshFramesPercent}}%
({{SpeshFrames}})
</div>
</td>
</tr>
<tr>
<td><strong>JIT-Compiled Frames</strong></td>
<td>
<div class="pull-left" style="width: 310px">
<div class="progress" style="width: 300px">
<div class="progress-bar progress-bar-success" role="progressbar" style="width: {{JITFramesPercent}}%;">
</div>
</div>
</div>
<div>
{{JITFramesPercent}}%
({{JITFrames}})
</div>
</td>
</tr>
</tbody>
</table>
<h3>Garbage Collection</h3>
<p>The profiled code did <strong>{{GCRuns}} garbage collections</strong>.
There were <strong>{{FullGCRuns}} full collections</strong> involving
the entire heap.
</p>
<p ng-show="{{GCRuns > 0}}">
The average nursery collection time was <strong>{{NurseryAverage}}ms</strong>.
<span ng-show="{{FullGCRuns > 0}}">
The average full collection time was <strong>{{FullAverage}}ms</strong>.
</span>
</p>
<h3>Dynamic Optimization</h3>
<p>Of {{OptimizedFrames}} specialized or JIT-compiled frames, there were
<strong>{{DeoptOnes}} deoptimizations</strong> (that's <strong>
{{DeoptOnePercent}}%</strong> of all optimized frames).
</p>
<p ng-show="DeoptAlls == 0">
There was <strong>no global deoptimization</strong> triggered by the
profiled code.
</p>
<p ng-show="DeoptAlls == 1">
There was <strong>one global deoptimization</strong> triggered by the
profiled code.
</p>
<p ng-show="DeoptAlls > 1">
There were <strong>{{DeoptAlls}} global deoptimization</strong> triggered
by the profiled code.
</p>
<p ng-show="OSRs == 0">
There was <strong>no On Stack Replacement</strong> performed while
executing the profiled code (normal if the code lacks long-running
loops with many iterations).
</p>
<p ng-show="OSRs == 1">
There was <strong>one On Stack Replacement</strong> performed while
executing the profiled code.
</p>
<p ng-show="OSRs > 1">
There were <strong>{{OSRs}} On Stack Replacements</strong> performed
while executing the profiled code.
</p>
</div>
</div>
<div class="container" ng-show="Tab == 'Routines'">
<div ng-controller="RoutinesController">
<table class="table table-striped table-condensed table-bordered">
<thead>
<th>
<a href="" ng-click="reverse = predicate == 'Name' ? !reverse : false; predicate = 'Name';">Name</a>
<input ng-model="NameFilter">
</th>
<th><a href="" ng-click="reverse = predicate == 'Entries' ? !reverse : true; predicate = 'Entries';">Entries</a></th>
<th><a href="" ng-click="reverse = predicate == 'InclusiveTimePercent' ? !reverse : true; predicate = 'InclusiveTimePercent';">Inclusive Time</a></th>
<th><a href="" ng-click="reverse = predicate == 'ExclusiveTimePercent' ? !reverse : true; predicate = 'ExclusiveTimePercent';">Exclusive Time</a></th>
<th>
<span class="text-danger" data-toggle="tooltip" data-placement="bottom" title="Unoptimized interpreted code">Interp</span> /
<span class="text-warning" data-toggle="tooltip" data-placement="bottom" title="Type-specialized interpreted code">Spesh</span> /
<span class="text-success" data-toggle="tooltip" data-placement="bottom" title="Type-specialized, JIT-compiled code">JIT</span>
</th>
</thead>
<tbody>
<tr ng-repeat="routine in Routines | filter:NameFilter | orderBy:predicate:reverse">
<td>
<strong>{{routine.Name}}</strong><br />
<span class="text-muted">{{routine.File}}:{{routine.Line}}</span>
</td>
<td>{{routine.Entries}}</td>
<td>
<div class="pull-left" style="width: 70px">
<div class="progress" style="width: 60px">
<div class="progress-bar" role="progressbar" style="width: {{routine.InclusiveTimePercent}}%;">
</div>
</div>
</div>
<div>
<strong>{{routine.InclusiveTimePercent}}%</strong>
({{routine.InclusiveTime}}ms)
</div>
</td>
<td>
<div class="pull-left" style="width: 70px">
<div class="progress" style="width: 60px">
<div class="progress-bar" role="progressbar" style="width: {{routine.ExclusiveTimePercent}}%;">
</div>
</div>
</div>
<div>
<strong>{{routine.ExclusiveTimePercent}}%</strong>
({{routine.ExclusiveTime}}ms)
</div>
</td>
<td>
<div class="pull-left" style="width: 110px">
<div class="progress" style="width: 100px">
<div class="progress-bar progress-bar-danger" style="width: {{routine.InterpEntriesPercent}}%">
</div>
<div class="progress-bar progress-bar-warning" style="width: {{routine.SpeshEntriesPercent}}%">
</div>
<div class="progress-bar progress-bar-success" style="width: {{routine.JITEntriesPercent}}%">
</div>
</div>
</div>
<div>
<span class="label label-default" ng-show="routine.OSR">OSR</span>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<script type="text/ng-template" id="icycle_graph_callee_renderer.html">
<a href="#" class="call" style="background-color: {{backgroundColor()}};" ng-click="toCallee(callee)">{{callee.name}}</a>
<div class="child" style="width: {{callee.inclusive_time * 100 / Current.inclusive_time}}%;" ng-repeat="callee in callee.callees" title="{{callee.name}}" ng-include="'icycle_graph_callee_renderer.html'"></div>
</script>
<div class="container" ng-show="Tab == 'Call Graph'">
<div ng-controller="CallGraphController">
<ol class="breadcrumb">
<li><strong>Callers:</strong></li>
<li ng-show="RecentCallers.length == 0"><em>None</em></li>
<li ng-repeat="caller in RecentCallers">
<a href="" ng-click="toCaller(caller)">
{{caller.name == '' ? '&lt;anon&gt;' : caller.name}}
</a>
</li>
</ol>
<p>
<span class="lead">{{Current.name == '' ? '&lt;anon&gt;' : Current.name}}</span><br />
<span class="text-muted">{{File}}:{{Line}}</span>
</p>
<div class="icyclegraph">
<div class="child" ng-repeat="callee in [Current]" ng-include="'icycle_graph_callee_renderer.html'"></div>
</div>
<table class="table table-striped table-condensed table-bordered">
<tbody>
<tr>
<td><strong>Calls <span class="text-success">(Inlined)</span></strong></td>
<td>
<div class="pull-left" style="width: 310px">
<div class="progress" style="width: 300px">
<div class="progress-bar" role="progressbar" style="width: {{Percent}}%;">
</div>
<div class="progress-bar progress-bar-success" role="progressbar" style="width: {{InlinePercent}}%;">
</div>
</div>
</div>
<div ng-show="InlinePercent == 0">
{{Entries}}
</div>
<div ng-show="InlinePercent != 0">
{{Entries}} +
<span class="text-success">{{InlineEntries}} ({{InlinePercent}}%)</span>
</div>
</td>
</tr>
<tr>
<td><strong>Interpreted Calls</strong></td>
<td>
<div class="pull-left" style="width: 310px">
<div class="progress" style="width: 300px">
<div class="progress-bar progress-bar-danger" role="progressbar" style="width: {{InterpPercent}}%;">
</div>
</div>
</div>
<div>
{{InterpPercent}}%
({{InterpEntries}})
</div>
</td>
</tr>
<tr>
<td><strong>Specialized Calls</strong></td>
<td>
<div class="pull-left" style="width: 310px">
<div class="progress" style="width: 300px">
<div class="progress-bar progress-bar-warning" role="progressbar" style="width: {{SpeshPercent}}%;">
</div>
</div>
</div>
<div>
{{SpeshPercent}}%
({{SpeshEntries}})
</div>
</td>
</tr>
<tr>
<td><strong>JIT-Compiled Calls</strong></td>
<td>
<div class="pull-left" style="width: 310px">
<div class="progress" style="width: 300px">
<div class="progress-bar progress-bar-success" role="progressbar" style="width: {{JITPercent}}%;">
</div>
</div>
</div>
<div>
{{JITPercent}}%
({{JITEntries}})
</div>
</td>
</tr>
</tbody>
</table>
<div class="panel panel-default">
<div class="panel-heading">Callees</div>
<table class="table table-striped table-condensed table-bordered" ng-show="Callees.length > 0">
<thead>
<th>
<a href="" ng-click="reverse = predicate == 'Name' ? !reverse : false; predicate = 'Name';">Name</a>
<input ng-model="NameFilter">
</th>
<th><a href="" ng-click="reverse = predicate == 'Calls' ? !reverse : true; predicate = 'Calls';">Calls</a></th>
<th><a href="" ng-click="reverse = predicate == 'TimePercent' ? !reverse : true; predicate = 'TimePercent';">Time In Callee</a></th>
<th>
<span class="text-danger" data-toggle="tooltip" data-placement="bottom" title="Unoptimized interpreted code">Interp</span> /
<span class="text-warning" data-toggle="tooltip" data-placement="bottom" title="Type-specialized interpreted code">Spesh</span> /
<span class="text-success" data-toggle="tooltip" data-placement="bottom" title="Type-specialized, JIT-compiled code">JIT</span>
</th>
<th>
<span data-toggle="tooltip" data-placement="bottom" title="Code from this callee was flattened into the routine by the optimizer">Inlined</span>
</th>
</thead>
<tbody>
<tr ng-repeat="callee in Callees | filter:NameFilter | orderBy:predicate:reverse">
<td>
<strong><a href="" ng-click="toCallee(callee.Node)">{{callee.Name}}</a></strong><br />
<span class="text-muted">{{callee.File}}:{{callee.Line}}</span>
</td>
<td>{{callee.Calls}}</td>
<td>
<div class="pull-left" style="width: 70px">
<div class="progress" style="width: 60px">
<div class="progress-bar" role="progressbar" style="width: {{callee.TimePercent}}%;">
</div>
</div>
</div>
<div>
<strong>{{callee.TimePercent}}%</strong>
({{callee.Time}}ms)
</div>
</td>
<td>
<div class="progress" style="width: 100px">
<div class="progress-bar progress-bar-danger" style="width: {{callee.InterpCallsPercent}}%">
</div>
<div class="progress-bar progress-bar-warning" style="width: {{callee.SpeshCallsPercent}}%">
</div>
<div class="progress-bar progress-bar-success" style="width: {{callee.JITCallsPercent}}%">
</div>
</div>
</td>
<td>
<div ng-show="callee.VeryInline">
<span class="text-success">
<span class="glyphicon glyphicon-star"></span>
</span>
{{callee.InlinedPercent}}%
</div>
<div ng-show="callee.SometimesInline">
<span class="text-muted">
<span class="glyphicon glyphicon-star-empty"></span>
</span>
{{callee.InlinedPercent}}%
</div>
</td>
</tr>
</tbody>
</table>
<div class="panel-body" ng-show="Callees.length == 0">
This code has no callees.
</div>
</div>
</div>
</div>
<div class="container" ng-show="Tab == 'Allocations'">
<div ng-controller="AllocationsController">
<table class="table table-striped table-condensed table-bordered">
<thead>
<th>
<a href="" ng-click="reverse = predicate == 'Name' ? !reverse : false; predicate = 'Name';">Name</a>
<input ng-model="NameFilter">
</th>
<th><a href="" ng-click="reverse = predicate == 'Allocations' ? !reverse : true; predicate = 'Allocations';">Allocations</a></th>
<th>Allocating Routines</th>
</thead>
<tbody>
<tr ng-repeat="alloc in AllocationSummary | filter:NameFilter | orderBy:predicate:reverse">
<td><strong>{{alloc.Name}}</strong></td>
<td>
<div class="pull-left" style="width: 210px">
<div class="progress" style="width: 200px">
<div class="progress-bar progress-bar-danger" role="progressbar" style="width: {{alloc.AllocationsInterpPercent}}%;">
</div>
<div class="progress-bar progress-bar-warning" role="progressbar" style="width: {{alloc.AllocationsSpeshPercent}}%;">
</div>
<div class="progress-bar progress-bar-success" role="progressbar" style="width: {{alloc.AllocationsJitPercent}}%;">
</div>
</div>
</div>
<div>
{{alloc.Allocations}}
</div>
</td>
<td>
<a href="" ng-click="showAllocatingRoutines(alloc)">View</a>
</td>
</tr>
</tbody>
</table>
<div class="modal fade" id="allocatingRoutinesModal" tabindex="-1" role="dialog" aria-labelledby="allocatingRoutinesModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">&times;</span><span class="sr-only">Close</span></button>
<h4 class="modal-title" id="allocatingRoutinesModalLabel">
Routines Allocating {{CurrentAllocatingRoutine}}
</h4>
</div>
<div class="modal-body">
<table class="table table-striped table-condensed table-bordered">
<thead>
<th>
<a href="" ng-click="routineReverse = routinePredicate == 'Name' ? !routineReverse : false; routinePredicate = 'Name';">Name</a>
<input ng-model="RoutineNameFilter">
</th>
<th><a href="" ng-click="routineReverse = routinePredicate == 'Allocations' ? !routineReverse : true; routinePredicate = 'Allocations';">Allocations</a></th>
</thead>
<tbody>
<tr ng-repeat="routine in CurrentAllocatingRoutineStats | filter:RoutineNameFilter | orderBy:routinePredicate:routineReverse">
<td>
<strong>{{routine.Name}}</strong><br />
<span class="text-muted">{{routine.File}}:{{routine.Line}}</span>
</td>
<td>
<div class="pull-left" style="width: 210px">
<div class="progress" style="width: 200px">
<div class="progress-bar progress-bar-danger" style="width: {{routine.AllocationsInterpPercent}}%;">
</div>
<div class="progress-bar progress-bar-warning" style="width: {{routine.AllocationsSpeshPercent}}%;">
</div>
<div class="progress-bar progress-bar-success" style="width: {{routine.AllocationsJitPercent}}%;">
</div>
</div>
</div>
<div>
{{routine.Allocations}}
</div>
</td>
</tr>
</tbody>
</table>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-default" data-dismiss="modal">Close</button>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="container" ng-show="Tab == 'GC'">
<div ng-controller="GCController">
<table class="table table-striped table-condensed table-bordered">
<thead>
<th>
<a href="" ng-click="reverse = predicate == 'Run' ? !reverse : false; predicate = 'Run';">Run</a>
</th>
<th>Full</th>
<th>
<a href="" ng-click="reverse = predicate == 'Time' ? !reverse : false; predicate = 'Time';">Time</a>
</th>
<th>
Nursery:
<span class="text-danger" data-toggle="tooltip" data-placement="bottom" title="Bytes retained in the nursery">Retained</span> /
<span class="text-warning" data-toggle="tooltip" data-placement="bottom" title="Bytes promoted to gen2 and now available in nursery">Promoted</span> /
<span class="text-success" data-toggle="tooltip" data-placement="bottom" title="Bytes released and now availabe in nursery">Freed</span>
</th>
</thead>
<tbody>
<tr ng-repeat="gc in GCs | orderBy:predicate:reverse">
<td><strong>{{gc.Run}}</strong></td>
<td>
<span class="text-success" ng-show="gc.Full">
<span class="glyphicon glyphicon-star"></span>
</span>
</td>
<td>
<div class="pull-left" style="width: 210px">
<div class="progress" style="width: 200px">
<div class="progress-bar" role="progressbar" style="width: {{gc.TimePercent}}%;">
</div>
</div>
</div>
<div>
{{gc.Time}}ms
</div>
</td>
<td>
<div class="pull-left" style="width: 210px">
<div class="progress" style="width: 200px">
<div class="progress-bar progress-bar-danger" style="width: {{gc.RetainedPercent}}%">
</div>
<div class="progress-bar progress-bar-warning" style="width: {{gc.PromotedPercent}}%">
</div>
<div class="progress-bar progress-bar-success" style="width: {{gc.ClearedPercent}}%">
</div>
</div>
</div>
<div>
{{gc.RetainedKilobytes}}KB /
{{gc.PromotedKilobytes}}KB /
{{gc.ClearedKilobytes}}KB ...
<small>{{gc.Gen2Roots}} gen2 roots</small>
</div>
</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="container" ng-show="Tab == 'OSR/Deopt'">
<div ng-controller="OSRDeoptController">
<h3>OSR</h3>
<p>On Stack Replacement detects routines containing hot loops that are
being interpreted, and replaces them with specialized or JIT-compiled
code.</p>
<table class="table table-striped table-condensed table-bordered" ng-show="OSRs.length > 0">
<thead>
<th>
Routine
</th>
<th>On Stack Replacements</th>
</thead>
<tbody>
<tr ng-repeat="osr in OSRs | orderBy:predicate:reverse">
<td>
<strong>{{osr.Name}}</strong><br />
<span class="text-muted">{{osr.File}}:{{osr.Line}}</span>
</td>
<td>
<div class="pull-left" style="width: 310px">
<div class="progress" style="width: 300px">
<div class="progress-bar" role="progressbar" style="width: {{osr.Percent}}%;">
</div>
</div>
</div>
<div>
{{osr.Count}}
</div>
</td>
</tr>
</tbody>
</table>
<p ng-show="OSRs.length == 0">
<em>No OSR was performed during this profile.</em>
</p>
<h3>Local Deoptimization</h3>
<p>Local deoptimization happens when a guard in specialized or JIT-compiled
code fails. Since the code was produced assuming the guard would hold,
the VM falls back to running the safe, but slower, interpreted code.</p>
<table class="table table-striped table-condensed table-bordered" ng-show="DeoptOnes.length > 0">
<thead>
<th>
Routine
</th>
<th>Deoptimizations</th>
</thead>
<tbody>
<tr ng-repeat="deopt in DeoptOnes | orderBy:predicate:reverse">
<td>
<strong>{{deopt.Name}}</strong><br />
<span class="text-muted">{{deopt.File}}:{{deopt.Line}}</span>
</td>
<td>
<div class="pull-left" style="width: 310px">
<div class="progress" style="width: 300px">
<div class="progress-bar" role="progressbar" style="width: {{deopt.Percent}}%;">
</div>
</div>
</div>
<div>
{{deopt.Count}}
</div>
</td>
</tr>
</tbody>
</table>
<p ng-show="DeoptOnes.length == 0">
<em>No local deoptimizations occurred during this profile.</em>
</p>
<h3>Global Deoptimization</h3>
<p>Global deoptimization happens when an event occurs that renders
all currently type-specialized or JIT-compiled code on the call
stack potentially invalid. Mixins - changing the type of an object
in place - are a common reason.</p>
<table class="table table-striped table-condensed table-bordered" ng-show="DeoptAlls.length > 0">
<thead>
<th>
Routine
</th>
<th>Deoptimizations</th>
</thead>
<tbody>
<tr ng-repeat="deopt in DeoptAlls | orderBy:predicate:reverse">
<td>
<strong>{{deopt.Name}}</strong><br />
<span class="text-muted">{{deopt.File}}:{{deopt.Line}}</span>
</td>
<td>
<div class="pull-left" style="width: 310px">
<div class="progress" style="width: 300px">
<div class="progress-bar" role="progressbar" style="width: {{deopt.Percent}}%;">
</div>
</div>
</div>
<div>
{{deopt.Count}}
</div>
</td>
</tr>
</tbody>
</table>
<p ng-show="DeoptAlls.length == 0">
<em>No global deoptimizations occurred during this profile.</em>
</p>
</div>
</div>
<script src="https://code.jquery.com/jquery-1.11.1.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.21/angular.min.js"></script>
<script>
var rawData = JSON.parse('[{"total_time":6599671,"call_graph":{"name":"","file":"gen/moar/stage2/NQPHLL.nqp","line":1243,"id":38638800,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":6508501,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":17,"callees":[{"name":"<unit-outer>","file":"examples/sum.p6","line":1,"id":124979424,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":6508484,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":200,"callees":[{"name":"<unit>","file":"examples/sum.p6","line":1,"id":124979728,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":6508283,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1446,"callees":[{"name":"new","file":"/home/x/data/projects/perl6/Inline-Lua/lib/Inline/Lua.pm6","line":14,"id":146274096,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":111942,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":195,"callees":[{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4945,"id":58581152,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":314,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":223,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1919,"id":61717424,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":90,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":85,"callees":[{"name":"add_to_cache","file":"src/gen/m-BOOTSTRAP.nqp","line":2158,"id":61717728,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":2},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":1}]},{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4947,"id":58581760,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[]},{"name":"infix:<eqv>","file":"src/gen/m-CORE.setting","line":1484,"id":58322864,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2360,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":50,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1919,"id":61717424,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1605,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":273,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1623,"id":61716512,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1328,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":500,"callees":[{"name":"is_narrower","file":"src/gen/m-BOOTSTRAP.nqp","line":1651,"id":61716816,"entries":110,"spesh_entries":0,"jit_entries":102,"inlined_entries":0,"inclusive_time":828,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":460,"callees":[{"name":"type_check","file":"src/gen/m-Metamodel.nqp","line":2417,"id":61976848,"entries":138,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":368,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":353,"callees":[{"name":"pretending_to_be","file":"src/gen/m-Metamodel.nqp","line":126,"id":61909056,"entries":138,"spesh_entries":0,"jit_entries":130,"inlined_entries":0,"inclusive_time":14,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":14,"allocations":[]}],"allocations":[{"id":35942184,"type":"NQPArrayIter","spesh":0,"jit":0,"count":260}]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":35},{"id":35942184,"type":"NQPArrayIter","spesh":0,"jit":0,"count":12},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":22},{"id":35941536,"type":"BOOTIntArray","spesh":0,"jit":0,"count":11},{"id":35940936,"type":"BOOTInt","spesh":0,"jit":0,"count":22}]},{"name":"add_to_cache","file":"src/gen/m-BOOTSTRAP.nqp","line":2158,"id":61717728,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":2},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":1}]},{"name":"infix:<eqv>","file":"src/gen/m-CORE.setting","line":1486,"id":58323472,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":704,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":78,"callees":[{"name":"WHICH","file":"src/gen/m-CORE.setting","line":903,"id":59165440,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":131,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":61,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2846,"id":61723200,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":0,"count":1}]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1919,"id":61717424,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":39,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":36,"callees":[{"name":"add_to_cache","file":"src/gen/m-BOOTSTRAP.nqp","line":2158,"id":61717728,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":2},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":1}]},{"name":"WHICH","file":"src/gen/m-CORE.setting","line":907,"id":59166048,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":30,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":26,"callees":[{"name":"name","file":"src/gen/m-Metamodel.nqp","line":69,"id":61904800,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]}],"allocations":[{"id":62199968,"type":"ObjAt","spesh":0,"jit":0,"count":1}]}],"allocations":[]},{"name":"WHICH","file":"src/gen/m-CORE.setting","line":907,"id":59166048,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"callees":[{"name":"name","file":"src/gen/m-Metamodel.nqp","line":69,"id":61904800,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":62199968,"type":"ObjAt","spesh":0,"jit":0,"count":1}]},{"name":"infix:<eq>","file":"src/gen/m-CORE.setting","line":1592,"id":58338368,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":488,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":53,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1919,"id":61717424,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":54,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":50,"callees":[{"name":"add_to_cache","file":"src/gen/m-BOOTSTRAP.nqp","line":2158,"id":61717728,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":2},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":1}]},{"name":"infix:<eq>","file":"src/gen/m-CORE.setting","line":1594,"id":58338976,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":381,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":139,"callees":[{"name":"Stringy","file":"src/gen/m-CORE.setting","line":1174,"id":59189152,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":234,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":23,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2846,"id":61723200,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":0,"count":1}]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1919,"id":61717424,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":21,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":20,"callees":[{"name":"add_to_cache","file":"src/gen/m-BOOTSTRAP.nqp","line":2158,"id":61717728,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":2},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":1}]},{"name":"Stringy","file":"src/gen/m-CORE.setting","line":1179,"id":59189760,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":187,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":35,"callees":[{"name":"Str","file":"src/gen/m-CORE.setting","line":1163,"id":59187632,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":151,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":32,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2846,"id":61723200,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":0,"count":1}]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1919,"id":61717424,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":114,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":18,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1623,"id":61716512,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":93,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":72,"callees":[{"name":"is_narrower","file":"src/gen/m-BOOTSTRAP.nqp","line":1651,"id":61716816,"entries":6,"spesh_entries":0,"jit_entries":6,"inlined_entries":0,"inclusive_time":21,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":21,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":11},{"id":35942184,"type":"NQPArrayIter","spesh":0,"jit":0,"count":4},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":6},{"id":35941536,"type":"BOOTIntArray","spesh":0,"jit":0,"count":3},{"id":35940936,"type":"BOOTInt","spesh":0,"jit":0,"count":6}]},{"name":"add_to_cache","file":"src/gen/m-BOOTSTRAP.nqp","line":2158,"id":61717728,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":2},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":1}]},{"name":"Str","file":"src/gen/m-CORE.setting","line":20753,"id":60342224,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[{"id":62199656,"type":"Str","spesh":0,"jit":0,"count":1}]}],"allocations":[]}],"allocations":[]}],"allocations":[]},{"name":"Stringy","file":"src/gen/m-CORE.setting","line":1179,"id":59189760,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"callees":[{"name":"Str","file":"src/gen/m-CORE.setting","line":20753,"id":60342224,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":62199656,"type":"Str","spesh":0,"jit":0,"count":1}]}],"allocations":[]},{"name":"infix:<eq>","file":"src/gen/m-CORE.setting","line":8297,"id":58727072,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[]}],"allocations":[]}],"allocations":[]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2}]}],"allocations":[]},{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4946,"id":58581456,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"","file":"/home/x/data/projects/perl6/Inline-Lua/lib/Inline/Lua.pm6","line":19,"id":144104880,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":109070,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":72,"callees":[{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4947,"id":58581760,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"ACCEPTS","file":"src/gen/m-CORE.setting","line":894,"id":59164528,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":131,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":26,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2846,"id":61723200,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":0,"count":1}]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1919,"id":61717424,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":102,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":18,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1623,"id":61716512,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":82,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":64,"callees":[{"name":"is_narrower","file":"src/gen/m-BOOTSTRAP.nqp","line":1651,"id":61716816,"entries":6,"spesh_entries":0,"jit_entries":6,"inlined_entries":0,"inclusive_time":17,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":17,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":11},{"id":35942184,"type":"NQPArrayIter","spesh":0,"jit":0,"count":4},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":6},{"id":35941536,"type":"BOOTIntArray","spesh":0,"jit":0,"count":3},{"id":35940936,"type":"BOOTInt","spesh":0,"jit":0,"count":6}]},{"name":"add_to_cache","file":"src/gen/m-BOOTSTRAP.nqp","line":2158,"id":61717728,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":2},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":1}]},{"name":"ACCEPTS","file":"src/gen/m-CORE.setting","line":4923,"id":59387968,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"","file":"/home/x/data/projects/perl6/Inline-Lua/lib/Inline/Lua.pm6","line":20,"id":114294560,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":108812,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":371,"callees":[{"name":"new","file":"src/gen/m-CORE.setting","line":10912,"id":58419536,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":46,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":41,"callees":[{"name":"BUILD","file":"src/gen/m-CORE.setting","line":10913,"id":58419840,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":5,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":4}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":4},{"id":62202440,"type":"Pair","spesh":0,"jit":0,"count":2}]},{"name":"infix:<,>","file":"src/gen/m-CORE.setting","line":9029,"id":58758384,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":0,"count":1}]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1489,"id":61712864,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[{"id":62204048,"type":"WhateverCode","spesh":0,"jit":0,"count":1},{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1}]},{"name":"grep","file":"src/gen/m-CORE.setting","line":1836,"id":59253600,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":879,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":24,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2846,"id":61723200,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":0,"count":1}]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1919,"id":61717424,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":30,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":29,"callees":[{"name":"add_to_cache","file":"src/gen/m-BOOTSTRAP.nqp","line":2158,"id":61717728,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":2},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":1}]},{"name":"grep","file":"src/gen/m-CORE.setting","line":1843,"id":59254816,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":823,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":53,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1545,"id":61714688,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199512,"type":"Block","spesh":0,"jit":0,"count":1},{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1}]},{"name":"map","file":"src/gen/m-CORE.setting","line":1787,"id":59246608,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":769,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":10,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2846,"id":61723200,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":0,"count":1}]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1919,"id":61717424,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":658,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":40,"callees":[{"name":"is_bindable","file":"src/gen/m-BOOTSTRAP.nqp","line":884,"id":61699184,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":617,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":50,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":890,"id":61699488,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":567,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":185,"callees":[{"name":"bind","file":"src/gen/m-BOOTSTRAP.nqp","line":569,"id":61697360,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":382,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":347,"callees":[{"name":"bind_one_param","file":"src/gen/m-BOOTSTRAP.nqp","line":161,"id":61696144,"entries":4,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":33,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":33,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":4},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2}]},{"name":"handle_optional","file":"src/gen/m-BOOTSTRAP.nqp","line":534,"id":61697056,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":62199920,"type":"Hash","spesh":0,"jit":0,"count":1}]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":2},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":1},{"id":35941224,"type":"CallCapture","spesh":0,"jit":0,"count":1}]},{"name":"map","file":"src/gen/m-CORE.setting","line":1789,"id":59247216,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":100,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":56,"callees":[{"name":"new","file":"src/gen/m-CORE.setting","line":9435,"id":59620528,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":41,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":33,"callees":[{"name":"BUILD","file":"src/gen/m-CORE.setting","line":9441,"id":59620832,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":7,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":7,"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":5}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":4},{"id":65564936,"type":"MapIter","spesh":0,"jit":0,"count":1},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":1},{"id":62199800,"type":"ListIter","spesh":0,"jit":0,"count":1}]},{"name":"list","file":"src/gen/m-CORE.setting","line":1669,"id":59226544,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2}]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1}]}],"allocations":[]},{"name":"STORE","file":"src/gen/m-CORE.setting","line":11248,"id":58448720,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2943,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":146,"callees":[{"name":"infix:<,>","file":"src/gen/m-CORE.setting","line":9029,"id":58758384,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":0,"count":1}]},{"name":"flat","file":"src/gen/m-CORE.setting","line":8866,"id":59583744,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":1}]},{"name":"eager","file":"src/gen/m-CORE.setting","line":9834,"id":59636032,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2600,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":72,"callees":[{"name":"gimme","file":"src/gen/m-CORE.setting","line":9860,"id":59637248,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2527,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":96,"callees":[{"name":"infinite","file":"src/gen/m-CORE.setting","line":9396,"id":59619008,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":81,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":42,"callees":[{"name":"infinite","file":"src/gen/m-CORE.setting","line":9882,"id":59638768,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":39,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"callees":[{"name":"infinite","file":"src/gen/m-CORE.setting","line":9396,"id":59619008,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":35,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":35,"callees":[{"name":"infinite","file":"src/gen/m-CORE.setting","line":960,"id":59170912,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]}],"allocations":[]}],"allocations":[]},{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4947,"id":58581760,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9338,"id":59616576,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2348,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":121,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9339,"id":59616880,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2227,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":152,"callees":[{"name":"flattens","file":"src/gen/m-CORE.setting","line":9805,"id":59634208,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5755,"id":58668704,"entries":4,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":5,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":9364,"id":59618096,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2066,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":93,"callees":[{"name":"infinite","file":"src/gen/m-CORE.setting","line":9882,"id":59638768,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":12,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"infinite","file":"src/gen/m-CORE.setting","line":9396,"id":59619008,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":6,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"callees":[{"name":"infinite","file":"src/gen/m-CORE.setting","line":960,"id":59170912,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]}],"allocations":[]},{"name":"iterator","file":"src/gen/m-CORE.setting","line":9884,"id":59639072,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":65,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":44,"callees":[{"name":"Parcel","file":"src/gen/m-CORE.setting","line":9814,"id":59634816,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":21,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":20,"callees":[{"name":"defined","file":"src/gen/m-CORE.setting","line":947,"id":59169392,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":1},{"id":62199728,"type":"Parcel","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":62199800,"type":"ListIter","spesh":0,"jit":0,"count":1}]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9338,"id":59616576,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1891,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":13,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9339,"id":59616880,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1878,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":55,"callees":[{"name":"flattens","file":"src/gen/m-CORE.setting","line":9805,"id":59634208,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5755,"id":58668704,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":9364,"id":59618096,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1817,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":109,"callees":[{"name":"infinite","file":"src/gen/m-CORE.setting","line":960,"id":59170912,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"iterator","file":"src/gen/m-CORE.setting","line":9056,"id":59596512,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9454,"id":59621440,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1707,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":299,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9455,"id":59621744,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1407,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":477,"callees":[{"name":"count","file":"src/gen/m-CORE.setting","line":3798,"id":59297984,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":16,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":15,"callees":[{"name":"count","file":"src/gen/m-CORE.setting","line":12388,"id":59748208,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5752,"id":58668400,"entries":3,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[]},{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":5443,"id":58653504,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":102,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":97,"callees":[{"name":"Bridge","file":"src/gen/m-CORE.setting","line":5522,"id":59418368,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[{"id":62199704,"type":"Num","spesh":0,"jit":0,"count":1}]},{"name":"Bridge","file":"src/gen/m-CORE.setting","line":5904,"id":59439040,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":6253,"id":58692416,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[]},{"name":"phasers","file":"src/gen/m-CORE.setting","line":3850,"id":59301936,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":8,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"allocations":[]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":939,"id":59168176,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":29,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":25,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2846,"id":61723200,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":0,"count":1}]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":8804,"id":59579184,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9338,"id":59616576,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":105,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":7,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9339,"id":59616880,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":98,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":86,"callees":[{"name":"flattens","file":"src/gen/m-CORE.setting","line":9452,"id":59621136,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5755,"id":58668704,"entries":3,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":9364,"id":59618096,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":5,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"allocations":[]},{"name":"REIFY","file":"src/gen/m-CORE.setting","line":9632,"id":59625088,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":2},{"id":62200040,"type":"IntLexRef","spesh":0,"jit":0,"count":3},{"id":62199728,"type":"Parcel","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":3}]},{"name":"infix:</>","file":"src/gen/m-CORE.setting","line":12758,"id":58799120,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":166,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":74,"callees":[{"name":"DIVIDE_NUMBERS","file":"src/gen/m-CORE.setting","line":12625,"id":58793344,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":91,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":80,"callees":[{"name":"infix:<gcd>","file":"src/gen/m-CORE.setting","line":5726,"id":58666272,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[{"id":62199680,"type":"Int","spesh":0,"jit":0,"count":1}]},{"name":"infix:<div>","file":"src/gen/m-CORE.setting","line":5697,"id":58664144,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[{"id":62199680,"type":"Int","spesh":0,"jit":0,"count":2}]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5752,"id":58668400,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2},{"id":65566496,"type":"Rat","spesh":0,"jit":0,"count":1}]}],"allocations":[]},{"name":"floor","file":"src/gen/m-CORE.setting","line":12466,"id":59751856,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":41,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":40,"callees":[{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":5741,"id":58667488,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"infix:<>>","file":"src/gen/m-CORE.setting","line":5766,"id":58669616,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"prefix:<+>","file":"src/gen/m-CORE.setting","line":5050,"id":58595440,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":37,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":35,"callees":[{"name":"Numeric","file":"src/gen/m-CORE.setting","line":8805,"id":59579488,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[]},{"name":"infix:<min>","file":"src/gen/m-CORE.setting","line":2224,"id":58354784,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":63,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":23,"callees":[{"name":"infix:<cmp>","file":"src/gen/m-CORE.setting","line":5867,"id":58680256,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":39,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":38,"callees":[{"name":"ORDER","file":"src/gen/m-CORE.setting","line":5856,"id":58679040,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5752,"id":58668400,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[]},{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":5741,"id":58667488,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4947,"id":58581760,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":1844,"id":59255120,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":223,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":70,"callees":[{"name":"","file":"/home/x/data/projects/perl6/Inline-Lua/lib/Inline/Lua.pm6","line":21,"id":114294864,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":46,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":26,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1489,"id":61712864,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[{"id":62204048,"type":"WhateverCode","spesh":0,"jit":0,"count":2},{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2}]},{"name":"","file":"/home/x/data/projects/perl6/Inline-Lua/lib/Inline/Lua.pm6","line":21,"id":114295168,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":14,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":11,"callees":[{"name":"value","file":"src/gen/m-CORE.setting","line":10976,"id":58427744,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]}],"allocations":[]},{"name":"defined","file":"src/gen/m-CORE.setting","line":947,"id":59169392,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2}]},{"name":"","file":"src/gen/m-CORE.setting","line":690,"id":58306752,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":106,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":22,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":695,"id":58307360,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":83,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":36,"callees":[{"name":"RETURN-PARCEL","file":"src/gen/m-CORE.setting","line":627,"id":58302496,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"THROW","file":"src/gen/m-CORE.setting","line":619,"id":58302192,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":45,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":43,"callees":[{"name":"","file":"/home/x/.rakudobrew/moar-nom/install/languages/perl6/runtime/CORE.setting.moarvm","line":-1,"id":59623872,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]}],"allocations":[]}],"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":0,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":2}]}],"allocations":[]},{"name":"find_method","file":"src/gen/m-Metamodel.nqp","line":1023,"id":61937328,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":129,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":115,"callees":[{"name":"submethod_table","file":"src/gen/m-Metamodel.nqp","line":487,"id":61922736,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]},{"name":"mro","file":"src/gen/m-Metamodel.nqp","line":991,"id":61936416,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":6,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"allocations":[]},{"name":"method_table","file":"src/gen/m-Metamodel.nqp","line":3075,"id":61994784,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":1}]},{"name":"method_table","file":"src/gen/m-Metamodel.nqp","line":482,"id":61922432,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]}],"allocations":[{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":1},{"id":35942184,"type":"NQPArrayIter","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":5},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":3},{"id":62200040,"type":"IntLexRef","spesh":0,"jit":0,"count":6},{"id":62199728,"type":"Parcel","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":3}]}],"allocations":[]},{"name":"REIFY","file":"src/gen/m-CORE.setting","line":10287,"id":59666432,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":2},{"id":62200040,"type":"IntLexRef","spesh":0,"jit":0,"count":2},{"id":62199728,"type":"Parcel","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":5}]},{"name":"infinite","file":"src/gen/m-CORE.setting","line":9396,"id":59619008,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"callees":[{"name":"infinite","file":"src/gen/m-CORE.setting","line":960,"id":59170912,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"iterator","file":"src/gen/m-CORE.setting","line":9404,"id":59619312,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"REIFY","file":"src/gen/m-CORE.setting","line":10287,"id":59666432,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":2},{"id":62200040,"type":"IntLexRef","spesh":0,"jit":0,"count":4},{"id":62199728,"type":"Parcel","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":3}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":3}]}],"allocations":[]},{"name":"elems","file":"src/gen/m-CORE.setting","line":9836,"id":59636336,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":37,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":23,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":642,"id":58303104,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":13,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":12,"callees":[{"name":"RETURN-PARCEL","file":"src/gen/m-CORE.setting","line":627,"id":58302496,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":0,"count":1}]}],"allocations":[]},{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":5741,"id":58667488,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":939,"id":59168176,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":152,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":31,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2846,"id":61723200,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":0,"count":1}]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":9779,"id":59630560,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":119,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":21,"callees":[{"name":"gimme","file":"src/gen/m-CORE.setting","line":9860,"id":59637248,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":96,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":55,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9870,"id":59638160,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":41,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":40,"callees":[{"name":"Int","file":"src/gen/m-CORE.setting","line":5501,"id":59416544,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2}]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":5497,"id":59416240,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":1}]},{"name":"FLATTENABLE_LIST","file":"src/gen/m-CORE.setting","line":8767,"id":59576448,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":1}]},{"name":"FLATTENABLE_HASH","file":"src/gen/m-CORE.setting","line":8768,"id":59576752,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":1}]},{"name":"FLATTENABLE_LIST","file":"src/gen/m-CORE.setting","line":11297,"id":58452976,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":1}]},{"name":"FLATTENABLE_HASH","file":"src/gen/m-CORE.setting","line":11298,"id":58453280,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]},{"name":"new","file":"src/gen/m-CORE.setting","line":951,"id":59169696,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":81816,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":43,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2846,"id":61723200,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":1,"count":1}]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1919,"id":61717424,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":29,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":26,"callees":[{"name":"add_to_cache","file":"src/gen/m-BOOTSTRAP.nqp","line":2158,"id":61717728,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":2},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":1}]},{"name":"new","file":"src/gen/m-CORE.setting","line":952,"id":59170000,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":81741,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":18,"callees":[{"name":"bless","file":"src/gen/m-CORE.setting","line":966,"id":59171520,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":81722,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":27,"callees":[{"name":"BUILDALL","file":"src/gen/m-CORE.setting","line":970,"id":59171824,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":81695,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":119,"callees":[{"name":"BUILDALLPLAN","file":"src/gen/m-Metamodel.nqp","line":1375,"id":61945840,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":977,"id":59172128,"entries":4,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":81572,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":111,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":985,"id":59173344,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":40,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":34,"callees":[{"name":"exists_key","file":"src/gen/m-CORE.setting","line":11199,"id":58444768,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":6,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"allocations":[]}],"allocations":[{"id":62199656,"type":"Str","spesh":0,"jit":0,"count":2}]},{"name":"","file":"src/gen/m-CORE.setting","line":1020,"id":59175776,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":81419,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":113,"callees":[{"name":"","file":"/home/x/data/projects/perl6/Inline-Lua/lib/Lua/Raw.pm6","line":164,"id":85800256,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":4147,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":68,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1545,"id":61714688,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[{"id":62199512,"type":"Block","spesh":0,"jit":0,"count":1},{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1}]},{"name":"","file":"/home/x/data/projects/perl6/Inline-Lua/lib/Lua/Raw.pm6","line":164,"id":97045728,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":4076,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":380,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1489,"id":61712864,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199488,"type":"Code","spesh":0,"jit":0,"count":1},{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1}]},{"name":"METAOP_TEST_ASSIGN:<//>","file":"src/gen/m-CORE.setting","line":21219,"id":59008576,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":27,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":26,"callees":[{"name":"defined","file":"src/gen/m-CORE.setting","line":947,"id":59169392,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"","file":"/home/x/data/projects/perl6/Inline-Lua/lib/Lua/Raw.pm6","line":165,"id":97046032,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1}]},{"name":"uc","file":"src/gen/m-CORE.setting","line":4609,"id":59361824,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":44,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":42,"callees":[{"name":"Str","file":"src/gen/m-CORE.setting","line":6920,"id":59490720,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":62199656,"type":"Str","spesh":0,"jit":0,"count":1}]},{"name":"infix:<eq>","file":"src/gen/m-CORE.setting","line":8297,"id":58727072,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]},{"name":"infix:<∉>","file":"src/gen/m-CORE.setting","line":20451,"id":58937136,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3111,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":43,"callees":[{"name":"infix:<(elem)>","file":"src/gen/m-CORE.setting","line":20441,"id":58935920,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3066,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":32,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1919,"id":61717424,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":97,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":27,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1623,"id":61716512,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":66,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":49,"callees":[{"name":"is_narrower","file":"src/gen/m-BOOTSTRAP.nqp","line":1651,"id":61716816,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":17,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":17,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":8},{"id":35942184,"type":"NQPArrayIter","spesh":0,"jit":0,"count":3},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":4},{"id":35941536,"type":"BOOTIntArray","spesh":0,"jit":0,"count":2},{"id":35940936,"type":"BOOTInt","spesh":0,"jit":0,"count":4}]},{"name":"add_to_cache","file":"src/gen/m-BOOTSTRAP.nqp","line":2158,"id":61717728,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":2},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":1}]},{"name":"infix:<(elem)>","file":"src/gen/m-CORE.setting","line":20442,"id":58936224,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2936,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":31,"callees":[{"name":"Set","file":"src/gen/m-CORE.setting","line":2182,"id":59288256,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2468,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":130,"callees":[{"name":"list","file":"src/gen/m-CORE.setting","line":8867,"id":59584048,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":1}]},{"name":"new-from-pairs","file":"src/gen/m-CORE.setting","line":19785,"id":60259536,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2333,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":66,"callees":[{"name":"infix:<,>","file":"src/gen/m-CORE.setting","line":9029,"id":58758384,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":0,"count":1}]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1545,"id":61714688,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199512,"type":"Block","spesh":0,"jit":0,"count":1},{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1}]},{"name":"for","file":"src/gen/m-CORE.setting","line":1792,"id":59247520,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":181,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":16,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2846,"id":61723200,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":1,"count":1}]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1919,"id":61717424,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":119,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":23,"callees":[{"name":"is_bindable","file":"src/gen/m-BOOTSTRAP.nqp","line":884,"id":61699184,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":96,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":51,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":890,"id":61699488,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":44,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"callees":[{"name":"bind","file":"src/gen/m-BOOTSTRAP.nqp","line":569,"id":61697360,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":40,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":20,"callees":[{"name":"bind_one_param","file":"src/gen/m-BOOTSTRAP.nqp","line":161,"id":61696144,"entries":4,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":18,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":18,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":4},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2}]},{"name":"handle_optional","file":"src/gen/m-BOOTSTRAP.nqp","line":534,"id":61697056,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":62199920,"type":"Hash","spesh":0,"jit":0,"count":1}]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":2},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":1},{"id":35941224,"type":"CallCapture","spesh":0,"jit":0,"count":1}]},{"name":"for","file":"src/gen/m-CORE.setting","line":1794,"id":59248128,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":44,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":21,"callees":[{"name":"new","file":"src/gen/m-CORE.setting","line":9435,"id":59620528,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":20,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":12,"callees":[{"name":"BUILD","file":"src/gen/m-CORE.setting","line":9441,"id":59620832,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":8,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":5}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":4},{"id":65564936,"type":"MapIter","spesh":0,"jit":0,"count":1},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":1},{"id":62199800,"type":"ListIter","spesh":0,"jit":0,"count":1}]},{"name":"list","file":"src/gen/m-CORE.setting","line":1669,"id":59226544,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2}]}],"allocations":[]},{"name":"sink","file":"src/gen/m-CORE.setting","line":10346,"id":58393696,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1868,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":9,"callees":[{"name":"gimme","file":"src/gen/m-CORE.setting","line":9860,"id":59637248,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1858,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":27,"callees":[{"name":"infinite","file":"src/gen/m-CORE.setting","line":9396,"id":59619008,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":8,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":7,"callees":[{"name":"infinite","file":"src/gen/m-CORE.setting","line":960,"id":59170912,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4947,"id":58581760,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9338,"id":59616576,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1821,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":13,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9339,"id":59616880,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1808,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":38,"callees":[{"name":"flattens","file":"src/gen/m-CORE.setting","line":9805,"id":59634208,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5755,"id":58668704,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":9364,"id":59618096,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1762,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":15,"callees":[{"name":"infinite","file":"src/gen/m-CORE.setting","line":960,"id":59170912,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"iterator","file":"src/gen/m-CORE.setting","line":9056,"id":59596512,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9454,"id":59621440,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1746,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9455,"id":59621744,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1739,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":159,"callees":[{"name":"count","file":"src/gen/m-CORE.setting","line":3798,"id":59297984,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":8,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"callees":[{"name":"count","file":"src/gen/m-CORE.setting","line":12388,"id":59748208,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5752,"id":58668400,"entries":3,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]},{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":5443,"id":58653504,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":15,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":11,"callees":[{"name":"Bridge","file":"src/gen/m-CORE.setting","line":5522,"id":59418368,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[{"id":62199704,"type":"Num","spesh":0,"jit":0,"count":1}]},{"name":"Bridge","file":"src/gen/m-CORE.setting","line":5904,"id":59439040,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":6253,"id":58692416,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[]},{"name":"phasers","file":"src/gen/m-CORE.setting","line":3850,"id":59301936,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":6,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"allocations":[]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":939,"id":59168176,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":11,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2846,"id":61723200,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":1,"count":1}]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":8804,"id":59579184,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9338,"id":59616576,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":272,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9339,"id":59616880,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":267,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":33,"callees":[{"name":"flattens","file":"src/gen/m-CORE.setting","line":9452,"id":59621136,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5755,"id":58668704,"entries":7,"spesh_entries":7,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":9364,"id":59618096,"entries":3,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":228,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":40,"callees":[{"name":"iterator","file":"src/gen/m-CORE.setting","line":9884,"id":59639072,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":14,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"callees":[{"name":"Parcel","file":"src/gen/m-CORE.setting","line":9814,"id":59634816,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":7,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":7,"callees":[{"name":"defined","file":"src/gen/m-CORE.setting","line":947,"id":59169392,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":1},{"id":62199728,"type":"Parcel","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":62199800,"type":"ListIter","spesh":0,"jit":0,"count":1}]},{"name":"infix:<->","file":"src/gen/m-CORE.setting","line":5686,"id":58663232,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9338,"id":59616576,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":172,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":10,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9339,"id":59616880,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":162,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":82,"callees":[{"name":"flattens","file":"src/gen/m-CORE.setting","line":10734,"id":58406768,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5755,"id":58668704,"entries":5,"spesh_entries":5,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":9364,"id":59618096,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":64,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":18,"callees":[{"name":"iterator","file":"src/gen/m-CORE.setting","line":9884,"id":59639072,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":10,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"callees":[{"name":"Parcel","file":"src/gen/m-CORE.setting","line":9814,"id":59634816,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":5,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"defined","file":"src/gen/m-CORE.setting","line":947,"id":59169392,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":1},{"id":62199728,"type":"Parcel","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":62199800,"type":"ListIter","spesh":0,"jit":0,"count":1}]},{"name":"infix:<->","file":"src/gen/m-CORE.setting","line":5686,"id":58663232,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9338,"id":59616576,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":34,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":9,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9339,"id":59616880,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":25,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":21,"callees":[{"name":"flattens","file":"src/gen/m-CORE.setting","line":9805,"id":59634208,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5755,"id":58668704,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"REIFY","file":"src/gen/m-CORE.setting","line":10287,"id":59666432,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":2},{"id":62200040,"type":"IntLexRef","spesh":0,"jit":0,"count":1},{"id":62199728,"type":"Parcel","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":5}]},{"name":"iterator","file":"src/gen/m-CORE.setting","line":9404,"id":59619312,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":62200040,"type":"IntLexRef","spesh":0,"jit":0,"count":2}]},{"name":"REIFY","file":"src/gen/m-CORE.setting","line":10763,"id":58409808,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":13,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":11,"callees":[{"name":"REIFY","file":"src/gen/m-CORE.setting","line":10287,"id":59666432,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":35941128,"type":"BOOTIter","spesh":0,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":3}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":2},{"id":62200040,"type":"IntLexRef","spesh":0,"jit":0,"count":5},{"id":62199728,"type":"Parcel","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":5}]},{"name":"iterator","file":"src/gen/m-CORE.setting","line":9404,"id":59619312,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":62200040,"type":"IntLexRef","spesh":0,"jit":0,"count":2}]},{"name":"REIFY","file":"src/gen/m-CORE.setting","line":9632,"id":59625088,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":2},{"id":62200040,"type":"IntLexRef","spesh":0,"jit":0,"count":7},{"id":62199728,"type":"Parcel","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":3}]},{"name":"infix:</>","file":"src/gen/m-CORE.setting","line":12758,"id":58799120,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":33,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"DIVIDE_NUMBERS","file":"src/gen/m-CORE.setting","line":12625,"id":58793344,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":28,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":18,"callees":[{"name":"infix:<gcd>","file":"src/gen/m-CORE.setting","line":5726,"id":58666272,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199680,"type":"Int","spesh":0,"jit":0,"count":1}]},{"name":"infix:<div>","file":"src/gen/m-CORE.setting","line":5697,"id":58664144,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[{"id":62199680,"type":"Int","spesh":0,"jit":0,"count":2}]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5752,"id":58668400,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2},{"id":65566496,"type":"Rat","spesh":0,"jit":0,"count":1}]}],"allocations":[]},{"name":"floor","file":"src/gen/m-CORE.setting","line":12466,"id":59751856,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":5,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":5741,"id":58667488,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"infix:<>>","file":"src/gen/m-CORE.setting","line":5766,"id":58669616,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"prefix:<+>","file":"src/gen/m-CORE.setting","line":5050,"id":58595440,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":6,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"callees":[{"name":"Numeric","file":"src/gen/m-CORE.setting","line":8805,"id":59579488,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[]},{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":5741,"id":58667488,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4947,"id":58581760,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":19787,"id":60259840,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1172,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":62,"callees":[{"name":"ACCEPTS","file":"src/gen/m-CORE.setting","line":894,"id":59164528,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":352,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":24,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2846,"id":61723200,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":1,"count":1}]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1919,"id":61717424,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":327,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":35,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1623,"id":61716512,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":289,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":161,"callees":[{"name":"is_narrower","file":"src/gen/m-BOOTSTRAP.nqp","line":1651,"id":61716816,"entries":30,"spesh_entries":0,"jit_entries":30,"inlined_entries":0,"inclusive_time":127,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":89,"callees":[{"name":"type_check","file":"src/gen/m-Metamodel.nqp","line":2417,"id":61976848,"entries":16,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":37,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":35,"callees":[{"name":"pretending_to_be","file":"src/gen/m-Metamodel.nqp","line":126,"id":61909056,"entries":16,"spesh_entries":0,"jit_entries":16,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]}],"allocations":[{"id":35942184,"type":"NQPArrayIter","spesh":0,"jit":0,"count":16}]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":20},{"id":35942184,"type":"NQPArrayIter","spesh":0,"jit":0,"count":7},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":12},{"id":35941536,"type":"BOOTIntArray","spesh":0,"jit":0,"count":6},{"id":35940936,"type":"BOOTInt","spesh":0,"jit":0,"count":12}]},{"name":"add_to_cache","file":"src/gen/m-BOOTSTRAP.nqp","line":2158,"id":61717728,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":2,"jit":0,"count":2},{"id":35942160,"type":"NQPArray","spesh":2,"jit":0,"count":2},{"id":35941032,"type":"BOOTHash","spesh":1,"jit":0,"count":1}]},{"name":"ACCEPTS","file":"src/gen/m-CORE.setting","line":895,"id":59164832,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":19791,"id":60260144,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":664,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":45,"callees":[{"name":"WHICH","file":"src/gen/m-CORE.setting","line":903,"id":59165440,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":136,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":48,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2846,"id":61723200,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":1,"count":1}]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1919,"id":61717424,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":72,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":11,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1623,"id":61716512,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":60,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":47,"callees":[{"name":"is_narrower","file":"src/gen/m-BOOTSTRAP.nqp","line":1651,"id":61716816,"entries":6,"spesh_entries":0,"jit_entries":6,"inlined_entries":0,"inclusive_time":13,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":13,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":11},{"id":35942184,"type":"NQPArrayIter","spesh":0,"jit":0,"count":4},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":6},{"id":35941536,"type":"BOOTIntArray","spesh":0,"jit":0,"count":3},{"id":35940936,"type":"BOOTInt","spesh":0,"jit":0,"count":6}]},{"name":"add_to_cache","file":"src/gen/m-BOOTSTRAP.nqp","line":2158,"id":61717728,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":2,"jit":0,"count":2},{"id":35942160,"type":"NQPArray","spesh":2,"jit":0,"count":2},{"id":35941032,"type":"BOOTHash","spesh":1,"jit":0,"count":1}]},{"name":"WHICH","file":"src/gen/m-CORE.setting","line":6903,"id":59489808,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":14,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":10,"callees":[{"name":"name","file":"src/gen/m-Metamodel.nqp","line":69,"id":61904800,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[]}],"allocations":[{"id":62199968,"type":"ObjAt","spesh":0,"jit":0,"count":1}]}],"allocations":[]},{"name":"postcircumfix:<{ }>","file":"src/gen/m-CORE.setting","line":3584,"id":58534032,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":393,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":45,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1919,"id":61717424,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":189,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":188,"callees":[{"name":"add_to_cache","file":"src/gen/m-BOOTSTRAP.nqp","line":2158,"id":61717728,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":3},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":2}]},{"name":"postcircumfix:<{ }>","file":"src/gen/m-CORE.setting","line":3587,"id":58534336,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":158,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":39,"callees":[{"name":"at_key","file":"src/gen/m-CORE.setting","line":2152,"id":59284304,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":118,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":38,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2846,"id":61723200,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":1,"count":1}]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1919,"id":61717424,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":13,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":12,"callees":[{"name":"add_to_cache","file":"src/gen/m-BOOTSTRAP.nqp","line":2158,"id":61717728,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":2,"jit":0,"count":2},{"id":35942160,"type":"NQPArray","spesh":2,"jit":0,"count":2},{"id":35941032,"type":"BOOTHash","spesh":1,"jit":0,"count":1}]},{"name":"at_key","file":"src/gen/m-CORE.setting","line":11333,"id":59667952,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":65,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":51,"callees":[{"name":"Str","file":"src/gen/m-CORE.setting","line":20753,"id":60342224,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[{"id":62199656,"type":"Str","spesh":0,"jit":0,"count":1}]},{"name":"","file":"src/gen/m-CORE.setting","line":11341,"id":59668560,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":12,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":9,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1545,"id":61714688,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[{"id":62199512,"type":"Block","spesh":0,"jit":0,"count":1},{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":1}]}],"allocations":[]}],"allocations":[]}],"allocations":[]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1489,"id":61712864,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[{"id":62199488,"type":"Code","spesh":0,"jit":0,"count":2},{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2}]},{"name":"METAOP_TEST_ASSIGN:<//>","file":"src/gen/m-CORE.setting","line":21219,"id":59008576,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":56,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":52,"callees":[{"name":"defined","file":"src/gen/m-CORE.setting","line":947,"id":59169392,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":19792,"id":60260448,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":11346,"id":59668864,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2}]},{"name":"WHICH","file":"src/gen/m-CORE.setting","line":6903,"id":59489808,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":13,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":10,"callees":[{"name":"name","file":"src/gen/m-Metamodel.nqp","line":69,"id":61904800,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]}],"allocations":[{"id":62199968,"type":"ObjAt","spesh":0,"jit":0,"count":1}]},{"name":"postcircumfix:<{ }>","file":"src/gen/m-CORE.setting","line":3587,"id":58534336,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":15,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"callees":[{"name":"at_key","file":"src/gen/m-CORE.setting","line":11333,"id":59667952,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":12,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"callees":[{"name":"Str","file":"src/gen/m-CORE.setting","line":20753,"id":60342224,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":62199656,"type":"Str","spesh":0,"jit":0,"count":1}]},{"name":"","file":"src/gen/m-CORE.setting","line":11341,"id":59668560,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":5,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1545,"id":61714688,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199512,"type":"Block","spesh":0,"jit":0,"count":1},{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1}]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":62199920,"type":"Hash","spesh":0,"jit":0,"count":1}]},{"name":"succeed","file":"src/gen/m-CORE.setting","line":712,"id":58308576,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":85,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":21,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1919,"id":61717424,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":15,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":13,"callees":[{"name":"add_to_cache","file":"src/gen/m-BOOTSTRAP.nqp","line":2158,"id":61717728,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":2},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":1}]},{"name":"succeed","file":"src/gen/m-CORE.setting","line":716,"id":58309184,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":48,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":14,"callees":[{"name":"THROW","file":"src/gen/m-CORE.setting","line":619,"id":58302192,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":34,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":30,"callees":[{"name":"","file":"/home/x/.rakudobrew/moar-nom/install/languages/perl6/runtime/CORE.setting.moarvm","line":-1,"id":60260752,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[{"id":62199680,"type":"Int","spesh":0,"jit":0,"count":2}]}],"allocations":[]}],"allocations":[]}],"allocations":[]},{"name":"ACCEPTS","file":"src/gen/m-CORE.setting","line":895,"id":59164832,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"succeed","file":"src/gen/m-CORE.setting","line":716,"id":58309184,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":5,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"callees":[{"name":"THROW","file":"src/gen/m-CORE.setting","line":619,"id":58302192,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"callees":[{"name":"","file":"/home/x/.rakudobrew/moar-nom/install/languages/perl6/runtime/CORE.setting.moarvm","line":-1,"id":60260752,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":62199680,"type":"Int","spesh":0,"jit":0,"count":2}]}],"allocations":[]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":10}]},{"name":"find_method","file":"src/gen/m-Metamodel.nqp","line":1023,"id":61937328,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":31,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":21,"callees":[{"name":"submethod_table","file":"src/gen/m-Metamodel.nqp","line":487,"id":61922736,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]},{"name":"mro","file":"src/gen/m-Metamodel.nqp","line":991,"id":61936416,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[]},{"name":"method_table","file":"src/gen/m-Metamodel.nqp","line":3075,"id":61994784,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":1}]},{"name":"method_table","file":"src/gen/m-Metamodel.nqp","line":482,"id":61922432,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]}],"allocations":[{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":1},{"id":35942184,"type":"NQPArrayIter","spesh":0,"jit":0,"count":1}]},{"name":"fire_phasers","file":"src/gen/m-CORE.setting","line":3843,"id":59301328,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":10,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":9,"callees":[{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4947,"id":58581760,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":5},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":3},{"id":62200040,"type":"IntLexRef","spesh":0,"jit":0,"count":6},{"id":62199728,"type":"Parcel","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":3}]}],"allocations":[]},{"name":"REIFY","file":"src/gen/m-CORE.setting","line":10287,"id":59666432,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":2},{"id":62200040,"type":"IntLexRef","spesh":0,"jit":0,"count":2},{"id":62199728,"type":"Parcel","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":3}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":3}]}],"allocations":[]},{"name":"bless","file":"src/gen/m-CORE.setting","line":966,"id":59171520,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":213,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":10,"callees":[{"name":"BUILDALL","file":"src/gen/m-CORE.setting","line":970,"id":59171824,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":203,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":14,"callees":[{"name":"BUILDALLPLAN","file":"src/gen/m-Metamodel.nqp","line":1375,"id":61945840,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":977,"id":59172128,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":185,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":66,"callees":[{"name":"FLATTENABLE_LIST","file":"src/gen/m-CORE.setting","line":11297,"id":58452976,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":1}]},{"name":"FLATTENABLE_HASH","file":"src/gen/m-CORE.setting","line":11298,"id":58453280,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"BUILD","file":"src/gen/m-CORE.setting","line":19852,"id":60269872,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":116,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":46,"callees":[{"name":"bind_sig","file":"src/gen/m-BOOTSTRAP.nqp","line":832,"id":61698880,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":69,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":11,"callees":[{"name":"bind","file":"src/gen/m-BOOTSTRAP.nqp","line":569,"id":61697360,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":58,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":38,"callees":[{"name":"bind_one_param","file":"src/gen/m-BOOTSTRAP.nqp","line":161,"id":61696144,"entries":3,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":19,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":19,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":3}]}],"allocations":[{"id":62199920,"type":"Hash","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":1},{"id":35941152,"type":"BOOTContext","spesh":0,"jit":0,"count":1}]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":10},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":62199920,"type":"Hash","spesh":0,"jit":0,"count":1},{"id":65563616,"type":"Set","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1}]}],"allocations":[]},{"name":"infix:<(elem)>","file":"src/gen/m-CORE.setting","line":20441,"id":58935920,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":436,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":62,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1919,"id":61717424,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":22,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":20,"callees":[{"name":"add_to_cache","file":"src/gen/m-BOOTSTRAP.nqp","line":2158,"id":61717728,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":2},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":1}]},{"name":"infix:<(elem)>","file":"src/gen/m-CORE.setting","line":20445,"id":58936528,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":350,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":21,"callees":[{"name":"exists_key","file":"src/gen/m-CORE.setting","line":1651,"id":59222592,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":329,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":44,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2846,"id":61723200,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":1,"count":1}]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1919,"id":61717424,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":125,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":14,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1623,"id":61716512,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":109,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":62,"callees":[{"name":"is_narrower","file":"src/gen/m-BOOTSTRAP.nqp","line":1651,"id":61716816,"entries":6,"spesh_entries":0,"jit_entries":6,"inlined_entries":0,"inclusive_time":46,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":33,"callees":[{"name":"type_check","file":"src/gen/m-Metamodel.nqp","line":2417,"id":61976848,"entries":4,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":12,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":12,"callees":[{"name":"pretending_to_be","file":"src/gen/m-Metamodel.nqp","line":126,"id":61909056,"entries":4,"spesh_entries":0,"jit_entries":4,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":35942184,"type":"NQPArrayIter","spesh":0,"jit":0,"count":4}]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":11},{"id":35942184,"type":"NQPArrayIter","spesh":0,"jit":0,"count":4},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":6},{"id":35941536,"type":"BOOTIntArray","spesh":0,"jit":0,"count":3},{"id":35940936,"type":"BOOTInt","spesh":0,"jit":0,"count":6}]},{"name":"add_to_cache","file":"src/gen/m-BOOTSTRAP.nqp","line":2158,"id":61717728,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":2,"jit":0,"count":2},{"id":35942160,"type":"NQPArray","spesh":2,"jit":0,"count":2},{"id":35941032,"type":"BOOTHash","spesh":1,"jit":0,"count":1}]},{"name":"exists_key","file":"src/gen/m-CORE.setting","line":19769,"id":60257712,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":157,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":60,"callees":[{"name":"Bool","file":"src/gen/m-CORE.setting","line":939,"id":59168176,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":36,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":33,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2846,"id":61723200,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":1,"count":1}]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":11176,"id":58442944,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]}],"allocations":[]},{"name":"WHICH","file":"src/gen/m-CORE.setting","line":6903,"id":59489808,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":11,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"callees":[{"name":"name","file":"src/gen/m-Metamodel.nqp","line":69,"id":61904800,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]}],"allocations":[{"id":62199968,"type":"ObjAt","spesh":0,"jit":0,"count":1}]},{"name":"prefix:<so>","file":"src/gen/m-CORE.setting","line":4941,"id":58580240,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":49,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":23,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1919,"id":61717424,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":19,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":17,"callees":[{"name":"add_to_cache","file":"src/gen/m-BOOTSTRAP.nqp","line":2158,"id":61717728,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":2},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":1}]},{"name":"prefix:<so>","file":"src/gen/m-CORE.setting","line":4943,"id":58580848,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":7,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"Bool","file":"src/gen/m-CORE.setting","line":5497,"id":59416240,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[]}],"allocations":[]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1}]}],"allocations":[]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1}]}],"allocations":[]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2}]}],"allocations":[]},{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4946,"id":58581456,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2}]},{"name":"Stringy","file":"src/gen/m-CORE.setting","line":6921,"id":59491024,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"infix:<~>","file":"src/gen/m-CORE.setting","line":8262,"id":58724032,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":6,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"allocations":[{"id":62199656,"type":"Str","spesh":0,"jit":0,"count":2}]},{"name":"DYNAMIC","file":"src/gen/m-CORE.setting","line":575,"id":58299152,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":81,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":68,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":577,"id":58299456,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":13,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":13,"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1}]},{"name":"<anon>","file":"src/gen/m-CORE.setting","line":3918,"id":59306192,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]},{"name":"postcircumfix:<{ }>","file":"src/gen/m-CORE.setting","line":3587,"id":58534336,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":12,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"at_key","file":"src/gen/m-CORE.setting","line":11333,"id":59667952,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":6,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1}]}],"allocations":[]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2434,"id":61720160,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":9,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1545,"id":61714688,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[{"id":62199632,"type":"Regex","spesh":0,"jit":0,"count":1},{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1}]}],"allocations":[]},{"name":"ACCEPTS","file":"src/gen/m-CORE.setting","line":15620,"id":59971344,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":391,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":159,"callees":[{"name":"!cursor_init","file":"gen/moar/stage2/QRegex.nqp","line":1063,"id":37837040,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":117,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":105,"callees":[{"name":"CREATE","file":"src/gen/m-CORE.setting","line":962,"id":59171216,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[{"id":62201504,"type":"Cursor","spesh":0,"jit":0,"count":1}]},{"name":"Num","file":"src/gen/m-CORE.setting","line":5507,"id":59417152,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[{"id":62199704,"type":"Num","spesh":0,"jit":0,"count":1}]},{"name":"!cursor_start_cur","file":"gen/moar/stage2/QRegex.nqp","line":1148,"id":37837952,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":7,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":7,"allocations":[{"id":62201504,"type":"Cursor","spesh":0,"jit":0,"count":1},{"id":35941536,"type":"BOOTIntArray","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":35943552,"type":"ParseShared","spesh":0,"jit":0,"count":1},{"id":35941584,"type":"BOOTStrArray","spesh":0,"jit":0,"count":1},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":1}]},{"name":"","file":"","line":-1,"id":86816912,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":99,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":93,"callees":[{"name":"!cursor_start","file":"gen/moar/stage2/QRegex.nqp","line":1125,"id":37837648,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[{"id":62201504,"type":"Cursor","spesh":0,"jit":0,"count":1},{"id":35941536,"type":"BOOTIntArray","spesh":0,"jit":0,"count":1}]},{"name":"!shared","file":"gen/moar/stage2/QRegex.nqp","line":1252,"id":37841600,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"!cursor_fail","file":"gen/moar/stage2/QRegex.nqp","line":1206,"id":37839776,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]}],"allocations":[{"id":62199920,"type":"Hash","spesh":0,"jit":0,"count":1}]},{"name":"MATCH_SAVE","file":"src/gen/m-CORE.setting","line":15413,"id":59961616,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":15,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":12,"callees":[{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5752,"id":58668400,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]}],"allocations":[]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1}]},{"name":"","file":"/home/x/data/projects/perl6/Inline-Lua/lib/Lua/Raw.pm6","line":174,"id":86817216,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":5212,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":74,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1545,"id":61714688,"entries":2,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":5,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"allocations":[{"id":62199512,"type":"Block","spesh":1,"jit":0,"count":2},{"id":35941080,"type":"BOOTCode","spesh":1,"jit":0,"count":2}]},{"name":"grep","file":"src/gen/m-CORE.setting","line":1836,"id":59253600,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":192,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":17,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2846,"id":61723200,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":1,"count":1}]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1919,"id":61717424,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":34,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":32,"callees":[{"name":"add_to_cache","file":"src/gen/m-BOOTSTRAP.nqp","line":2158,"id":61717728,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":2,"jit":0,"count":2},{"id":35942160,"type":"NQPArray","spesh":2,"jit":0,"count":2},{"id":35941032,"type":"BOOTHash","spesh":1,"jit":0,"count":1}]},{"name":"grep","file":"src/gen/m-CORE.setting","line":1843,"id":59254816,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":138,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":7,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1545,"id":61714688,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199512,"type":"Block","spesh":0,"jit":0,"count":1},{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1}]},{"name":"map","file":"src/gen/m-CORE.setting","line":1787,"id":59246608,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":130,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2846,"id":61723200,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":1,"count":1}]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1919,"id":61717424,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":92,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":19,"callees":[{"name":"is_bindable","file":"src/gen/m-BOOTSTRAP.nqp","line":884,"id":61699184,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":73,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":890,"id":61699488,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":67,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"callees":[{"name":"bind","file":"src/gen/m-BOOTSTRAP.nqp","line":569,"id":61697360,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":63,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":43,"callees":[{"name":"bind_one_param","file":"src/gen/m-BOOTSTRAP.nqp","line":161,"id":61696144,"entries":4,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":18,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":18,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":4},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2}]},{"name":"handle_optional","file":"src/gen/m-BOOTSTRAP.nqp","line":534,"id":61697056,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":62199920,"type":"Hash","spesh":0,"jit":0,"count":1}]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":2,"jit":0,"count":2},{"id":35942160,"type":"NQPArray","spesh":2,"jit":0,"count":2},{"id":35941032,"type":"BOOTHash","spesh":1,"jit":0,"count":1},{"id":35941224,"type":"CallCapture","spesh":1,"jit":0,"count":1}]},{"name":"map","file":"src/gen/m-CORE.setting","line":1789,"id":59247216,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":30,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":12,"callees":[{"name":"new","file":"src/gen/m-CORE.setting","line":9435,"id":59620528,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":15,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":9,"callees":[{"name":"BUILD","file":"src/gen/m-CORE.setting","line":9441,"id":59620832,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":6,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":5}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":4},{"id":65564936,"type":"MapIter","spesh":0,"jit":0,"count":1},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":1},{"id":62199800,"type":"ListIter","spesh":0,"jit":0,"count":1}]},{"name":"list","file":"src/gen/m-CORE.setting","line":1669,"id":59226544,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2}]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1}]}],"allocations":[]},{"name":"dispatch:<hyper>","file":"src/gen/m-CORE.setting","line":1395,"id":59209824,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":4814,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":55,"callees":[{"name":"Bool","file":"src/gen/m-CORE.setting","line":939,"id":59168176,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":110,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":43,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2846,"id":61723200,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":1,"count":1}]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1919,"id":61717424,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":63,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":13,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1623,"id":61716512,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":48,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":42,"callees":[{"name":"is_narrower","file":"src/gen/m-BOOTSTRAP.nqp","line":1651,"id":61716816,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":6,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":8},{"id":35942184,"type":"NQPArrayIter","spesh":0,"jit":0,"count":3},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":4},{"id":35941536,"type":"BOOTIntArray","spesh":0,"jit":0,"count":2},{"id":35940936,"type":"BOOTInt","spesh":0,"jit":0,"count":4}]},{"name":"add_to_cache","file":"src/gen/m-BOOTSTRAP.nqp","line":2158,"id":61717728,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":2,"jit":0,"count":2},{"id":35942160,"type":"NQPArray","spesh":2,"jit":0,"count":2},{"id":35941032,"type":"BOOTHash","spesh":1,"jit":0,"count":1}]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":8755,"id":59575536,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1545,"id":61714688,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199512,"type":"Block","spesh":0,"jit":0,"count":1},{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1}]},{"name":"hyper","file":"src/gen/m-CORE.setting","line":21446,"id":59030160,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":4646,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":57,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1919,"id":61717424,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":245,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":21,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1623,"id":61716512,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":221,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":115,"callees":[{"name":"is_narrower","file":"src/gen/m-BOOTSTRAP.nqp","line":1651,"id":61716816,"entries":20,"spesh_entries":0,"jit_entries":20,"inlined_entries":0,"inclusive_time":106,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":71,"callees":[{"name":"type_check","file":"src/gen/m-Metamodel.nqp","line":2417,"id":61976848,"entries":16,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":35,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":33,"callees":[{"name":"pretending_to_be","file":"src/gen/m-Metamodel.nqp","line":126,"id":61909056,"entries":16,"spesh_entries":0,"jit_entries":16,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":35942184,"type":"NQPArrayIter","spesh":0,"jit":0,"count":16}]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":17},{"id":35942184,"type":"NQPArrayIter","spesh":0,"jit":0,"count":6},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":10},{"id":35941536,"type":"BOOTIntArray","spesh":0,"jit":0,"count":5},{"id":35940936,"type":"BOOTInt","spesh":0,"jit":0,"count":10}]},{"name":"add_to_cache","file":"src/gen/m-BOOTSTRAP.nqp","line":2158,"id":61717728,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":2},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":1}]},{"name":"hyper","file":"src/gen/m-CORE.setting","line":21476,"id":59032896,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":4343,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":45,"callees":[{"name":"flatmap","file":"src/gen/m-CORE.setting","line":21524,"id":59034112,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":4297,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":60,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1919,"id":61717424,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":64,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":17,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1623,"id":61716512,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":46,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":32,"callees":[{"name":"is_narrower","file":"src/gen/m-BOOTSTRAP.nqp","line":1651,"id":61716816,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":13,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"callees":[{"name":"type_check","file":"src/gen/m-Metamodel.nqp","line":2417,"id":61976848,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":5,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"callees":[{"name":"pretending_to_be","file":"src/gen/m-Metamodel.nqp","line":126,"id":61909056,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":35942184,"type":"NQPArrayIter","spesh":0,"jit":0,"count":2}]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":8},{"id":35942184,"type":"NQPArrayIter","spesh":0,"jit":0,"count":3},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":4},{"id":35941536,"type":"BOOTIntArray","spesh":0,"jit":0,"count":2},{"id":35940936,"type":"BOOTInt","spesh":0,"jit":0,"count":4}]},{"name":"add_to_cache","file":"src/gen/m-BOOTSTRAP.nqp","line":2158,"id":61717728,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":2},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":1}]},{"name":"flatmap","file":"src/gen/m-CORE.setting","line":21525,"id":59034416,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":4171,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":112,"callees":[{"name":"flat","file":"src/gen/m-CORE.setting","line":9793,"id":59633296,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":10,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"callees":[{"name":"flattens","file":"src/gen/m-CORE.setting","line":9805,"id":59634208,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":1}]},{"name":"eager","file":"src/gen/m-CORE.setting","line":9834,"id":59636032,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3875,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"callees":[{"name":"gimme","file":"src/gen/m-CORE.setting","line":9860,"id":59637248,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3868,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":32,"callees":[{"name":"infinite","file":"src/gen/m-CORE.setting","line":9396,"id":59619008,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":15,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"callees":[{"name":"infinite","file":"src/gen/m-CORE.setting","line":9882,"id":59638768,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":9,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"callees":[{"name":"infinite","file":"src/gen/m-CORE.setting","line":9396,"id":59619008,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":6,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"infinite","file":"src/gen/m-CORE.setting","line":960,"id":59170912,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]}],"allocations":[]}],"allocations":[]},{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4947,"id":58581760,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9338,"id":59616576,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3819,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":12,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9339,"id":59616880,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3806,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":40,"callees":[{"name":"flattens","file":"src/gen/m-CORE.setting","line":9805,"id":59634208,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5755,"id":58668704,"entries":5,"spesh_entries":5,"jit_entries":0,"inlined_entries":0,"inclusive_time":5,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":9364,"id":59618096,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":3758,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":24,"callees":[{"name":"infinite","file":"src/gen/m-CORE.setting","line":9882,"id":59638768,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":8,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"callees":[{"name":"infinite","file":"src/gen/m-CORE.setting","line":9396,"id":59619008,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":5,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"infinite","file":"src/gen/m-CORE.setting","line":960,"id":59170912,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]}],"allocations":[]},{"name":"iterator","file":"src/gen/m-CORE.setting","line":9884,"id":59639072,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":15,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"callees":[{"name":"Parcel","file":"src/gen/m-CORE.setting","line":9814,"id":59634816,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":8,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":7,"callees":[{"name":"defined","file":"src/gen/m-CORE.setting","line":947,"id":59169392,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":1},{"id":62199728,"type":"Parcel","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":62199800,"type":"ListIter","spesh":0,"jit":0,"count":1}]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9338,"id":59616576,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3704,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":10,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9339,"id":59616880,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3693,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":31,"callees":[{"name":"flattens","file":"src/gen/m-CORE.setting","line":9805,"id":59634208,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5755,"id":58668704,"entries":3,"spesh_entries":3,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":9364,"id":59618096,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":3656,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":14,"callees":[{"name":"infinite","file":"src/gen/m-CORE.setting","line":960,"id":59170912,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"iterator","file":"src/gen/m-CORE.setting","line":9056,"id":59596512,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9454,"id":59621440,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3641,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9455,"id":59621744,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3635,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":203,"callees":[{"name":"count","file":"src/gen/m-CORE.setting","line":3798,"id":59297984,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":6,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"callees":[{"name":"count","file":"src/gen/m-CORE.setting","line":12388,"id":59748208,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5752,"id":58668400,"entries":3,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]},{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":5443,"id":58653504,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":15,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":11,"callees":[{"name":"Bridge","file":"src/gen/m-CORE.setting","line":5522,"id":59418368,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[{"id":62199704,"type":"Num","spesh":0,"jit":0,"count":1}]},{"name":"Bridge","file":"src/gen/m-CORE.setting","line":5904,"id":59439040,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":6253,"id":58692416,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[]},{"name":"phasers","file":"src/gen/m-CORE.setting","line":3850,"id":59301936,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":7,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":7,"allocations":[]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":939,"id":59168176,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":9,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":7,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2846,"id":61723200,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":1,"count":1}]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":8804,"id":59579184,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9338,"id":59616576,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":925,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9339,"id":59616880,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":918,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":34,"callees":[{"name":"flattens","file":"src/gen/m-CORE.setting","line":9452,"id":59621136,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5755,"id":58668704,"entries":5,"spesh_entries":5,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":9364,"id":59618096,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":879,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":50,"callees":[{"name":"iterator","file":"src/gen/m-CORE.setting","line":11219,"id":58445984,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":360,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":30,"callees":[{"name":"pairs","file":"src/gen/m-CORE.setting","line":1710,"id":59234448,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":318,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":28,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2846,"id":61723200,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":1,"count":1}]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1919,"id":61717424,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":94,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":17,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1623,"id":61716512,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":75,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":55,"callees":[{"name":"is_narrower","file":"src/gen/m-BOOTSTRAP.nqp","line":1651,"id":61716816,"entries":6,"spesh_entries":0,"jit_entries":6,"inlined_entries":0,"inclusive_time":19,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":19,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":11},{"id":35942184,"type":"NQPArrayIter","spesh":0,"jit":0,"count":4},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":6},{"id":35941536,"type":"BOOTIntArray","spesh":0,"jit":0,"count":3},{"id":35940936,"type":"BOOTInt","spesh":0,"jit":0,"count":6}]},{"name":"add_to_cache","file":"src/gen/m-BOOTSTRAP.nqp","line":2158,"id":61717728,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":2,"jit":0,"count":2},{"id":35942160,"type":"NQPArray","spesh":2,"jit":0,"count":2},{"id":35941032,"type":"BOOTHash","spesh":1,"jit":0,"count":1}]},{"name":"pairs","file":"src/gen/m-CORE.setting","line":11231,"id":58447504,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":194,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":125,"callees":[{"name":"pairs","file":"src/gen/m-CORE.setting","line":11008,"id":58429264,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":40,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":35,"callees":[{"name":"BUILD","file":"src/gen/m-CORE.setting","line":11015,"id":58431088,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":5,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2},{"id":35941128,"type":"BOOTIter","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2},{"id":68480936,"type":"HashIter","spesh":0,"jit":0,"count":1}]},{"name":"list","file":"src/gen/m-CORE.setting","line":1667,"id":59225936,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":28,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":10,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2846,"id":61723200,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":1,"count":1}]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1919,"id":61717424,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":14,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":14,"callees":[{"name":"add_to_cache","file":"src/gen/m-BOOTSTRAP.nqp","line":2158,"id":61717728,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":2,"jit":0,"count":2},{"id":35942160,"type":"NQPArray","spesh":2,"jit":0,"count":2},{"id":35941032,"type":"BOOTHash","spesh":1,"jit":0,"count":1}]},{"name":"list","file":"src/gen/m-CORE.setting","line":1669,"id":59226544,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":1}]}],"allocations":[]}],"allocations":[]}],"allocations":[]},{"name":"iterator","file":"src/gen/m-CORE.setting","line":9884,"id":59639072,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":12,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"Parcel","file":"src/gen/m-CORE.setting","line":9814,"id":59634816,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":6,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"callees":[{"name":"defined","file":"src/gen/m-CORE.setting","line":947,"id":59169392,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":1},{"id":62199728,"type":"Parcel","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":62199800,"type":"ListIter","spesh":0,"jit":0,"count":1}]}],"allocations":[]},{"name":"infix:<->","file":"src/gen/m-CORE.setting","line":5686,"id":58663232,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9338,"id":59616576,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":465,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":11,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9339,"id":59616880,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":453,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":31,"callees":[{"name":"flattens","file":"src/gen/m-CORE.setting","line":9805,"id":59634208,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5755,"id":58668704,"entries":3,"spesh_entries":3,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":9364,"id":59618096,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":414,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":49,"callees":[{"name":"iterator","file":"src/gen/m-CORE.setting","line":9056,"id":59596512,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"infix:<->","file":"src/gen/m-CORE.setting","line":5686,"id":58663232,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":11024,"id":58431392,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":364,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":203,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":11025,"id":58431696,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":160,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":77,"callees":[{"name":"new","file":"src/gen/m-CORE.setting","line":10912,"id":58419536,"entries":28,"spesh_entries":18,"jit_entries":0,"inlined_entries":0,"inclusive_time":82,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":61,"callees":[{"name":"BUILD","file":"src/gen/m-CORE.setting","line":10913,"id":58419840,"entries":28,"spesh_entries":0,"jit_entries":18,"inlined_entries":0,"inclusive_time":21,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":21,"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":36,"count":56}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":36,"jit":0,"count":56},{"id":62202440,"type":"Pair","spesh":18,"jit":0,"count":28}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":3},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":1},{"id":62199656,"type":"Str","spesh":0,"jit":0,"count":28},{"id":62199728,"type":"Parcel","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":3}]}],"allocations":[{"id":62200040,"type":"IntLexRef","spesh":0,"jit":1,"count":1}]},{"name":"REIFY","file":"src/gen/m-CORE.setting","line":10287,"id":59666432,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":2},{"id":62200040,"type":"IntLexRef","spesh":0,"jit":0,"count":3},{"id":62199728,"type":"Parcel","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":5}]},{"name":"iterator","file":"src/gen/m-CORE.setting","line":9404,"id":59619312,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":62200040,"type":"IntLexRef","spesh":0,"jit":2,"count":2}]},{"name":"REIFY","file":"src/gen/m-CORE.setting","line":9632,"id":59625088,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":2},{"id":62200040,"type":"IntLexRef","spesh":0,"jit":0,"count":5},{"id":62199728,"type":"Parcel","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":3}]},{"name":"infix:</>","file":"src/gen/m-CORE.setting","line":12758,"id":58799120,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":38,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"DIVIDE_NUMBERS","file":"src/gen/m-CORE.setting","line":12625,"id":58793344,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":33,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":23,"callees":[{"name":"infix:<gcd>","file":"src/gen/m-CORE.setting","line":5726,"id":58666272,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199680,"type":"Int","spesh":0,"jit":0,"count":1}]},{"name":"infix:<div>","file":"src/gen/m-CORE.setting","line":5697,"id":58664144,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[{"id":62199680,"type":"Int","spesh":0,"jit":0,"count":2}]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5752,"id":58668400,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2},{"id":65566496,"type":"Rat","spesh":0,"jit":0,"count":1}]}],"allocations":[]},{"name":"floor","file":"src/gen/m-CORE.setting","line":12466,"id":59751856,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":7,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"callees":[{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":5741,"id":58667488,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"infix:<>>","file":"src/gen/m-CORE.setting","line":5766,"id":58669616,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"prefix:<+>","file":"src/gen/m-CORE.setting","line":5050,"id":58595440,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":6,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"callees":[{"name":"Numeric","file":"src/gen/m-CORE.setting","line":8805,"id":59579488,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[]},{"name":"infix:<min>","file":"src/gen/m-CORE.setting","line":2224,"id":58354784,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":12,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"callees":[{"name":"infix:<cmp>","file":"src/gen/m-CORE.setting","line":5867,"id":58680256,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":5,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"callees":[{"name":"ORDER","file":"src/gen/m-CORE.setting","line":5856,"id":58679040,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5752,"id":58668400,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":5741,"id":58667488,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4947,"id":58581760,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":1844,"id":59255120,"entries":28,"spesh_entries":0,"jit_entries":15,"inlined_entries":0,"inclusive_time":2354,"osr":0,"deopt_one":2,"deopt_all":0,"exclusive_time":127,"callees":[{"name":"","file":"/home/x/data/projects/perl6/Inline-Lua/lib/Lua/Raw.pm6","line":175,"id":111098784,"entries":28,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2035,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":184,"callees":[{"name":"key","file":"src/gen/m-CORE.setting","line":10975,"id":58427440,"entries":28,"spesh_entries":0,"jit_entries":20,"inlined_entries":0,"inclusive_time":17,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":17,"allocations":[]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2434,"id":61720160,"entries":28,"spesh_entries":0,"jit_entries":21,"inlined_entries":0,"inclusive_time":73,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":36,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1545,"id":61714688,"entries":28,"spesh_entries":21,"jit_entries":0,"inlined_entries":0,"inclusive_time":36,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":36,"allocations":[{"id":62199632,"type":"Regex","spesh":21,"jit":0,"count":28},{"id":35941080,"type":"BOOTCode","spesh":21,"jit":0,"count":28}]}],"allocations":[]},{"name":"ACCEPTS","file":"src/gen/m-CORE.setting","line":15620,"id":59971344,"entries":28,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1760,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":267,"callees":[{"name":"!cursor_init","file":"gen/moar/stage2/QRegex.nqp","line":1063,"id":37837040,"entries":28,"spesh_entries":0,"jit_entries":21,"inlined_entries":0,"inclusive_time":232,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":156,"callees":[{"name":"CREATE","file":"src/gen/m-CORE.setting","line":962,"id":59171216,"entries":28,"spesh_entries":0,"jit_entries":21,"inlined_entries":0,"inclusive_time":8,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"allocations":[{"id":62201504,"type":"Cursor","spesh":0,"jit":21,"count":28}]},{"name":"Num","file":"src/gen/m-CORE.setting","line":5507,"id":59417152,"entries":28,"spesh_entries":0,"jit_entries":21,"inlined_entries":0,"inclusive_time":20,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":20,"allocations":[{"id":62199704,"type":"Num","spesh":0,"jit":21,"count":28}]},{"name":"!cursor_start_cur","file":"gen/moar/stage2/QRegex.nqp","line":1148,"id":37837952,"entries":28,"spesh_entries":21,"jit_entries":0,"inlined_entries":0,"inclusive_time":45,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":45,"allocations":[{"id":62201504,"type":"Cursor","spesh":21,"jit":0,"count":28},{"id":35941536,"type":"BOOTIntArray","spesh":21,"jit":0,"count":28}]}],"allocations":[{"id":35943552,"type":"ParseShared","spesh":0,"jit":21,"count":28},{"id":35941584,"type":"BOOTStrArray","spesh":0,"jit":21,"count":28},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":21,"count":28}]},{"name":"","file":"","line":-1,"id":111099088,"entries":28,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":309,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":238,"callees":[{"name":"!cursor_start","file":"gen/moar/stage2/QRegex.nqp","line":1125,"id":37837648,"entries":28,"spesh_entries":0,"jit_entries":21,"inlined_entries":0,"inclusive_time":31,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":31,"allocations":[{"id":62201504,"type":"Cursor","spesh":0,"jit":21,"count":28},{"id":35941536,"type":"BOOTIntArray","spesh":0,"jit":21,"count":28}]},{"name":"!shared","file":"gen/moar/stage2/QRegex.nqp","line":1252,"id":37841600,"entries":28,"spesh_entries":0,"jit_entries":21,"inlined_entries":0,"inclusive_time":7,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":7,"allocations":[]},{"name":"!cursor_pass","file":"gen/moar/stage2/QRegex.nqp","line":1195,"id":37839472,"entries":26,"spesh_entries":0,"jit_entries":18,"inlined_entries":0,"inclusive_time":27,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":27,"allocations":[]},{"name":"!cursor_fail","file":"gen/moar/stage2/QRegex.nqp","line":1206,"id":37839776,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":5,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"allocations":[]}],"allocations":[{"id":62199920,"type":"Hash","spesh":0,"jit":0,"count":28}]},{"name":"MATCH_SAVE","file":"src/gen/m-CORE.setting","line":15413,"id":59961616,"entries":28,"spesh_entries":0,"jit_entries":21,"inlined_entries":0,"inclusive_time":950,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":166,"callees":[{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5752,"id":58668400,"entries":28,"spesh_entries":0,"jit_entries":24,"inlined_entries":21,"inclusive_time":12,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":12,"allocations":[]},{"name":"MATCH","file":"src/gen/m-CORE.setting","line":15311,"id":59956144,"entries":26,"spesh_entries":0,"jit_entries":18,"inlined_entries":0,"inclusive_time":771,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":271,"callees":[{"name":"orig","file":"gen/moar/stage2/QRegex.nqp","line":993,"id":37835216,"entries":26,"spesh_entries":0,"jit_entries":18,"inlined_entries":0,"inclusive_time":10,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":10,"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":15324,"id":59956752,"entries":26,"spesh_entries":0,"jit_entries":18,"inlined_entries":0,"inclusive_time":489,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":263,"callees":[{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4947,"id":58581760,"entries":78,"spesh_entries":0,"jit_entries":71,"inlined_entries":54,"inclusive_time":23,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":23,"allocations":[]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2487,"id":61721376,"entries":26,"spesh_entries":0,"jit_entries":18,"inlined_entries":0,"inclusive_time":6,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":15330,"id":59957360,"entries":26,"spesh_entries":0,"jit_entries":18,"inlined_entries":0,"inclusive_time":196,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":87,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":15332,"id":59957664,"entries":26,"spesh_entries":0,"jit_entries":18,"inlined_entries":0,"inclusive_time":109,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":92,"callees":[{"name":"infix:<>=>","file":"src/gen/m-CORE.setting","line":5773,"id":58670224,"entries":26,"spesh_entries":0,"jit_entries":18,"inlined_entries":0,"inclusive_time":16,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":16,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":18,"count":26}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":18,"count":26},{"id":35941128,"type":"BOOTIter","spesh":0,"jit":18,"count":26}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":36,"count":52},{"id":62200016,"type":"Scalar","spesh":0,"jit":18,"count":26}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":18,"count":26},{"id":68480552,"type":"Match","spesh":0,"jit":18,"count":26},{"id":62200016,"type":"Scalar","spesh":0,"jit":36,"count":52},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":18,"count":26}]}],"allocations":[]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":28}]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":939,"id":59168176,"entries":26,"spesh_entries":24,"jit_entries":0,"inlined_entries":0,"inclusive_time":160,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":129,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2846,"id":61723200,"entries":26,"spesh_entries":0,"jit_entries":26,"inlined_entries":0,"inclusive_time":14,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":14,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":26,"count":26}]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":15224,"id":59949456,"entries":26,"spesh_entries":0,"jit_entries":18,"inlined_entries":0,"inclusive_time":16,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":16,"allocations":[]}],"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":690,"id":58306752,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":31,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":695,"id":58307360,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":22,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":11,"callees":[{"name":"RETURN-PARCEL","file":"src/gen/m-CORE.setting","line":627,"id":58302496,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"THROW","file":"src/gen/m-CORE.setting","line":619,"id":58302192,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":9,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":7,"callees":[{"name":"","file":"/home/x/.rakudobrew/moar-nom/install/languages/perl6/runtime/CORE.setting.moarvm","line":-1,"id":59623872,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]}],"allocations":[]}],"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":0,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":2}]}],"allocations":[]},{"name":"find_method","file":"src/gen/m-Metamodel.nqp","line":1023,"id":61937328,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":34,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":24,"callees":[{"name":"submethod_table","file":"src/gen/m-Metamodel.nqp","line":487,"id":61922736,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]},{"name":"mro","file":"src/gen/m-Metamodel.nqp","line":991,"id":61936416,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[]},{"name":"method_table","file":"src/gen/m-Metamodel.nqp","line":3075,"id":61994784,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":1}]},{"name":"method_table","file":"src/gen/m-Metamodel.nqp","line":482,"id":61922432,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":1},{"id":35942184,"type":"NQPArrayIter","spesh":0,"jit":0,"count":1}]},{"name":"fire_phasers","file":"src/gen/m-CORE.setting","line":3843,"id":59301328,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":9,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"callees":[{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4947,"id":58581760,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":5},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":3},{"id":62200040,"type":"IntLexRef","spesh":0,"jit":0,"count":32},{"id":62199680,"type":"Int","spesh":0,"jit":0,"count":1},{"id":62199728,"type":"Parcel","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":3}]}],"allocations":[]},{"name":"REIFY","file":"src/gen/m-CORE.setting","line":10287,"id":59666432,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":2},{"id":62200040,"type":"IntLexRef","spesh":0,"jit":0,"count":3},{"id":62199728,"type":"Parcel","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":5}]},{"name":"infinite","file":"src/gen/m-CORE.setting","line":9396,"id":59619008,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":5,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"infinite","file":"src/gen/m-CORE.setting","line":960,"id":59170912,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"iterator","file":"src/gen/m-CORE.setting","line":9404,"id":59619312,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"REIFY","file":"src/gen/m-CORE.setting","line":10287,"id":59666432,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":2},{"id":62200040,"type":"IntLexRef","spesh":0,"jit":0,"count":5},{"id":62199728,"type":"Parcel","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":3}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":3},{"id":62199680,"type":"Int","spesh":0,"jit":0,"count":1}]}],"allocations":[]},{"name":"infix:<->","file":"src/gen/m-CORE.setting","line":5197,"id":58628880,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":96,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":24,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1919,"id":61717424,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":69,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":66,"callees":[{"name":"add_to_cache","file":"src/gen/m-BOOTSTRAP.nqp","line":2158,"id":61717728,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":2},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":1}]},{"name":"infix:<->","file":"src/gen/m-CORE.setting","line":5683,"id":58662928,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[{"id":62199680,"type":"Int","spesh":0,"jit":0,"count":1}]}],"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":1398,"id":59210432,"entries":26,"spesh_entries":0,"jit_entries":9,"inlined_entries":0,"inclusive_time":75,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":61,"callees":[{"name":"Stringy","file":"src/gen/m-CORE.setting","line":6921,"id":59491024,"entries":26,"spesh_entries":0,"jit_entries":20,"inlined_entries":9,"inclusive_time":5,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"allocations":[]},{"name":"value","file":"src/gen/m-CORE.setting","line":10976,"id":58427744,"entries":26,"spesh_entries":0,"jit_entries":20,"inlined_entries":0,"inclusive_time":8,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"allocations":[]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1}]},{"name":"infix:<->","file":"src/gen/m-CORE.setting","line":5683,"id":58662928,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199680,"type":"Int","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":1},{"id":62199728,"type":"Parcel","spesh":0,"jit":0,"count":1}]}],"allocations":[]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1}]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2},{"id":62199944,"type":"Capture","spesh":0,"jit":0,"count":1}]},{"name":"map","file":"src/gen/m-CORE.setting","line":1787,"id":59246608,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":125,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":14,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2846,"id":61723200,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":1,"count":1}]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1919,"id":61717424,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":78,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":24,"callees":[{"name":"is_bindable","file":"src/gen/m-BOOTSTRAP.nqp","line":884,"id":61699184,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":53,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":7,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":890,"id":61699488,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":46,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"callees":[{"name":"bind","file":"src/gen/m-BOOTSTRAP.nqp","line":569,"id":61697360,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":41,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":21,"callees":[{"name":"bind_one_param","file":"src/gen/m-BOOTSTRAP.nqp","line":161,"id":61696144,"entries":4,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":19,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":19,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":4},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2}]},{"name":"handle_optional","file":"src/gen/m-BOOTSTRAP.nqp","line":534,"id":61697056,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":62199920,"type":"Hash","spesh":0,"jit":0,"count":1}]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":2,"jit":0,"count":2},{"id":35942160,"type":"NQPArray","spesh":2,"jit":0,"count":2},{"id":35941032,"type":"BOOTHash","spesh":1,"jit":0,"count":1},{"id":35941224,"type":"CallCapture","spesh":1,"jit":0,"count":1}]},{"name":"map","file":"src/gen/m-CORE.setting","line":1789,"id":59247216,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":31,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":12,"callees":[{"name":"new","file":"src/gen/m-CORE.setting","line":9435,"id":59620528,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":16,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":9,"callees":[{"name":"BUILD","file":"src/gen/m-CORE.setting","line":9441,"id":59620832,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":6,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":5}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":4},{"id":65564936,"type":"MapIter","spesh":0,"jit":0,"count":1},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":1},{"id":62199800,"type":"ListIter","spesh":0,"jit":0,"count":1}]},{"name":"list","file":"src/gen/m-CORE.setting","line":1669,"id":59226544,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2}]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1}]},{"name":"STORE","file":"src/gen/m-CORE.setting","line":11248,"id":58448720,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":71946,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":166,"callees":[{"name":"infix:<,>","file":"src/gen/m-CORE.setting","line":9029,"id":58758384,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":0,"count":1}]},{"name":"flat","file":"src/gen/m-CORE.setting","line":8866,"id":59583744,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":1}]},{"name":"eager","file":"src/gen/m-CORE.setting","line":9834,"id":59636032,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":70485,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"gimme","file":"src/gen/m-CORE.setting","line":9860,"id":59637248,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":70479,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":23,"callees":[{"name":"infinite","file":"src/gen/m-CORE.setting","line":9396,"id":59619008,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":14,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"callees":[{"name":"infinite","file":"src/gen/m-CORE.setting","line":9882,"id":59638768,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":8,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"callees":[{"name":"infinite","file":"src/gen/m-CORE.setting","line":9396,"id":59619008,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"callees":[{"name":"infinite","file":"src/gen/m-CORE.setting","line":960,"id":59170912,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]}],"allocations":[]}],"allocations":[]},{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4947,"id":58581760,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9338,"id":59616576,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":70441,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9339,"id":59616880,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":70435,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":37,"callees":[{"name":"flattens","file":"src/gen/m-CORE.setting","line":9805,"id":59634208,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5755,"id":58668704,"entries":5,"spesh_entries":5,"jit_entries":0,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":9364,"id":59618096,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":70390,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":20,"callees":[{"name":"infinite","file":"src/gen/m-CORE.setting","line":9882,"id":59638768,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"callees":[{"name":"infinite","file":"src/gen/m-CORE.setting","line":9396,"id":59619008,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"callees":[{"name":"infinite","file":"src/gen/m-CORE.setting","line":960,"id":59170912,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]}],"allocations":[]},{"name":"iterator","file":"src/gen/m-CORE.setting","line":9884,"id":59639072,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":12,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"Parcel","file":"src/gen/m-CORE.setting","line":9814,"id":59634816,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":6,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"callees":[{"name":"defined","file":"src/gen/m-CORE.setting","line":947,"id":59169392,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":1},{"id":62199728,"type":"Parcel","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":62199800,"type":"ListIter","spesh":0,"jit":0,"count":1}]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9338,"id":59616576,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":70351,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9339,"id":59616880,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":70342,"osr":0,"deopt_one":1,"deopt_all":0,"exclusive_time":28,"callees":[{"name":"flattens","file":"src/gen/m-CORE.setting","line":9805,"id":59634208,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5755,"id":58668704,"entries":3,"spesh_entries":3,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":9364,"id":59618096,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":70309,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":11,"callees":[{"name":"infinite","file":"src/gen/m-CORE.setting","line":960,"id":59170912,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"iterator","file":"src/gen/m-CORE.setting","line":9056,"id":59596512,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9454,"id":59621440,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":70296,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9455,"id":59621744,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":70291,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":299,"callees":[{"name":"count","file":"src/gen/m-CORE.setting","line":3798,"id":59297984,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":6,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"callees":[{"name":"count","file":"src/gen/m-CORE.setting","line":12388,"id":59748208,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5752,"id":58668400,"entries":3,"spesh_entries":0,"jit_entries":3,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":5443,"id":58653504,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":15,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":11,"callees":[{"name":"Bridge","file":"src/gen/m-CORE.setting","line":5522,"id":59418368,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[{"id":62199704,"type":"Num","spesh":0,"jit":0,"count":1}]},{"name":"Bridge","file":"src/gen/m-CORE.setting","line":5904,"id":59439040,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":6253,"id":58692416,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[]},{"name":"phasers","file":"src/gen/m-CORE.setting","line":3850,"id":59301936,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":5,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"allocations":[]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":939,"id":59168176,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":7,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2846,"id":61723200,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":1,"count":1}]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":8804,"id":59579184,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9338,"id":59616576,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":32,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9339,"id":59616880,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":28,"osr":0,"deopt_one":1,"deopt_all":0,"exclusive_time":21,"callees":[{"name":"flattens","file":"src/gen/m-CORE.setting","line":9452,"id":59621136,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5755,"id":58668704,"entries":3,"spesh_entries":3,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":9364,"id":59618096,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]},{"name":"REIFY","file":"src/gen/m-CORE.setting","line":9632,"id":59625088,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":1,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":2,"count":2},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":2,"count":2},{"id":62200040,"type":"IntLexRef","spesh":0,"jit":3,"count":3},{"id":62199728,"type":"Parcel","spesh":0,"jit":1,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":3}]},{"name":"infix:</>","file":"src/gen/m-CORE.setting","line":12758,"id":58799120,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":36,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"DIVIDE_NUMBERS","file":"src/gen/m-CORE.setting","line":12625,"id":58793344,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":30,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":21,"callees":[{"name":"infix:<gcd>","file":"src/gen/m-CORE.setting","line":5726,"id":58666272,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199680,"type":"Int","spesh":0,"jit":0,"count":1}]},{"name":"infix:<div>","file":"src/gen/m-CORE.setting","line":5697,"id":58664144,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[{"id":62199680,"type":"Int","spesh":0,"jit":0,"count":2}]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5752,"id":58668400,"entries":2,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2},{"id":65566496,"type":"Rat","spesh":0,"jit":0,"count":1}]}],"allocations":[]},{"name":"floor","file":"src/gen/m-CORE.setting","line":12466,"id":59751856,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":6,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"callees":[{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":5741,"id":58667488,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"infix:<>>","file":"src/gen/m-CORE.setting","line":5766,"id":58669616,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"prefix:<+>","file":"src/gen/m-CORE.setting","line":5050,"id":58595440,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":6,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"callees":[{"name":"Numeric","file":"src/gen/m-CORE.setting","line":8805,"id":59579488,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[]},{"name":"infix:<min>","file":"src/gen/m-CORE.setting","line":2224,"id":58354784,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":12,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"callees":[{"name":"infix:<cmp>","file":"src/gen/m-CORE.setting","line":5867,"id":58680256,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":5,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"callees":[{"name":"ORDER","file":"src/gen/m-CORE.setting","line":5856,"id":58679040,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5752,"id":58668400,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[]},{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":5741,"id":58667488,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4947,"id":58581760,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"","file":"/home/x/data/projects/perl6/Inline-Lua/lib/Lua/Raw.pm6","line":175,"id":102295136,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":69850,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":657,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1521,"id":61713776,"entries":26,"spesh_entries":10,"jit_entries":0,"inlined_entries":0,"inclusive_time":23,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":23,"allocations":[]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2434,"id":61720160,"entries":26,"spesh_entries":0,"jit_entries":18,"inlined_entries":0,"inclusive_time":144,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":84,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1545,"id":61714688,"entries":26,"spesh_entries":18,"jit_entries":0,"inlined_entries":0,"inclusive_time":59,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":59,"allocations":[{"id":62199560,"type":"Sub","spesh":18,"jit":0,"count":26},{"id":35941080,"type":"BOOTCode","spesh":18,"jit":0,"count":26}]}],"allocations":[]},{"name":"<anon>","file":"src/gen/m-CORE.setting","line":3918,"id":59306192,"entries":26,"spesh_entries":0,"jit_entries":18,"inlined_entries":0,"inclusive_time":66,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":66,"allocations":[]},{"name":"trait_mod:<is>","file":"src/gen/m-CORE.setting","line":60,"id":58252032,"entries":26,"spesh_entries":0,"jit_entries":12,"inlined_entries":0,"inclusive_time":68550,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":218,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1919,"id":61717424,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":5450,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4459,"callees":[{"name":"is_bindable","file":"src/gen/m-BOOTSTRAP.nqp","line":884,"id":61699184,"entries":26,"spesh_entries":22,"jit_entries":0,"inlined_entries":0,"inclusive_time":991,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":182,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":890,"id":61699488,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":809,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":103,"callees":[{"name":"bind","file":"src/gen/m-BOOTSTRAP.nqp","line":569,"id":61697360,"entries":26,"spesh_entries":22,"jit_entries":0,"inlined_entries":0,"inclusive_time":705,"osr":0,"deopt_one":22,"deopt_all":0,"exclusive_time":409,"callees":[{"name":"bind_one_param","file":"src/gen/m-BOOTSTRAP.nqp","line":161,"id":61696144,"entries":52,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":296,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":296,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":52},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":52}]}],"allocations":[]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":22,"jit":0,"count":26}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":52},{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":52},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":26},{"id":35941224,"type":"CallCapture","spesh":0,"jit":0,"count":26}]},{"name":"trait_mod:<is>","file":"lib/NativeCall.pm","line":366,"id":99633344,"entries":26,"spesh_entries":0,"jit_entries":6,"inlined_entries":0,"inclusive_time":62881,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":610,"callees":[{"name":"infix:<===>","file":"src/gen/m-CORE.setting","line":2193,"id":58347488,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":100,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":19,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1919,"id":61717424,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":44,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":42,"callees":[{"name":"add_to_cache","file":"src/gen/m-BOOTSTRAP.nqp","line":2158,"id":61717728,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":2},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":1}]},{"name":"infix:<===>","file":"src/gen/m-CORE.setting","line":2195,"id":58348096,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":35,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":12,"callees":[{"name":"WHICH","file":"src/gen/m-CORE.setting","line":6903,"id":59489808,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":12,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"callees":[{"name":"name","file":"src/gen/m-Metamodel.nqp","line":69,"id":61904800,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]}],"allocations":[{"id":62199968,"type":"ObjAt","spesh":0,"jit":0,"count":1}]},{"name":"WHICH","file":"src/gen/m-CORE.setting","line":907,"id":59166048,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":11,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":10,"callees":[{"name":"name","file":"src/gen/m-Metamodel.nqp","line":69,"id":61904800,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":62199968,"type":"ObjAt","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2}]}],"allocations":[]},{"name":"parameterize","file":"src/gen/m-Metamodel.nqp","line":2346,"id":61973808,"entries":26,"spesh_entries":11,"jit_entries":0,"inlined_entries":0,"inclusive_time":1685,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":313,"callees":[{"name":"new_type","file":"src/gen/m-Metamodel.nqp","line":1973,"id":61963168,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1305,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":527,"callees":[{"name":"name","file":"src/gen/m-Metamodel.nqp","line":69,"id":61904800,"entries":78,"spesh_entries":0,"jit_entries":36,"inlined_entries":0,"inclusive_time":68,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":68,"allocations":[]},{"name":"new","file":"src/gen/m-Metamodel.nqp","line":1969,"id":61962864,"entries":26,"spesh_entries":12,"jit_entries":0,"inlined_entries":0,"inclusive_time":709,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":185,"callees":[{"name":"BUILDALL","file":"gen/moar/stage2/NQPCORE.setting","line":503,"id":36672272,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":523,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":508,"callees":[{"name":"BUILDALLPLAN","file":"gen/moar/stage2/nqpmo.nqp","line":1162,"id":36839360,"entries":26,"spesh_entries":0,"jit_entries":18,"inlined_entries":0,"inclusive_time":15,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":15,"allocations":[]}],"allocations":[{"id":35940960,"type":"BOOTNum","spesh":0,"jit":0,"count":182}]}],"allocations":[{"id":45896736,"type":"Perl6::Metamodel::CurriedRoleHOW","spesh":12,"jit":0,"count":26}]}],"allocations":[{"id":35941584,"type":"BOOTStrArray","spesh":0,"jit":0,"count":26},{"id":35942184,"type":"NQPArrayIter","spesh":0,"jit":0,"count":26},{"id":35940984,"type":"BOOTStr","spesh":0,"jit":0,"count":26}]},{"name":"pun_repr","file":"src/gen/m-Metamodel.nqp","line":1579,"id":61952528,"entries":26,"spesh_entries":0,"jit_entries":11,"inlined_entries":0,"inclusive_time":30,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":30,"allocations":[]},{"name":"set_pun_repr","file":"src/gen/m-Metamodel.nqp","line":1575,"id":61952224,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":36,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":36,"allocations":[]}],"allocations":[]},{"name":"infix:<does>","file":"src/gen/m-CORE.setting","line":20863,"id":58972704,"entries":26,"spesh_entries":10,"jit_entries":0,"inlined_entries":0,"inclusive_time":59729,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":257,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1919,"id":61717424,"entries":26,"spesh_entries":21,"jit_entries":0,"inlined_entries":0,"inclusive_time":1264,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":939,"callees":[{"name":"type_check","file":"src/gen/m-Metamodel.nqp","line":2031,"id":61965600,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":275,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":121,"callees":[{"name":"type_check","file":"src/gen/m-Metamodel.nqp","line":2417,"id":61976848,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":153,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":145,"callees":[{"name":"pretending_to_be","file":"src/gen/m-Metamodel.nqp","line":126,"id":61909056,"entries":26,"spesh_entries":0,"jit_entries":26,"inlined_entries":0,"inclusive_time":8,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"allocations":[]}],"allocations":[{"id":35942184,"type":"NQPArrayIter","spesh":0,"jit":0,"count":52}]}],"allocations":[]},{"name":"add_to_cache","file":"src/gen/m-BOOTSTRAP.nqp","line":2158,"id":61717728,"entries":26,"spesh_entries":26,"jit_entries":0,"inlined_entries":0,"inclusive_time":49,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":49,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":42,"jit":0,"count":52},{"id":35942160,"type":"NQPArray","spesh":63,"jit":0,"count":78},{"id":35941032,"type":"BOOTHash","spesh":42,"jit":0,"count":52}]},{"name":"infix:<does>","file":"src/gen/m-CORE.setting","line":20864,"id":58973008,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":58207,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":624,"callees":[{"name":"archetypes","file":"src/gen/m-Metamodel.nqp","line":1953,"id":61962560,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":327,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":296,"callees":[{"name":"archetypes","file":"src/gen/m-Metamodel.nqp","line":2646,"id":61981408,"entries":52,"spesh_entries":0,"jit_entries":50,"inlined_entries":0,"inclusive_time":10,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":10,"allocations":[]},{"name":"generic","file":"src/gen/m-Metamodel.nqp","line":57,"id":61902976,"entries":52,"spesh_entries":0,"jit_entries":50,"inlined_entries":0,"inclusive_time":20,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":20,"allocations":[]}],"allocations":[{"id":35942184,"type":"NQPArrayIter","spesh":0,"jit":0,"count":26},{"id":35942208,"type":"NQPHashIter","spesh":0,"jit":0,"count":26}]},{"name":"composable","file":"src/gen/m-Metamodel.nqp","line":55,"id":61902368,"entries":26,"spesh_entries":0,"jit_entries":14,"inlined_entries":0,"inclusive_time":14,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":14,"allocations":[]},{"name":"mixin","file":"src/gen/m-Metamodel.nqp","line":1194,"id":61944016,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":52426,"osr":0,"deopt_one":0,"deopt_all":26,"exclusive_time":625,"callees":[{"name":"is_composed","file":"src/gen/m-Metamodel.nqp","line":2829,"id":61985056,"entries":26,"spesh_entries":0,"jit_entries":18,"inlined_entries":0,"inclusive_time":8,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"allocations":[]},{"name":"","file":"src/gen/m-Metamodel.nqp","line":1172,"id":61941584,"entries":26,"spesh_entries":0,"jit_entries":11,"inlined_entries":0,"inclusive_time":51793,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":127,"callees":[{"name":"generate_mixin","file":"src/gen/m-Metamodel.nqp","line":1234,"id":61944320,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":51666,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1313,"callees":[{"name":"flush_cache","file":"src/gen/m-Metamodel.nqp","line":1188,"id":61943408,"entries":26,"spesh_entries":0,"jit_entries":11,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[]},{"name":"name","file":"src/gen/m-Metamodel.nqp","line":2011,"id":61964080,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":9,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":9,"allocations":[]},{"name":"push","file":"gen/moar/stage2/NQPCORE.setting","line":580,"id":36674400,"entries":26,"spesh_entries":0,"jit_entries":18,"inlined_entries":0,"inclusive_time":16,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":16,"allocations":[]},{"name":"name","file":"src/gen/m-Metamodel.nqp","line":69,"id":61904800,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":17,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":17,"allocations":[]},{"name":"new_type","file":"src/gen/m-Metamodel.nqp","line":2654,"id":61982016,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2585,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":420,"callees":[{"name":"new","file":"src/gen/m-Metamodel.nqp","line":2650,"id":61981712,"entries":26,"spesh_entries":0,"jit_entries":16,"inlined_entries":0,"inclusive_time":1497,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":50,"callees":[{"name":"BUILDALL","file":"gen/moar/stage2/NQPCORE.setting","line":503,"id":36672272,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1447,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1436,"callees":[{"name":"BUILDALLPLAN","file":"gen/moar/stage2/nqpmo.nqp","line":1162,"id":36839360,"entries":26,"spesh_entries":0,"jit_entries":18,"inlined_entries":0,"inclusive_time":10,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":10,"allocations":[]}],"allocations":[{"id":35940936,"type":"BOOTInt","spesh":0,"jit":0,"count":26},{"id":35940960,"type":"BOOTNum","spesh":0,"jit":0,"count":1170},{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":416},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":156}]}],"allocations":[{"id":45896808,"type":"Perl6::Metamodel::ClassHOW","spesh":0,"jit":16,"count":26}]},{"name":"add_stash","file":"src/gen/m-Metamodel.nqp","line":94,"id":61906624,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":120,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":120,"allocations":[{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":26},{"id":62199992,"type":"Stash","spesh":0,"jit":0,"count":26}]},{"name":"set_name","file":"src/gen/m-Metamodel.nqp","line":66,"id":61904496,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":16,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":16,"allocations":[]},{"name":"setup_mixin_cache","file":"src/gen/m-Metamodel.nqp","line":1190,"id":61943712,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":528,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":140,"callees":[{"name":"new_type","file":"src/gen/m-Metamodel.nqp","line":1169,"id":61941280,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":388,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":111,"callees":[{"name":"new","file":"gen/moar/stage2/NQPCORE.setting","line":559,"id":36672576,"entries":26,"spesh_entries":0,"jit_entries":18,"inlined_entries":0,"inclusive_time":276,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":72,"callees":[{"name":"bless","file":"gen/moar/stage2/NQPCORE.setting","line":497,"id":36671968,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":203,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":111,"callees":[{"name":"CREATE","file":"gen/moar/stage2/NQPCORE.setting","line":493,"id":36671664,"entries":26,"spesh_entries":0,"jit_entries":18,"inlined_entries":0,"inclusive_time":9,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":9,"allocations":[{"id":45897192,"type":"MixinCacheHOW","spesh":0,"jit":18,"count":26}]},{"name":"BUILDALL","file":"gen/moar/stage2/NQPCORE.setting","line":503,"id":36672272,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":81,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":72,"callees":[{"name":"BUILDALLPLAN","file":"gen/moar/stage2/nqpmo.nqp","line":1162,"id":36839360,"entries":26,"spesh_entries":0,"jit_entries":18,"inlined_entries":0,"inclusive_time":8,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"allocations":[]}],"allocations":[]}],"allocations":[]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":26}]}],"allocations":[]}],"allocations":[]},{"name":"set_is_mixin","file":"src/gen/m-Metamodel.nqp","line":1184,"id":61942192,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":24,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":24,"allocations":[]},{"name":"add_parent","file":"src/gen/m-Metamodel.nqp","line":737,"id":61931552,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":286,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":253,"callees":[{"name":"is_composed","file":"src/gen/m-Metamodel.nqp","line":2829,"id":61985056,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":13,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":13,"allocations":[]},{"name":"repr_composed","file":"src/gen/m-Metamodel.nqp","line":1444,"id":61946752,"entries":26,"spesh_entries":0,"jit_entries":16,"inlined_entries":0,"inclusive_time":20,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":20,"allocations":[]}],"allocations":[{"id":35942184,"type":"NQPArrayIter","spesh":0,"jit":0,"count":26}]},{"name":"add_role","file":"src/gen/m-Metamodel.nqp","line":710,"id":61930336,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":51,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":51,"allocations":[]},{"name":"compose","file":"src/gen/m-Metamodel.nqp","line":2693,"id":61982928,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":47122,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2943,"callees":[{"name":"roles_to_compose","file":"src/gen/m-Metamodel.nqp","line":714,"id":61930640,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":17,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":17,"allocations":[]},{"name":"pop","file":"gen/moar/stage2/NQPCORE.setting","line":581,"id":36674704,"entries":26,"spesh_entries":0,"jit_entries":18,"inlined_entries":0,"inclusive_time":15,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":15,"allocations":[]},{"name":"specialize","file":"src/gen/m-Metamodel.nqp","line":2006,"id":61963776,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":11901,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":124,"callees":[{"name":"specialize","file":"src/gen/m-Metamodel.nqp","line":2358,"id":61974416,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":11777,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":425,"callees":[{"name":"","file":"src/gen/m-Metamodel.nqp","line":2366,"id":61974720,"entries":26,"spesh_entries":0,"jit_entries":15,"inlined_entries":0,"inclusive_time":869,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":65,"callees":[{"name":"try_select","file":"src/gen/m-Metamodel.nqp","line":2363,"id":61975024,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":803,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":212,"callees":[{"name":"get_selector","file":"src/gen/m-Metamodel.nqp","line":2395,"id":61975936,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":86,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":75,"callees":[{"name":"body_block","file":"src/gen/m-Metamodel.nqp","line":2138,"id":61968032,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1591,"id":61715296,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":9,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"callees":[{"name":"push","file":"gen/moar/stage2/NQPCORE.setting","line":580,"id":36674400,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]}],"allocations":[]}],"allocations":[{"id":35942184,"type":"NQPArrayIter","spesh":0,"jit":0,"count":1},{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":1}]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1919,"id":61717424,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":504,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":441,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1623,"id":61716512,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":27,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":27,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":5},{"id":35942184,"type":"NQPArrayIter","spesh":0,"jit":0,"count":2},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":2},{"id":35941536,"type":"BOOTIntArray","spesh":0,"jit":0,"count":1},{"id":35940936,"type":"BOOTInt","spesh":0,"jit":0,"count":2}]},{"name":"add_to_cache","file":"src/gen/m-BOOTSTRAP.nqp","line":2158,"id":61717728,"entries":26,"spesh_entries":26,"jit_entries":0,"inlined_entries":0,"inclusive_time":35,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":35,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":52},{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":52},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":26}]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":30,"count":52}]},{"name":"body_block","file":"src/gen/m-Metamodel.nqp","line":2138,"id":61968032,"entries":26,"spesh_entries":0,"jit_entries":19,"inlined_entries":0,"inclusive_time":8,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"allocations":[]},{"name":"specialize","file":"src/gen/m-Metamodel.nqp","line":2216,"id":61970768,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":10473,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":351,"callees":[{"name":"","file":"lib/NativeCall.pm","line":197,"id":99844416,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2477,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":514,"callees":[{"name":"bind_sig","file":"src/gen/m-BOOTSTRAP.nqp","line":832,"id":61698880,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":890,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":132,"callees":[{"name":"bind","file":"src/gen/m-BOOTSTRAP.nqp","line":569,"id":61697360,"entries":26,"spesh_entries":19,"jit_entries":0,"inlined_entries":0,"inclusive_time":757,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":322,"callees":[{"name":"bind_one_param","file":"src/gen/m-BOOTSTRAP.nqp","line":161,"id":61696144,"entries":78,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":434,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":434,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":78},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":52}]}],"allocations":[]}],"allocations":[{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":26},{"id":35941152,"type":"BOOTContext","spesh":0,"jit":0,"count":26}]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1545,"id":61714688,"entries":26,"spesh_entries":26,"jit_entries":0,"inlined_entries":0,"inclusive_time":45,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":45,"allocations":[{"id":62199512,"type":"Block","spesh":26,"jit":0,"count":26},{"id":35941080,"type":"BOOTCode","spesh":26,"jit":0,"count":26}]},{"name":"add_unresolved","file":"src/Perl6/World.nqp","line":2066,"id":45620992,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1027,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1002,"callees":[{"name":"","file":"/home/x/.rakudobrew/moar-nom/install/languages/nqp/lib/Perl6/World.moarvm","line":-1,"id":45621296,"entries":26,"spesh_entries":9,"jit_entries":0,"inlined_entries":0,"inclusive_time":24,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":24,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":26},{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":26}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":52},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":26}]},{"name":"specialize_with","file":"src/gen/m-Metamodel.nqp","line":2236,"id":61971680,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":7644,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2277,"callees":[{"name":"name","file":"src/gen/m-Metamodel.nqp","line":69,"id":61904800,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":39,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":39,"allocations":[]},{"name":"new_type","file":"src/gen/m-Metamodel.nqp","line":1845,"id":61958912,"entries":26,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":1239,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":212,"callees":[{"name":"new","file":"src/gen/m-Metamodel.nqp","line":1832,"id":61957392,"entries":26,"spesh_entries":17,"jit_entries":0,"inlined_entries":0,"inclusive_time":1007,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":87,"callees":[{"name":"BUILDALL","file":"gen/moar/stage2/NQPCORE.setting","line":503,"id":36672272,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":920,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":908,"callees":[{"name":"BUILDALLPLAN","file":"gen/moar/stage2/nqpmo.nqp","line":1162,"id":36839360,"entries":26,"spesh_entries":0,"jit_entries":18,"inlined_entries":0,"inclusive_time":11,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":11,"allocations":[]}],"allocations":[{"id":35940936,"type":"BOOTInt","spesh":0,"jit":0,"count":26},{"id":35940960,"type":"BOOTNum","spesh":0,"jit":0,"count":572},{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":208},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":130}]}],"allocations":[{"id":45896712,"type":"Perl6::Metamodel::ConcreteRoleHOW","spesh":17,"jit":0,"count":26}]},{"name":"set_name","file":"src/gen/m-Metamodel.nqp","line":66,"id":61904496,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":18,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":18,"allocations":[]}],"allocations":[]},{"name":"attributes","file":"src/gen/m-Metamodel.nqp","line":367,"id":61920000,"entries":26,"spesh_entries":0,"jit_entries":18,"inlined_entries":0,"inclusive_time":202,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":182,"callees":[{"name":"push","file":"gen/moar/stage2/NQPCORE.setting","line":580,"id":36674400,"entries":78,"spesh_entries":0,"jit_entries":75,"inlined_entries":0,"inclusive_time":19,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":19,"allocations":[]}],"allocations":[{"id":35942160,"type":"NQPArray","spesh":0,"jit":18,"count":26},{"id":35942184,"type":"NQPArrayIter","spesh":0,"jit":18,"count":26}]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1171,"id":61707088,"entries":78,"spesh_entries":0,"jit_entries":52,"inlined_entries":0,"inclusive_time":546,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":478,"callees":[{"name":"archetypes","file":"src/gen/m-Metamodel.nqp","line":2908,"id":61987792,"entries":26,"spesh_entries":0,"jit_entries":22,"inlined_entries":0,"inclusive_time":8,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"allocations":[]},{"name":"generic","file":"src/gen/m-Metamodel.nqp","line":57,"id":61902976,"entries":156,"spesh_entries":0,"jit_entries":152,"inlined_entries":104,"inclusive_time":38,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":38,"allocations":[]},{"name":"archetypes","file":"src/gen/m-Metamodel.nqp","line":269,"id":61916048,"entries":78,"spesh_entries":0,"jit_entries":75,"inlined_entries":0,"inclusive_time":12,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":12,"allocations":[]},{"name":"archetypes","file":"src/gen/m-Metamodel.nqp","line":2646,"id":61981408,"entries":52,"spesh_entries":0,"jit_entries":50,"inlined_entries":0,"inclusive_time":9,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":9,"allocations":[]}],"allocations":[]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1181,"id":61707392,"entries":78,"spesh_entries":0,"jit_entries":27,"inlined_entries":0,"inclusive_time":682,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":466,"callees":[{"name":"archetypes","file":"src/gen/m-Metamodel.nqp","line":2908,"id":61987792,"entries":26,"spesh_entries":0,"jit_entries":22,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]},{"name":"generic","file":"src/gen/m-Metamodel.nqp","line":57,"id":61902976,"entries":156,"spesh_entries":0,"jit_entries":154,"inlined_entries":54,"inclusive_time":30,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":30,"allocations":[]},{"name":"archetypes","file":"src/gen/m-Metamodel.nqp","line":269,"id":61916048,"entries":78,"spesh_entries":0,"jit_entries":75,"inlined_entries":0,"inclusive_time":8,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"allocations":[]},{"name":"instantiate_generic","file":"src/gen/m-Metamodel.nqp","line":288,"id":61916960,"entries":78,"spesh_entries":0,"jit_entries":72,"inlined_entries":0,"inclusive_time":167,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":118,"callees":[{"name":"name","file":"src/gen/m-Metamodel.nqp","line":69,"id":61904800,"entries":78,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":48,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":48,"allocations":[]}],"allocations":[]},{"name":"archetypes","file":"src/gen/m-Metamodel.nqp","line":2646,"id":61981408,"entries":52,"spesh_entries":0,"jit_entries":50,"inlined_entries":0,"inclusive_time":6,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"allocations":[]}],"allocations":[{"id":62199416,"type":"Attribute","spesh":0,"jit":27,"count":78}]},{"name":"add_attribute","file":"src/gen/m-Metamodel.nqp","line":315,"id":61918480,"entries":78,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":401,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":392,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1107,"id":61702528,"entries":78,"spesh_entries":0,"jit_entries":75,"inlined_entries":0,"inclusive_time":9,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":9,"allocations":[]}],"allocations":[]},{"name":"method_table","file":"src/gen/m-Metamodel.nqp","line":482,"id":61922432,"entries":26,"spesh_entries":0,"jit_entries":18,"inlined_entries":0,"inclusive_time":13,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":13,"allocations":[]},{"name":"key","file":"gen/moar/stage2/NQPCORE.setting","line":590,"id":36676224,"entries":26,"spesh_entries":0,"jit_entries":25,"inlined_entries":0,"inclusive_time":7,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":7,"allocations":[]},{"name":"value","file":"gen/moar/stage2/NQPCORE.setting","line":591,"id":36676528,"entries":26,"spesh_entries":0,"jit_entries":25,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1507,"id":61713472,"entries":26,"spesh_entries":0,"jit_entries":18,"inlined_entries":0,"inclusive_time":1062,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":142,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2434,"id":61720160,"entries":26,"spesh_entries":0,"jit_entries":18,"inlined_entries":18,"inclusive_time":114,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":64,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1545,"id":61714688,"entries":26,"spesh_entries":18,"jit_entries":0,"inlined_entries":0,"inclusive_time":49,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":49,"allocations":[{"id":62199584,"type":"Method","spesh":18,"jit":0,"count":26},{"id":35941080,"type":"BOOTCode","spesh":18,"jit":0,"count":26}]}],"allocations":[]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1323,"id":61709520,"entries":26,"spesh_entries":18,"jit_entries":0,"inlined_entries":0,"inclusive_time":804,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":346,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1385,"id":61710432,"entries":52,"spesh_entries":0,"jit_entries":44,"inlined_entries":0,"inclusive_time":132,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":113,"callees":[{"name":"archetypes","file":"src/gen/m-Metamodel.nqp","line":269,"id":61916048,"entries":26,"spesh_entries":0,"jit_entries":25,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]},{"name":"generic","file":"src/gen/m-Metamodel.nqp","line":57,"id":61902976,"entries":52,"spesh_entries":0,"jit_entries":52,"inlined_entries":44,"inclusive_time":12,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":12,"allocations":[]},{"name":"archetypes","file":"src/gen/m-Metamodel.nqp","line":2646,"id":61981408,"entries":26,"spesh_entries":0,"jit_entries":25,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]}],"allocations":[]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1392,"id":61710736,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":305,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":237,"callees":[{"name":"archetypes","file":"src/gen/m-Metamodel.nqp","line":269,"id":61916048,"entries":26,"spesh_entries":0,"jit_entries":25,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]},{"name":"generic","file":"src/gen/m-Metamodel.nqp","line":57,"id":61902976,"entries":52,"spesh_entries":0,"jit_entries":52,"inlined_entries":0,"inclusive_time":11,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":11,"allocations":[]},{"name":"instantiate_generic","file":"src/gen/m-Metamodel.nqp","line":288,"id":61916960,"entries":26,"spesh_entries":0,"jit_entries":24,"inlined_entries":0,"inclusive_time":50,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":32,"callees":[{"name":"name","file":"src/gen/m-Metamodel.nqp","line":69,"id":61904800,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":17,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":17,"allocations":[]}],"allocations":[]},{"name":"archetypes","file":"src/gen/m-Metamodel.nqp","line":2646,"id":61981408,"entries":26,"spesh_entries":0,"jit_entries":25,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]}],"allocations":[{"id":35940936,"type":"BOOTInt","spesh":0,"jit":0,"count":26},{"id":62199464,"type":"Parameter","spesh":0,"jit":0,"count":26}]},{"name":"push","file":"gen/moar/stage2/NQPCORE.setting","line":580,"id":36674400,"entries":52,"spesh_entries":0,"jit_entries":44,"inlined_entries":0,"inclusive_time":20,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":20,"allocations":[]}],"allocations":[{"id":35942160,"type":"NQPArray","spesh":18,"jit":0,"count":26},{"id":62199440,"type":"Signature","spesh":18,"jit":0,"count":26},{"id":35942184,"type":"NQPArrayIter","spesh":18,"jit":0,"count":26}]}],"allocations":[]},{"name":"add_method","file":"src/gen/m-Metamodel.nqp","line":425,"id":61921520,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":236,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":211,"callees":[{"name":"name","file":"src/gen/m-Metamodel.nqp","line":69,"id":61904800,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":24,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":24,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":26},{"id":35940984,"type":"BOOTStr","spesh":0,"jit":0,"count":26},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":26}]},{"name":"submethod_table","file":"src/gen/m-Metamodel.nqp","line":487,"id":61922736,"entries":26,"spesh_entries":0,"jit_entries":18,"inlined_entries":0,"inclusive_time":12,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":12,"allocations":[]},{"name":"private_method_table","file":"src/gen/m-Metamodel.nqp","line":547,"id":61925168,"entries":26,"spesh_entries":0,"jit_entries":18,"inlined_entries":0,"inclusive_time":14,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":14,"allocations":[]},{"name":"multi_methods_to_incorporate","file":"src/gen/m-Metamodel.nqp","line":592,"id":61927600,"entries":26,"spesh_entries":0,"jit_entries":18,"inlined_entries":0,"inclusive_time":16,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":16,"allocations":[]},{"name":"roles_to_compose","file":"src/gen/m-Metamodel.nqp","line":714,"id":61930640,"entries":26,"spesh_entries":0,"jit_entries":18,"inlined_entries":0,"inclusive_time":12,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":12,"allocations":[]},{"name":"parents","file":"src/gen/m-Metamodel.nqp","line":767,"id":61931856,"entries":26,"spesh_entries":18,"jit_entries":0,"inlined_entries":0,"inclusive_time":57,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":57,"allocations":[]},{"name":"is_array_type","file":"src/gen/m-Metamodel.nqp","line":1629,"id":61954352,"entries":26,"spesh_entries":0,"jit_entries":18,"inlined_entries":0,"inclusive_time":19,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":19,"allocations":[]},{"name":"compose","file":"src/gen/m-Metamodel.nqp","line":1860,"id":61959520,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":796,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":536,"callees":[{"name":"roles_to_compose","file":"src/gen/m-Metamodel.nqp","line":714,"id":61930640,"entries":52,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":35,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":35,"allocations":[]},{"name":"apply","file":"src/gen/m-Metamodel.nqp","line":1645,"id":61955568,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":93,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":93,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":52},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":104},{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":26}]},{"name":"role_typecheck_list","file":"src/gen/m-Metamodel.nqp","line":2191,"id":61970160,"entries":26,"spesh_entries":0,"jit_entries":17,"inlined_entries":0,"inclusive_time":8,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"allocations":[]},{"name":"publish_type_cache","file":"src/gen/m-Metamodel.nqp","line":1923,"id":61961648,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":121,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":108,"callees":[{"name":"push","file":"gen/moar/stage2/NQPCORE.setting","line":580,"id":36674400,"entries":52,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":13,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":13,"allocations":[]}],"allocations":[{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":26},{"id":35942184,"type":"NQPArrayIter","spesh":0,"jit":0,"count":26}]}],"allocations":[{"id":35942184,"type":"NQPArrayIter","spesh":0,"jit":0,"count":78}]}],"allocations":[{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":26},{"id":35942184,"type":"NQPArrayIter","spesh":0,"jit":0,"count":104},{"id":35942208,"type":"NQPHashIter","spesh":0,"jit":0,"count":78}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":26}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":26},{"id":35942184,"type":"NQPArrayIter","spesh":0,"jit":0,"count":26}]}],"allocations":[]},{"name":"push","file":"gen/moar/stage2/NQPCORE.setting","line":580,"id":36674400,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":9,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":9,"allocations":[]},{"name":"compute_mro","file":"src/gen/m-Metamodel.nqp","line":874,"id":61935808,"entries":52,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2439,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1843,"callees":[{"name":"parents","file":"src/gen/m-Metamodel.nqp","line":767,"id":61931856,"entries":52,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":103,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":103,"allocations":[]},{"name":"mro","file":"src/gen/m-Metamodel.nqp","line":991,"id":61936416,"entries":52,"spesh_entries":0,"jit_entries":46,"inlined_entries":0,"inclusive_time":29,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":29,"allocations":[]},{"name":"unshift","file":"gen/moar/stage2/NQPCORE.setting","line":582,"id":36675008,"entries":52,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":71,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":71,"allocations":[]},{"name":"hidden","file":"src/gen/m-Metamodel.nqp","line":803,"id":61932464,"entries":364,"spesh_entries":0,"jit_entries":132,"inlined_entries":0,"inclusive_time":210,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":210,"allocations":[]},{"name":"hides","file":"src/gen/m-Metamodel.nqp","line":799,"id":61932160,"entries":364,"spesh_entries":0,"jit_entries":132,"inlined_entries":0,"inclusive_time":180,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":180,"allocations":[]}],"allocations":[{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":208},{"id":35942184,"type":"NQPArrayIter","spesh":0,"jit":0,"count":780}]},{"name":"apply","file":"src/gen/m-Metamodel.nqp","line":2501,"id":61980192,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2895,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1047,"callees":[{"name":"collisions","file":"src/gen/m-Metamodel.nqp","line":1883,"id":61960128,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":9,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":9,"allocations":[]},{"name":"method_table","file":"src/gen/m-Metamodel.nqp","line":482,"id":61922432,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":15,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":15,"allocations":[]},{"name":"compose_method_table","file":"src/gen/m-Metamodel.nqp","line":2543,"id":61980496,"entries":52,"spesh_entries":0,"jit_entries":3,"inlined_entries":0,"inclusive_time":792,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":401,"callees":[{"name":"key","file":"gen/moar/stage2/NQPCORE.setting","line":590,"id":36676224,"entries":26,"spesh_entries":0,"jit_entries":25,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[]},{"name":"value","file":"gen/moar/stage2/NQPCORE.setting","line":591,"id":36676528,"entries":52,"spesh_entries":0,"jit_entries":50,"inlined_entries":0,"inclusive_time":6,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"allocations":[]},{"name":"yada","file":"src/gen/m-CORE.setting","line":4297,"id":59329904,"entries":26,"spesh_entries":0,"jit_entries":18,"inlined_entries":0,"inclusive_time":29,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":29,"allocations":[]},{"name":"has_method","file":"src/gen/m-Metamodel.nqp","line":2459,"id":61978976,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":179,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":143,"callees":[{"name":"method_table","file":"src/gen/m-Metamodel.nqp","line":482,"id":61922432,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":21,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":21,"allocations":[]},{"name":"submethod_table","file":"src/gen/m-Metamodel.nqp","line":487,"id":61922736,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":15,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":15,"allocations":[]}],"allocations":[]},{"name":"add_method","file":"src/gen/m-Metamodel.nqp","line":425,"id":61921520,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":170,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":153,"callees":[{"name":"name","file":"src/gen/m-Metamodel.nqp","line":69,"id":61904800,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":17,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":17,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":26},{"id":35940984,"type":"BOOTStr","spesh":0,"jit":0,"count":26},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":26}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":3,"count":52},{"id":35942208,"type":"NQPHashIter","spesh":0,"jit":3,"count":52}]},{"name":"submethod_table","file":"src/gen/m-Metamodel.nqp","line":487,"id":61922736,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":15,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":15,"allocations":[]},{"name":"private_method_table","file":"src/gen/m-Metamodel.nqp","line":547,"id":61925168,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":24,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":24,"allocations":[]},{"name":"multi_methods_to_incorporate","file":"src/gen/m-Metamodel.nqp","line":592,"id":61927600,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":27,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":27,"allocations":[]},{"name":"attributes","file":"src/gen/m-Metamodel.nqp","line":367,"id":61920000,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":155,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":136,"callees":[{"name":"push","file":"gen/moar/stage2/NQPCORE.setting","line":580,"id":36674400,"entries":78,"spesh_entries":0,"jit_entries":75,"inlined_entries":0,"inclusive_time":18,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":18,"allocations":[]}],"allocations":[{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":26},{"id":35942184,"type":"NQPArrayIter","spesh":0,"jit":0,"count":26}]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1107,"id":61702528,"entries":78,"spesh_entries":0,"jit_entries":76,"inlined_entries":0,"inclusive_time":10,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":10,"allocations":[]},{"name":"has_attribute","file":"src/gen/m-Metamodel.nqp","line":2486,"id":61979584,"entries":78,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":462,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":258,"callees":[{"name":"attributes","file":"src/gen/m-Metamodel.nqp","line":367,"id":61920000,"entries":78,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":196,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":177,"callees":[{"name":"push","file":"gen/moar/stage2/NQPCORE.setting","line":580,"id":36674400,"entries":78,"spesh_entries":0,"jit_entries":76,"inlined_entries":0,"inclusive_time":19,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":19,"allocations":[]}],"allocations":[{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":78},{"id":35942184,"type":"NQPArrayIter","spesh":0,"jit":0,"count":78}]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1107,"id":61702528,"entries":78,"spesh_entries":0,"jit_entries":77,"inlined_entries":0,"inclusive_time":8,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"allocations":[]}],"allocations":[{"id":35942184,"type":"NQPArrayIter","spesh":0,"jit":0,"count":78}]},{"name":"add_attribute","file":"src/gen/m-Metamodel.nqp","line":315,"id":61918480,"entries":78,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":244,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":235,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1107,"id":61702528,"entries":78,"spesh_entries":0,"jit_entries":76,"inlined_entries":0,"inclusive_time":8,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"allocations":[]}],"allocations":[]},{"name":"parents","file":"src/gen/m-Metamodel.nqp","line":767,"id":61931856,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":39,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":39,"allocations":[]},{"name":"is_array_type","file":"src/gen/m-Metamodel.nqp","line":1629,"id":61954352,"entries":52,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":50,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":50,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":26},{"id":35942184,"type":"NQPArrayIter","spesh":0,"jit":0,"count":104},{"id":35942208,"type":"NQPHashIter","spesh":0,"jit":0,"count":26}]},{"name":"role_typecheck_list","file":"src/gen/m-Metamodel.nqp","line":1906,"id":61961040,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":8,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"allocations":[]},{"name":"parents","file":"src/gen/m-Metamodel.nqp","line":767,"id":61931856,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":33,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":33,"allocations":[]},{"name":"incorporate_multi_candidates","file":"src/gen/m-Metamodel.nqp","line":598,"id":61927904,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":89,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":89,"allocations":[{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":52},{"id":35940960,"type":"BOOTNum","spesh":0,"jit":0,"count":26},{"id":35942184,"type":"NQPArrayIter","spesh":0,"jit":0,"count":26}]},{"name":"setup_finalization","file":"src/gen/m-Metamodel.nqp","line":390,"id":61920608,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2448,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":444,"callees":[{"name":"mro","file":"src/gen/m-Metamodel.nqp","line":991,"id":61936416,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":25,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":25,"allocations":[]},{"name":"find_method","file":"src/gen/m-Metamodel.nqp","line":1023,"id":61937328,"entries":182,"spesh_entries":54,"jit_entries":0,"inlined_entries":0,"inclusive_time":1979,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1506,"callees":[{"name":"submethod_table","file":"src/gen/m-Metamodel.nqp","line":487,"id":61922736,"entries":182,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":116,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":116,"allocations":[]},{"name":"mro","file":"src/gen/m-Metamodel.nqp","line":991,"id":61936416,"entries":182,"spesh_entries":18,"jit_entries":24,"inlined_entries":18,"inclusive_time":136,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":136,"allocations":[]},{"name":"method_table","file":"src/gen/m-Metamodel.nqp","line":482,"id":61922432,"entries":728,"spesh_entries":0,"jit_entries":328,"inlined_entries":0,"inclusive_time":218,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":218,"allocations":[]}],"allocations":[{"id":35941032,"type":"BOOTHash","spesh":54,"jit":0,"count":182},{"id":35942184,"type":"NQPArrayIter","spesh":54,"jit":0,"count":182}]}],"allocations":[{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":26}]},{"name":"compose_attributes","file":"src/gen/m-Metamodel.nqp","line":326,"id":61918784,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1072,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":513,"callees":[{"name":"method_table","file":"src/gen/m-Metamodel.nqp","line":482,"id":61922432,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":12,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":12,"allocations":[]},{"name":"key","file":"gen/moar/stage2/NQPCORE.setting","line":590,"id":36676224,"entries":26,"spesh_entries":0,"jit_entries":25,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1123,"id":61703744,"entries":78,"spesh_entries":0,"jit_entries":75,"inlined_entries":0,"inclusive_time":17,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":17,"allocations":[]},{"name":"compose","file":"src/gen/m-CORE.setting","line":3883,"id":59303456,"entries":78,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":525,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":440,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1123,"id":61703744,"entries":78,"spesh_entries":0,"jit_entries":75,"inlined_entries":0,"inclusive_time":10,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":10,"allocations":[]},{"name":"apply_handles","file":"src/gen/m-CORE.setting","line":3953,"id":59307408,"entries":78,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":74,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":74,"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":78}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":78},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":78}]}],"allocations":[{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":52},{"id":35942208,"type":"NQPHashIter","spesh":0,"jit":0,"count":26},{"id":35942184,"type":"NQPArrayIter","spesh":0,"jit":0,"count":26}]},{"name":"get_boolification_mode","file":"src/gen/m-Metamodel.nqp","line":164,"id":61911184,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":33,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":33,"allocations":[]},{"name":"mro","file":"src/gen/m-Metamodel.nqp","line":991,"id":61936416,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":23,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":23,"allocations":[]},{"name":"method_table","file":"src/gen/m-Metamodel.nqp","line":482,"id":61922432,"entries":182,"spesh_entries":0,"jit_entries":52,"inlined_entries":0,"inclusive_time":63,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":63,"allocations":[]},{"name":"set_boolification_mode","file":"src/gen/m-Metamodel.nqp","line":168,"id":61911488,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":24,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":24,"allocations":[]},{"name":"find_method","file":"src/gen/m-Metamodel.nqp","line":1023,"id":61937328,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":410,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":314,"callees":[{"name":"submethod_table","file":"src/gen/m-Metamodel.nqp","line":487,"id":61922736,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":13,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":13,"allocations":[]},{"name":"mro","file":"src/gen/m-Metamodel.nqp","line":991,"id":61936416,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":21,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":21,"allocations":[]},{"name":"method_table","file":"src/gen/m-Metamodel.nqp","line":482,"id":61922432,"entries":182,"spesh_entries":0,"jit_entries":52,"inlined_entries":0,"inclusive_time":60,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":60,"allocations":[]}],"allocations":[{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":26},{"id":35942184,"type":"NQPArrayIter","spesh":0,"jit":0,"count":26}]},{"name":"publish_type_cache","file":"src/gen/m-Metamodel.nqp","line":1118,"id":61939456,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":857,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":683,"callees":[{"name":"mro","file":"src/gen/m-Metamodel.nqp","line":991,"id":61936416,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":22,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":22,"allocations":[]},{"name":"push","file":"gen/moar/stage2/NQPCORE.setting","line":580,"id":36674400,"entries":390,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":94,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":94,"allocations":[]},{"name":"role_typecheck_list","file":"src/gen/m-Metamodel.nqp","line":2816,"id":61984448,"entries":182,"spesh_entries":0,"jit_entries":54,"inlined_entries":0,"inclusive_time":57,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":57,"allocations":[]}],"allocations":[{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":26},{"id":35942184,"type":"NQPArrayIter","spesh":0,"jit":0,"count":208}]},{"name":"publish_method_cache","file":"src/gen/m-Metamodel.nqp","line":1055,"id":61937936,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":10889,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":9700,"callees":[{"name":"mro","file":"src/gen/m-Metamodel.nqp","line":991,"id":61936416,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":23,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":23,"allocations":[]},{"name":"unshift","file":"gen/moar/stage2/NQPCORE.setting","line":582,"id":36675008,"entries":182,"spesh_entries":0,"jit_entries":54,"inlined_entries":0,"inclusive_time":43,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":43,"allocations":[]},{"name":"method_table","file":"src/gen/m-Metamodel.nqp","line":482,"id":61922432,"entries":182,"spesh_entries":0,"jit_entries":52,"inlined_entries":0,"inclusive_time":82,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":82,"allocations":[]},{"name":"key","file":"gen/moar/stage2/NQPCORE.setting","line":590,"id":36676224,"entries":4264,"spesh_entries":0,"jit_entries":4259,"inlined_entries":0,"inclusive_time":439,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":439,"allocations":[]},{"name":"value","file":"gen/moar/stage2/NQPCORE.setting","line":591,"id":36676528,"entries":4264,"spesh_entries":0,"jit_entries":4259,"inlined_entries":0,"inclusive_time":443,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":443,"allocations":[]},{"name":"is_composed","file":"src/gen/m-Metamodel.nqp","line":2829,"id":61985056,"entries":182,"spesh_entries":0,"jit_entries":36,"inlined_entries":0,"inclusive_time":56,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":56,"allocations":[]},{"name":"submethod_table","file":"src/gen/m-Metamodel.nqp","line":487,"id":61922736,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":15,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":15,"allocations":[]},{"name":"has_fallbacks","file":"src/gen/m-Metamodel.nqp","line":2880,"id":61986880,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":85,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":85,"allocations":[{"id":35940960,"type":"BOOTNum","spesh":0,"jit":0,"count":26}]}],"allocations":[{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":26},{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":26},{"id":35942184,"type":"NQPArrayIter","spesh":0,"jit":0,"count":52},{"id":35942208,"type":"NQPHashIter","spesh":0,"jit":0,"count":208}]},{"name":"publish_boolification_spec","file":"src/gen/m-Metamodel.nqp","line":172,"id":61911792,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":56,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":56,"allocations":[]},{"name":"create_BUILDPLAN","file":"src/gen/m-Metamodel.nqp","line":1307,"id":61945232,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1546,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":822,"callees":[{"name":"attributes","file":"src/gen/m-Metamodel.nqp","line":367,"id":61920000,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":162,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":140,"callees":[{"name":"push","file":"gen/moar/stage2/NQPCORE.setting","line":580,"id":36674400,"entries":78,"spesh_entries":0,"jit_entries":78,"inlined_entries":0,"inclusive_time":21,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":21,"allocations":[]}],"allocations":[{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":26},{"id":35942184,"type":"NQPArrayIter","spesh":0,"jit":0,"count":26}]},{"name":"find_method","file":"src/gen/m-Metamodel.nqp","line":1023,"id":61937328,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":414,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":311,"callees":[{"name":"submethod_table","file":"src/gen/m-Metamodel.nqp","line":487,"id":61922736,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":15,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":15,"allocations":[]},{"name":"mro","file":"src/gen/m-Metamodel.nqp","line":991,"id":61936416,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":24,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":24,"allocations":[]},{"name":"method_table","file":"src/gen/m-Metamodel.nqp","line":482,"id":61922432,"entries":182,"spesh_entries":0,"jit_entries":52,"inlined_entries":0,"inclusive_time":62,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":62,"allocations":[]}],"allocations":[{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":26},{"id":35942184,"type":"NQPArrayIter","spesh":0,"jit":0,"count":26}]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1123,"id":61703744,"entries":78,"spesh_entries":0,"jit_entries":76,"inlined_entries":0,"inclusive_time":13,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":13,"allocations":[]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1152,"id":61705568,"entries":78,"spesh_entries":0,"jit_entries":70,"inlined_entries":0,"inclusive_time":14,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":14,"allocations":[]},{"name":"mro","file":"src/gen/m-Metamodel.nqp","line":991,"id":61936416,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":22,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":22,"allocations":[]},{"name":"BUILDPLAN","file":"src/gen/m-Metamodel.nqp","line":1371,"id":61945536,"entries":182,"spesh_entries":0,"jit_entries":72,"inlined_entries":0,"inclusive_time":96,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":96,"allocations":[]}],"allocations":[{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":52},{"id":35942184,"type":"NQPArrayIter","spesh":0,"jit":0,"count":234},{"id":35940960,"type":"BOOTNum","spesh":0,"jit":0,"count":208}]},{"name":"compose_repr","file":"src/gen/m-Metamodel.nqp","line":1384,"id":61946448,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":8472,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4457,"callees":[{"name":"is_array_type","file":"src/gen/m-Metamodel.nqp","line":1629,"id":61954352,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":28,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":28,"allocations":[]},{"name":"mro","file":"src/gen/m-Metamodel.nqp","line":991,"id":61936416,"entries":26,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":21,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":21,"allocations":[]},{"name":"attributes","file":"src/gen/m-Metamodel.nqp","line":367,"id":61920000,"entries":182,"spesh_entries":0,"jit_entries":18,"inlined_entries":0,"inclusive_time":759,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":653,"callees":[{"name":"push","file":"gen/moar/stage2/NQPCORE.setting","line":580,"id":36674400,"entries":468,"spesh_entries":0,"jit_entries":78,"inlined_entries":0,"inclusive_time":105,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":105,"allocations":[]}],"allocations":[{"id":35942160,"type":"NQPArray","spesh":0,"jit":18,"count":182},{"id":35942184,"type":"NQPArrayIter","spesh":0,"jit":18,"count":182}]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1107,"id":61702528,"entries":78,"spesh_entries":0,"jit_entries":78,"inlined_entries":0,"inclusive_time":9,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":9,"allocations":[]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1111,"id":61702832,"entries":78,"spesh_entries":0,"jit_entries":70,"inlined_entries":0,"inclusive_time":13,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":13,"allocations":[]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1161,"id":61706176,"entries":78,"spesh_entries":0,"jit_entries":70,"inlined_entries":0,"inclusive_time":10,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":10,"allocations":[]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1119,"id":61703440,"entries":78,"spesh_entries":0,"jit_entries":70,"inlined_entries":0,"inclusive_time":11,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":11,"allocations":[]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1165,"id":61706480,"entries":78,"spesh_entries":0,"jit_entries":70,"inlined_entries":0,"inclusive_time":9,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":9,"allocations":[]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1168,"id":61706784,"entries":78,"spesh_entries":0,"jit_entries":70,"inlined_entries":0,"inclusive_time":9,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":9,"allocations":[]},{"name":"parents","file":"src/gen/m-Metamodel.nqp","line":767,"id":61931856,"entries":182,"spesh_entries":18,"jit_entries":0,"inlined_entries":0,"inclusive_time":249,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":249,"allocations":[]},{"name":"name","file":"src/gen/m-BOOTSTRAP.nqp","line":15,"id":61691584,"entries":390,"spesh_entries":382,"jit_entries":0,"inlined_entries":0,"inclusive_time":684,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":684,"allocations":[]},{"name":"type","file":"src/gen/m-BOOTSTRAP.nqp","line":16,"id":61691888,"entries":390,"spesh_entries":382,"jit_entries":0,"inlined_entries":0,"inclusive_time":568,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":568,"allocations":[]},{"name":"box_target","file":"src/gen/m-BOOTSTRAP.nqp","line":17,"id":61692192,"entries":390,"spesh_entries":382,"jit_entries":0,"inlined_entries":0,"inclusive_time":571,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":571,"allocations":[]},{"name":"positional_delegate","file":"src/gen/m-BOOTSTRAP.nqp","line":21,"id":61693408,"entries":390,"spesh_entries":382,"jit_entries":0,"inlined_entries":0,"inclusive_time":538,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":538,"allocations":[]},{"name":"associative_delegate","file":"src/gen/m-BOOTSTRAP.nqp","line":22,"id":61693712,"entries":390,"spesh_entries":382,"jit_entries":0,"inlined_entries":0,"inclusive_time":527,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":527,"allocations":[]}],"allocations":[{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":390},{"id":35942184,"type":"NQPArrayIter","spesh":0,"jit":0,"count":208},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":494}]},{"name":"compose_meta_methods","file":"src/gen/m-Metamodel.nqp","line":691,"id":61929120,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":79,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":79,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":26}]},{"name":"compose_invocation","file":"src/gen/m-Metamodel.nqp","line":1497,"id":61951312,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":789,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":124,"callees":[{"name":"find_method","file":"src/gen/m-Metamodel.nqp","line":1023,"id":61937328,"entries":52,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":664,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":505,"callees":[{"name":"submethod_table","file":"src/gen/m-Metamodel.nqp","line":487,"id":61922736,"entries":52,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":33,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":33,"allocations":[]},{"name":"mro","file":"src/gen/m-Metamodel.nqp","line":991,"id":61936416,"entries":52,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":47,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":47,"allocations":[]},{"name":"method_table","file":"src/gen/m-Metamodel.nqp","line":482,"id":61922432,"entries":208,"spesh_entries":0,"jit_entries":52,"inlined_entries":0,"inclusive_time":78,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":78,"allocations":[]}],"allocations":[{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":52},{"id":35942184,"type":"NQPArrayIter","spesh":0,"jit":0,"count":52}]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":52},{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":52},{"id":35942184,"type":"NQPArrayIter","spesh":0,"jit":0,"count":52},{"id":35940960,"type":"BOOTNum","spesh":0,"jit":0,"count":156}]},{"name":"method_table","file":"src/gen/m-Metamodel.nqp","line":482,"id":61922432,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":11,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":11,"allocations":[]},{"name":"get_boolification_mode","file":"src/gen/m-Metamodel.nqp","line":164,"id":61911184,"entries":26,"spesh_entries":0,"jit_entries":18,"inlined_entries":0,"inclusive_time":16,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":16,"allocations":[]},{"name":"set_boolification_mode","file":"src/gen/m-Metamodel.nqp","line":168,"id":61911488,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":20,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":20,"allocations":[]},{"name":"publish_boolification_spec","file":"src/gen/m-Metamodel.nqp","line":172,"id":61911792,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":45,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":45,"allocations":[]},{"name":"attributes","file":"src/gen/m-Metamodel.nqp","line":367,"id":61920000,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":131,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":115,"callees":[{"name":"push","file":"gen/moar/stage2/NQPCORE.setting","line":580,"id":36674400,"entries":78,"spesh_entries":0,"jit_entries":78,"inlined_entries":0,"inclusive_time":15,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":15,"allocations":[]}],"allocations":[{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":26},{"id":35942184,"type":"NQPArrayIter","spesh":0,"jit":0,"count":26}]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1123,"id":61703744,"entries":78,"spesh_entries":0,"jit_entries":78,"inlined_entries":0,"inclusive_time":10,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":10,"allocations":[]}],"allocations":[{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":26},{"id":35942184,"type":"NQPArrayIter","spesh":0,"jit":0,"count":78},{"id":35940984,"type":"BOOTStr","spesh":0,"jit":0,"count":26}]}],"allocations":[]}],"allocations":[]},{"name":"circumfix:<{ }>","file":"src/gen/m-CORE.setting","line":11777,"id":58791824,"entries":26,"spesh_entries":18,"jit_entries":0,"inlined_entries":0,"inclusive_time":4601,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":313,"callees":[{"name":"new","file":"src/gen/m-CORE.setting","line":11170,"id":58442640,"entries":26,"spesh_entries":18,"jit_entries":0,"inlined_entries":0,"inclusive_time":4287,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":196,"callees":[{"name":"Bool","file":"src/gen/m-CORE.setting","line":939,"id":59168176,"entries":26,"spesh_entries":26,"jit_entries":0,"inlined_entries":0,"inclusive_time":4091,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":255,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2846,"id":61723200,"entries":26,"spesh_entries":0,"jit_entries":26,"inlined_entries":0,"inclusive_time":31,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":31,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":26,"count":26}]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":9779,"id":59630560,"entries":26,"spesh_entries":0,"jit_entries":18,"inlined_entries":0,"inclusive_time":3803,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":240,"callees":[{"name":"gimme","file":"src/gen/m-CORE.setting","line":9860,"id":59637248,"entries":26,"spesh_entries":0,"jit_entries":18,"inlined_entries":0,"inclusive_time":3549,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":244,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9870,"id":59638160,"entries":26,"spesh_entries":0,"jit_entries":19,"inlined_entries":0,"inclusive_time":3305,"osr":0,"deopt_one":19,"deopt_all":0,"exclusive_time":392,"callees":[{"name":"Int","file":"src/gen/m-CORE.setting","line":5501,"id":59416544,"entries":26,"spesh_entries":0,"jit_entries":19,"inlined_entries":0,"inclusive_time":9,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":9,"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9338,"id":59616576,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2902,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":200,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9339,"id":59616880,"entries":26,"spesh_entries":0,"jit_entries":26,"inlined_entries":0,"inclusive_time":2701,"osr":0,"deopt_one":26,"deopt_all":0,"exclusive_time":869,"callees":[{"name":"flattens","file":"src/gen/m-CORE.setting","line":10734,"id":58406768,"entries":26,"spesh_entries":0,"jit_entries":22,"inlined_entries":0,"inclusive_time":6,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"allocations":[]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5755,"id":58668704,"entries":104,"spesh_entries":104,"jit_entries":0,"inlined_entries":0,"inclusive_time":76,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":76,"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":9364,"id":59618096,"entries":52,"spesh_entries":0,"jit_entries":52,"inlined_entries":0,"inclusive_time":1684,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":642,"callees":[{"name":"iterator","file":"src/gen/m-CORE.setting","line":9884,"id":59639072,"entries":26,"spesh_entries":0,"jit_entries":19,"inlined_entries":0,"inclusive_time":301,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":130,"callees":[{"name":"Parcel","file":"src/gen/m-CORE.setting","line":9814,"id":59634816,"entries":26,"spesh_entries":0,"jit_entries":19,"inlined_entries":0,"inclusive_time":171,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":162,"callees":[{"name":"defined","file":"src/gen/m-CORE.setting","line":947,"id":59169392,"entries":26,"spesh_entries":0,"jit_entries":24,"inlined_entries":0,"inclusive_time":8,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"allocations":[]}],"allocations":[{"id":35941008,"type":"BOOTArray","spesh":0,"jit":19,"count":26},{"id":62199728,"type":"Parcel","spesh":0,"jit":19,"count":26}]}],"allocations":[{"id":62199800,"type":"ListIter","spesh":0,"jit":19,"count":26}]},{"name":"infix:<->","file":"src/gen/m-CORE.setting","line":5686,"id":58663232,"entries":52,"spesh_entries":51,"jit_entries":0,"inlined_entries":0,"inclusive_time":21,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":21,"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9338,"id":59616576,"entries":52,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":713,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":199,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9339,"id":59616880,"entries":26,"spesh_entries":0,"jit_entries":26,"inlined_entries":0,"inclusive_time":513,"osr":0,"deopt_one":26,"deopt_all":0,"exclusive_time":337,"callees":[{"name":"flattens","file":"src/gen/m-CORE.setting","line":10734,"id":58406768,"entries":26,"spesh_entries":0,"jit_entries":23,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[]},{"name":"REIFY","file":"src/gen/m-CORE.setting","line":10763,"id":58409808,"entries":26,"spesh_entries":0,"jit_entries":22,"inlined_entries":0,"inclusive_time":172,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":142,"callees":[{"name":"REIFY","file":"src/gen/m-CORE.setting","line":10287,"id":59666432,"entries":26,"spesh_entries":0,"jit_entries":22,"inlined_entries":0,"inclusive_time":29,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":29,"allocations":[]}],"allocations":[{"id":35941128,"type":"BOOTIter","spesh":0,"jit":22,"count":26}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":26,"count":26},{"id":62200016,"type":"Scalar","spesh":0,"jit":52,"count":52},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":52,"count":52},{"id":62199728,"type":"Parcel","spesh":0,"jit":26,"count":26}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":52},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":130}]},{"name":"iterator","file":"src/gen/m-CORE.setting","line":9404,"id":59619312,"entries":26,"spesh_entries":0,"jit_entries":24,"inlined_entries":0,"inclusive_time":5,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"allocations":[]}],"allocations":[{"id":62200040,"type":"IntLexRef","spesh":0,"jit":52,"count":52}]},{"name":"REIFY","file":"src/gen/m-CORE.setting","line":10763,"id":58409808,"entries":26,"spesh_entries":0,"jit_entries":23,"inlined_entries":0,"inclusive_time":65,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":51,"callees":[{"name":"REIFY","file":"src/gen/m-CORE.setting","line":10287,"id":59666432,"entries":26,"spesh_entries":0,"jit_entries":23,"inlined_entries":0,"inclusive_time":13,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":13,"allocations":[]}],"allocations":[{"id":35941128,"type":"BOOTIter","spesh":0,"jit":23,"count":26}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":26,"count":26},{"id":62200016,"type":"Scalar","spesh":0,"jit":52,"count":52},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":52,"count":52},{"id":62200040,"type":"IntLexRef","spesh":0,"jit":104,"count":104},{"id":62199728,"type":"Parcel","spesh":0,"jit":26,"count":26}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":26},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":78}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":19,"count":26}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":18,"count":26},{"id":62200016,"type":"Scalar","spesh":0,"jit":36,"count":52}]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":5497,"id":59416240,"entries":26,"spesh_entries":0,"jit_entries":20,"inlined_entries":18,"inclusive_time":13,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":13,"allocations":[]}],"allocations":[]}],"allocations":[]}],"allocations":[{"id":62199920,"type":"Hash","spesh":18,"jit":0,"count":26}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":18,"jit":0,"count":26}]},{"name":"BUILD_LEAST_DERIVED","file":"src/gen/m-CORE.setting","line":1074,"id":59179728,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":211,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":160,"callees":[{"name":"BUILDPLAN","file":"src/gen/m-Metamodel.nqp","line":1371,"id":61945536,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":51,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":51,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":26}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":26}]}],"allocations":[{"id":62199920,"type":"Hash","spesh":10,"jit":0,"count":26}]},{"name":"infix:<===>","file":"src/gen/m-CORE.setting","line":2195,"id":58348096,"entries":25,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":756,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":276,"callees":[{"name":"WHICH","file":"src/gen/m-CORE.setting","line":6903,"id":59489808,"entries":25,"spesh_entries":0,"jit_entries":12,"inlined_entries":0,"inclusive_time":204,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":188,"callees":[{"name":"name","file":"src/gen/m-Metamodel.nqp","line":69,"id":61904800,"entries":25,"spesh_entries":0,"jit_entries":21,"inlined_entries":0,"inclusive_time":16,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":16,"allocations":[]}],"allocations":[{"id":62199968,"type":"ObjAt","spesh":0,"jit":12,"count":25}]},{"name":"WHICH","file":"src/gen/m-CORE.setting","line":907,"id":59166048,"entries":25,"spesh_entries":13,"jit_entries":0,"inlined_entries":0,"inclusive_time":274,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":262,"callees":[{"name":"name","file":"src/gen/m-Metamodel.nqp","line":69,"id":61904800,"entries":25,"spesh_entries":0,"jit_entries":20,"inlined_entries":0,"inclusive_time":12,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":12,"allocations":[]}],"allocations":[{"id":62199968,"type":"ObjAt","spesh":13,"jit":0,"count":25}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":50}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":6,"count":26},{"id":62200016,"type":"Scalar","spesh":0,"jit":6,"count":26}]}],"allocations":[]},{"name":"infix:<=>>","file":"src/gen/m-CORE.setting","line":10986,"id":58790304,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":408,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":185,"callees":[{"name":"new","file":"src/gen/m-CORE.setting","line":10912,"id":58419536,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":222,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":166,"callees":[{"name":"BUILD","file":"src/gen/m-CORE.setting","line":10913,"id":58419840,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":55,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":55,"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":52}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":52},{"id":62202440,"type":"Pair","spesh":0,"jit":0,"count":26}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":52}]}],"allocations":[]},{"name":"fire_phasers","file":"src/gen/m-CORE.setting","line":3843,"id":59301328,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":9,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":9,"callees":[{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4947,"id":58581760,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":5},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":3},{"id":62200040,"type":"IntLexRef","spesh":0,"jit":0,"count":29},{"id":62199680,"type":"Int","spesh":0,"jit":0,"count":1},{"id":62199728,"type":"Parcel","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":3}]}],"allocations":[]},{"name":"REIFY","file":"src/gen/m-CORE.setting","line":10287,"id":59666432,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":1,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":2,"count":2},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":2,"count":2},{"id":62200040,"type":"IntLexRef","spesh":0,"jit":3,"count":3},{"id":62199728,"type":"Parcel","spesh":0,"jit":1,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":5}]},{"name":"infinite","file":"src/gen/m-CORE.setting","line":9396,"id":59619008,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"callees":[{"name":"infinite","file":"src/gen/m-CORE.setting","line":960,"id":59170912,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"iterator","file":"src/gen/m-CORE.setting","line":9404,"id":59619312,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"REIFY","file":"src/gen/m-CORE.setting","line":10287,"id":59666432,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":1,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":2,"count":2},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":2,"count":2},{"id":62200040,"type":"IntLexRef","spesh":0,"jit":5,"count":5},{"id":62199728,"type":"Parcel","spesh":0,"jit":1,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":3}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":3},{"id":62199680,"type":"Int","spesh":0,"jit":0,"count":1}]}],"allocations":[]},{"name":"elems","file":"src/gen/m-CORE.setting","line":9836,"id":59636336,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":14,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":642,"id":58303104,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":10,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":9,"callees":[{"name":"RETURN-PARCEL","file":"src/gen/m-CORE.setting","line":627,"id":58302496,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":0,"count":1}]}],"allocations":[]},{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":5741,"id":58667488,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":939,"id":59168176,"entries":27,"spesh_entries":27,"jit_entries":0,"inlined_entries":0,"inclusive_time":334,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":81,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2846,"id":61723200,"entries":27,"spesh_entries":0,"jit_entries":27,"inlined_entries":0,"inclusive_time":9,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":9,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":27,"count":27}]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":9779,"id":59630560,"entries":27,"spesh_entries":0,"jit_entries":20,"inlined_entries":0,"inclusive_time":243,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":87,"callees":[{"name":"gimme","file":"src/gen/m-CORE.setting","line":9860,"id":59637248,"entries":27,"spesh_entries":0,"jit_entries":20,"inlined_entries":0,"inclusive_time":151,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":84,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9870,"id":59638160,"entries":27,"spesh_entries":0,"jit_entries":27,"inlined_entries":0,"inclusive_time":66,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":63,"callees":[{"name":"Int","file":"src/gen/m-CORE.setting","line":5501,"id":59416544,"entries":27,"spesh_entries":0,"jit_entries":27,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":27,"count":27}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":20,"count":27},{"id":62200016,"type":"Scalar","spesh":0,"jit":40,"count":54},{"id":62199680,"type":"Int","spesh":0,"jit":4,"count":11}]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":5497,"id":59416240,"entries":27,"spesh_entries":0,"jit_entries":27,"inlined_entries":20,"inclusive_time":5,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"allocations":[]}],"allocations":[]}],"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":11265,"id":58449936,"entries":26,"spesh_entries":0,"jit_entries":18,"inlined_entries":0,"inclusive_time":941,"osr":0,"deopt_one":18,"deopt_all":0,"exclusive_time":227,"callees":[{"name":"shift","file":"src/gen/m-CORE.setting","line":9942,"id":59641504,"entries":26,"spesh_entries":0,"jit_entries":18,"inlined_entries":0,"inclusive_time":27,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":27,"allocations":[]},{"name":"key","file":"src/gen/m-CORE.setting","line":10975,"id":58427440,"entries":26,"spesh_entries":0,"jit_entries":26,"inlined_entries":0,"inclusive_time":10,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":10,"allocations":[]},{"name":"value","file":"src/gen/m-CORE.setting","line":10976,"id":58427744,"entries":26,"spesh_entries":0,"jit_entries":26,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]},{"name":"STORE_AT_KEY","file":"src/gen/m-CORE.setting","line":11397,"id":59674032,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":673,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":121,"callees":[{"name":"STORE_AT_KEY","file":"src/gen/m-CORE.setting","line":11279,"id":58451760,"entries":26,"spesh_entries":7,"jit_entries":0,"inlined_entries":0,"inclusive_time":551,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":158,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2846,"id":61723200,"entries":26,"spesh_entries":0,"jit_entries":26,"inlined_entries":0,"inclusive_time":11,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":11,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":26,"count":26}]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1919,"id":61717424,"entries":26,"spesh_entries":26,"jit_entries":0,"inlined_entries":0,"inclusive_time":322,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":280,"callees":[{"name":"add_to_cache","file":"src/gen/m-BOOTSTRAP.nqp","line":2158,"id":61717728,"entries":26,"spesh_entries":26,"jit_entries":0,"inlined_entries":0,"inclusive_time":42,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":42,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":52,"jit":0,"count":52},{"id":35942160,"type":"NQPArray","spesh":52,"jit":0,"count":52},{"id":35941032,"type":"BOOTHash","spesh":26,"jit":0,"count":26}]},{"name":"STORE_AT_KEY","file":"src/gen/m-CORE.setting","line":11280,"id":58452064,"entries":26,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":58,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":58,"allocations":[]}],"allocations":[]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":52}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":18,"count":26},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1},{"id":62199920,"type":"Hash","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":40},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":62199920,"type":"Hash","spesh":0,"jit":0,"count":1},{"id":78440912,"type":"Lua::Raw","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":62199920,"type":"Hash","spesh":0,"jit":0,"count":1}]}],"allocations":[]},{"name":"new","file":"/home/x/data/projects/perl6/Inline-Lua/lib/Inline/Lua.pm6","line":14,"id":146274096,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":22743,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":50,"callees":[{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4945,"id":58581152,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":27,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":7,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1919,"id":61717424,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":18,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":16,"callees":[{"name":"add_to_cache","file":"src/gen/m-BOOTSTRAP.nqp","line":2158,"id":61717728,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":2},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":1}]},{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4947,"id":58581760,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"","file":"/home/x/data/projects/perl6/Inline-Lua/lib/Inline/Lua.pm6","line":19,"id":144104880,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":22664,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":36,"callees":[{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4947,"id":58581760,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"ACCEPTS","file":"src/gen/m-CORE.setting","line":4923,"id":59387968,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":743,"id":58311008,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":22626,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":103,"callees":[{"name":"vivify_for","file":"src/gen/m-Metamodel.nqp","line":3433,"id":62012112,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":90,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":51,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1521,"id":61713776,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"mro_unhidden","file":"src/gen/m-Metamodel.nqp","line":1005,"id":61936720,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[]},{"name":"method_table","file":"src/gen/m-Metamodel.nqp","line":482,"id":61922432,"entries":3,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]},{"name":"push","file":"gen/moar/stage2/NQPCORE.setting","line":580,"id":36674400,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"new","file":"gen/moar/stage2/NQPCORE.setting","line":559,"id":36672576,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":30,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"callees":[{"name":"bless","file":"gen/moar/stage2/NQPCORE.setting","line":497,"id":36671968,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":25,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"CREATE","file":"gen/moar/stage2/NQPCORE.setting","line":493,"id":36671664,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[{"id":45897024,"type":"Perl6::Metamodel::MethodDispatcher","spesh":0,"jit":0,"count":1}]},{"name":"BUILDALL","file":"gen/moar/stage2/NQPCORE.setting","line":503,"id":36672272,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":17,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":15,"callees":[{"name":"BUILDALLPLAN","file":"gen/moar/stage2/nqpmo.nqp","line":1162,"id":36839360,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":35940960,"type":"BOOTNum","spesh":0,"jit":0,"count":3}]}],"allocations":[]}],"allocations":[]}],"allocations":[{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":1},{"id":35942184,"type":"NQPArrayIter","spesh":0,"jit":0,"count":1}]},{"name":"exhausted","file":"src/gen/m-Metamodel.nqp","line":3404,"id":62010592,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"call_with_capture","file":"src/gen/m-Metamodel.nqp","line":3422,"id":62011504,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":22430,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"callees":[{"name":"new","file":"src/gen/m-CORE.setting","line":951,"id":59169696,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":22426,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":10,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2846,"id":61723200,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":1,"count":1}]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1919,"id":61717424,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":13,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":13,"callees":[{"name":"add_to_cache","file":"src/gen/m-BOOTSTRAP.nqp","line":2158,"id":61717728,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":2,"jit":0,"count":2},{"id":35942160,"type":"NQPArray","spesh":2,"jit":0,"count":2},{"id":35941032,"type":"BOOTHash","spesh":1,"jit":0,"count":1}]},{"name":"new","file":"src/gen/m-CORE.setting","line":952,"id":59170000,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":22400,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"callees":[{"name":"bless","file":"src/gen/m-CORE.setting","line":966,"id":59171520,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":22394,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"callees":[{"name":"BUILDALL","file":"src/gen/m-CORE.setting","line":970,"id":59171824,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":22385,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":24,"callees":[{"name":"BUILDALLPLAN","file":"src/gen/m-Metamodel.nqp","line":1375,"id":61945840,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":977,"id":59172128,"entries":8,"spesh_entries":5,"jit_entries":0,"inlined_entries":0,"inclusive_time":22359,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":45,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":985,"id":59173344,"entries":5,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":45,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":26,"callees":[{"name":"exists_key","file":"src/gen/m-CORE.setting","line":11199,"id":58444768,"entries":5,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":10,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":10,"allocations":[]},{"name":"postcircumfix:<{ }>","file":"src/gen/m-CORE.setting","line":3587,"id":58534336,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":8,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"at_key","file":"src/gen/m-CORE.setting","line":11333,"id":59667952,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1}]}],"allocations":[]}],"allocations":[{"id":62199656,"type":"Str","spesh":0,"jit":0,"count":5},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1}]},{"name":"","file":"src/gen/m-CORE.setting","line":1020,"id":59175776,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":22268,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":57,"callees":[{"name":"","file":"/home/x/data/projects/perl6/Inline-Lua/lib/Inline/Lua.pm6","line":9,"id":119217536,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":12399,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":28,"callees":[{"name":"new-state","file":"/home/x/data/projects/perl6/Inline-Lua/lib/Inline/Lua.pm6","line":29,"id":133636048,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":12370,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":44,"callees":[{"name":"find_method","file":"src/gen/m-Metamodel.nqp","line":1023,"id":61937328,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":185,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":77,"callees":[{"name":"submethod_table","file":"src/gen/m-Metamodel.nqp","line":487,"id":61922736,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":6,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"allocations":[]},{"name":"mro","file":"src/gen/m-Metamodel.nqp","line":991,"id":61936416,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":6,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"allocations":[]},{"name":"method_table","file":"src/gen/m-Metamodel.nqp","line":482,"id":61922432,"entries":6,"spesh_entries":0,"jit_entries":4,"inlined_entries":0,"inclusive_time":54,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":54,"allocations":[]},{"name":"find_method_fallback","file":"src/gen/m-Metamodel.nqp","line":2859,"id":61985968,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":40,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":35,"callees":[{"name":"","file":"src/gen/m-Metamodel.nqp","line":2762,"id":61983232,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]},{"name":"","file":"src/gen/m-Metamodel.nqp","line":2765,"id":61983536,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":35942184,"type":"NQPArrayIter","spesh":0,"jit":0,"count":2}]}],"allocations":[{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":2},{"id":35942184,"type":"NQPArrayIter","spesh":0,"jit":0,"count":2}]},{"name":"","file":"src/gen/m-Metamodel.nqp","line":2766,"id":61983840,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":12140,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":39,"callees":[{"name":"FALLBACK","file":"/home/x/data/projects/perl6/Inline-Lua/lib/Lua/Raw.pm6","line":182,"id":111116944,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":12100,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":118,"callees":[{"name":"postcircumfix:<{ }>","file":"src/gen/m-CORE.setting","line":3587,"id":58534336,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":21,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":10,"callees":[{"name":"at_key","file":"src/gen/m-CORE.setting","line":11333,"id":59667952,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":10,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":10,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2}]}],"allocations":[]},{"name":"FLATTENABLE_LIST","file":"src/gen/m-CORE.setting","line":8767,"id":59576448,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":1}]},{"name":"FLATTENABLE_HASH","file":"src/gen/m-CORE.setting","line":8768,"id":59576752,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":2}]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2680,"id":61722288,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":11955,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":47,"callees":[{"name":"postcircumfix:<( )>","file":"lib/NativeCall.pm","line":202,"id":99846432,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":11907,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":335,"callees":[{"name":"","file":"lib/NativeCall.pm","line":203,"id":99848448,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":11480,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":821,"callees":[{"name":"signature","file":"src/gen/m-CORE.setting","line":3800,"id":59298288,"entries":4,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":5,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"allocations":[]},{"name":"param_list_for","file":"lib/NativeCall.pm","line":40,"id":99481472,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1871,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":70,"callees":[{"name":"params","file":"src/gen/m-CORE.setting","line":12392,"id":59748512,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":7,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":7,"allocations":[{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":2}]},{"name":"infix:<,>","file":"src/gen/m-CORE.setting","line":9029,"id":58758384,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":6,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":0,"count":2}]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1545,"id":61714688,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[{"id":62199512,"type":"Block","spesh":2,"jit":0,"count":2},{"id":35941080,"type":"BOOTCode","spesh":2,"jit":0,"count":2}]},{"name":"for","file":"src/gen/m-CORE.setting","line":1792,"id":59247520,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":232,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":23,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2846,"id":61723200,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":2,"count":2}]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1919,"id":61717424,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":148,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":49,"callees":[{"name":"is_bindable","file":"src/gen/m-BOOTSTRAP.nqp","line":884,"id":61699184,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":98,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":11,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":890,"id":61699488,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":86,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"callees":[{"name":"bind","file":"src/gen/m-BOOTSTRAP.nqp","line":569,"id":61697360,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":77,"osr":0,"deopt_one":2,"deopt_all":0,"exclusive_time":38,"callees":[{"name":"bind_one_param","file":"src/gen/m-BOOTSTRAP.nqp","line":161,"id":61696144,"entries":8,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":37,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":37,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":8},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":4}]},{"name":"handle_optional","file":"src/gen/m-BOOTSTRAP.nqp","line":534,"id":61697056,"entries":2,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":62199920,"type":"Hash","spesh":2,"jit":0,"count":2}]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":2,"jit":0,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":4,"jit":0,"count":4},{"id":35942160,"type":"NQPArray","spesh":4,"jit":0,"count":4},{"id":35941032,"type":"BOOTHash","spesh":2,"jit":0,"count":2},{"id":35941224,"type":"CallCapture","spesh":2,"jit":0,"count":2}]},{"name":"for","file":"src/gen/m-CORE.setting","line":1794,"id":59248128,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":58,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":26,"callees":[{"name":"new","file":"src/gen/m-CORE.setting","line":9435,"id":59620528,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":29,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":16,"callees":[{"name":"BUILD","file":"src/gen/m-CORE.setting","line":9441,"id":59620832,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":12,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":12,"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":10}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":8},{"id":65564936,"type":"MapIter","spesh":0,"jit":0,"count":2},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":2},{"id":62199800,"type":"ListIter","spesh":0,"jit":0,"count":2}]},{"name":"list","file":"src/gen/m-CORE.setting","line":1669,"id":59226544,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":2}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":4}]}],"allocations":[]},{"name":"sink","file":"src/gen/m-CORE.setting","line":10346,"id":58393696,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1550,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":16,"callees":[{"name":"gimme","file":"src/gen/m-CORE.setting","line":9860,"id":59637248,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1533,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":53,"callees":[{"name":"infinite","file":"src/gen/m-CORE.setting","line":9396,"id":59619008,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":11,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":11,"callees":[{"name":"infinite","file":"src/gen/m-CORE.setting","line":960,"id":59170912,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4947,"id":58581760,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9338,"id":59616576,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1467,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":12,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9339,"id":59616880,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":1454,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":56,"callees":[{"name":"flattens","file":"src/gen/m-CORE.setting","line":9805,"id":59634208,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5755,"id":58668704,"entries":4,"spesh_entries":4,"jit_entries":0,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":9364,"id":59618096,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":1390,"osr":0,"deopt_one":2,"deopt_all":0,"exclusive_time":27,"callees":[{"name":"infinite","file":"src/gen/m-CORE.setting","line":960,"id":59170912,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"iterator","file":"src/gen/m-CORE.setting","line":9056,"id":59596512,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9454,"id":59621440,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1360,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":11,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9455,"id":59621744,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1349,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":192,"callees":[{"name":"count","file":"src/gen/m-CORE.setting","line":3798,"id":59297984,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":11,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":9,"callees":[{"name":"count","file":"src/gen/m-CORE.setting","line":12388,"id":59748208,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]}],"allocations":[]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5752,"id":58668400,"entries":6,"spesh_entries":0,"jit_entries":6,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]},{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":5443,"id":58653504,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":32,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":24,"callees":[{"name":"Bridge","file":"src/gen/m-CORE.setting","line":5522,"id":59418368,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[{"id":62199704,"type":"Num","spesh":0,"jit":0,"count":2}]},{"name":"Bridge","file":"src/gen/m-CORE.setting","line":5904,"id":59439040,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":6253,"id":58692416,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]}],"allocations":[]},{"name":"phasers","file":"src/gen/m-CORE.setting","line":3850,"id":59301936,"entries":4,"spesh_entries":0,"jit_entries":4,"inlined_entries":0,"inclusive_time":7,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":7,"allocations":[]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":939,"id":59168176,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":14,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":10,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2846,"id":61723200,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":2,"count":2}]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":8804,"id":59579184,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]}],"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9338,"id":59616576,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":186,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9339,"id":59616880,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":178,"osr":0,"deopt_one":2,"deopt_all":0,"exclusive_time":58,"callees":[{"name":"flattens","file":"src/gen/m-CORE.setting","line":9452,"id":59621136,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5755,"id":58668704,"entries":13,"spesh_entries":13,"jit_entries":0,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":9364,"id":59618096,"entries":6,"spesh_entries":0,"jit_entries":6,"inlined_entries":0,"inclusive_time":109,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":40,"callees":[{"name":"iterator","file":"src/gen/m-CORE.setting","line":9884,"id":59639072,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":23,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":11,"callees":[{"name":"Parcel","file":"src/gen/m-CORE.setting","line":9814,"id":59634816,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":12,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":11,"callees":[{"name":"defined","file":"src/gen/m-CORE.setting","line":947,"id":59169392,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":2},{"id":62199728,"type":"Parcel","spesh":0,"jit":0,"count":2}]}],"allocations":[{"id":62199800,"type":"ListIter","spesh":0,"jit":0,"count":2}]},{"name":"infix:<->","file":"src/gen/m-CORE.setting","line":5686,"id":58663232,"entries":4,"spesh_entries":4,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9338,"id":59616576,"entries":4,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":43,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":14,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9339,"id":59616880,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":29,"osr":0,"deopt_one":2,"deopt_all":0,"exclusive_time":26,"callees":[{"name":"flattens","file":"src/gen/m-CORE.setting","line":9805,"id":59634208,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"REIFY","file":"src/gen/m-CORE.setting","line":10287,"id":59666432,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5755,"id":58668704,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":2,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":4,"count":4},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":4,"count":4},{"id":62199728,"type":"Parcel","spesh":0,"jit":2,"count":2},{"id":62200040,"type":"IntLexRef","spesh":0,"jit":1,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":4},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":10}]},{"name":"iterator","file":"src/gen/m-CORE.setting","line":9404,"id":59619312,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":62200040,"type":"IntLexRef","spesh":0,"jit":4,"count":4}]},{"name":"REIFY","file":"src/gen/m-CORE.setting","line":9632,"id":59625088,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":2,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":4,"count":4},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":4,"count":4},{"id":62200040,"type":"IntLexRef","spesh":0,"jit":13,"count":13},{"id":62199728,"type":"Parcel","spesh":0,"jit":2,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":6}]},{"name":"infix:</>","file":"src/gen/m-CORE.setting","line":12758,"id":58799120,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":66,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":11,"callees":[{"name":"DIVIDE_NUMBERS","file":"src/gen/m-CORE.setting","line":12625,"id":58793344,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":55,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":38,"callees":[{"name":"infix:<gcd>","file":"src/gen/m-CORE.setting","line":5726,"id":58666272,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[{"id":62199680,"type":"Int","spesh":0,"jit":0,"count":2}]},{"name":"infix:<div>","file":"src/gen/m-CORE.setting","line":5697,"id":58664144,"entries":4,"spesh_entries":0,"jit_entries":4,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[{"id":62199680,"type":"Int","spesh":0,"jit":4,"count":4}]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5752,"id":58668400,"entries":4,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":9,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":9,"allocations":[]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":4},{"id":65566496,"type":"Rat","spesh":0,"jit":0,"count":2}]}],"allocations":[]},{"name":"floor","file":"src/gen/m-CORE.setting","line":12466,"id":59751856,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":11,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":11,"callees":[{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":5741,"id":58667488,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"infix:<>>","file":"src/gen/m-CORE.setting","line":5766,"id":58669616,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"prefix:<+>","file":"src/gen/m-CORE.setting","line":5050,"id":58595440,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":9,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":7,"callees":[{"name":"Numeric","file":"src/gen/m-CORE.setting","line":8805,"id":59579488,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[]},{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":5741,"id":58667488,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4947,"id":58581760,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"find_method","file":"src/gen/m-Metamodel.nqp","line":1023,"id":61937328,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":62,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":46,"callees":[{"name":"submethod_table","file":"src/gen/m-Metamodel.nqp","line":487,"id":61922736,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":6,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"allocations":[]},{"name":"mro","file":"src/gen/m-Metamodel.nqp","line":991,"id":61936416,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":7,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":7,"allocations":[]},{"name":"method_table","file":"src/gen/m-Metamodel.nqp","line":3075,"id":61994784,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":2}]},{"name":"method_table","file":"src/gen/m-Metamodel.nqp","line":482,"id":61922432,"entries":4,"spesh_entries":0,"jit_entries":4,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":2},{"id":35942184,"type":"NQPArrayIter","spesh":0,"jit":0,"count":2}]},{"name":"","file":"lib/NativeCall.pm","line":42,"id":99483488,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":739,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":52,"callees":[{"name":"param_hash_for","file":"lib/NativeCall.pm","line":18,"id":99460384,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":687,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":91,"callees":[{"name":"type","file":"src/gen/m-CORE.setting","line":12113,"id":59722368,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[]},{"name":"ACCEPTS","file":"src/gen/m-CORE.setting","line":895,"id":59164832,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"find_method","file":"src/gen/m-Metamodel.nqp","line":1607,"id":61953440,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":7,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":7,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":35940984,"type":"BOOTStr","spesh":0,"jit":0,"count":1}]},{"name":"ACCEPTS","file":"src/gen/m-CORE.setting","line":894,"id":59164528,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":138,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":17,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2846,"id":61723200,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":1,"count":1}]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1919,"id":61717424,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":118,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":74,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1623,"id":61716512,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":39,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":39,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":5},{"id":35942184,"type":"NQPArrayIter","spesh":0,"jit":0,"count":2},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":2},{"id":35941536,"type":"BOOTIntArray","spesh":0,"jit":0,"count":1},{"id":35940936,"type":"BOOTInt","spesh":0,"jit":0,"count":2}]},{"name":"add_to_cache","file":"src/gen/m-BOOTSTRAP.nqp","line":2158,"id":61717728,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":2,"jit":0,"count":2},{"id":35942160,"type":"NQPArray","spesh":2,"jit":0,"count":2},{"id":35941032,"type":"BOOTHash","spesh":1,"jit":0,"count":1}]},{"name":"ACCEPTS","file":"src/gen/m-CORE.setting","line":895,"id":59164832,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]}],"allocations":[]},{"name":"type_code_for","file":"lib/NativeCall.pm","line":146,"id":99507392,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":445,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":34,"callees":[{"name":"bind_sig","file":"src/gen/m-BOOTSTRAP.nqp","line":832,"id":61698880,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":28,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"callees":[{"name":"bind","file":"src/gen/m-BOOTSTRAP.nqp","line":569,"id":61697360,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":20,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":10,"callees":[{"name":"bind_one_param","file":"src/gen/m-BOOTSTRAP.nqp","line":161,"id":61696144,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":9,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":9,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1}]}],"allocations":[]}],"allocations":[{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":1},{"id":35941152,"type":"BOOTContext","spesh":0,"jit":0,"count":1}]},{"name":"name","file":"src/gen/m-Metamodel.nqp","line":69,"id":61904800,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]},{"name":"postcircumfix:<{ }>","file":"src/gen/m-CORE.setting","line":3584,"id":58534032,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":352,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":9,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1919,"id":61717424,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":206,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":163,"callees":[{"name":"is_bindable","file":"src/gen/m-BOOTSTRAP.nqp","line":884,"id":61699184,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":42,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":890,"id":61699488,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":36,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"callees":[{"name":"bind","file":"src/gen/m-BOOTSTRAP.nqp","line":569,"id":61697360,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":34,"osr":0,"deopt_one":1,"deopt_all":0,"exclusive_time":19,"callees":[{"name":"bind_one_param","file":"src/gen/m-BOOTSTRAP.nqp","line":161,"id":61696144,"entries":4,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":14,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":14,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":4},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":62199920,"type":"Hash","spesh":1,"jit":0,"count":1}]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":1,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":2},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":1},{"id":35941224,"type":"CallCapture","spesh":0,"jit":0,"count":1}]},{"name":"postcircumfix:<{ }>","file":"src/gen/m-CORE.setting","line":3602,"id":58535856,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":136,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":16,"callees":[{"name":"FLATTENABLE_LIST","file":"src/gen/m-CORE.setting","line":11297,"id":58452976,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":35941008,"type":"BOOTArray","spesh":0,"jit":1,"count":1}]},{"name":"FLATTENABLE_HASH","file":"src/gen/m-CORE.setting","line":11298,"id":58453280,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]},{"name":"SLICE_ONE_HASH","file":"src/gen/m-CORE.setting","line":2840,"id":58464416,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":115,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":19,"callees":[{"name":"CLONE-HASH-DECONTAINERIZED","file":"src/gen/m-CORE.setting","line":869,"id":58319520,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":6,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"allocations":[{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":1},{"id":35941128,"type":"BOOTIter","spesh":0,"jit":0,"count":1}]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1545,"id":61714688,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[{"id":62199512,"type":"Block","spesh":1,"jit":0,"count":1},{"id":35941080,"type":"BOOTCode","spesh":1,"jit":0,"count":1}]},{"name":"","file":"src/gen/m-CORE.setting","line":2844,"id":58464720,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":56,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":10,"callees":[{"name":"DELETEKEY","file":"src/gen/m-CORE.setting","line":2389,"id":58381536,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":5,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2849,"id":61723504,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":62199920,"type":"Hash","spesh":0,"jit":1,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1}]},{"name":"","file":"src/gen/m-CORE.setting","line":2934,"id":58473232,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":39,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":28,"callees":[{"name":"DELETEKEY","file":"src/gen/m-CORE.setting","line":2389,"id":58381536,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":5,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2849,"id":61723504,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":62199920,"type":"Hash","spesh":0,"jit":1,"count":1}]},{"name":"","file":"src/gen/m-CORE.setting","line":2390,"id":58382144,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1}]},{"name":"exists_key","file":"src/gen/m-CORE.setting","line":11199,"id":58444768,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]},{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":5741,"id":58667488,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":4901,"id":59383104,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4946,"id":58581456,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":10},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1}]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":939,"id":59168176,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":31,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2846,"id":61723200,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":1,"count":1}]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":9779,"id":59630560,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":22,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"gimme","file":"src/gen/m-CORE.setting","line":9860,"id":59637248,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":16,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":9,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9870,"id":59638160,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":7,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":7,"callees":[{"name":"Int","file":"src/gen/m-CORE.setting","line":5501,"id":59416544,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":2,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":1,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":2,"count":2}]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":5497,"id":59416240,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":1,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1},{"id":62199920,"type":"Hash","spesh":0,"jit":0,"count":1},{"id":62199848,"type":"Array","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1},{"id":62199920,"type":"Hash","spesh":0,"jit":0,"count":1}]}],"allocations":[]},{"name":"postcircumfix:<{ }>","file":"src/gen/m-CORE.setting","line":3587,"id":58534336,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":9,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"at_key","file":"src/gen/m-CORE.setting","line":11333,"id":59667952,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1}]}],"allocations":[]},{"name":"","file":"lib/NativeCall.pm","line":149,"id":99511424,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":16,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":642,"id":58303104,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":9,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":9,"callees":[{"name":"RETURN-PARCEL","file":"src/gen/m-CORE.setting","line":627,"id":58302496,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":1},{"id":62199656,"type":"Str","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2}]},{"name":"fire_phasers","file":"src/gen/m-CORE.setting","line":3843,"id":59301328,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":8,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":7,"callees":[{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4947,"id":58581760,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":10},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":6},{"id":62200040,"type":"IntLexRef","spesh":0,"jit":0,"count":9},{"id":62199728,"type":"Parcel","spesh":0,"jit":0,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":6}]}],"allocations":[]},{"name":"REIFY","file":"src/gen/m-CORE.setting","line":10287,"id":59666432,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":2,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":4,"count":4},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":4,"count":4},{"id":62200040,"type":"IntLexRef","spesh":0,"jit":4,"count":4},{"id":62199728,"type":"Parcel","spesh":0,"jit":2,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":6}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":6}]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":2}]},{"name":"dispatch:<.?>","file":"src/gen/m-CORE.setting","line":1358,"id":59207696,"entries":4,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":32,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":32,"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":8},{"id":62199944,"type":"Capture","spesh":0,"jit":0,"count":4}]},{"name":"guess_library_name","file":"lib/NativeCall.pm","line":172,"id":99533792,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":7629,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":179,"callees":[{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4946,"id":58581456,"entries":2,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2434,"id":61720160,"entries":4,"spesh_entries":0,"jit_entries":4,"inlined_entries":0,"inclusive_time":14,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1545,"id":61714688,"entries":4,"spesh_entries":4,"jit_entries":0,"inlined_entries":0,"inclusive_time":8,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"allocations":[{"id":62199632,"type":"Regex","spesh":4,"jit":0,"count":4},{"id":35941080,"type":"BOOTCode","spesh":4,"jit":0,"count":4}]}],"allocations":[]},{"name":"ACCEPTS","file":"src/gen/m-CORE.setting","line":15620,"id":59971344,"entries":4,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":378,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":193,"callees":[{"name":"!cursor_init","file":"gen/moar/stage2/QRegex.nqp","line":1063,"id":37837040,"entries":4,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":59,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":50,"callees":[{"name":"CREATE","file":"src/gen/m-CORE.setting","line":962,"id":59171216,"entries":4,"spesh_entries":0,"jit_entries":4,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62201504,"type":"Cursor","spesh":0,"jit":4,"count":4}]},{"name":"Num","file":"src/gen/m-CORE.setting","line":5507,"id":59417152,"entries":4,"spesh_entries":0,"jit_entries":4,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[{"id":62199704,"type":"Num","spesh":0,"jit":4,"count":4}]},{"name":"!cursor_start_cur","file":"gen/moar/stage2/QRegex.nqp","line":1148,"id":37837952,"entries":4,"spesh_entries":0,"jit_entries":4,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[{"id":62201504,"type":"Cursor","spesh":0,"jit":4,"count":4},{"id":35941536,"type":"BOOTIntArray","spesh":0,"jit":4,"count":4}]}],"allocations":[{"id":35943552,"type":"ParseShared","spesh":0,"jit":0,"count":4},{"id":35941584,"type":"BOOTStrArray","spesh":0,"jit":0,"count":4},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":4}]},{"name":"","file":"/home/x/.rakudobrew/moar-nom/install/languages/perl6/lib/NativeCall.pm.moarvm","line":-1,"id":99535808,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":87,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":70,"callees":[{"name":"!cursor_start","file":"gen/moar/stage2/QRegex.nqp","line":1125,"id":37837648,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[{"id":62201504,"type":"Cursor","spesh":0,"jit":2,"count":2},{"id":35941536,"type":"BOOTIntArray","spesh":0,"jit":2,"count":2}]},{"name":"!shared","file":"gen/moar/stage2/QRegex.nqp","line":1252,"id":37841600,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"alpha","file":"gen/moar/stage2/QRegex.nqp","line":1555,"id":37850720,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":9,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"callees":[{"name":"!cursor_start_cur","file":"gen/moar/stage2/QRegex.nqp","line":1148,"id":37837952,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62201504,"type":"Cursor","spesh":0,"jit":2,"count":2},{"id":35941536,"type":"BOOTIntArray","spesh":0,"jit":2,"count":2}]}],"allocations":[]},{"name":"!cursor_fail","file":"gen/moar/stage2/QRegex.nqp","line":1206,"id":37839776,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":5,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"allocations":[]}],"allocations":[{"id":62199920,"type":"Hash","spesh":0,"jit":0,"count":2}]},{"name":"MATCH_SAVE","file":"src/gen/m-CORE.setting","line":15413,"id":59961616,"entries":4,"spesh_entries":0,"jit_entries":4,"inlined_entries":0,"inclusive_time":7,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"callees":[{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5752,"id":58668400,"entries":4,"spesh_entries":0,"jit_entries":4,"inlined_entries":4,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]}],"allocations":[]},{"name":"","file":"/home/x/.rakudobrew/moar-nom/install/languages/perl6/lib/NativeCall.pm.moarvm","line":-1,"id":99537824,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":30,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":25,"callees":[{"name":"!cursor_start","file":"gen/moar/stage2/QRegex.nqp","line":1125,"id":37837648,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62201504,"type":"Cursor","spesh":0,"jit":2,"count":2},{"id":35941536,"type":"BOOTIntArray","spesh":0,"jit":2,"count":2}]},{"name":"!shared","file":"gen/moar/stage2/QRegex.nqp","line":1252,"id":37841600,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"!cursor_fail","file":"gen/moar/stage2/QRegex.nqp","line":1206,"id":37839776,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":62199920,"type":"Hash","spesh":0,"jit":0,"count":2}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2}]},{"name":"DYNAMIC","file":"src/gen/m-CORE.setting","line":575,"id":58299152,"entries":6,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":139,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":94,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":577,"id":58299456,"entries":6,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":45,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":45,"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":6}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":6}]},{"name":"<anon>","file":"src/gen/m-CORE.setting","line":3918,"id":59306192,"entries":6,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":12,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":12,"allocations":[]},{"name":"postcircumfix:<{ }>","file":"src/gen/m-CORE.setting","line":3584,"id":58534032,"entries":6,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2203,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":40,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1919,"id":61717424,"entries":6,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1245,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":936,"callees":[{"name":"is_bindable","file":"src/gen/m-BOOTSTRAP.nqp","line":884,"id":61699184,"entries":6,"spesh_entries":6,"jit_entries":0,"inlined_entries":0,"inclusive_time":308,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":72,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":890,"id":61699488,"entries":6,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":235,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":17,"callees":[{"name":"bind","file":"src/gen/m-BOOTSTRAP.nqp","line":569,"id":61697360,"entries":6,"spesh_entries":6,"jit_entries":0,"inlined_entries":0,"inclusive_time":218,"osr":0,"deopt_one":6,"deopt_all":0,"exclusive_time":104,"callees":[{"name":"bind_one_param","file":"src/gen/m-BOOTSTRAP.nqp","line":161,"id":61696144,"entries":24,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":114,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":114,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":24},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":6}]}],"allocations":[{"id":62199920,"type":"Hash","spesh":6,"jit":0,"count":6}]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":6,"jit":0,"count":6}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":12},{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":12},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":6},{"id":35941224,"type":"CallCapture","spesh":0,"jit":0,"count":6}]},{"name":"postcircumfix:<{ }>","file":"src/gen/m-CORE.setting","line":3602,"id":58535856,"entries":6,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":917,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":121,"callees":[{"name":"FLATTENABLE_LIST","file":"src/gen/m-CORE.setting","line":11297,"id":58452976,"entries":6,"spesh_entries":0,"jit_entries":3,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[{"id":35941008,"type":"BOOTArray","spesh":0,"jit":3,"count":6}]},{"name":"FLATTENABLE_HASH","file":"src/gen/m-CORE.setting","line":11298,"id":58453280,"entries":6,"spesh_entries":0,"jit_entries":3,"inlined_entries":0,"inclusive_time":9,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":9,"allocations":[]},{"name":"SLICE_ONE_HASH","file":"src/gen/m-CORE.setting","line":2840,"id":58464416,"entries":6,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":783,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":198,"callees":[{"name":"CLONE-HASH-DECONTAINERIZED","file":"src/gen/m-CORE.setting","line":869,"id":58319520,"entries":6,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":25,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":25,"allocations":[{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":6},{"id":35941128,"type":"BOOTIter","spesh":0,"jit":0,"count":6}]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1545,"id":61714688,"entries":6,"spesh_entries":6,"jit_entries":0,"inlined_entries":0,"inclusive_time":8,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"allocations":[{"id":62199512,"type":"Block","spesh":6,"jit":0,"count":6},{"id":35941080,"type":"BOOTCode","spesh":6,"jit":0,"count":6}]},{"name":"","file":"src/gen/m-CORE.setting","line":2844,"id":58464720,"entries":6,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":422,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":117,"callees":[{"name":"DELETEKEY","file":"src/gen/m-CORE.setting","line":2389,"id":58381536,"entries":6,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":28,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":25,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2849,"id":61723504,"entries":6,"spesh_entries":0,"jit_entries":3,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[{"id":62199920,"type":"Hash","spesh":0,"jit":3,"count":6}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":6}]},{"name":"","file":"src/gen/m-CORE.setting","line":2934,"id":58473232,"entries":6,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":277,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":154,"callees":[{"name":"DELETEKEY","file":"src/gen/m-CORE.setting","line":2389,"id":58381536,"entries":6,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":30,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":22,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2849,"id":61723504,"entries":6,"spesh_entries":0,"jit_entries":3,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[{"id":62199920,"type":"Hash","spesh":0,"jit":3,"count":6}]},{"name":"","file":"src/gen/m-CORE.setting","line":2390,"id":58382144,"entries":6,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":5,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":6}]},{"name":"exists_key","file":"src/gen/m-CORE.setting","line":11199,"id":58444768,"entries":6,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":14,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":14,"allocations":[]},{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":5243,"id":58638304,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":64,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":9,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1919,"id":61717424,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":52,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":50,"callees":[{"name":"add_to_cache","file":"src/gen/m-BOOTSTRAP.nqp","line":2158,"id":61717728,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":2},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":1}]},{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":5741,"id":58667488,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]}],"allocations":[]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":4901,"id":59383104,"entries":12,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":7,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":7,"allocations":[]},{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4946,"id":58581456,"entries":6,"spesh_entries":0,"jit_entries":3,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":5741,"id":58667488,"entries":5,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":12},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":6}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":60},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":6}]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":939,"id":59168176,"entries":6,"spesh_entries":6,"jit_entries":0,"inlined_entries":0,"inclusive_time":128,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":31,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2846,"id":61723200,"entries":6,"spesh_entries":0,"jit_entries":6,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":6,"count":6}]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":9779,"id":59630560,"entries":6,"spesh_entries":0,"jit_entries":6,"inlined_entries":0,"inclusive_time":92,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":23,"callees":[{"name":"gimme","file":"src/gen/m-CORE.setting","line":9860,"id":59637248,"entries":6,"spesh_entries":0,"jit_entries":6,"inlined_entries":0,"inclusive_time":67,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":36,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9870,"id":59638160,"entries":6,"spesh_entries":0,"jit_entries":6,"inlined_entries":0,"inclusive_time":31,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":30,"callees":[{"name":"Int","file":"src/gen/m-CORE.setting","line":5501,"id":59416544,"entries":6,"spesh_entries":0,"jit_entries":6,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":12,"count":12}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":6,"count":6},{"id":62200016,"type":"Scalar","spesh":0,"jit":12,"count":12}]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":5497,"id":59416240,"entries":6,"spesh_entries":0,"jit_entries":6,"inlined_entries":6,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":6},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":6},{"id":62199920,"type":"Hash","spesh":0,"jit":0,"count":6},{"id":62199848,"type":"Array","spesh":0,"jit":0,"count":6}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":6},{"id":62199920,"type":"Hash","spesh":0,"jit":0,"count":6}]}],"allocations":[]},{"name":"","file":"lib/NativeCall.pm","line":185,"id":99583184,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":4700,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":200,"callees":[{"name":"DYNAMIC","file":"src/gen/m-CORE.setting","line":575,"id":58299152,"entries":2,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":43,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":29,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":577,"id":58299456,"entries":2,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":14,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":14,"allocations":[{"id":62200016,"type":"Scalar","spesh":1,"jit":0,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":1,"count":2}]},{"name":"<anon>","file":"src/gen/m-CORE.setting","line":3918,"id":59306192,"entries":2,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]},{"name":"postcircumfix:<{ }>","file":"src/gen/m-CORE.setting","line":3587,"id":58534336,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":16,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":9,"callees":[{"name":"at_key","file":"src/gen/m-CORE.setting","line":11333,"id":59667952,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":6,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2}]}],"allocations":[]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1489,"id":61712864,"entries":2,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[{"id":62199488,"type":"Code","spesh":1,"jit":0,"count":2},{"id":35941080,"type":"BOOTCode","spesh":1,"jit":0,"count":2}]},{"name":"subst-mutate","file":"src/gen/m-CORE.setting","line":4724,"id":59371856,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":4426,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":33,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1919,"id":61717424,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":259,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":42,"callees":[{"name":"is_bindable","file":"src/gen/m-BOOTSTRAP.nqp","line":884,"id":61699184,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":217,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":95,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":890,"id":61699488,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":122,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"bind","file":"src/gen/m-BOOTSTRAP.nqp","line":569,"id":61697360,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":116,"osr":0,"deopt_one":2,"deopt_all":0,"exclusive_time":59,"callees":[{"name":"bind_one_param","file":"src/gen/m-BOOTSTRAP.nqp","line":161,"id":61696144,"entries":14,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":54,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":54,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":14},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":10}]},{"name":"handle_optional","file":"src/gen/m-BOOTSTRAP.nqp","line":534,"id":61697056,"entries":4,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]}],"allocations":[{"id":62199920,"type":"Hash","spesh":2,"jit":0,"count":2}]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":2,"jit":0,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":4,"jit":0,"count":4},{"id":35942160,"type":"NQPArray","spesh":4,"jit":0,"count":4},{"id":35941032,"type":"BOOTHash","spesh":2,"jit":0,"count":2},{"id":35941224,"type":"CallCapture","spesh":2,"jit":0,"count":2}]},{"name":"subst-mutate","file":"src/gen/m-CORE.setting","line":7484,"id":59517168,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":4133,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":533,"callees":[{"name":"postcircumfix:<{ }>","file":"src/gen/m-CORE.setting","line":3587,"id":58534336,"entries":4,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":51,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":11,"callees":[{"name":"at_key","file":"src/gen/m-CORE.setting","line":11333,"id":59667952,"entries":4,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":39,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":19,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":11341,"id":59668560,"entries":4,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":20,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":15,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1545,"id":61714688,"entries":4,"spesh_entries":4,"jit_entries":0,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[{"id":62199512,"type":"Block","spesh":4,"jit":0,"count":4},{"id":35941080,"type":"BOOTCode","spesh":4,"jit":0,"count":4}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":4},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":8}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":4}]}],"allocations":[]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1489,"id":61712864,"entries":2,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199488,"type":"Code","spesh":1,"jit":0,"count":2},{"id":35941080,"type":"BOOTCode","spesh":1,"jit":0,"count":2}]},{"name":"","file":"src/gen/m-CORE.setting","line":7491,"id":59517472,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2}]},{"name":"FLATTENABLE_LIST","file":"src/gen/m-CORE.setting","line":11297,"id":58452976,"entries":2,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":35941008,"type":"BOOTArray","spesh":0,"jit":1,"count":2}]},{"name":"FLATTENABLE_HASH","file":"src/gen/m-CORE.setting","line":11298,"id":58453280,"entries":2,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]},{"name":"match","file":"src/gen/m-CORE.setting","line":7402,"id":59508960,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1558,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":251,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1489,"id":61712864,"entries":4,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[{"id":62199488,"type":"Code","spesh":2,"jit":0,"count":4},{"id":35941080,"type":"BOOTCode","spesh":2,"jit":0,"count":4}]},{"name":"","file":"src/gen/m-CORE.setting","line":7406,"id":59509264,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":11,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":10,"callees":[{"name":"defined","file":"src/gen/m-CORE.setting","line":947,"id":59169392,"entries":2,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"defined","file":"src/gen/m-CORE.setting","line":947,"id":59169392,"entries":10,"spesh_entries":0,"jit_entries":4,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]},{"name":"postcircumfix:<{ }>","file":"src/gen/m-CORE.setting","line":3590,"id":58534640,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":50,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":38,"callees":[{"name":"assign_key","file":"src/gen/m-CORE.setting","line":11351,"id":59669168,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":12,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":12,"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":4},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":2}]}],"allocations":[]},{"name":"FLATTENABLE_LIST","file":"src/gen/m-CORE.setting","line":11297,"id":58452976,"entries":2,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":35941008,"type":"BOOTArray","spesh":0,"jit":1,"count":2}]},{"name":"FLATTENABLE_HASH","file":"src/gen/m-CORE.setting","line":11298,"id":58453280,"entries":2,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"!cursor_init","file":"gen/moar/stage2/QRegex.nqp","line":1063,"id":37837040,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":49,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":42,"callees":[{"name":"CREATE","file":"src/gen/m-CORE.setting","line":962,"id":59171216,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":62201504,"type":"Cursor","spesh":0,"jit":2,"count":2}]},{"name":"Num","file":"src/gen/m-CORE.setting","line":5507,"id":59417152,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[{"id":62199704,"type":"Num","spesh":0,"jit":2,"count":2}]},{"name":"!cursor_start_cur","file":"gen/moar/stage2/QRegex.nqp","line":1148,"id":37837952,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[{"id":62201504,"type":"Cursor","spesh":0,"jit":2,"count":2},{"id":35941536,"type":"BOOTIntArray","spesh":0,"jit":2,"count":2}]}],"allocations":[{"id":35943552,"type":"ParseShared","spesh":0,"jit":0,"count":2},{"id":35941584,"type":"BOOTStrArray","spesh":0,"jit":0,"count":2},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":2}]},{"name":"","file":"/home/x/.rakudobrew/moar-nom/install/languages/perl6/lib/NativeCall.pm.moarvm","line":-1,"id":99585200,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":51,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":45,"callees":[{"name":"!cursor_start","file":"gen/moar/stage2/QRegex.nqp","line":1125,"id":37837648,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62201504,"type":"Cursor","spesh":0,"jit":2,"count":2},{"id":35941536,"type":"BOOTIntArray","spesh":0,"jit":2,"count":2}]},{"name":"!shared","file":"gen/moar/stage2/QRegex.nqp","line":1252,"id":37841600,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"!cursor_pass","file":"gen/moar/stage2/QRegex.nqp","line":1195,"id":37839472,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]}],"allocations":[{"id":62199920,"type":"Hash","spesh":0,"jit":0,"count":2}]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1545,"id":61714688,"entries":4,"spesh_entries":4,"jit_entries":0,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[{"id":62199512,"type":"Block","spesh":4,"jit":0,"count":4},{"id":35941080,"type":"BOOTCode","spesh":4,"jit":0,"count":4}]},{"name":"GATHER","file":"src/gen/m-CORE.setting","line":9727,"id":58761424,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":93,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":65,"callees":[{"name":"new","file":"src/gen/m-CORE.setting","line":9668,"id":59626000,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":21,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":17,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1545,"id":61714688,"entries":6,"spesh_entries":6,"jit_entries":0,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[{"id":62199512,"type":"Block","spesh":6,"jit":0,"count":6},{"id":35941080,"type":"BOOTCode","spesh":6,"jit":0,"count":6}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":6},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":4},{"id":62203040,"type":"GatherIter","spesh":0,"jit":0,"count":2}]},{"name":"list","file":"src/gen/m-CORE.setting","line":1669,"id":59226544,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":6,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"allocations":[{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":2}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2}]},{"name":"","file":"src/gen/m-CORE.setting","line":7479,"id":59513520,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":985,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":54,"callees":[{"name":"postcircumfix:<[ ]>","file":"src/gen/m-CORE.setting","line":3333,"id":58509104,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":930,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":59,"callees":[{"name":"at_pos","file":"src/gen/m-CORE.setting","line":9827,"id":59635728,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":870,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":59,"callees":[{"name":"exists_pos","file":"src/gen/m-CORE.setting","line":9845,"id":59636640,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":810,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":14,"callees":[{"name":"gimme","file":"src/gen/m-CORE.setting","line":9860,"id":59637248,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":795,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":19,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9870,"id":59638160,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":776,"osr":0,"deopt_one":2,"deopt_all":0,"exclusive_time":26,"callees":[{"name":"Int","file":"src/gen/m-CORE.setting","line":5501,"id":59416544,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9338,"id":59616576,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":750,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":13,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9339,"id":59616880,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":736,"osr":0,"deopt_one":2,"deopt_all":0,"exclusive_time":80,"callees":[{"name":"flattens","file":"src/gen/m-CORE.setting","line":9805,"id":59634208,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5755,"id":58668704,"entries":10,"spesh_entries":10,"jit_entries":0,"inlined_entries":0,"inclusive_time":6,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":9364,"id":59618096,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":642,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":77,"callees":[{"name":"iterator","file":"src/gen/m-CORE.setting","line":9056,"id":59596512,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"infix:<->","file":"src/gen/m-CORE.setting","line":5686,"id":58663232,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9698,"id":59628128,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":562,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":85,"callees":[{"name":"defined","file":"src/gen/m-CORE.setting","line":947,"id":59169392,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4946,"id":58581456,"entries":2,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":9699,"id":59628432,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":475,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":57,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9679,"id":59627520,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":417,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":78,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9674,"id":59626912,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":338,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":48,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":7417,"id":59509872,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":290,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":106,"callees":[{"name":"pos","file":"gen/moar/stage2/QRegex.nqp","line":996,"id":37836128,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[]},{"name":"infix:<>=>","file":"src/gen/m-CORE.setting","line":5773,"id":58670224,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]},{"name":"MATCH_SAVE","file":"src/gen/m-CORE.setting","line":15413,"id":59961616,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":82,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":9,"callees":[{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5752,"id":58668400,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":2,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"MATCH","file":"src/gen/m-CORE.setting","line":15311,"id":59956144,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":72,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":25,"callees":[{"name":"orig","file":"gen/moar/stage2/QRegex.nqp","line":993,"id":37835216,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":15324,"id":59956752,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":45,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":24,"callees":[{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4947,"id":58581760,"entries":6,"spesh_entries":0,"jit_entries":6,"inlined_entries":6,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2487,"id":61721376,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":15330,"id":59957360,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":17,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":7,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":15332,"id":59957664,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":9,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":7,"callees":[{"name":"infix:<>=>","file":"src/gen/m-CORE.setting","line":5773,"id":58670224,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":2,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":2,"count":2},{"id":35941128,"type":"BOOTIter","spesh":0,"jit":2,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":4,"count":4},{"id":62200016,"type":"Scalar","spesh":0,"jit":2,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":2,"count":2},{"id":68480552,"type":"Match","spesh":0,"jit":2,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":4,"count":4},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":2,"count":2}]}],"allocations":[]},{"name":"take","file":"src/gen/m-CORE.setting","line":669,"id":58305232,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":93,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":10,"callees":[{"name":"THROW","file":"src/gen/m-CORE.setting","line":619,"id":58302192,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":83,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":39,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9676,"id":59627216,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":43,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":22,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9671,"id":59626304,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":20,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":17,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1545,"id":61714688,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[{"id":62199512,"type":"Block","spesh":2,"jit":0,"count":2},{"id":35941080,"type":"BOOTCode","spesh":2,"jit":0,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2}]}],"allocations":[{"id":62199680,"type":"Int","spesh":0,"jit":0,"count":4}]}],"allocations":[]}],"allocations":[]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2}]},{"name":"","file":"src/gen/m-CORE.setting","line":9672,"id":59626608,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":2},{"id":62203040,"type":"GatherIter","spesh":0,"jit":0,"count":2},{"id":62199728,"type":"Parcel","spesh":0,"jit":0,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":4}]}],"allocations":[{"id":62200040,"type":"IntLexRef","spesh":0,"jit":2,"count":2}]},{"name":"REIFY","file":"src/gen/m-CORE.setting","line":10287,"id":59666432,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":6,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":2,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":2,"count":2},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":4,"count":4},{"id":62200040,"type":"IntLexRef","spesh":0,"jit":10,"count":10},{"id":62199728,"type":"Parcel","spesh":0,"jit":2,"count":2},{"id":62199800,"type":"ListIter","spesh":0,"jit":2,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":6}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":2,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":4}]}],"allocations":[]}],"allocations":[{"id":62200040,"type":"IntLexRef","spesh":0,"jit":0,"count":2}]}],"allocations":[]},{"name":"defined","file":"src/gen/m-CORE.setting","line":947,"id":59169392,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"postcircumfix:<[ ]>","file":"src/gen/m-CORE.setting","line":3333,"id":58509104,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":50,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"callees":[{"name":"at_pos","file":"src/gen/m-CORE.setting","line":9827,"id":59635728,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":42,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"callees":[{"name":"exists_pos","file":"src/gen/m-CORE.setting","line":9845,"id":59636640,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":33,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":9,"callees":[{"name":"gimme","file":"src/gen/m-CORE.setting","line":9860,"id":59637248,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":23,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":14,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9870,"id":59638160,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":9,"osr":0,"deopt_one":2,"deopt_all":0,"exclusive_time":8,"callees":[{"name":"Int","file":"src/gen/m-CORE.setting","line":5501,"id":59416544,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":2,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":4}]}],"allocations":[]}],"allocations":[{"id":62200040,"type":"IntLexRef","spesh":0,"jit":0,"count":2}]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":18},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":26},{"id":62199920,"type":"Hash","spesh":0,"jit":0,"count":4}]},{"name":"STORE","file":"src/gen/m-CORE.setting","line":10774,"id":58410416,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":167,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":32,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2846,"id":61723200,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":2,"count":2}]},{"name":"eager","file":"src/gen/m-CORE.setting","line":9834,"id":59636032,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":129,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"callees":[{"name":"gimme","file":"src/gen/m-CORE.setting","line":9860,"id":59637248,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":120,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":40,"callees":[{"name":"infinite","file":"src/gen/m-CORE.setting","line":9396,"id":59619008,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":5,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"allocations":[]},{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4947,"id":58581760,"entries":2,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9338,"id":59616576,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":74,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":10,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9339,"id":59616880,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":63,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":45,"callees":[{"name":"flattens","file":"src/gen/m-CORE.setting","line":10734,"id":58406768,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5755,"id":58668704,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"REIFY","file":"src/gen/m-CORE.setting","line":10763,"id":58409808,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":16,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":13,"callees":[{"name":"REIFY","file":"src/gen/m-CORE.setting","line":10287,"id":59666432,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]}],"allocations":[{"id":35941128,"type":"BOOTIter","spesh":0,"jit":2,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":4,"count":4}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":2,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":4,"count":4},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":4,"count":4},{"id":62200040,"type":"IntLexRef","spesh":0,"jit":2,"count":2},{"id":62199728,"type":"Parcel","spesh":0,"jit":2,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":6}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":6}]}],"allocations":[]},{"name":"sink","file":"src/gen/m-CORE.setting","line":10346,"id":58393696,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]}],"allocations":[{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":2},{"id":62199800,"type":"ListIter","spesh":0,"jit":0,"count":2}]},{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4947,"id":58581760,"entries":4,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":187,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":10,"callees":[{"name":"Bool","file":"src/gen/m-CORE.setting","line":939,"id":59168176,"entries":4,"spesh_entries":4,"jit_entries":0,"inlined_entries":0,"inclusive_time":176,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":25,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2846,"id":61723200,"entries":4,"spesh_entries":0,"jit_entries":4,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":4,"count":4}]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":9779,"id":59630560,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":147,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"callees":[{"name":"gimme","file":"src/gen/m-CORE.setting","line":9860,"id":59637248,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":140,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":12,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9870,"id":59638160,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":127,"osr":0,"deopt_one":2,"deopt_all":0,"exclusive_time":12,"callees":[{"name":"Int","file":"src/gen/m-CORE.setting","line":5501,"id":59416544,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9338,"id":59616576,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":114,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":9,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9339,"id":59616880,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":105,"osr":0,"deopt_one":2,"deopt_all":0,"exclusive_time":43,"callees":[{"name":"flattens","file":"src/gen/m-CORE.setting","line":10734,"id":58406768,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5755,"id":58668704,"entries":6,"spesh_entries":6,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":9364,"id":59618096,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":51,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":25,"callees":[{"name":"iterator","file":"src/gen/m-CORE.setting","line":9884,"id":59639072,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":19,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":7,"callees":[{"name":"Parcel","file":"src/gen/m-CORE.setting","line":9814,"id":59634816,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":11,"osr":0,"deopt_one":2,"deopt_all":0,"exclusive_time":10,"callees":[{"name":"defined","file":"src/gen/m-CORE.setting","line":947,"id":59169392,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":35941008,"type":"BOOTArray","spesh":0,"jit":2,"count":2},{"id":62199728,"type":"Parcel","spesh":0,"jit":2,"count":2}]}],"allocations":[{"id":62199800,"type":"ListIter","spesh":0,"jit":2,"count":2}]},{"name":"infix:<->","file":"src/gen/m-CORE.setting","line":5686,"id":58663232,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9338,"id":59616576,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":5,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":4}]}],"allocations":[{"id":62200040,"type":"IntLexRef","spesh":0,"jit":2,"count":2}]},{"name":"REIFY","file":"src/gen/m-CORE.setting","line":10763,"id":58409808,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":7,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"callees":[{"name":"REIFY","file":"src/gen/m-CORE.setting","line":10287,"id":59666432,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":35941128,"type":"BOOTIter","spesh":0,"jit":2,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":4,"count":4}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":2,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":4,"count":4},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":4,"count":4},{"id":62200040,"type":"IntLexRef","spesh":0,"jit":6,"count":6},{"id":62199728,"type":"Parcel","spesh":0,"jit":2,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":6}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":2,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":2,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":4,"count":4}]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":5497,"id":59416240,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":2,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":15224,"id":59949456,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[]}],"allocations":[]},{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":5245,"id":58638912,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":100,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":62,"callees":[{"name":"Numeric","file":"src/gen/m-CORE.setting","line":9782,"id":59631472,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":35,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":7,"callees":[{"name":"elems","file":"src/gen/m-CORE.setting","line":9836,"id":59636336,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":28,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":642,"id":58303104,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":19,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":17,"callees":[{"name":"RETURN-PARCEL","file":"src/gen/m-CORE.setting","line":627,"id":58302496,"entries":2,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]}],"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":0,"count":2}]}],"allocations":[]}],"allocations":[]},{"name":"Numeric","file":"src/gen/m-CORE.setting","line":5016,"id":59389488,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":5741,"id":58667488,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[]},{"name":"postcircumfix:<[ ]>","file":"src/gen/m-CORE.setting","line":3333,"id":58509104,"entries":4,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":104,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":74,"callees":[{"name":"at_pos","file":"src/gen/m-CORE.setting","line":10659,"id":58402816,"entries":4,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":29,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":27,"callees":[{"name":"Int","file":"src/gen/m-CORE.setting","line":5501,"id":59416544,"entries":4,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":4}]}],"allocations":[]},{"name":"APPLY-MATCHES","file":"src/gen/m-CORE.setting","line":7542,"id":59520512,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1421,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":67,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1489,"id":61712864,"entries":2,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[{"id":62199488,"type":"Code","spesh":1,"jit":0,"count":2},{"id":35941080,"type":"BOOTCode","spesh":1,"jit":0,"count":2}]},{"name":"","file":"src/gen/m-CORE.setting","line":7548,"id":59520816,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2}]},{"name":"","file":"src/gen/m-CORE.setting","line":7551,"id":59522032,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1345,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":53,"callees":[{"name":"count","file":"src/gen/m-CORE.setting","line":3798,"id":59297984,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":12,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":10,"callees":[{"name":"count","file":"src/gen/m-CORE.setting","line":12388,"id":59748208,"entries":2,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[]},{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":5741,"id":58667488,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"infix:<,>","file":"src/gen/m-CORE.setting","line":9029,"id":58758384,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":0,"count":2}]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1545,"id":61714688,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[{"id":62199512,"type":"Block","spesh":2,"jit":0,"count":2},{"id":35941080,"type":"BOOTCode","spesh":2,"jit":0,"count":2}]},{"name":"for","file":"src/gen/m-CORE.setting","line":1792,"id":59247520,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":238,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":22,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2846,"id":61723200,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":2,"count":2}]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1919,"id":61717424,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":155,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":55,"callees":[{"name":"is_bindable","file":"src/gen/m-BOOTSTRAP.nqp","line":884,"id":61699184,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":99,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":11,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":890,"id":61699488,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":88,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":7,"callees":[{"name":"bind","file":"src/gen/m-BOOTSTRAP.nqp","line":569,"id":61697360,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":80,"osr":0,"deopt_one":2,"deopt_all":0,"exclusive_time":42,"callees":[{"name":"bind_one_param","file":"src/gen/m-BOOTSTRAP.nqp","line":161,"id":61696144,"entries":8,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":36,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":36,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":8},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":4}]},{"name":"handle_optional","file":"src/gen/m-BOOTSTRAP.nqp","line":534,"id":61697056,"entries":2,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":62199920,"type":"Hash","spesh":2,"jit":0,"count":2}]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":2,"jit":0,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":4,"jit":0,"count":4},{"id":35942160,"type":"NQPArray","spesh":4,"jit":0,"count":4},{"id":35941032,"type":"BOOTHash","spesh":2,"jit":0,"count":2},{"id":35941224,"type":"CallCapture","spesh":2,"jit":0,"count":2}]},{"name":"for","file":"src/gen/m-CORE.setting","line":1794,"id":59248128,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":59,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":24,"callees":[{"name":"new","file":"src/gen/m-CORE.setting","line":9435,"id":59620528,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":30,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":19,"callees":[{"name":"BUILD","file":"src/gen/m-CORE.setting","line":9441,"id":59620832,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":10,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":10,"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":10}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":8},{"id":65564936,"type":"MapIter","spesh":0,"jit":0,"count":2},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":2},{"id":62199800,"type":"ListIter","spesh":0,"jit":0,"count":2}]},{"name":"list","file":"src/gen/m-CORE.setting","line":1669,"id":59226544,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":2}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":4}]}],"allocations":[]},{"name":"sink","file":"src/gen/m-CORE.setting","line":10346,"id":58393696,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1032,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":14,"callees":[{"name":"gimme","file":"src/gen/m-CORE.setting","line":9860,"id":59637248,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1018,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":42,"callees":[{"name":"infinite","file":"src/gen/m-CORE.setting","line":9396,"id":59619008,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":11,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":11,"callees":[{"name":"infinite","file":"src/gen/m-CORE.setting","line":960,"id":59170912,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4947,"id":58581760,"entries":2,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9338,"id":59616576,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":963,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":10,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9339,"id":59616880,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":952,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":55,"callees":[{"name":"flattens","file":"src/gen/m-CORE.setting","line":9805,"id":59634208,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5755,"id":58668704,"entries":4,"spesh_entries":4,"jit_entries":0,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":9364,"id":59618096,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":889,"osr":0,"deopt_one":2,"deopt_all":0,"exclusive_time":29,"callees":[{"name":"infinite","file":"src/gen/m-CORE.setting","line":960,"id":59170912,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"iterator","file":"src/gen/m-CORE.setting","line":9056,"id":59596512,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9454,"id":59621440,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":858,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":12,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9455,"id":59621744,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":845,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":246,"callees":[{"name":"count","file":"src/gen/m-CORE.setting","line":3798,"id":59297984,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":7,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"callees":[{"name":"count","file":"src/gen/m-CORE.setting","line":12388,"id":59748208,"entries":2,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5752,"id":58668400,"entries":6,"spesh_entries":0,"jit_entries":6,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]},{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":5443,"id":58653504,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":34,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":25,"callees":[{"name":"Bridge","file":"src/gen/m-CORE.setting","line":5522,"id":59418368,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[{"id":62199704,"type":"Num","spesh":0,"jit":0,"count":2}]},{"name":"Bridge","file":"src/gen/m-CORE.setting","line":5904,"id":59439040,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":6253,"id":58692416,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]}],"allocations":[]},{"name":"phasers","file":"src/gen/m-CORE.setting","line":3850,"id":59301936,"entries":4,"spesh_entries":0,"jit_entries":4,"inlined_entries":0,"inclusive_time":9,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":9,"allocations":[]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":939,"id":59168176,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":17,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":13,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2846,"id":61723200,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":2,"count":2}]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":8804,"id":59579184,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]}],"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9338,"id":59616576,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":146,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":9,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9339,"id":59616880,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":136,"osr":0,"deopt_one":2,"deopt_all":0,"exclusive_time":61,"callees":[{"name":"flattens","file":"src/gen/m-CORE.setting","line":9452,"id":59621136,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5755,"id":58668704,"entries":10,"spesh_entries":10,"jit_entries":0,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":9364,"id":59618096,"entries":4,"spesh_entries":0,"jit_entries":4,"inlined_entries":0,"inclusive_time":64,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":31,"callees":[{"name":"iterator","file":"src/gen/m-CORE.setting","line":9884,"id":59639072,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":23,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":9,"callees":[{"name":"Parcel","file":"src/gen/m-CORE.setting","line":9814,"id":59634816,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":14,"osr":0,"deopt_one":2,"deopt_all":0,"exclusive_time":13,"callees":[{"name":"defined","file":"src/gen/m-CORE.setting","line":947,"id":59169392,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":35941008,"type":"BOOTArray","spesh":0,"jit":2,"count":2},{"id":62199728,"type":"Parcel","spesh":0,"jit":2,"count":2}]}],"allocations":[{"id":62199800,"type":"ListIter","spesh":0,"jit":2,"count":2}]},{"name":"infix:<->","file":"src/gen/m-CORE.setting","line":5686,"id":58663232,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9338,"id":59616576,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":7,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":7,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":4}]}],"allocations":[{"id":62200040,"type":"IntLexRef","spesh":0,"jit":2,"count":2}]},{"name":"REIFY","file":"src/gen/m-CORE.setting","line":9632,"id":59625088,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":2,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":4,"count":4},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":4,"count":4},{"id":62200040,"type":"IntLexRef","spesh":0,"jit":10,"count":10},{"id":62199728,"type":"Parcel","spesh":0,"jit":2,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":6}]},{"name":"infix:</>","file":"src/gen/m-CORE.setting","line":12758,"id":58799120,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":69,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":11,"callees":[{"name":"DIVIDE_NUMBERS","file":"src/gen/m-CORE.setting","line":12625,"id":58793344,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":57,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":41,"callees":[{"name":"infix:<gcd>","file":"src/gen/m-CORE.setting","line":5726,"id":58666272,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[{"id":62199680,"type":"Int","spesh":0,"jit":0,"count":2}]},{"name":"infix:<div>","file":"src/gen/m-CORE.setting","line":5697,"id":58664144,"entries":4,"spesh_entries":0,"jit_entries":4,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[{"id":62199680,"type":"Int","spesh":0,"jit":4,"count":4}]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5752,"id":58668400,"entries":4,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":8,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"allocations":[]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":4},{"id":65566496,"type":"Rat","spesh":0,"jit":0,"count":2}]}],"allocations":[]},{"name":"floor","file":"src/gen/m-CORE.setting","line":12466,"id":59751856,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":12,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":11,"callees":[{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":5741,"id":58667488,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"infix:<>>","file":"src/gen/m-CORE.setting","line":5766,"id":58669616,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"prefix:<+>","file":"src/gen/m-CORE.setting","line":5050,"id":58595440,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":11,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"callees":[{"name":"Numeric","file":"src/gen/m-CORE.setting","line":8805,"id":59579488,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]}],"allocations":[]},{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":5741,"id":58667488,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4947,"id":58581760,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":7556,"id":59522336,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":197,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":174,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1489,"id":61712864,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":5,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"allocations":[{"id":62199488,"type":"Code","spesh":2,"jit":0,"count":2},{"id":35941080,"type":"BOOTCode","spesh":2,"jit":0,"count":2}]},{"name":"","file":"src/gen/m-CORE.setting","line":7557,"id":59522640,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[]},{"name":"<anon>","file":"src/gen/m-CORE.setting","line":3924,"id":59306496,"entries":4,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":8,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"allocations":[]},{"name":"infix:<->","file":"src/gen/m-CORE.setting","line":5686,"id":58663232,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"","file":"lib/NativeCall.pm","line":187,"id":99587216,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]},{"name":"prefix:<~>","file":"src/gen/m-CORE.setting","line":8259,"id":58723424,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":6},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2},{"id":62200040,"type":"IntLexRef","spesh":0,"jit":0,"count":2}]},{"name":"find_method","file":"src/gen/m-Metamodel.nqp","line":1023,"id":61937328,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":72,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":54,"callees":[{"name":"submethod_table","file":"src/gen/m-Metamodel.nqp","line":487,"id":61922736,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":6,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"allocations":[]},{"name":"mro","file":"src/gen/m-Metamodel.nqp","line":991,"id":61936416,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":9,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":9,"allocations":[]},{"name":"method_table","file":"src/gen/m-Metamodel.nqp","line":3075,"id":61994784,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":2}]},{"name":"method_table","file":"src/gen/m-Metamodel.nqp","line":482,"id":61922432,"entries":4,"spesh_entries":0,"jit_entries":4,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":2},{"id":35942184,"type":"NQPArrayIter","spesh":0,"jit":0,"count":2}]},{"name":"fire_phasers","file":"src/gen/m-CORE.setting","line":3843,"id":59301328,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":15,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":14,"callees":[{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4947,"id":58581760,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":10},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":6},{"id":62200040,"type":"IntLexRef","spesh":0,"jit":0,"count":10},{"id":62199728,"type":"Parcel","spesh":0,"jit":0,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":6}]}],"allocations":[]},{"name":"REIFY","file":"src/gen/m-CORE.setting","line":10287,"id":59666432,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":2,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":4,"count":4},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":4,"count":4},{"id":62200040,"type":"IntLexRef","spesh":0,"jit":4,"count":4},{"id":62199728,"type":"Parcel","spesh":0,"jit":2,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":6}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":6}]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2},{"id":62199656,"type":"Str","spesh":0,"jit":0,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":8},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":4},{"id":35941584,"type":"BOOTStrArray","spesh":0,"jit":0,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":4},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":18},{"id":62199920,"type":"Hash","spesh":0,"jit":0,"count":2},{"id":62199848,"type":"Array","spesh":0,"jit":0,"count":2}]}],"allocations":[{"id":62199944,"type":"Capture","spesh":0,"jit":0,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2}]},{"name":"infix:<=>","file":"src/gen/m-CORE.setting","line":20854,"id":58972400,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"ACCEPTS","file":"src/gen/m-CORE.setting","line":15227,"id":59949760,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"Stringy","file":"src/gen/m-CORE.setting","line":6921,"id":59491024,"entries":4,"spesh_entries":0,"jit_entries":4,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"infix:<~>","file":"src/gen/m-CORE.setting","line":8262,"id":58724032,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[{"id":62199656,"type":"Str","spesh":0,"jit":0,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":4},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":10},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":4}]},{"name":"defined","file":"src/gen/m-CORE.setting","line":947,"id":59169392,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1521,"id":61713776,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]},{"name":"return_hash_for","file":"lib/NativeCall.pm","line":50,"id":99485504,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":918,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":181,"callees":[{"name":"returns","file":"src/gen/m-CORE.setting","line":12420,"id":59749728,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]},{"name":"ACCEPTS","file":"src/gen/m-CORE.setting","line":894,"id":59164528,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":113,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":31,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2846,"id":61723200,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":2,"count":2}]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1919,"id":61717424,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":77,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":73,"callees":[{"name":"add_to_cache","file":"src/gen/m-BOOTSTRAP.nqp","line":2158,"id":61717728,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":4,"jit":0,"count":4},{"id":35942160,"type":"NQPArray","spesh":4,"jit":0,"count":4},{"id":35941032,"type":"BOOTHash","spesh":2,"jit":0,"count":2}]},{"name":"ACCEPTS","file":"src/gen/m-CORE.setting","line":895,"id":59164832,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[]},{"name":"type_code_for","file":"lib/NativeCall.pm","line":146,"id":99507392,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":621,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":51,"callees":[{"name":"bind_sig","file":"src/gen/m-BOOTSTRAP.nqp","line":832,"id":61698880,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":26,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"bind","file":"src/gen/m-BOOTSTRAP.nqp","line":569,"id":61697360,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":20,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":11,"callees":[{"name":"bind_one_param","file":"src/gen/m-BOOTSTRAP.nqp","line":161,"id":61696144,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":8,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1}]}],"allocations":[]}],"allocations":[{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":1},{"id":35941152,"type":"BOOTContext","spesh":0,"jit":0,"count":1}]},{"name":"name","file":"src/gen/m-Metamodel.nqp","line":69,"id":61904800,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]},{"name":"postcircumfix:<{ }>","file":"src/gen/m-CORE.setting","line":3584,"id":58534032,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":521,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":12,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1919,"id":61717424,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":366,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":323,"callees":[{"name":"is_bindable","file":"src/gen/m-BOOTSTRAP.nqp","line":884,"id":61699184,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":41,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":890,"id":61699488,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":34,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"callees":[{"name":"bind","file":"src/gen/m-BOOTSTRAP.nqp","line":569,"id":61697360,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":32,"osr":0,"deopt_one":1,"deopt_all":0,"exclusive_time":17,"callees":[{"name":"bind_one_param","file":"src/gen/m-BOOTSTRAP.nqp","line":161,"id":61696144,"entries":4,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":14,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":14,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":4},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":62199920,"type":"Hash","spesh":1,"jit":0,"count":1}]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":1,"jit":0,"count":1}]},{"name":"add_to_cache","file":"src/gen/m-BOOTSTRAP.nqp","line":2158,"id":61717728,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":4},{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":5},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":3},{"id":35941224,"type":"CallCapture","spesh":0,"jit":0,"count":1}]},{"name":"postcircumfix:<{ }>","file":"src/gen/m-CORE.setting","line":3602,"id":58535856,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":132,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":17,"callees":[{"name":"FLATTENABLE_LIST","file":"src/gen/m-CORE.setting","line":11297,"id":58452976,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":1}]},{"name":"FLATTENABLE_HASH","file":"src/gen/m-CORE.setting","line":11298,"id":58453280,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]},{"name":"SLICE_ONE_HASH","file":"src/gen/m-CORE.setting","line":2840,"id":58464416,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":110,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":19,"callees":[{"name":"CLONE-HASH-DECONTAINERIZED","file":"src/gen/m-CORE.setting","line":869,"id":58319520,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":5,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"allocations":[{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":1},{"id":35941128,"type":"BOOTIter","spesh":0,"jit":0,"count":1}]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1545,"id":61714688,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[{"id":62199512,"type":"Block","spesh":1,"jit":0,"count":1},{"id":35941080,"type":"BOOTCode","spesh":1,"jit":0,"count":1}]},{"name":"","file":"src/gen/m-CORE.setting","line":2844,"id":58464720,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":50,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":9,"callees":[{"name":"DELETEKEY","file":"src/gen/m-CORE.setting","line":2389,"id":58381536,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2849,"id":61723504,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":62199920,"type":"Hash","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1}]},{"name":"","file":"src/gen/m-CORE.setting","line":2934,"id":58473232,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":37,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":25,"callees":[{"name":"DELETEKEY","file":"src/gen/m-CORE.setting","line":2389,"id":58381536,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":5,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2849,"id":61723504,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":62199920,"type":"Hash","spesh":0,"jit":0,"count":1}]},{"name":"","file":"src/gen/m-CORE.setting","line":2390,"id":58382144,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1}]},{"name":"exists_key","file":"src/gen/m-CORE.setting","line":11199,"id":58444768,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]},{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":5741,"id":58667488,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":4901,"id":59383104,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4946,"id":58581456,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":10},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1}]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":939,"id":59168176,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":31,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2846,"id":61723200,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":1,"count":1}]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":9779,"id":59630560,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":21,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"callees":[{"name":"gimme","file":"src/gen/m-CORE.setting","line":9860,"id":59637248,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":16,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9870,"id":59638160,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":7,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":7,"callees":[{"name":"Int","file":"src/gen/m-CORE.setting","line":5501,"id":59416544,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":2,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":1,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":2,"count":2}]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":5497,"id":59416240,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":1,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1},{"id":62199920,"type":"Hash","spesh":0,"jit":0,"count":1},{"id":62199848,"type":"Array","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1},{"id":62199920,"type":"Hash","spesh":0,"jit":0,"count":1}]},{"name":"postcircumfix:<{ }>","file":"src/gen/m-CORE.setting","line":3587,"id":58534336,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":10,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"at_key","file":"src/gen/m-CORE.setting","line":11333,"id":59667952,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1}]}],"allocations":[]}],"allocations":[]},{"name":"","file":"lib/NativeCall.pm","line":149,"id":99511424,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":19,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":7,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":642,"id":58303104,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":11,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":10,"callees":[{"name":"RETURN-PARCEL","file":"src/gen/m-CORE.setting","line":627,"id":58302496,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":4},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":2},{"id":62199656,"type":"Str","spesh":0,"jit":0,"count":1}]},{"name":"returns","file":"src/gen/m-CORE.setting","line":4196,"id":59322000,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":25,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":20,"callees":[{"name":"signature","file":"src/gen/m-CORE.setting","line":3800,"id":59298288,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]},{"name":"returns","file":"src/gen/m-CORE.setting","line":12420,"id":59749728,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[]},{"name":"map_return_type","file":"lib/NativeCall.pm","line":162,"id":99464256,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":172,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":66,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1919,"id":61717424,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":100,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":40,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1623,"id":61716512,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":57,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":48,"callees":[{"name":"is_narrower","file":"src/gen/m-BOOTSTRAP.nqp","line":1651,"id":61716816,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":9,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":9,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":8},{"id":35942184,"type":"NQPArrayIter","spesh":0,"jit":0,"count":3},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":4},{"id":35941536,"type":"BOOTIntArray","spesh":0,"jit":0,"count":2},{"id":35940936,"type":"BOOTInt","spesh":0,"jit":0,"count":4}]},{"name":"add_to_cache","file":"src/gen/m-BOOTSTRAP.nqp","line":2158,"id":61717728,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":4},{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":4},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":2}]},{"name":"map_return_type","file":"lib/NativeCall.pm","line":163,"id":99466272,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1}]},{"name":"map_return_type","file":"lib/NativeCall.pm","line":162,"id":99513440,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1}]}],"allocations":[]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2},{"id":62200088,"type":"StrLexRef","spesh":0,"jit":0,"count":2}]},{"name":"decont_all","file":"gen/moar/stage2/QAST.nqp","line":3961,"id":39712544,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":91,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":91,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":62199944,"type":"Capture","spesh":0,"jit":0,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2},{"id":62200112,"type":"IntAttrRef","spesh":0,"jit":0,"count":2}]}],"allocations":[]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":4},{"id":62199944,"type":"Capture","spesh":0,"jit":0,"count":2}]}],"allocations":[]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1}]},{"name":"","file":"/home/x/data/projects/perl6/Inline-Lua/lib/Inline/Lua.pm6","line":10,"id":146273792,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":9811,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":37,"callees":[{"name":"new-index","file":"/home/x/data/projects/perl6/Inline-Lua/lib/Inline/Lua.pm6","line":36,"id":133636352,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":9773,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":27,"callees":[{"name":"find_method","file":"src/gen/m-Metamodel.nqp","line":1023,"id":61937328,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":97,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":55,"callees":[{"name":"submethod_table","file":"src/gen/m-Metamodel.nqp","line":487,"id":61922736,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":6,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"allocations":[]},{"name":"mro","file":"src/gen/m-Metamodel.nqp","line":991,"id":61936416,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":8,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"allocations":[]},{"name":"method_table","file":"src/gen/m-Metamodel.nqp","line":482,"id":61922432,"entries":6,"spesh_entries":0,"jit_entries":4,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]},{"name":"find_method_fallback","file":"src/gen/m-Metamodel.nqp","line":2859,"id":61985968,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":25,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":20,"callees":[{"name":"","file":"src/gen/m-Metamodel.nqp","line":2762,"id":61983232,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]},{"name":"","file":"src/gen/m-Metamodel.nqp","line":2765,"id":61983536,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":35942184,"type":"NQPArrayIter","spesh":0,"jit":0,"count":2}]}],"allocations":[{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":2},{"id":35942184,"type":"NQPArrayIter","spesh":0,"jit":0,"count":2}]},{"name":"","file":"src/gen/m-Metamodel.nqp","line":2766,"id":61983840,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":9647,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":9,"callees":[{"name":"FALLBACK","file":"/home/x/data/projects/perl6/Inline-Lua/lib/Lua/Raw.pm6","line":182,"id":111116944,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":9638,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":57,"callees":[{"name":"postcircumfix:<{ }>","file":"src/gen/m-CORE.setting","line":3587,"id":58534336,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":29,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":19,"callees":[{"name":"at_key","file":"src/gen/m-CORE.setting","line":11333,"id":59667952,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":10,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":10,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2}]}],"allocations":[]},{"name":"FLATTENABLE_LIST","file":"src/gen/m-CORE.setting","line":8767,"id":59576448,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]},{"name":"FLATTENABLE_HASH","file":"src/gen/m-CORE.setting","line":8768,"id":59576752,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":2}]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2680,"id":61722288,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":9545,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":13,"callees":[{"name":"postcircumfix:<( )>","file":"lib/NativeCall.pm","line":202,"id":99846432,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":9531,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":48,"callees":[{"name":"","file":"lib/NativeCall.pm","line":203,"id":99848448,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":9471,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":226,"callees":[{"name":"signature","file":"src/gen/m-CORE.setting","line":3800,"id":59298288,"entries":4,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":5,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"allocations":[]},{"name":"param_list_for","file":"lib/NativeCall.pm","line":40,"id":99481472,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3082,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":87,"callees":[{"name":"params","file":"src/gen/m-CORE.setting","line":12392,"id":59748512,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":6,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"allocations":[{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":2}]},{"name":"infix:<,>","file":"src/gen/m-CORE.setting","line":9029,"id":58758384,"entries":2,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[{"id":62199728,"type":"Parcel","spesh":1,"jit":0,"count":2}]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1545,"id":61714688,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":5,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"allocations":[{"id":62199512,"type":"Block","spesh":2,"jit":0,"count":2},{"id":35941080,"type":"BOOTCode","spesh":2,"jit":0,"count":2}]},{"name":"for","file":"src/gen/m-CORE.setting","line":1792,"id":59247520,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":236,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":29,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2846,"id":61723200,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":2,"count":2}]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1919,"id":61717424,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":148,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":52,"callees":[{"name":"is_bindable","file":"src/gen/m-BOOTSTRAP.nqp","line":884,"id":61699184,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":96,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":12,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":890,"id":61699488,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":84,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"callees":[{"name":"bind","file":"src/gen/m-BOOTSTRAP.nqp","line":569,"id":61697360,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":75,"osr":0,"deopt_one":2,"deopt_all":0,"exclusive_time":38,"callees":[{"name":"bind_one_param","file":"src/gen/m-BOOTSTRAP.nqp","line":161,"id":61696144,"entries":8,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":34,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":34,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":8},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":4}]},{"name":"handle_optional","file":"src/gen/m-BOOTSTRAP.nqp","line":534,"id":61697056,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":62199920,"type":"Hash","spesh":2,"jit":0,"count":2}]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":2,"jit":0,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":4,"jit":0,"count":4},{"id":35942160,"type":"NQPArray","spesh":4,"jit":0,"count":4},{"id":35941032,"type":"BOOTHash","spesh":2,"jit":0,"count":2},{"id":35941224,"type":"CallCapture","spesh":2,"jit":0,"count":2}]},{"name":"for","file":"src/gen/m-CORE.setting","line":1794,"id":59248128,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":56,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":27,"callees":[{"name":"new","file":"src/gen/m-CORE.setting","line":9435,"id":59620528,"entries":2,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":25,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":16,"callees":[{"name":"BUILD","file":"src/gen/m-CORE.setting","line":9441,"id":59620832,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":9,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":9,"allocations":[{"id":62200016,"type":"Scalar","spesh":10,"jit":0,"count":10}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":4,"jit":0,"count":8},{"id":65564936,"type":"MapIter","spesh":1,"jit":0,"count":2},{"id":35941008,"type":"BOOTArray","spesh":1,"jit":0,"count":2},{"id":62199800,"type":"ListIter","spesh":1,"jit":0,"count":2}]},{"name":"list","file":"src/gen/m-CORE.setting","line":1669,"id":59226544,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[{"id":35941008,"type":"BOOTArray","spesh":0,"jit":2,"count":2}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":4}]}],"allocations":[]},{"name":"sink","file":"src/gen/m-CORE.setting","line":10346,"id":58393696,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2741,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":20,"callees":[{"name":"gimme","file":"src/gen/m-CORE.setting","line":9860,"id":59637248,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2721,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":56,"callees":[{"name":"infinite","file":"src/gen/m-CORE.setting","line":9396,"id":59619008,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":12,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":12,"callees":[{"name":"infinite","file":"src/gen/m-CORE.setting","line":960,"id":59170912,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4947,"id":58581760,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9338,"id":59616576,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2652,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":15,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9339,"id":59616880,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":2636,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":66,"callees":[{"name":"flattens","file":"src/gen/m-CORE.setting","line":9805,"id":59634208,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5755,"id":58668704,"entries":4,"spesh_entries":4,"jit_entries":0,"inlined_entries":0,"inclusive_time":5,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":9364,"id":59618096,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":2561,"osr":0,"deopt_one":2,"deopt_all":0,"exclusive_time":35,"callees":[{"name":"infinite","file":"src/gen/m-CORE.setting","line":960,"id":59170912,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"iterator","file":"src/gen/m-CORE.setting","line":9056,"id":59596512,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9454,"id":59621440,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2525,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":13,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9455,"id":59621744,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2512,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":194,"callees":[{"name":"count","file":"src/gen/m-CORE.setting","line":3798,"id":59297984,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":7,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":7,"callees":[{"name":"count","file":"src/gen/m-CORE.setting","line":12388,"id":59748208,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5752,"id":58668400,"entries":6,"spesh_entries":0,"jit_entries":6,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]},{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":5443,"id":58653504,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":20,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":14,"callees":[{"name":"Bridge","file":"src/gen/m-CORE.setting","line":5522,"id":59418368,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[{"id":62199704,"type":"Num","spesh":0,"jit":2,"count":2}]},{"name":"Bridge","file":"src/gen/m-CORE.setting","line":5904,"id":59439040,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":6253,"id":58692416,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[]},{"name":"phasers","file":"src/gen/m-CORE.setting","line":3850,"id":59301936,"entries":4,"spesh_entries":0,"jit_entries":4,"inlined_entries":0,"inclusive_time":8,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"allocations":[]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":939,"id":59168176,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":16,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":13,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2846,"id":61723200,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":2,"count":2}]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":8804,"id":59579184,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9338,"id":59616576,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":214,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":9,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9339,"id":59616880,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":205,"osr":0,"deopt_one":2,"deopt_all":0,"exclusive_time":67,"callees":[{"name":"flattens","file":"src/gen/m-CORE.setting","line":9452,"id":59621136,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5755,"id":58668704,"entries":14,"spesh_entries":14,"jit_entries":0,"inlined_entries":0,"inclusive_time":5,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":9364,"id":59618096,"entries":6,"spesh_entries":0,"jit_entries":6,"inlined_entries":0,"inclusive_time":129,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":47,"callees":[{"name":"iterator","file":"src/gen/m-CORE.setting","line":9884,"id":59639072,"entries":2,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":25,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":13,"callees":[{"name":"Parcel","file":"src/gen/m-CORE.setting","line":9814,"id":59634816,"entries":2,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":12,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":12,"callees":[{"name":"defined","file":"src/gen/m-CORE.setting","line":947,"id":59169392,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":35941008,"type":"BOOTArray","spesh":0,"jit":1,"count":2},{"id":62199728,"type":"Parcel","spesh":0,"jit":1,"count":2}]}],"allocations":[{"id":62199800,"type":"ListIter","spesh":0,"jit":1,"count":2}]},{"name":"infix:<->","file":"src/gen/m-CORE.setting","line":5686,"id":58663232,"entries":4,"spesh_entries":4,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9338,"id":59616576,"entries":4,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":53,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":16,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9339,"id":59616880,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":36,"osr":0,"deopt_one":2,"deopt_all":0,"exclusive_time":33,"callees":[{"name":"flattens","file":"src/gen/m-CORE.setting","line":9805,"id":59634208,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5755,"id":58668704,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"REIFY","file":"src/gen/m-CORE.setting","line":10287,"id":59666432,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":2,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":4,"count":4},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":4,"count":4},{"id":62200040,"type":"IntLexRef","spesh":0,"jit":2,"count":2},{"id":62199728,"type":"Parcel","spesh":0,"jit":2,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":4},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":10}]},{"name":"iterator","file":"src/gen/m-CORE.setting","line":9404,"id":59619312,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":62200040,"type":"IntLexRef","spesh":0,"jit":4,"count":4}]},{"name":"REIFY","file":"src/gen/m-CORE.setting","line":9632,"id":59625088,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":2,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":4,"count":4},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":4,"count":4},{"id":62200040,"type":"IntLexRef","spesh":0,"jit":14,"count":14},{"id":62199728,"type":"Parcel","spesh":0,"jit":2,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":2,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":6,"count":6}]},{"name":"infix:</>","file":"src/gen/m-CORE.setting","line":12758,"id":58799120,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":65,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":7,"callees":[{"name":"DIVIDE_NUMBERS","file":"src/gen/m-CORE.setting","line":12625,"id":58793344,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":57,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":41,"callees":[{"name":"infix:<gcd>","file":"src/gen/m-CORE.setting","line":5726,"id":58666272,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[{"id":62199680,"type":"Int","spesh":0,"jit":2,"count":2}]},{"name":"infix:<div>","file":"src/gen/m-CORE.setting","line":5697,"id":58664144,"entries":4,"spesh_entries":0,"jit_entries":4,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[{"id":62199680,"type":"Int","spesh":0,"jit":4,"count":4}]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5752,"id":58668400,"entries":4,"spesh_entries":0,"jit_entries":4,"inlined_entries":0,"inclusive_time":9,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":9,"allocations":[]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":4},{"id":65566496,"type":"Rat","spesh":0,"jit":0,"count":2}]}],"allocations":[]},{"name":"floor","file":"src/gen/m-CORE.setting","line":12466,"id":59751856,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":5,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"callees":[{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":5741,"id":58667488,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":2,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"infix:<>>","file":"src/gen/m-CORE.setting","line":5766,"id":58669616,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"prefix:<+>","file":"src/gen/m-CORE.setting","line":5050,"id":58595440,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"callees":[{"name":"Numeric","file":"src/gen/m-CORE.setting","line":8805,"id":59579488,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":2,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":5741,"id":58667488,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4947,"id":58581760,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"","file":"lib/NativeCall.pm","line":42,"id":99483488,"entries":4,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1889,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":23,"callees":[{"name":"param_hash_for","file":"lib/NativeCall.pm","line":18,"id":99460384,"entries":4,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1866,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":110,"callees":[{"name":"type","file":"src/gen/m-CORE.setting","line":12113,"id":59722368,"entries":8,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":6,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"allocations":[]},{"name":"ACCEPTS","file":"src/gen/m-CORE.setting","line":895,"id":59164832,"entries":6,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[]},{"name":"find_method","file":"src/gen/m-Metamodel.nqp","line":1607,"id":61953440,"entries":4,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":23,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":23,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":4},{"id":35940984,"type":"BOOTStr","spesh":0,"jit":0,"count":4}]},{"name":"type_code_for","file":"lib/NativeCall.pm","line":146,"id":99507392,"entries":4,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1654,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":105,"callees":[{"name":"bind_sig","file":"src/gen/m-BOOTSTRAP.nqp","line":832,"id":61698880,"entries":4,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":89,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":22,"callees":[{"name":"bind","file":"src/gen/m-BOOTSTRAP.nqp","line":569,"id":61697360,"entries":4,"spesh_entries":4,"jit_entries":0,"inlined_entries":0,"inclusive_time":66,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":34,"callees":[{"name":"bind_one_param","file":"src/gen/m-BOOTSTRAP.nqp","line":161,"id":61696144,"entries":4,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":31,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":31,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":4}]}],"allocations":[]}],"allocations":[{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":4},{"id":35941152,"type":"BOOTContext","spesh":0,"jit":0,"count":4}]},{"name":"name","file":"src/gen/m-Metamodel.nqp","line":69,"id":61904800,"entries":6,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":10,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":10,"allocations":[]},{"name":"postcircumfix:<{ }>","file":"src/gen/m-CORE.setting","line":3584,"id":58534032,"entries":4,"spesh_entries":0,"jit_entries":4,"inlined_entries":0,"inclusive_time":1369,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":104,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1919,"id":61717424,"entries":4,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":810,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":654,"callees":[{"name":"is_bindable","file":"src/gen/m-BOOTSTRAP.nqp","line":884,"id":61699184,"entries":4,"spesh_entries":4,"jit_entries":0,"inlined_entries":0,"inclusive_time":155,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":19,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":890,"id":61699488,"entries":4,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":135,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":9,"callees":[{"name":"bind","file":"src/gen/m-BOOTSTRAP.nqp","line":569,"id":61697360,"entries":4,"spesh_entries":4,"jit_entries":0,"inlined_entries":0,"inclusive_time":126,"osr":0,"deopt_one":4,"deopt_all":0,"exclusive_time":70,"callees":[{"name":"bind_one_param","file":"src/gen/m-BOOTSTRAP.nqp","line":161,"id":61696144,"entries":16,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":55,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":55,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":16},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":4}]}],"allocations":[{"id":62199920,"type":"Hash","spesh":4,"jit":0,"count":4}]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":4,"jit":0,"count":4}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":8},{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":8},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":4},{"id":35941224,"type":"CallCapture","spesh":0,"jit":0,"count":4}]},{"name":"postcircumfix:<{ }>","file":"src/gen/m-CORE.setting","line":3602,"id":58535856,"entries":4,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":455,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":52,"callees":[{"name":"FLATTENABLE_LIST","file":"src/gen/m-CORE.setting","line":11297,"id":58452976,"entries":4,"spesh_entries":0,"jit_entries":4,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":35941008,"type":"BOOTArray","spesh":0,"jit":4,"count":4}]},{"name":"FLATTENABLE_HASH","file":"src/gen/m-CORE.setting","line":11298,"id":58453280,"entries":4,"spesh_entries":0,"jit_entries":4,"inlined_entries":0,"inclusive_time":7,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":7,"allocations":[]},{"name":"SLICE_ONE_HASH","file":"src/gen/m-CORE.setting","line":2840,"id":58464416,"entries":4,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":393,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":71,"callees":[{"name":"CLONE-HASH-DECONTAINERIZED","file":"src/gen/m-CORE.setting","line":869,"id":58319520,"entries":4,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":20,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":20,"allocations":[{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":4},{"id":35941128,"type":"BOOTIter","spesh":0,"jit":0,"count":4}]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1545,"id":61714688,"entries":4,"spesh_entries":4,"jit_entries":0,"inlined_entries":0,"inclusive_time":6,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"allocations":[{"id":62199512,"type":"Block","spesh":4,"jit":0,"count":4},{"id":35941080,"type":"BOOTCode","spesh":4,"jit":0,"count":4}]},{"name":"","file":"src/gen/m-CORE.setting","line":2844,"id":58464720,"entries":4,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":192,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":41,"callees":[{"name":"DELETEKEY","file":"src/gen/m-CORE.setting","line":2389,"id":58381536,"entries":4,"spesh_entries":3,"jit_entries":0,"inlined_entries":0,"inclusive_time":19,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":17,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2849,"id":61723504,"entries":4,"spesh_entries":0,"jit_entries":4,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199920,"type":"Hash","spesh":0,"jit":4,"count":4}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":3,"jit":0,"count":4}]},{"name":"","file":"src/gen/m-CORE.setting","line":2934,"id":58473232,"entries":4,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":132,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":93,"callees":[{"name":"DELETEKEY","file":"src/gen/m-CORE.setting","line":2389,"id":58381536,"entries":4,"spesh_entries":4,"jit_entries":0,"inlined_entries":0,"inclusive_time":20,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":14,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2849,"id":61723504,"entries":4,"spesh_entries":0,"jit_entries":4,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199920,"type":"Hash","spesh":0,"jit":4,"count":4}]},{"name":"","file":"src/gen/m-CORE.setting","line":2390,"id":58382144,"entries":4,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":4,"jit":0,"count":4}]},{"name":"exists_key","file":"src/gen/m-CORE.setting","line":11199,"id":58444768,"entries":4,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":11,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":11,"allocations":[]},{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":5741,"id":58667488,"entries":4,"spesh_entries":0,"jit_entries":4,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":4901,"id":59383104,"entries":8,"spesh_entries":0,"jit_entries":4,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]},{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4946,"id":58581456,"entries":4,"spesh_entries":0,"jit_entries":4,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":8},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":4}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":40},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":4}]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":939,"id":59168176,"entries":4,"spesh_entries":4,"jit_entries":0,"inlined_entries":0,"inclusive_time":102,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":25,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2846,"id":61723200,"entries":4,"spesh_entries":0,"jit_entries":4,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":4,"count":4}]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":9779,"id":59630560,"entries":4,"spesh_entries":0,"jit_entries":4,"inlined_entries":0,"inclusive_time":73,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":16,"callees":[{"name":"gimme","file":"src/gen/m-CORE.setting","line":9860,"id":59637248,"entries":4,"spesh_entries":0,"jit_entries":4,"inlined_entries":0,"inclusive_time":55,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":30,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9870,"id":59638160,"entries":4,"spesh_entries":0,"jit_entries":4,"inlined_entries":0,"inclusive_time":24,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":24,"callees":[{"name":"Int","file":"src/gen/m-CORE.setting","line":5501,"id":59416544,"entries":4,"spesh_entries":0,"jit_entries":4,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":8,"count":8}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":4,"count":4},{"id":62200016,"type":"Scalar","spesh":0,"jit":8,"count":8}]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":5497,"id":59416240,"entries":4,"spesh_entries":0,"jit_entries":4,"inlined_entries":4,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":4},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":4},{"id":62199920,"type":"Hash","spesh":0,"jit":0,"count":4},{"id":62199848,"type":"Array","spesh":0,"jit":0,"count":4}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":4},{"id":62199920,"type":"Hash","spesh":0,"jit":0,"count":4}]}],"allocations":[]},{"name":"postcircumfix:<{ }>","file":"src/gen/m-CORE.setting","line":3587,"id":58534336,"entries":4,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":31,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":19,"callees":[{"name":"at_key","file":"src/gen/m-CORE.setting","line":11333,"id":59667952,"entries":4,"spesh_entries":0,"jit_entries":3,"inlined_entries":0,"inclusive_time":11,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":11,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":3,"count":4}]}],"allocations":[]},{"name":"","file":"lib/NativeCall.pm","line":149,"id":99511424,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":33,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":12,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":642,"id":58303104,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":20,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":18,"callees":[{"name":"RETURN-PARCEL","file":"src/gen/m-CORE.setting","line":627,"id":58302496,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":0,"count":2}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":4}]},{"name":"","file":"src/gen/m-CORE.setting","line":642,"id":58303104,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":14,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":13,"callees":[{"name":"RETURN-PARCEL","file":"src/gen/m-CORE.setting","line":627,"id":58302496,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":0,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":8}]},{"name":"ACCEPTS","file":"src/gen/m-CORE.setting","line":894,"id":59164528,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":66,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":18,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2846,"id":61723200,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":2,"count":2}]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1919,"id":61717424,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":45,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":43,"callees":[{"name":"add_to_cache","file":"src/gen/m-BOOTSTRAP.nqp","line":2158,"id":61717728,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":4,"jit":0,"count":4},{"id":35942160,"type":"NQPArray","spesh":4,"jit":0,"count":4},{"id":35941032,"type":"BOOTHash","spesh":2,"jit":0,"count":2}]},{"name":"ACCEPTS","file":"src/gen/m-CORE.setting","line":895,"id":59164832,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":8},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":8},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":4},{"id":62199656,"type":"Str","spesh":0,"jit":0,"count":4}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":6}]},{"name":"find_method","file":"src/gen/m-Metamodel.nqp","line":1023,"id":61937328,"entries":2,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":63,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":52,"callees":[{"name":"submethod_table","file":"src/gen/m-Metamodel.nqp","line":487,"id":61922736,"entries":2,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]},{"name":"mro","file":"src/gen/m-Metamodel.nqp","line":991,"id":61936416,"entries":2,"spesh_entries":0,"jit_entries":1,"inlined_entries":1,"inclusive_time":5,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"allocations":[]},{"name":"method_table","file":"src/gen/m-Metamodel.nqp","line":3075,"id":61994784,"entries":2,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":35941032,"type":"BOOTHash","spesh":0,"jit":1,"count":2}]},{"name":"method_table","file":"src/gen/m-Metamodel.nqp","line":482,"id":61922432,"entries":4,"spesh_entries":0,"jit_entries":4,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":35941032,"type":"BOOTHash","spesh":0,"jit":1,"count":2},{"id":35942184,"type":"NQPArrayIter","spesh":0,"jit":1,"count":2}]},{"name":"fire_phasers","file":"src/gen/m-CORE.setting","line":3843,"id":59301328,"entries":2,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":16,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":15,"callees":[{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4947,"id":58581760,"entries":2,"spesh_entries":1,"jit_entries":1,"inlined_entries":1,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":1,"jit":0,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":10},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":6},{"id":62200040,"type":"IntLexRef","spesh":0,"jit":0,"count":12},{"id":62199728,"type":"Parcel","spesh":0,"jit":0,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":6}]}],"allocations":[]},{"name":"REIFY","file":"src/gen/m-CORE.setting","line":10287,"id":59666432,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":2,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":4,"count":4},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":4,"count":4},{"id":62200040,"type":"IntLexRef","spesh":0,"jit":4,"count":4},{"id":62199728,"type":"Parcel","spesh":0,"jit":2,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":6}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":6}]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":2}]},{"name":"dispatch:<.?>","file":"src/gen/m-CORE.setting","line":1358,"id":59207696,"entries":4,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":30,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":30,"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":8},{"id":62199944,"type":"Capture","spesh":0,"jit":0,"count":4}]},{"name":"guess_library_name","file":"lib/NativeCall.pm","line":172,"id":99533792,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":5580,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":142,"callees":[{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4946,"id":58581456,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2434,"id":61720160,"entries":4,"spesh_entries":0,"jit_entries":4,"inlined_entries":0,"inclusive_time":17,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":7,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1545,"id":61714688,"entries":4,"spesh_entries":4,"jit_entries":0,"inlined_entries":0,"inclusive_time":10,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":10,"allocations":[{"id":62199632,"type":"Regex","spesh":4,"jit":0,"count":4},{"id":35941080,"type":"BOOTCode","spesh":4,"jit":0,"count":4}]}],"allocations":[]},{"name":"ACCEPTS","file":"src/gen/m-CORE.setting","line":15620,"id":59971344,"entries":4,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":238,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":56,"callees":[{"name":"!cursor_init","file":"gen/moar/stage2/QRegex.nqp","line":1063,"id":37837040,"entries":4,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":68,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":58,"callees":[{"name":"CREATE","file":"src/gen/m-CORE.setting","line":962,"id":59171216,"entries":4,"spesh_entries":0,"jit_entries":4,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62201504,"type":"Cursor","spesh":0,"jit":4,"count":4}]},{"name":"Num","file":"src/gen/m-CORE.setting","line":5507,"id":59417152,"entries":4,"spesh_entries":0,"jit_entries":4,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[{"id":62199704,"type":"Num","spesh":0,"jit":4,"count":4}]},{"name":"!cursor_start_cur","file":"gen/moar/stage2/QRegex.nqp","line":1148,"id":37837952,"entries":4,"spesh_entries":0,"jit_entries":4,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[{"id":62201504,"type":"Cursor","spesh":0,"jit":4,"count":4},{"id":35941536,"type":"BOOTIntArray","spesh":0,"jit":4,"count":4}]}],"allocations":[{"id":35943552,"type":"ParseShared","spesh":0,"jit":0,"count":4},{"id":35941584,"type":"BOOTStrArray","spesh":0,"jit":0,"count":4},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":4}]},{"name":"","file":"/home/x/.rakudobrew/moar-nom/install/languages/perl6/lib/NativeCall.pm.moarvm","line":-1,"id":99535808,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":71,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":56,"callees":[{"name":"!cursor_start","file":"gen/moar/stage2/QRegex.nqp","line":1125,"id":37837648,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[{"id":62201504,"type":"Cursor","spesh":0,"jit":2,"count":2},{"id":35941536,"type":"BOOTIntArray","spesh":0,"jit":2,"count":2}]},{"name":"!shared","file":"gen/moar/stage2/QRegex.nqp","line":1252,"id":37841600,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"alpha","file":"gen/moar/stage2/QRegex.nqp","line":1555,"id":37850720,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":9,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"callees":[{"name":"!cursor_start_cur","file":"gen/moar/stage2/QRegex.nqp","line":1148,"id":37837952,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":62201504,"type":"Cursor","spesh":0,"jit":2,"count":2},{"id":35941536,"type":"BOOTIntArray","spesh":0,"jit":2,"count":2}]}],"allocations":[]},{"name":"!cursor_fail","file":"gen/moar/stage2/QRegex.nqp","line":1206,"id":37839776,"entries":2,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]}],"allocations":[{"id":62199920,"type":"Hash","spesh":0,"jit":0,"count":2}]},{"name":"MATCH_SAVE","file":"src/gen/m-CORE.setting","line":15413,"id":59961616,"entries":4,"spesh_entries":0,"jit_entries":4,"inlined_entries":0,"inclusive_time":10,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"callees":[{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5752,"id":58668400,"entries":4,"spesh_entries":0,"jit_entries":4,"inlined_entries":4,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[]}],"allocations":[]},{"name":"","file":"/home/x/.rakudobrew/moar-nom/install/languages/perl6/lib/NativeCall.pm.moarvm","line":-1,"id":99537824,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":32,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":28,"callees":[{"name":"!cursor_start","file":"gen/moar/stage2/QRegex.nqp","line":1125,"id":37837648,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62201504,"type":"Cursor","spesh":0,"jit":2,"count":2},{"id":35941536,"type":"BOOTIntArray","spesh":0,"jit":2,"count":2}]},{"name":"!shared","file":"gen/moar/stage2/QRegex.nqp","line":1252,"id":37841600,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"!cursor_fail","file":"gen/moar/stage2/QRegex.nqp","line":1206,"id":37839776,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":62199920,"type":"Hash","spesh":0,"jit":0,"count":2}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2}]},{"name":"DYNAMIC","file":"src/gen/m-CORE.setting","line":575,"id":58299152,"entries":6,"spesh_entries":0,"jit_entries":6,"inlined_entries":0,"inclusive_time":152,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":98,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":577,"id":58299456,"entries":6,"spesh_entries":6,"jit_entries":0,"inlined_entries":0,"inclusive_time":54,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":54,"allocations":[{"id":62200016,"type":"Scalar","spesh":6,"jit":0,"count":6}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":6,"count":6}]},{"name":"<anon>","file":"src/gen/m-CORE.setting","line":3918,"id":59306192,"entries":6,"spesh_entries":0,"jit_entries":6,"inlined_entries":0,"inclusive_time":10,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":10,"allocations":[]},{"name":"postcircumfix:<{ }>","file":"src/gen/m-CORE.setting","line":3584,"id":58534032,"entries":6,"spesh_entries":0,"jit_entries":6,"inlined_entries":0,"inclusive_time":1980,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":43,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1919,"id":61717424,"entries":6,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1284,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1032,"callees":[{"name":"is_bindable","file":"src/gen/m-BOOTSTRAP.nqp","line":884,"id":61699184,"entries":6,"spesh_entries":6,"jit_entries":0,"inlined_entries":0,"inclusive_time":251,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":26,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":890,"id":61699488,"entries":6,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":225,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":19,"callees":[{"name":"bind","file":"src/gen/m-BOOTSTRAP.nqp","line":569,"id":61697360,"entries":6,"spesh_entries":6,"jit_entries":0,"inlined_entries":0,"inclusive_time":206,"osr":0,"deopt_one":6,"deopt_all":0,"exclusive_time":112,"callees":[{"name":"bind_one_param","file":"src/gen/m-BOOTSTRAP.nqp","line":161,"id":61696144,"entries":24,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":94,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":94,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":24},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":6}]}],"allocations":[{"id":62199920,"type":"Hash","spesh":6,"jit":0,"count":6}]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":6,"jit":0,"count":6}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":12},{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":12},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":6},{"id":35941224,"type":"CallCapture","spesh":0,"jit":0,"count":6}]},{"name":"postcircumfix:<{ }>","file":"src/gen/m-CORE.setting","line":3602,"id":58535856,"entries":6,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":652,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":70,"callees":[{"name":"FLATTENABLE_LIST","file":"src/gen/m-CORE.setting","line":11297,"id":58452976,"entries":6,"spesh_entries":0,"jit_entries":6,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[{"id":35941008,"type":"BOOTArray","spesh":0,"jit":6,"count":6}]},{"name":"FLATTENABLE_HASH","file":"src/gen/m-CORE.setting","line":11298,"id":58453280,"entries":6,"spesh_entries":0,"jit_entries":6,"inlined_entries":0,"inclusive_time":8,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"allocations":[]},{"name":"SLICE_ONE_HASH","file":"src/gen/m-CORE.setting","line":2840,"id":58464416,"entries":6,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":570,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":93,"callees":[{"name":"CLONE-HASH-DECONTAINERIZED","file":"src/gen/m-CORE.setting","line":869,"id":58319520,"entries":6,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":29,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":29,"allocations":[{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":6},{"id":35941128,"type":"BOOTIter","spesh":0,"jit":0,"count":6}]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1545,"id":61714688,"entries":6,"spesh_entries":6,"jit_entries":0,"inlined_entries":0,"inclusive_time":9,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":9,"allocations":[{"id":62199512,"type":"Block","spesh":6,"jit":0,"count":6},{"id":35941080,"type":"BOOTCode","spesh":6,"jit":0,"count":6}]},{"name":"","file":"src/gen/m-CORE.setting","line":2844,"id":58464720,"entries":6,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":297,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":49,"callees":[{"name":"DELETEKEY","file":"src/gen/m-CORE.setting","line":2389,"id":58381536,"entries":6,"spesh_entries":6,"jit_entries":0,"inlined_entries":0,"inclusive_time":21,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":19,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2849,"id":61723504,"entries":6,"spesh_entries":0,"jit_entries":6,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199920,"type":"Hash","spesh":0,"jit":6,"count":6}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":6,"jit":0,"count":6}]},{"name":"","file":"src/gen/m-CORE.setting","line":2934,"id":58473232,"entries":6,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":226,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":177,"callees":[{"name":"DELETEKEY","file":"src/gen/m-CORE.setting","line":2389,"id":58381536,"entries":6,"spesh_entries":6,"jit_entries":0,"inlined_entries":0,"inclusive_time":29,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":21,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2849,"id":61723504,"entries":6,"spesh_entries":0,"jit_entries":6,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199920,"type":"Hash","spesh":0,"jit":6,"count":6}]},{"name":"","file":"src/gen/m-CORE.setting","line":2390,"id":58382144,"entries":6,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":6,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":6,"jit":0,"count":6}]},{"name":"exists_key","file":"src/gen/m-CORE.setting","line":11199,"id":58444768,"entries":6,"spesh_entries":0,"jit_entries":4,"inlined_entries":0,"inclusive_time":12,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":12,"allocations":[]},{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":5741,"id":58667488,"entries":6,"spesh_entries":0,"jit_entries":6,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":4901,"id":59383104,"entries":12,"spesh_entries":0,"jit_entries":12,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4946,"id":58581456,"entries":6,"spesh_entries":0,"jit_entries":6,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":12},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":6}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":60},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":6}]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":939,"id":59168176,"entries":6,"spesh_entries":6,"jit_entries":0,"inlined_entries":0,"inclusive_time":141,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":38,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2846,"id":61723200,"entries":6,"spesh_entries":0,"jit_entries":6,"inlined_entries":0,"inclusive_time":5,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":6,"count":6}]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":9779,"id":59630560,"entries":6,"spesh_entries":0,"jit_entries":6,"inlined_entries":0,"inclusive_time":97,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":22,"callees":[{"name":"gimme","file":"src/gen/m-CORE.setting","line":9860,"id":59637248,"entries":6,"spesh_entries":0,"jit_entries":6,"inlined_entries":0,"inclusive_time":73,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":41,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9870,"id":59638160,"entries":6,"spesh_entries":0,"jit_entries":6,"inlined_entries":0,"inclusive_time":32,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":31,"callees":[{"name":"Int","file":"src/gen/m-CORE.setting","line":5501,"id":59416544,"entries":6,"spesh_entries":0,"jit_entries":6,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":12,"count":12}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":6,"count":6},{"id":62200016,"type":"Scalar","spesh":0,"jit":12,"count":12}]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":5497,"id":59416240,"entries":6,"spesh_entries":0,"jit_entries":6,"inlined_entries":6,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":6},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":6},{"id":62199920,"type":"Hash","spesh":0,"jit":0,"count":6},{"id":62199848,"type":"Array","spesh":0,"jit":0,"count":6}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":6},{"id":62199920,"type":"Hash","spesh":0,"jit":0,"count":6}]}],"allocations":[]},{"name":"","file":"lib/NativeCall.pm","line":185,"id":99583184,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3037,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":100,"callees":[{"name":"DYNAMIC","file":"src/gen/m-CORE.setting","line":575,"id":58299152,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":36,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":24,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":577,"id":58299456,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":12,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":12,"allocations":[{"id":62200016,"type":"Scalar","spesh":2,"jit":0,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":2,"count":2}]},{"name":"<anon>","file":"src/gen/m-CORE.setting","line":3918,"id":59306192,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]},{"name":"postcircumfix:<{ }>","file":"src/gen/m-CORE.setting","line":3587,"id":58534336,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":17,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":9,"callees":[{"name":"at_key","file":"src/gen/m-CORE.setting","line":11333,"id":59667952,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":8,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2}]}],"allocations":[]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1489,"id":61712864,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[{"id":62199488,"type":"Code","spesh":2,"jit":0,"count":2},{"id":35941080,"type":"BOOTCode","spesh":2,"jit":0,"count":2}]},{"name":"subst-mutate","file":"src/gen/m-CORE.setting","line":4724,"id":59371856,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2867,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":34,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1919,"id":61717424,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":160,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":36,"callees":[{"name":"is_bindable","file":"src/gen/m-BOOTSTRAP.nqp","line":884,"id":61699184,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":123,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":890,"id":61699488,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":115,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"callees":[{"name":"bind","file":"src/gen/m-BOOTSTRAP.nqp","line":569,"id":61697360,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":110,"osr":0,"deopt_one":2,"deopt_all":0,"exclusive_time":55,"callees":[{"name":"bind_one_param","file":"src/gen/m-BOOTSTRAP.nqp","line":161,"id":61696144,"entries":14,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":51,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":51,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":14},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":10}]},{"name":"handle_optional","file":"src/gen/m-BOOTSTRAP.nqp","line":534,"id":61697056,"entries":4,"spesh_entries":4,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]}],"allocations":[{"id":62199920,"type":"Hash","spesh":2,"jit":0,"count":2}]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":2,"jit":0,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":4,"jit":0,"count":4},{"id":35942160,"type":"NQPArray","spesh":4,"jit":0,"count":4},{"id":35941032,"type":"BOOTHash","spesh":2,"jit":0,"count":2},{"id":35941224,"type":"CallCapture","spesh":2,"jit":0,"count":2}]},{"name":"subst-mutate","file":"src/gen/m-CORE.setting","line":7484,"id":59517168,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2672,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":132,"callees":[{"name":"postcircumfix:<{ }>","file":"src/gen/m-CORE.setting","line":3587,"id":58534336,"entries":4,"spesh_entries":0,"jit_entries":3,"inlined_entries":0,"inclusive_time":52,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":16,"callees":[{"name":"at_key","file":"src/gen/m-CORE.setting","line":11333,"id":59667952,"entries":4,"spesh_entries":3,"jit_entries":1,"inlined_entries":0,"inclusive_time":36,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":17,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":11341,"id":59668560,"entries":4,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":18,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":14,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1545,"id":61714688,"entries":4,"spesh_entries":4,"jit_entries":0,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[{"id":62199512,"type":"Block","spesh":4,"jit":0,"count":4},{"id":35941080,"type":"BOOTCode","spesh":4,"jit":0,"count":4}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":2,"count":4},{"id":62200016,"type":"Scalar","spesh":0,"jit":4,"count":8}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":3,"jit":1,"count":4}]}],"allocations":[]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1489,"id":61712864,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[{"id":62199488,"type":"Code","spesh":2,"jit":0,"count":2},{"id":35941080,"type":"BOOTCode","spesh":2,"jit":0,"count":2}]},{"name":"","file":"src/gen/m-CORE.setting","line":7491,"id":59517472,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2}]},{"name":"FLATTENABLE_LIST","file":"src/gen/m-CORE.setting","line":11297,"id":58452976,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":35941008,"type":"BOOTArray","spesh":0,"jit":2,"count":2}]},{"name":"FLATTENABLE_HASH","file":"src/gen/m-CORE.setting","line":11298,"id":58453280,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]},{"name":"match","file":"src/gen/m-CORE.setting","line":7402,"id":59508960,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":870,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":114,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1489,"id":61712864,"entries":4,"spesh_entries":4,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[{"id":62199488,"type":"Code","spesh":4,"jit":0,"count":4},{"id":35941080,"type":"BOOTCode","spesh":4,"jit":0,"count":4}]},{"name":"","file":"src/gen/m-CORE.setting","line":7406,"id":59509264,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":11,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":10,"callees":[{"name":"defined","file":"src/gen/m-CORE.setting","line":947,"id":59169392,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"defined","file":"src/gen/m-CORE.setting","line":947,"id":59169392,"entries":10,"spesh_entries":0,"jit_entries":8,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"postcircumfix:<{ }>","file":"src/gen/m-CORE.setting","line":3590,"id":58534640,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":79,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":66,"callees":[{"name":"assign_key","file":"src/gen/m-CORE.setting","line":11351,"id":59669168,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":12,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":12,"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":4},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":2}]}],"allocations":[]},{"name":"FLATTENABLE_LIST","file":"src/gen/m-CORE.setting","line":11297,"id":58452976,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":35941008,"type":"BOOTArray","spesh":0,"jit":2,"count":2}]},{"name":"FLATTENABLE_HASH","file":"src/gen/m-CORE.setting","line":11298,"id":58453280,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"!cursor_init","file":"gen/moar/stage2/QRegex.nqp","line":1063,"id":37837040,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":48,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":40,"callees":[{"name":"CREATE","file":"src/gen/m-CORE.setting","line":962,"id":59171216,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62201504,"type":"Cursor","spesh":0,"jit":2,"count":2}]},{"name":"Num","file":"src/gen/m-CORE.setting","line":5507,"id":59417152,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[{"id":62199704,"type":"Num","spesh":0,"jit":2,"count":2}]},{"name":"!cursor_start_cur","file":"gen/moar/stage2/QRegex.nqp","line":1148,"id":37837952,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[{"id":62201504,"type":"Cursor","spesh":0,"jit":2,"count":2},{"id":35941536,"type":"BOOTIntArray","spesh":0,"jit":2,"count":2}]}],"allocations":[{"id":35943552,"type":"ParseShared","spesh":0,"jit":0,"count":2},{"id":35941584,"type":"BOOTStrArray","spesh":0,"jit":0,"count":2},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":2}]},{"name":"","file":"/home/x/.rakudobrew/moar-nom/install/languages/perl6/lib/NativeCall.pm.moarvm","line":-1,"id":99585200,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":51,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":45,"callees":[{"name":"!cursor_start","file":"gen/moar/stage2/QRegex.nqp","line":1125,"id":37837648,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[{"id":62201504,"type":"Cursor","spesh":0,"jit":2,"count":2},{"id":35941536,"type":"BOOTIntArray","spesh":0,"jit":2,"count":2}]},{"name":"!shared","file":"gen/moar/stage2/QRegex.nqp","line":1252,"id":37841600,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"!cursor_pass","file":"gen/moar/stage2/QRegex.nqp","line":1195,"id":37839472,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]}],"allocations":[{"id":62199920,"type":"Hash","spesh":0,"jit":0,"count":2}]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1545,"id":61714688,"entries":4,"spesh_entries":4,"jit_entries":0,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[{"id":62199512,"type":"Block","spesh":4,"jit":0,"count":4},{"id":35941080,"type":"BOOTCode","spesh":4,"jit":0,"count":4}]},{"name":"GATHER","file":"src/gen/m-CORE.setting","line":9727,"id":58761424,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":50,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":22,"callees":[{"name":"new","file":"src/gen/m-CORE.setting","line":9668,"id":59626000,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":21,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":17,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1545,"id":61714688,"entries":6,"spesh_entries":6,"jit_entries":0,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[{"id":62199512,"type":"Block","spesh":6,"jit":0,"count":6},{"id":35941080,"type":"BOOTCode","spesh":6,"jit":0,"count":6}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":6},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":4},{"id":62203040,"type":"GatherIter","spesh":0,"jit":0,"count":2}]},{"name":"list","file":"src/gen/m-CORE.setting","line":1669,"id":59226544,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":6,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"allocations":[{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":2}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2}]},{"name":"","file":"src/gen/m-CORE.setting","line":7479,"id":59513520,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":460,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":17,"callees":[{"name":"postcircumfix:<[ ]>","file":"src/gen/m-CORE.setting","line":3333,"id":58509104,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":441,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":13,"callees":[{"name":"at_pos","file":"src/gen/m-CORE.setting","line":9827,"id":59635728,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":428,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":14,"callees":[{"name":"exists_pos","file":"src/gen/m-CORE.setting","line":9845,"id":59636640,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":414,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":12,"callees":[{"name":"gimme","file":"src/gen/m-CORE.setting","line":9860,"id":59637248,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":401,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":16,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9870,"id":59638160,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":385,"osr":0,"deopt_one":2,"deopt_all":0,"exclusive_time":23,"callees":[{"name":"Int","file":"src/gen/m-CORE.setting","line":5501,"id":59416544,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9338,"id":59616576,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":361,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":13,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9339,"id":59616880,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":348,"osr":0,"deopt_one":2,"deopt_all":0,"exclusive_time":72,"callees":[{"name":"flattens","file":"src/gen/m-CORE.setting","line":9805,"id":59634208,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5755,"id":58668704,"entries":10,"spesh_entries":10,"jit_entries":0,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":9364,"id":59618096,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":265,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":35,"callees":[{"name":"iterator","file":"src/gen/m-CORE.setting","line":9056,"id":59596512,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"infix:<->","file":"src/gen/m-CORE.setting","line":5686,"id":58663232,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9698,"id":59628128,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":227,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":24,"callees":[{"name":"defined","file":"src/gen/m-CORE.setting","line":947,"id":59169392,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4946,"id":58581456,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":9699,"id":59628432,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":202,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":19,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9679,"id":59627520,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":183,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":12,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9674,"id":59626912,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":169,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":10,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":7417,"id":59509872,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":159,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":34,"callees":[{"name":"pos","file":"gen/moar/stage2/QRegex.nqp","line":996,"id":37836128,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"infix:<>=>","file":"src/gen/m-CORE.setting","line":5773,"id":58670224,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]},{"name":"MATCH_SAVE","file":"src/gen/m-CORE.setting","line":15413,"id":59961616,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":81,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"callees":[{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5752,"id":58668400,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":2,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"MATCH","file":"src/gen/m-CORE.setting","line":15311,"id":59956144,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":72,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":25,"callees":[{"name":"orig","file":"gen/moar/stage2/QRegex.nqp","line":993,"id":37835216,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":15324,"id":59956752,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":46,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":24,"callees":[{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4947,"id":58581760,"entries":6,"spesh_entries":0,"jit_entries":6,"inlined_entries":6,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2487,"id":61721376,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":15330,"id":59957360,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":18,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":15332,"id":59957664,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":10,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"callees":[{"name":"infix:<>=>","file":"src/gen/m-CORE.setting","line":5773,"id":58670224,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":2,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":2,"count":2},{"id":35941128,"type":"BOOTIter","spesh":0,"jit":2,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":4,"count":4},{"id":62200016,"type":"Scalar","spesh":0,"jit":2,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":2,"count":2},{"id":68480552,"type":"Match","spesh":0,"jit":2,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":4,"count":4},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":2,"count":2}]}],"allocations":[]},{"name":"take","file":"src/gen/m-CORE.setting","line":669,"id":58305232,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":38,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":9,"callees":[{"name":"THROW","file":"src/gen/m-CORE.setting","line":619,"id":58302192,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":29,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":9,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9676,"id":59627216,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":20,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":7,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9671,"id":59626304,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":12,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":9,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1545,"id":61714688,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[{"id":62199512,"type":"Block","spesh":2,"jit":0,"count":2},{"id":35941080,"type":"BOOTCode","spesh":2,"jit":0,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2}]}],"allocations":[{"id":62199680,"type":"Int","spesh":0,"jit":0,"count":4}]}],"allocations":[]}],"allocations":[]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2}]},{"name":"","file":"src/gen/m-CORE.setting","line":9672,"id":59626608,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":2},{"id":62203040,"type":"GatherIter","spesh":0,"jit":0,"count":2},{"id":62199728,"type":"Parcel","spesh":0,"jit":0,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":4}]}],"allocations":[{"id":62200040,"type":"IntLexRef","spesh":0,"jit":2,"count":2}]},{"name":"REIFY","file":"src/gen/m-CORE.setting","line":10287,"id":59666432,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":5,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":2,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":2,"count":2},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":4,"count":4},{"id":62200040,"type":"IntLexRef","spesh":0,"jit":10,"count":10},{"id":62199728,"type":"Parcel","spesh":0,"jit":2,"count":2},{"id":62199800,"type":"ListIter","spesh":0,"jit":2,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":6}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":2,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":4}]}],"allocations":[]}],"allocations":[{"id":62200040,"type":"IntLexRef","spesh":0,"jit":0,"count":2}]}],"allocations":[]},{"name":"defined","file":"src/gen/m-CORE.setting","line":947,"id":59169392,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"postcircumfix:<[ ]>","file":"src/gen/m-CORE.setting","line":3333,"id":58509104,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":42,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"callees":[{"name":"at_pos","file":"src/gen/m-CORE.setting","line":9827,"id":59635728,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":36,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":11,"callees":[{"name":"exists_pos","file":"src/gen/m-CORE.setting","line":9845,"id":59636640,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":24,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"callees":[{"name":"gimme","file":"src/gen/m-CORE.setting","line":9860,"id":59637248,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":18,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":10,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9870,"id":59638160,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":7,"osr":0,"deopt_one":2,"deopt_all":0,"exclusive_time":7,"callees":[{"name":"Int","file":"src/gen/m-CORE.setting","line":5501,"id":59416544,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":2,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":4}]}],"allocations":[]}],"allocations":[{"id":62200040,"type":"IntLexRef","spesh":0,"jit":0,"count":2}]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":18},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":26},{"id":62199920,"type":"Hash","spesh":0,"jit":0,"count":4}]},{"name":"STORE","file":"src/gen/m-CORE.setting","line":10774,"id":58410416,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":163,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":34,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2846,"id":61723200,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":2,"count":2}]},{"name":"eager","file":"src/gen/m-CORE.setting","line":9834,"id":59636032,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":123,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":9,"callees":[{"name":"gimme","file":"src/gen/m-CORE.setting","line":9860,"id":59637248,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":114,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":35,"callees":[{"name":"infinite","file":"src/gen/m-CORE.setting","line":9396,"id":59619008,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[]},{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4947,"id":58581760,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9338,"id":59616576,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":74,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":11,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9339,"id":59616880,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":62,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":45,"callees":[{"name":"flattens","file":"src/gen/m-CORE.setting","line":10734,"id":58406768,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5755,"id":58668704,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"REIFY","file":"src/gen/m-CORE.setting","line":10763,"id":58409808,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":15,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":13,"callees":[{"name":"REIFY","file":"src/gen/m-CORE.setting","line":10287,"id":59666432,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]}],"allocations":[{"id":35941128,"type":"BOOTIter","spesh":0,"jit":2,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":4,"count":4}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":2,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":4,"count":4},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":4,"count":4},{"id":62200040,"type":"IntLexRef","spesh":0,"jit":2,"count":2},{"id":62199728,"type":"Parcel","spesh":0,"jit":2,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":6}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":6}]}],"allocations":[]},{"name":"sink","file":"src/gen/m-CORE.setting","line":10346,"id":58393696,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]}],"allocations":[{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":2},{"id":62199800,"type":"ListIter","spesh":0,"jit":0,"count":2}]},{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4947,"id":58581760,"entries":4,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":212,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":11,"callees":[{"name":"Bool","file":"src/gen/m-CORE.setting","line":939,"id":59168176,"entries":4,"spesh_entries":4,"jit_entries":0,"inlined_entries":0,"inclusive_time":201,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":47,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2846,"id":61723200,"entries":4,"spesh_entries":0,"jit_entries":4,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":4,"count":4}]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":9779,"id":59630560,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":150,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"callees":[{"name":"gimme","file":"src/gen/m-CORE.setting","line":9860,"id":59637248,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":142,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":11,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9870,"id":59638160,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":131,"osr":0,"deopt_one":2,"deopt_all":0,"exclusive_time":14,"callees":[{"name":"Int","file":"src/gen/m-CORE.setting","line":5501,"id":59416544,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9338,"id":59616576,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":117,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":9,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9339,"id":59616880,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":107,"osr":0,"deopt_one":2,"deopt_all":0,"exclusive_time":42,"callees":[{"name":"flattens","file":"src/gen/m-CORE.setting","line":10734,"id":58406768,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5755,"id":58668704,"entries":6,"spesh_entries":6,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":9364,"id":59618096,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":53,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":25,"callees":[{"name":"iterator","file":"src/gen/m-CORE.setting","line":9884,"id":59639072,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":20,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":9,"callees":[{"name":"Parcel","file":"src/gen/m-CORE.setting","line":9814,"id":59634816,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":11,"osr":0,"deopt_one":2,"deopt_all":0,"exclusive_time":10,"callees":[{"name":"defined","file":"src/gen/m-CORE.setting","line":947,"id":59169392,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":35941008,"type":"BOOTArray","spesh":0,"jit":2,"count":2},{"id":62199728,"type":"Parcel","spesh":0,"jit":2,"count":2}]}],"allocations":[{"id":62199800,"type":"ListIter","spesh":0,"jit":2,"count":2}]},{"name":"infix:<->","file":"src/gen/m-CORE.setting","line":5686,"id":58663232,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9338,"id":59616576,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":6,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":4}]}],"allocations":[{"id":62200040,"type":"IntLexRef","spesh":0,"jit":2,"count":2}]},{"name":"REIFY","file":"src/gen/m-CORE.setting","line":10763,"id":58409808,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":9,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":7,"callees":[{"name":"REIFY","file":"src/gen/m-CORE.setting","line":10287,"id":59666432,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":35941128,"type":"BOOTIter","spesh":0,"jit":2,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":4,"count":4}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":2,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":4,"count":4},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":4,"count":4},{"id":62200040,"type":"IntLexRef","spesh":0,"jit":6,"count":6},{"id":62199728,"type":"Parcel","spesh":0,"jit":2,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":6}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":2,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":2,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":4,"count":4}]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":5497,"id":59416240,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":2,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":15224,"id":59949456,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[]}],"allocations":[]},{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":5245,"id":58638912,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":60,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":23,"callees":[{"name":"Numeric","file":"src/gen/m-CORE.setting","line":9782,"id":59631472,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":34,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":7,"callees":[{"name":"elems","file":"src/gen/m-CORE.setting","line":9836,"id":59636336,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":27,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":9,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":642,"id":58303104,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":18,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":16,"callees":[{"name":"RETURN-PARCEL","file":"src/gen/m-CORE.setting","line":627,"id":58302496,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":0,"count":2}]}],"allocations":[]}],"allocations":[]},{"name":"Numeric","file":"src/gen/m-CORE.setting","line":5016,"id":59389488,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":5741,"id":58667488,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"postcircumfix:<[ ]>","file":"src/gen/m-CORE.setting","line":3333,"id":58509104,"entries":4,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":53,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":21,"callees":[{"name":"at_pos","file":"src/gen/m-CORE.setting","line":10659,"id":58402816,"entries":4,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":31,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":29,"callees":[{"name":"Int","file":"src/gen/m-CORE.setting","line":5501,"id":59416544,"entries":4,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":4}]}],"allocations":[]},{"name":"APPLY-MATCHES","file":"src/gen/m-CORE.setting","line":7542,"id":59520512,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1119,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":31,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1489,"id":61712864,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[{"id":62199488,"type":"Code","spesh":2,"jit":0,"count":2},{"id":35941080,"type":"BOOTCode","spesh":2,"jit":0,"count":2}]},{"name":"","file":"src/gen/m-CORE.setting","line":7548,"id":59520816,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2}]},{"name":"","file":"src/gen/m-CORE.setting","line":7551,"id":59522032,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1079,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":53,"callees":[{"name":"count","file":"src/gen/m-CORE.setting","line":3798,"id":59297984,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":11,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":11,"callees":[{"name":"count","file":"src/gen/m-CORE.setting","line":12388,"id":59748208,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":5741,"id":58667488,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"infix:<,>","file":"src/gen/m-CORE.setting","line":9029,"id":58758384,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[{"id":62199728,"type":"Parcel","spesh":2,"jit":0,"count":2}]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1545,"id":61714688,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[{"id":62199512,"type":"Block","spesh":2,"jit":0,"count":2},{"id":35941080,"type":"BOOTCode","spesh":2,"jit":0,"count":2}]},{"name":"for","file":"src/gen/m-CORE.setting","line":1792,"id":59247520,"entries":2,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":221,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":23,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2846,"id":61723200,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":2,"count":2}]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1919,"id":61717424,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":151,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":55,"callees":[{"name":"is_bindable","file":"src/gen/m-BOOTSTRAP.nqp","line":884,"id":61699184,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":95,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":10,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":890,"id":61699488,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":85,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":7,"callees":[{"name":"bind","file":"src/gen/m-BOOTSTRAP.nqp","line":569,"id":61697360,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":77,"osr":0,"deopt_one":2,"deopt_all":0,"exclusive_time":39,"callees":[{"name":"bind_one_param","file":"src/gen/m-BOOTSTRAP.nqp","line":161,"id":61696144,"entries":8,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":36,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":36,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":8},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":4}]},{"name":"handle_optional","file":"src/gen/m-BOOTSTRAP.nqp","line":534,"id":61697056,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":62199920,"type":"Hash","spesh":2,"jit":0,"count":2}]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":2,"jit":0,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":4,"jit":0,"count":4},{"id":35942160,"type":"NQPArray","spesh":4,"jit":0,"count":4},{"id":35941032,"type":"BOOTHash","spesh":2,"jit":0,"count":2},{"id":35941224,"type":"CallCapture","spesh":2,"jit":0,"count":2}]},{"name":"for","file":"src/gen/m-CORE.setting","line":1794,"id":59248128,"entries":2,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":45,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":17,"callees":[{"name":"new","file":"src/gen/m-CORE.setting","line":9435,"id":59620528,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":24,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":15,"callees":[{"name":"BUILD","file":"src/gen/m-CORE.setting","line":9441,"id":59620832,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":8,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"allocations":[{"id":62200016,"type":"Scalar","spesh":10,"jit":0,"count":10}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":8,"jit":0,"count":8},{"id":65564936,"type":"MapIter","spesh":2,"jit":0,"count":2},{"id":35941008,"type":"BOOTArray","spesh":2,"jit":0,"count":2},{"id":62199800,"type":"ListIter","spesh":2,"jit":0,"count":2}]},{"name":"list","file":"src/gen/m-CORE.setting","line":1669,"id":59226544,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":1,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[{"id":35941008,"type":"BOOTArray","spesh":0,"jit":2,"count":2}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":2,"count":4}]}],"allocations":[]},{"name":"sink","file":"src/gen/m-CORE.setting","line":10346,"id":58393696,"entries":2,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":786,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":12,"callees":[{"name":"gimme","file":"src/gen/m-CORE.setting","line":9860,"id":59637248,"entries":2,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":774,"osr":0,"deopt_one":1,"deopt_all":0,"exclusive_time":35,"callees":[{"name":"infinite","file":"src/gen/m-CORE.setting","line":9396,"id":59619008,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":10,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":10,"callees":[{"name":"infinite","file":"src/gen/m-CORE.setting","line":960,"id":59170912,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4947,"id":58581760,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9338,"id":59616576,"entries":2,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":727,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":10,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9339,"id":59616880,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":716,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":46,"callees":[{"name":"flattens","file":"src/gen/m-CORE.setting","line":9805,"id":59634208,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5755,"id":58668704,"entries":4,"spesh_entries":4,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":9364,"id":59618096,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":664,"osr":0,"deopt_one":2,"deopt_all":0,"exclusive_time":24,"callees":[{"name":"infinite","file":"src/gen/m-CORE.setting","line":960,"id":59170912,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"iterator","file":"src/gen/m-CORE.setting","line":9056,"id":59596512,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9454,"id":59621440,"entries":2,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":639,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":11,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9455,"id":59621744,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":627,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":162,"callees":[{"name":"count","file":"src/gen/m-CORE.setting","line":3798,"id":59297984,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"callees":[{"name":"count","file":"src/gen/m-CORE.setting","line":12388,"id":59748208,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5752,"id":58668400,"entries":6,"spesh_entries":0,"jit_entries":6,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]},{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":5443,"id":58653504,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":19,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":13,"callees":[{"name":"Bridge","file":"src/gen/m-CORE.setting","line":5522,"id":59418368,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[{"id":62199704,"type":"Num","spesh":0,"jit":2,"count":2}]},{"name":"Bridge","file":"src/gen/m-CORE.setting","line":5904,"id":59439040,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":6253,"id":58692416,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[]},{"name":"phasers","file":"src/gen/m-CORE.setting","line":3850,"id":59301936,"entries":4,"spesh_entries":0,"jit_entries":4,"inlined_entries":0,"inclusive_time":7,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":7,"allocations":[]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":939,"id":59168176,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":12,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":9,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2846,"id":61723200,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":2,"count":2}]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":8804,"id":59579184,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9338,"id":59616576,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":196,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":9,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9339,"id":59616880,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":187,"osr":0,"deopt_one":2,"deopt_all":0,"exclusive_time":126,"callees":[{"name":"flattens","file":"src/gen/m-CORE.setting","line":9452,"id":59621136,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5755,"id":58668704,"entries":10,"spesh_entries":10,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":9364,"id":59618096,"entries":4,"spesh_entries":0,"jit_entries":4,"inlined_entries":0,"inclusive_time":54,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":25,"callees":[{"name":"iterator","file":"src/gen/m-CORE.setting","line":9884,"id":59639072,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":21,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"callees":[{"name":"Parcel","file":"src/gen/m-CORE.setting","line":9814,"id":59634816,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":13,"osr":0,"deopt_one":2,"deopt_all":0,"exclusive_time":12,"callees":[{"name":"defined","file":"src/gen/m-CORE.setting","line":947,"id":59169392,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":35941008,"type":"BOOTArray","spesh":0,"jit":2,"count":2},{"id":62199728,"type":"Parcel","spesh":0,"jit":2,"count":2}]}],"allocations":[{"id":62199800,"type":"ListIter","spesh":0,"jit":2,"count":2}]},{"name":"infix:<->","file":"src/gen/m-CORE.setting","line":5686,"id":58663232,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9338,"id":59616576,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":6,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":4}]}],"allocations":[{"id":62200040,"type":"IntLexRef","spesh":0,"jit":2,"count":2}]},{"name":"REIFY","file":"src/gen/m-CORE.setting","line":9632,"id":59625088,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":2,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":4,"count":4},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":4,"count":4},{"id":62200040,"type":"IntLexRef","spesh":0,"jit":10,"count":10},{"id":62199728,"type":"Parcel","spesh":0,"jit":2,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":2,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":6,"count":6}]},{"name":"infix:</>","file":"src/gen/m-CORE.setting","line":12758,"id":58799120,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":64,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":7,"callees":[{"name":"DIVIDE_NUMBERS","file":"src/gen/m-CORE.setting","line":12625,"id":58793344,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":57,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":41,"callees":[{"name":"infix:<gcd>","file":"src/gen/m-CORE.setting","line":5726,"id":58666272,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[{"id":62199680,"type":"Int","spesh":0,"jit":2,"count":2}]},{"name":"infix:<div>","file":"src/gen/m-CORE.setting","line":5697,"id":58664144,"entries":4,"spesh_entries":0,"jit_entries":4,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[{"id":62199680,"type":"Int","spesh":0,"jit":4,"count":4}]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5752,"id":58668400,"entries":4,"spesh_entries":0,"jit_entries":4,"inlined_entries":0,"inclusive_time":8,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"allocations":[]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":4},{"id":65566496,"type":"Rat","spesh":0,"jit":0,"count":2}]}],"allocations":[]},{"name":"floor","file":"src/gen/m-CORE.setting","line":12466,"id":59751856,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":5,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"callees":[{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":5741,"id":58667488,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":2,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"infix:<>>","file":"src/gen/m-CORE.setting","line":5766,"id":58669616,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"prefix:<+>","file":"src/gen/m-CORE.setting","line":5050,"id":58595440,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"callees":[{"name":"Numeric","file":"src/gen/m-CORE.setting","line":8805,"id":59579488,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":2,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":5741,"id":58667488,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4947,"id":58581760,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":7556,"id":59522336,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":81,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":63,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1489,"id":61712864,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[{"id":62199488,"type":"Code","spesh":2,"jit":0,"count":2},{"id":35941080,"type":"BOOTCode","spesh":2,"jit":0,"count":2}]},{"name":"","file":"src/gen/m-CORE.setting","line":7557,"id":59522640,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]},{"name":"<anon>","file":"src/gen/m-CORE.setting","line":3924,"id":59306496,"entries":4,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":8,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"allocations":[]},{"name":"infix:<->","file":"src/gen/m-CORE.setting","line":5686,"id":58663232,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"","file":"lib/NativeCall.pm","line":187,"id":99587216,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"prefix:<~>","file":"src/gen/m-CORE.setting","line":8259,"id":58723424,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":6},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2},{"id":62200040,"type":"IntLexRef","spesh":0,"jit":0,"count":2}]},{"name":"find_method","file":"src/gen/m-Metamodel.nqp","line":1023,"id":61937328,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":53,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":49,"callees":[{"name":"submethod_table","file":"src/gen/m-Metamodel.nqp","line":487,"id":61922736,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"mro","file":"src/gen/m-Metamodel.nqp","line":991,"id":61936416,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":2,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"method_table","file":"src/gen/m-Metamodel.nqp","line":3075,"id":61994784,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":35941032,"type":"BOOTHash","spesh":0,"jit":2,"count":2}]},{"name":"method_table","file":"src/gen/m-Metamodel.nqp","line":482,"id":61922432,"entries":4,"spesh_entries":0,"jit_entries":4,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":35941032,"type":"BOOTHash","spesh":0,"jit":2,"count":2},{"id":35942184,"type":"NQPArrayIter","spesh":0,"jit":2,"count":2}]},{"name":"fire_phasers","file":"src/gen/m-CORE.setting","line":3843,"id":59301328,"entries":2,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":12,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":10,"callees":[{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4947,"id":58581760,"entries":2,"spesh_entries":1,"jit_entries":1,"inlined_entries":1,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":1,"jit":0,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":10},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":6},{"id":62200040,"type":"IntLexRef","spesh":0,"jit":0,"count":10},{"id":62199728,"type":"Parcel","spesh":0,"jit":0,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":1,"jit":0,"count":2},{"id":62200016,"type":"Scalar","spesh":3,"jit":0,"count":6}]}],"allocations":[]},{"name":"REIFY","file":"src/gen/m-CORE.setting","line":10287,"id":59666432,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":2,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":4,"count":4},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":4,"count":4},{"id":62200040,"type":"IntLexRef","spesh":0,"jit":4,"count":4},{"id":62199728,"type":"Parcel","spesh":0,"jit":2,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":1,"jit":0,"count":2},{"id":62200016,"type":"Scalar","spesh":3,"jit":0,"count":6}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":1,"jit":0,"count":2},{"id":62200016,"type":"Scalar","spesh":3,"jit":0,"count":6}]}],"allocations":[{"id":62199800,"type":"ListIter","spesh":0,"jit":1,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2},{"id":62199656,"type":"Str","spesh":0,"jit":0,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":8},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":4},{"id":35941584,"type":"BOOTStrArray","spesh":0,"jit":0,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":4},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":18},{"id":62199920,"type":"Hash","spesh":0,"jit":0,"count":2},{"id":62199848,"type":"Array","spesh":0,"jit":0,"count":2}]}],"allocations":[{"id":62199944,"type":"Capture","spesh":0,"jit":0,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2}]},{"name":"infix:<=>","file":"src/gen/m-CORE.setting","line":20854,"id":58972400,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"ACCEPTS","file":"src/gen/m-CORE.setting","line":15227,"id":59949760,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]},{"name":"Stringy","file":"src/gen/m-CORE.setting","line":6921,"id":59491024,"entries":4,"spesh_entries":0,"jit_entries":4,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"infix:<~>","file":"src/gen/m-CORE.setting","line":8262,"id":58724032,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":5,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"allocations":[{"id":62199656,"type":"Str","spesh":0,"jit":0,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":4},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":10},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":4}]},{"name":"defined","file":"src/gen/m-CORE.setting","line":947,"id":59169392,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1521,"id":61713776,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]},{"name":"return_hash_for","file":"lib/NativeCall.pm","line":50,"id":99485504,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":490,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":39,"callees":[{"name":"returns","file":"src/gen/m-CORE.setting","line":12420,"id":59749728,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"ACCEPTS","file":"src/gen/m-CORE.setting","line":895,"id":59164832,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"type_code_for","file":"lib/NativeCall.pm","line":146,"id":99507392,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":447,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":30,"callees":[{"name":"bind_sig","file":"src/gen/m-BOOTSTRAP.nqp","line":832,"id":61698880,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":27,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"callees":[{"name":"bind","file":"src/gen/m-BOOTSTRAP.nqp","line":569,"id":61697360,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":20,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":11,"callees":[{"name":"bind_one_param","file":"src/gen/m-BOOTSTRAP.nqp","line":161,"id":61696144,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":8,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1}]}],"allocations":[]}],"allocations":[{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":1},{"id":35941152,"type":"BOOTContext","spesh":0,"jit":0,"count":1}]},{"name":"name","file":"src/gen/m-Metamodel.nqp","line":69,"id":61904800,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]},{"name":"postcircumfix:<{ }>","file":"src/gen/m-CORE.setting","line":3584,"id":58534032,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":369,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":7,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1919,"id":61717424,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":237,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":193,"callees":[{"name":"is_bindable","file":"src/gen/m-BOOTSTRAP.nqp","line":884,"id":61699184,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":43,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":890,"id":61699488,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":37,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"callees":[{"name":"bind","file":"src/gen/m-BOOTSTRAP.nqp","line":569,"id":61697360,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":34,"osr":0,"deopt_one":1,"deopt_all":0,"exclusive_time":21,"callees":[{"name":"bind_one_param","file":"src/gen/m-BOOTSTRAP.nqp","line":161,"id":61696144,"entries":4,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":13,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":13,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":4},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":62199920,"type":"Hash","spesh":1,"jit":0,"count":1}]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":1,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":2},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":1},{"id":35941224,"type":"CallCapture","spesh":0,"jit":0,"count":1}]},{"name":"postcircumfix:<{ }>","file":"src/gen/m-CORE.setting","line":3602,"id":58535856,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":124,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":15,"callees":[{"name":"FLATTENABLE_LIST","file":"src/gen/m-CORE.setting","line":11297,"id":58452976,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":35941008,"type":"BOOTArray","spesh":0,"jit":1,"count":1}]},{"name":"FLATTENABLE_HASH","file":"src/gen/m-CORE.setting","line":11298,"id":58453280,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"SLICE_ONE_HASH","file":"src/gen/m-CORE.setting","line":2840,"id":58464416,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":107,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":19,"callees":[{"name":"CLONE-HASH-DECONTAINERIZED","file":"src/gen/m-CORE.setting","line":869,"id":58319520,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":5,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"allocations":[{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":1},{"id":35941128,"type":"BOOTIter","spesh":0,"jit":0,"count":1}]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1545,"id":61714688,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199512,"type":"Block","spesh":1,"jit":0,"count":1},{"id":35941080,"type":"BOOTCode","spesh":1,"jit":0,"count":1}]},{"name":"","file":"src/gen/m-CORE.setting","line":2844,"id":58464720,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":51,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":10,"callees":[{"name":"DELETEKEY","file":"src/gen/m-CORE.setting","line":2389,"id":58381536,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":5,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2849,"id":61723504,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":62199920,"type":"Hash","spesh":0,"jit":1,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":1,"jit":0,"count":1}]},{"name":"","file":"src/gen/m-CORE.setting","line":2934,"id":58473232,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":35,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":24,"callees":[{"name":"DELETEKEY","file":"src/gen/m-CORE.setting","line":2389,"id":58381536,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":6,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2849,"id":61723504,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":62199920,"type":"Hash","spesh":0,"jit":1,"count":1}]},{"name":"","file":"src/gen/m-CORE.setting","line":2390,"id":58382144,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":1,"jit":0,"count":1}]},{"name":"exists_key","file":"src/gen/m-CORE.setting","line":11199,"id":58444768,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]},{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":5741,"id":58667488,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":4901,"id":59383104,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4946,"id":58581456,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":10},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1}]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":939,"id":59168176,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":28,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":7,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2846,"id":61723200,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":1,"count":1}]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":9779,"id":59630560,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":20,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"callees":[{"name":"gimme","file":"src/gen/m-CORE.setting","line":9860,"id":59637248,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":15,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9870,"id":59638160,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":6,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"callees":[{"name":"Int","file":"src/gen/m-CORE.setting","line":5501,"id":59416544,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":2,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":1,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":2,"count":2}]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":5497,"id":59416240,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":1,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1},{"id":62199920,"type":"Hash","spesh":0,"jit":0,"count":1},{"id":62199848,"type":"Array","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1},{"id":62199920,"type":"Hash","spesh":0,"jit":0,"count":1}]}],"allocations":[]},{"name":"postcircumfix:<{ }>","file":"src/gen/m-CORE.setting","line":3587,"id":58534336,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":6,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"callees":[{"name":"at_key","file":"src/gen/m-CORE.setting","line":11333,"id":59667952,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":1,"jit":0,"count":1}]}],"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":642,"id":58303104,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":9,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"callees":[{"name":"RETURN-PARCEL","file":"src/gen/m-CORE.setting","line":627,"id":58302496,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":4},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":2},{"id":62199656,"type":"Str","spesh":0,"jit":0,"count":1}]},{"name":"returns","file":"src/gen/m-CORE.setting","line":4196,"id":59322000,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":19,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":14,"callees":[{"name":"signature","file":"src/gen/m-CORE.setting","line":3800,"id":59298288,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]},{"name":"returns","file":"src/gen/m-CORE.setting","line":12420,"id":59749728,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[]},{"name":"map_return_type","file":"lib/NativeCall.pm","line":162,"id":99513440,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1}]},{"name":"map_return_type","file":"lib/NativeCall.pm","line":162,"id":99464256,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":30,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":7,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1919,"id":61717424,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":20,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":18,"callees":[{"name":"add_to_cache","file":"src/gen/m-BOOTSTRAP.nqp","line":2158,"id":61717728,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":2},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":1}]},{"name":"map_return_type","file":"lib/NativeCall.pm","line":163,"id":99466272,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1}]}],"allocations":[]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2},{"id":62200088,"type":"StrLexRef","spesh":0,"jit":0,"count":2}]},{"name":"decont_all","file":"gen/moar/stage2/QAST.nqp","line":3961,"id":39712544,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":12,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":12,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":62199944,"type":"Capture","spesh":0,"jit":0,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2},{"id":62200112,"type":"IntAttrRef","spesh":0,"jit":0,"count":2}]}],"allocations":[]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":4},{"id":62199944,"type":"Capture","spesh":0,"jit":0,"count":2}]}],"allocations":[]}],"allocations":[]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":50,"jit":0,"count":80},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":62199920,"type":"Hash","spesh":0,"jit":0,"count":1},{"id":78441032,"type":"Inline::Lua","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":62199920,"type":"Hash","spesh":0,"jit":0,"count":1}]}],"allocations":[]}],"allocations":[{"id":35940960,"type":"BOOTNum","spesh":0,"jit":0,"count":1}]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":3},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2}]},{"name":"default-lua","file":"/home/x/data/projects/perl6/Inline-Lua/lib/Inline/Lua.pm6","line":6,"id":119216928,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":4},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2},{"id":62199944,"type":"Capture","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":62199920,"type":"Hash","spesh":0,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1}]},{"name":"succeed","file":"src/gen/m-CORE.setting","line":712,"id":58308576,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":53,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1919,"id":61717424,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":13,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":12,"callees":[{"name":"add_to_cache","file":"src/gen/m-BOOTSTRAP.nqp","line":2158,"id":61717728,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":2},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":1}]},{"name":"succeed","file":"src/gen/m-CORE.setting","line":716,"id":58309184,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":33,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"THROW","file":"src/gen/m-CORE.setting","line":619,"id":58302192,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":28,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":24,"callees":[{"name":"","file":"","line":-1,"id":144105184,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[{"id":62199680,"type":"Int","spesh":0,"jit":0,"count":2}]}],"allocations":[]}],"allocations":[]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":3},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1}]},{"name":"default-lua","file":"/home/x/data/projects/perl6/Inline-Lua/lib/Inline/Lua.pm6","line":6,"id":119216928,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":4},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2},{"id":62199944,"type":"Capture","spesh":0,"jit":0,"count":1}]},{"name":"run","file":"/home/x/data/projects/perl6/Inline-Lua/lib/Inline/Lua.pm6","line":86,"id":138570544,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":31229,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":127,"callees":[{"name":"find_method","file":"src/gen/m-Metamodel.nqp","line":1023,"id":61937328,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":49,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":27,"callees":[{"name":"submethod_table","file":"src/gen/m-Metamodel.nqp","line":487,"id":61922736,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]},{"name":"mro","file":"src/gen/m-Metamodel.nqp","line":991,"id":61936416,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]},{"name":"method_table","file":"src/gen/m-Metamodel.nqp","line":482,"id":61922432,"entries":3,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"find_method_fallback","file":"src/gen/m-Metamodel.nqp","line":2859,"id":61985968,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":13,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":10,"callees":[{"name":"","file":"src/gen/m-Metamodel.nqp","line":2762,"id":61983232,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"","file":"src/gen/m-Metamodel.nqp","line":2765,"id":61983536,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":35942184,"type":"NQPArrayIter","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":1},{"id":35942184,"type":"NQPArrayIter","spesh":0,"jit":0,"count":1}]},{"name":"","file":"src/gen/m-Metamodel.nqp","line":2766,"id":61983840,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":4482,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"FALLBACK","file":"/home/x/data/projects/perl6/Inline-Lua/lib/Lua/Raw.pm6","line":182,"id":111116944,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":4476,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":28,"callees":[{"name":"postcircumfix:<{ }>","file":"src/gen/m-CORE.setting","line":3587,"id":58534336,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":10,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"at_key","file":"src/gen/m-CORE.setting","line":11333,"id":59667952,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1}]}],"allocations":[]},{"name":"FLATTENABLE_LIST","file":"src/gen/m-CORE.setting","line":8767,"id":59576448,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"FLATTENABLE_HASH","file":"src/gen/m-CORE.setting","line":8768,"id":59576752,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":1}]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2680,"id":61722288,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":4435,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":7,"callees":[{"name":"postcircumfix:<( )>","file":"lib/NativeCall.pm","line":202,"id":99846432,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":4427,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":69,"callees":[{"name":"","file":"lib/NativeCall.pm","line":203,"id":99848448,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":4352,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":81,"callees":[{"name":"signature","file":"src/gen/m-CORE.setting","line":3800,"id":59298288,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]},{"name":"param_list_for","file":"lib/NativeCall.pm","line":40,"id":99481472,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1256,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":27,"callees":[{"name":"params","file":"src/gen/m-CORE.setting","line":12392,"id":59748512,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":1}]},{"name":"infix:<,>","file":"src/gen/m-CORE.setting","line":9029,"id":58758384,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[{"id":62199728,"type":"Parcel","spesh":1,"jit":0,"count":1}]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1545,"id":61714688,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[{"id":62199512,"type":"Block","spesh":1,"jit":0,"count":1},{"id":35941080,"type":"BOOTCode","spesh":1,"jit":0,"count":1}]},{"name":"for","file":"src/gen/m-CORE.setting","line":1792,"id":59247520,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":106,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":11,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2846,"id":61723200,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":1,"count":1}]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1919,"id":61717424,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":72,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":23,"callees":[{"name":"is_bindable","file":"src/gen/m-BOOTSTRAP.nqp","line":884,"id":61699184,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":48,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":890,"id":61699488,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":43,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"callees":[{"name":"bind","file":"src/gen/m-BOOTSTRAP.nqp","line":569,"id":61697360,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":38,"osr":0,"deopt_one":1,"deopt_all":0,"exclusive_time":19,"callees":[{"name":"bind_one_param","file":"src/gen/m-BOOTSTRAP.nqp","line":161,"id":61696144,"entries":4,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":17,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":17,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":4},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2}]},{"name":"handle_optional","file":"src/gen/m-BOOTSTRAP.nqp","line":534,"id":61697056,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":62199920,"type":"Hash","spesh":1,"jit":0,"count":1}]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":1,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":2,"jit":0,"count":2},{"id":35942160,"type":"NQPArray","spesh":2,"jit":0,"count":2},{"id":35941032,"type":"BOOTHash","spesh":1,"jit":0,"count":1},{"id":35941224,"type":"CallCapture","spesh":1,"jit":0,"count":1}]},{"name":"for","file":"src/gen/m-CORE.setting","line":1794,"id":59248128,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":21,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":7,"callees":[{"name":"new","file":"src/gen/m-CORE.setting","line":9435,"id":59620528,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":12,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"callees":[{"name":"BUILD","file":"src/gen/m-CORE.setting","line":9441,"id":59620832,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[{"id":62200016,"type":"Scalar","spesh":5,"jit":0,"count":5}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":4,"jit":0,"count":4},{"id":65564936,"type":"MapIter","spesh":1,"jit":0,"count":1},{"id":35941008,"type":"BOOTArray","spesh":1,"jit":0,"count":1},{"id":62199800,"type":"ListIter","spesh":1,"jit":0,"count":1}]},{"name":"list","file":"src/gen/m-CORE.setting","line":1669,"id":59226544,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":1,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":35941008,"type":"BOOTArray","spesh":0,"jit":1,"count":1}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":2,"count":2}]}],"allocations":[]},{"name":"sink","file":"src/gen/m-CORE.setting","line":10346,"id":58393696,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":1113,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"callees":[{"name":"gimme","file":"src/gen/m-CORE.setting","line":9860,"id":59637248,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":1105,"osr":0,"deopt_one":1,"deopt_all":0,"exclusive_time":27,"callees":[{"name":"infinite","file":"src/gen/m-CORE.setting","line":9396,"id":59619008,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":6,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"callees":[{"name":"infinite","file":"src/gen/m-CORE.setting","line":960,"id":59170912,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4947,"id":58581760,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9338,"id":59616576,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":1071,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9339,"id":59616880,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":1065,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":32,"callees":[{"name":"flattens","file":"src/gen/m-CORE.setting","line":9805,"id":59634208,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5755,"id":58668704,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":9364,"id":59618096,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":1028,"osr":0,"deopt_one":1,"deopt_all":0,"exclusive_time":16,"callees":[{"name":"infinite","file":"src/gen/m-CORE.setting","line":960,"id":59170912,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"iterator","file":"src/gen/m-CORE.setting","line":9056,"id":59596512,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9454,"id":59621440,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":1012,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9455,"id":59621744,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1006,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":95,"callees":[{"name":"count","file":"src/gen/m-CORE.setting","line":3798,"id":59297984,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"callees":[{"name":"count","file":"src/gen/m-CORE.setting","line":12388,"id":59748208,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5752,"id":58668400,"entries":3,"spesh_entries":0,"jit_entries":3,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":5443,"id":58653504,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":10,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":7,"callees":[{"name":"Bridge","file":"src/gen/m-CORE.setting","line":5522,"id":59418368,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199704,"type":"Num","spesh":0,"jit":1,"count":1}]},{"name":"Bridge","file":"src/gen/m-CORE.setting","line":5904,"id":59439040,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":6253,"id":58692416,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[]},{"name":"phasers","file":"src/gen/m-CORE.setting","line":3850,"id":59301936,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":939,"id":59168176,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":6,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2846,"id":61723200,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":1,"count":1}]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":8804,"id":59579184,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9338,"id":59616576,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":99,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9339,"id":59616880,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":94,"osr":0,"deopt_one":1,"deopt_all":0,"exclusive_time":31,"callees":[{"name":"flattens","file":"src/gen/m-CORE.setting","line":9452,"id":59621136,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5755,"id":58668704,"entries":7,"spesh_entries":7,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":9364,"id":59618096,"entries":3,"spesh_entries":0,"jit_entries":3,"inlined_entries":0,"inclusive_time":58,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":20,"callees":[{"name":"iterator","file":"src/gen/m-CORE.setting","line":9884,"id":59639072,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":11,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"callees":[{"name":"Parcel","file":"src/gen/m-CORE.setting","line":9814,"id":59634816,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":6,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"callees":[{"name":"defined","file":"src/gen/m-CORE.setting","line":947,"id":59169392,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":35941008,"type":"BOOTArray","spesh":0,"jit":1,"count":1},{"id":62199728,"type":"Parcel","spesh":0,"jit":1,"count":1}]}],"allocations":[{"id":62199800,"type":"ListIter","spesh":0,"jit":1,"count":1}]},{"name":"infix:<->","file":"src/gen/m-CORE.setting","line":5686,"id":58663232,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9338,"id":59616576,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":25,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":7,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9339,"id":59616880,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":17,"osr":0,"deopt_one":1,"deopt_all":0,"exclusive_time":15,"callees":[{"name":"flattens","file":"src/gen/m-CORE.setting","line":9805,"id":59634208,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5755,"id":58668704,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"REIFY","file":"src/gen/m-CORE.setting","line":10287,"id":59666432,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":1,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":2,"count":2},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":2,"count":2},{"id":62200040,"type":"IntLexRef","spesh":0,"jit":1,"count":1},{"id":62199728,"type":"Parcel","spesh":0,"jit":1,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":5}]},{"name":"iterator","file":"src/gen/m-CORE.setting","line":9404,"id":59619312,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":62200040,"type":"IntLexRef","spesh":0,"jit":2,"count":2}]},{"name":"REIFY","file":"src/gen/m-CORE.setting","line":9632,"id":59625088,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":1,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":2,"count":2},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":2,"count":2},{"id":62200040,"type":"IntLexRef","spesh":0,"jit":7,"count":7},{"id":62199728,"type":"Parcel","spesh":0,"jit":1,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":1,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":3,"count":3}]},{"name":"infix:</>","file":"src/gen/m-CORE.setting","line":12758,"id":58799120,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":32,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"callees":[{"name":"DIVIDE_NUMBERS","file":"src/gen/m-CORE.setting","line":12625,"id":58793344,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":28,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":21,"callees":[{"name":"infix:<gcd>","file":"src/gen/m-CORE.setting","line":5726,"id":58666272,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199680,"type":"Int","spesh":0,"jit":1,"count":1}]},{"name":"infix:<div>","file":"src/gen/m-CORE.setting","line":5697,"id":58664144,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[{"id":62199680,"type":"Int","spesh":0,"jit":2,"count":2}]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5752,"id":58668400,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2},{"id":65566496,"type":"Rat","spesh":0,"jit":0,"count":1}]}],"allocations":[]},{"name":"floor","file":"src/gen/m-CORE.setting","line":12466,"id":59751856,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"callees":[{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":5741,"id":58667488,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":1,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"infix:<>>","file":"src/gen/m-CORE.setting","line":5766,"id":58669616,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"prefix:<+>","file":"src/gen/m-CORE.setting","line":5050,"id":58595440,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"callees":[{"name":"Numeric","file":"src/gen/m-CORE.setting","line":8805,"id":59579488,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":1,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":5741,"id":58667488,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4947,"id":58581760,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"","file":"lib/NativeCall.pm","line":42,"id":99483488,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":717,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":11,"callees":[{"name":"param_hash_for","file":"lib/NativeCall.pm","line":18,"id":99460384,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":706,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":79,"callees":[{"name":"type","file":"src/gen/m-CORE.setting","line":12113,"id":59722368,"entries":3,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]},{"name":"ACCEPTS","file":"src/gen/m-CORE.setting","line":895,"id":59164832,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"find_method","file":"src/gen/m-Metamodel.nqp","line":1607,"id":61953440,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":6,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":35940984,"type":"BOOTStr","spesh":0,"jit":0,"count":1}]},{"name":"type_code_for","file":"lib/NativeCall.pm","line":146,"id":99507392,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":420,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":29,"callees":[{"name":"bind_sig","file":"src/gen/m-BOOTSTRAP.nqp","line":832,"id":61698880,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":20,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"callees":[{"name":"bind","file":"src/gen/m-BOOTSTRAP.nqp","line":569,"id":61697360,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":15,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"callees":[{"name":"bind_one_param","file":"src/gen/m-BOOTSTRAP.nqp","line":161,"id":61696144,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":7,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":7,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1}]}],"allocations":[]}],"allocations":[{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":1},{"id":35941152,"type":"BOOTContext","spesh":0,"jit":0,"count":1}]},{"name":"name","file":"src/gen/m-Metamodel.nqp","line":69,"id":61904800,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]},{"name":"postcircumfix:<{ }>","file":"src/gen/m-CORE.setting","line":3584,"id":58534032,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":342,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":7,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1919,"id":61717424,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":208,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":166,"callees":[{"name":"is_bindable","file":"src/gen/m-BOOTSTRAP.nqp","line":884,"id":61699184,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":42,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":890,"id":61699488,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":36,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"callees":[{"name":"bind","file":"src/gen/m-BOOTSTRAP.nqp","line":569,"id":61697360,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":34,"osr":0,"deopt_one":1,"deopt_all":0,"exclusive_time":20,"callees":[{"name":"bind_one_param","file":"src/gen/m-BOOTSTRAP.nqp","line":161,"id":61696144,"entries":4,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":14,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":14,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":4},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":62199920,"type":"Hash","spesh":1,"jit":0,"count":1}]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":1,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":2},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":1},{"id":35941224,"type":"CallCapture","spesh":0,"jit":0,"count":1}]},{"name":"postcircumfix:<{ }>","file":"src/gen/m-CORE.setting","line":3602,"id":58535856,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":126,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":13,"callees":[{"name":"FLATTENABLE_LIST","file":"src/gen/m-CORE.setting","line":11297,"id":58452976,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":35941008,"type":"BOOTArray","spesh":0,"jit":1,"count":1}]},{"name":"FLATTENABLE_HASH","file":"src/gen/m-CORE.setting","line":11298,"id":58453280,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"SLICE_ONE_HASH","file":"src/gen/m-CORE.setting","line":2840,"id":58464416,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":110,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":19,"callees":[{"name":"CLONE-HASH-DECONTAINERIZED","file":"src/gen/m-CORE.setting","line":869,"id":58319520,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":5,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"allocations":[{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":1},{"id":35941128,"type":"BOOTIter","spesh":0,"jit":0,"count":1}]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1545,"id":61714688,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199512,"type":"Block","spesh":1,"jit":0,"count":1},{"id":35941080,"type":"BOOTCode","spesh":1,"jit":0,"count":1}]},{"name":"","file":"src/gen/m-CORE.setting","line":2844,"id":58464720,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":54,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":9,"callees":[{"name":"DELETEKEY","file":"src/gen/m-CORE.setting","line":2389,"id":58381536,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2849,"id":61723504,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":62199920,"type":"Hash","spesh":0,"jit":1,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":1,"jit":0,"count":1}]},{"name":"","file":"src/gen/m-CORE.setting","line":2934,"id":58473232,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":40,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":31,"callees":[{"name":"DELETEKEY","file":"src/gen/m-CORE.setting","line":2389,"id":58381536,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":5,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2849,"id":61723504,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":62199920,"type":"Hash","spesh":0,"jit":1,"count":1}]},{"name":"","file":"src/gen/m-CORE.setting","line":2390,"id":58382144,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":1,"jit":0,"count":1}]},{"name":"exists_key","file":"src/gen/m-CORE.setting","line":11199,"id":58444768,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]},{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":5741,"id":58667488,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":4901,"id":59383104,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4946,"id":58581456,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":10},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1}]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":939,"id":59168176,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":30,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":7,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2846,"id":61723200,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":1,"count":1}]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":9779,"id":59630560,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":21,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"gimme","file":"src/gen/m-CORE.setting","line":9860,"id":59637248,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":15,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9870,"id":59638160,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":6,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"callees":[{"name":"Int","file":"src/gen/m-CORE.setting","line":5501,"id":59416544,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":2,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":1,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":2,"count":2}]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":5497,"id":59416240,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":1,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1},{"id":62199920,"type":"Hash","spesh":0,"jit":0,"count":1},{"id":62199848,"type":"Array","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1},{"id":62199920,"type":"Hash","spesh":0,"jit":0,"count":1}]}],"allocations":[]},{"name":"postcircumfix:<{ }>","file":"src/gen/m-CORE.setting","line":3587,"id":58534336,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":9,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"callees":[{"name":"at_key","file":"src/gen/m-CORE.setting","line":11333,"id":59667952,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":1,"count":1}]}],"allocations":[]},{"name":"","file":"lib/NativeCall.pm","line":149,"id":99511424,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":16,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":642,"id":58303104,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":9,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"callees":[{"name":"RETURN-PARCEL","file":"src/gen/m-CORE.setting","line":627,"id":58302496,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2}]},{"name":"ACCEPTS","file":"src/gen/m-CORE.setting","line":894,"id":59164528,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":45,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":10,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2846,"id":61723200,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":1,"count":1}]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1919,"id":61717424,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":33,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":31,"callees":[{"name":"add_to_cache","file":"src/gen/m-BOOTSTRAP.nqp","line":2158,"id":61717728,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":2,"jit":0,"count":2},{"id":35942160,"type":"NQPArray","spesh":2,"jit":0,"count":2},{"id":35941032,"type":"BOOTHash","spesh":1,"jit":0,"count":1}]},{"name":"ACCEPTS","file":"src/gen/m-CORE.setting","line":895,"id":59164832,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"","file":"lib/NativeCall.pm","line":22,"id":99477440,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":150,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":31,"callees":[{"name":"dispatch:<.?>","file":"src/gen/m-CORE.setting","line":1358,"id":59207696,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":6,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2},{"id":62199944,"type":"Capture","spesh":0,"jit":0,"count":1}]},{"name":"string_encoding_to_nci_type","file":"lib/NativeCall.pm","line":8,"id":99406016,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":112,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":51,"callees":[{"name":"","file":"lib/NativeCall.pm","line":9,"id":99409312,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":60,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":29,"callees":[{"name":"ACCEPTS","file":"src/gen/m-CORE.setting","line":6927,"id":59492240,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"succeed","file":"src/gen/m-CORE.setting","line":716,"id":58309184,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":30,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"THROW","file":"src/gen/m-CORE.setting","line":619,"id":58302192,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":25,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":22,"callees":[{"name":"","file":"/home/x/.rakudobrew/moar-nom/install/languages/perl6/lib/NativeCall.pm.moarvm","line":-1,"id":99436000,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[{"id":62199680,"type":"Int","spesh":0,"jit":0,"count":2}]}],"allocations":[]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":6}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":62199656,"type":"Str","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":4},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":4},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":2},{"id":62199656,"type":"Str","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":3}]},{"name":"find_method","file":"src/gen/m-Metamodel.nqp","line":1023,"id":61937328,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":25,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":22,"callees":[{"name":"submethod_table","file":"src/gen/m-Metamodel.nqp","line":487,"id":61922736,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"mro","file":"src/gen/m-Metamodel.nqp","line":991,"id":61936416,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":1,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"method_table","file":"src/gen/m-Metamodel.nqp","line":3075,"id":61994784,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":35941032,"type":"BOOTHash","spesh":0,"jit":1,"count":1}]},{"name":"method_table","file":"src/gen/m-Metamodel.nqp","line":482,"id":61922432,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":35941032,"type":"BOOTHash","spesh":0,"jit":1,"count":1},{"id":35942184,"type":"NQPArrayIter","spesh":0,"jit":1,"count":1}]},{"name":"fire_phasers","file":"src/gen/m-CORE.setting","line":3843,"id":59301328,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":5,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"callees":[{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4947,"id":58581760,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":1,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":1,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":5},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":3},{"id":62200040,"type":"IntLexRef","spesh":0,"jit":0,"count":6},{"id":62199728,"type":"Parcel","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":1,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":3,"jit":0,"count":3}]}],"allocations":[]},{"name":"REIFY","file":"src/gen/m-CORE.setting","line":10287,"id":59666432,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":1,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":2,"count":2},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":2,"count":2},{"id":62200040,"type":"IntLexRef","spesh":0,"jit":2,"count":2},{"id":62199728,"type":"Parcel","spesh":0,"jit":1,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":1,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":3,"jit":0,"count":3}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":1,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":3,"jit":0,"count":3}]}],"allocations":[{"id":62199800,"type":"ListIter","spesh":0,"jit":1,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":1}]},{"name":"dispatch:<.?>","file":"src/gen/m-CORE.setting","line":1358,"id":59207696,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":10,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":10,"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":4},{"id":62199944,"type":"Capture","spesh":0,"jit":0,"count":2}]},{"name":"guess_library_name","file":"lib/NativeCall.pm","line":172,"id":99533792,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2546,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":56,"callees":[{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4946,"id":58581456,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2434,"id":61720160,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":7,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1545,"id":61714688,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[{"id":62199632,"type":"Regex","spesh":2,"jit":0,"count":2},{"id":35941080,"type":"BOOTCode","spesh":2,"jit":0,"count":2}]}],"allocations":[]},{"name":"ACCEPTS","file":"src/gen/m-CORE.setting","line":15620,"id":59971344,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":101,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":22,"callees":[{"name":"!cursor_init","file":"gen/moar/stage2/QRegex.nqp","line":1063,"id":37837040,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":21,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":14,"callees":[{"name":"CREATE","file":"src/gen/m-CORE.setting","line":962,"id":59171216,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":62201504,"type":"Cursor","spesh":0,"jit":2,"count":2}]},{"name":"Num","file":"src/gen/m-CORE.setting","line":5507,"id":59417152,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[{"id":62199704,"type":"Num","spesh":0,"jit":2,"count":2}]},{"name":"!cursor_start_cur","file":"gen/moar/stage2/QRegex.nqp","line":1148,"id":37837952,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[{"id":62201504,"type":"Cursor","spesh":2,"jit":0,"count":2},{"id":35941536,"type":"BOOTIntArray","spesh":2,"jit":0,"count":2}]}],"allocations":[{"id":35943552,"type":"ParseShared","spesh":0,"jit":2,"count":2},{"id":35941584,"type":"BOOTStrArray","spesh":0,"jit":2,"count":2},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":2,"count":2}]},{"name":"","file":"/home/x/.rakudobrew/moar-nom/install/languages/perl6/lib/NativeCall.pm.moarvm","line":-1,"id":99535808,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":38,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":28,"callees":[{"name":"!cursor_start","file":"gen/moar/stage2/QRegex.nqp","line":1125,"id":37837648,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62201504,"type":"Cursor","spesh":0,"jit":1,"count":1},{"id":35941536,"type":"BOOTIntArray","spesh":0,"jit":1,"count":1}]},{"name":"!shared","file":"gen/moar/stage2/QRegex.nqp","line":1252,"id":37841600,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"alpha","file":"gen/moar/stage2/QRegex.nqp","line":1555,"id":37850720,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":8,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":7,"callees":[{"name":"!cursor_start_cur","file":"gen/moar/stage2/QRegex.nqp","line":1148,"id":37837952,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62201504,"type":"Cursor","spesh":0,"jit":1,"count":1},{"id":35941536,"type":"BOOTIntArray","spesh":0,"jit":1,"count":1}]}],"allocations":[]},{"name":"!cursor_fail","file":"gen/moar/stage2/QRegex.nqp","line":1206,"id":37839776,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":62199920,"type":"Hash","spesh":0,"jit":0,"count":1}]},{"name":"MATCH_SAVE","file":"src/gen/m-CORE.setting","line":15413,"id":59961616,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"callees":[{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5752,"id":58668400,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":2,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[]},{"name":"","file":"/home/x/.rakudobrew/moar-nom/install/languages/perl6/lib/NativeCall.pm.moarvm","line":-1,"id":99537824,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":13,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":12,"callees":[{"name":"!cursor_start","file":"gen/moar/stage2/QRegex.nqp","line":1125,"id":37837648,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":62201504,"type":"Cursor","spesh":0,"jit":1,"count":1},{"id":35941536,"type":"BOOTIntArray","spesh":0,"jit":1,"count":1}]},{"name":"!shared","file":"gen/moar/stage2/QRegex.nqp","line":1252,"id":37841600,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"!cursor_fail","file":"gen/moar/stage2/QRegex.nqp","line":1206,"id":37839776,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":62199920,"type":"Hash","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":1,"jit":0,"count":1}]},{"name":"DYNAMIC","file":"src/gen/m-CORE.setting","line":575,"id":58299152,"entries":3,"spesh_entries":0,"jit_entries":3,"inlined_entries":0,"inclusive_time":46,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":24,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":577,"id":58299456,"entries":3,"spesh_entries":3,"jit_entries":0,"inlined_entries":0,"inclusive_time":21,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":21,"allocations":[{"id":62200016,"type":"Scalar","spesh":3,"jit":0,"count":3}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":3,"count":3}]},{"name":"<anon>","file":"src/gen/m-CORE.setting","line":3918,"id":59306192,"entries":3,"spesh_entries":0,"jit_entries":3,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]},{"name":"postcircumfix:<{ }>","file":"src/gen/m-CORE.setting","line":3584,"id":58534032,"entries":3,"spesh_entries":0,"jit_entries":3,"inlined_entries":0,"inclusive_time":803,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":19,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1919,"id":61717424,"entries":3,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":552,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":441,"callees":[{"name":"is_bindable","file":"src/gen/m-BOOTSTRAP.nqp","line":884,"id":61699184,"entries":3,"spesh_entries":3,"jit_entries":0,"inlined_entries":0,"inclusive_time":110,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":10,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":890,"id":61699488,"entries":3,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":100,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":7,"callees":[{"name":"bind","file":"src/gen/m-BOOTSTRAP.nqp","line":569,"id":61697360,"entries":3,"spesh_entries":3,"jit_entries":0,"inlined_entries":0,"inclusive_time":93,"osr":0,"deopt_one":3,"deopt_all":0,"exclusive_time":51,"callees":[{"name":"bind_one_param","file":"src/gen/m-BOOTSTRAP.nqp","line":161,"id":61696144,"entries":12,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":41,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":41,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":12},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":3}]}],"allocations":[{"id":62199920,"type":"Hash","spesh":3,"jit":0,"count":3}]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":3,"jit":0,"count":3}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":6},{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":6},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":3},{"id":35941224,"type":"CallCapture","spesh":0,"jit":0,"count":3}]},{"name":"postcircumfix:<{ }>","file":"src/gen/m-CORE.setting","line":3602,"id":58535856,"entries":3,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":232,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":27,"callees":[{"name":"FLATTENABLE_LIST","file":"src/gen/m-CORE.setting","line":11297,"id":58452976,"entries":3,"spesh_entries":0,"jit_entries":3,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":35941008,"type":"BOOTArray","spesh":0,"jit":3,"count":3}]},{"name":"FLATTENABLE_HASH","file":"src/gen/m-CORE.setting","line":11298,"id":58453280,"entries":3,"spesh_entries":0,"jit_entries":3,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]},{"name":"SLICE_ONE_HASH","file":"src/gen/m-CORE.setting","line":2840,"id":58464416,"entries":3,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":200,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":36,"callees":[{"name":"CLONE-HASH-DECONTAINERIZED","file":"src/gen/m-CORE.setting","line":869,"id":58319520,"entries":3,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":10,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":10,"allocations":[{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":3},{"id":35941128,"type":"BOOTIter","spesh":0,"jit":0,"count":3}]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1545,"id":61714688,"entries":3,"spesh_entries":3,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[{"id":62199512,"type":"Block","spesh":3,"jit":0,"count":3},{"id":35941080,"type":"BOOTCode","spesh":3,"jit":0,"count":3}]},{"name":"","file":"src/gen/m-CORE.setting","line":2844,"id":58464720,"entries":3,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":96,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":21,"callees":[{"name":"DELETEKEY","file":"src/gen/m-CORE.setting","line":2389,"id":58381536,"entries":3,"spesh_entries":3,"jit_entries":0,"inlined_entries":0,"inclusive_time":8,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":7,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2849,"id":61723504,"entries":3,"spesh_entries":0,"jit_entries":3,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199920,"type":"Hash","spesh":0,"jit":3,"count":3}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":3,"jit":0,"count":3}]},{"name":"","file":"src/gen/m-CORE.setting","line":2934,"id":58473232,"entries":3,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":65,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":47,"callees":[{"name":"DELETEKEY","file":"src/gen/m-CORE.setting","line":2389,"id":58381536,"entries":3,"spesh_entries":3,"jit_entries":0,"inlined_entries":0,"inclusive_time":11,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2849,"id":61723504,"entries":3,"spesh_entries":0,"jit_entries":3,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":62199920,"type":"Hash","spesh":0,"jit":3,"count":3}]},{"name":"","file":"src/gen/m-CORE.setting","line":2390,"id":58382144,"entries":3,"spesh_entries":0,"jit_entries":3,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":3,"jit":0,"count":3}]},{"name":"exists_key","file":"src/gen/m-CORE.setting","line":11199,"id":58444768,"entries":3,"spesh_entries":0,"jit_entries":3,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[]},{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":5741,"id":58667488,"entries":3,"spesh_entries":0,"jit_entries":3,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":4901,"id":59383104,"entries":6,"spesh_entries":0,"jit_entries":6,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4946,"id":58581456,"entries":3,"spesh_entries":0,"jit_entries":3,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":6},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":3}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":30},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":3}]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":939,"id":59168176,"entries":3,"spesh_entries":3,"jit_entries":0,"inlined_entries":0,"inclusive_time":52,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":14,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2846,"id":61723200,"entries":3,"spesh_entries":0,"jit_entries":3,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":3,"count":3}]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":9779,"id":59630560,"entries":3,"spesh_entries":0,"jit_entries":3,"inlined_entries":0,"inclusive_time":36,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"callees":[{"name":"gimme","file":"src/gen/m-CORE.setting","line":9860,"id":59637248,"entries":3,"spesh_entries":0,"jit_entries":3,"inlined_entries":0,"inclusive_time":26,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":15,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9870,"id":59638160,"entries":3,"spesh_entries":0,"jit_entries":3,"inlined_entries":0,"inclusive_time":11,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":11,"callees":[{"name":"Int","file":"src/gen/m-CORE.setting","line":5501,"id":59416544,"entries":3,"spesh_entries":0,"jit_entries":3,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":6,"count":6}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":3,"count":3},{"id":62200016,"type":"Scalar","spesh":0,"jit":6,"count":6}]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":5497,"id":59416240,"entries":3,"spesh_entries":0,"jit_entries":3,"inlined_entries":3,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":3},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":3},{"id":62199920,"type":"Hash","spesh":0,"jit":0,"count":3},{"id":62199848,"type":"Array","spesh":0,"jit":0,"count":3}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":3},{"id":62199920,"type":"Hash","spesh":0,"jit":0,"count":3}]}],"allocations":[]},{"name":"","file":"lib/NativeCall.pm","line":185,"id":99583184,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1526,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":55,"callees":[{"name":"DYNAMIC","file":"src/gen/m-CORE.setting","line":575,"id":58299152,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":10,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":577,"id":58299456,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[{"id":62200016,"type":"Scalar","spesh":1,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":1,"count":1}]},{"name":"<anon>","file":"src/gen/m-CORE.setting","line":3918,"id":59306192,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"postcircumfix:<{ }>","file":"src/gen/m-CORE.setting","line":3587,"id":58534336,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":9,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"callees":[{"name":"at_key","file":"src/gen/m-CORE.setting","line":11333,"id":59667952,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1}]}],"allocations":[]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1489,"id":61712864,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199488,"type":"Code","spesh":1,"jit":0,"count":1},{"id":35941080,"type":"BOOTCode","spesh":1,"jit":0,"count":1}]},{"name":"subst-mutate","file":"src/gen/m-CORE.setting","line":4724,"id":59371856,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1444,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":16,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1919,"id":61717424,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":82,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":18,"callees":[{"name":"is_bindable","file":"src/gen/m-BOOTSTRAP.nqp","line":884,"id":61699184,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":64,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":890,"id":61699488,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":60,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"callees":[{"name":"bind","file":"src/gen/m-BOOTSTRAP.nqp","line":569,"id":61697360,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":57,"osr":0,"deopt_one":1,"deopt_all":0,"exclusive_time":29,"callees":[{"name":"bind_one_param","file":"src/gen/m-BOOTSTRAP.nqp","line":161,"id":61696144,"entries":7,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":26,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":26,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":7},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":5}]},{"name":"handle_optional","file":"src/gen/m-BOOTSTRAP.nqp","line":534,"id":61697056,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":62199920,"type":"Hash","spesh":1,"jit":0,"count":1}]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":1,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":2,"jit":0,"count":2},{"id":35942160,"type":"NQPArray","spesh":2,"jit":0,"count":2},{"id":35941032,"type":"BOOTHash","spesh":1,"jit":0,"count":1},{"id":35941224,"type":"CallCapture","spesh":1,"jit":0,"count":1}]},{"name":"subst-mutate","file":"src/gen/m-CORE.setting","line":7484,"id":59517168,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1345,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":65,"callees":[{"name":"postcircumfix:<{ }>","file":"src/gen/m-CORE.setting","line":3587,"id":58534336,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":21,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"callees":[{"name":"at_key","file":"src/gen/m-CORE.setting","line":11333,"id":59667952,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":17,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":11341,"id":59668560,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":8,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1545,"id":61714688,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[{"id":62199512,"type":"Block","spesh":2,"jit":0,"count":2},{"id":35941080,"type":"BOOTCode","spesh":2,"jit":0,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":2,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":4,"count":4}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":2,"jit":0,"count":2}]}],"allocations":[]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1489,"id":61712864,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":62199488,"type":"Code","spesh":1,"jit":0,"count":1},{"id":35941080,"type":"BOOTCode","spesh":1,"jit":0,"count":1}]},{"name":"","file":"src/gen/m-CORE.setting","line":7491,"id":59517472,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1}]},{"name":"FLATTENABLE_LIST","file":"src/gen/m-CORE.setting","line":11297,"id":58452976,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":35941008,"type":"BOOTArray","spesh":0,"jit":1,"count":1}]},{"name":"FLATTENABLE_HASH","file":"src/gen/m-CORE.setting","line":11298,"id":58453280,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"match","file":"src/gen/m-CORE.setting","line":7402,"id":59508960,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":389,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":53,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1489,"id":61712864,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199488,"type":"Code","spesh":2,"jit":0,"count":2},{"id":35941080,"type":"BOOTCode","spesh":2,"jit":0,"count":2}]},{"name":"","file":"src/gen/m-CORE.setting","line":7406,"id":59509264,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":5,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"defined","file":"src/gen/m-CORE.setting","line":947,"id":59169392,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"defined","file":"src/gen/m-CORE.setting","line":947,"id":59169392,"entries":5,"spesh_entries":0,"jit_entries":5,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"postcircumfix:<{ }>","file":"src/gen/m-CORE.setting","line":3590,"id":58534640,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":9,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"callees":[{"name":"assign_key","file":"src/gen/m-CORE.setting","line":11351,"id":59669168,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":1}]}],"allocations":[]},{"name":"FLATTENABLE_LIST","file":"src/gen/m-CORE.setting","line":11297,"id":58452976,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":35941008,"type":"BOOTArray","spesh":0,"jit":1,"count":1}]},{"name":"FLATTENABLE_HASH","file":"src/gen/m-CORE.setting","line":11298,"id":58453280,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"!cursor_init","file":"gen/moar/stage2/QRegex.nqp","line":1063,"id":37837040,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":23,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":19,"callees":[{"name":"CREATE","file":"src/gen/m-CORE.setting","line":962,"id":59171216,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":62201504,"type":"Cursor","spesh":0,"jit":1,"count":1}]},{"name":"Num","file":"src/gen/m-CORE.setting","line":5507,"id":59417152,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199704,"type":"Num","spesh":0,"jit":1,"count":1}]},{"name":"!cursor_start_cur","file":"gen/moar/stage2/QRegex.nqp","line":1148,"id":37837952,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62201504,"type":"Cursor","spesh":0,"jit":1,"count":1},{"id":35941536,"type":"BOOTIntArray","spesh":0,"jit":1,"count":1}]}],"allocations":[{"id":35943552,"type":"ParseShared","spesh":0,"jit":0,"count":1},{"id":35941584,"type":"BOOTStrArray","spesh":0,"jit":0,"count":1},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":1}]},{"name":"","file":"/home/x/.rakudobrew/moar-nom/install/languages/perl6/lib/NativeCall.pm.moarvm","line":-1,"id":99585200,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":24,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":21,"callees":[{"name":"!cursor_start","file":"gen/moar/stage2/QRegex.nqp","line":1125,"id":37837648,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":62201504,"type":"Cursor","spesh":0,"jit":1,"count":1},{"id":35941536,"type":"BOOTIntArray","spesh":0,"jit":1,"count":1}]},{"name":"!shared","file":"gen/moar/stage2/QRegex.nqp","line":1252,"id":37841600,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"!cursor_pass","file":"gen/moar/stage2/QRegex.nqp","line":1195,"id":37839472,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":62199920,"type":"Hash","spesh":0,"jit":0,"count":1}]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1545,"id":61714688,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[{"id":62199512,"type":"Block","spesh":2,"jit":0,"count":2},{"id":35941080,"type":"BOOTCode","spesh":2,"jit":0,"count":2}]},{"name":"GATHER","file":"src/gen/m-CORE.setting","line":9727,"id":58761424,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":24,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":11,"callees":[{"name":"new","file":"src/gen/m-CORE.setting","line":9668,"id":59626000,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":10,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":7,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1545,"id":61714688,"entries":3,"spesh_entries":3,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[{"id":62199512,"type":"Block","spesh":3,"jit":0,"count":3},{"id":35941080,"type":"BOOTCode","spesh":3,"jit":0,"count":3}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":3},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2},{"id":62203040,"type":"GatherIter","spesh":0,"jit":0,"count":1}]},{"name":"list","file":"src/gen/m-CORE.setting","line":1669,"id":59226544,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1}]},{"name":"","file":"src/gen/m-CORE.setting","line":7479,"id":59513520,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":226,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":9,"callees":[{"name":"postcircumfix:<[ ]>","file":"src/gen/m-CORE.setting","line":3333,"id":58509104,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":216,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"callees":[{"name":"at_pos","file":"src/gen/m-CORE.setting","line":9827,"id":59635728,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":213,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"callees":[{"name":"exists_pos","file":"src/gen/m-CORE.setting","line":9845,"id":59636640,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":206,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"callees":[{"name":"gimme","file":"src/gen/m-CORE.setting","line":9860,"id":59637248,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":200,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9870,"id":59638160,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":192,"osr":0,"deopt_one":1,"deopt_all":0,"exclusive_time":11,"callees":[{"name":"Int","file":"src/gen/m-CORE.setting","line":5501,"id":59416544,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9338,"id":59616576,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":180,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9339,"id":59616880,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":173,"osr":0,"deopt_one":1,"deopt_all":0,"exclusive_time":35,"callees":[{"name":"flattens","file":"src/gen/m-CORE.setting","line":9805,"id":59634208,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5755,"id":58668704,"entries":5,"spesh_entries":5,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":9364,"id":59618096,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":132,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":16,"callees":[{"name":"iterator","file":"src/gen/m-CORE.setting","line":9056,"id":59596512,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"infix:<->","file":"src/gen/m-CORE.setting","line":5686,"id":58663232,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9698,"id":59628128,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":114,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":12,"callees":[{"name":"defined","file":"src/gen/m-CORE.setting","line":947,"id":59169392,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4946,"id":58581456,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":9699,"id":59628432,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":101,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":9,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9679,"id":59627520,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":92,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9674,"id":59626912,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":83,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":7417,"id":59509872,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":79,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":17,"callees":[{"name":"pos","file":"gen/moar/stage2/QRegex.nqp","line":996,"id":37836128,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"infix:<>=>","file":"src/gen/m-CORE.setting","line":5773,"id":58670224,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"MATCH_SAVE","file":"src/gen/m-CORE.setting","line":15413,"id":59961616,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":41,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"callees":[{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5752,"id":58668400,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":1,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"MATCH","file":"src/gen/m-CORE.setting","line":15311,"id":59956144,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":36,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":12,"callees":[{"name":"orig","file":"gen/moar/stage2/QRegex.nqp","line":993,"id":37835216,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":15324,"id":59956752,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":23,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":12,"callees":[{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4947,"id":58581760,"entries":3,"spesh_entries":0,"jit_entries":3,"inlined_entries":3,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2487,"id":61721376,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":15330,"id":59957360,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":8,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":15332,"id":59957664,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"callees":[{"name":"infix:<>=>","file":"src/gen/m-CORE.setting","line":5773,"id":58670224,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":1,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":1,"count":1},{"id":35941128,"type":"BOOTIter","spesh":0,"jit":1,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":2,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":1,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":1,"count":1},{"id":68480552,"type":"Match","spesh":0,"jit":1,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":2,"count":2},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":1,"count":1}]}],"allocations":[]},{"name":"take","file":"src/gen/m-CORE.setting","line":669,"id":58305232,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":18,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"callees":[{"name":"THROW","file":"src/gen/m-CORE.setting","line":619,"id":58302192,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":14,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9676,"id":59627216,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":9,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9671,"id":59626304,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":5,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1545,"id":61714688,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199512,"type":"Block","spesh":1,"jit":0,"count":1},{"id":35941080,"type":"BOOTCode","spesh":1,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":62199680,"type":"Int","spesh":0,"jit":0,"count":2}]}],"allocations":[]}],"allocations":[]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1}]},{"name":"","file":"src/gen/m-CORE.setting","line":9672,"id":59626608,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":1},{"id":62203040,"type":"GatherIter","spesh":0,"jit":0,"count":1},{"id":62199728,"type":"Parcel","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2}]}],"allocations":[{"id":62200040,"type":"IntLexRef","spesh":0,"jit":1,"count":1}]},{"name":"REIFY","file":"src/gen/m-CORE.setting","line":10287,"id":59666432,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":1,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":1,"count":1},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":2,"count":2},{"id":62200040,"type":"IntLexRef","spesh":0,"jit":5,"count":5},{"id":62199728,"type":"Parcel","spesh":0,"jit":1,"count":1},{"id":62199800,"type":"ListIter","spesh":0,"jit":1,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":3}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":1,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2}]}],"allocations":[]}],"allocations":[{"id":62200040,"type":"IntLexRef","spesh":1,"jit":0,"count":1}]}],"allocations":[]},{"name":"defined","file":"src/gen/m-CORE.setting","line":947,"id":59169392,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"postcircumfix:<[ ]>","file":"src/gen/m-CORE.setting","line":3333,"id":58509104,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":16,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"callees":[{"name":"at_pos","file":"src/gen/m-CORE.setting","line":9827,"id":59635728,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":15,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"callees":[{"name":"exists_pos","file":"src/gen/m-CORE.setting","line":9845,"id":59636640,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":12,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"callees":[{"name":"gimme","file":"src/gen/m-CORE.setting","line":9860,"id":59637248,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":9,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9870,"id":59638160,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":1,"deopt_all":0,"exclusive_time":3,"callees":[{"name":"Int","file":"src/gen/m-CORE.setting","line":5501,"id":59416544,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":1,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2}]}],"allocations":[]}],"allocations":[{"id":62200040,"type":"IntLexRef","spesh":1,"jit":0,"count":1}]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":9},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":13},{"id":62199920,"type":"Hash","spesh":0,"jit":0,"count":2}]},{"name":"STORE","file":"src/gen/m-CORE.setting","line":10774,"id":58410416,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":127,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":17,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2846,"id":61723200,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":1,"count":1}]},{"name":"eager","file":"src/gen/m-CORE.setting","line":9834,"id":59636032,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":106,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"callees":[{"name":"gimme","file":"src/gen/m-CORE.setting","line":9860,"id":59637248,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":102,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":20,"callees":[{"name":"infinite","file":"src/gen/m-CORE.setting","line":9396,"id":59619008,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4947,"id":58581760,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9338,"id":59616576,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":80,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9339,"id":59616880,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":75,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":67,"callees":[{"name":"flattens","file":"src/gen/m-CORE.setting","line":10734,"id":58406768,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5755,"id":58668704,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"REIFY","file":"src/gen/m-CORE.setting","line":10763,"id":58409808,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":7,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"callees":[{"name":"REIFY","file":"src/gen/m-CORE.setting","line":10287,"id":59666432,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":35941128,"type":"BOOTIter","spesh":0,"jit":1,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":2,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":1,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":2,"count":2},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":2,"count":2},{"id":62200040,"type":"IntLexRef","spesh":0,"jit":1,"count":1},{"id":62199728,"type":"Parcel","spesh":0,"jit":1,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":3}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":3}]}],"allocations":[]},{"name":"sink","file":"src/gen/m-CORE.setting","line":10346,"id":58393696,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":1},{"id":62199800,"type":"ListIter","spesh":0,"jit":0,"count":1}]},{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4947,"id":58581760,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":99,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"Bool","file":"src/gen/m-CORE.setting","line":939,"id":59168176,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":94,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":13,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2846,"id":61723200,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":2,"count":2}]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":9779,"id":59630560,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":78,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"callees":[{"name":"gimme","file":"src/gen/m-CORE.setting","line":9860,"id":59637248,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":75,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9870,"id":59638160,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":70,"osr":0,"deopt_one":1,"deopt_all":0,"exclusive_time":7,"callees":[{"name":"Int","file":"src/gen/m-CORE.setting","line":5501,"id":59416544,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9338,"id":59616576,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":62,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9339,"id":59616880,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":57,"osr":0,"deopt_one":1,"deopt_all":0,"exclusive_time":22,"callees":[{"name":"flattens","file":"src/gen/m-CORE.setting","line":10734,"id":58406768,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5755,"id":58668704,"entries":3,"spesh_entries":3,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":9364,"id":59618096,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":29,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":14,"callees":[{"name":"iterator","file":"src/gen/m-CORE.setting","line":9884,"id":59639072,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":11,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"callees":[{"name":"Parcel","file":"src/gen/m-CORE.setting","line":9814,"id":59634816,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":6,"osr":0,"deopt_one":1,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"defined","file":"src/gen/m-CORE.setting","line":947,"id":59169392,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":35941008,"type":"BOOTArray","spesh":0,"jit":1,"count":1},{"id":62199728,"type":"Parcel","spesh":0,"jit":1,"count":1}]}],"allocations":[{"id":62199800,"type":"ListIter","spesh":0,"jit":1,"count":1}]},{"name":"infix:<->","file":"src/gen/m-CORE.setting","line":5686,"id":58663232,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9338,"id":59616576,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2}]}],"allocations":[{"id":62200040,"type":"IntLexRef","spesh":0,"jit":1,"count":1}]},{"name":"REIFY","file":"src/gen/m-CORE.setting","line":10763,"id":58409808,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"callees":[{"name":"REIFY","file":"src/gen/m-CORE.setting","line":10287,"id":59666432,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":35941128,"type":"BOOTIter","spesh":0,"jit":1,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":2,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":1,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":2,"count":2},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":2,"count":2},{"id":62200040,"type":"IntLexRef","spesh":0,"jit":3,"count":3},{"id":62199728,"type":"Parcel","spesh":0,"jit":1,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":3}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":1,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":1,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":2,"count":2}]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":5497,"id":59416240,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":1,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":15224,"id":59949456,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]}],"allocations":[]},{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":5245,"id":58638912,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":32,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":12,"callees":[{"name":"Numeric","file":"src/gen/m-CORE.setting","line":9782,"id":59631472,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":18,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"callees":[{"name":"elems","file":"src/gen/m-CORE.setting","line":9836,"id":59636336,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":13,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":642,"id":58303104,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":8,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"callees":[{"name":"RETURN-PARCEL","file":"src/gen/m-CORE.setting","line":627,"id":58302496,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":0,"count":1}]}],"allocations":[]}],"allocations":[]},{"name":"Numeric","file":"src/gen/m-CORE.setting","line":5016,"id":59389488,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":5741,"id":58667488,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"postcircumfix:<[ ]>","file":"src/gen/m-CORE.setting","line":3333,"id":58509104,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":26,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":10,"callees":[{"name":"at_pos","file":"src/gen/m-CORE.setting","line":10659,"id":58402816,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":15,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":15,"callees":[{"name":"Int","file":"src/gen/m-CORE.setting","line":5501,"id":59416544,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2}]}],"allocations":[]},{"name":"APPLY-MATCHES","file":"src/gen/m-CORE.setting","line":7542,"id":59520512,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":579,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":16,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1489,"id":61712864,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[{"id":62199488,"type":"Code","spesh":1,"jit":0,"count":1},{"id":35941080,"type":"BOOTCode","spesh":1,"jit":0,"count":1}]},{"name":"","file":"src/gen/m-CORE.setting","line":7548,"id":59520816,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1}]},{"name":"","file":"src/gen/m-CORE.setting","line":7551,"id":59522032,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":558,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":26,"callees":[{"name":"count","file":"src/gen/m-CORE.setting","line":3798,"id":59297984,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":6,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"count","file":"src/gen/m-CORE.setting","line":12388,"id":59748208,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":5741,"id":58667488,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"infix:<,>","file":"src/gen/m-CORE.setting","line":9029,"id":58758384,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199728,"type":"Parcel","spesh":1,"jit":0,"count":1}]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1545,"id":61714688,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199512,"type":"Block","spesh":1,"jit":0,"count":1},{"id":35941080,"type":"BOOTCode","spesh":1,"jit":0,"count":1}]},{"name":"for","file":"src/gen/m-CORE.setting","line":1792,"id":59247520,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":107,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":10,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2846,"id":61723200,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":1,"count":1}]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1919,"id":61717424,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":76,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":27,"callees":[{"name":"is_bindable","file":"src/gen/m-BOOTSTRAP.nqp","line":884,"id":61699184,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":49,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":890,"id":61699488,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":43,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"callees":[{"name":"bind","file":"src/gen/m-BOOTSTRAP.nqp","line":569,"id":61697360,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":39,"osr":0,"deopt_one":1,"deopt_all":0,"exclusive_time":20,"callees":[{"name":"bind_one_param","file":"src/gen/m-BOOTSTRAP.nqp","line":161,"id":61696144,"entries":4,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":17,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":17,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":4},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2}]},{"name":"handle_optional","file":"src/gen/m-BOOTSTRAP.nqp","line":534,"id":61697056,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":62199920,"type":"Hash","spesh":1,"jit":0,"count":1}]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":1,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":2,"jit":0,"count":2},{"id":35942160,"type":"NQPArray","spesh":2,"jit":0,"count":2},{"id":35941032,"type":"BOOTHash","spesh":1,"jit":0,"count":1},{"id":35941224,"type":"CallCapture","spesh":1,"jit":0,"count":1}]},{"name":"for","file":"src/gen/m-CORE.setting","line":1794,"id":59248128,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":19,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"callees":[{"name":"new","file":"src/gen/m-CORE.setting","line":9435,"id":59620528,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":11,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":7,"callees":[{"name":"BUILD","file":"src/gen/m-CORE.setting","line":9441,"id":59620832,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[{"id":62200016,"type":"Scalar","spesh":5,"jit":0,"count":5}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":4,"jit":0,"count":4},{"id":65564936,"type":"MapIter","spesh":1,"jit":0,"count":1},{"id":35941008,"type":"BOOTArray","spesh":1,"jit":0,"count":1},{"id":62199800,"type":"ListIter","spesh":1,"jit":0,"count":1}]},{"name":"list","file":"src/gen/m-CORE.setting","line":1669,"id":59226544,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":1,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":35941008,"type":"BOOTArray","spesh":0,"jit":1,"count":1}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":2,"count":2}]}],"allocations":[]},{"name":"sink","file":"src/gen/m-CORE.setting","line":10346,"id":58393696,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":414,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":7,"callees":[{"name":"gimme","file":"src/gen/m-CORE.setting","line":9860,"id":59637248,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":407,"osr":0,"deopt_one":1,"deopt_all":0,"exclusive_time":19,"callees":[{"name":"infinite","file":"src/gen/m-CORE.setting","line":9396,"id":59619008,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":5,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"infinite","file":"src/gen/m-CORE.setting","line":960,"id":59170912,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4947,"id":58581760,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9338,"id":59616576,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":382,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9339,"id":59616880,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":376,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":28,"callees":[{"name":"flattens","file":"src/gen/m-CORE.setting","line":9805,"id":59634208,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5755,"id":58668704,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":9364,"id":59618096,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":344,"osr":0,"deopt_one":1,"deopt_all":0,"exclusive_time":14,"callees":[{"name":"infinite","file":"src/gen/m-CORE.setting","line":960,"id":59170912,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"iterator","file":"src/gen/m-CORE.setting","line":9056,"id":59596512,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9454,"id":59621440,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":329,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9455,"id":59621744,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":323,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":102,"callees":[{"name":"count","file":"src/gen/m-CORE.setting","line":3798,"id":59297984,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"callees":[{"name":"count","file":"src/gen/m-CORE.setting","line":12388,"id":59748208,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5752,"id":58668400,"entries":3,"spesh_entries":0,"jit_entries":3,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":5443,"id":58653504,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":10,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":7,"callees":[{"name":"Bridge","file":"src/gen/m-CORE.setting","line":5522,"id":59418368,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199704,"type":"Num","spesh":0,"jit":1,"count":1}]},{"name":"Bridge","file":"src/gen/m-CORE.setting","line":5904,"id":59439040,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":6253,"id":58692416,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"phasers","file":"src/gen/m-CORE.setting","line":3850,"id":59301936,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":5,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"allocations":[]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":939,"id":59168176,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":7,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2846,"id":61723200,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":1,"count":1}]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":8804,"id":59579184,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9338,"id":59616576,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":65,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9339,"id":59616880,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":60,"osr":0,"deopt_one":1,"deopt_all":0,"exclusive_time":28,"callees":[{"name":"flattens","file":"src/gen/m-CORE.setting","line":9452,"id":59621136,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5755,"id":58668704,"entries":5,"spesh_entries":5,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":9364,"id":59618096,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":29,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":14,"callees":[{"name":"iterator","file":"src/gen/m-CORE.setting","line":9884,"id":59639072,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":11,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"callees":[{"name":"Parcel","file":"src/gen/m-CORE.setting","line":9814,"id":59634816,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":7,"osr":0,"deopt_one":1,"deopt_all":0,"exclusive_time":6,"callees":[{"name":"defined","file":"src/gen/m-CORE.setting","line":947,"id":59169392,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":35941008,"type":"BOOTArray","spesh":0,"jit":1,"count":1},{"id":62199728,"type":"Parcel","spesh":0,"jit":1,"count":1}]}],"allocations":[{"id":62199800,"type":"ListIter","spesh":0,"jit":1,"count":1}]},{"name":"infix:<->","file":"src/gen/m-CORE.setting","line":5686,"id":58663232,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9338,"id":59616576,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2}]}],"allocations":[{"id":62200040,"type":"IntLexRef","spesh":0,"jit":1,"count":1}]},{"name":"REIFY","file":"src/gen/m-CORE.setting","line":9632,"id":59625088,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":1,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":2,"count":2},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":2,"count":2},{"id":62200040,"type":"IntLexRef","spesh":0,"jit":5,"count":5},{"id":62199728,"type":"Parcel","spesh":0,"jit":1,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":1,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":3,"count":3}]},{"name":"infix:</>","file":"src/gen/m-CORE.setting","line":12758,"id":58799120,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":36,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"callees":[{"name":"DIVIDE_NUMBERS","file":"src/gen/m-CORE.setting","line":12625,"id":58793344,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":27,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":20,"callees":[{"name":"infix:<gcd>","file":"src/gen/m-CORE.setting","line":5726,"id":58666272,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199680,"type":"Int","spesh":0,"jit":1,"count":1}]},{"name":"infix:<div>","file":"src/gen/m-CORE.setting","line":5697,"id":58664144,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[{"id":62199680,"type":"Int","spesh":0,"jit":2,"count":2}]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5752,"id":58668400,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2},{"id":65566496,"type":"Rat","spesh":0,"jit":0,"count":1}]}],"allocations":[]},{"name":"floor","file":"src/gen/m-CORE.setting","line":12466,"id":59751856,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"callees":[{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":5741,"id":58667488,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":1,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"infix:<>>","file":"src/gen/m-CORE.setting","line":5766,"id":58669616,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"prefix:<+>","file":"src/gen/m-CORE.setting","line":5050,"id":58595440,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"callees":[{"name":"Numeric","file":"src/gen/m-CORE.setting","line":8805,"id":59579488,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":1,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":5741,"id":58667488,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4947,"id":58581760,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":7556,"id":59522336,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":50,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":39,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1489,"id":61712864,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[{"id":62199488,"type":"Code","spesh":1,"jit":0,"count":1},{"id":35941080,"type":"BOOTCode","spesh":1,"jit":0,"count":1}]},{"name":"","file":"src/gen/m-CORE.setting","line":7557,"id":59522640,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]},{"name":"<anon>","file":"src/gen/m-CORE.setting","line":3924,"id":59306496,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]},{"name":"infix:<->","file":"src/gen/m-CORE.setting","line":5686,"id":58663232,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"","file":"lib/NativeCall.pm","line":187,"id":99587216,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"prefix:<~>","file":"src/gen/m-CORE.setting","line":8259,"id":58723424,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":3},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1},{"id":62200040,"type":"IntLexRef","spesh":0,"jit":0,"count":1}]},{"name":"find_method","file":"src/gen/m-Metamodel.nqp","line":1023,"id":61937328,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":29,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":26,"callees":[{"name":"submethod_table","file":"src/gen/m-Metamodel.nqp","line":487,"id":61922736,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"mro","file":"src/gen/m-Metamodel.nqp","line":991,"id":61936416,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":1,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"method_table","file":"src/gen/m-Metamodel.nqp","line":3075,"id":61994784,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":35941032,"type":"BOOTHash","spesh":0,"jit":1,"count":1}]},{"name":"method_table","file":"src/gen/m-Metamodel.nqp","line":482,"id":61922432,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":35941032,"type":"BOOTHash","spesh":0,"jit":1,"count":1},{"id":35942184,"type":"NQPArrayIter","spesh":0,"jit":1,"count":1}]},{"name":"fire_phasers","file":"src/gen/m-CORE.setting","line":3843,"id":59301328,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":6,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"callees":[{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4947,"id":58581760,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":1,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":1,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":5},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":3},{"id":62200040,"type":"IntLexRef","spesh":0,"jit":0,"count":5},{"id":62199728,"type":"Parcel","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":1,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":3,"jit":0,"count":3}]}],"allocations":[]},{"name":"REIFY","file":"src/gen/m-CORE.setting","line":10287,"id":59666432,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":1,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":2,"count":2},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":2,"count":2},{"id":62200040,"type":"IntLexRef","spesh":0,"jit":2,"count":2},{"id":62199728,"type":"Parcel","spesh":0,"jit":1,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":1,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":3,"jit":0,"count":3}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":1,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":3,"jit":0,"count":3}]}],"allocations":[{"id":62199800,"type":"ListIter","spesh":0,"jit":1,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1},{"id":62199656,"type":"Str","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":4},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2},{"id":35941584,"type":"BOOTStrArray","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":9},{"id":62199920,"type":"Hash","spesh":0,"jit":0,"count":1},{"id":62199848,"type":"Array","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":62199944,"type":"Capture","spesh":0,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1}]},{"name":"infix:<=>","file":"src/gen/m-CORE.setting","line":20854,"id":58972400,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"ACCEPTS","file":"src/gen/m-CORE.setting","line":15227,"id":59949760,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"Stringy","file":"src/gen/m-CORE.setting","line":6921,"id":59491024,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"infix:<~>","file":"src/gen/m-CORE.setting","line":8262,"id":58724032,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[{"id":62199656,"type":"Str","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":5},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2}]},{"name":"defined","file":"src/gen/m-CORE.setting","line":947,"id":59169392,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1521,"id":61713776,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"return_hash_for","file":"lib/NativeCall.pm","line":50,"id":99485504,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":443,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":21,"callees":[{"name":"returns","file":"src/gen/m-CORE.setting","line":12420,"id":59749728,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"ACCEPTS","file":"src/gen/m-CORE.setting","line":895,"id":59164832,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"type_code_for","file":"lib/NativeCall.pm","line":146,"id":99507392,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":419,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":28,"callees":[{"name":"bind_sig","file":"src/gen/m-BOOTSTRAP.nqp","line":832,"id":61698880,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":28,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"callees":[{"name":"bind","file":"src/gen/m-BOOTSTRAP.nqp","line":569,"id":61697360,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":22,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":12,"callees":[{"name":"bind_one_param","file":"src/gen/m-BOOTSTRAP.nqp","line":161,"id":61696144,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":9,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":9,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1}]}],"allocations":[]}],"allocations":[{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":1},{"id":35941152,"type":"BOOTContext","spesh":0,"jit":0,"count":1}]},{"name":"name","file":"src/gen/m-Metamodel.nqp","line":69,"id":61904800,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]},{"name":"postcircumfix:<{ }>","file":"src/gen/m-CORE.setting","line":3584,"id":58534032,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":342,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":9,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1919,"id":61717424,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":214,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":170,"callees":[{"name":"is_bindable","file":"src/gen/m-BOOTSTRAP.nqp","line":884,"id":61699184,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":43,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":890,"id":61699488,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":37,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"callees":[{"name":"bind","file":"src/gen/m-BOOTSTRAP.nqp","line":569,"id":61697360,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":35,"osr":0,"deopt_one":1,"deopt_all":0,"exclusive_time":20,"callees":[{"name":"bind_one_param","file":"src/gen/m-BOOTSTRAP.nqp","line":161,"id":61696144,"entries":4,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":14,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":14,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":4},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":62199920,"type":"Hash","spesh":1,"jit":0,"count":1}]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":1,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":2},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":1},{"id":35941224,"type":"CallCapture","spesh":0,"jit":0,"count":1}]},{"name":"postcircumfix:<{ }>","file":"src/gen/m-CORE.setting","line":3602,"id":58535856,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":119,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":15,"callees":[{"name":"FLATTENABLE_LIST","file":"src/gen/m-CORE.setting","line":11297,"id":58452976,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":35941008,"type":"BOOTArray","spesh":0,"jit":1,"count":1}]},{"name":"FLATTENABLE_HASH","file":"src/gen/m-CORE.setting","line":11298,"id":58453280,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"SLICE_ONE_HASH","file":"src/gen/m-CORE.setting","line":2840,"id":58464416,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":102,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":17,"callees":[{"name":"CLONE-HASH-DECONTAINERIZED","file":"src/gen/m-CORE.setting","line":869,"id":58319520,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":1},{"id":35941128,"type":"BOOTIter","spesh":0,"jit":0,"count":1}]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1545,"id":61714688,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199512,"type":"Block","spesh":1,"jit":0,"count":1},{"id":35941080,"type":"BOOTCode","spesh":1,"jit":0,"count":1}]},{"name":"","file":"src/gen/m-CORE.setting","line":2844,"id":58464720,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":50,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":10,"callees":[{"name":"DELETEKEY","file":"src/gen/m-CORE.setting","line":2389,"id":58381536,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":5,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2849,"id":61723504,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":62199920,"type":"Hash","spesh":0,"jit":1,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":1,"jit":0,"count":1}]},{"name":"","file":"src/gen/m-CORE.setting","line":2934,"id":58473232,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":34,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":24,"callees":[{"name":"DELETEKEY","file":"src/gen/m-CORE.setting","line":2389,"id":58381536,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":5,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2849,"id":61723504,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":62199920,"type":"Hash","spesh":0,"jit":1,"count":1}]},{"name":"","file":"src/gen/m-CORE.setting","line":2390,"id":58382144,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":1,"jit":0,"count":1}]},{"name":"exists_key","file":"src/gen/m-CORE.setting","line":11199,"id":58444768,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]},{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":5741,"id":58667488,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":4901,"id":59383104,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4946,"id":58581456,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":10},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1}]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":939,"id":59168176,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":27,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2846,"id":61723200,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":1,"count":1}]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":9779,"id":59630560,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":19,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"callees":[{"name":"gimme","file":"src/gen/m-CORE.setting","line":9860,"id":59637248,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":14,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9870,"id":59638160,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":6,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"callees":[{"name":"Int","file":"src/gen/m-CORE.setting","line":5501,"id":59416544,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":2,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":1,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":2,"count":2}]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":5497,"id":59416240,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":1,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1},{"id":62199920,"type":"Hash","spesh":0,"jit":0,"count":1},{"id":62199848,"type":"Array","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1},{"id":62199920,"type":"Hash","spesh":0,"jit":0,"count":1}]}],"allocations":[]},{"name":"postcircumfix:<{ }>","file":"src/gen/m-CORE.setting","line":3587,"id":58534336,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":6,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"callees":[{"name":"at_key","file":"src/gen/m-CORE.setting","line":11333,"id":59667952,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":1,"jit":0,"count":1}]}],"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":642,"id":58303104,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":10,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":9,"callees":[{"name":"RETURN-PARCEL","file":"src/gen/m-CORE.setting","line":627,"id":58302496,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":62199728,"type":"Parcel","spesh":1,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":1},{"id":62199656,"type":"Str","spesh":0,"jit":0,"count":1}]},{"name":"returns","file":"src/gen/m-CORE.setting","line":4196,"id":59322000,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":8,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":7,"callees":[{"name":"signature","file":"src/gen/m-CORE.setting","line":3800,"id":59298288,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"returns","file":"src/gen/m-CORE.setting","line":12420,"id":59749728,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"map_return_type","file":"lib/NativeCall.pm","line":163,"id":99466272,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1},{"id":62200088,"type":"StrLexRef","spesh":0,"jit":0,"count":1}]},{"name":"decont_all","file":"gen/moar/stage2/QAST.nqp","line":3961,"id":39712544,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":6,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":62199944,"type":"Capture","spesh":0,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1},{"id":62200112,"type":"IntAttrRef","spesh":0,"jit":0,"count":1}]}],"allocations":[]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2},{"id":62199944,"type":"Capture","spesh":0,"jit":0,"count":1}]}],"allocations":[]},{"name":"ensure","file":"/home/x/data/projects/perl6/Inline-Lua/lib/Inline/Lua.pm6","line":174,"id":145582352,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":9,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":9,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2}]},{"name":"call","file":"/home/x/data/projects/perl6/Inline-Lua/lib/Inline/Lua.pm6","line":99,"id":138571152,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":26561,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":215,"callees":[{"name":"find_method","file":"src/gen/m-Metamodel.nqp","line":1023,"id":61937328,"entries":3,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":153,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":84,"callees":[{"name":"submethod_table","file":"src/gen/m-Metamodel.nqp","line":487,"id":61922736,"entries":3,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":11,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":11,"allocations":[]},{"name":"mro","file":"src/gen/m-Metamodel.nqp","line":991,"id":61936416,"entries":3,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":14,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":14,"allocations":[]},{"name":"method_table","file":"src/gen/m-Metamodel.nqp","line":482,"id":61922432,"entries":9,"spesh_entries":0,"jit_entries":6,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[]},{"name":"find_method_fallback","file":"src/gen/m-Metamodel.nqp","line":2859,"id":61985968,"entries":3,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":39,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":32,"callees":[{"name":"","file":"src/gen/m-Metamodel.nqp","line":2762,"id":61983232,"entries":3,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]},{"name":"","file":"src/gen/m-Metamodel.nqp","line":2765,"id":61983536,"entries":3,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":3}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":3},{"id":35942184,"type":"NQPArrayIter","spesh":0,"jit":0,"count":3}]}],"allocations":[{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":3},{"id":35942184,"type":"NQPArrayIter","spesh":0,"jit":0,"count":3}]},{"name":"","file":"src/gen/m-Metamodel.nqp","line":2766,"id":61983840,"entries":3,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":5858,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":13,"callees":[{"name":"FALLBACK","file":"/home/x/data/projects/perl6/Inline-Lua/lib/Lua/Raw.pm6","line":182,"id":111116944,"entries":3,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":5845,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":91,"callees":[{"name":"postcircumfix:<{ }>","file":"src/gen/m-CORE.setting","line":3587,"id":58534336,"entries":3,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":34,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":18,"callees":[{"name":"at_key","file":"src/gen/m-CORE.setting","line":11333,"id":59667952,"entries":3,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":16,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":16,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":3}]}],"allocations":[]},{"name":"FLATTENABLE_LIST","file":"src/gen/m-CORE.setting","line":8767,"id":59576448,"entries":3,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]},{"name":"FLATTENABLE_HASH","file":"src/gen/m-CORE.setting","line":8768,"id":59576752,"entries":3,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[{"id":35941032,"type":"BOOTHash","spesh":0,"jit":1,"count":3}]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2680,"id":61722288,"entries":3,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":5711,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":26,"callees":[{"name":"postcircumfix:<( )>","file":"lib/NativeCall.pm","line":202,"id":99846432,"entries":3,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":5685,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":167,"callees":[{"name":"find_method","file":"src/gen/m-Metamodel.nqp","line":1023,"id":61937328,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":45,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":35,"callees":[{"name":"submethod_table","file":"src/gen/m-Metamodel.nqp","line":487,"id":61922736,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]},{"name":"mro","file":"src/gen/m-Metamodel.nqp","line":991,"id":61936416,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":5,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"allocations":[]},{"name":"method_table","file":"src/gen/m-Metamodel.nqp","line":3075,"id":61994784,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":2}]},{"name":"method_table","file":"src/gen/m-Metamodel.nqp","line":482,"id":61922432,"entries":4,"spesh_entries":0,"jit_entries":4,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":2},{"id":35942184,"type":"NQPArrayIter","spesh":0,"jit":0,"count":2}]},{"name":"decont_all","file":"gen/moar/stage2/QAST.nqp","line":3961,"id":39712544,"entries":3,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":16,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":16,"allocations":[]},{"name":"","file":"lib/NativeCall.pm","line":203,"id":99848448,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":5455,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":121,"callees":[{"name":"signature","file":"src/gen/m-CORE.setting","line":3800,"id":59298288,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]},{"name":"param_list_for","file":"lib/NativeCall.pm","line":40,"id":99481472,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2105,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":26,"callees":[{"name":"params","file":"src/gen/m-CORE.setting","line":12392,"id":59748512,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":1}]},{"name":"infix:<,>","file":"src/gen/m-CORE.setting","line":9029,"id":58758384,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199728,"type":"Parcel","spesh":1,"jit":0,"count":1}]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1545,"id":61714688,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199512,"type":"Block","spesh":1,"jit":0,"count":1},{"id":35941080,"type":"BOOTCode","spesh":1,"jit":0,"count":1}]},{"name":"for","file":"src/gen/m-CORE.setting","line":1792,"id":59247520,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":112,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":13,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2846,"id":61723200,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":1,"count":1}]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1919,"id":61717424,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":76,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":26,"callees":[{"name":"is_bindable","file":"src/gen/m-BOOTSTRAP.nqp","line":884,"id":61699184,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":49,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":890,"id":61699488,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":43,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"callees":[{"name":"bind","file":"src/gen/m-BOOTSTRAP.nqp","line":569,"id":61697360,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":39,"osr":0,"deopt_one":1,"deopt_all":0,"exclusive_time":19,"callees":[{"name":"bind_one_param","file":"src/gen/m-BOOTSTRAP.nqp","line":161,"id":61696144,"entries":4,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":18,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":18,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":4},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2}]},{"name":"handle_optional","file":"src/gen/m-BOOTSTRAP.nqp","line":534,"id":61697056,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":62199920,"type":"Hash","spesh":1,"jit":0,"count":1}]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":1,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":2,"jit":0,"count":2},{"id":35942160,"type":"NQPArray","spesh":2,"jit":0,"count":2},{"id":35941032,"type":"BOOTHash","spesh":1,"jit":0,"count":1},{"id":35941224,"type":"CallCapture","spesh":1,"jit":0,"count":1}]},{"name":"for","file":"src/gen/m-CORE.setting","line":1794,"id":59248128,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":20,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"callees":[{"name":"new","file":"src/gen/m-CORE.setting","line":9435,"id":59620528,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":12,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":7,"callees":[{"name":"BUILD","file":"src/gen/m-CORE.setting","line":9441,"id":59620832,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":5,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"allocations":[{"id":62200016,"type":"Scalar","spesh":5,"jit":0,"count":5}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":4,"jit":0,"count":4},{"id":65564936,"type":"MapIter","spesh":1,"jit":0,"count":1},{"id":35941008,"type":"BOOTArray","spesh":1,"jit":0,"count":1},{"id":62199800,"type":"ListIter","spesh":1,"jit":0,"count":1}]},{"name":"list","file":"src/gen/m-CORE.setting","line":1669,"id":59226544,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":1,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":35941008,"type":"BOOTArray","spesh":0,"jit":1,"count":1}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":2,"count":2}]}],"allocations":[]},{"name":"sink","file":"src/gen/m-CORE.setting","line":10346,"id":58393696,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":1959,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":7,"callees":[{"name":"gimme","file":"src/gen/m-CORE.setting","line":9860,"id":59637248,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":1952,"osr":0,"deopt_one":1,"deopt_all":0,"exclusive_time":23,"callees":[{"name":"infinite","file":"src/gen/m-CORE.setting","line":9396,"id":59619008,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":5,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"infinite","file":"src/gen/m-CORE.setting","line":960,"id":59170912,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4947,"id":58581760,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9338,"id":59616576,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":1922,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9339,"id":59616880,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":1916,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":29,"callees":[{"name":"flattens","file":"src/gen/m-CORE.setting","line":9805,"id":59634208,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5755,"id":58668704,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":9364,"id":59618096,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":1883,"osr":0,"deopt_one":1,"deopt_all":0,"exclusive_time":16,"callees":[{"name":"infinite","file":"src/gen/m-CORE.setting","line":960,"id":59170912,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"iterator","file":"src/gen/m-CORE.setting","line":9056,"id":59596512,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9454,"id":59621440,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":1867,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9455,"id":59621744,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1861,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":102,"callees":[{"name":"count","file":"src/gen/m-CORE.setting","line":3798,"id":59297984,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"callees":[{"name":"count","file":"src/gen/m-CORE.setting","line":12388,"id":59748208,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5752,"id":58668400,"entries":3,"spesh_entries":0,"jit_entries":3,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":5443,"id":58653504,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":9,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":7,"callees":[{"name":"Bridge","file":"src/gen/m-CORE.setting","line":5522,"id":59418368,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199704,"type":"Num","spesh":0,"jit":1,"count":1}]},{"name":"Bridge","file":"src/gen/m-CORE.setting","line":5904,"id":59439040,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":6253,"id":58692416,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"phasers","file":"src/gen/m-CORE.setting","line":3850,"id":59301936,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":939,"id":59168176,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":6,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2846,"id":61723200,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":1,"count":1}]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":8804,"id":59579184,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9338,"id":59616576,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":98,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9339,"id":59616880,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":94,"osr":0,"deopt_one":1,"deopt_all":0,"exclusive_time":33,"callees":[{"name":"flattens","file":"src/gen/m-CORE.setting","line":9452,"id":59621136,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5755,"id":58668704,"entries":7,"spesh_entries":7,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":9364,"id":59618096,"entries":3,"spesh_entries":0,"jit_entries":3,"inlined_entries":0,"inclusive_time":57,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":20,"callees":[{"name":"iterator","file":"src/gen/m-CORE.setting","line":9884,"id":59639072,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":11,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"callees":[{"name":"Parcel","file":"src/gen/m-CORE.setting","line":9814,"id":59634816,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":6,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"callees":[{"name":"defined","file":"src/gen/m-CORE.setting","line":947,"id":59169392,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":35941008,"type":"BOOTArray","spesh":0,"jit":1,"count":1},{"id":62199728,"type":"Parcel","spesh":0,"jit":1,"count":1}]}],"allocations":[{"id":62199800,"type":"ListIter","spesh":0,"jit":1,"count":1}]},{"name":"infix:<->","file":"src/gen/m-CORE.setting","line":5686,"id":58663232,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9338,"id":59616576,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":24,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":7,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9339,"id":59616880,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":17,"osr":0,"deopt_one":1,"deopt_all":0,"exclusive_time":15,"callees":[{"name":"flattens","file":"src/gen/m-CORE.setting","line":9805,"id":59634208,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5755,"id":58668704,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"REIFY","file":"src/gen/m-CORE.setting","line":10287,"id":59666432,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":1,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":2,"count":2},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":2,"count":2},{"id":62200040,"type":"IntLexRef","spesh":0,"jit":1,"count":1},{"id":62199728,"type":"Parcel","spesh":0,"jit":1,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":5}]},{"name":"iterator","file":"src/gen/m-CORE.setting","line":9404,"id":59619312,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":62200040,"type":"IntLexRef","spesh":0,"jit":2,"count":2}]},{"name":"REIFY","file":"src/gen/m-CORE.setting","line":9632,"id":59625088,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":1,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":2,"count":2},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":2,"count":2},{"id":62200040,"type":"IntLexRef","spesh":0,"jit":7,"count":7},{"id":62199728,"type":"Parcel","spesh":0,"jit":1,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":1,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":3,"count":3}]},{"name":"infix:</>","file":"src/gen/m-CORE.setting","line":12758,"id":58799120,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":24,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"DIVIDE_NUMBERS","file":"src/gen/m-CORE.setting","line":12625,"id":58793344,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":19,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":11,"callees":[{"name":"infix:<gcd>","file":"src/gen/m-CORE.setting","line":5726,"id":58666272,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":1,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199680,"type":"Int","spesh":0,"jit":1,"count":1}]},{"name":"infix:<div>","file":"src/gen/m-CORE.setting","line":5697,"id":58664144,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[{"id":62199680,"type":"Int","spesh":2,"jit":0,"count":2}]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5752,"id":58668400,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":2,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":2,"count":2},{"id":65566496,"type":"Rat","spesh":0,"jit":1,"count":1}]}],"allocations":[]},{"name":"floor","file":"src/gen/m-CORE.setting","line":12466,"id":59751856,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"callees":[{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":5741,"id":58667488,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":1,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"infix:<>>","file":"src/gen/m-CORE.setting","line":5766,"id":58669616,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"prefix:<+>","file":"src/gen/m-CORE.setting","line":5050,"id":58595440,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"callees":[{"name":"Numeric","file":"src/gen/m-CORE.setting","line":8805,"id":59579488,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":1,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":5741,"id":58667488,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4947,"id":58581760,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"","file":"lib/NativeCall.pm","line":42,"id":99483488,"entries":4,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1575,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":17,"callees":[{"name":"param_hash_for","file":"lib/NativeCall.pm","line":18,"id":99460384,"entries":4,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1558,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":93,"callees":[{"name":"type","file":"src/gen/m-CORE.setting","line":12113,"id":59722368,"entries":8,"spesh_entries":0,"jit_entries":5,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[]},{"name":"ACCEPTS","file":"src/gen/m-CORE.setting","line":895,"id":59164832,"entries":8,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":5,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"allocations":[]},{"name":"find_method","file":"src/gen/m-Metamodel.nqp","line":1607,"id":61953440,"entries":4,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":16,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":16,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":4},{"id":35940984,"type":"BOOTStr","spesh":0,"jit":0,"count":4}]},{"name":"type_code_for","file":"lib/NativeCall.pm","line":146,"id":99507392,"entries":4,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1437,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":85,"callees":[{"name":"bind_sig","file":"src/gen/m-BOOTSTRAP.nqp","line":832,"id":61698880,"entries":4,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":69,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":17,"callees":[{"name":"bind","file":"src/gen/m-BOOTSTRAP.nqp","line":569,"id":61697360,"entries":4,"spesh_entries":4,"jit_entries":0,"inlined_entries":0,"inclusive_time":52,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":28,"callees":[{"name":"bind_one_param","file":"src/gen/m-BOOTSTRAP.nqp","line":161,"id":61696144,"entries":4,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":23,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":23,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":4}]}],"allocations":[]}],"allocations":[{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":4},{"id":35941152,"type":"BOOTContext","spesh":0,"jit":0,"count":4}]},{"name":"name","file":"src/gen/m-Metamodel.nqp","line":69,"id":61904800,"entries":7,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":8,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"allocations":[]},{"name":"postcircumfix:<{ }>","file":"src/gen/m-CORE.setting","line":3584,"id":58534032,"entries":4,"spesh_entries":0,"jit_entries":4,"inlined_entries":0,"inclusive_time":1194,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":26,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1919,"id":61717424,"entries":4,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":790,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":641,"callees":[{"name":"is_bindable","file":"src/gen/m-BOOTSTRAP.nqp","line":884,"id":61699184,"entries":4,"spesh_entries":4,"jit_entries":0,"inlined_entries":0,"inclusive_time":148,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":16,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":890,"id":61699488,"entries":4,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":132,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"callees":[{"name":"bind","file":"src/gen/m-BOOTSTRAP.nqp","line":569,"id":61697360,"entries":4,"spesh_entries":4,"jit_entries":0,"inlined_entries":0,"inclusive_time":123,"osr":0,"deopt_one":4,"deopt_all":0,"exclusive_time":68,"callees":[{"name":"bind_one_param","file":"src/gen/m-BOOTSTRAP.nqp","line":161,"id":61696144,"entries":16,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":55,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":55,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":16},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":4}]}],"allocations":[{"id":62199920,"type":"Hash","spesh":4,"jit":0,"count":4}]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":4,"jit":0,"count":4}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":8},{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":8},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":4},{"id":35941224,"type":"CallCapture","spesh":0,"jit":0,"count":4}]},{"name":"postcircumfix:<{ }>","file":"src/gen/m-CORE.setting","line":3602,"id":58535856,"entries":4,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":377,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":45,"callees":[{"name":"FLATTENABLE_LIST","file":"src/gen/m-CORE.setting","line":11297,"id":58452976,"entries":4,"spesh_entries":0,"jit_entries":4,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":35941008,"type":"BOOTArray","spesh":0,"jit":4,"count":4}]},{"name":"FLATTENABLE_HASH","file":"src/gen/m-CORE.setting","line":11298,"id":58453280,"entries":4,"spesh_entries":0,"jit_entries":4,"inlined_entries":0,"inclusive_time":5,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"allocations":[]},{"name":"SLICE_ONE_HASH","file":"src/gen/m-CORE.setting","line":2840,"id":58464416,"entries":4,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":325,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":57,"callees":[{"name":"CLONE-HASH-DECONTAINERIZED","file":"src/gen/m-CORE.setting","line":869,"id":58319520,"entries":4,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":18,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":18,"allocations":[{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":4},{"id":35941128,"type":"BOOTIter","spesh":0,"jit":0,"count":4}]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1545,"id":61714688,"entries":4,"spesh_entries":4,"jit_entries":0,"inlined_entries":0,"inclusive_time":5,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"allocations":[{"id":62199512,"type":"Block","spesh":4,"jit":0,"count":4},{"id":35941080,"type":"BOOTCode","spesh":4,"jit":0,"count":4}]},{"name":"","file":"src/gen/m-CORE.setting","line":2844,"id":58464720,"entries":4,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":155,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":34,"callees":[{"name":"DELETEKEY","file":"src/gen/m-CORE.setting","line":2389,"id":58381536,"entries":4,"spesh_entries":4,"jit_entries":0,"inlined_entries":0,"inclusive_time":15,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":13,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2849,"id":61723504,"entries":4,"spesh_entries":0,"jit_entries":4,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199920,"type":"Hash","spesh":0,"jit":4,"count":4}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":4,"jit":0,"count":4}]},{"name":"","file":"src/gen/m-CORE.setting","line":2934,"id":58473232,"entries":4,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":105,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":78,"callees":[{"name":"DELETEKEY","file":"src/gen/m-CORE.setting","line":2389,"id":58381536,"entries":4,"spesh_entries":4,"jit_entries":0,"inlined_entries":0,"inclusive_time":17,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":12,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2849,"id":61723504,"entries":4,"spesh_entries":0,"jit_entries":4,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199920,"type":"Hash","spesh":0,"jit":4,"count":4}]},{"name":"","file":"src/gen/m-CORE.setting","line":2390,"id":58382144,"entries":4,"spesh_entries":0,"jit_entries":4,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":4,"jit":0,"count":4}]},{"name":"exists_key","file":"src/gen/m-CORE.setting","line":11199,"id":58444768,"entries":4,"spesh_entries":0,"jit_entries":4,"inlined_entries":0,"inclusive_time":5,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"allocations":[]},{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":5741,"id":58667488,"entries":4,"spesh_entries":0,"jit_entries":4,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":4901,"id":59383104,"entries":8,"spesh_entries":0,"jit_entries":8,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4946,"id":58581456,"entries":4,"spesh_entries":0,"jit_entries":4,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":8},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":4}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":40},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":4}]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":939,"id":59168176,"entries":4,"spesh_entries":4,"jit_entries":0,"inlined_entries":0,"inclusive_time":88,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":24,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2846,"id":61723200,"entries":4,"spesh_entries":0,"jit_entries":4,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":4,"count":4}]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":9779,"id":59630560,"entries":4,"spesh_entries":0,"jit_entries":4,"inlined_entries":0,"inclusive_time":60,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":14,"callees":[{"name":"gimme","file":"src/gen/m-CORE.setting","line":9860,"id":59637248,"entries":4,"spesh_entries":0,"jit_entries":4,"inlined_entries":0,"inclusive_time":44,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":24,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9870,"id":59638160,"entries":4,"spesh_entries":0,"jit_entries":4,"inlined_entries":0,"inclusive_time":20,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":19,"callees":[{"name":"Int","file":"src/gen/m-CORE.setting","line":5501,"id":59416544,"entries":4,"spesh_entries":0,"jit_entries":4,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":8,"count":8}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":4,"count":4},{"id":62200016,"type":"Scalar","spesh":0,"jit":8,"count":8}]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":5497,"id":59416240,"entries":4,"spesh_entries":0,"jit_entries":4,"inlined_entries":4,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":4},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":4},{"id":62199920,"type":"Hash","spesh":0,"jit":0,"count":4},{"id":62199848,"type":"Array","spesh":0,"jit":0,"count":4}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":4},{"id":62199920,"type":"Hash","spesh":0,"jit":0,"count":4}]}],"allocations":[]},{"name":"postcircumfix:<{ }>","file":"src/gen/m-CORE.setting","line":3587,"id":58534336,"entries":4,"spesh_entries":0,"jit_entries":3,"inlined_entries":0,"inclusive_time":43,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":32,"callees":[{"name":"at_key","file":"src/gen/m-CORE.setting","line":11333,"id":59667952,"entries":4,"spesh_entries":3,"jit_entries":1,"inlined_entries":0,"inclusive_time":11,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":11,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":3,"jit":1,"count":4}]}],"allocations":[]},{"name":"","file":"lib/NativeCall.pm","line":149,"id":99511424,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":15,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":642,"id":58303104,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":9,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"callees":[{"name":"RETURN-PARCEL","file":"src/gen/m-CORE.setting","line":627,"id":58302496,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":62199728,"type":"Parcel","spesh":1,"jit":0,"count":1}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2}]},{"name":"","file":"src/gen/m-CORE.setting","line":642,"id":58303104,"entries":3,"spesh_entries":3,"jit_entries":0,"inlined_entries":0,"inclusive_time":20,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":19,"callees":[{"name":"RETURN-PARCEL","file":"src/gen/m-CORE.setting","line":627,"id":58302496,"entries":3,"spesh_entries":0,"jit_entries":3,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":62199728,"type":"Parcel","spesh":3,"jit":0,"count":3}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":8}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":8},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":8},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":4},{"id":62199656,"type":"Str","spesh":0,"jit":0,"count":4}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":5}]},{"name":"find_method","file":"src/gen/m-Metamodel.nqp","line":1023,"id":61937328,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":22,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":20,"callees":[{"name":"submethod_table","file":"src/gen/m-Metamodel.nqp","line":487,"id":61922736,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"mro","file":"src/gen/m-Metamodel.nqp","line":991,"id":61936416,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":1,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"method_table","file":"src/gen/m-Metamodel.nqp","line":3075,"id":61994784,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":35941032,"type":"BOOTHash","spesh":0,"jit":1,"count":1}]},{"name":"method_table","file":"src/gen/m-Metamodel.nqp","line":482,"id":61922432,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":35941032,"type":"BOOTHash","spesh":0,"jit":1,"count":1},{"id":35942184,"type":"NQPArrayIter","spesh":0,"jit":1,"count":1}]},{"name":"fire_phasers","file":"src/gen/m-CORE.setting","line":3843,"id":59301328,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"callees":[{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4947,"id":58581760,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":1,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":1,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":5},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":3},{"id":62200040,"type":"IntLexRef","spesh":0,"jit":0,"count":8},{"id":62199728,"type":"Parcel","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":1,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":3,"jit":0,"count":3}]}],"allocations":[]},{"name":"REIFY","file":"src/gen/m-CORE.setting","line":10287,"id":59666432,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":1,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":2,"count":2},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":2,"count":2},{"id":62200040,"type":"IntLexRef","spesh":0,"jit":2,"count":2},{"id":62199728,"type":"Parcel","spesh":0,"jit":1,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":1,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":3,"jit":0,"count":3}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":1,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":3,"jit":0,"count":3}]}],"allocations":[{"id":62199800,"type":"ListIter","spesh":0,"jit":1,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":1}]},{"name":"dispatch:<.?>","file":"src/gen/m-CORE.setting","line":1358,"id":59207696,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":16,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":16,"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":4},{"id":62199944,"type":"Capture","spesh":0,"jit":0,"count":2}]},{"name":"guess_library_name","file":"lib/NativeCall.pm","line":172,"id":99533792,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2502,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":56,"callees":[{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4946,"id":58581456,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2434,"id":61720160,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":7,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1545,"id":61714688,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[{"id":62199632,"type":"Regex","spesh":2,"jit":0,"count":2},{"id":35941080,"type":"BOOTCode","spesh":2,"jit":0,"count":2}]}],"allocations":[]},{"name":"ACCEPTS","file":"src/gen/m-CORE.setting","line":15620,"id":59971344,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":103,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":24,"callees":[{"name":"!cursor_init","file":"gen/moar/stage2/QRegex.nqp","line":1063,"id":37837040,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":21,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":14,"callees":[{"name":"CREATE","file":"src/gen/m-CORE.setting","line":962,"id":59171216,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":62201504,"type":"Cursor","spesh":0,"jit":2,"count":2}]},{"name":"Num","file":"src/gen/m-CORE.setting","line":5507,"id":59417152,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[{"id":62199704,"type":"Num","spesh":0,"jit":2,"count":2}]},{"name":"!cursor_start_cur","file":"gen/moar/stage2/QRegex.nqp","line":1148,"id":37837952,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[{"id":62201504,"type":"Cursor","spesh":2,"jit":0,"count":2},{"id":35941536,"type":"BOOTIntArray","spesh":2,"jit":0,"count":2}]}],"allocations":[{"id":35943552,"type":"ParseShared","spesh":0,"jit":2,"count":2},{"id":35941584,"type":"BOOTStrArray","spesh":0,"jit":2,"count":2},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":2,"count":2}]},{"name":"","file":"/home/x/.rakudobrew/moar-nom/install/languages/perl6/lib/NativeCall.pm.moarvm","line":-1,"id":99535808,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":39,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":28,"callees":[{"name":"!cursor_start","file":"gen/moar/stage2/QRegex.nqp","line":1125,"id":37837648,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62201504,"type":"Cursor","spesh":0,"jit":1,"count":1},{"id":35941536,"type":"BOOTIntArray","spesh":0,"jit":1,"count":1}]},{"name":"!shared","file":"gen/moar/stage2/QRegex.nqp","line":1252,"id":37841600,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"alpha","file":"gen/moar/stage2/QRegex.nqp","line":1555,"id":37850720,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":8,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"callees":[{"name":"!cursor_start_cur","file":"gen/moar/stage2/QRegex.nqp","line":1148,"id":37837952,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62201504,"type":"Cursor","spesh":0,"jit":1,"count":1},{"id":35941536,"type":"BOOTIntArray","spesh":0,"jit":1,"count":1}]}],"allocations":[]},{"name":"!cursor_fail","file":"gen/moar/stage2/QRegex.nqp","line":1206,"id":37839776,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":62199920,"type":"Hash","spesh":0,"jit":0,"count":1}]},{"name":"MATCH_SAVE","file":"src/gen/m-CORE.setting","line":15413,"id":59961616,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"callees":[{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5752,"id":58668400,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":2,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[]},{"name":"","file":"/home/x/.rakudobrew/moar-nom/install/languages/perl6/lib/NativeCall.pm.moarvm","line":-1,"id":99537824,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":13,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":12,"callees":[{"name":"!cursor_start","file":"gen/moar/stage2/QRegex.nqp","line":1125,"id":37837648,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":62201504,"type":"Cursor","spesh":0,"jit":1,"count":1},{"id":35941536,"type":"BOOTIntArray","spesh":0,"jit":1,"count":1}]},{"name":"!shared","file":"gen/moar/stage2/QRegex.nqp","line":1252,"id":37841600,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"!cursor_fail","file":"gen/moar/stage2/QRegex.nqp","line":1206,"id":37839776,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":62199920,"type":"Hash","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":1,"jit":0,"count":1}]},{"name":"DYNAMIC","file":"src/gen/m-CORE.setting","line":575,"id":58299152,"entries":3,"spesh_entries":0,"jit_entries":3,"inlined_entries":0,"inclusive_time":47,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":27,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":577,"id":58299456,"entries":3,"spesh_entries":3,"jit_entries":0,"inlined_entries":0,"inclusive_time":20,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":20,"allocations":[{"id":62200016,"type":"Scalar","spesh":3,"jit":0,"count":3}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":3,"count":3}]},{"name":"<anon>","file":"src/gen/m-CORE.setting","line":3918,"id":59306192,"entries":3,"spesh_entries":0,"jit_entries":3,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]},{"name":"postcircumfix:<{ }>","file":"src/gen/m-CORE.setting","line":3584,"id":58534032,"entries":3,"spesh_entries":0,"jit_entries":3,"inlined_entries":0,"inclusive_time":845,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":17,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1919,"id":61717424,"entries":3,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":601,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":471,"callees":[{"name":"is_bindable","file":"src/gen/m-BOOTSTRAP.nqp","line":884,"id":61699184,"entries":3,"spesh_entries":3,"jit_entries":0,"inlined_entries":0,"inclusive_time":130,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":10,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":890,"id":61699488,"entries":3,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":120,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":7,"callees":[{"name":"bind","file":"src/gen/m-BOOTSTRAP.nqp","line":569,"id":61697360,"entries":3,"spesh_entries":3,"jit_entries":0,"inlined_entries":0,"inclusive_time":113,"osr":0,"deopt_one":3,"deopt_all":0,"exclusive_time":49,"callees":[{"name":"bind_one_param","file":"src/gen/m-BOOTSTRAP.nqp","line":161,"id":61696144,"entries":12,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":63,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":63,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":12},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":3}]}],"allocations":[{"id":62199920,"type":"Hash","spesh":3,"jit":0,"count":3}]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":3,"jit":0,"count":3}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":6},{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":6},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":3},{"id":35941224,"type":"CallCapture","spesh":0,"jit":0,"count":3}]},{"name":"postcircumfix:<{ }>","file":"src/gen/m-CORE.setting","line":3602,"id":58535856,"entries":3,"spesh_entries":3,"jit_entries":0,"inlined_entries":0,"inclusive_time":226,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":21,"callees":[{"name":"FLATTENABLE_LIST","file":"src/gen/m-CORE.setting","line":11297,"id":58452976,"entries":3,"spesh_entries":0,"jit_entries":3,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":35941008,"type":"BOOTArray","spesh":0,"jit":3,"count":3}]},{"name":"FLATTENABLE_HASH","file":"src/gen/m-CORE.setting","line":11298,"id":58453280,"entries":3,"spesh_entries":0,"jit_entries":3,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]},{"name":"SLICE_ONE_HASH","file":"src/gen/m-CORE.setting","line":2840,"id":58464416,"entries":3,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":200,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":36,"callees":[{"name":"CLONE-HASH-DECONTAINERIZED","file":"src/gen/m-CORE.setting","line":869,"id":58319520,"entries":3,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":11,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":11,"allocations":[{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":3},{"id":35941128,"type":"BOOTIter","spesh":0,"jit":0,"count":3}]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1545,"id":61714688,"entries":3,"spesh_entries":3,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[{"id":62199512,"type":"Block","spesh":3,"jit":0,"count":3},{"id":35941080,"type":"BOOTCode","spesh":3,"jit":0,"count":3}]},{"name":"","file":"src/gen/m-CORE.setting","line":2844,"id":58464720,"entries":3,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":96,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":21,"callees":[{"name":"DELETEKEY","file":"src/gen/m-CORE.setting","line":2389,"id":58381536,"entries":3,"spesh_entries":3,"jit_entries":0,"inlined_entries":0,"inclusive_time":9,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2849,"id":61723504,"entries":3,"spesh_entries":0,"jit_entries":3,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":62199920,"type":"Hash","spesh":0,"jit":3,"count":3}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":3,"jit":0,"count":3}]},{"name":"","file":"src/gen/m-CORE.setting","line":2934,"id":58473232,"entries":3,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":65,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":47,"callees":[{"name":"DELETEKEY","file":"src/gen/m-CORE.setting","line":2389,"id":58381536,"entries":3,"spesh_entries":3,"jit_entries":0,"inlined_entries":0,"inclusive_time":10,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":7,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2849,"id":61723504,"entries":3,"spesh_entries":0,"jit_entries":3,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":62199920,"type":"Hash","spesh":0,"jit":3,"count":3}]},{"name":"","file":"src/gen/m-CORE.setting","line":2390,"id":58382144,"entries":3,"spesh_entries":0,"jit_entries":3,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":3,"jit":0,"count":3}]},{"name":"exists_key","file":"src/gen/m-CORE.setting","line":11199,"id":58444768,"entries":3,"spesh_entries":0,"jit_entries":3,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[]},{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":5741,"id":58667488,"entries":3,"spesh_entries":0,"jit_entries":3,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":4901,"id":59383104,"entries":6,"spesh_entries":0,"jit_entries":6,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4946,"id":58581456,"entries":3,"spesh_entries":0,"jit_entries":3,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":6},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":3}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":30},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":3}]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":939,"id":59168176,"entries":3,"spesh_entries":3,"jit_entries":0,"inlined_entries":0,"inclusive_time":53,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":14,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2846,"id":61723200,"entries":3,"spesh_entries":0,"jit_entries":3,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":3,"count":3}]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":9779,"id":59630560,"entries":3,"spesh_entries":0,"jit_entries":3,"inlined_entries":0,"inclusive_time":36,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"callees":[{"name":"gimme","file":"src/gen/m-CORE.setting","line":9860,"id":59637248,"entries":3,"spesh_entries":0,"jit_entries":3,"inlined_entries":0,"inclusive_time":26,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":15,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9870,"id":59638160,"entries":3,"spesh_entries":0,"jit_entries":3,"inlined_entries":0,"inclusive_time":11,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":11,"callees":[{"name":"Int","file":"src/gen/m-CORE.setting","line":5501,"id":59416544,"entries":3,"spesh_entries":0,"jit_entries":3,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":6,"count":6}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":3,"count":3},{"id":62200016,"type":"Scalar","spesh":0,"jit":6,"count":6}]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":5497,"id":59416240,"entries":3,"spesh_entries":0,"jit_entries":3,"inlined_entries":3,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":3},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":3},{"id":62199920,"type":"Hash","spesh":0,"jit":0,"count":3},{"id":62199848,"type":"Array","spesh":0,"jit":0,"count":3}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":3,"jit":0,"count":3},{"id":62199920,"type":"Hash","spesh":3,"jit":0,"count":3}]}],"allocations":[]},{"name":"","file":"lib/NativeCall.pm","line":185,"id":99583184,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1439,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":50,"callees":[{"name":"DYNAMIC","file":"src/gen/m-CORE.setting","line":575,"id":58299152,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":10,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":577,"id":58299456,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[{"id":62200016,"type":"Scalar","spesh":1,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":1,"count":1}]},{"name":"<anon>","file":"src/gen/m-CORE.setting","line":3918,"id":59306192,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"postcircumfix:<{ }>","file":"src/gen/m-CORE.setting","line":3587,"id":58534336,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":15,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":11,"callees":[{"name":"at_key","file":"src/gen/m-CORE.setting","line":11333,"id":59667952,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1}]}],"allocations":[]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1489,"id":61712864,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199488,"type":"Code","spesh":1,"jit":0,"count":1},{"id":35941080,"type":"BOOTCode","spesh":1,"jit":0,"count":1}]},{"name":"subst-mutate","file":"src/gen/m-CORE.setting","line":4724,"id":59371856,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1355,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":16,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1919,"id":61717424,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":82,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":17,"callees":[{"name":"is_bindable","file":"src/gen/m-BOOTSTRAP.nqp","line":884,"id":61699184,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":64,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":890,"id":61699488,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":59,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"callees":[{"name":"bind","file":"src/gen/m-BOOTSTRAP.nqp","line":569,"id":61697360,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":57,"osr":0,"deopt_one":1,"deopt_all":0,"exclusive_time":29,"callees":[{"name":"bind_one_param","file":"src/gen/m-BOOTSTRAP.nqp","line":161,"id":61696144,"entries":7,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":26,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":26,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":7},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":5}]},{"name":"handle_optional","file":"src/gen/m-BOOTSTRAP.nqp","line":534,"id":61697056,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":62199920,"type":"Hash","spesh":1,"jit":0,"count":1}]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":1,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":2,"jit":0,"count":2},{"id":35942160,"type":"NQPArray","spesh":2,"jit":0,"count":2},{"id":35941032,"type":"BOOTHash","spesh":1,"jit":0,"count":1},{"id":35941224,"type":"CallCapture","spesh":1,"jit":0,"count":1}]},{"name":"subst-mutate","file":"src/gen/m-CORE.setting","line":7484,"id":59517168,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1256,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":63,"callees":[{"name":"postcircumfix:<{ }>","file":"src/gen/m-CORE.setting","line":3587,"id":58534336,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":20,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"at_key","file":"src/gen/m-CORE.setting","line":11333,"id":59667952,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":15,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":7,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":11341,"id":59668560,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":7,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1545,"id":61714688,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[{"id":62199512,"type":"Block","spesh":2,"jit":0,"count":2},{"id":35941080,"type":"BOOTCode","spesh":2,"jit":0,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":2,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":4,"count":4}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":2,"jit":0,"count":2}]}],"allocations":[]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1489,"id":61712864,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":62199488,"type":"Code","spesh":1,"jit":0,"count":1},{"id":35941080,"type":"BOOTCode","spesh":1,"jit":0,"count":1}]},{"name":"","file":"src/gen/m-CORE.setting","line":7491,"id":59517472,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1}]},{"name":"FLATTENABLE_LIST","file":"src/gen/m-CORE.setting","line":11297,"id":58452976,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":35941008,"type":"BOOTArray","spesh":0,"jit":1,"count":1}]},{"name":"FLATTENABLE_HASH","file":"src/gen/m-CORE.setting","line":11298,"id":58453280,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"match","file":"src/gen/m-CORE.setting","line":7402,"id":59508960,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":395,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":54,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1489,"id":61712864,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199488,"type":"Code","spesh":2,"jit":0,"count":2},{"id":35941080,"type":"BOOTCode","spesh":2,"jit":0,"count":2}]},{"name":"","file":"src/gen/m-CORE.setting","line":7406,"id":59509264,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":5,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"defined","file":"src/gen/m-CORE.setting","line":947,"id":59169392,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"defined","file":"src/gen/m-CORE.setting","line":947,"id":59169392,"entries":5,"spesh_entries":0,"jit_entries":5,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"postcircumfix:<{ }>","file":"src/gen/m-CORE.setting","line":3590,"id":58534640,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":10,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"callees":[{"name":"assign_key","file":"src/gen/m-CORE.setting","line":11351,"id":59669168,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":5,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":1}]}],"allocations":[]},{"name":"FLATTENABLE_LIST","file":"src/gen/m-CORE.setting","line":11297,"id":58452976,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":35941008,"type":"BOOTArray","spesh":0,"jit":1,"count":1}]},{"name":"FLATTENABLE_HASH","file":"src/gen/m-CORE.setting","line":11298,"id":58453280,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"!cursor_init","file":"gen/moar/stage2/QRegex.nqp","line":1063,"id":37837040,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":24,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":20,"callees":[{"name":"CREATE","file":"src/gen/m-CORE.setting","line":962,"id":59171216,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":62201504,"type":"Cursor","spesh":0,"jit":1,"count":1}]},{"name":"Num","file":"src/gen/m-CORE.setting","line":5507,"id":59417152,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199704,"type":"Num","spesh":0,"jit":1,"count":1}]},{"name":"!cursor_start_cur","file":"gen/moar/stage2/QRegex.nqp","line":1148,"id":37837952,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62201504,"type":"Cursor","spesh":0,"jit":1,"count":1},{"id":35941536,"type":"BOOTIntArray","spesh":0,"jit":1,"count":1}]}],"allocations":[{"id":35943552,"type":"ParseShared","spesh":0,"jit":0,"count":1},{"id":35941584,"type":"BOOTStrArray","spesh":0,"jit":0,"count":1},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":1}]},{"name":"","file":"/home/x/.rakudobrew/moar-nom/install/languages/perl6/lib/NativeCall.pm.moarvm","line":-1,"id":99585200,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":25,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":23,"callees":[{"name":"!cursor_start","file":"gen/moar/stage2/QRegex.nqp","line":1125,"id":37837648,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":62201504,"type":"Cursor","spesh":0,"jit":1,"count":1},{"id":35941536,"type":"BOOTIntArray","spesh":0,"jit":1,"count":1}]},{"name":"!shared","file":"gen/moar/stage2/QRegex.nqp","line":1252,"id":37841600,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"!cursor_pass","file":"gen/moar/stage2/QRegex.nqp","line":1195,"id":37839472,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":62199920,"type":"Hash","spesh":0,"jit":0,"count":1}]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1545,"id":61714688,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[{"id":62199512,"type":"Block","spesh":2,"jit":0,"count":2},{"id":35941080,"type":"BOOTCode","spesh":2,"jit":0,"count":2}]},{"name":"GATHER","file":"src/gen/m-CORE.setting","line":9727,"id":58761424,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":25,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":11,"callees":[{"name":"new","file":"src/gen/m-CORE.setting","line":9668,"id":59626000,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":10,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1545,"id":61714688,"entries":3,"spesh_entries":3,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199512,"type":"Block","spesh":3,"jit":0,"count":3},{"id":35941080,"type":"BOOTCode","spesh":3,"jit":0,"count":3}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":3},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2},{"id":62203040,"type":"GatherIter","spesh":0,"jit":0,"count":1}]},{"name":"list","file":"src/gen/m-CORE.setting","line":1669,"id":59226544,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1}]},{"name":"","file":"src/gen/m-CORE.setting","line":7479,"id":59513520,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":226,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"callees":[{"name":"postcircumfix:<[ ]>","file":"src/gen/m-CORE.setting","line":3333,"id":58509104,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":217,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"callees":[{"name":"at_pos","file":"src/gen/m-CORE.setting","line":9827,"id":59635728,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":214,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"callees":[{"name":"exists_pos","file":"src/gen/m-CORE.setting","line":9845,"id":59636640,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":208,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"gimme","file":"src/gen/m-CORE.setting","line":9860,"id":59637248,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":203,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":7,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9870,"id":59638160,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":195,"osr":0,"deopt_one":1,"deopt_all":0,"exclusive_time":10,"callees":[{"name":"Int","file":"src/gen/m-CORE.setting","line":5501,"id":59416544,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9338,"id":59616576,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":185,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9339,"id":59616880,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":178,"osr":0,"deopt_one":1,"deopt_all":0,"exclusive_time":37,"callees":[{"name":"flattens","file":"src/gen/m-CORE.setting","line":9805,"id":59634208,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5755,"id":58668704,"entries":5,"spesh_entries":5,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":9364,"id":59618096,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":135,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":16,"callees":[{"name":"iterator","file":"src/gen/m-CORE.setting","line":9056,"id":59596512,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"infix:<->","file":"src/gen/m-CORE.setting","line":5686,"id":58663232,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9698,"id":59628128,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":117,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":12,"callees":[{"name":"defined","file":"src/gen/m-CORE.setting","line":947,"id":59169392,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4946,"id":58581456,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":9699,"id":59628432,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":104,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":9,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9679,"id":59627520,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":94,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":7,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9674,"id":59626912,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":86,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":7417,"id":59509872,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":84,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":18,"callees":[{"name":"pos","file":"gen/moar/stage2/QRegex.nqp","line":996,"id":37836128,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"infix:<>=>","file":"src/gen/m-CORE.setting","line":5773,"id":58670224,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"MATCH_SAVE","file":"src/gen/m-CORE.setting","line":15413,"id":59961616,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":43,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5752,"id":58668400,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":1,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"MATCH","file":"src/gen/m-CORE.setting","line":15311,"id":59956144,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":37,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":13,"callees":[{"name":"orig","file":"gen/moar/stage2/QRegex.nqp","line":993,"id":37835216,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":15324,"id":59956752,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":24,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":13,"callees":[{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4947,"id":58581760,"entries":3,"spesh_entries":0,"jit_entries":3,"inlined_entries":3,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2487,"id":61721376,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":15330,"id":59957360,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":9,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":15332,"id":59957664,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"callees":[{"name":"infix:<>=>","file":"src/gen/m-CORE.setting","line":5773,"id":58670224,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":1,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":1,"count":1},{"id":35941128,"type":"BOOTIter","spesh":0,"jit":1,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":2,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":1,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":1,"count":1},{"id":68480552,"type":"Match","spesh":0,"jit":1,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":2,"count":2},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":1,"count":1}]}],"allocations":[]},{"name":"take","file":"src/gen/m-CORE.setting","line":669,"id":58305232,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":20,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"THROW","file":"src/gen/m-CORE.setting","line":619,"id":58302192,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":14,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9676,"id":59627216,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":9,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9671,"id":59626304,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":5,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1545,"id":61714688,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199512,"type":"Block","spesh":1,"jit":0,"count":1},{"id":35941080,"type":"BOOTCode","spesh":1,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":62199680,"type":"Int","spesh":0,"jit":0,"count":2}]}],"allocations":[]}],"allocations":[]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1}]},{"name":"","file":"src/gen/m-CORE.setting","line":9672,"id":59626608,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":1},{"id":62203040,"type":"GatherIter","spesh":0,"jit":0,"count":1},{"id":62199728,"type":"Parcel","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2}]}],"allocations":[{"id":62200040,"type":"IntLexRef","spesh":0,"jit":1,"count":1}]},{"name":"REIFY","file":"src/gen/m-CORE.setting","line":10287,"id":59666432,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":1,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":1,"count":1},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":2,"count":2},{"id":62200040,"type":"IntLexRef","spesh":0,"jit":5,"count":5},{"id":62199728,"type":"Parcel","spesh":0,"jit":1,"count":1},{"id":62199800,"type":"ListIter","spesh":0,"jit":1,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":3}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":1,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2}]}],"allocations":[]}],"allocations":[{"id":62200040,"type":"IntLexRef","spesh":1,"jit":0,"count":1}]}],"allocations":[]},{"name":"defined","file":"src/gen/m-CORE.setting","line":947,"id":59169392,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"postcircumfix:<[ ]>","file":"src/gen/m-CORE.setting","line":3333,"id":58509104,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":17,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"callees":[{"name":"at_pos","file":"src/gen/m-CORE.setting","line":9827,"id":59635728,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":15,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"callees":[{"name":"exists_pos","file":"src/gen/m-CORE.setting","line":9845,"id":59636640,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":12,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"callees":[{"name":"gimme","file":"src/gen/m-CORE.setting","line":9860,"id":59637248,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":9,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9870,"id":59638160,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":1,"deopt_all":0,"exclusive_time":3,"callees":[{"name":"Int","file":"src/gen/m-CORE.setting","line":5501,"id":59416544,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":1,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2}]}],"allocations":[]}],"allocations":[{"id":62200040,"type":"IntLexRef","spesh":1,"jit":0,"count":1}]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":9},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":13},{"id":62199920,"type":"Hash","spesh":0,"jit":0,"count":2}]},{"name":"STORE","file":"src/gen/m-CORE.setting","line":10774,"id":58410416,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":77,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":15,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2846,"id":61723200,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":1,"count":1}]},{"name":"eager","file":"src/gen/m-CORE.setting","line":9834,"id":59636032,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":59,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"callees":[{"name":"gimme","file":"src/gen/m-CORE.setting","line":9860,"id":59637248,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":54,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":16,"callees":[{"name":"infinite","file":"src/gen/m-CORE.setting","line":9396,"id":59619008,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]},{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4947,"id":58581760,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9338,"id":59616576,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":35,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9339,"id":59616880,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":30,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":21,"callees":[{"name":"flattens","file":"src/gen/m-CORE.setting","line":10734,"id":58406768,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5755,"id":58668704,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"REIFY","file":"src/gen/m-CORE.setting","line":10763,"id":58409808,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":7,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"callees":[{"name":"REIFY","file":"src/gen/m-CORE.setting","line":10287,"id":59666432,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":35941128,"type":"BOOTIter","spesh":0,"jit":1,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":2,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":1,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":2,"count":2},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":2,"count":2},{"id":62200040,"type":"IntLexRef","spesh":0,"jit":1,"count":1},{"id":62199728,"type":"Parcel","spesh":0,"jit":1,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":1,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":3,"jit":0,"count":3}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":3}]}],"allocations":[]},{"name":"sink","file":"src/gen/m-CORE.setting","line":10346,"id":58393696,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":1},{"id":62199800,"type":"ListIter","spesh":0,"jit":0,"count":1}]},{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4947,"id":58581760,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":92,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"Bool","file":"src/gen/m-CORE.setting","line":939,"id":59168176,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":86,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":11,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2846,"id":61723200,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":2,"count":2}]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":9779,"id":59630560,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":72,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"callees":[{"name":"gimme","file":"src/gen/m-CORE.setting","line":9860,"id":59637248,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":68,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9870,"id":59638160,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":63,"osr":0,"deopt_one":1,"deopt_all":0,"exclusive_time":6,"callees":[{"name":"Int","file":"src/gen/m-CORE.setting","line":5501,"id":59416544,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9338,"id":59616576,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":56,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9339,"id":59616880,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":51,"osr":0,"deopt_one":1,"deopt_all":0,"exclusive_time":20,"callees":[{"name":"flattens","file":"src/gen/m-CORE.setting","line":10734,"id":58406768,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5755,"id":58668704,"entries":3,"spesh_entries":3,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":9364,"id":59618096,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":25,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":11,"callees":[{"name":"iterator","file":"src/gen/m-CORE.setting","line":9884,"id":59639072,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":10,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"callees":[{"name":"Parcel","file":"src/gen/m-CORE.setting","line":9814,"id":59634816,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":6,"osr":0,"deopt_one":1,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"defined","file":"src/gen/m-CORE.setting","line":947,"id":59169392,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":35941008,"type":"BOOTArray","spesh":0,"jit":1,"count":1},{"id":62199728,"type":"Parcel","spesh":0,"jit":1,"count":1}]}],"allocations":[{"id":62199800,"type":"ListIter","spesh":0,"jit":1,"count":1}]},{"name":"infix:<->","file":"src/gen/m-CORE.setting","line":5686,"id":58663232,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9338,"id":59616576,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2}]}],"allocations":[{"id":62200040,"type":"IntLexRef","spesh":0,"jit":1,"count":1}]},{"name":"REIFY","file":"src/gen/m-CORE.setting","line":10763,"id":58409808,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"callees":[{"name":"REIFY","file":"src/gen/m-CORE.setting","line":10287,"id":59666432,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":35941128,"type":"BOOTIter","spesh":0,"jit":1,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":2,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":1,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":2,"count":2},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":2,"count":2},{"id":62200040,"type":"IntLexRef","spesh":0,"jit":3,"count":3},{"id":62199728,"type":"Parcel","spesh":0,"jit":1,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":3}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":1,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":1,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":2,"count":2}]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":5497,"id":59416240,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":1,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":15224,"id":59949456,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]}],"allocations":[]},{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":5245,"id":58638912,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":29,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":11,"callees":[{"name":"Numeric","file":"src/gen/m-CORE.setting","line":9782,"id":59631472,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":16,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"callees":[{"name":"elems","file":"src/gen/m-CORE.setting","line":9836,"id":59636336,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":12,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":642,"id":58303104,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":8,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"callees":[{"name":"RETURN-PARCEL","file":"src/gen/m-CORE.setting","line":627,"id":58302496,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":62199728,"type":"Parcel","spesh":1,"jit":0,"count":1}]}],"allocations":[]}],"allocations":[]},{"name":"Numeric","file":"src/gen/m-CORE.setting","line":5016,"id":59389488,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":5741,"id":58667488,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"postcircumfix:<[ ]>","file":"src/gen/m-CORE.setting","line":3333,"id":58509104,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":19,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"at_pos","file":"src/gen/m-CORE.setting","line":10659,"id":58402816,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":14,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":13,"callees":[{"name":"Int","file":"src/gen/m-CORE.setting","line":5501,"id":59416544,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2}]}],"allocations":[]},{"name":"APPLY-MATCHES","file":"src/gen/m-CORE.setting","line":7542,"id":59520512,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":554,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":15,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1489,"id":61712864,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199488,"type":"Code","spesh":1,"jit":0,"count":1},{"id":35941080,"type":"BOOTCode","spesh":1,"jit":0,"count":1}]},{"name":"","file":"src/gen/m-CORE.setting","line":7548,"id":59520816,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1}]},{"name":"","file":"src/gen/m-CORE.setting","line":7551,"id":59522032,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":535,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":26,"callees":[{"name":"count","file":"src/gen/m-CORE.setting","line":3798,"id":59297984,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":5,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"count","file":"src/gen/m-CORE.setting","line":12388,"id":59748208,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":5741,"id":58667488,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"infix:<,>","file":"src/gen/m-CORE.setting","line":9029,"id":58758384,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199728,"type":"Parcel","spesh":1,"jit":0,"count":1}]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1545,"id":61714688,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":62199512,"type":"Block","spesh":1,"jit":0,"count":1},{"id":35941080,"type":"BOOTCode","spesh":1,"jit":0,"count":1}]},{"name":"for","file":"src/gen/m-CORE.setting","line":1792,"id":59247520,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":107,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":10,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2846,"id":61723200,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":1,"count":1}]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1919,"id":61717424,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":75,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":27,"callees":[{"name":"is_bindable","file":"src/gen/m-BOOTSTRAP.nqp","line":884,"id":61699184,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":48,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":890,"id":61699488,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":43,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"callees":[{"name":"bind","file":"src/gen/m-BOOTSTRAP.nqp","line":569,"id":61697360,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":38,"osr":0,"deopt_one":1,"deopt_all":0,"exclusive_time":19,"callees":[{"name":"bind_one_param","file":"src/gen/m-BOOTSTRAP.nqp","line":161,"id":61696144,"entries":4,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":18,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":18,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":4},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2}]},{"name":"handle_optional","file":"src/gen/m-BOOTSTRAP.nqp","line":534,"id":61697056,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":62199920,"type":"Hash","spesh":1,"jit":0,"count":1}]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":1,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":2,"jit":0,"count":2},{"id":35942160,"type":"NQPArray","spesh":2,"jit":0,"count":2},{"id":35941032,"type":"BOOTHash","spesh":1,"jit":0,"count":1},{"id":35941224,"type":"CallCapture","spesh":1,"jit":0,"count":1}]},{"name":"for","file":"src/gen/m-CORE.setting","line":1794,"id":59248128,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":20,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"callees":[{"name":"new","file":"src/gen/m-CORE.setting","line":9435,"id":59620528,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":11,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":7,"callees":[{"name":"BUILD","file":"src/gen/m-CORE.setting","line":9441,"id":59620832,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[{"id":62200016,"type":"Scalar","spesh":5,"jit":0,"count":5}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":4,"jit":0,"count":4},{"id":65564936,"type":"MapIter","spesh":1,"jit":0,"count":1},{"id":35941008,"type":"BOOTArray","spesh":1,"jit":0,"count":1},{"id":62199800,"type":"ListIter","spesh":1,"jit":0,"count":1}]},{"name":"list","file":"src/gen/m-CORE.setting","line":1669,"id":59226544,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":1,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[{"id":35941008,"type":"BOOTArray","spesh":0,"jit":1,"count":1}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":2,"count":2}]}],"allocations":[]},{"name":"sink","file":"src/gen/m-CORE.setting","line":10346,"id":58393696,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":393,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"callees":[{"name":"gimme","file":"src/gen/m-CORE.setting","line":9860,"id":59637248,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":386,"osr":0,"deopt_one":1,"deopt_all":0,"exclusive_time":17,"callees":[{"name":"infinite","file":"src/gen/m-CORE.setting","line":9396,"id":59619008,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":5,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"infinite","file":"src/gen/m-CORE.setting","line":960,"id":59170912,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4947,"id":58581760,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9338,"id":59616576,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":364,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9339,"id":59616880,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":358,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":21,"callees":[{"name":"flattens","file":"src/gen/m-CORE.setting","line":9805,"id":59634208,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5755,"id":58668704,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":9364,"id":59618096,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":334,"osr":0,"deopt_one":1,"deopt_all":0,"exclusive_time":19,"callees":[{"name":"infinite","file":"src/gen/m-CORE.setting","line":960,"id":59170912,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"iterator","file":"src/gen/m-CORE.setting","line":9056,"id":59596512,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9454,"id":59621440,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":314,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9455,"id":59621744,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":309,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":80,"callees":[{"name":"count","file":"src/gen/m-CORE.setting","line":3798,"id":59297984,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"callees":[{"name":"count","file":"src/gen/m-CORE.setting","line":12388,"id":59748208,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5752,"id":58668400,"entries":3,"spesh_entries":0,"jit_entries":3,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":5443,"id":58653504,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":9,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"callees":[{"name":"Bridge","file":"src/gen/m-CORE.setting","line":5522,"id":59418368,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[{"id":62199704,"type":"Num","spesh":0,"jit":1,"count":1}]},{"name":"Bridge","file":"src/gen/m-CORE.setting","line":5904,"id":59439040,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":6253,"id":58692416,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"phasers","file":"src/gen/m-CORE.setting","line":3850,"id":59301936,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":939,"id":59168176,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":7,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2846,"id":61723200,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":1,"count":1}]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":8804,"id":59579184,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9338,"id":59616576,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":62,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9339,"id":59616880,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":58,"osr":0,"deopt_one":1,"deopt_all":0,"exclusive_time":27,"callees":[{"name":"flattens","file":"src/gen/m-CORE.setting","line":9452,"id":59621136,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5755,"id":58668704,"entries":5,"spesh_entries":5,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":9364,"id":59618096,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":26,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":12,"callees":[{"name":"iterator","file":"src/gen/m-CORE.setting","line":9884,"id":59639072,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":10,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"callees":[{"name":"Parcel","file":"src/gen/m-CORE.setting","line":9814,"id":59634816,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":6,"osr":0,"deopt_one":1,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"defined","file":"src/gen/m-CORE.setting","line":947,"id":59169392,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":35941008,"type":"BOOTArray","spesh":0,"jit":1,"count":1},{"id":62199728,"type":"Parcel","spesh":0,"jit":1,"count":1}]}],"allocations":[{"id":62199800,"type":"ListIter","spesh":0,"jit":1,"count":1}]},{"name":"infix:<->","file":"src/gen/m-CORE.setting","line":5686,"id":58663232,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9338,"id":59616576,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2}]}],"allocations":[{"id":62200040,"type":"IntLexRef","spesh":0,"jit":1,"count":1}]},{"name":"REIFY","file":"src/gen/m-CORE.setting","line":9632,"id":59625088,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":1,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":2,"count":2},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":2,"count":2},{"id":62200040,"type":"IntLexRef","spesh":0,"jit":5,"count":5},{"id":62199728,"type":"Parcel","spesh":0,"jit":1,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":1,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":3,"count":3}]},{"name":"infix:</>","file":"src/gen/m-CORE.setting","line":12758,"id":58799120,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":24,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"callees":[{"name":"DIVIDE_NUMBERS","file":"src/gen/m-CORE.setting","line":12625,"id":58793344,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":19,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":11,"callees":[{"name":"infix:<gcd>","file":"src/gen/m-CORE.setting","line":5726,"id":58666272,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":1,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199680,"type":"Int","spesh":0,"jit":1,"count":1}]},{"name":"infix:<div>","file":"src/gen/m-CORE.setting","line":5697,"id":58664144,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[{"id":62199680,"type":"Int","spesh":2,"jit":0,"count":2}]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5752,"id":58668400,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":2,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":2,"count":2},{"id":65566496,"type":"Rat","spesh":0,"jit":1,"count":1}]}],"allocations":[]},{"name":"floor","file":"src/gen/m-CORE.setting","line":12466,"id":59751856,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"callees":[{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":5741,"id":58667488,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":1,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"infix:<>>","file":"src/gen/m-CORE.setting","line":5766,"id":58669616,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"prefix:<+>","file":"src/gen/m-CORE.setting","line":5050,"id":58595440,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"callees":[{"name":"Numeric","file":"src/gen/m-CORE.setting","line":8805,"id":59579488,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":1,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":5741,"id":58667488,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4947,"id":58581760,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":7556,"id":59522336,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":82,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":74,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1489,"id":61712864,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199488,"type":"Code","spesh":1,"jit":0,"count":1},{"id":35941080,"type":"BOOTCode","spesh":1,"jit":0,"count":1}]},{"name":"","file":"src/gen/m-CORE.setting","line":7557,"id":59522640,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"<anon>","file":"src/gen/m-CORE.setting","line":3924,"id":59306496,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]},{"name":"infix:<->","file":"src/gen/m-CORE.setting","line":5686,"id":58663232,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"","file":"lib/NativeCall.pm","line":187,"id":99587216,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"prefix:<~>","file":"src/gen/m-CORE.setting","line":8259,"id":58723424,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":3},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1},{"id":62200040,"type":"IntLexRef","spesh":0,"jit":0,"count":1}]},{"name":"find_method","file":"src/gen/m-Metamodel.nqp","line":1023,"id":61937328,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":24,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":22,"callees":[{"name":"submethod_table","file":"src/gen/m-Metamodel.nqp","line":487,"id":61922736,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"mro","file":"src/gen/m-Metamodel.nqp","line":991,"id":61936416,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":1,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"method_table","file":"src/gen/m-Metamodel.nqp","line":3075,"id":61994784,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":35941032,"type":"BOOTHash","spesh":0,"jit":1,"count":1}]},{"name":"method_table","file":"src/gen/m-Metamodel.nqp","line":482,"id":61922432,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":35941032,"type":"BOOTHash","spesh":0,"jit":1,"count":1},{"id":35942184,"type":"NQPArrayIter","spesh":0,"jit":1,"count":1}]},{"name":"fire_phasers","file":"src/gen/m-CORE.setting","line":3843,"id":59301328,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"callees":[{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4947,"id":58581760,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":1,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":1,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":5},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":0,"count":3},{"id":62200040,"type":"IntLexRef","spesh":0,"jit":0,"count":5},{"id":62199728,"type":"Parcel","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":1,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":3,"jit":0,"count":3}]}],"allocations":[]},{"name":"REIFY","file":"src/gen/m-CORE.setting","line":10287,"id":59666432,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":1,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":2,"count":2},{"id":35941008,"type":"BOOTArray","spesh":0,"jit":2,"count":2},{"id":62200040,"type":"IntLexRef","spesh":0,"jit":2,"count":2},{"id":62199728,"type":"Parcel","spesh":0,"jit":1,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":1,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":3,"jit":0,"count":3}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":1,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":3,"jit":0,"count":3}]}],"allocations":[{"id":62199800,"type":"ListIter","spesh":0,"jit":1,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1},{"id":62199656,"type":"Str","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":4},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2},{"id":35941584,"type":"BOOTStrArray","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":9},{"id":62199920,"type":"Hash","spesh":0,"jit":0,"count":1},{"id":62199848,"type":"Array","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":62199944,"type":"Capture","spesh":0,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1}]},{"name":"infix:<=>","file":"src/gen/m-CORE.setting","line":20854,"id":58972400,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"ACCEPTS","file":"src/gen/m-CORE.setting","line":15227,"id":59949760,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"Stringy","file":"src/gen/m-CORE.setting","line":6921,"id":59491024,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"infix:<~>","file":"src/gen/m-CORE.setting","line":8262,"id":58724032,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[{"id":62199656,"type":"Str","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":5},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2}]},{"name":"defined","file":"src/gen/m-CORE.setting","line":947,"id":59169392,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1521,"id":61713776,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]},{"name":"return_hash_for","file":"lib/NativeCall.pm","line":50,"id":99485504,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":682,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":38,"callees":[{"name":"returns","file":"src/gen/m-CORE.setting","line":12420,"id":59749728,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"ACCEPTS","file":"src/gen/m-CORE.setting","line":895,"id":59164832,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"type_code_for","file":"lib/NativeCall.pm","line":146,"id":99507392,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":641,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":51,"callees":[{"name":"bind_sig","file":"src/gen/m-BOOTSTRAP.nqp","line":832,"id":61698880,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":42,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":11,"callees":[{"name":"bind","file":"src/gen/m-BOOTSTRAP.nqp","line":569,"id":61697360,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":31,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":17,"callees":[{"name":"bind_one_param","file":"src/gen/m-BOOTSTRAP.nqp","line":161,"id":61696144,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":13,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":13,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1}]}],"allocations":[]}],"allocations":[{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":1},{"id":35941152,"type":"BOOTContext","spesh":0,"jit":0,"count":1}]},{"name":"name","file":"src/gen/m-Metamodel.nqp","line":69,"id":61904800,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":6,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"allocations":[]},{"name":"postcircumfix:<{ }>","file":"src/gen/m-CORE.setting","line":3584,"id":58534032,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":505,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":13,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1919,"id":61717424,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":272,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":207,"callees":[{"name":"is_bindable","file":"src/gen/m-BOOTSTRAP.nqp","line":884,"id":61699184,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":64,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":11,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":890,"id":61699488,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":53,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"callees":[{"name":"bind","file":"src/gen/m-BOOTSTRAP.nqp","line":569,"id":61697360,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":49,"osr":0,"deopt_one":1,"deopt_all":0,"exclusive_time":31,"callees":[{"name":"bind_one_param","file":"src/gen/m-BOOTSTRAP.nqp","line":161,"id":61696144,"entries":4,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":18,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":18,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":4},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":62199920,"type":"Hash","spesh":1,"jit":0,"count":1}]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":1,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":35942160,"type":"NQPArray","spesh":0,"jit":0,"count":2},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":1},{"id":35941224,"type":"CallCapture","spesh":0,"jit":0,"count":1}]},{"name":"postcircumfix:<{ }>","file":"src/gen/m-CORE.setting","line":3602,"id":58535856,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":220,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":18,"callees":[{"name":"FLATTENABLE_LIST","file":"src/gen/m-CORE.setting","line":11297,"id":58452976,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":35941008,"type":"BOOTArray","spesh":0,"jit":1,"count":1}]},{"name":"FLATTENABLE_HASH","file":"src/gen/m-CORE.setting","line":11298,"id":58453280,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]},{"name":"SLICE_ONE_HASH","file":"src/gen/m-CORE.setting","line":2840,"id":58464416,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":198,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":41,"callees":[{"name":"CLONE-HASH-DECONTAINERIZED","file":"src/gen/m-CORE.setting","line":869,"id":58319520,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":9,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":9,"allocations":[{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":1},{"id":35941128,"type":"BOOTIter","spesh":0,"jit":0,"count":1}]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1545,"id":61714688,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[{"id":62199512,"type":"Block","spesh":1,"jit":0,"count":1},{"id":35941080,"type":"BOOTCode","spesh":1,"jit":0,"count":1}]},{"name":"","file":"src/gen/m-CORE.setting","line":2844,"id":58464720,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":87,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":17,"callees":[{"name":"DELETEKEY","file":"src/gen/m-CORE.setting","line":2389,"id":58381536,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":7,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2849,"id":61723504,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":62199920,"type":"Hash","spesh":0,"jit":1,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":1,"jit":0,"count":1}]},{"name":"","file":"src/gen/m-CORE.setting","line":2934,"id":58473232,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":61,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":47,"callees":[{"name":"DELETEKEY","file":"src/gen/m-CORE.setting","line":2389,"id":58381536,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":7,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2849,"id":61723504,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":62199920,"type":"Hash","spesh":0,"jit":1,"count":1}]},{"name":"","file":"src/gen/m-CORE.setting","line":2390,"id":58382144,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":1,"jit":0,"count":1}]},{"name":"exists_key","file":"src/gen/m-CORE.setting","line":11199,"id":58444768,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[]},{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":5741,"id":58667488,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":4901,"id":59383104,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4946,"id":58581456,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":10},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1}]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":939,"id":59168176,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":58,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":13,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2846,"id":61723200,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":1,"count":1}]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":9779,"id":59630560,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":42,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":9,"callees":[{"name":"gimme","file":"src/gen/m-CORE.setting","line":9860,"id":59637248,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":32,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":18,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9870,"id":59638160,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":13,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":13,"callees":[{"name":"Int","file":"src/gen/m-CORE.setting","line":5501,"id":59416544,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":2,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":1,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":2,"count":2}]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":5497,"id":59416240,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":1,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1},{"id":62199920,"type":"Hash","spesh":0,"jit":0,"count":1},{"id":62199848,"type":"Array","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":1,"jit":0,"count":1},{"id":62199920,"type":"Hash","spesh":1,"jit":0,"count":1}]}],"allocations":[]},{"name":"postcircumfix:<{ }>","file":"src/gen/m-CORE.setting","line":3587,"id":58534336,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":19,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":15,"callees":[{"name":"at_key","file":"src/gen/m-CORE.setting","line":11333,"id":59667952,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":1,"jit":0,"count":1}]}],"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":642,"id":58303104,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":15,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":14,"callees":[{"name":"RETURN-PARCEL","file":"src/gen/m-CORE.setting","line":627,"id":58302496,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]}],"allocations":[{"id":62199728,"type":"Parcel","spesh":1,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":2}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":1},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2},{"id":35941032,"type":"BOOTHash","spesh":0,"jit":0,"count":1},{"id":62199656,"type":"Str","spesh":0,"jit":0,"count":1}]},{"name":"returns","file":"src/gen/m-CORE.setting","line":4196,"id":59322000,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":18,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":15,"callees":[{"name":"signature","file":"src/gen/m-CORE.setting","line":3800,"id":59298288,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"returns","file":"src/gen/m-CORE.setting","line":12420,"id":59749728,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"map_return_type","file":"lib/NativeCall.pm","line":163,"id":99466272,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":1},{"id":62200088,"type":"StrLexRef","spesh":0,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":3},{"id":62199944,"type":"Capture","spesh":0,"jit":0,"count":3},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":3},{"id":62200112,"type":"IntAttrRef","spesh":0,"jit":0,"count":3}]}],"allocations":[]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":6},{"id":62199944,"type":"Capture","spesh":0,"jit":0,"count":3}]}],"allocations":[]},{"name":"infix:<->","file":"src/gen/m-CORE.setting","line":5683,"id":58662928,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":6,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"allocations":[{"id":62199680,"type":"Int","spesh":0,"jit":0,"count":2}]},{"name":"values-to-lua","file":"/home/x/data/projects/perl6/Inline-Lua/lib/Inline/Lua.pm6","line":141,"id":95619648,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":598,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":26,"callees":[{"name":"infix:<,>","file":"src/gen/m-CORE.setting","line":9029,"id":58758384,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[{"id":62199728,"type":"Parcel","spesh":1,"jit":0,"count":1}]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1545,"id":61714688,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[{"id":62199512,"type":"Block","spesh":1,"jit":0,"count":1},{"id":35941080,"type":"BOOTCode","spesh":1,"jit":0,"count":1}]},{"name":"for","file":"src/gen/m-CORE.setting","line":1792,"id":59247520,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":112,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":12,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2846,"id":61723200,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":1,"count":1}]},{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":1919,"id":61717424,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":76,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":27,"callees":[{"name":"is_bindable","file":"src/gen/m-BOOTSTRAP.nqp","line":884,"id":61699184,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":49,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":890,"id":61699488,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":44,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"callees":[{"name":"bind","file":"src/gen/m-BOOTSTRAP.nqp","line":569,"id":61697360,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":39,"osr":0,"deopt_one":1,"deopt_all":0,"exclusive_time":21,"callees":[{"name":"bind_one_param","file":"src/gen/m-BOOTSTRAP.nqp","line":161,"id":61696144,"entries":4,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":17,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":17,"allocations":[{"id":35941080,"type":"BOOTCode","spesh":0,"jit":0,"count":4},{"id":62200016,"type":"Scalar","spesh":0,"jit":0,"count":2}]},{"name":"handle_optional","file":"src/gen/m-BOOTSTRAP.nqp","line":534,"id":61697056,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":62199920,"type":"Hash","spesh":1,"jit":0,"count":1}]}],"allocations":[]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":1,"jit":0,"count":1}]}],"allocations":[{"id":35941080,"type":"BOOTCode","spesh":2,"jit":0,"count":2},{"id":35942160,"type":"NQPArray","spesh":2,"jit":0,"count":2},{"id":35941032,"type":"BOOTHash","spesh":1,"jit":0,"count":1},{"id":35941224,"type":"CallCapture","spesh":1,"jit":0,"count":1}]},{"name":"for","file":"src/gen/m-CORE.setting","line":1794,"id":59248128,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":21,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":7,"callees":[{"name":"new","file":"src/gen/m-CORE.setting","line":9435,"id":59620528,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":12,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":7,"callees":[{"name":"BUILD","file":"src/gen/m-CORE.setting","line":9441,"id":59620832,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"allocations":[{"id":62200016,"type":"Scalar","spesh":5,"jit":0,"count":5}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":4,"jit":0,"count":4},{"id":65564936,"type":"MapIter","spesh":1,"jit":0,"count":1},{"id":35941008,"type":"BOOTArray","spesh":1,"jit":0,"count":1},{"id":62199800,"type":"ListIter","spesh":1,"jit":0,"count":1}]},{"name":"list","file":"src/gen/m-CORE.setting","line":1669,"id":59226544,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":1,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[{"id":35941008,"type":"BOOTArray","spesh":0,"jit":1,"count":1}]}],"allocations":[{"id":62200016,"type":"Scalar","spesh":0,"jit":2,"count":2}]}],"allocations":[]},{"name":"sink","file":"src/gen/m-CORE.setting","line":10346,"id":58393696,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":454,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":7,"callees":[{"name":"gimme","file":"src/gen/m-CORE.setting","line":9860,"id":59637248,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":447,"osr":0,"deopt_one":1,"deopt_all":0,"exclusive_time":26,"callees":[{"name":"infinite","file":"src/gen/m-CORE.setting","line":9396,"id":59619008,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":5,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"infinite","file":"src/gen/m-CORE.setting","line":960,"id":59170912,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"prefix:<!>","file":"src/gen/m-CORE.setting","line":4947,"id":58581760,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9338,"id":59616576,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":414,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9339,"id":59616880,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":408,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":27,"callees":[{"name":"flattens","file":"src/gen/m-CORE.setting","line":9805,"id":59634208,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5755,"id":58668704,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":9364,"id":59618096,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":377,"osr":0,"deopt_one":1,"deopt_all":0,"exclusive_time":14,"callees":[{"name":"infinite","file":"src/gen/m-CORE.setting","line":960,"id":59170912,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"iterator","file":"src/gen/m-CORE.setting","line":9056,"id":59596512,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9454,"id":59621440,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":362,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9455,"id":59621744,"entries":1,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":356,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":77,"callees":[{"name":"count","file":"src/gen/m-CORE.setting","line":3798,"id":59297984,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":4,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"callees":[{"name":"count","file":"src/gen/m-CORE.setting","line":12388,"id":59748208,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5752,"id":58668400,"entries":3,"spesh_entries":0,"jit_entries":3,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":5443,"id":58653504,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":10,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":7,"callees":[{"name":"Bridge","file":"src/gen/m-CORE.setting","line":5522,"id":59418368,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[{"id":62199704,"type":"Num","spesh":0,"jit":1,"count":1}]},{"name":"Bridge","file":"src/gen/m-CORE.setting","line":5904,"id":59439040,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"infix:<==>","file":"src/gen/m-CORE.setting","line":6253,"id":58692416,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"phasers","file":"src/gen/m-CORE.setting","line":3850,"id":59301936,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"allocations":[]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":939,"id":59168176,"entries":1,"spesh_entries":1,"jit_entries":0,"inlined_entries":0,"inclusive_time":6,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"","file":"src/gen/m-BOOTSTRAP.nqp","line":2846,"id":61723200,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[{"id":62199728,"type":"Parcel","spesh":0,"jit":1,"count":1}]},{"name":"Bool","file":"src/gen/m-CORE.setting","line":8804,"id":59579184,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9338,"id":59616576,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":200,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9339,"id":59616880,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":195,"osr":0,"deopt_one":1,"deopt_all":0,"exclusive_time":30,"callees":[{"name":"flattens","file":"src/gen/m-CORE.setting","line":9452,"id":59621136,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5755,"id":58668704,"entries":6,"spesh_entries":6,"jit_entries":0,"inlined_entries":0,"inclusive_time":2,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":9364,"id":59618096,"entries":3,"spesh_entries":0,"jit_entries":3,"inlined_entries":0,"inclusive_time":162,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":24,"callees":[{"name":"iterator","file":"src/gen/m-CORE.setting","line":9884,"id":59639072,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":10,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":4,"callees":[{"name":"Parcel","file":"src/gen/m-CORE.setting","line":9814,"id":59634816,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":5,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":5,"callees":[{"name":"defined","file":"src/gen/m-CORE.setting","line":947,"id":59169392,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":35941008,"type":"BOOTArray","spesh":0,"jit":1,"count":1},{"id":62199728,"type":"Parcel","spesh":0,"jit":1,"count":1}]}],"allocations":[{"id":62199800,"type":"ListIter","spesh":0,"jit":1,"count":1}]},{"name":"infix:<->","file":"src/gen/m-CORE.setting","line":5686,"id":58663232,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9338,"id":59616576,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":126,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":8,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9339,"id":59616880,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":118,"osr":0,"deopt_one":1,"deopt_all":0,"exclusive_time":21,"callees":[{"name":"flattens","file":"src/gen/m-CORE.setting","line":10734,"id":58406768,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5755,"id":58668704,"entries":4,"spesh_entries":4,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":9364,"id":59618096,"entries":2,"spesh_entries":0,"jit_entries":2,"inlined_entries":0,"inclusive_time":92,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":11,"callees":[{"name":"iterator","file":"src/gen/m-CORE.setting","line":9884,"id":59639072,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":6,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":2,"callees":[{"name":"Parcel","file":"src/gen/m-CORE.setting","line":9814,"id":59634816,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":3,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":3,"callees":[{"name":"defined","file":"src/gen/m-CORE.setting","line":947,"id":59169392,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]}],"allocations":[{"id":35941008,"type":"BOOTArray","spesh":0,"jit":1,"count":1},{"id":62199728,"type":"Parcel","spesh":0,"jit":1,"count":1}]}],"allocations":[{"id":62199800,"type":"ListIter","spesh":0,"jit":1,"count":1}]},{"name":"infix:<->","file":"src/gen/m-CORE.setting","line":5686,"id":58663232,"entries":2,"spesh_entries":2,"jit_entries":0,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"reify","file":"src/gen/m-CORE.setting","line":9338,"id":59616576,"entries":2,"spesh_entries":0,"jit_entries":0,"inlined_entries":0,"inclusive_time":73,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":6,"callees":[{"name":"","file":"src/gen/m-CORE.setting","line":9339,"id":59616880,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":66,"osr":0,"deopt_one":1,"deopt_all":0,"exclusive_time":20,"callees":[{"name":"flattens","file":"src/gen/m-CORE.setting","line":10734,"id":58406768,"entries":1,"spesh_entries":0,"jit_entries":1,"inlined_entries":0,"inclusive_time":0,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":0,"allocations":[]},{"name":"infix:<<>","file":"src/gen/m-CORE.setting","line":5755,"id":58668704,"entries":4,"spesh_entries":4,"jit_entries":0,"inlined_entries":0,"inclusive_time":1,"osr":0,"deopt_one":0,"deopt_all":0,"exclusive_time":1,"allocations":[]},{"name":"","file":"src/gen/m-CORE.setting","line":9364,"id":59618096,"entries":2,"spesh_entries":0,"jit_entries":2,"in
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment