Skip to content

Instantly share code, notes, and snippets.

@gfldex
Created January 14, 2016 14:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gfldex/bbf09982f08dc677a674 to your computer and use it in GitHub Desktop.
Save gfldex/bbf09982f08dc677a674 to your computer and use it in GitHub Desktop.
0.424330944646612s/generation
#!/usr/bin/env perl6
use v6;
# Return a string of $length bytes where each bit is 1 50% of the time
multi sub random-bytes(Int $length) returns array[uint8] {
array[uint8].new((0x00..0xff).roll($length))
# same thing and way faster
}
# Return a string of $length bytes where each bit is 1 with probability $prob
multi sub random-bytes(Int $length, Num() $prob --> array[uint8]) {
sub random-byte() {
my uint8 $byte;
$byte = $byte +^ 1 if rand < $prob;
$byte = $byte +^ 2**1 if rand < $prob;
$byte = $byte +^ 2**2 if rand < $prob;
$byte = $byte +^ 2**3 if rand < $prob;
$byte = $byte +^ 2**4 if rand < $prob;
$byte = $byte +^ 2**5 if rand < $prob;
$byte = $byte +^ 2**6 if rand < $prob;
$byte = $byte +^ 2**7 if rand < $prob;
$byte
}
array[uint8].new(random-byte() xx $length);
}
# Compute the number of bits that differ between $a and $b
sub hamming-distance(uint8 @a, uint8 @b) returns Int {
my int $h = 0;
for (@a Z+^ @b) -> int $val is copy {
while $val != 0 {
$h++;
$val = $val +& ($val - 1);
}
}
$h
}
# Return a string that randomly takes half of its bits from $a and half from $b
sub crossover(uint8 @a, uint8 @b --> array[uint8]) {
array[uint8].new(@a Z+^ ((@a Z+^ @b) Z+& random-bytes(@a.elems)))
# +++ .chars is the number of graphemes
}
# Return $a with each of its bits toggled with probability $prob
sub mutate(uint8 @a, Num() $prob --> array[uint8]) {
array[uint8].new(@a Z+^ random-bytes(@a.elems, $prob));
}
# Return up to the first $how-many of @candidates, sorted by $fitness
sub survival(@candidates, &fitness, :$how-many = 10) {
@candidates.sort(&fitness).squish.head($how-many);
# +++ @candidates.elems and @candidates.unique.elems are nearly all the time the same
# .squish is a wee bit faster then .uniq
}
# Compute the next generation of @candidates. The top $elites automatically pass on
# to the next generation; the remainder is made up of $num-offspring offspring of
# random pairs of candidates, mutated at a rate of $mutation-rate
sub next-generation(@candidates, :$num-offspring is copy = 20, :$mutation-rate = 0.1, :$elites = 5) {
my @offspring = do for @candidates X @candidates -> [$a, $b] {
# +++ we may aswell do the X operator inline
last unless $num-offspring--;
# +++ there is no need to call .head if we do the counting ourselves
mutate(crossover($a, $b), $mutation-rate)
}
|@candidates.head($elites), |@offspring;
# +++ don't flat, depending on $num-offspring, this list might get long
}
sub MAIN(Str $input-s = '1234567890abc') {
# Generate an initial random field
state $avg;
for ^10 {
my uint8 @input.=new($input-s.ords);
my @candidates = random-bytes(@input.elems) xx 10;
my $gen = 1;
my $rate = 0.03;
while True {
# Sort and see who lives
@candidates = survival(@candidates, { hamming-distance(@input, $_) });
# Print the status
my $score = hamming-distance(@input, @candidates[0]);
say "Gen: { $gen++ } | Distance: $score | { @candidates[0]».chr.join.perl }";
# Quit if we have a winner
last if $score == 0;
# Create the next generation
@candidates = next-generation(@candidates, mutation-rate => $rate);
$rate *= 0.99;
}
put now - ENTER { now }, 's ', (now - ENTER { now }) / $gen, 's/generation' ;
$avg += (now - ENTER { now }) / $gen;
# 0.220037430956862s/generation
}
dd $avg/11;
}
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.3.5/css/bootstrap.min.css">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/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" tooltip-placement="bottom" tooltip="Unoptimized interpreted code">Interp</span> /
<span class="text-warning" tooltip-placement="bottom" tooltip="Type-specialized interpreted code">Spesh</span> /
<span class="text-success" tooltip-placement="bottom" tooltip="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(callee)}}" 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" tooltip-placement="bottom" tooltip="Unoptimized interpreted code">Interp</span> /
<span class="text-warning" tooltip-placement="bottom" tooltip="Type-specialized interpreted code">Spesh</span> /
<span class="text-success" tooltip-placement="bottom" tooltip="Type-specialized, JIT-compiled code">JIT</span>
</th>
<th>
<span tooltip-placement="bottom" tooltip="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>
<script type="text/ng-template" id="myModalContent.html">
<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>
</script>
</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" tooltip-placement="bottom" tooltip="Bytes retained in the nursery">Retained</span> /
<span class="text-warning" tooltip-placement="bottom" tooltip="Bytes promoted to gen2 and now available in nursery">Promoted</span> /
<span class="text-success" tooltip-placement="bottom" tooltip="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://ajax.googleapis.com/ajax/libs/angularjs/1.4.2/angular.min.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/angular-ui-bootstrap/0.13.4/ui-bootstrap-tpls.js"></script>
<script>
var rawData = JSON.parse('[{"spesh_time":78130,"total_time":292876500,"call_graph":{"exclusive_time":10,"id":22207648,"line":1298,"name":"","inclusive_time":254356304,"file":"gen/moar/stage2/NQPHLL.nqp","entries":1,"callees":[{"exclusive_time":24,"id":71733200,"line":1,"name":"<unit-outer>","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"}],"inclusive_time":254356293,"file":"hibbified-249.p6","entries":1,"callees":[{"exclusive_time":122,"id":62906000,"line":1,"name":"<unit>","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"}],"inclusive_time":254356269,"file":"hibbified-249.p6","entries":1,"callees":[{"exclusive_time":546,"id":34551328,"line":26121,"name":"MAIN_HELPER","allocations":[{"count":3,"id":29975016,"type":"Scalar"},{"count":1,"id":29974896,"type":"Array"}],"inclusive_time":254356146,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":8,"id":38057408,"line":1621,"name":"","allocations":[{"count":3,"id":29974632,"type":"Sub"},{"count":6,"id":19706296,"type":"BOOTCode"},{"count":3,"id":29975160,"type":"Block"}],"inclusive_time":8,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":6},{"exclusive_time":170,"id":34536432,"line":25672,"name":"callframe","inclusive_time":504,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":34223008,"line":8439,"name":"infix:<+>","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":104,"id":36381712,"line":25631,"name":"new","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":3,"id":29975016,"type":"Scalar"},{"count":1,"id":59273656,"type":"CallFrame"},{"count":2,"id":19706368,"type":"BOOTContext"},{"count":1,"id":29974872,"type":"Map"}],"inclusive_time":332,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":34223008,"line":8439,"name":"infix:<+>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":159,"id":33998352,"line":2179,"name":"postfix:<-->","inclusive_time":222,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":55,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":58,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":3,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":3,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]},{"exclusive_time":5,"id":34221184,"line":8414,"name":"postfix:<-->","inclusive_time":5,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":1,"id":34221184,"line":8414,"name":"postfix:<-->","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":3},{"exclusive_time":2,"id":36382320,"line":-1,"name":"","inclusive_time":2,"file":"/usr/local/src/rakudo/install/share/perl6/runtime/CORE.setting.moarvm","entries":1},{"exclusive_time":1,"id":38067440,"line":3013,"name":"","allocations":[{"count":1,"id":29974560,"type":"Hash"}],"inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]}]},{"exclusive_time":1,"id":34946224,"line":2339,"name":"<anon>","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":22,"id":34104144,"line":6139,"name":"postcircumfix:<{ }>","inclusive_time":666,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":134,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":3,"id":19707232,"type":"NQPArray"},{"count":2,"id":19706248,"type":"BOOTHash"}],"inclusive_time":137,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":2,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":2,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]},{"exclusive_time":16,"id":34104448,"line":6142,"name":"postcircumfix:<{ }>","inclusive_time":507,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":61,"id":34935280,"line":2092,"name":"AT-KEY","inclusive_time":490,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":38067136,"line":3008,"name":"","allocations":[{"count":1,"id":29974584,"type":"List"}],"inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1},{"exclusive_time":201,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":407,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":173,"id":38059536,"line":1708,"name":"","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":17,"id":19707232,"type":"NQPArray"},{"count":4,"id":19707280,"type":"NQPArrayIter"},{"count":6,"id":19706248,"type":"BOOTHash"},{"count":6,"id":19706752,"type":"BOOTIntArray"},{"count":3,"id":19706152,"type":"BOOTInt"}],"inclusive_time":203,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":30,"id":38059840,"line":1738,"name":"is_narrower","inclusive_time":30,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":6}]},{"exclusive_time":2,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":2,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]},{"exclusive_time":20,"id":35733888,"line":17329,"name":"AT-KEY","inclusive_time":21,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":35310112,"line":10026,"name":"Str","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]}]}]}]},{"exclusive_time":1,"id":35552400,"line":14088,"name":"sink","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":2},{"exclusive_time":32,"id":25494176,"line":556,"name":"DYNAMIC","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"}],"inclusive_time":758,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":20,"id":25494480,"line":558,"name":"","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":725,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":38,"id":25494784,"line":564,"name":"","allocations":[{"count":1,"id":29974968,"type":"StrLexRef"}],"inclusive_time":705,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":39,"id":34986656,"line":3355,"name":"INITIALIZE-DYNAMIC","inclusive_time":666,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":9,"id":30045840,"line":56,"name":"language_version","inclusive_time":10,"file":"src/Perl6/Compiler.nqp","entries":1,"callees":[{"exclusive_time":1,"id":22204000,"line":1184,"name":"config","inclusive_time":1,"file":"gen/moar/stage2/NQPHLL.nqp","entries":1}]},{"exclusive_time":10,"id":34778112,"line":35845,"name":"","allocations":[{"count":1,"id":29974896,"type":"Array"}],"inclusive_time":615,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":7,"id":34104144,"line":6139,"name":"postcircumfix:<{ }>","inclusive_time":605,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":135,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"},{"count":1,"id":19706440,"type":"CallCapture"}],"inclusive_time":569,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":40,"id":38040688,"line":920,"name":"is_bindable","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"}],"inclusive_time":433,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":167,"id":38040992,"line":926,"name":"","inclusive_time":393,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":214,"id":38038560,"line":606,"name":"bind","inclusive_time":225,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":11,"id":38036736,"line":168,"name":"bind_one_param","allocations":[{"count":6,"id":19706296,"type":"BOOTCode"}],"inclusive_time":11,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":3}]}]}]}]},{"exclusive_time":21,"id":34105056,"line":6148,"name":"postcircumfix:<{ }>","inclusive_time":28,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":6,"id":35741488,"line":17444,"name":"BIND-KEY","inclusive_time":6,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]}]}]}]}]}]}]},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":94,"id":34551632,"line":26127,"name":"process-cmd-args","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":2,"id":29974896,"type":"Array"},{"count":1,"id":29974560,"type":"Hash"},{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":527,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":22,"id":35605296,"line":15771,"name":"STORE","inclusive_time":265,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":113,"id":35605904,"line":15779,"name":"STORE-ITERABLE","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":1,"id":54157808,"type":"IterationBuffer"},{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":243,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":48,"id":35546624,"line":13990,"name":"iterator","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"}],"inclusive_time":107,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":2,"id":35540240,"line":13900,"name":"ensure-allocated","allocations":[{"count":1,"id":29975016,"type":"Scalar"},{"count":1,"id":54157808,"type":"IterationBuffer"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":34818544,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":2,"id":35546928,"line":13992,"name":"","allocations":[{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":40,"id":35547536,"line":14004,"name":"new","allocations":[{"count":1,"id":53651952,"type":"<anon|352550624>"}],"inclusive_time":53,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":8,"id":35623536,"line":16147,"name":"of","inclusive_time":9,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":38396896,"line":3777,"name":"of","inclusive_time":0,"file":"gen/moar/m-Metamodel.nqp","entries":1}]},{"exclusive_time":2,"id":35547232,"line":13998,"name":"BUILD","allocations":[{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":2,"id":35628704,"line":15464,"name":"new","allocations":[{"count":1,"id":54158192,"type":"Array::ArrayReificationTarget"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":19,"id":35548448,"line":14020,"name":"push-until-lazy","allocations":[{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":20,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":0,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":39,"id":34364064,"line":14541,"name":"infix:<,>","inclusive_time":71,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":20,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":23,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":3,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":3,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]},{"exclusive_time":7,"id":34364976,"line":14547,"name":"infix:<,>","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":1,"id":29974584,"type":"List"},{"count":1,"id":54157808,"type":"IterationBuffer"},{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":7,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":19,"id":34843168,"line":1155,"name":"Numeric","inclusive_time":92,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":38067136,"line":3008,"name":"","allocations":[{"count":1,"id":29974584,"type":"List"}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1},{"exclusive_time":13,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":14,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":1,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]},{"exclusive_time":45,"id":35541456,"line":13911,"name":"Numeric","inclusive_time":56,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":8,"id":35543584,"line":13932,"name":"elems","inclusive_time":10,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":2}]}]}]},{"exclusive_time":3,"id":34364976,"line":14547,"name":"infix:<,>","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":1,"id":29974584,"type":"List"},{"count":1,"id":54157808,"type":"IterationBuffer"},{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":52,"id":35567600,"line":14252,"name":"Capture","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":1,"id":29975112,"type":"Capture"},{"count":1,"id":54157808,"type":"IterationBuffer"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":127,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":3,"id":35569424,"line":14286,"name":"is-lazy","allocations":[{"count":2,"id":29975016,"type":"Scalar"}],"inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":24,"id":35567904,"line":14262,"name":"","allocations":[{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":71,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":20,"id":34916736,"line":1907,"name":"push","inclusive_time":45,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":0,"id":38067136,"line":3008,"name":"","allocations":[{"count":2,"id":29974584,"type":"List"}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":2},{"exclusive_time":20,"id":38060448,"line":2048,"name":"","allocations":[{"count":4,"id":19706296,"type":"BOOTCode"},{"count":4,"id":19707232,"type":"NQPArray"},{"count":2,"id":19706248,"type":"BOOTHash"}],"inclusive_time":22,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":2,"callees":[{"exclusive_time":1,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":2}]},{"exclusive_time":1,"id":35438704,"line":12283,"name":"push","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":2}]},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":34818544,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":18,"id":38041296,"line":929,"name":"bind_cap_to_sig","allocations":[{"count":1,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706368,"type":"BOOTContext"}],"inclusive_time":47,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":7,"id":38038864,"line":911,"name":"make_vm_capture","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"}],"inclusive_time":10,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":2,"id":38039168,"line":912,"name":"vm_capture","inclusive_time":2,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]},{"exclusive_time":9,"id":38038560,"line":606,"name":"bind","inclusive_time":19,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":9,"id":38036736,"line":168,"name":"bind_one_param","allocations":[{"count":4,"id":19706296,"type":"BOOTCode"},{"count":2,"id":29975016,"type":"Scalar"}],"inclusive_time":9,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":2}]}]},{"exclusive_time":2,"id":38051328,"line":1335,"name":"","allocations":[{"count":1,"id":29974488,"type":"Proxy"}],"inclusive_time":2,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1},{"exclusive_time":15,"id":35425632,"line":12129,"name":"new","inclusive_time":250,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":38,"id":34827360,"line":956,"name":"bless","allocations":[{"count":1,"id":29974560,"type":"Hash"},{"count":1,"id":29975112,"type":"Capture"}],"inclusive_time":235,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":18,"id":35539024,"line":13860,"name":"from-slurpy-flat","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":2,"id":54157808,"type":"IterationBuffer"},{"count":1,"id":29974896,"type":"Array"},{"count":1,"id":51227144,"type":"List::Reifier"}],"inclusive_time":25,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":38067136,"line":3008,"name":"","allocations":[{"count":1,"id":29974584,"type":"List"}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1},{"exclusive_time":4,"id":35607120,"line":15806,"name":"reification-target","inclusive_time":6,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":35628704,"line":15464,"name":"new","allocations":[{"count":1,"id":54158192,"type":"Array::ArrayReificationTarget"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":55,"id":34827664,"line":960,"name":"BUILDALL","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"}],"inclusive_time":171,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":2,"id":38327888,"line":1475,"name":"BUILDALLPLAN","inclusive_time":2,"file":"gen/moar/m-Metamodel.nqp","entries":1},{"exclusive_time":73,"id":34827968,"line":967,"name":"","allocations":[{"count":33,"id":19706296,"type":"BOOTCode"},{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":113,"file":"gen/moar/m-CORE.setting","entries":3,"callees":[{"exclusive_time":0,"id":35737536,"line":17376,"name":"FLATTENABLE_LIST","allocations":[{"count":1,"id":19706224,"type":"BOOTArray"}],"inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":3,"id":35737840,"line":17377,"name":"FLATTENABLE_HASH","inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":34818544,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":23,"id":35426240,"line":12133,"name":"BUILD","allocations":[{"count":1,"id":29975016,"type":"Scalar"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":34,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":8,"id":35543584,"line":13932,"name":"elems","allocations":[{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":10,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":35540240,"line":13900,"name":"ensure-allocated","allocations":[{"count":1,"id":29975016,"type":"Scalar"},{"count":1,"id":54157808,"type":"IterationBuffer"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":34818544,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":0,"id":34818544,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":35551488,"line":14083,"name":"list","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]}]}]}]}]},{"exclusive_time":75,"id":33915168,"line":6999,"name":"cando","allocations":[{"count":1,"id":29975016,"type":"Scalar"},{"count":1,"id":29974632,"type":"Sub"},{"count":1,"id":19706224,"type":"BOOTArray"}],"inclusive_time":119,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":38057408,"line":1621,"name":"","allocations":[{"count":1,"id":29974632,"type":"Sub"},{"count":1,"id":19706296,"type":"BOOTCode"}],"inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1},{"exclusive_time":0,"id":38057712,"line":1666,"name":"","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1},{"exclusive_time":0,"id":35435664,"line":12248,"name":"FLATTENABLE_LIST","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":1,"id":35435968,"line":12249,"name":"FLATTENABLE_HASH","allocations":[{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":6,"id":33915472,"line":7009,"name":"checker","inclusive_time":40,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":13,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":3,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":32,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":19,"id":38059536,"line":1708,"name":"","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":7,"id":19707232,"type":"NQPArray"},{"count":2,"id":19707280,"type":"NQPArrayIter"},{"count":2,"id":19706248,"type":"BOOTHash"},{"count":2,"id":19706752,"type":"BOOTIntArray"},{"count":1,"id":19706152,"type":"BOOTInt"}],"inclusive_time":19,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]},{"exclusive_time":0,"id":38067136,"line":3008,"name":"","allocations":[{"count":1,"id":29974584,"type":"List"}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]}]},{"exclusive_time":3,"id":35605296,"line":15771,"name":"STORE","inclusive_time":118,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":17,"id":35605904,"line":15779,"name":"STORE-ITERABLE","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":1,"id":54157808,"type":"IterationBuffer"},{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":114,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":11,"id":35546624,"line":13990,"name":"iterator","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"}],"inclusive_time":52,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":2,"id":35546928,"line":13992,"name":"","allocations":[{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":32,"id":35547536,"line":14004,"name":"new","allocations":[{"count":1,"id":53651952,"type":"<anon|352550624>"}],"inclusive_time":36,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":34798480,"line":495,"name":"of","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":3,"id":35547232,"line":13998,"name":"BUILD","allocations":[{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":2,"id":35628704,"line":15464,"name":"new","allocations":[{"count":1,"id":54158192,"type":"Array::ArrayReificationTarget"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":38,"id":35548448,"line":14020,"name":"push-until-lazy","allocations":[{"count":2,"id":29975016,"type":"Scalar"}],"inclusive_time":42,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":2,"id":35629008,"line":15471,"name":"push","allocations":[{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":0,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":52,"id":34872352,"line":1418,"name":"dispatch:<.=>","allocations":[{"count":2,"id":29975016,"type":"Scalar"},{"count":1,"id":29975112,"type":"Capture"}],"inclusive_time":5446,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":35435664,"line":12248,"name":"FLATTENABLE_LIST","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":1,"id":35435968,"line":12249,"name":"FLATTENABLE_HASH","allocations":[{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":35310416,"line":10027,"name":"Stringy","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":190,"id":35083936,"line":4386,"name":"grep","inclusive_time":987,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":38067136,"line":3008,"name":"","allocations":[{"count":1,"id":29974584,"type":"List"}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1},{"exclusive_time":28,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":82,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":40,"id":38059536,"line":1708,"name":"","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":12,"id":19707232,"type":"NQPArray"},{"count":3,"id":19707280,"type":"NQPArrayIter"},{"count":4,"id":19706248,"type":"BOOTHash"},{"count":4,"id":19706752,"type":"BOOTIntArray"},{"count":2,"id":19706152,"type":"BOOTInt"}],"inclusive_time":51,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":10,"id":38059840,"line":1738,"name":"is_narrower","inclusive_time":10,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":2}]},{"exclusive_time":2,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":2,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]},{"exclusive_time":103,"id":35084544,"line":4390,"name":"grep","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":29975016,"type":"Scalar"},{"count":1,"id":29974560,"type":"Hash"}],"inclusive_time":713,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":24,"id":34196560,"line":7971,"name":"infix:<==>","inclusive_time":218,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":52,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":53,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":1,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]},{"exclusive_time":23,"id":34197168,"line":7973,"name":"infix:<==>","inclusive_time":140,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":40,"id":34843168,"line":1155,"name":"Numeric","inclusive_time":114,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":38067136,"line":3008,"name":"","allocations":[{"count":1,"id":29974584,"type":"List"}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1},{"exclusive_time":13,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":55,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":31,"id":38059536,"line":1708,"name":"","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":12,"id":19707232,"type":"NQPArray"},{"count":3,"id":19707280,"type":"NQPArrayIter"},{"count":4,"id":19706248,"type":"BOOTHash"},{"count":4,"id":19706752,"type":"BOOTIntArray"},{"count":2,"id":19706152,"type":"BOOTInt"}],"inclusive_time":40,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":9,"id":38059840,"line":1738,"name":"is_narrower","inclusive_time":9,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":2,"entries":2}]},{"exclusive_time":1,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]},{"exclusive_time":16,"id":35720512,"line":17179,"name":"Numeric","inclusive_time":17,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":35719904,"line":17175,"name":"elems","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":0,"id":35195808,"line":7729,"name":"Numeric","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":1,"id":34228480,"line":8515,"name":"infix:<==>","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":17,"id":38395376,"line":3739,"name":"accepts_type","inclusive_time":28,"file":"gen/moar/m-Metamodel.nqp","entries":2,"callees":[{"exclusive_time":8,"id":38393856,"line":3687,"name":"base_type","inclusive_time":9,"file":"gen/moar/m-Metamodel.nqp","entries":2,"callees":[{"exclusive_time":0,"id":38392640,"line":3682,"name":"check_instantiated","inclusive_time":0,"file":"gen/moar/m-Metamodel.nqp","entries":2}]},{"exclusive_time":1,"id":38394160,"line":3692,"name":"definite","inclusive_time":1,"file":"gen/moar/m-Metamodel.nqp","entries":2,"callees":[{"exclusive_time":0,"id":38392640,"line":3682,"name":"check_instantiated","inclusive_time":0,"file":"gen/moar/m-Metamodel.nqp","entries":2}]}]},{"exclusive_time":222,"id":35070560,"line":4256,"name":"grep-callable","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":362,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":27,"id":35157504,"line":6408,"name":"count","inclusive_time":28,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":35839376,"line":18706,"name":"count","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":0,"id":34228480,"line":8515,"name":"infix:<==>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":40,"id":34872656,"line":1423,"name":"dispatch:<.?>","allocations":[{"count":1,"id":29975016,"type":"Scalar"},{"count":1,"id":29975112,"type":"Capture"}],"inclusive_time":56,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":35435664,"line":12248,"name":"FLATTENABLE_LIST","allocations":[{"count":1,"id":19706224,"type":"BOOTArray"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":1,"id":35435968,"line":12249,"name":"FLATTENABLE_HASH","allocations":[{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":35310416,"line":10027,"name":"Stringy","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":11,"id":35162976,"line":6476,"name":"has-phasers","inclusive_time":12,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":34255840,"line":8705,"name":"prefix:<!>","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":1,"id":35071472,"line":4260,"name":"","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":18,"id":35148688,"line":4226,"name":"new","allocations":[{"count":1,"id":53653752,"type":"<anon|165409568>"}],"inclusive_time":50,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":5,"id":35148384,"line":4221,"name":"BUILD","allocations":[{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":32,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":9,"id":35546624,"line":13990,"name":"iterator","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"}],"inclusive_time":26,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":2,"id":35546928,"line":13992,"name":"","allocations":[{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":5,"id":35547536,"line":14004,"name":"new","allocations":[{"count":1,"id":53651952,"type":"<anon|352550624>"}],"inclusive_time":12,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":3,"id":35623536,"line":16147,"name":"of","inclusive_time":4,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":38396896,"line":3777,"name":"of","inclusive_time":0,"file":"gen/moar/m-Metamodel.nqp","entries":1}]},{"exclusive_time":2,"id":35547232,"line":13998,"name":"BUILD","inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1}]}]}]}]},{"exclusive_time":2,"id":35446304,"line":12399,"name":"new","allocations":[{"count":1,"id":53654904,"type":"Seq"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1}]}]}]},{"exclusive_time":3,"id":35605296,"line":15771,"name":"STORE","inclusive_time":4404,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":70,"id":35605904,"line":15779,"name":"STORE-ITERABLE","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":1,"id":54157808,"type":"IterationBuffer"},{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":4400,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":38,"id":35446912,"line":12407,"name":"iterator","inclusive_time":40,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":1,"id":38361936,"line":2635,"name":"type_check","inclusive_time":1,"file":"gen/moar/m-Metamodel.nqp","entries":1}]},{"exclusive_time":1,"id":35628704,"line":15464,"name":"new","allocations":[{"count":1,"id":54158192,"type":"Array::ArrayReificationTarget"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":33,"id":34959600,"line":2476,"name":"push-until-lazy","allocations":[{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":4287,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":34961120,"line":2511,"name":"is-lazy","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":80,"id":35072992,"line":4279,"name":"push-all","allocations":[{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":4253,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":6,"id":35547840,"line":14006,"name":"pull-one","inclusive_time":7,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":1,"id":35548144,"line":14013,"name":"reify-and-pull-one","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":9,"id":25520320,"line":1558,"name":"infix:<=:=>","inclusive_time":28,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":17,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":18,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":1,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]},{"exclusive_time":0,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":75,"id":34563488,"line":26253,"name":"","inclusive_time":4134,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":35157808,"line":6410,"name":"signature","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":347,"id":34561360,"line":26228,"name":"has-unexpected-named-arguments","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":1,"id":29975016,"type":"Scalar"},{"count":1,"id":29974896,"type":"Array"},{"count":1,"id":29974560,"type":"Hash"}],"inclusive_time":4058,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":2,"id":35839680,"line":18710,"name":"params","allocations":[{"count":1,"id":29974584,"type":"List"},{"count":1,"id":19707232,"type":"NQPArray"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":2,"id":38055584,"line":1563,"name":"","allocations":[{"count":2,"id":54158840,"type":"WhateverCode"},{"count":2,"id":19706296,"type":"BOOTCode"}],"inclusive_time":2,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":2},{"exclusive_time":16,"id":35083936,"line":4386,"name":"grep","inclusive_time":193,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":0,"id":38067136,"line":3008,"name":"","allocations":[{"count":2,"id":29974584,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":2},{"exclusive_time":31,"id":38060448,"line":2048,"name":"","allocations":[{"count":4,"id":19706296,"type":"BOOTCode"},{"count":4,"id":19707232,"type":"NQPArray"},{"count":2,"id":19706248,"type":"BOOTHash"}],"inclusive_time":34,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":2,"callees":[{"exclusive_time":2,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":2,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":2}]},{"exclusive_time":23,"id":35084544,"line":4390,"name":"grep","allocations":[{"count":4,"id":19706296,"type":"BOOTCode"},{"count":4,"id":29975016,"type":"Scalar"},{"count":2,"id":29974560,"type":"Hash"}],"inclusive_time":141,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":12,"id":34197168,"line":7973,"name":"infix:<==>","inclusive_time":20,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":3,"id":35720512,"line":17179,"name":"Numeric","inclusive_time":5,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":1,"id":35719904,"line":17175,"name":"elems","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":2}]},{"exclusive_time":0,"id":35195808,"line":7729,"name":"Numeric","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":2},{"exclusive_time":1,"id":34228480,"line":8515,"name":"infix:<==>","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":2}]},{"exclusive_time":8,"id":38395376,"line":3739,"name":"accepts_type","inclusive_time":16,"file":"gen/moar/m-Metamodel.nqp","entries":4,"callees":[{"exclusive_time":3,"id":38393856,"line":3687,"name":"base_type","inclusive_time":4,"file":"gen/moar/m-Metamodel.nqp","entries":4,"callees":[{"exclusive_time":1,"id":38392640,"line":3682,"name":"check_instantiated","inclusive_time":1,"file":"gen/moar/m-Metamodel.nqp","entries":4}]},{"exclusive_time":2,"id":38394160,"line":3692,"name":"definite","inclusive_time":3,"file":"gen/moar/m-Metamodel.nqp","entries":4,"callees":[{"exclusive_time":0,"id":38392640,"line":3682,"name":"check_instantiated","inclusive_time":0,"file":"gen/moar/m-Metamodel.nqp","entries":4}]}]},{"exclusive_time":22,"id":35070560,"line":4256,"name":"grep-callable","allocations":[{"count":4,"id":19706296,"type":"BOOTCode"},{"count":2,"id":29975016,"type":"Scalar"}],"inclusive_time":81,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":5,"id":35157504,"line":6408,"name":"count","inclusive_time":6,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":1,"id":35839376,"line":18706,"name":"count","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":2}]},{"exclusive_time":0,"id":34228480,"line":8515,"name":"infix:<==>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":2},{"exclusive_time":6,"id":34872656,"line":1423,"name":"dispatch:<.?>","allocations":[{"count":2,"id":29975016,"type":"Scalar"},{"count":2,"id":29975112,"type":"Capture"}],"inclusive_time":6,"file":"gen/moar/m-CORE.setting","entries":2},{"exclusive_time":1,"id":35071472,"line":4260,"name":"","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":2},{"exclusive_time":4,"id":35148688,"line":4226,"name":"new","allocations":[{"count":2,"id":53653752,"type":"<anon|165409568>"}],"inclusive_time":42,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":5,"id":35148384,"line":4221,"name":"BUILD","allocations":[{"count":2,"id":29975016,"type":"Scalar"}],"inclusive_time":37,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":11,"id":35546624,"line":13990,"name":"iterator","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"}],"inclusive_time":32,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":1,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":2},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2},{"exclusive_time":2,"id":35546928,"line":13992,"name":"","allocations":[{"count":2,"id":29975016,"type":"Scalar"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":2},{"exclusive_time":8,"id":35547536,"line":14004,"name":"new","allocations":[{"count":2,"id":53651952,"type":"<anon|352550624>"}],"inclusive_time":16,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":0,"id":34798480,"line":495,"name":"of","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":3,"id":35547232,"line":13998,"name":"BUILD","allocations":[{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":2},{"exclusive_time":2,"id":35623536,"line":16147,"name":"of","inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":38396896,"line":3777,"name":"of","inclusive_time":0,"file":"gen/moar/m-Metamodel.nqp","entries":1}]}]}]}]}]},{"exclusive_time":2,"id":35446304,"line":12399,"name":"new","allocations":[{"count":2,"id":53654904,"type":"Seq"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":2}]}]}]},{"exclusive_time":2,"id":35605296,"line":15771,"name":"STORE","inclusive_time":150,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":10,"id":35605904,"line":15779,"name":"STORE-ITERABLE","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":1,"id":54157808,"type":"IterationBuffer"},{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":147,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":5,"id":35446912,"line":12407,"name":"iterator","inclusive_time":6,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":1,"id":38361936,"line":2635,"name":"type_check","inclusive_time":1,"file":"gen/moar/m-Metamodel.nqp","entries":1}]},{"exclusive_time":1,"id":35628704,"line":15464,"name":"new","allocations":[{"count":1,"id":54158192,"type":"Array::ArrayReificationTarget"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":3,"id":34959600,"line":2476,"name":"push-until-lazy","allocations":[{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":129,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":34961120,"line":2511,"name":"is-lazy","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":39,"id":35072992,"line":4279,"name":"push-all","allocations":[{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":126,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":35,"id":35547840,"line":14006,"name":"pull-one","inclusive_time":36,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":1,"id":35548144,"line":14013,"name":"reify-and-pull-one","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":4,"id":25520320,"line":1558,"name":"infix:<=:=>","inclusive_time":16,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":10,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":11,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]},{"exclusive_time":0,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":14,"id":34561664,"line":26229,"name":"","inclusive_time":34,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":17,"id":35812320,"line":18408,"name":"named","allocations":[{"count":1,"id":29974536,"type":"IntAttrRef"}],"inclusive_time":19,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":1,"id":34232432,"line":8561,"name":"infix:<+&>","allocations":[{"count":1,"id":29974944,"type":"Int"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":0,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":0,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":37,"id":35449648,"line":12450,"name":"Bool","inclusive_time":310,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":17,"id":35444784,"line":12379,"name":"cache","allocations":[{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":41,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":4,"id":35446912,"line":12407,"name":"iterator","inclusive_time":5,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":38361936,"line":2635,"name":"type_check","inclusive_time":0,"file":"gen/moar/m-Metamodel.nqp","entries":1}]},{"exclusive_time":14,"id":35536896,"line":13804,"name":"from-iterator","allocations":[{"count":1,"id":29974584,"type":"List"},{"count":1,"id":54157808,"type":"IterationBuffer"},{"count":1,"id":51227144,"type":"List::Reifier"}],"inclusive_time":17,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":2,"id":35546320,"line":13985,"name":"reification-target","inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]}]},{"exclusive_time":70,"id":35540544,"line":13904,"name":"Bool","inclusive_time":232,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":38,"id":35589488,"line":13724,"name":"reify-at-least","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":2,"id":29975016,"type":"Scalar"}],"inclusive_time":135,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":37,"id":34958688,"line":2454,"name":"push-at-least","allocations":[{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":96,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":19,"id":35072080,"line":4266,"name":"push-exactly","allocations":[{"count":2,"id":29975016,"type":"Scalar"}],"inclusive_time":59,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":2,"id":35547840,"line":14006,"name":"pull-one","inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":35548144,"line":14013,"name":"reify-and-pull-one","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":0,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":33,"id":25497216,"line":625,"name":"","inclusive_time":36,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":2,"id":25496608,"line":611,"name":"RETURN-LIST","inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":38067136,"line":3008,"name":"","allocations":[{"count":1,"id":29974584,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]}]}]}]},{"exclusive_time":0,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":38361936,"line":2635,"name":"type_check","inclusive_time":0,"file":"gen/moar/m-Metamodel.nqp","entries":1}]},{"exclusive_time":24,"id":34254928,"line":8701,"name":"prefix:<so>","inclusive_time":25,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":35222560,"line":8248,"name":"Bool","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]}]}]},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":16,"id":34689344,"line":29503,"name":"METAOP_ZIP","inclusive_time":18,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":38057408,"line":1621,"name":"","allocations":[{"count":1,"id":29975160,"type":"Block"},{"count":1,"id":19706296,"type":"BOOTCode"}],"inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]},{"exclusive_time":2,"id":38057408,"line":1621,"name":"","allocations":[{"count":2,"id":29975160,"spesh":1,"type":"Block"},{"count":2,"id":19706296,"spesh":1,"type":"BOOTCode"}],"inclusive_time":2,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":2},{"exclusive_time":52,"id":35044416,"line":3773,"name":"map","inclusive_time":292,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":0,"id":38067136,"line":3008,"name":"","allocations":[{"count":2,"id":29974584,"type":"List","jit":2}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":2,"entries":2},{"exclusive_time":42,"id":38060448,"line":2048,"name":"","allocations":[{"count":4,"id":19706296,"type":"BOOTCode"},{"count":4,"id":19707232,"type":"NQPArray"},{"count":2,"id":19706248,"type":"BOOTHash"}],"inclusive_time":43,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":2,"callees":[{"exclusive_time":1,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":2,"entries":2}]},{"exclusive_time":62,"id":35045632,"line":3779,"name":"map","allocations":[{"count":4,"id":29975016,"type":"Scalar"}],"inclusive_time":196,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":6,"id":35546624,"line":13990,"name":"iterator","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"}],"inclusive_time":18,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":1,"id":35546928,"line":13992,"name":"","allocations":[{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":4,"id":35547536,"line":14004,"name":"new","allocations":[{"count":1,"id":53651952,"type":"<anon|352550624>"}],"inclusive_time":9,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":2,"id":35623536,"line":16147,"name":"of","inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":38396896,"line":3777,"name":"of","inclusive_time":0,"file":"gen/moar/m-Metamodel.nqp","entries":1}]},{"exclusive_time":1,"id":35547232,"line":13998,"name":"BUILD","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":84,"id":35048976,"line":3840,"name":"sequential-map","allocations":[{"count":4,"id":19706296,"type":"BOOTCode"},{"count":6,"id":29975016,"type":"Scalar"}],"inclusive_time":106,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":6,"id":35157504,"line":6408,"name":"count","inclusive_time":8,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":1,"id":35839376,"line":18706,"name":"count","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":2}]},{"exclusive_time":1,"id":34228480,"line":8515,"name":"infix:<==>","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":2},{"exclusive_time":2,"id":35049888,"line":3847,"name":"","inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":2},{"exclusive_time":7,"id":35147168,"line":3827,"name":"new","allocations":[{"count":6,"id":29975016,"type":"Scalar"},{"count":2,"id":53654184,"type":"<anon|159066640>"}],"inclusive_time":7,"file":"gen/moar/m-CORE.setting","entries":2},{"exclusive_time":2,"id":35446304,"line":12399,"name":"new","allocations":[{"count":2,"id":53654904,"type":"Seq"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":2}]},{"exclusive_time":7,"id":35446912,"line":12407,"name":"iterator","inclusive_time":8,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":38361936,"line":2635,"name":"type_check","inclusive_time":0,"file":"gen/moar/m-Metamodel.nqp","jit_entries":1,"entries":1}]}]}]},{"exclusive_time":22,"id":34367408,"line":14587,"name":"infix:<xx>","allocations":[{"count":1,"id":29974560,"type":"Hash"}],"inclusive_time":236,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":32,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":34,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":2,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":2,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]},{"exclusive_time":157,"id":34373184,"line":14638,"name":"infix:<xx>","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"}],"inclusive_time":179,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":2,"id":34373488,"line":14639,"name":"","allocations":[{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":14,"id":35596480,"line":14583,"name":"new","allocations":[{"count":1,"id":53651640,"type":"<anon|371779232>"}],"inclusive_time":17,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":2,"id":35596176,"line":14582,"name":"BUILD","allocations":[{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":1,"id":35446304,"line":12399,"name":"new","allocations":[{"count":1,"id":53654904,"type":"Seq"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":109,"id":34689648,"line":29504,"name":"","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":4,"id":29975016,"type":"Scalar"},{"count":1,"id":29974896,"type":"Array"}],"inclusive_time":1329,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":23,"id":35537504,"line":13831,"name":"from-slurpy-onearg","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":1,"id":29975112,"type":"Capture"},{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":39,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":35435664,"line":12248,"name":"FLATTENABLE_LIST","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":1,"id":35435968,"line":12249,"name":"FLATTENABLE_HASH","allocations":[{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":8,"id":35537200,"line":13817,"name":"from-slurpy","allocations":[{"count":1,"id":29974584,"type":"List"},{"count":1,"id":54157808,"type":"IterationBuffer"},{"count":1,"id":51227144,"type":"List::Reifier"}],"inclusive_time":14,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":38067136,"line":3008,"name":"","allocations":[{"count":1,"id":29974584,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":4,"id":35546320,"line":13985,"name":"reification-target","inclusive_time":5,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]}]},{"exclusive_time":79,"id":35543584,"line":13932,"name":"elems","allocations":[{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":154,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":22,"id":35591616,"line":13753,"name":"reify-until-lazy","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":2,"id":29975016,"type":"Scalar"}],"inclusive_time":68,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":15,"id":35592832,"line":13760,"name":"","allocations":[{"count":4,"id":19706296,"type":"BOOTCode"}],"inclusive_time":45,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":7,"id":35593744,"line":13769,"name":"","allocations":[{"count":2,"id":29975016,"type":"Scalar"}],"inclusive_time":29,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":7,"id":34916736,"line":1907,"name":"push","inclusive_time":21,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":38067136,"line":3008,"name":"","allocations":[{"count":1,"id":29974584,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":12,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":13,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":35438704,"line":12283,"name":"push","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":0,"id":35438704,"line":12283,"name":"push","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":0,"id":34818544,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":2}]}]},{"exclusive_time":0,"id":34818544,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":4,"id":35595264,"line":13795,"name":"fully-reified","inclusive_time":5,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":2}]}]},{"exclusive_time":0,"id":34228480,"line":8515,"name":"infix:<==>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":1,"id":38055584,"line":1563,"name":"","allocations":[{"count":1,"id":29975184,"type":"Code"},{"count":1,"id":19706296,"type":"BOOTCode"}],"inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1},{"exclusive_time":31,"id":34689952,"line":29508,"name":"","inclusive_time":903,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":38057408,"line":1621,"name":"","allocations":[{"count":1,"id":29975160,"type":"Block"},{"count":1,"id":19706296,"type":"BOOTCode"}],"inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1},{"exclusive_time":8,"id":35044416,"line":3773,"name":"map","inclusive_time":77,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":38067136,"line":3008,"name":"","allocations":[{"count":1,"id":29974584,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":18,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":18,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":9,"id":35045632,"line":3779,"name":"map","allocations":[{"count":2,"id":29975016,"type":"Scalar"}],"inclusive_time":50,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":7,"id":35546624,"line":13990,"name":"iterator","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"}],"inclusive_time":19,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":1,"id":35546928,"line":13992,"name":"","allocations":[{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":6,"id":35547536,"line":14004,"name":"new","allocations":[{"count":1,"id":53651952,"type":"<anon|352550624>"}],"inclusive_time":9,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":34798480,"line":495,"name":"of","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":1,"id":35547232,"line":13998,"name":"BUILD","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":13,"id":35048976,"line":3840,"name":"sequential-map","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":3,"id":29975016,"type":"Scalar"}],"inclusive_time":21,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":2,"id":35157504,"line":6408,"name":"count","inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":35839376,"line":18706,"name":"count","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":0,"id":34228480,"line":8515,"name":"infix:<==>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":35049888,"line":3847,"name":"","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":2,"id":35147168,"line":3827,"name":"new","allocations":[{"count":3,"id":29975016,"type":"Scalar"},{"count":1,"id":53654184,"type":"<anon|159066640>"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":1,"id":35446304,"line":12399,"name":"new","allocations":[{"count":1,"id":53654904,"type":"Seq"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]}]}]},{"exclusive_time":41,"id":35447520,"line":12420,"name":"eager","inclusive_time":792,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":6,"id":35446912,"line":12407,"name":"iterator","inclusive_time":8,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":2,"id":38361936,"line":2635,"name":"type_check","inclusive_time":2,"file":"gen/moar/m-Metamodel.nqp","entries":1}]},{"exclusive_time":3,"id":35536896,"line":13804,"name":"from-iterator","allocations":[{"count":1,"id":29974584,"type":"List"},{"count":1,"id":54157808,"type":"IterationBuffer"},{"count":1,"id":51227144,"type":"List::Reifier"}],"inclusive_time":8,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":4,"id":35546320,"line":13985,"name":"reification-target","inclusive_time":5,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]},{"exclusive_time":39,"id":35567296,"line":14247,"name":"eager","inclusive_time":733,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":26,"id":35594048,"line":13778,"name":"reify-all","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":2,"id":29975016,"type":"Scalar"}],"inclusive_time":693,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":6,"id":34958992,"line":2463,"name":"push-all","allocations":[{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":665,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":21,"id":34958688,"line":2454,"name":"push-at-least","allocations":[{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":658,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":85,"id":34958080,"line":2436,"name":"push-exactly","allocations":[{"count":2,"id":29975016,"type":"Scalar"}],"inclusive_time":637,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":198,"id":35050192,"line":3853,"name":"pull-one","allocations":[{"count":3,"id":19706296,"type":"BOOTCode"},{"count":7,"id":29975016,"type":"Scalar"}],"inclusive_time":511,"file":"gen/moar/m-CORE.setting","entries":3,"callees":[{"exclusive_time":1,"id":34255840,"line":8705,"name":"prefix:<!>","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":3},{"exclusive_time":5,"id":35163280,"line":6478,"name":"phasers","inclusive_time":5,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]},{"exclusive_time":4,"id":34151264,"line":7763,"name":"prefix:<+>","inclusive_time":14,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":3,"id":35541456,"line":13911,"name":"Numeric","inclusive_time":10,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":5,"id":35543584,"line":13932,"name":"elems","inclusive_time":6,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]}]}]},{"exclusive_time":6,"id":34824016,"line":929,"name":"Bool","inclusive_time":29,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":38067136,"line":3008,"name":"","allocations":[{"count":1,"id":29974584,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":21,"id":35540544,"line":13904,"name":"Bool","inclusive_time":22,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":34254320,"line":8699,"name":"prefix:<so>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":6,"entries":6},{"exclusive_time":6,"id":35547840,"line":14006,"name":"pull-one","inclusive_time":7,"file":"gen/moar/m-CORE.setting","entries":3,"callees":[{"exclusive_time":1,"id":35548144,"line":14013,"name":"reify-and-pull-one","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":6,"id":25520320,"line":1558,"name":"infix:<=:=>","inclusive_time":26,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":17,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":19,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":1,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]},{"exclusive_time":0,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":142,"id":34690256,"line":29508,"name":"","inclusive_time":222,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":51,"id":35447216,"line":12414,"name":"is-lazy","inclusive_time":65,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2},{"exclusive_time":12,"id":35147472,"line":3836,"name":"is-lazy","inclusive_time":13,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":35549056,"line":14034,"name":"is-lazy","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":0,"id":35596784,"line":14584,"name":"is-lazy","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":0,"id":34818544,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":8,"id":35446912,"line":12407,"name":"iterator","inclusive_time":10,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2},{"exclusive_time":2,"id":38361936,"line":2635,"name":"type_check","inclusive_time":2,"file":"gen/moar/m-Metamodel.nqp","entries":2}]},{"exclusive_time":2,"id":35000640,"line":2551,"name":"new","allocations":[{"count":2,"id":53654424,"type":"Rakudo::Internals::WhateverIterator"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":2},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":2},{"exclusive_time":0,"id":34818544,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":5,"id":35162368,"line":6469,"name":"fire_phasers","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"}],"inclusive_time":5,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":34255840,"line":8705,"name":"prefix:<!>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":4,"id":25520320,"line":1558,"name":"infix:<=:=>","inclusive_time":17,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":11,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":12,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":1,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":1,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":3},{"exclusive_time":8,"id":34916736,"line":1907,"name":"push","inclusive_time":20,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":38067136,"line":3008,"name":"","allocations":[{"count":1,"id":29974584,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":9,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":10,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":35438704,"line":12283,"name":"push","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":0,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":2},{"exclusive_time":0,"id":35438704,"line":12283,"name":"push","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":0,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":34818544,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":38361936,"line":2635,"name":"type_check","inclusive_time":0,"file":"gen/moar/m-Metamodel.nqp","entries":1},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":34818544,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]}]}]},{"exclusive_time":4,"id":35567296,"line":14247,"name":"eager","inclusive_time":7,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":3,"id":35594048,"line":13778,"name":"reify-all","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"}],"inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]},{"exclusive_time":0,"id":34818544,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":3,"id":35605296,"line":15771,"name":"STORE","inclusive_time":64,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":12,"id":35605904,"line":15779,"name":"STORE-ITERABLE","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":1,"id":54157808,"type":"IterationBuffer"},{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":61,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":8,"id":35546624,"line":13990,"name":"iterator","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"}],"inclusive_time":20,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":2,"id":35546928,"line":13992,"name":"","allocations":[{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":6,"id":35547536,"line":14004,"name":"new","allocations":[{"count":1,"id":53651952,"type":"<anon|352550624>"}],"inclusive_time":9,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":34798480,"line":495,"name":"of","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":1,"id":35547232,"line":13998,"name":"BUILD","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":1,"id":35628704,"line":15464,"name":"new","allocations":[{"count":1,"id":54158192,"type":"Array::ArrayReificationTarget"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":15,"id":35548448,"line":14020,"name":"push-until-lazy","allocations":[{"count":2,"id":29975016,"type":"Scalar"}],"inclusive_time":26,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":4,"id":35591616,"line":13753,"name":"reify-until-lazy","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"}],"inclusive_time":4,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]},{"exclusive_time":2,"id":35629008,"line":15471,"name":"push","allocations":[{"count":2,"id":29975016,"type":"Scalar"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":2},{"exclusive_time":0,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":3,"id":35595264,"line":13795,"name":"fully-reified","inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]}]},{"exclusive_time":0,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]},{"exclusive_time":2,"id":38057408,"line":1621,"name":"","allocations":[{"count":2,"id":29975160,"type":"Block"},{"count":2,"id":19706296,"type":"BOOTCode"}],"inclusive_time":2,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":2},{"exclusive_time":26,"id":34348560,"line":12668,"name":"GATHER","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"}],"inclusive_time":38,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":2,"id":34348864,"line":12669,"name":"","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":5,"id":34349472,"line":12676,"name":"new","allocations":[{"count":1,"id":53652480,"type":"<anon|340889968>"}],"inclusive_time":7,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":2,"id":38057408,"line":1621,"name":"","allocations":[{"count":2,"id":29975160,"spesh":2,"type":"Block"},{"count":2,"id":19706296,"spesh":2,"type":"BOOTCode"}],"inclusive_time":2,"spesh_entries":2,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":2}]},{"exclusive_time":1,"id":35446304,"line":12399,"name":"new","allocations":[{"count":1,"id":53654904,"type":"Seq"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":6,"id":35037728,"line":3690,"name":"lazy-if","allocations":[{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":6,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":40,"id":35734192,"line":17336,"name":"STORE","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":672,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":5,"id":35446912,"line":12407,"name":"iterator","inclusive_time":7,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":1,"id":38361936,"line":2635,"name":"type_check","inclusive_time":1,"file":"gen/moar/m-Metamodel.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":47,"id":34351296,"line":12707,"name":"pull-one","allocations":[{"count":2,"id":29975016,"type":"Scalar"},{"count":1,"id":54157808,"type":"IterationBuffer"}],"inclusive_time":624,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":34818544,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":18,"id":34350384,"line":12698,"name":"","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":575,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":34,"id":34691168,"line":29518,"name":"","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"}],"inclusive_time":554,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":63,"id":34691472,"line":29519,"name":"","allocations":[{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":520,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":38057408,"line":1621,"name":"","allocations":[{"count":1,"id":29975160,"spesh":1,"type":"Block"},{"count":1,"id":19706296,"spesh":1,"type":"BOOTCode"}],"inclusive_time":1,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1},{"exclusive_time":7,"id":35045632,"line":3779,"name":"map","allocations":[{"count":2,"id":29975016,"type":"Scalar"}],"inclusive_time":53,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":6,"id":35546624,"line":13990,"name":"iterator","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"}],"inclusive_time":19,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":1,"id":35546928,"line":13992,"name":"","allocations":[{"count":1,"id":29975016,"type":"Scalar","jit":1}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":4,"id":35547536,"line":14004,"name":"new","allocations":[{"count":1,"id":53651952,"type":"<anon|352550624>"}],"inclusive_time":10,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":3,"id":35623536,"line":16147,"name":"of","inclusive_time":4,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":38396896,"line":3777,"name":"of","inclusive_time":0,"file":"gen/moar/m-Metamodel.nqp","entries":1}]},{"exclusive_time":1,"id":35547232,"line":13998,"name":"BUILD","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":16,"id":35048976,"line":3840,"name":"sequential-map","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":3,"id":29975016,"type":"Scalar"}],"inclusive_time":26,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":3,"id":35157504,"line":6408,"name":"count","inclusive_time":4,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":35839376,"line":18706,"name":"count","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":1,"id":34228480,"line":8515,"name":"infix:<==>","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":35049888,"line":3847,"name":"","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":2,"id":35147168,"line":3827,"name":"new","allocations":[{"count":3,"id":29975016,"type":"Scalar"},{"count":1,"id":53654184,"type":"<anon|159066640>"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":1,"id":35446304,"line":12399,"name":"new","allocations":[{"count":1,"id":53654904,"type":"Seq"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":3,"id":35446912,"line":12407,"name":"iterator","inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":38361936,"line":2635,"name":"type_check","inclusive_time":0,"file":"gen/moar/m-Metamodel.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":4,"id":35536896,"line":13804,"name":"from-iterator","allocations":[{"count":1,"id":29974584,"type":"List"},{"count":1,"id":54157808,"type":"IterationBuffer"},{"count":1,"id":51227144,"type":"List::Reifier"}],"inclusive_time":8,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":3,"id":35546320,"line":13985,"name":"reification-target","inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]},{"exclusive_time":3,"id":35567296,"line":14247,"name":"eager","inclusive_time":297,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":9,"id":35594048,"line":13778,"name":"reify-all","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":2,"id":29975016,"type":"Scalar"}],"inclusive_time":292,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":4,"id":34958992,"line":2463,"name":"push-all","allocations":[{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":282,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":3,"id":34958688,"line":2454,"name":"push-at-least","allocations":[{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":277,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":7,"id":34958080,"line":2436,"name":"push-exactly","allocations":[{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":274,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":42,"id":35050192,"line":3853,"name":"pull-one","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":4,"id":29975016,"type":"Scalar"}],"inclusive_time":266,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":34255840,"line":8705,"name":"prefix:<!>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":4,"id":35163280,"line":6478,"name":"phasers","inclusive_time":4,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]},{"exclusive_time":3,"id":34151264,"line":7763,"name":"prefix:<+>","inclusive_time":11,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":3,"id":35541456,"line":13911,"name":"Numeric","inclusive_time":8,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":4,"id":35543584,"line":13932,"name":"elems","inclusive_time":4,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]}]}]},{"exclusive_time":5,"id":34824016,"line":929,"name":"Bool","inclusive_time":12,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":38067136,"line":3008,"name":"","allocations":[{"count":1,"id":29974584,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":5,"id":35540544,"line":13904,"name":"Bool","inclusive_time":6,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":34254320,"line":8699,"name":"prefix:<so>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2},{"exclusive_time":1,"id":35547840,"line":14006,"name":"pull-one","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":5,"id":25520320,"line":1558,"name":"infix:<=:=>","inclusive_time":24,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":17,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":18,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":1,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":32,"id":34691776,"line":29520,"name":"","inclusive_time":163,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":20,"id":35000944,"line":2557,"name":"pull-one","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"}],"inclusive_time":67,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":6,"id":35001552,"line":2561,"name":"","allocations":[{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":47,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":17,"id":35050192,"line":3853,"name":"pull-one","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":5,"id":29975016,"type":"Scalar"}],"inclusive_time":40,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":34255840,"line":8705,"name":"prefix:<!>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":4,"id":35163280,"line":6478,"name":"phasers","inclusive_time":4,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]},{"exclusive_time":1,"id":34151264,"line":7763,"name":"prefix:<+>","inclusive_time":7,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":35541456,"line":13911,"name":"Numeric","inclusive_time":5,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":3,"id":35543584,"line":13932,"name":"elems","inclusive_time":4,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]}]}]},{"exclusive_time":2,"id":34824016,"line":929,"name":"Bool","inclusive_time":7,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":38067136,"line":3008,"name":"","allocations":[{"count":1,"id":29974584,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":4,"id":35540544,"line":13904,"name":"Bool","inclusive_time":4,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":34254320,"line":8699,"name":"prefix:<so>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2},{"exclusive_time":2,"id":35547840,"line":14006,"name":"pull-one","inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":35548144,"line":14013,"name":"reify-and-pull-one","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":0,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":34818544,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":0,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]},{"exclusive_time":0,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":14,"id":25500560,"line":654,"name":"last","inclusive_time":63,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":8,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":8,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":12,"id":25500864,"line":655,"name":"last","inclusive_time":39,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":25,"id":25496304,"line":603,"name":"THROW-NIL","allocations":[{"count":1,"id":19706488,"type":"BOOTException"}],"inclusive_time":27,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":2,"id":35051712,"line":3899,"name":"","allocations":[{"count":2,"id":29974944,"type":"Int"},{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1}]}]}]}]},{"exclusive_time":4,"id":35162368,"line":6469,"name":"fire_phasers","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"}],"inclusive_time":5,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":34255840,"line":8705,"name":"prefix:<!>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":0,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]},{"exclusive_time":0,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":34818544,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":38361936,"line":2635,"name":"type_check","inclusive_time":0,"file":"gen/moar/m-Metamodel.nqp","jit_entries":1,"entries":1},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":34818544,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":6,"id":34899408,"line":1805,"name":"elems","inclusive_time":40,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":38067136,"line":3008,"name":"","allocations":[{"count":1,"id":29974584,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":11,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":12,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":1,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]},{"exclusive_time":10,"id":35543584,"line":13932,"name":"elems","allocations":[{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":20,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":4,"id":35591616,"line":13753,"name":"reify-until-lazy","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"}],"inclusive_time":4,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]},{"exclusive_time":0,"id":34818544,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":4,"id":35595264,"line":13795,"name":"fully-reified","inclusive_time":4,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]}]}]},{"exclusive_time":13,"id":34200512,"line":7995,"name":"infix:«<»","inclusive_time":50,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":35,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":36,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":34229392,"line":8526,"name":"infix:«<»","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":1,"id":25500864,"line":655,"name":"last","inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":25496304,"line":603,"name":"THROW-NIL","allocations":[{"count":1,"id":19706488,"type":"BOOTException"}],"inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]}]}]},{"exclusive_time":1,"id":38057408,"line":1621,"name":"","allocations":[{"count":1,"id":29975160,"spesh":1,"type":"Block"},{"count":1,"id":19706296,"spesh":1,"type":"BOOTCode"}],"inclusive_time":1,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]},{"exclusive_time":1,"id":34350688,"line":12700,"name":"","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":0,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]},{"exclusive_time":80,"id":34901232,"line":1813,"name":"keys","inclusive_time":348,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":38067136,"line":3008,"name":"","allocations":[{"count":1,"id":29974584,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":12,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":71,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":43,"id":38059536,"line":1708,"name":"","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":17,"id":19707232,"type":"NQPArray"},{"count":4,"id":19707280,"type":"NQPArrayIter"},{"count":6,"id":19706248,"type":"BOOTHash"},{"count":6,"id":19706752,"type":"BOOTIntArray"},{"count":3,"id":19706152,"type":"BOOTInt"}],"inclusive_time":58,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":14,"id":38059840,"line":1738,"name":"is_narrower","inclusive_time":14,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":6,"entries":6}]},{"exclusive_time":1,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":166,"id":35726288,"line":17243,"name":"keys","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"}],"inclusive_time":196,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":2,"id":35726592,"line":17244,"name":"","allocations":[{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":21,"id":34999120,"line":2536,"name":"new","allocations":[{"count":1,"id":53651352,"type":"<anon|426299328>"}],"inclusive_time":26,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":4,"id":34998816,"line":2530,"name":"BUILD","allocations":[{"count":1,"id":19706248,"type":"BOOTHash"},{"count":1,"id":19706344,"type":"BOOTIter"}],"inclusive_time":4,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":1,"id":35446304,"line":12399,"name":"new","allocations":[{"count":1,"id":53654904,"type":"Seq"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":68,"id":35451472,"line":12474,"name":"sink","inclusive_time":150,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":3,"id":35446912,"line":12407,"name":"iterator","inclusive_time":4,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":38361936,"line":2635,"name":"type_check","inclusive_time":0,"file":"gen/moar/m-Metamodel.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":42,"id":35052016,"line":3921,"name":"sink-all","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":6,"id":29975016,"type":"Scalar"}],"inclusive_time":77,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":34255840,"line":8705,"name":"prefix:<!>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":5,"id":35163280,"line":6478,"name":"phasers","inclusive_time":5,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]},{"exclusive_time":3,"id":34151264,"line":7763,"name":"prefix:<+>","inclusive_time":13,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":3,"id":35541456,"line":13911,"name":"Numeric","inclusive_time":10,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":5,"id":35543584,"line":13932,"name":"elems","inclusive_time":6,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]}]}]},{"exclusive_time":5,"id":34824016,"line":929,"name":"Bool","inclusive_time":14,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":38067136,"line":3008,"name":"","allocations":[{"count":1,"id":29974584,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":7,"id":35540544,"line":13904,"name":"Bool","inclusive_time":8,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":34254320,"line":8699,"name":"prefix:<so>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2},{"exclusive_time":1,"id":35726896,"line":17245,"name":"pull-one","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":34818544,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":0,"id":34818544,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":0,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]},{"exclusive_time":2,"id":35629008,"line":15471,"name":"push","allocations":[{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]},{"exclusive_time":0,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]}]},{"exclusive_time":2,"id":35541456,"line":13911,"name":"Numeric","inclusive_time":9,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":6,"id":35543584,"line":13932,"name":"elems","inclusive_time":7,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]}]},{"exclusive_time":4,"id":34893632,"line":1777,"name":"cache","inclusive_time":5,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":35551488,"line":14083,"name":"list","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":5,"id":35568208,"line":14273,"name":"FLATTENABLE_LIST","inclusive_time":6,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]},{"exclusive_time":0,"id":35739056,"line":17392,"name":"hash","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":35737536,"line":17376,"name":"FLATTENABLE_LIST","allocations":[{"count":1,"id":19706224,"type":"BOOTArray"}],"inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":35568512,"line":14278,"name":"FLATTENABLE_HASH","allocations":[{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":1,"id":35737840,"line":17377,"name":"FLATTENABLE_HASH","allocations":[{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":81,"id":77787840,"line":72,"name":"MAIN","inclusive_time":254346987,"file":"hibbified-249.p6","entries":1,"callees":[{"exclusive_time":16,"id":34356768,"line":13606,"name":"prefix:<^>","allocations":[{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":315,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":35195808,"line":7729,"name":"Numeric","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":8,"id":34825536,"line":941,"name":"new","inclusive_time":298,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":38067136,"line":3008,"name":"","allocations":[{"count":1,"id":29974584,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":25,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"},{"count":1,"id":19706440,"type":"CallCapture"}],"inclusive_time":200,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":23,"id":38040688,"line":920,"name":"is_bindable","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"}],"inclusive_time":174,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":4,"id":38040992,"line":926,"name":"","inclusive_time":150,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":48,"id":38038560,"line":606,"name":"bind","allocations":[{"count":1,"id":29974560,"type":"Hash"}],"inclusive_time":146,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":62,"id":38036736,"line":168,"name":"bind_one_param","allocations":[{"count":12,"id":19706296,"type":"BOOTCode"},{"count":1,"id":19707376,"type":"str"},{"count":3,"id":29975016,"type":"Scalar"}],"inclusive_time":96,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":6,"callees":[{"exclusive_time":32,"id":38361936,"line":2635,"name":"type_check","allocations":[{"count":2,"id":19707280,"type":"NQPArrayIter"}],"inclusive_time":33,"file":"gen/moar/m-Metamodel.nqp","entries":1,"callees":[{"exclusive_time":0,"id":38290800,"line":161,"name":"pretending_to_be","inclusive_time":0,"file":"gen/moar/m-Metamodel.nqp","entries":1}]},{"exclusive_time":0,"id":38357072,"line":2516,"name":"archetypes","inclusive_time":0,"file":"gen/moar/m-Metamodel.nqp","entries":1},{"exclusive_time":0,"id":38284416,"line":88,"name":"generic","inclusive_time":0,"file":"gen/moar/m-Metamodel.nqp","entries":1}]},{"exclusive_time":0,"id":38038256,"line":573,"name":"handle_optional","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]}]}]}]},{"exclusive_time":41,"id":35491904,"line":13100,"name":"new","allocations":[{"count":3,"id":29975016,"type":"Scalar"},{"count":1,"id":51226328,"type":"Range"}],"inclusive_time":89,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":28,"id":34213888,"line":8187,"name":"infix:<==>","inclusive_time":33,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":2,"id":35224688,"line":8273,"name":"Bridge","allocations":[{"count":2,"id":29974920,"type":"Num"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":2},{"exclusive_time":0,"id":35242320,"line":8826,"name":"Bridge","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":2},{"exclusive_time":1,"id":34283504,"line":9200,"name":"infix:<==>","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":2}]},{"exclusive_time":13,"id":35493728,"line":13124,"name":"BUILD","allocations":[{"count":2,"id":29975016,"type":"Scalar"}],"inclusive_time":14,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":34825232,"line":937,"name":"defined","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":2}]}]}]}]},{"exclusive_time":1,"id":38057408,"line":1621,"name":"","allocations":[{"count":1,"id":29975160,"spesh":1,"type":"Block"},{"count":1,"id":19706296,"spesh":1,"type":"BOOTCode"}],"inclusive_time":1,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1},{"exclusive_time":8,"id":35044416,"line":3773,"name":"map","inclusive_time":545,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":38067136,"line":3008,"name":"","allocations":[{"count":1,"id":29974584,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":19,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":19,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":83,"id":35045632,"line":3779,"name":"map","allocations":[{"count":2,"id":29975016,"type":"Scalar"}],"inclusive_time":516,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":179,"id":35496464,"line":13159,"name":"iterator","allocations":[{"count":5,"id":19706296,"type":"BOOTCode"},{"count":3,"id":29974536,"type":"IntAttrRef"},{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":398,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":34255840,"line":8705,"name":"prefix:<!>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":2},{"exclusive_time":1,"id":35497984,"line":13164,"name":"","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":6,"id":34184096,"line":7908,"name":"infix:<+>","inclusive_time":60,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":50,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":52,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":1,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]},{"exclusive_time":1,"id":34223008,"line":8439,"name":"infix:<+>","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":30,"id":34185008,"line":7912,"name":"infix:<->","inclusive_time":76,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":42,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":43,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":1,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]},{"exclusive_time":1,"id":34223616,"line":8446,"name":"infix:<->","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":30,"id":35498592,"line":13169,"name":"new","allocations":[{"count":1,"id":53652384,"type":"<anon|349030928>"}],"inclusive_time":80,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":5,"id":35498288,"line":13168,"name":"BUILD","inclusive_time":49,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":4,"id":34185008,"line":7912,"name":"infix:<->","inclusive_time":44,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":38,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":39,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]},{"exclusive_time":0,"id":34223616,"line":8446,"name":"infix:<->","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]}]}]}]},{"exclusive_time":20,"id":35048976,"line":3840,"name":"sequential-map","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":3,"id":29975016,"type":"Scalar"}],"inclusive_time":34,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":5,"id":35157504,"line":6408,"name":"count","inclusive_time":6,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":35839376,"line":18706,"name":"count","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":1,"id":34228480,"line":8515,"name":"infix:<==>","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":35049888,"line":3847,"name":"","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":3,"id":35147168,"line":3827,"name":"new","allocations":[{"count":3,"id":29975016,"type":"Scalar"},{"count":1,"id":53654184,"type":"<anon|159066640>"}],"inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":1,"id":35446304,"line":12399,"name":"new","allocations":[{"count":1,"id":53654904,"type":"Seq"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]}]}]},{"exclusive_time":8,"id":35451472,"line":12474,"name":"sink","inclusive_time":254345484,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":8,"id":35446912,"line":12407,"name":"iterator","inclusive_time":9,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":1,"id":38361936,"line":2635,"name":"type_check","inclusive_time":1,"file":"gen/moar/m-Metamodel.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":213,"id":35052016,"line":3921,"name":"sink-all","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":6,"id":29975016,"type":"Scalar"}],"inclusive_time":254345466,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":34255840,"line":8705,"name":"prefix:<!>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":8,"id":35163280,"line":6478,"name":"phasers","allocations":[{"count":2,"id":29975016,"type":"Scalar","jit":2}],"inclusive_time":8,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2,"callees":[{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]},{"exclusive_time":3,"id":34151264,"line":7763,"name":"prefix:<+>","inclusive_time":13,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":3,"id":35541456,"line":13911,"name":"Numeric","inclusive_time":10,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":6,"id":35543584,"line":13932,"name":"elems","inclusive_time":6,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]}]}]},{"exclusive_time":5,"id":34824016,"line":929,"name":"Bool","inclusive_time":11,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":38067136,"line":3008,"name":"","allocations":[{"count":1,"id":29974584,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":5,"id":35540544,"line":13904,"name":"Bool","inclusive_time":6,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":34254320,"line":8699,"name":"prefix:<so>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":1,"id":35552400,"line":14088,"name":"sink","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":12,"entries":12},{"exclusive_time":32,"id":35498896,"line":13171,"name":"pull-one","allocations":[{"count":10,"id":29974536,"type":"IntAttrRef","jit":9}],"inclusive_time":32,"file":"gen/moar/m-CORE.setting","jit_entries":10,"entries":11},{"exclusive_time":3506,"id":83978656,"line":75,"name":"","allocations":[{"count":20,"id":19706296,"type":"BOOTCode"},{"count":10,"id":59274784,"type":"array[uint8]"},{"count":10,"id":29974896,"type":"Array"},{"count":20,"id":29975016,"type":"Scalar"}],"inclusive_time":254345181,"file":"hibbified-249.p6","entries":10,"callees":[{"exclusive_time":373,"id":83625712,"line":98,"name":"","inclusive_time":5670,"file":"hibbified-249.p6","entries":10,"callees":[{"exclusive_time":241,"id":36394480,"line":26296,"name":"from-posix","allocations":[{"count":10,"id":29975016,"type":"Scalar"},{"count":10,"id":53655072,"type":"Instant"}],"inclusive_time":5297,"file":"gen/moar/m-CORE.setting","entries":10,"callees":[{"exclusive_time":364,"id":34985744,"line":3328,"name":"tai-from-posix","allocations":[{"count":20,"id":29975016,"type":"Scalar"},{"count":20,"id":29974992,"type":"IntLexRef"}],"inclusive_time":987,"file":"gen/moar/m-CORE.setting","entries":10,"callees":[{"exclusive_time":34,"id":35250224,"line":8939,"name":"floor","allocations":[{"count":10,"id":29974944,"type":"Int"}],"inclusive_time":34,"file":"gen/moar/m-CORE.setting","entries":10},{"exclusive_time":13,"id":34202336,"line":8003,"name":"infix:«>»","inclusive_time":56,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":40,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":41,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":2,"id":34230608,"line":8540,"name":"infix:«>»","inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":162,"id":34230608,"line":8540,"name":"infix:«>»","inclusive_time":162,"file":"gen/moar/m-CORE.setting","jit_entries":234,"entries":259},{"exclusive_time":25,"id":34184096,"line":7908,"name":"infix:<+>","inclusive_time":235,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":134,"id":38060448,"line":2048,"name":"","allocations":[{"count":4,"id":19706296,"type":"BOOTCode"},{"count":4,"id":19707232,"type":"NQPArray"},{"count":2,"id":19706248,"type":"BOOTHash"}],"inclusive_time":135,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":2,"callees":[{"exclusive_time":0,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":2,"entries":2}]},{"exclusive_time":15,"id":34211760,"line":8173,"name":"infix:<+>","inclusive_time":74,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":1,"id":35242320,"line":8826,"name":"Bridge","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":2},{"exclusive_time":1,"id":35224688,"line":8273,"name":"Bridge","allocations":[{"count":2,"id":29974920,"type":"Num"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":2},{"exclusive_time":14,"id":34184096,"line":7908,"name":"infix:<+>","inclusive_time":55,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":39,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":39,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":34277728,"line":9115,"name":"infix:<+>","allocations":[{"count":1,"id":29974920,"type":"Num"}],"inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":0,"id":34277728,"line":9115,"name":"infix:<+>","allocations":[{"count":1,"id":29974920,"type":"Num"}],"inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":102,"id":34211760,"line":8173,"name":"infix:<+>","inclusive_time":133,"file":"gen/moar/m-CORE.setting","entries":28,"callees":[{"exclusive_time":3,"id":35242320,"line":8826,"name":"Bridge","inclusive_time":3,"file":"gen/moar/m-CORE.setting","jit_entries":26,"entries":28},{"exclusive_time":12,"id":35224688,"line":8273,"name":"Bridge","allocations":[{"count":28,"id":29974920,"type":"Num","jit":25}],"inclusive_time":12,"file":"gen/moar/m-CORE.setting","jit_entries":25,"entries":28},{"exclusive_time":15,"id":34277728,"line":9115,"name":"infix:<+>","allocations":[{"count":28,"id":29974920,"type":"Num","jit":3}],"inclusive_time":15,"file":"gen/moar/m-CORE.setting","jit_entries":3,"entries":28}]}]},{"exclusive_time":597,"id":35244752,"line":8849,"name":"Rat","allocations":[{"count":10,"id":19706296,"type":"BOOTCode"},{"count":80,"id":29975016,"type":"Scalar"},{"count":10,"id":29974944,"type":"Int"}],"inclusive_time":4053,"file":"gen/moar/m-CORE.setting","entries":10,"callees":[{"exclusive_time":1,"id":35552400,"line":14088,"name":"sink","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":20,"entries":20},{"exclusive_time":5,"id":34283504,"line":9200,"name":"infix:<==>","inclusive_time":5,"file":"gen/moar/m-CORE.setting","jit_entries":18,"entries":20},{"exclusive_time":3,"id":34818544,"line":856,"name":"sink","inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":10},{"exclusive_time":21,"id":34200512,"line":7995,"name":"infix:«<»","inclusive_time":118,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":41,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":42,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":4,"id":34214192,"line":8189,"name":"infix:«<»","inclusive_time":54,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":35242320,"line":8826,"name":"Bridge","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":35224688,"line":8273,"name":"Bridge","allocations":[{"count":1,"id":29974920,"type":"Num"}],"inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":16,"id":34200512,"line":7995,"name":"infix:«<»","inclusive_time":47,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":28,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":30,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":1,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]},{"exclusive_time":0,"id":34284416,"line":9211,"name":"infix:«<»","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]}]}]},{"exclusive_time":2,"id":34228480,"line":8515,"name":"infix:<==>","inclusive_time":2,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":10},{"exclusive_time":12,"id":35250224,"line":8939,"name":"floor","allocations":[{"count":10,"id":29974944,"type":"Int"}],"inclusive_time":12,"file":"gen/moar/m-CORE.setting","entries":10},{"exclusive_time":24,"id":34185008,"line":7912,"name":"infix:<->","inclusive_time":236,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":104,"id":38060448,"line":2048,"name":"","allocations":[{"count":4,"id":19706296,"spesh":4,"type":"BOOTCode"},{"count":4,"id":19707232,"spesh":4,"type":"NQPArray"},{"count":2,"id":19706248,"spesh":2,"type":"BOOTHash"}],"inclusive_time":106,"spesh_entries":2,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":2,"callees":[{"exclusive_time":1,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":2,"entries":2}]},{"exclusive_time":25,"id":34212064,"line":8175,"name":"infix:<->","inclusive_time":105,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":0,"id":35242320,"line":8826,"name":"Bridge","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":2},{"exclusive_time":0,"id":35224688,"line":8273,"name":"Bridge","allocations":[{"count":1,"id":29974920,"type":"Num"}],"inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":14,"id":34185008,"line":7912,"name":"infix:<->","inclusive_time":50,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":33,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"spesh":2,"type":"BOOTCode"},{"count":2,"id":19707232,"spesh":2,"type":"NQPArray"},{"count":1,"id":19706248,"spesh":1,"type":"BOOTHash"}],"inclusive_time":34,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":34278336,"line":9122,"name":"infix:<->","allocations":[{"count":1,"id":29974920,"type":"Num"}],"inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":20,"id":35846976,"line":18832,"name":"Bridge","inclusive_time":27,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":5,"id":35845760,"line":18807,"name":"Num","allocations":[{"count":1,"id":29974920,"type":"Num"}],"inclusive_time":7,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":34228480,"line":8515,"name":"infix:<==>","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":0,"id":34278336,"line":9122,"name":"infix:<->","allocations":[{"count":1,"id":29974920,"type":"Num"}],"inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":22,"id":34188048,"line":7926,"name":"infix:</>","inclusive_time":342,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":46,"id":38060448,"line":2048,"name":"","allocations":[{"count":4,"id":19706296,"spesh":4,"type":"BOOTCode"},{"count":4,"id":19707232,"spesh":4,"type":"NQPArray"},{"count":2,"id":19706248,"spesh":2,"type":"BOOTHash"}],"inclusive_time":48,"spesh_entries":2,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":2,"callees":[{"exclusive_time":1,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":2,"entries":2}]},{"exclusive_time":63,"id":34462256,"line":19154,"name":"infix:</>","inclusive_time":271,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":56,"id":34454352,"line":18996,"name":"DIVIDE_NUMBERS","allocations":[{"count":6,"id":29975016,"type":"Scalar"},{"count":2,"id":52430760,"type":"Rat"}],"inclusive_time":208,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":1,"id":34228480,"line":8515,"name":"infix:<==>","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":2},{"exclusive_time":16,"id":34193216,"line":7954,"name":"infix:<gcd>","inclusive_time":59,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":26,"id":38060448,"line":2048,"name":"","allocations":[{"count":4,"id":19706296,"spesh":4,"type":"BOOTCode"},{"count":4,"id":19707232,"spesh":4,"type":"NQPArray"},{"count":2,"id":19706248,"spesh":2,"type":"BOOTHash"}],"inclusive_time":28,"spesh_entries":2,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":2,"callees":[{"exclusive_time":1,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":2}]},{"exclusive_time":14,"id":34227264,"line":8500,"name":"infix:<gcd>","allocations":[{"count":2,"id":29974944,"type":"Int"}],"inclusive_time":14,"file":"gen/moar/m-CORE.setting","entries":2}]},{"exclusive_time":17,"id":34189568,"line":7933,"name":"infix:<div>","inclusive_time":37,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":12,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"spesh":2,"type":"BOOTCode"},{"count":2,"id":19707232,"spesh":2,"type":"NQPArray"},{"count":1,"id":19706248,"spesh":1,"type":"BOOTHash"}],"inclusive_time":12,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":7,"id":34224832,"line":8460,"name":"infix:<div>","allocations":[{"count":1,"id":29974944,"type":"Int"}],"inclusive_time":7,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]},{"exclusive_time":11,"id":34224832,"line":8460,"name":"infix:<div>","allocations":[{"count":3,"id":29974944,"type":"Int"}],"inclusive_time":11,"file":"gen/moar/m-CORE.setting","entries":3,"callees":[{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":3,"entries":3}]},{"exclusive_time":5,"id":34200512,"line":7995,"name":"infix:«<»","inclusive_time":37,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":30,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":30,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":1,"id":34229392,"line":8526,"name":"infix:«<»","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2},{"exclusive_time":2,"id":34229392,"line":8526,"name":"infix:«<»","inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":3},{"exclusive_time":0,"id":34818544,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":2}]}]}]},{"exclusive_time":13,"id":34152480,"line":7770,"name":"abs","inclusive_time":33,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":18,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":19,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":34277120,"line":9108,"name":"abs","allocations":[{"count":1,"id":29974920,"type":"Num"}],"inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":16,"id":34202336,"line":8003,"name":"infix:«>»","inclusive_time":49,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":30,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":31,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]},{"exclusive_time":0,"id":34285632,"line":9225,"name":"infix:«>»","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":364,"id":35245360,"line":8869,"name":"","allocations":[{"count":118,"id":29975016,"spesh":32,"type":"Scalar"},{"count":54,"id":29974944,"spesh":15,"type":"Int"}],"inclusive_time":748,"spesh_entries":15,"file":"gen/moar/m-CORE.setting","entries":54,"callees":[{"exclusive_time":23,"id":34188048,"line":7926,"name":"infix:</>","inclusive_time":49,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":22,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"spesh":2,"type":"BOOTCode"},{"count":2,"id":19707232,"spesh":2,"type":"NQPArray"},{"count":1,"id":19706248,"spesh":1,"type":"BOOTHash"}],"inclusive_time":22,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":3,"id":34279552,"line":9136,"name":"infix:</>","allocations":[{"count":1,"id":29974920,"type":"Num"}],"inclusive_time":4,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]},{"exclusive_time":15,"id":34186832,"line":7920,"name":"infix:<*>","inclusive_time":50,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":31,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"spesh":2,"type":"BOOTCode"},{"count":2,"id":19707232,"spesh":2,"type":"NQPArray"},{"count":1,"id":19706248,"spesh":1,"type":"BOOTHash"}],"inclusive_time":32,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":1,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]},{"exclusive_time":2,"id":34224224,"line":8453,"name":"infix:<*>","allocations":[{"count":1,"id":29974944,"type":"Int"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":4,"id":34184096,"line":7908,"name":"infix:<+>","inclusive_time":49,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":41,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"spesh":2,"type":"BOOTCode"},{"count":2,"id":19707232,"spesh":2,"type":"NQPArray"},{"count":1,"id":19706248,"spesh":1,"type":"BOOTHash"}],"inclusive_time":42,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]},{"exclusive_time":2,"id":34223008,"line":8439,"name":"infix:<+>","allocations":[{"count":1,"id":29974944,"type":"Int"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":68,"id":34224224,"line":8453,"name":"infix:<*>","allocations":[{"count":107,"id":29974944,"spesh":30,"type":"Int","jit":60}],"inclusive_time":68,"spesh_entries":30,"file":"gen/moar/m-CORE.setting","inlined_entries":30,"jit_entries":60,"entries":107},{"exclusive_time":72,"id":34223008,"line":8439,"name":"infix:<+>","allocations":[{"count":107,"id":29974944,"spesh":30,"type":"Int","jit":70}],"inclusive_time":72,"spesh_entries":30,"file":"gen/moar/m-CORE.setting","inlined_entries":30,"jit_entries":70,"entries":107},{"exclusive_time":88,"id":34279552,"line":9136,"name":"infix:</>","allocations":[{"count":53,"id":29974920,"spesh":15,"type":"Num","jit":7}],"inclusive_time":92,"spesh_entries":15,"file":"gen/moar/m-CORE.setting","jit_entries":7,"entries":53,"callees":[{"exclusive_time":4,"id":35552400,"line":14088,"name":"sink","inclusive_time":4,"file":"gen/moar/m-CORE.setting","jit_entries":53,"entries":53}]}]},{"exclusive_time":106,"id":34462256,"line":19154,"name":"infix:</>","inclusive_time":1435,"file":"gen/moar/m-CORE.setting","jit_entries":43,"entries":72,"callees":[{"exclusive_time":500,"id":34454352,"line":18996,"name":"DIVIDE_NUMBERS","allocations":[{"count":216,"id":29975016,"type":"Scalar","jit":129},{"count":72,"id":52430760,"type":"Rat","jit":43}],"inclusive_time":1328,"file":"gen/moar/m-CORE.setting","jit_entries":43,"entries":72,"callees":[{"exclusive_time":45,"id":34228480,"line":8515,"name":"infix:<==>","inclusive_time":45,"file":"gen/moar/m-CORE.setting","inlined_entries":43,"jit_entries":72,"entries":72},{"exclusive_time":304,"id":34227264,"line":8500,"name":"infix:<gcd>","allocations":[{"count":72,"id":29974944,"type":"Int","jit":52}],"inclusive_time":304,"file":"gen/moar/m-CORE.setting","inlined_entries":43,"jit_entries":52,"entries":72},{"exclusive_time":393,"id":34224832,"line":8460,"name":"infix:<div>","allocations":[{"count":144,"id":29974944,"spesh":86,"type":"Int","jit":36}],"inclusive_time":404,"spesh_entries":86,"file":"gen/moar/m-CORE.setting","jit_entries":36,"entries":144,"callees":[{"exclusive_time":11,"id":35552400,"line":14088,"name":"sink","inclusive_time":11,"file":"gen/moar/m-CORE.setting","jit_entries":144,"entries":144}]},{"exclusive_time":60,"id":34229392,"line":8526,"name":"infix:«<»","inclusive_time":60,"file":"gen/moar/m-CORE.setting","inlined_entries":86,"jit_entries":136,"entries":144},{"exclusive_time":5,"id":35552400,"line":14088,"name":"sink","inclusive_time":5,"file":"gen/moar/m-CORE.setting","jit_entries":72,"entries":72},{"exclusive_time":7,"id":34818544,"line":856,"name":"sink","inclusive_time":7,"file":"gen/moar/m-CORE.setting","jit_entries":72,"entries":72}]}]},{"exclusive_time":179,"id":34212064,"line":8175,"name":"infix:<->","inclusive_time":369,"file":"gen/moar/m-CORE.setting","jit_entries":36,"entries":72,"callees":[{"exclusive_time":5,"id":35242320,"line":8826,"name":"Bridge","inclusive_time":5,"file":"gen/moar/m-CORE.setting","jit_entries":68,"entries":72},{"exclusive_time":54,"id":35846976,"line":18832,"name":"Bridge","inclusive_time":153,"file":"gen/moar/m-CORE.setting","jit_entries":53,"entries":63,"callees":[{"exclusive_time":53,"id":35845760,"line":18807,"name":"Num","allocations":[{"count":63,"id":29974920,"type":"Num","jit":59}],"inclusive_time":98,"file":"gen/moar/m-CORE.setting","jit_entries":59,"entries":63,"callees":[{"exclusive_time":45,"id":34228480,"line":8515,"name":"infix:<==>","inclusive_time":45,"file":"gen/moar/m-CORE.setting","inlined_entries":59,"jit_entries":62,"entries":63}]}]},{"exclusive_time":26,"id":34278336,"line":9122,"name":"infix:<->","allocations":[{"count":72,"id":29974920,"type":"Num","jit":44}],"inclusive_time":26,"file":"gen/moar/m-CORE.setting","inlined_entries":36,"jit_entries":44,"entries":72},{"exclusive_time":3,"id":35224688,"line":8273,"name":"Bridge","allocations":[{"count":9,"id":29974920,"type":"Num","jit":9}],"inclusive_time":3,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9}]},{"exclusive_time":21,"id":34277120,"line":9108,"name":"abs","allocations":[{"count":63,"id":29974920,"spesh":38,"type":"Num"}],"inclusive_time":21,"spesh_entries":38,"file":"gen/moar/m-CORE.setting","entries":63},{"exclusive_time":21,"id":34285632,"line":9225,"name":"infix:«>»","inclusive_time":21,"file":"gen/moar/m-CORE.setting","jit_entries":32,"entries":63},{"exclusive_time":12,"id":34224224,"line":8453,"name":"infix:<*>","allocations":[{"count":10,"id":29974944,"type":"Int","jit":8}],"inclusive_time":12,"file":"gen/moar/m-CORE.setting","jit_entries":8,"entries":10},{"exclusive_time":37,"id":34214192,"line":8189,"name":"infix:«<»","inclusive_time":43,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":1,"id":35242320,"line":8826,"name":"Bridge","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9},{"exclusive_time":3,"id":35224688,"line":8273,"name":"Bridge","allocations":[{"count":9,"id":29974920,"type":"Num","jit":9}],"inclusive_time":3,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9},{"exclusive_time":2,"id":34284416,"line":9211,"name":"infix:«<»","inclusive_time":2,"file":"gen/moar/m-CORE.setting","jit_entries":8,"entries":9}]}]},{"exclusive_time":14,"id":36393872,"line":26292,"name":"BUILD","allocations":[{"count":10,"id":29975016,"type":"Scalar"}],"inclusive_time":14,"file":"gen/moar/m-CORE.setting","entries":10}]}]},{"exclusive_time":19,"id":83536384,"line":98,"name":"","inclusive_time":3881,"file":"hibbified-249.p6","entries":10,"callees":[{"exclusive_time":55,"id":36394480,"line":26296,"name":"from-posix","allocations":[{"count":10,"id":29975016,"type":"Scalar"},{"count":10,"id":53655072,"type":"Instant"}],"inclusive_time":3862,"file":"gen/moar/m-CORE.setting","entries":10,"callees":[{"exclusive_time":315,"id":34985744,"line":3328,"name":"tai-from-posix","allocations":[{"count":20,"id":29975016,"type":"Scalar"},{"count":20,"id":29974992,"type":"IntLexRef"}],"inclusive_time":622,"file":"gen/moar/m-CORE.setting","entries":10,"callees":[{"exclusive_time":12,"id":35250224,"line":8939,"name":"floor","allocations":[{"count":10,"id":29974944,"type":"Int"}],"inclusive_time":12,"file":"gen/moar/m-CORE.setting","entries":10},{"exclusive_time":165,"id":34230608,"line":8540,"name":"infix:«>»","inclusive_time":165,"file":"gen/moar/m-CORE.setting","jit_entries":234,"entries":260},{"exclusive_time":96,"id":34211760,"line":8173,"name":"infix:<+>","inclusive_time":127,"file":"gen/moar/m-CORE.setting","entries":30,"callees":[{"exclusive_time":2,"id":35242320,"line":8826,"name":"Bridge","inclusive_time":2,"file":"gen/moar/m-CORE.setting","jit_entries":26,"entries":30},{"exclusive_time":11,"id":35224688,"line":8273,"name":"Bridge","allocations":[{"count":30,"id":29974920,"type":"Num","jit":27}],"inclusive_time":11,"file":"gen/moar/m-CORE.setting","jit_entries":27,"entries":30},{"exclusive_time":17,"id":34277728,"line":9115,"name":"infix:<+>","allocations":[{"count":30,"id":29974920,"type":"Num","jit":3}],"inclusive_time":17,"file":"gen/moar/m-CORE.setting","jit_entries":3,"entries":30}]}]},{"exclusive_time":508,"id":35244752,"line":8849,"name":"Rat","allocations":[{"count":10,"id":19706296,"type":"BOOTCode"},{"count":80,"id":29975016,"type":"Scalar"},{"count":10,"id":29974944,"type":"Int"}],"inclusive_time":3172,"file":"gen/moar/m-CORE.setting","entries":10,"callees":[{"exclusive_time":1,"id":35552400,"line":14088,"name":"sink","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":20,"entries":20},{"exclusive_time":3,"id":34283504,"line":9200,"name":"infix:<==>","inclusive_time":3,"file":"gen/moar/m-CORE.setting","jit_entries":18,"entries":20},{"exclusive_time":3,"id":34818544,"line":856,"name":"sink","inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":10},{"exclusive_time":35,"id":34214192,"line":8189,"name":"infix:«<»","inclusive_time":42,"file":"gen/moar/m-CORE.setting","entries":10,"callees":[{"exclusive_time":0,"id":35242320,"line":8826,"name":"Bridge","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":10},{"exclusive_time":3,"id":35224688,"line":8273,"name":"Bridge","allocations":[{"count":10,"id":29974920,"type":"Num","jit":9}],"inclusive_time":3,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":10},{"exclusive_time":2,"id":34284416,"line":9211,"name":"infix:«<»","inclusive_time":2,"file":"gen/moar/m-CORE.setting","jit_entries":8,"entries":10}]},{"exclusive_time":1,"id":34228480,"line":8515,"name":"infix:<==>","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":10,"entries":10},{"exclusive_time":12,"id":35250224,"line":8939,"name":"floor","allocations":[{"count":10,"id":29974944,"type":"Int"}],"inclusive_time":12,"file":"gen/moar/m-CORE.setting","entries":10},{"exclusive_time":183,"id":34212064,"line":8175,"name":"infix:<->","inclusive_time":385,"file":"gen/moar/m-CORE.setting","jit_entries":44,"entries":79,"callees":[{"exclusive_time":6,"id":35242320,"line":8826,"name":"Bridge","inclusive_time":6,"file":"gen/moar/m-CORE.setting","jit_entries":74,"entries":79},{"exclusive_time":4,"id":35224688,"line":8273,"name":"Bridge","allocations":[{"count":10,"id":29974920,"type":"Num","jit":9}],"inclusive_time":4,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":10},{"exclusive_time":26,"id":34278336,"line":9122,"name":"infix:<->","allocations":[{"count":79,"id":29974920,"type":"Num","jit":52}],"inclusive_time":26,"file":"gen/moar/m-CORE.setting","inlined_entries":44,"jit_entries":52,"entries":79},{"exclusive_time":59,"id":35846976,"line":18832,"name":"Bridge","inclusive_time":164,"file":"gen/moar/m-CORE.setting","jit_entries":58,"entries":69,"callees":[{"exclusive_time":56,"id":35845760,"line":18807,"name":"Num","allocations":[{"count":69,"id":29974920,"type":"Num","jit":65}],"inclusive_time":105,"file":"gen/moar/m-CORE.setting","jit_entries":65,"entries":69,"callees":[{"exclusive_time":48,"id":34228480,"line":8515,"name":"infix:<==>","inclusive_time":48,"file":"gen/moar/m-CORE.setting","inlined_entries":65,"jit_entries":69,"entries":69}]}]}]},{"exclusive_time":108,"id":34462256,"line":19154,"name":"infix:</>","inclusive_time":1548,"file":"gen/moar/m-CORE.setting","jit_entries":49,"entries":79,"callees":[{"exclusive_time":538,"id":34454352,"line":18996,"name":"DIVIDE_NUMBERS","allocations":[{"count":237,"id":29975016,"type":"Scalar","jit":141},{"count":79,"id":52430760,"type":"Rat","jit":47}],"inclusive_time":1440,"file":"gen/moar/m-CORE.setting","jit_entries":47,"entries":79,"callees":[{"exclusive_time":48,"id":34228480,"line":8515,"name":"infix:<==>","inclusive_time":48,"file":"gen/moar/m-CORE.setting","inlined_entries":47,"jit_entries":79,"entries":79},{"exclusive_time":331,"id":34227264,"line":8500,"name":"infix:<gcd>","allocations":[{"count":79,"id":29974944,"type":"Int","jit":56}],"inclusive_time":331,"file":"gen/moar/m-CORE.setting","inlined_entries":47,"jit_entries":56,"entries":79},{"exclusive_time":432,"id":34224832,"line":8460,"name":"infix:<div>","allocations":[{"count":158,"id":29974944,"spesh":94,"type":"Int","jit":38}],"inclusive_time":445,"spesh_entries":94,"file":"gen/moar/m-CORE.setting","jit_entries":38,"entries":158,"callees":[{"exclusive_time":12,"id":35552400,"line":14088,"name":"sink","inclusive_time":12,"file":"gen/moar/m-CORE.setting","jit_entries":158,"entries":158}]},{"exclusive_time":63,"id":34229392,"line":8526,"name":"infix:«<»","inclusive_time":63,"file":"gen/moar/m-CORE.setting","inlined_entries":94,"jit_entries":155,"entries":158},{"exclusive_time":6,"id":35552400,"line":14088,"name":"sink","inclusive_time":6,"file":"gen/moar/m-CORE.setting","jit_entries":79,"entries":79},{"exclusive_time":6,"id":34818544,"line":856,"name":"sink","inclusive_time":6,"file":"gen/moar/m-CORE.setting","jit_entries":79,"entries":79}]}]},{"exclusive_time":24,"id":34277120,"line":9108,"name":"abs","allocations":[{"count":69,"id":29974920,"spesh":42,"type":"Num"}],"inclusive_time":24,"spesh_entries":42,"file":"gen/moar/m-CORE.setting","entries":69},{"exclusive_time":24,"id":34285632,"line":9225,"name":"infix:«>»","inclusive_time":24,"file":"gen/moar/m-CORE.setting","jit_entries":36,"entries":69},{"exclusive_time":349,"id":35245360,"line":8869,"name":"","allocations":[{"count":128,"id":29975016,"spesh":43,"type":"Scalar"},{"count":59,"id":29974944,"spesh":20,"type":"Int"}],"inclusive_time":602,"spesh_entries":20,"file":"gen/moar/m-CORE.setting","entries":59,"callees":[{"exclusive_time":100,"id":34279552,"line":9136,"name":"infix:</>","allocations":[{"count":59,"id":29974920,"spesh":20,"type":"Num","jit":4}],"inclusive_time":104,"spesh_entries":20,"file":"gen/moar/m-CORE.setting","jit_entries":4,"entries":59,"callees":[{"exclusive_time":4,"id":35552400,"line":14088,"name":"sink","inclusive_time":4,"file":"gen/moar/m-CORE.setting","jit_entries":59,"entries":59}]},{"exclusive_time":73,"id":34224224,"line":8453,"name":"infix:<*>","allocations":[{"count":118,"id":29974944,"spesh":40,"type":"Int","jit":60}],"inclusive_time":73,"spesh_entries":40,"file":"gen/moar/m-CORE.setting","inlined_entries":40,"jit_entries":60,"entries":118},{"exclusive_time":75,"id":34223008,"line":8439,"name":"infix:<+>","allocations":[{"count":118,"id":29974944,"spesh":40,"type":"Int","jit":72}],"inclusive_time":75,"spesh_entries":40,"file":"gen/moar/m-CORE.setting","inlined_entries":40,"jit_entries":72,"entries":118}]},{"exclusive_time":12,"id":34224224,"line":8453,"name":"infix:<*>","allocations":[{"count":10,"id":29974944,"type":"Int","jit":8}],"inclusive_time":12,"file":"gen/moar/m-CORE.setting","jit_entries":8,"entries":10}]},{"exclusive_time":12,"id":36393872,"line":26292,"name":"BUILD","allocations":[{"count":10,"id":29975016,"type":"Scalar"}],"inclusive_time":12,"file":"gen/moar/m-CORE.setting","entries":10}]}]},{"exclusive_time":17,"id":82555008,"line":99,"name":"","inclusive_time":3768,"file":"hibbified-249.p6","entries":10,"callees":[{"exclusive_time":52,"id":36394480,"line":26296,"name":"from-posix","allocations":[{"count":10,"id":29975016,"type":"Scalar"},{"count":10,"id":53655072,"type":"Instant"}],"inclusive_time":3751,"file":"gen/moar/m-CORE.setting","entries":10,"callees":[{"exclusive_time":311,"id":34985744,"line":3328,"name":"tai-from-posix","allocations":[{"count":20,"id":29975016,"type":"Scalar"},{"count":20,"id":29974992,"type":"IntLexRef"}],"inclusive_time":610,"file":"gen/moar/m-CORE.setting","entries":10,"callees":[{"exclusive_time":12,"id":35250224,"line":8939,"name":"floor","allocations":[{"count":10,"id":29974944,"type":"Int"}],"inclusive_time":12,"file":"gen/moar/m-CORE.setting","entries":10},{"exclusive_time":163,"id":34230608,"line":8540,"name":"infix:«>»","inclusive_time":163,"file":"gen/moar/m-CORE.setting","jit_entries":234,"entries":260},{"exclusive_time":94,"id":34211760,"line":8173,"name":"infix:<+>","inclusive_time":122,"file":"gen/moar/m-CORE.setting","entries":30,"callees":[{"exclusive_time":2,"id":35242320,"line":8826,"name":"Bridge","inclusive_time":2,"file":"gen/moar/m-CORE.setting","jit_entries":26,"entries":30},{"exclusive_time":10,"id":35224688,"line":8273,"name":"Bridge","allocations":[{"count":30,"id":29974920,"type":"Num","jit":27}],"inclusive_time":10,"file":"gen/moar/m-CORE.setting","jit_entries":27,"entries":30},{"exclusive_time":15,"id":34277728,"line":9115,"name":"infix:<+>","allocations":[{"count":30,"id":29974920,"type":"Num","jit":6}],"inclusive_time":15,"file":"gen/moar/m-CORE.setting","jit_entries":6,"entries":30}]}]},{"exclusive_time":523,"id":35244752,"line":8849,"name":"Rat","allocations":[{"count":10,"id":19706296,"type":"BOOTCode"},{"count":80,"id":29975016,"type":"Scalar"},{"count":10,"id":29974944,"type":"Int"}],"inclusive_time":3076,"file":"gen/moar/m-CORE.setting","entries":10,"callees":[{"exclusive_time":1,"id":35552400,"line":14088,"name":"sink","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":20,"entries":20},{"exclusive_time":3,"id":34283504,"line":9200,"name":"infix:<==>","inclusive_time":3,"file":"gen/moar/m-CORE.setting","jit_entries":18,"entries":20},{"exclusive_time":3,"id":34818544,"line":856,"name":"sink","inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":10},{"exclusive_time":34,"id":34214192,"line":8189,"name":"infix:«<»","inclusive_time":41,"file":"gen/moar/m-CORE.setting","entries":10,"callees":[{"exclusive_time":0,"id":35242320,"line":8826,"name":"Bridge","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":10},{"exclusive_time":3,"id":35224688,"line":8273,"name":"Bridge","allocations":[{"count":10,"id":29974920,"type":"Num","jit":9}],"inclusive_time":3,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":10},{"exclusive_time":2,"id":34284416,"line":9211,"name":"infix:«<»","inclusive_time":2,"file":"gen/moar/m-CORE.setting","jit_entries":8,"entries":10}]},{"exclusive_time":1,"id":34228480,"line":8515,"name":"infix:<==>","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":10,"entries":10},{"exclusive_time":11,"id":35250224,"line":8939,"name":"floor","allocations":[{"count":10,"id":29974944,"type":"Int"}],"inclusive_time":11,"file":"gen/moar/m-CORE.setting","entries":10},{"exclusive_time":169,"id":34212064,"line":8175,"name":"infix:<->","inclusive_time":360,"file":"gen/moar/m-CORE.setting","jit_entries":48,"entries":79,"callees":[{"exclusive_time":6,"id":35242320,"line":8826,"name":"Bridge","inclusive_time":6,"file":"gen/moar/m-CORE.setting","jit_entries":75,"entries":79},{"exclusive_time":3,"id":35224688,"line":8273,"name":"Bridge","allocations":[{"count":10,"id":29974920,"type":"Num","jit":9}],"inclusive_time":3,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":10},{"exclusive_time":23,"id":34278336,"line":9122,"name":"infix:<->","allocations":[{"count":79,"id":29974920,"type":"Num","jit":59}],"inclusive_time":23,"file":"gen/moar/m-CORE.setting","inlined_entries":48,"jit_entries":59,"entries":79},{"exclusive_time":55,"id":35846976,"line":18832,"name":"Bridge","inclusive_time":158,"file":"gen/moar/m-CORE.setting","jit_entries":59,"entries":69,"callees":[{"exclusive_time":53,"id":35845760,"line":18807,"name":"Num","allocations":[{"count":69,"id":29974920,"type":"Num","jit":66}],"inclusive_time":102,"file":"gen/moar/m-CORE.setting","jit_entries":66,"entries":69,"callees":[{"exclusive_time":49,"id":34228480,"line":8515,"name":"infix:<==>","inclusive_time":49,"file":"gen/moar/m-CORE.setting","inlined_entries":66,"jit_entries":69,"entries":69}]}]}]},{"exclusive_time":105,"id":34462256,"line":19154,"name":"infix:</>","inclusive_time":1477,"file":"gen/moar/m-CORE.setting","jit_entries":58,"entries":79,"callees":[{"exclusive_time":511,"id":34454352,"line":18996,"name":"DIVIDE_NUMBERS","allocations":[{"count":237,"id":29975016,"type":"Scalar","jit":147},{"count":79,"id":52430760,"type":"Rat","jit":49}],"inclusive_time":1372,"file":"gen/moar/m-CORE.setting","jit_entries":49,"entries":79,"callees":[{"exclusive_time":47,"id":34228480,"line":8515,"name":"infix:<==>","inclusive_time":47,"file":"gen/moar/m-CORE.setting","inlined_entries":49,"jit_entries":79,"entries":79},{"exclusive_time":298,"id":34227264,"line":8500,"name":"infix:<gcd>","allocations":[{"count":79,"id":29974944,"type":"Int","jit":58}],"inclusive_time":298,"file":"gen/moar/m-CORE.setting","inlined_entries":49,"jit_entries":58,"entries":79},{"exclusive_time":427,"id":34224832,"line":8460,"name":"infix:<div>","allocations":[{"count":158,"id":29974944,"spesh":98,"type":"Int","jit":36}],"inclusive_time":440,"spesh_entries":98,"file":"gen/moar/m-CORE.setting","jit_entries":36,"entries":158,"callees":[{"exclusive_time":12,"id":35552400,"line":14088,"name":"sink","inclusive_time":12,"file":"gen/moar/m-CORE.setting","jit_entries":158,"entries":158}]},{"exclusive_time":61,"id":34229392,"line":8526,"name":"infix:«<»","inclusive_time":61,"file":"gen/moar/m-CORE.setting","inlined_entries":98,"jit_entries":158,"entries":158},{"exclusive_time":6,"id":35552400,"line":14088,"name":"sink","inclusive_time":6,"file":"gen/moar/m-CORE.setting","jit_entries":79,"entries":79},{"exclusive_time":6,"id":34818544,"line":856,"name":"sink","inclusive_time":6,"file":"gen/moar/m-CORE.setting","jit_entries":79,"entries":79}]}]},{"exclusive_time":22,"id":34277120,"line":9108,"name":"abs","allocations":[{"count":69,"id":29974920,"spesh":44,"type":"Num"}],"inclusive_time":22,"spesh_entries":44,"file":"gen/moar/m-CORE.setting","entries":69},{"exclusive_time":23,"id":34285632,"line":9225,"name":"infix:«>»","inclusive_time":23,"file":"gen/moar/m-CORE.setting","jit_entries":38,"entries":69},{"exclusive_time":344,"id":35245360,"line":8869,"name":"","allocations":[{"count":128,"id":29975016,"spesh":45,"type":"Scalar"},{"count":59,"id":29974944,"spesh":21,"type":"Int"}],"inclusive_time":591,"spesh_entries":21,"file":"gen/moar/m-CORE.setting","entries":59,"callees":[{"exclusive_time":95,"id":34279552,"line":9136,"name":"infix:</>","allocations":[{"count":59,"id":29974920,"spesh":21,"type":"Num","jit":7}],"inclusive_time":100,"spesh_entries":21,"file":"gen/moar/m-CORE.setting","jit_entries":7,"entries":59,"callees":[{"exclusive_time":4,"id":35552400,"line":14088,"name":"sink","inclusive_time":4,"file":"gen/moar/m-CORE.setting","jit_entries":59,"entries":59}]},{"exclusive_time":72,"id":34224224,"line":8453,"name":"infix:<*>","allocations":[{"count":118,"id":29974944,"spesh":42,"type":"Int","jit":60}],"inclusive_time":72,"spesh_entries":42,"file":"gen/moar/m-CORE.setting","inlined_entries":42,"jit_entries":60,"entries":118},{"exclusive_time":74,"id":34223008,"line":8439,"name":"infix:<+>","allocations":[{"count":118,"id":29974944,"spesh":42,"type":"Int","jit":72}],"inclusive_time":74,"spesh_entries":42,"file":"gen/moar/m-CORE.setting","inlined_entries":42,"jit_entries":72,"entries":118}]},{"exclusive_time":12,"id":34224224,"line":8453,"name":"infix:<*>","allocations":[{"count":10,"id":29974944,"type":"Int","jit":8}],"inclusive_time":12,"file":"gen/moar/m-CORE.setting","jit_entries":8,"entries":10}]},{"exclusive_time":11,"id":36393872,"line":26292,"name":"BUILD","allocations":[{"count":10,"id":29975016,"type":"Scalar"}],"inclusive_time":11,"file":"gen/moar/m-CORE.setting","entries":10}]}]},{"exclusive_time":212,"id":35346288,"line":10609,"name":"ords","inclusive_time":497,"file":"gen/moar/m-CORE.setting","entries":10,"callees":[{"exclusive_time":31,"id":35382160,"line":11340,"name":"NFC","allocations":[{"count":10,"id":59272528,"spesh":7,"type":"NFC"}],"inclusive_time":31,"spesh_entries":7,"file":"gen/moar/m-CORE.setting","entries":10},{"exclusive_time":76,"id":35295824,"line":9880,"name":"list","inclusive_time":253,"file":"gen/moar/m-CORE.setting","jit_entries":7,"entries":10,"callees":[{"exclusive_time":26,"id":38057408,"line":1621,"name":"","allocations":[{"count":20,"id":29975160,"spesh":20,"type":"Block"},{"count":20,"id":19706296,"spesh":20,"type":"BOOTCode"}],"inclusive_time":26,"spesh_entries":20,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":20},{"exclusive_time":75,"id":34348560,"line":12668,"name":"GATHER","allocations":[{"count":10,"id":19706296,"type":"BOOTCode","jit":9}],"inclusive_time":150,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":10,"callees":[{"exclusive_time":17,"id":34348864,"line":12669,"name":"","allocations":[{"count":10,"id":19706296,"type":"BOOTCode","jit":9},{"count":10,"id":29975016,"type":"Scalar","jit":9}],"inclusive_time":17,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":10},{"exclusive_time":31,"id":34349472,"line":12676,"name":"new","allocations":[{"count":10,"id":53652480,"type":"<anon|340889968>","jit":9}],"inclusive_time":46,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":10,"callees":[{"exclusive_time":15,"id":38057408,"line":1621,"name":"","allocations":[{"count":20,"id":29975160,"spesh":20,"type":"Block"},{"count":20,"id":19706296,"spesh":20,"type":"BOOTCode"}],"inclusive_time":15,"spesh_entries":20,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":20}]},{"exclusive_time":10,"id":35446304,"line":12399,"name":"new","allocations":[{"count":10,"id":53654904,"type":"Seq","jit":9}],"inclusive_time":10,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":10}]}]}]},{"exclusive_time":177,"id":34872352,"line":1418,"name":"dispatch:<.=>","allocations":[{"count":11,"id":29975016,"type":"Scalar"},{"count":10,"id":29975112,"type":"Capture"}],"inclusive_time":5542,"file":"gen/moar/m-CORE.setting","entries":10,"callees":[{"exclusive_time":6,"id":35435664,"line":12248,"name":"FLATTENABLE_LIST","inclusive_time":6,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":10},{"exclusive_time":6,"id":35435968,"line":12249,"name":"FLATTENABLE_HASH","allocations":[{"count":10,"id":19706248,"type":"BOOTHash","jit":9}],"inclusive_time":6,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":10},{"exclusive_time":1,"id":35310416,"line":10027,"name":"Stringy","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":10},{"exclusive_time":140,"id":34825536,"line":941,"name":"new","inclusive_time":4380,"file":"gen/moar/m-CORE.setting","entries":10,"callees":[{"exclusive_time":2,"id":38067136,"line":3008,"name":"","allocations":[{"count":10,"id":29974584,"type":"List","jit":10}],"inclusive_time":2,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":10,"entries":10},{"exclusive_time":232,"id":38060448,"line":2048,"name":"","allocations":[{"count":20,"id":19706296,"type":"BOOTCode"},{"count":20,"id":19707232,"type":"NQPArray"},{"count":10,"id":19706248,"type":"BOOTHash"},{"count":10,"id":19706440,"type":"CallCapture"}],"inclusive_time":945,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":10,"callees":[{"exclusive_time":72,"id":38040688,"line":920,"name":"is_bindable","allocations":[{"count":10,"id":19706296,"spesh":9,"type":"BOOTCode"}],"inclusive_time":713,"spesh_entries":9,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":10,"callees":[{"exclusive_time":40,"id":38040992,"line":926,"name":"","inclusive_time":641,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":10,"callees":[{"exclusive_time":156,"id":38038560,"line":606,"name":"bind","allocations":[{"count":10,"id":29974560,"spesh":9,"type":"Hash"}],"inclusive_time":600,"spesh_entries":9,"file":"gen/moar/m-BOOTSTRAP.nqp","deopt_one":9,"entries":10,"callees":[{"exclusive_time":228,"id":38036736,"line":168,"name":"bind_one_param","allocations":[{"count":80,"id":19706296,"type":"BOOTCode"},{"count":10,"id":29975016,"type":"Scalar"}],"inclusive_time":438,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":40,"callees":[{"exclusive_time":13,"id":38361936,"line":2635,"name":"type_check","inclusive_time":13,"file":"gen/moar/m-Metamodel.nqp","jit_entries":9,"entries":10},{"exclusive_time":61,"id":35444784,"line":12379,"name":"cache","allocations":[{"count":10,"id":29975016,"type":"Scalar","jit":9}],"inclusive_time":197,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":10,"callees":[{"exclusive_time":49,"id":35446912,"line":12407,"name":"iterator","inclusive_time":60,"file":"gen/moar/m-CORE.setting","jit_entries":10,"entries":10,"callees":[{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":10,"entries":10},{"exclusive_time":10,"id":38361936,"line":2635,"name":"type_check","inclusive_time":10,"file":"gen/moar/m-Metamodel.nqp","jit_entries":10,"entries":10}]},{"exclusive_time":35,"id":35536896,"line":13804,"name":"from-iterator","allocations":[{"count":10,"id":29974584,"type":"List","jit":9},{"count":10,"id":54157808,"type":"IterationBuffer","jit":9},{"count":10,"id":51227144,"type":"List::Reifier","jit":9}],"inclusive_time":74,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":10,"callees":[{"exclusive_time":34,"id":35546320,"line":13985,"name":"reification-target","inclusive_time":39,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":10,"callees":[{"exclusive_time":3,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":3,"file":"gen/moar/m-CORE.setting","jit_entries":10,"entries":10},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":10,"entries":10}]}]}]}]},{"exclusive_time":5,"id":38038256,"line":573,"name":"handle_optional","inclusive_time":5,"spesh_entries":9,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":10}]}]}]}]},{"exclusive_time":125,"id":35657584,"line":16936,"name":"new","allocations":[{"count":10,"id":29975016,"type":"Scalar"}],"inclusive_time":3292,"file":"gen/moar/m-CORE.setting","entries":10,"callees":[{"exclusive_time":4,"id":35444784,"line":12379,"name":"cache","inclusive_time":4,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":10},{"exclusive_time":40,"id":35658192,"line":16943,"name":"create","allocations":[{"count":10,"id":29975016,"type":"Scalar","jit":1},{"count":10,"id":59274784,"type":"array[uint8]","jit":1}],"inclusive_time":41,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":10,"callees":[{"exclusive_time":0,"id":34818544,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":10,"entries":10}]},{"exclusive_time":35,"id":35650896,"line":16310,"name":"STORE","inclusive_time":1109,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":38067136,"line":3008,"name":"","allocations":[{"count":1,"id":29974584,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":17,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":128,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":72,"id":38059536,"line":1708,"name":"","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":22,"id":19707232,"type":"NQPArray"},{"count":5,"id":19707280,"type":"NQPArrayIter"},{"count":8,"id":19706248,"type":"BOOTHash"},{"count":8,"id":19706752,"type":"BOOTIntArray"},{"count":5,"id":19706152,"type":"BOOTInt"}],"inclusive_time":109,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":27,"id":38059840,"line":1738,"name":"is_narrower","inclusive_time":37,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":12,"entries":12,"callees":[{"exclusive_time":9,"id":38361936,"line":2635,"name":"type_check","allocations":[{"count":4,"id":19707280,"type":"NQPArrayIter"}],"inclusive_time":9,"file":"gen/moar/m-Metamodel.nqp","entries":3,"callees":[{"exclusive_time":0,"id":38290800,"line":161,"name":"pretending_to_be","inclusive_time":0,"file":"gen/moar/m-Metamodel.nqp","entries":3}]}]}]},{"exclusive_time":1,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":33,"id":35673088,"line":16355,"name":"STORE","allocations":[{"count":1,"id":29975016,"type":"Scalar"},{"count":13,"id":29974992,"type":"IntLexRef"}],"inclusive_time":945,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":12,"id":35543584,"line":13932,"name":"elems","allocations":[{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":281,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":11,"id":35591616,"line":13753,"name":"reify-until-lazy","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":2,"id":29975016,"type":"Scalar"}],"inclusive_time":261,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":5,"id":34959600,"line":2476,"name":"push-until-lazy","allocations":[{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":248,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":34961120,"line":2511,"name":"is-lazy","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":7,"id":34958992,"line":2463,"name":"push-all","allocations":[{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":242,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":28,"id":34958688,"line":2454,"name":"push-at-least","allocations":[{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":235,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":7,"id":34352208,"line":12722,"name":"push-exactly","allocations":[{"count":2,"id":29975016,"type":"Scalar"}],"inclusive_time":207,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":20,"id":34350384,"line":12698,"name":"","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":199,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":36,"id":35296128,"line":9881,"name":"","allocations":[{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":177,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":13,"id":25498736,"line":639,"name":"take","inclusive_time":70,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":10,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":11,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":9,"id":25499344,"line":641,"name":"take","allocations":[{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":45,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":8,"id":25496000,"line":596,"name":"THROW","allocations":[{"count":1,"id":19706488,"type":"BOOTException"}],"inclusive_time":36,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":18,"id":34350992,"line":-1,"name":"","allocations":[{"count":2,"id":29974944,"type":"Int"}],"inclusive_time":27,"file":"/usr/local/src/rakudo/install/share/perl6/runtime/CORE.setting.moarvm","entries":1,"callees":[{"exclusive_time":7,"id":34349776,"line":12680,"name":"","inclusive_time":8,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":35438704,"line":12283,"name":"push","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]}]}]}]}]},{"exclusive_time":1,"id":34818544,"line":856,"name":"sink","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":13,"entries":13},{"exclusive_time":17,"id":25499344,"line":641,"name":"take","allocations":[{"count":12,"id":29975016,"type":"Scalar"}],"inclusive_time":70,"file":"gen/moar/m-CORE.setting","entries":12,"callees":[{"exclusive_time":11,"id":25496000,"line":596,"name":"THROW","allocations":[{"count":12,"id":19706488,"type":"BOOTException"}],"inclusive_time":52,"file":"gen/moar/m-CORE.setting","entries":12,"callees":[{"exclusive_time":11,"id":34350992,"line":-1,"name":"","allocations":[{"count":24,"id":29974944,"type":"Int"}],"inclusive_time":41,"file":"/usr/local/src/rakudo/install/share/perl6/runtime/CORE.setting.moarvm","entries":12,"callees":[{"exclusive_time":24,"id":34349776,"line":12680,"name":"","inclusive_time":30,"file":"gen/moar/m-CORE.setting","entries":12,"callees":[{"exclusive_time":5,"id":35438704,"line":12283,"name":"push","inclusive_time":5,"file":"gen/moar/m-CORE.setting","entries":12}]}]}]}]}]},{"exclusive_time":1,"id":38057408,"line":1621,"name":"","allocations":[{"count":1,"id":29975160,"spesh":1,"type":"Block"},{"count":1,"id":19706296,"spesh":1,"type":"BOOTCode"}],"inclusive_time":1,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]},{"exclusive_time":0,"id":34350688,"line":12700,"name":"","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":0,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]},{"exclusive_time":0,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":38361936,"line":2635,"name":"type_check","inclusive_time":0,"file":"gen/moar/m-Metamodel.nqp","jit_entries":1,"entries":1},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":34818544,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":6,"id":35595264,"line":13795,"name":"fully-reified","inclusive_time":6,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]}]},{"exclusive_time":30,"id":34922816,"line":1964,"name":"AT-POS","inclusive_time":604,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":38067136,"line":3008,"name":"","allocations":[{"count":1,"id":29974584,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":12,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":569,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":322,"id":38059536,"line":1708,"name":"","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":62,"id":19707232,"type":"NQPArray"},{"count":13,"id":19707280,"type":"NQPArrayIter"},{"count":24,"id":19706248,"type":"BOOTHash"},{"count":24,"id":19706752,"type":"BOOTIntArray"},{"count":13,"id":19706152,"type":"BOOTInt"}],"inclusive_time":555,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":233,"id":38059840,"line":1738,"name":"is_narrower","inclusive_time":233,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":132,"entries":132}]},{"exclusive_time":1,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":4,"id":35545104,"line":13954,"name":"AT-POS","inclusive_time":5,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]},{"exclusive_time":23,"id":35545104,"line":13954,"name":"AT-POS","inclusive_time":25,"file":"gen/moar/m-CORE.setting","entries":12,"callees":[{"exclusive_time":1,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":12,"entries":12},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":12,"entries":12}]}]}]},{"exclusive_time":140,"id":35673088,"line":16355,"name":"STORE","allocations":[{"count":9,"id":29975016,"type":"Scalar","jit":9},{"count":117,"id":29974992,"type":"IntLexRef","jit":117}],"inclusive_time":2010,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9,"callees":[{"exclusive_time":92,"id":35543584,"line":13932,"name":"elems","allocations":[{"count":9,"id":29975016,"spesh":9,"type":"Scalar"}],"inclusive_time":1628,"spesh_entries":9,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":1,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9},{"exclusive_time":144,"id":35591616,"line":13753,"name":"reify-until-lazy","allocations":[{"count":9,"id":19706296,"type":"BOOTCode","jit":9},{"count":18,"id":29975016,"type":"Scalar","jit":18}],"inclusive_time":1516,"file":"gen/moar/m-CORE.setting","deopt_one":9,"jit_entries":9,"entries":9,"callees":[{"exclusive_time":51,"id":34959600,"line":2476,"name":"push-until-lazy","allocations":[{"count":9,"id":29975016,"type":"Scalar","jit":9}],"inclusive_time":1364,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9,"callees":[{"exclusive_time":1,"id":34961120,"line":2511,"name":"is-lazy","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9},{"exclusive_time":37,"id":34958992,"line":2463,"name":"push-all","allocations":[{"count":9,"id":29975016,"type":"Scalar","jit":9}],"inclusive_time":1311,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9,"callees":[{"exclusive_time":49,"id":34958688,"line":2454,"name":"push-at-least","allocations":[{"count":9,"id":29975016,"spesh":9,"type":"Scalar"}],"inclusive_time":1273,"spesh_entries":9,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":63,"id":34352208,"line":12722,"name":"push-exactly","allocations":[{"count":18,"id":29975016,"type":"Scalar","jit":18}],"inclusive_time":1223,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9,"callees":[{"exclusive_time":62,"id":34350384,"line":12698,"name":"","allocations":[{"count":9,"id":19706296,"type":"BOOTCode"},{"count":9,"id":29975016,"type":"Scalar"}],"inclusive_time":1153,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":238,"id":35296128,"line":9881,"name":"","allocations":[{"count":9,"id":29975016,"type":"Scalar","jit":7}],"inclusive_time":1080,"file":"gen/moar/m-CORE.setting","jit_entries":7,"entries":9,"callees":[{"exclusive_time":195,"id":25499344,"line":641,"name":"take","allocations":[{"count":117,"id":29975016,"spesh":91,"type":"Scalar","jit":26}],"inclusive_time":831,"spesh_entries":91,"file":"gen/moar/m-CORE.setting","jit_entries":26,"entries":117,"callees":[{"exclusive_time":129,"id":25496000,"line":596,"name":"THROW","allocations":[{"count":117,"id":19706488,"spesh":117,"type":"BOOTException"}],"inclusive_time":636,"spesh_entries":117,"file":"gen/moar/m-CORE.setting","entries":117,"callees":[{"exclusive_time":136,"id":34350992,"line":-1,"name":"","allocations":[{"count":234,"id":29974944,"spesh":234,"type":"Int"}],"inclusive_time":506,"spesh_entries":117,"file":"/usr/local/src/rakudo/install/share/perl6/runtime/CORE.setting.moarvm","entries":117,"callees":[{"exclusive_time":301,"id":34349776,"line":12680,"name":"","inclusive_time":370,"file":"gen/moar/m-CORE.setting","entries":117,"callees":[{"exclusive_time":68,"id":35438704,"line":12283,"name":"push","inclusive_time":68,"file":"gen/moar/m-CORE.setting","entries":117}]}]}]}]},{"exclusive_time":9,"id":34818544,"line":856,"name":"sink","inclusive_time":9,"file":"gen/moar/m-CORE.setting","jit_entries":117,"entries":117}]},{"exclusive_time":10,"id":38057408,"line":1621,"name":"","allocations":[{"count":9,"id":29975160,"spesh":9,"type":"Block"},{"count":9,"id":19706296,"spesh":9,"type":"BOOTCode"}],"inclusive_time":10,"spesh_entries":9,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":9}]},{"exclusive_time":7,"id":34350688,"line":12700,"name":"","inclusive_time":7,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9}]}]},{"exclusive_time":1,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":1,"file":"gen/moar/m-CORE.setting","inlined_entries":9,"jit_entries":9,"entries":9}]}]},{"exclusive_time":1,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9},{"exclusive_time":4,"id":38361936,"line":2635,"name":"type_check","inclusive_time":4,"file":"gen/moar/m-Metamodel.nqp","jit_entries":9,"entries":9},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9}]},{"exclusive_time":0,"id":34818544,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9},{"exclusive_time":13,"id":35595264,"line":13795,"name":"fully-reified","inclusive_time":17,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9,"callees":[{"exclusive_time":3,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":3,"file":"gen/moar/m-CORE.setting","inlined_entries":18,"jit_entries":18,"entries":18}]}]},{"exclusive_time":220,"id":35545104,"line":13954,"name":"AT-POS","inclusive_time":241,"spesh_entries":117,"file":"gen/moar/m-CORE.setting","entries":117,"callees":[{"exclusive_time":11,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":11,"file":"gen/moar/m-CORE.setting","jit_entries":117,"entries":117},{"exclusive_time":9,"id":35552400,"line":14088,"name":"sink","inclusive_time":9,"file":"gen/moar/m-CORE.setting","jit_entries":117,"entries":117}]}]}]}]},{"exclusive_time":5,"id":35650896,"line":16310,"name":"STORE","inclusive_time":705,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":38067136,"line":3008,"name":"","allocations":[{"count":1,"id":29974584,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":13,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":13,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":19,"id":35673088,"line":16355,"name":"STORE","allocations":[{"count":1,"id":29975016,"type":"Scalar"},{"count":13,"id":29974992,"type":"IntLexRef"}],"inclusive_time":686,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":14,"id":34899408,"line":1805,"name":"elems","inclusive_time":70,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":38067136,"line":3008,"name":"","allocations":[{"count":1,"id":29974584,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":9,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":54,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":34,"id":38059536,"line":1708,"name":"","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":17,"id":19707232,"type":"NQPArray"},{"count":4,"id":19707280,"type":"NQPArrayIter"},{"count":6,"id":19706248,"type":"BOOTHash"},{"count":6,"id":19706752,"type":"BOOTIntArray"},{"count":3,"id":19706152,"type":"BOOTInt"}],"inclusive_time":44,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":9,"id":38059840,"line":1738,"name":"is_narrower","inclusive_time":9,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":6,"entries":6}]},{"exclusive_time":0,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":35662144,"line":16988,"name":"elems","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":14,"id":34922816,"line":1964,"name":"AT-POS","inclusive_time":591,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":38067136,"line":3008,"name":"","allocations":[{"count":1,"id":29974584,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":10,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":573,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":331,"id":38059536,"line":1708,"name":"","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":62,"id":19707232,"type":"NQPArray"},{"count":13,"id":19707280,"type":"NQPArrayIter"},{"count":24,"id":19706248,"type":"BOOTHash"},{"count":24,"id":19706752,"type":"BOOTIntArray"},{"count":13,"id":19706152,"type":"BOOTInt"}],"inclusive_time":561,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":230,"id":38059840,"line":1738,"name":"is_narrower","inclusive_time":230,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":132,"entries":132}]},{"exclusive_time":0,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":3,"id":35670352,"line":16320,"name":"AT-POS","allocations":[{"count":1,"id":29974848,"type":"IntPosRef"}],"inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":5,"id":35670352,"line":16320,"name":"AT-POS","allocations":[{"count":12,"id":29974848,"type":"IntPosRef"}],"inclusive_time":5,"file":"gen/moar/m-CORE.setting","entries":12}]}]},{"exclusive_time":206,"id":35673088,"line":16355,"name":"STORE","allocations":[{"count":9,"id":29975016,"type":"Scalar","jit":1},{"count":117,"id":29974992,"type":"IntLexRef","jit":13}],"inclusive_time":265,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":9,"callees":[{"exclusive_time":2,"id":35662144,"line":16988,"name":"elems","inclusive_time":2,"file":"gen/moar/m-CORE.setting","inlined_entries":1,"jit_entries":9,"entries":9},{"exclusive_time":56,"id":35670352,"line":16320,"name":"AT-POS","allocations":[{"count":117,"id":29974848,"type":"IntPosRef"}],"inclusive_time":56,"file":"gen/moar/m-CORE.setting","entries":117}]}]},{"exclusive_time":4,"id":35664880,"line":16998,"name":"sink","inclusive_time":4,"file":"gen/moar/m-CORE.setting","entries":10},{"exclusive_time":14,"id":38055584,"line":1563,"name":"","allocations":[{"count":10,"id":29975184,"spesh":9,"type":"Code"},{"count":10,"id":19706296,"spesh":9,"type":"BOOTCode"}],"inclusive_time":14,"spesh_entries":9,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":10},{"exclusive_time":41,"id":34367408,"line":14587,"name":"infix:<xx>","allocations":[{"count":1,"id":29974560,"type":"Hash"}],"inclusive_time":3668,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":20,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":21,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":37,"id":34371056,"line":14616,"name":"infix:<xx>","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":2,"id":29975016,"type":"Scalar"},{"count":1,"id":19706224,"type":"BOOTArray"},{"count":1,"id":29974584,"type":"List"}],"inclusive_time":3606,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":37,"id":84372624,"line":78,"name":"","inclusive_time":3565,"file":"hibbified-249.p6","entries":10,"callees":[{"exclusive_time":4,"id":35662144,"line":16988,"name":"elems","inclusive_time":4,"file":"gen/moar/m-CORE.setting","entries":10},{"exclusive_time":20,"id":82621248,"line":5,"name":"random-bytes","inclusive_time":1140,"file":"hibbified-249.p6","entries":1,"callees":[{"exclusive_time":10,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":55,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":34,"id":38059536,"line":1708,"name":"","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":14,"id":19707232,"type":"NQPArray"},{"count":3,"id":19707280,"type":"NQPArrayIter"},{"count":6,"id":19706248,"type":"BOOTHash"},{"count":4,"id":19706752,"type":"BOOTIntArray"},{"count":3,"id":19706152,"type":"BOOTInt"}],"inclusive_time":43,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":8,"id":38059840,"line":1738,"name":"is_narrower","inclusive_time":8,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":6,"entries":6}]},{"exclusive_time":1,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]},{"exclusive_time":20,"id":86770960,"line":5,"name":"random-bytes","inclusive_time":1064,"file":"hibbified-249.p6","entries":1,"callees":[{"exclusive_time":26,"id":35518048,"line":13386,"name":"roll","inclusive_time":639,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":38067136,"line":3008,"name":"","allocations":[{"count":1,"id":29974584,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":14,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":81,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":44,"id":38059536,"line":1708,"name":"","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":19,"id":19707232,"type":"NQPArray"},{"count":4,"id":19707280,"type":"NQPArrayIter"},{"count":8,"id":19706248,"type":"BOOTHash"},{"count":6,"id":19706752,"type":"BOOTIntArray"},{"count":4,"id":19706152,"type":"BOOTInt"}],"inclusive_time":65,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":21,"id":38059840,"line":1738,"name":"is_narrower","inclusive_time":21,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":12,"entries":12}]},{"exclusive_time":0,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":48,"id":35521696,"line":13419,"name":"roll","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":532,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":25,"id":35496160,"line":13153,"name":"elems","allocations":[{"count":1,"id":29974560,"type":"Hash"},{"count":3,"id":29974536,"type":"IntAttrRef"}],"inclusive_time":343,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":2,"id":34223616,"line":8446,"name":"infix:<->","allocations":[{"count":1,"id":29974944,"type":"Int"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":6,"id":34185008,"line":7912,"name":"infix:<->","inclusive_time":84,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":73,"id":38060448,"line":2048,"name":"","allocations":[{"count":4,"id":19706296,"spesh":4,"type":"BOOTCode"},{"count":4,"id":19707232,"spesh":4,"type":"NQPArray"},{"count":2,"id":19706248,"spesh":2,"type":"BOOTHash"}],"inclusive_time":75,"spesh_entries":2,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":2,"callees":[{"exclusive_time":1,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":2}]},{"exclusive_time":1,"id":34223616,"line":8446,"name":"infix:<->","allocations":[{"count":2,"id":29974944,"type":"Int"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":2}]},{"exclusive_time":1,"id":34223008,"line":8439,"name":"infix:<+>","allocations":[{"count":1,"id":29974944,"type":"Int"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":124,"id":34017200,"line":5208,"name":"infix:<max>","inclusive_time":229,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":17,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":18,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":13,"id":34018112,"line":5211,"name":"infix:<max>","inclusive_time":87,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":15,"id":34270432,"line":8782,"name":"infix:<cmp>","inclusive_time":72,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":54,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"spesh":2,"type":"BOOTCode"},{"count":2,"id":19707232,"spesh":2,"type":"NQPArray"},{"count":1,"id":19706248,"spesh":1,"type":"BOOTHash"}],"inclusive_time":55,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":1,"id":34271344,"line":8789,"name":"infix:<cmp>","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":0,"id":34230608,"line":8540,"name":"infix:«>»","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]}]}]},{"exclusive_time":113,"id":35522304,"line":13420,"name":"","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":2,"id":29975016,"type":"Scalar"},{"count":2,"id":29974536,"type":"IntAttrRef"}],"inclusive_time":140,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":35522608,"line":13422,"name":"","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":1,"id":34223008,"line":8439,"name":"infix:<+>","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":2,"id":34018112,"line":5211,"name":"infix:<max>","inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":34271344,"line":8789,"name":"infix:<cmp>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":34230608,"line":8540,"name":"infix:«>»","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":17,"id":35523216,"line":13432,"name":"new","allocations":[{"count":1,"id":53652096,"type":"<anon|348661744>"}],"inclusive_time":19,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":35522912,"line":13426,"name":"BUILD","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":1,"id":35446304,"line":12399,"name":"new","allocations":[{"count":1,"id":53654904,"type":"Seq"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]}]}]},{"exclusive_time":6,"id":34825536,"line":941,"name":"new","inclusive_time":404,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":38067136,"line":3008,"name":"","allocations":[{"count":1,"id":29974584,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":15,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"},{"count":1,"id":19706440,"type":"CallCapture"}],"inclusive_time":76,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":4,"id":38040688,"line":920,"name":"is_bindable","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"}],"inclusive_time":61,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":2,"id":38040992,"line":926,"name":"","inclusive_time":57,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":12,"id":38038560,"line":606,"name":"bind","allocations":[{"count":1,"id":29974560,"type":"Hash"}],"inclusive_time":54,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":20,"id":38036736,"line":168,"name":"bind_one_param","allocations":[{"count":8,"id":19706296,"type":"BOOTCode"},{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":40,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":4,"callees":[{"exclusive_time":1,"id":38361936,"line":2635,"name":"type_check","inclusive_time":1,"file":"gen/moar/m-Metamodel.nqp","entries":1},{"exclusive_time":6,"id":35444784,"line":12379,"name":"cache","allocations":[{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":19,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":4,"id":35446912,"line":12407,"name":"iterator","inclusive_time":5,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":38361936,"line":2635,"name":"type_check","inclusive_time":0,"file":"gen/moar/m-Metamodel.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":4,"id":35536896,"line":13804,"name":"from-iterator","allocations":[{"count":1,"id":29974584,"type":"List"},{"count":1,"id":54157808,"type":"IterationBuffer"},{"count":1,"id":51227144,"type":"List::Reifier"}],"inclusive_time":7,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":3,"id":35546320,"line":13985,"name":"reification-target","inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]}]}]},{"exclusive_time":0,"id":38038256,"line":573,"name":"handle_optional","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]}]}]}]},{"exclusive_time":6,"id":35657584,"line":16936,"name":"new","allocations":[{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":321,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":35444784,"line":12379,"name":"cache","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":4,"id":35658192,"line":16943,"name":"create","allocations":[{"count":1,"id":29975016,"type":"Scalar"},{"count":1,"id":59274784,"type":"array[uint8]"}],"inclusive_time":4,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":34818544,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]},{"exclusive_time":24,"id":35673088,"line":16355,"name":"STORE","allocations":[{"count":1,"id":29975016,"type":"Scalar"},{"count":13,"id":29974992,"type":"IntLexRef"}],"inclusive_time":309,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":10,"id":35543584,"line":13932,"name":"elems","allocations":[{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":254,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":11,"id":35591616,"line":13753,"name":"reify-until-lazy","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":2,"id":29975016,"type":"Scalar"}],"inclusive_time":238,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":24,"id":34959600,"line":2476,"name":"push-until-lazy","allocations":[{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":226,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":34961120,"line":2511,"name":"is-lazy","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":93,"id":35523824,"line":13438,"name":"push-all","allocations":[{"count":1,"id":29975016,"type":"Scalar"},{"count":27,"id":29974536,"type":"IntAttrRef"},{"count":13,"id":29974944,"type":"Int"}],"inclusive_time":201,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":12,"id":33998352,"line":2179,"name":"postfix:<-->","inclusive_time":27,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":12,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":12,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":1,"id":34221488,"line":8419,"name":"postfix:<-->","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":3,"id":34184096,"line":7908,"name":"infix:<+>","inclusive_time":51,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":43,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"spesh":2,"type":"BOOTCode"},{"count":2,"id":19707232,"spesh":2,"type":"NQPArray"},{"count":1,"id":19706248,"spesh":1,"type":"BOOTHash"}],"inclusive_time":44,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]},{"exclusive_time":3,"id":34223008,"line":8439,"name":"infix:<+>","allocations":[{"count":1,"id":29974944,"type":"Int"}],"inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":5,"id":35438704,"line":12283,"name":"push","inclusive_time":5,"file":"gen/moar/m-CORE.setting","entries":13},{"exclusive_time":6,"id":34221488,"line":8419,"name":"postfix:<-->","inclusive_time":6,"file":"gen/moar/m-CORE.setting","entries":13},{"exclusive_time":18,"id":34223008,"line":8439,"name":"infix:<+>","allocations":[{"count":12,"id":29974944,"type":"Int"}],"inclusive_time":18,"file":"gen/moar/m-CORE.setting","entries":12}]}]},{"exclusive_time":0,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":38361936,"line":2635,"name":"type_check","inclusive_time":0,"file":"gen/moar/m-Metamodel.nqp","jit_entries":1,"entries":1},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":34818544,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":4,"id":35595264,"line":13795,"name":"fully-reified","inclusive_time":5,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]}]},{"exclusive_time":28,"id":35545104,"line":13954,"name":"AT-POS","inclusive_time":31,"file":"gen/moar/m-CORE.setting","entries":13,"callees":[{"exclusive_time":1,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":13,"entries":13},{"exclusive_time":1,"id":35552400,"line":14088,"name":"sink","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":13,"entries":13}]}]}]}]}]}]},{"exclusive_time":27,"id":86770960,"line":5,"name":"random-bytes","inclusive_time":2382,"file":"hibbified-249.p6","entries":9,"callees":[{"exclusive_time":21,"id":35521696,"line":13419,"name":"roll","allocations":[{"count":9,"id":19706296,"type":"BOOTCode"},{"count":9,"id":29975016,"type":"Scalar"}],"inclusive_time":277,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":58,"id":35496160,"line":13153,"name":"elems","allocations":[{"count":9,"id":29974560,"type":"Hash"},{"count":27,"id":29974536,"type":"IntAttrRef"}],"inclusive_time":122,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":23,"id":34223616,"line":8446,"name":"infix:<->","allocations":[{"count":27,"id":29974944,"type":"Int"}],"inclusive_time":23,"file":"gen/moar/m-CORE.setting","entries":27},{"exclusive_time":6,"id":34223008,"line":8439,"name":"infix:<+>","allocations":[{"count":9,"id":29974944,"type":"Int"}],"inclusive_time":6,"file":"gen/moar/m-CORE.setting","entries":9},{"exclusive_time":22,"id":34018112,"line":5211,"name":"infix:<max>","inclusive_time":34,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":8,"id":34271344,"line":8789,"name":"infix:<cmp>","inclusive_time":8,"file":"gen/moar/m-CORE.setting","entries":9},{"exclusive_time":4,"id":34230608,"line":8540,"name":"infix:«>»","inclusive_time":4,"file":"gen/moar/m-CORE.setting","entries":9}]}]},{"exclusive_time":60,"id":35522304,"line":13420,"name":"","allocations":[{"count":9,"id":19706296,"type":"BOOTCode"},{"count":18,"id":29975016,"type":"Scalar"},{"count":18,"id":29974536,"type":"IntAttrRef"}],"inclusive_time":133,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":6,"id":35522608,"line":13422,"name":"","inclusive_time":6,"file":"gen/moar/m-CORE.setting","entries":9},{"exclusive_time":6,"id":34223008,"line":8439,"name":"infix:<+>","inclusive_time":6,"file":"gen/moar/m-CORE.setting","entries":9},{"exclusive_time":17,"id":34018112,"line":5211,"name":"infix:<max>","inclusive_time":28,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":6,"id":34271344,"line":8789,"name":"infix:<cmp>","inclusive_time":6,"file":"gen/moar/m-CORE.setting","entries":9},{"exclusive_time":3,"id":34230608,"line":8540,"name":"infix:«>»","inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":9}]},{"exclusive_time":15,"id":35523216,"line":13432,"name":"new","allocations":[{"count":9,"id":53652096,"type":"<anon|348661744>"}],"inclusive_time":24,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":9,"id":35522912,"line":13426,"name":"BUILD","inclusive_time":9,"file":"gen/moar/m-CORE.setting","entries":9}]},{"exclusive_time":7,"id":35446304,"line":12399,"name":"new","allocations":[{"count":9,"id":53654904,"type":"Seq"}],"inclusive_time":7,"file":"gen/moar/m-CORE.setting","entries":9}]}]},{"exclusive_time":43,"id":34825536,"line":941,"name":"new","inclusive_time":2077,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":1,"id":38067136,"line":3008,"name":"","allocations":[{"count":9,"id":29974584,"type":"List","jit":9}],"inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":9,"entries":9},{"exclusive_time":107,"id":38060448,"line":2048,"name":"","allocations":[{"count":18,"id":19706296,"type":"BOOTCode"},{"count":18,"id":19707232,"type":"NQPArray"},{"count":9,"id":19706248,"type":"BOOTHash"},{"count":9,"id":19706440,"type":"CallCapture"}],"inclusive_time":447,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":9,"callees":[{"exclusive_time":17,"id":38040688,"line":920,"name":"is_bindable","allocations":[{"count":9,"id":19706296,"spesh":5,"type":"BOOTCode"}],"inclusive_time":339,"spesh_entries":5,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":9,"callees":[{"exclusive_time":15,"id":38040992,"line":926,"name":"","inclusive_time":322,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":9,"callees":[{"exclusive_time":78,"id":38038560,"line":606,"name":"bind","allocations":[{"count":9,"id":29974560,"type":"Hash"}],"inclusive_time":307,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":9,"callees":[{"exclusive_time":117,"id":38036736,"line":168,"name":"bind_one_param","allocations":[{"count":72,"id":19706296,"type":"BOOTCode"},{"count":9,"id":29975016,"type":"Scalar"}],"inclusive_time":224,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":36,"callees":[{"exclusive_time":6,"id":38361936,"line":2635,"name":"type_check","inclusive_time":6,"file":"gen/moar/m-Metamodel.nqp","jit_entries":3,"entries":9},{"exclusive_time":30,"id":35444784,"line":12379,"name":"cache","allocations":[{"count":9,"id":29975016,"type":"Scalar"}],"inclusive_time":101,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":22,"id":35446912,"line":12407,"name":"iterator","inclusive_time":26,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9,"callees":[{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9},{"exclusive_time":3,"id":38361936,"line":2635,"name":"type_check","inclusive_time":3,"file":"gen/moar/m-Metamodel.nqp","jit_entries":9,"entries":9}]},{"exclusive_time":22,"id":35536896,"line":13804,"name":"from-iterator","allocations":[{"count":9,"id":29974584,"type":"List"},{"count":9,"id":54157808,"type":"IterationBuffer"},{"count":9,"id":51227144,"type":"List::Reifier"}],"inclusive_time":44,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":20,"id":35546320,"line":13985,"name":"reification-target","inclusive_time":21,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":0,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9}]}]}]}]},{"exclusive_time":4,"id":38038256,"line":573,"name":"handle_optional","inclusive_time":4,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":9}]}]}]}]},{"exclusive_time":36,"id":35657584,"line":16936,"name":"new","allocations":[{"count":9,"id":29975016,"type":"Scalar"}],"inclusive_time":1584,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":7,"id":35444784,"line":12379,"name":"cache","inclusive_time":7,"file":"gen/moar/m-CORE.setting","entries":9},{"exclusive_time":21,"id":35658192,"line":16943,"name":"create","allocations":[{"count":9,"id":29975016,"type":"Scalar"},{"count":9,"id":59274784,"type":"array[uint8]"}],"inclusive_time":22,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":0,"id":34818544,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9}]},{"exclusive_time":149,"id":35673088,"line":16355,"name":"STORE","allocations":[{"count":9,"id":29975016,"type":"Scalar"},{"count":117,"id":29974992,"type":"IntLexRef"}],"inclusive_time":1518,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":44,"id":35543584,"line":13932,"name":"elems","allocations":[{"count":9,"id":29975016,"type":"Scalar","jit":9}],"inclusive_time":1100,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9,"callees":[{"exclusive_time":1,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9},{"exclusive_time":65,"id":35591616,"line":13753,"name":"reify-until-lazy","allocations":[{"count":9,"id":19706296,"type":"BOOTCode"},{"count":18,"id":29975016,"type":"Scalar"}],"inclusive_time":1025,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":21,"id":34959600,"line":2476,"name":"push-until-lazy","allocations":[{"count":9,"id":29975016,"type":"Scalar"}],"inclusive_time":954,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":2,"id":34961120,"line":2511,"name":"is-lazy","inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":9},{"exclusive_time":706,"id":35523824,"line":13438,"name":"push-all","allocations":[{"count":9,"id":29975016,"type":"Scalar"},{"count":243,"id":29974536,"type":"IntAttrRef"},{"count":117,"id":29974944,"type":"Int"}],"inclusive_time":930,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":58,"id":34221488,"line":8419,"name":"postfix:<-->","inclusive_time":58,"file":"gen/moar/m-CORE.setting","entries":126},{"exclusive_time":111,"id":34223008,"line":8439,"name":"infix:<+>","allocations":[{"count":117,"id":29974944,"type":"Int","jit":106}],"inclusive_time":111,"file":"gen/moar/m-CORE.setting","jit_entries":106,"entries":117},{"exclusive_time":53,"id":35438704,"line":12283,"name":"push","inclusive_time":53,"file":"gen/moar/m-CORE.setting","entries":117}]}]},{"exclusive_time":0,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9},{"exclusive_time":3,"id":38361936,"line":2635,"name":"type_check","inclusive_time":3,"file":"gen/moar/m-Metamodel.nqp","jit_entries":9,"entries":9},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9}]},{"exclusive_time":0,"id":34818544,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":9},{"exclusive_time":24,"id":35595264,"line":13795,"name":"fully-reified","inclusive_time":27,"file":"gen/moar/m-CORE.setting","entries":9,"callees":[{"exclusive_time":2,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":2,"file":"gen/moar/m-CORE.setting","jit_entries":18,"entries":18}]}]},{"exclusive_time":249,"id":35545104,"line":13954,"name":"AT-POS","inclusive_time":268,"file":"gen/moar/m-CORE.setting","entries":117,"callees":[{"exclusive_time":10,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":10,"file":"gen/moar/m-CORE.setting","jit_entries":117,"entries":117},{"exclusive_time":8,"id":35552400,"line":14088,"name":"sink","inclusive_time":8,"file":"gen/moar/m-CORE.setting","jit_entries":117,"entries":117}]}]}]}]}]}]},{"exclusive_time":3,"id":35664880,"line":16998,"name":"sink","inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":10}]}]},{"exclusive_time":31,"id":35605296,"line":15771,"name":"STORE","inclusive_time":524,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":10,"callees":[{"exclusive_time":86,"id":35605904,"line":15779,"name":"STORE-ITERABLE","allocations":[{"count":10,"id":19706296,"type":"BOOTCode","jit":9},{"count":10,"id":54157808,"type":"IterationBuffer","jit":9},{"count":10,"id":29975016,"type":"Scalar","jit":9}],"inclusive_time":493,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":10,"callees":[{"exclusive_time":70,"id":35546624,"line":13990,"name":"iterator","allocations":[{"count":10,"id":19706296,"type":"BOOTCode","jit":9}],"inclusive_time":146,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":10,"callees":[{"exclusive_time":1,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":10,"entries":10},{"exclusive_time":1,"id":35552400,"line":14088,"name":"sink","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":10,"entries":10},{"exclusive_time":14,"id":35546928,"line":13992,"name":"","allocations":[{"count":10,"id":29975016,"type":"Scalar","jit":10}],"inclusive_time":14,"file":"gen/moar/m-CORE.setting","jit_entries":10,"entries":10},{"exclusive_time":46,"id":35547536,"line":14004,"name":"new","allocations":[{"count":10,"id":53651952,"type":"<anon|352550624>","jit":9}],"inclusive_time":59,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":10,"callees":[{"exclusive_time":2,"id":34798480,"line":495,"name":"of","inclusive_time":2,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":10},{"exclusive_time":10,"id":35547232,"line":13998,"name":"BUILD","allocations":[{"count":10,"id":29975016,"type":"Scalar","jit":9}],"inclusive_time":10,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":10}]}]},{"exclusive_time":13,"id":35628704,"line":15464,"name":"new","allocations":[{"count":10,"id":54158192,"type":"Array::ArrayReificationTarget","jit":9}],"inclusive_time":13,"file":"gen/moar/m-CORE.setting","jit_entries":9,"entries":10},{"exclusive_time":196,"id":35548448,"line":14020,"name":"push-until-lazy","allocations":[{"count":20,"id":29975016,"type":"Scalar","jit":18}],"inclusive_time":245,"file":"gen/moar/m-CORE.setting","deopt_one":9,"jit_entries":9,"entries":10,"callees":[{"exclusive_time":45,"id":35629008,"line":15471,"name":"push","allocations":[{"count":100,"id":29975016,"type":"Scalar","jit":92}],"inclusive_time":45,"file":"gen/moar/m-CORE.setting","jit_entries":92,"entries":100},{"exclusive_time":2,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":2,"file":"gen/moar/m-CORE.setting","jit_entries":10,"entries":10}]},{"exclusive_time":1,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":1,"file":"gen/moar/m-CORE.setting","inlined_entries":9,"jit_entries":10,"entries":10}]}]},{"exclusive_time":39924,"id":78550560,"line":83,"name":"","allocations":[{"count":618,"id":29975016,"type":"Scalar","jit":361}],"inclusive_time":254261896,"file":"hibbified-249.p6","deopt_one":54,"jit_entries":361,"entries":618,"callees":[{"exclusive_time":921,"id":38057408,"line":1621,"name":"","allocations":[{"count":618,"id":29975160,"spesh":618,"type":"Block"},{"count":618,"id":19706296,"spesh":618,"type":"BOOTCode"}],"inclusive_time":921,"spesh_entries":618,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":618},{"exclusive_time":8185,"id":22271904,"line":52,"name":"survival","allocations":[{"count":618,"id":29975016,"type":"Scalar","jit":361}],"inclusive_time":64046811,"file":"hibbified-249.p6","jit_entries":361,"entries":618,"callees":[{"exclusive_time":26625,"id":35105216,"line":4666,"name":"sort","allocations":[{"count":1236,"id":19706296,"spesh":722,"type":"BOOTCode"},{"count":618,"id":29975016,"spesh":361,"type":"Scalar"},{"count":1236,"id":19706224,"spesh":722,"type":"BOOTArray"},{"count":15300,"id":29974992,"spesh":8935,"type":"IntLexRef"}],"inclusive_time":63954299,"spesh_entries":361,"file":"gen/moar/m-CORE.setting","entries":618,"callees":[{"exclusive_time":2591,"id":35546624,"line":13990,"name":"iterator","allocations":[{"count":618,"id":19706296,"type":"BOOTCode","jit":617}],"inclusive_time":5662,"file":"gen/moar/m-CORE.setting","jit_entries":617,"entries":618,"callees":[{"exclusive_time":105,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":105,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618},{"exclusive_time":56,"id":35552400,"line":14088,"name":"sink","inclusive_time":56,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618},{"exclusive_time":450,"id":35546928,"line":13992,"name":"","allocations":[{"count":618,"id":29975016,"type":"Scalar","jit":618}],"inclusive_time":450,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618},{"exclusive_time":1390,"id":35547536,"line":14004,"name":"new","allocations":[{"count":618,"id":53651952,"type":"<anon|352550624>","jit":617}],"inclusive_time":2457,"file":"gen/moar/m-CORE.setting","jit_entries":617,"entries":618,"callees":[{"exclusive_time":729,"id":35623536,"line":16147,"name":"of","inclusive_time":815,"file":"gen/moar/m-CORE.setting","jit_entries":617,"entries":618,"callees":[{"exclusive_time":85,"id":38396896,"line":3777,"name":"of","inclusive_time":85,"spesh_entries":617,"file":"gen/moar/m-Metamodel.nqp","entries":618}]},{"exclusive_time":251,"id":35547232,"line":13998,"name":"BUILD","inclusive_time":251,"file":"gen/moar/m-CORE.setting","jit_entries":617,"entries":618}]}]},{"exclusive_time":1666,"id":34825840,"line":942,"name":"new","allocations":[{"count":618,"id":29974560,"spesh":589,"type":"Hash"}],"inclusive_time":13794,"spesh_entries":589,"file":"gen/moar/m-CORE.setting","entries":618,"callees":[{"exclusive_time":2881,"id":34827360,"line":956,"name":"bless","allocations":[{"count":618,"id":29974560,"spesh":574,"type":"Hash"},{"count":618,"id":54157808,"spesh":574,"type":"IterationBuffer"}],"inclusive_time":12127,"spesh_entries":574,"file":"gen/moar/m-CORE.setting","entries":618,"callees":[{"exclusive_time":4404,"id":35539024,"line":13860,"name":"from-slurpy-flat","allocations":[{"count":618,"id":19706296,"spesh":560,"type":"BOOTCode"},{"count":1236,"id":54157808,"spesh":1120,"type":"IterationBuffer"},{"count":618,"id":29974896,"spesh":560,"type":"Array"},{"count":618,"id":51227144,"spesh":560,"type":"List::Reifier"}],"inclusive_time":6353,"spesh_entries":560,"file":"gen/moar/m-CORE.setting","entries":618,"callees":[{"exclusive_time":153,"id":38067136,"line":3008,"name":"","allocations":[{"count":618,"id":29974584,"type":"List","jit":618}],"inclusive_time":153,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":618,"entries":618},{"exclusive_time":1390,"id":35607120,"line":15806,"name":"reification-target","inclusive_time":1795,"file":"gen/moar/m-CORE.setting","jit_entries":602,"entries":618,"callees":[{"exclusive_time":405,"id":35628704,"line":15464,"name":"new","allocations":[{"count":618,"id":54158192,"type":"Array::ArrayReificationTarget","jit":616}],"inclusive_time":405,"file":"gen/moar/m-CORE.setting","jit_entries":616,"entries":618}]}]},{"exclusive_time":2667,"id":34827664,"line":960,"name":"BUILDALL","allocations":[{"count":618,"id":19706296,"type":"BOOTCode","jit":557}],"inclusive_time":2892,"file":"gen/moar/m-CORE.setting","jit_entries":557,"entries":618,"callees":[{"exclusive_time":224,"id":38327888,"line":1475,"name":"BUILDALLPLAN","inclusive_time":224,"file":"gen/moar/m-Metamodel.nqp","jit_entries":591,"entries":618}]}]}]},{"exclusive_time":12790,"id":35548448,"line":14020,"name":"push-until-lazy","allocations":[{"count":1236,"id":29975016,"type":"Scalar","jit":1228},{"count":608,"id":29974944,"type":"Int","jit":605}],"inclusive_time":20288,"file":"gen/moar/m-CORE.setting","jit_entries":614,"entries":618,"callees":[{"exclusive_time":5,"id":34916736,"line":1907,"name":"push","inclusive_time":21,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":38067136,"line":3008,"name":"","allocations":[{"count":1,"id":29974584,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":13,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":14,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":1,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":35438704,"line":12283,"name":"push","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":7380,"id":35438704,"line":12283,"name":"push","inclusive_time":7380,"file":"gen/moar/m-CORE.setting","entries":15299},{"exclusive_time":95,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":95,"file":"gen/moar/m-CORE.setting","inlined_entries":614,"jit_entries":618,"entries":618}]},{"exclusive_time":83,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":83,"spesh_entries":361,"file":"gen/moar/m-CORE.setting","inlined_entries":361,"jit_entries":257,"entries":618},{"exclusive_time":63,"id":35552400,"line":14088,"name":"sink","inclusive_time":63,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618},{"exclusive_time":6362,"id":34872656,"line":1423,"name":"dispatch:<.?>","allocations":[{"count":618,"id":29975016,"spesh":579,"type":"Scalar"},{"count":618,"id":29975112,"spesh":579,"type":"Capture"}],"inclusive_time":9595,"spesh_entries":579,"file":"gen/moar/m-CORE.setting","entries":618,"callees":[{"exclusive_time":353,"id":35435664,"line":12248,"name":"FLATTENABLE_LIST","allocations":[{"count":618,"id":19706224,"type":"BOOTArray","jit":617}],"inclusive_time":353,"file":"gen/moar/m-CORE.setting","jit_entries":617,"entries":618},{"exclusive_time":276,"id":35435968,"line":12249,"name":"FLATTENABLE_HASH","allocations":[{"count":618,"id":19706248,"type":"BOOTHash","jit":617}],"inclusive_time":276,"file":"gen/moar/m-CORE.setting","jit_entries":617,"entries":618},{"exclusive_time":46,"id":35310416,"line":10027,"name":"Stringy","inclusive_time":46,"file":"gen/moar/m-CORE.setting","jit_entries":616,"entries":618},{"exclusive_time":2462,"id":35157504,"line":6408,"name":"count","inclusive_time":2557,"file":"gen/moar/m-CORE.setting","entries":618,"callees":[{"exclusive_time":95,"id":35839376,"line":18706,"name":"count","inclusive_time":95,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618}]}]},{"exclusive_time":134,"id":34825232,"line":937,"name":"defined","inclusive_time":134,"file":"gen/moar/m-CORE.setting","jit_entries":610,"entries":618},{"exclusive_time":288,"id":34229392,"line":8526,"name":"infix:«<»","inclusive_time":288,"spesh_entries":361,"file":"gen/moar/m-CORE.setting","inlined_entries":361,"jit_entries":257,"entries":618},{"exclusive_time":5287,"id":35106736,"line":4677,"name":"","allocations":[{"count":618,"id":29975016,"type":"Scalar","jit":411},{"count":618,"id":29974584,"type":"List","jit":411}],"inclusive_time":63585287,"file":"gen/moar/m-CORE.setting","jit_entries":411,"entries":618,"callees":[{"exclusive_time":933,"id":34825840,"line":942,"name":"new","allocations":[{"count":618,"id":29974560,"spesh":589,"type":"Hash"}],"inclusive_time":7175,"spesh_entries":589,"file":"gen/moar/m-CORE.setting","entries":618,"callees":[{"exclusive_time":1644,"id":34827360,"line":956,"name":"bless","allocations":[{"count":618,"id":29974560,"spesh":574,"type":"Hash"},{"count":618,"id":54157808,"spesh":574,"type":"IterationBuffer"}],"inclusive_time":6241,"spesh_entries":574,"file":"gen/moar/m-CORE.setting","entries":618,"callees":[{"exclusive_time":2416,"id":35539024,"line":13860,"name":"from-slurpy-flat","allocations":[{"count":618,"id":19706296,"spesh":560,"type":"BOOTCode"},{"count":1236,"id":54157808,"spesh":1120,"type":"IterationBuffer"},{"count":618,"id":29974896,"spesh":560,"type":"Array"},{"count":618,"id":51227144,"spesh":560,"type":"List::Reifier"}],"inclusive_time":3510,"spesh_entries":560,"file":"gen/moar/m-CORE.setting","entries":618,"callees":[{"exclusive_time":108,"id":38067136,"line":3008,"name":"","allocations":[{"count":618,"id":29974584,"type":"List","jit":618}],"inclusive_time":108,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":618,"entries":618},{"exclusive_time":745,"id":35607120,"line":15806,"name":"reification-target","inclusive_time":986,"file":"gen/moar/m-CORE.setting","jit_entries":602,"entries":618,"callees":[{"exclusive_time":240,"id":35628704,"line":15464,"name":"new","allocations":[{"count":618,"id":54158192,"type":"Array::ArrayReificationTarget","jit":617}],"inclusive_time":240,"file":"gen/moar/m-CORE.setting","jit_entries":617,"entries":618}]}]},{"exclusive_time":991,"id":34827664,"line":960,"name":"BUILDALL","allocations":[{"count":618,"id":19706296,"type":"BOOTCode","jit":558}],"inclusive_time":1086,"file":"gen/moar/m-CORE.setting","jit_entries":558,"entries":618,"callees":[{"exclusive_time":95,"id":38327888,"line":1475,"name":"BUILDALLPLAN","inclusive_time":95,"file":"gen/moar/m-Metamodel.nqp","jit_entries":591,"entries":618}]}]}]},{"exclusive_time":4415,"id":35045632,"line":3779,"name":"map","allocations":[{"count":1236,"id":29975016,"type":"Scalar"}],"inclusive_time":17729,"file":"gen/moar/m-CORE.setting","entries":618,"callees":[{"exclusive_time":2365,"id":35546624,"line":13990,"name":"iterator","allocations":[{"count":618,"id":19706296,"type":"BOOTCode","jit":617}],"inclusive_time":4742,"file":"gen/moar/m-CORE.setting","jit_entries":617,"entries":618,"callees":[{"exclusive_time":91,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":91,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618},{"exclusive_time":54,"id":35552400,"line":14088,"name":"sink","inclusive_time":54,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618},{"exclusive_time":444,"id":35546928,"line":13992,"name":"","allocations":[{"count":618,"id":29975016,"type":"Scalar","jit":618}],"inclusive_time":444,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618},{"exclusive_time":1362,"id":35547536,"line":14004,"name":"new","allocations":[{"count":618,"id":53651952,"type":"<anon|352550624>","jit":617}],"inclusive_time":1785,"file":"gen/moar/m-CORE.setting","jit_entries":617,"entries":618,"callees":[{"exclusive_time":58,"id":34798480,"line":495,"name":"of","inclusive_time":58,"file":"gen/moar/m-CORE.setting","jit_entries":617,"entries":618},{"exclusive_time":364,"id":35547232,"line":13998,"name":"BUILD","allocations":[{"count":618,"id":29975016,"type":"Scalar","jit":617}],"inclusive_time":364,"file":"gen/moar/m-CORE.setting","jit_entries":617,"entries":618}]}]},{"exclusive_time":5528,"id":35048976,"line":3840,"name":"sequential-map","allocations":[{"count":1236,"id":19706296,"type":"BOOTCode","jit":1234},{"count":1854,"id":29975016,"type":"Scalar","jit":1851}],"inclusive_time":8571,"file":"gen/moar/m-CORE.setting","jit_entries":617,"entries":618,"callees":[{"exclusive_time":829,"id":35157504,"line":6408,"name":"count","inclusive_time":889,"file":"gen/moar/m-CORE.setting","jit_entries":617,"entries":618,"callees":[{"exclusive_time":60,"id":35839376,"line":18706,"name":"count","inclusive_time":60,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618}]},{"exclusive_time":153,"id":34228480,"line":8515,"name":"infix:<==>","inclusive_time":153,"file":"gen/moar/m-CORE.setting","inlined_entries":617,"jit_entries":618,"entries":618},{"exclusive_time":411,"id":35049888,"line":3847,"name":"","inclusive_time":411,"file":"gen/moar/m-CORE.setting","jit_entries":617,"entries":618},{"exclusive_time":1257,"id":35147168,"line":3827,"name":"new","allocations":[{"count":1854,"id":29975016,"type":"Scalar","jit":1851},{"count":618,"id":53654184,"type":"<anon|159066640>","jit":617}],"inclusive_time":1257,"file":"gen/moar/m-CORE.setting","jit_entries":617,"entries":618},{"exclusive_time":330,"id":35446304,"line":12399,"name":"new","allocations":[{"count":618,"id":53654904,"type":"Seq","jit":617}],"inclusive_time":330,"file":"gen/moar/m-CORE.setting","jit_entries":617,"entries":618}]}]},{"exclusive_time":1985,"id":35446912,"line":12407,"name":"iterator","inclusive_time":2474,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618,"callees":[{"exclusive_time":59,"id":35552400,"line":14088,"name":"sink","inclusive_time":59,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618},{"exclusive_time":429,"id":38361936,"line":2635,"name":"type_check","inclusive_time":429,"file":"gen/moar/m-Metamodel.nqp","jit_entries":618,"entries":618}]},{"exclusive_time":1699,"id":34958992,"line":2463,"name":"push-all","allocations":[{"count":618,"id":29975016,"type":"Scalar","jit":617}],"inclusive_time":63552621,"file":"gen/moar/m-CORE.setting","jit_entries":617,"entries":618,"callees":[{"exclusive_time":2319,"id":34958688,"line":2454,"name":"push-at-least","allocations":[{"count":618,"id":29975016,"spesh":617,"type":"Scalar"}],"inclusive_time":63550850,"spesh_entries":617,"file":"gen/moar/m-CORE.setting","entries":618,"callees":[{"exclusive_time":128542,"id":34958080,"line":2436,"name":"push-exactly","allocations":[{"count":1236,"id":29975016,"type":"Scalar","jit":1234}],"inclusive_time":63548530,"file":"gen/moar/m-CORE.setting","deopt_one":617,"jit_entries":617,"entries":618,"callees":[{"exclusive_time":168619,"id":35050192,"line":3853,"name":"pull-one","allocations":[{"count":15918,"id":19706296,"type":"BOOTCode","jit":15911},{"count":18390,"id":29975016,"type":"Scalar","jit":18379}],"inclusive_time":63402152,"file":"gen/moar/m-CORE.setting","deopt_one":15293,"jit_entries":15911,"entries":15918,"callees":[{"exclusive_time":2442,"id":34255840,"line":8705,"name":"prefix:<!>","inclusive_time":2442,"file":"gen/moar/m-CORE.setting","inlined_entries":15294,"jit_entries":15917,"entries":15918},{"exclusive_time":1771,"id":35163280,"line":6478,"name":"phasers","inclusive_time":1869,"file":"gen/moar/m-CORE.setting","jit_entries":1236,"entries":1236,"callees":[{"exclusive_time":97,"id":35552400,"line":14088,"name":"sink","inclusive_time":97,"file":"gen/moar/m-CORE.setting","jit_entries":1236,"entries":1236}]},{"exclusive_time":763,"id":34151264,"line":7763,"name":"prefix:<+>","inclusive_time":4184,"file":"gen/moar/m-CORE.setting","jit_entries":617,"entries":618,"callees":[{"exclusive_time":1045,"id":35541456,"line":13911,"name":"Numeric","inclusive_time":3420,"spesh_entries":617,"file":"gen/moar/m-CORE.setting","entries":618,"callees":[{"exclusive_time":2193,"id":35543584,"line":13932,"name":"elems","inclusive_time":2375,"spesh_entries":617,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":618,"callees":[{"exclusive_time":85,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":85,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618},{"exclusive_time":96,"id":35552400,"line":14088,"name":"sink","inclusive_time":96,"file":"gen/moar/m-CORE.setting","jit_entries":1236,"entries":1236}]}]}]},{"exclusive_time":2130,"id":34824016,"line":929,"name":"Bool","inclusive_time":4633,"spesh_entries":617,"file":"gen/moar/m-CORE.setting","entries":618,"callees":[{"exclusive_time":86,"id":38067136,"line":3008,"name":"","allocations":[{"count":618,"id":29974584,"type":"List","jit":618}],"inclusive_time":86,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":618,"entries":618},{"exclusive_time":2256,"id":35540544,"line":13904,"name":"Bool","inclusive_time":2417,"file":"gen/moar/m-CORE.setting","jit_entries":617,"entries":618,"callees":[{"exclusive_time":64,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":64,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618},{"exclusive_time":49,"id":35552400,"line":14088,"name":"sink","inclusive_time":49,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618},{"exclusive_time":46,"id":34254320,"line":8699,"name":"prefix:<so>","inclusive_time":46,"file":"gen/moar/m-CORE.setting","jit_entries":617,"entries":618}]}]},{"exclusive_time":2833,"id":35552400,"line":14088,"name":"sink","inclusive_time":2833,"file":"gen/moar/m-CORE.setting","jit_entries":31836,"entries":31836},{"exclusive_time":10164,"id":35547840,"line":14006,"name":"pull-one","inclusive_time":10421,"file":"gen/moar/m-CORE.setting","jit_entries":15917,"entries":15918,"callees":[{"exclusive_time":257,"id":35548144,"line":14013,"name":"reify-and-pull-one","inclusive_time":257,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618}]},{"exclusive_time":48798,"id":25520320,"line":1558,"name":"infix:<=:=>","inclusive_time":215547,"file":"gen/moar/m-CORE.setting","jit_entries":15298,"entries":15300,"callees":[{"exclusive_time":156356,"id":38060448,"line":2048,"name":"","allocations":[{"count":30600,"id":19706296,"type":"BOOTCode"},{"count":30600,"id":19707232,"type":"NQPArray"},{"count":15300,"id":19706248,"type":"BOOTHash"}],"inclusive_time":162158,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":15300,"callees":[{"exclusive_time":5802,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":5802,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":15300,"entries":15300}]},{"exclusive_time":4591,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":4591,"file":"gen/moar/m-CORE.setting","entries":15300}]},{"exclusive_time":61635,"id":72023696,"line":85,"name":"","inclusive_time":62990388,"file":"hibbified-249.p6","jit_entries":15143,"entries":15300,"callees":[{"exclusive_time":296070,"id":68917312,"line":29,"name":"hamming-distance","allocations":[{"count":4997,"id":29974944,"type":"Int","jit":4750}],"inclusive_time":62928753,"file":"hibbified-249.p6","jit_entries":15053,"entries":15300,"callees":[{"exclusive_time":778464,"id":38350080,"line":2222,"name":"accepts_type","allocations":[{"count":30600,"id":19707232,"type":"NQPArray","jit":30480},{"count":61200,"id":19707280,"type":"NQPArrayIter","jit":60960},{"count":61200,"id":19706176,"type":"BOOTNum","jit":60960}],"inclusive_time":1316749,"file":"gen/moar/m-Metamodel.nqp","deopt_one":30480,"jit_entries":30480,"entries":30600,"callees":[{"exclusive_time":3390,"id":38370448,"line":3092,"name":"role_typecheck_list","inclusive_time":3390,"file":"gen/moar/m-Metamodel.nqp","jit_entries":30530,"entries":30600},{"exclusive_time":231950,"id":38346736,"line":2140,"name":"archetypes","allocations":[{"count":91800,"id":19707280,"type":"NQPArrayIter","jit":91738},{"count":61200,"id":19707304,"type":"NQPHashIter","jit":61158}],"inclusive_time":260211,"file":"gen/moar/m-Metamodel.nqp","jit_entries":91738,"entries":91800,"callees":[{"exclusive_time":6072,"id":38373488,"line":3168,"name":"archetypes","inclusive_time":6072,"file":"gen/moar/m-Metamodel.nqp","jit_entries":61160,"entries":61200},{"exclusive_time":17814,"id":38284416,"line":88,"name":"generic","inclusive_time":17814,"file":"gen/moar/m-Metamodel.nqp","inlined_entries":91738,"jit_entries":91796,"entries":91800},{"exclusive_time":4373,"id":38297792,"line":304,"name":"archetypes","inclusive_time":4373,"file":"gen/moar/m-Metamodel.nqp","jit_entries":30530,"entries":30600}]},{"exclusive_time":17930,"id":38284416,"line":88,"name":"generic","inclusive_time":17930,"file":"gen/moar/m-Metamodel.nqp","inlined_entries":30480,"jit_entries":91797,"entries":91800},{"exclusive_time":5914,"id":38348560,"line":2202,"name":"curried_role","inclusive_time":5914,"file":"gen/moar/m-Metamodel.nqp","jit_entries":61160,"entries":61200},{"exclusive_time":9445,"id":20424240,"line":596,"name":"push","inclusive_time":9445,"file":"gen/moar/stage2/NQPCORE.setting","jit_entries":30592,"entries":30600},{"exclusive_time":2810,"id":38348864,"line":2206,"name":"role_arguments","inclusive_time":2810,"file":"gen/moar/m-Metamodel.nqp","jit_entries":30530,"entries":30600},{"exclusive_time":210812,"id":38319072,"line":1073,"name":"find_method","allocations":[{"count":30600,"id":19706248,"type":"BOOTHash","jit":30487},{"count":30600,"id":19707280,"type":"NQPArrayIter","jit":30487}],"inclusive_time":234592,"file":"gen/moar/m-Metamodel.nqp","jit_entries":30487,"entries":30600,"callees":[{"exclusive_time":4722,"id":38376832,"line":3264,"name":"submethod_table","allocations":[{"count":30600,"id":19706248,"type":"BOOTHash","jit":30530}],"inclusive_time":4722,"file":"gen/moar/m-Metamodel.nqp","jit_entries":30530,"entries":30600},{"exclusive_time":7484,"id":38318160,"line":1041,"name":"mro","inclusive_time":7484,"file":"gen/moar/m-Metamodel.nqp","inlined_entries":30487,"jit_entries":30555,"entries":30600},{"exclusive_time":4695,"id":38376528,"line":3263,"name":"method_table","allocations":[{"count":30600,"id":19706248,"type":"BOOTHash","jit":30530}],"inclusive_time":4695,"file":"gen/moar/m-Metamodel.nqp","jit_entries":30530,"entries":30600},{"exclusive_time":6877,"id":38304176,"line":515,"name":"method_table","inclusive_time":6877,"file":"gen/moar/m-Metamodel.nqp","jit_entries":30590,"entries":30600}]},{"exclusive_time":3989,"id":34889376,"line":1749,"name":"ACCEPTS","inclusive_time":3989,"file":"gen/moar/m-CORE.setting","jit_entries":30530,"entries":30600}]},{"exclusive_time":37031,"id":34689344,"line":29503,"name":"METAOP_ZIP","inclusive_time":54660,"file":"gen/moar/m-CORE.setting","jit_entries":15256,"entries":15300,"callees":[{"exclusive_time":17629,"id":38057408,"line":1621,"name":"","allocations":[{"count":15300,"id":29975160,"spesh":15300,"type":"Block"},{"count":15300,"id":19706296,"spesh":15300,"type":"BOOTCode"}],"inclusive_time":17629,"spesh_entries":15300,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":15300}]},{"exclusive_time":289619,"id":34689648,"line":29504,"name":"","allocations":[{"count":15300,"id":19706296,"spesh":15240,"type":"BOOTCode"},{"count":61200,"id":29975016,"spesh":60960,"type":"Scalar"},{"count":15300,"id":29974896,"spesh":15240,"type":"Array"}],"inclusive_time":5277006,"spesh_entries":15240,"file":"gen/moar/m-CORE.setting","entries":15300,"callees":[{"exclusive_time":121686,"id":35537504,"line":13831,"name":"from-slurpy-onearg","allocations":[{"count":15300,"id":19706296,"spesh":15278,"type":"BOOTCode"},{"count":15300,"id":29975112,"spesh":15278,"type":"Capture"},{"count":15300,"id":29975016,"spesh":15278,"type":"Scalar"}],"inclusive_time":279976,"spesh_entries":15278,"file":"gen/moar/m-CORE.setting","entries":15300,"callees":[{"exclusive_time":5987,"id":35435664,"line":12248,"name":"FLATTENABLE_LIST","inclusive_time":5987,"file":"gen/moar/m-CORE.setting","jit_entries":15298,"entries":15300},{"exclusive_time":7828,"id":35435968,"line":12249,"name":"FLATTENABLE_HASH","allocations":[{"count":15300,"id":19706248,"type":"BOOTHash","jit":15298}],"inclusive_time":7828,"file":"gen/moar/m-CORE.setting","jit_entries":15298,"entries":15300},{"exclusive_time":102448,"id":35537200,"line":13817,"name":"from-slurpy","allocations":[{"count":15300,"id":29974584,"type":"List"},{"count":15300,"id":54157808,"type":"IterationBuffer"},{"count":15300,"id":51227144,"type":"List::Reifier"}],"inclusive_time":144474,"file":"gen/moar/m-CORE.setting","entries":15300,"callees":[{"exclusive_time":3430,"id":38067136,"line":3008,"name":"","allocations":[{"count":15300,"id":29974584,"type":"List","jit":15300}],"inclusive_time":3430,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":15300,"entries":15300},{"exclusive_time":34819,"id":35546320,"line":13985,"name":"reification-target","inclusive_time":38596,"file":"gen/moar/m-CORE.setting","jit_entries":15297,"entries":15300,"callees":[{"exclusive_time":2283,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":2283,"file":"gen/moar/m-CORE.setting","jit_entries":15300,"entries":15300},{"exclusive_time":1493,"id":35552400,"line":14088,"name":"sink","inclusive_time":1493,"file":"gen/moar/m-CORE.setting","jit_entries":15300,"entries":15300}]}]}]},{"exclusive_time":96896,"id":35543584,"line":13932,"name":"elems","allocations":[{"count":15300,"id":29975016,"spesh":15240,"type":"Scalar","jit":60}],"inclusive_time":452235,"spesh_entries":15240,"file":"gen/moar/m-CORE.setting","jit_entries":60,"entries":15300,"callees":[{"exclusive_time":1575,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":1575,"file":"gen/moar/m-CORE.setting","jit_entries":15300,"entries":15300},{"exclusive_time":1286,"id":35552400,"line":14088,"name":"sink","inclusive_time":1286,"file":"gen/moar/m-CORE.setting","jit_entries":15300,"entries":15300},{"exclusive_time":137405,"id":35591616,"line":13753,"name":"reify-until-lazy","allocations":[{"count":15300,"id":19706296,"type":"BOOTCode","jit":15290},{"count":30600,"id":29975016,"type":"Scalar","jit":30580}],"inclusive_time":335151,"file":"gen/moar/m-CORE.setting","deopt_one":15290,"jit_entries":15290,"entries":15300,"callees":[{"exclusive_time":1681,"id":35552400,"line":14088,"name":"sink","inclusive_time":1681,"file":"gen/moar/m-CORE.setting","jit_entries":15300,"entries":15300},{"exclusive_time":2047,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":2047,"file":"gen/moar/m-CORE.setting","jit_entries":15300,"entries":15300},{"exclusive_time":100268,"id":35592832,"line":13760,"name":"","allocations":[{"count":61200,"id":19706296,"type":"BOOTCode","jit":61132}],"inclusive_time":194016,"file":"gen/moar/m-CORE.setting","jit_entries":30566,"entries":30600,"callees":[{"exclusive_time":64455,"id":35593744,"line":13769,"name":"","allocations":[{"count":30600,"id":29975016,"type":"Scalar","jit":30580}],"inclusive_time":84318,"file":"gen/moar/m-CORE.setting","jit_entries":30580,"entries":30600,"callees":[{"exclusive_time":5,"id":34916736,"line":1907,"name":"push","inclusive_time":18,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":38067136,"line":3008,"name":"","allocations":[{"count":1,"id":29974584,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":10,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":11,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":35438704,"line":12283,"name":"push","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":19845,"id":35438704,"line":12283,"name":"push","inclusive_time":19845,"file":"gen/moar/m-CORE.setting","entries":30599}]},{"exclusive_time":9429,"id":34818544,"line":856,"name":"sink","inclusive_time":9429,"file":"gen/moar/m-CORE.setting","entries":30600}]}]},{"exclusive_time":1687,"id":34818544,"line":856,"name":"sink","inclusive_time":1687,"file":"gen/moar/m-CORE.setting","jit_entries":15300,"entries":15300},{"exclusive_time":11840,"id":35595264,"line":13795,"name":"fully-reified","inclusive_time":15637,"file":"gen/moar/m-CORE.setting","jit_entries":15290,"entries":15300,"callees":[{"exclusive_time":3797,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":3797,"file":"gen/moar/m-CORE.setting","inlined_entries":30580,"jit_entries":30600,"entries":30600}]}]},{"exclusive_time":8747,"id":34228480,"line":8515,"name":"infix:<==>","inclusive_time":8747,"spesh_entries":15240,"file":"gen/moar/m-CORE.setting","inlined_entries":15240,"jit_entries":60,"entries":15300},{"exclusive_time":14631,"id":38055584,"line":1563,"name":"","allocations":[{"count":15300,"id":29975184,"spesh":15270,"type":"Code"},{"count":15300,"id":19706296,"spesh":15270,"type":"BOOTCode"}],"inclusive_time":14631,"spesh_entries":15270,"file":"gen/moar/m-BOOTSTRAP.nqp","inlined_entries":15240,"entries":15300},{"exclusive_time":87755,"id":34689952,"line":29508,"name":"","inclusive_time":3437565,"file":"gen/moar/m-CORE.setting","jit_entries":15265,"entries":15300,"callees":[{"exclusive_time":12882,"id":38057408,"line":1621,"name":"","allocations":[{"count":15300,"id":29975160,"spesh":15300,"type":"Block"},{"count":15300,"id":19706296,"spesh":15300,"type":"BOOTCode"}],"inclusive_time":12882,"spesh_entries":15300,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":15300},{"exclusive_time":164700,"id":35044416,"line":3773,"name":"map","inclusive_time":927713,"spesh_entries":15297,"file":"gen/moar/m-CORE.setting","entries":15300,"callees":[{"exclusive_time":3033,"id":38067136,"line":3008,"name":"","allocations":[{"count":15300,"id":29974584,"type":"List","jit":15300}],"inclusive_time":3033,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":15300,"entries":15300},{"exclusive_time":305006,"id":38060448,"line":2048,"name":"","allocations":[{"count":30600,"id":19706296,"type":"BOOTCode"},{"count":30600,"id":19707232,"type":"NQPArray"},{"count":15300,"id":19706248,"type":"BOOTHash"}],"inclusive_time":308919,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":15300,"callees":[{"exclusive_time":3912,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":3912,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":15300,"entries":15300}]},{"exclusive_time":89709,"id":35045632,"line":3779,"name":"map","allocations":[{"count":30600,"id":29975016,"spesh":30586,"type":"Scalar"}],"inclusive_time":451060,"spesh_entries":15293,"file":"gen/moar/m-CORE.setting","entries":15300,"callees":[{"exclusive_time":81978,"id":35546624,"line":13990,"name":"iterator","allocations":[{"count":15300,"id":19706296,"type":"BOOTCode","jit":15299}],"inclusive_time":183685,"file":"gen/moar/m-CORE.setting","jit_entries":15299,"entries":15300,"callees":[{"exclusive_time":2459,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":2459,"file":"gen/moar/m-CORE.setting","jit_entries":15300,"entries":15300},{"exclusive_time":1556,"id":35552400,"line":14088,"name":"sink","inclusive_time":1556,"file":"gen/moar/m-CORE.setting","jit_entries":15300,"entries":15300},{"exclusive_time":13705,"id":35546928,"line":13992,"name":"","allocations":[{"count":15300,"id":29975016,"type":"Scalar","jit":15300}],"inclusive_time":13705,"file":"gen/moar/m-CORE.setting","jit_entries":15300,"entries":15300},{"exclusive_time":69875,"id":35547536,"line":14004,"name":"new","allocations":[{"count":15300,"id":53651952,"type":"<anon|352550624>","jit":15299}],"inclusive_time":83985,"file":"gen/moar/m-CORE.setting","jit_entries":15299,"entries":15300,"callees":[{"exclusive_time":3445,"id":34798480,"line":495,"name":"of","inclusive_time":3445,"file":"gen/moar/m-CORE.setting","jit_entries":15299,"entries":15300},{"exclusive_time":10664,"id":35547232,"line":13998,"name":"BUILD","inclusive_time":10664,"file":"gen/moar/m-CORE.setting","jit_entries":15299,"entries":15300}]}]},{"exclusive_time":107362,"id":35048976,"line":3840,"name":"sequential-map","allocations":[{"count":30600,"id":19706296,"type":"BOOTCode","jit":30598},{"count":45900,"id":29975016,"type":"Scalar","jit":45897}],"inclusive_time":177665,"file":"gen/moar/m-CORE.setting","jit_entries":15299,"entries":15300,"callees":[{"exclusive_time":26598,"id":35157504,"line":6408,"name":"count","inclusive_time":28572,"file":"gen/moar/m-CORE.setting","jit_entries":15299,"entries":15300,"callees":[{"exclusive_time":1973,"id":35839376,"line":18706,"name":"count","inclusive_time":1973,"file":"gen/moar/m-CORE.setting","jit_entries":15300,"entries":15300}]},{"exclusive_time":2843,"id":34228480,"line":8515,"name":"infix:<==>","inclusive_time":2843,"file":"gen/moar/m-CORE.setting","inlined_entries":15299,"jit_entries":15300,"entries":15300},{"exclusive_time":5841,"id":35049888,"line":3847,"name":"","inclusive_time":5841,"file":"gen/moar/m-CORE.setting","jit_entries":15299,"entries":15300},{"exclusive_time":25716,"id":35147168,"line":3827,"name":"new","allocations":[{"count":45900,"id":29975016,"type":"Scalar","jit":45897},{"count":15300,"id":53654184,"type":"<anon|159066640>","jit":15299}],"inclusive_time":25716,"file":"gen/moar/m-CORE.setting","jit_entries":15299,"entries":15300},{"exclusive_time":7329,"id":35446304,"line":12399,"name":"new","allocations":[{"count":15300,"id":53654904,"type":"Seq","jit":15299}],"inclusive_time":7329,"file":"gen/moar/m-CORE.setting","jit_entries":15299,"entries":15300}]}]}]},{"exclusive_time":67555,"id":35447520,"line":12420,"name":"eager","inclusive_time":2409213,"file":"gen/moar/m-CORE.setting","jit_entries":15260,"entries":15300,"callees":[{"exclusive_time":54656,"id":35446912,"line":12407,"name":"iterator","inclusive_time":66947,"file":"gen/moar/m-CORE.setting","jit_entries":15300,"entries":15300,"callees":[{"exclusive_time":1304,"id":35552400,"line":14088,"name":"sink","inclusive_time":1304,"file":"gen/moar/m-CORE.setting","jit_entries":15300,"entries":15300},{"exclusive_time":10986,"id":38361936,"line":2635,"name":"type_check","inclusive_time":10986,"file":"gen/moar/m-Metamodel.nqp","jit_entries":15300,"entries":15300}]},{"exclusive_time":29778,"id":35536896,"line":13804,"name":"from-iterator","allocations":[{"count":15300,"id":29974584,"type":"List","jit":15290},{"count":15300,"id":54157808,"type":"IterationBuffer","jit":15290},{"count":15300,"id":51227144,"type":"List::Reifier","jit":15290}],"inclusive_time":62546,"file":"gen/moar/m-CORE.setting","jit_entries":15290,"entries":15300,"callees":[{"exclusive_time":29307,"id":35546320,"line":13985,"name":"reification-target","inclusive_time":32767,"file":"gen/moar/m-CORE.setting","jit_entries":15297,"entries":15300,"callees":[{"exclusive_time":1958,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":1958,"file":"gen/moar/m-CORE.setting","jit_entries":15300,"entries":15300},{"exclusive_time":1501,"id":35552400,"line":14088,"name":"sink","inclusive_time":1501,"file":"gen/moar/m-CORE.setting","jit_entries":15300,"entries":15300}]}]},{"exclusive_time":47354,"id":35567296,"line":14247,"name":"eager","inclusive_time":2212163,"file":"gen/moar/m-CORE.setting","jit_entries":15290,"entries":15300,"callees":[{"exclusive_time":93550,"id":35594048,"line":13778,"name":"reify-all","allocations":[{"count":15300,"id":19706296,"type":"BOOTCode","jit":15290},{"count":30600,"id":29975016,"type":"Scalar","jit":30580}],"inclusive_time":2163499,"file":"gen/moar/m-CORE.setting","jit_entries":15290,"entries":15300,"callees":[{"exclusive_time":33244,"id":34958992,"line":2463,"name":"push-all","allocations":[{"count":15300,"id":29975016,"type":"Scalar","jit":15290}],"inclusive_time":2056380,"file":"gen/moar/m-CORE.setting","jit_entries":15290,"entries":15300,"callees":[{"exclusive_time":52000,"id":34958688,"line":2454,"name":"push-at-least","allocations":[{"count":15300,"id":29975016,"spesh":15290,"type":"Scalar"}],"inclusive_time":2021650,"spesh_entries":15290,"file":"gen/moar/m-CORE.setting","entries":15300,"callees":[{"exclusive_time":286820,"id":34958080,"line":2436,"name":"push-exactly","allocations":[{"count":30600,"id":29975016,"type":"Scalar","jit":30592}],"inclusive_time":1969649,"file":"gen/moar/m-CORE.setting","deopt_one":15296,"jit_entries":15296,"entries":15300,"callees":[{"exclusive_time":514610,"id":35050192,"line":3853,"name":"pull-one","allocations":[{"count":45900,"id":19706296,"type":"BOOTCode","jit":45879},{"count":107100,"id":29975016,"type":"Scalar","jit":107051}],"inclusive_time":1661005,"file":"gen/moar/m-CORE.setting","deopt_one":30586,"jit_entries":45879,"entries":45900,"callees":[{"exclusive_time":6570,"id":34255840,"line":8705,"name":"prefix:<!>","inclusive_time":6570,"file":"gen/moar/m-CORE.setting","inlined_entries":30586,"jit_entries":45897,"entries":45900},{"exclusive_time":34546,"id":35163280,"line":6478,"name":"phasers","inclusive_time":36935,"file":"gen/moar/m-CORE.setting","jit_entries":30600,"entries":30600,"callees":[{"exclusive_time":2389,"id":35552400,"line":14088,"name":"sink","inclusive_time":2389,"file":"gen/moar/m-CORE.setting","jit_entries":30600,"entries":30600}]},{"exclusive_time":12355,"id":34151264,"line":7763,"name":"prefix:<+>","inclusive_time":84373,"file":"gen/moar/m-CORE.setting","jit_entries":15299,"entries":15300,"callees":[{"exclusive_time":21275,"id":35541456,"line":13911,"name":"Numeric","inclusive_time":72018,"spesh_entries":15299,"file":"gen/moar/m-CORE.setting","entries":15300,"callees":[{"exclusive_time":46467,"id":35543584,"line":13932,"name":"elems","inclusive_time":50742,"spesh_entries":15299,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":15300,"callees":[{"exclusive_time":1900,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":1900,"file":"gen/moar/m-CORE.setting","jit_entries":15300,"entries":15300},{"exclusive_time":2373,"id":35552400,"line":14088,"name":"sink","inclusive_time":2373,"file":"gen/moar/m-CORE.setting","jit_entries":30600,"entries":30600}]}]}]},{"exclusive_time":45240,"id":34824016,"line":929,"name":"Bool","inclusive_time":94174,"spesh_entries":15299,"file":"gen/moar/m-CORE.setting","entries":15300,"callees":[{"exclusive_time":2339,"id":38067136,"line":3008,"name":"","allocations":[{"count":15300,"id":29974584,"type":"List","jit":15300}],"inclusive_time":2339,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":15300,"entries":15300},{"exclusive_time":42469,"id":35540544,"line":13904,"name":"Bool","inclusive_time":46595,"file":"gen/moar/m-CORE.setting","jit_entries":15299,"entries":15300,"callees":[{"exclusive_time":1673,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":1673,"file":"gen/moar/m-CORE.setting","jit_entries":15300,"entries":15300},{"exclusive_time":1473,"id":35552400,"line":14088,"name":"sink","inclusive_time":1473,"file":"gen/moar/m-CORE.setting","jit_entries":15300,"entries":15300},{"exclusive_time":979,"id":34254320,"line":8699,"name":"prefix:<so>","inclusive_time":979,"file":"gen/moar/m-CORE.setting","jit_entries":15299,"entries":15300}]}]},{"exclusive_time":7889,"id":35552400,"line":14088,"name":"sink","inclusive_time":7889,"file":"gen/moar/m-CORE.setting","jit_entries":91800,"entries":91800},{"exclusive_time":35724,"id":35547840,"line":14006,"name":"pull-one","inclusive_time":44727,"file":"gen/moar/m-CORE.setting","jit_entries":45898,"entries":45900,"callees":[{"exclusive_time":9003,"id":35548144,"line":14013,"name":"reify-and-pull-one","inclusive_time":9003,"file":"gen/moar/m-CORE.setting","jit_entries":15299,"entries":15300}]},{"exclusive_time":98036,"id":25520320,"line":1558,"name":"infix:<=:=>","inclusive_time":420144,"file":"gen/moar/m-CORE.setting","jit_entries":30596,"entries":30600,"callees":[{"exclusive_time":298624,"id":38060448,"line":2048,"name":"","allocations":[{"count":61200,"id":19706296,"type":"BOOTCode"},{"count":61200,"id":19707232,"type":"NQPArray"},{"count":30600,"id":19706248,"type":"BOOTHash"}],"inclusive_time":312104,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":30600,"callees":[{"exclusive_time":13479,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":13479,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":30600,"entries":30600}]},{"exclusive_time":10003,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":10003,"file":"gen/moar/m-CORE.setting","entries":30600}]},{"exclusive_time":195335,"id":34690256,"line":29508,"name":"","inclusive_time":414236,"file":"gen/moar/m-CORE.setting","jit_entries":30530,"entries":30600,"callees":[{"exclusive_time":2860,"id":35663664,"line":16993,"name":"is-lazy","inclusive_time":2860,"file":"gen/moar/m-CORE.setting","jit_entries":30565,"entries":30600},{"exclusive_time":10718,"id":34818544,"line":856,"name":"sink","inclusive_time":10718,"file":"gen/moar/m-CORE.setting","entries":30600},{"exclusive_time":85892,"id":35679168,"line":16487,"name":"iterator","allocations":[{"count":30600,"id":19706296,"type":"BOOTCode","jit":30566}],"inclusive_time":182584,"file":"gen/moar/m-CORE.setting","jit_entries":30566,"entries":30600,"callees":[{"exclusive_time":34191,"id":35679472,"line":16488,"name":"","allocations":[{"count":30600,"id":29975016,"type":"Scalar","jit":30566}],"inclusive_time":34191,"file":"gen/moar/m-CORE.setting","jit_entries":30566,"entries":30600},{"exclusive_time":52940,"id":35680080,"line":16497,"name":"new","allocations":[{"count":30600,"id":53651592,"type":"<anon|414432224>","jit":30530}],"inclusive_time":62501,"file":"gen/moar/m-CORE.setting","jit_entries":30530,"entries":30600,"callees":[{"exclusive_time":9560,"id":35679776,"line":16492,"name":"BUILD","inclusive_time":9560,"file":"gen/moar/m-CORE.setting","jit_entries":30530,"entries":30600}]}]},{"exclusive_time":22736,"id":35000640,"line":2551,"name":"new","allocations":[{"count":30600,"id":53654424,"type":"Rakudo::Internals::WhateverIterator","jit":30580}],"inclusive_time":22736,"file":"gen/moar/m-CORE.setting","jit_entries":30580,"entries":30600}]},{"exclusive_time":1964,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":1964,"file":"gen/moar/m-CORE.setting","jit_entries":15300,"entries":15300},{"exclusive_time":5326,"id":34818544,"line":856,"name":"sink","inclusive_time":5326,"file":"gen/moar/m-CORE.setting","entries":15300},{"exclusive_time":26134,"id":35162368,"line":6469,"name":"fire_phasers","allocations":[{"count":15300,"id":19706296,"spesh":15291,"type":"BOOTCode"}],"inclusive_time":30051,"spesh_entries":15291,"file":"gen/moar/m-CORE.setting","entries":15300,"callees":[{"exclusive_time":3917,"id":34255840,"line":8705,"name":"prefix:<!>","inclusive_time":3917,"spesh_entries":15291,"file":"gen/moar/m-CORE.setting","inlined_entries":15291,"jit_entries":8,"entries":15300}]}]},{"exclusive_time":8195,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":8195,"file":"gen/moar/m-CORE.setting","jit_entries":15300,"entries":45900},{"exclusive_time":6074,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":6074,"file":"gen/moar/m-CORE.setting","jit_entries":45900,"entries":45900},{"exclusive_time":7553,"id":35438704,"line":12283,"name":"push","inclusive_time":7553,"file":"gen/moar/m-CORE.setting","jit_entries":30594,"entries":30600}]}]},{"exclusive_time":1485,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":1485,"file":"gen/moar/m-CORE.setting","inlined_entries":15290,"jit_entries":15300,"entries":15300}]},{"exclusive_time":4873,"id":34818544,"line":856,"name":"sink","inclusive_time":4873,"file":"gen/moar/m-CORE.setting","entries":15300},{"exclusive_time":7427,"id":38361936,"line":2635,"name":"type_check","inclusive_time":7427,"file":"gen/moar/m-Metamodel.nqp","jit_entries":15300,"entries":15300},{"exclusive_time":1267,"id":35552400,"line":14088,"name":"sink","inclusive_time":1267,"file":"gen/moar/m-CORE.setting","jit_entries":15300,"entries":15300}]},{"exclusive_time":1309,"id":34818544,"line":856,"name":"sink","inclusive_time":1309,"file":"gen/moar/m-CORE.setting","jit_entries":15300,"entries":15300}]}]}]},{"exclusive_time":29769,"id":35567296,"line":14247,"name":"eager","inclusive_time":80596,"file":"gen/moar/m-CORE.setting","jit_entries":15290,"entries":15300,"callees":[{"exclusive_time":46467,"id":35594048,"line":13778,"name":"reify-all","allocations":[{"count":15300,"id":19706296,"type":"BOOTCode","jit":15290}],"inclusive_time":48939,"file":"gen/moar/m-CORE.setting","deopt_one":15290,"jit_entries":15290,"entries":15300,"callees":[{"exclusive_time":2472,"id":35552400,"line":14088,"name":"sink","inclusive_time":2472,"file":"gen/moar/m-CORE.setting","jit_entries":30600,"entries":30600}]},{"exclusive_time":1886,"id":34818544,"line":856,"name":"sink","inclusive_time":1886,"file":"gen/moar/m-CORE.setting","jit_entries":15300,"entries":15300}]},{"exclusive_time":41329,"id":35605296,"line":15771,"name":"STORE","inclusive_time":486293,"spesh_entries":15240,"file":"gen/moar/m-CORE.setting","jit_entries":25,"entries":15300,"callees":[{"exclusive_time":121498,"id":35605904,"line":15779,"name":"STORE-ITERABLE","allocations":[{"count":15300,"id":19706296,"type":"BOOTCode","jit":15240},{"count":15300,"id":54157808,"type":"IterationBuffer","jit":15240},{"count":15300,"id":29975016,"type":"Scalar","jit":15240}],"inclusive_time":444964,"file":"gen/moar/m-CORE.setting","jit_entries":15240,"entries":15300,"callees":[{"exclusive_time":48123,"id":35546624,"line":13990,"name":"iterator","allocations":[{"count":15300,"id":19706296,"type":"BOOTCode","jit":15299}],"inclusive_time":100275,"file":"gen/moar/m-CORE.setting","jit_entries":15299,"entries":15300,"callees":[{"exclusive_time":2210,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":2210,"file":"gen/moar/m-CORE.setting","jit_entries":15300,"entries":15300},{"exclusive_time":1411,"id":35552400,"line":14088,"name":"sink","inclusive_time":1411,"file":"gen/moar/m-CORE.setting","jit_entries":15300,"entries":15300},{"exclusive_time":11316,"id":35546928,"line":13992,"name":"","allocations":[{"count":15300,"id":29975016,"type":"Scalar","jit":15300}],"inclusive_time":11316,"file":"gen/moar/m-CORE.setting","jit_entries":15300,"entries":15300},{"exclusive_time":30108,"id":35547536,"line":14004,"name":"new","allocations":[{"count":15300,"id":53651952,"type":"<anon|352550624>","jit":15299}],"inclusive_time":37213,"file":"gen/moar/m-CORE.setting","jit_entries":15299,"entries":15300,"callees":[{"exclusive_time":1866,"id":34798480,"line":495,"name":"of","inclusive_time":1866,"file":"gen/moar/m-CORE.setting","jit_entries":15299,"entries":15300},{"exclusive_time":5238,"id":35547232,"line":13998,"name":"BUILD","inclusive_time":5238,"file":"gen/moar/m-CORE.setting","jit_entries":15299,"entries":15300}]}]},{"exclusive_time":18568,"id":35628704,"line":15464,"name":"new","allocations":[{"count":15300,"id":54158192,"type":"Array::ArrayReificationTarget","jit":15297}],"inclusive_time":18568,"file":"gen/moar/m-CORE.setting","jit_entries":15297,"entries":15300},{"exclusive_time":124689,"id":35548448,"line":14020,"name":"push-until-lazy","allocations":[{"count":30600,"id":29975016,"type":"Scalar","jit":30530}],"inclusive_time":201939,"file":"gen/moar/m-CORE.setting","jit_entries":15265,"entries":15300,"callees":[{"exclusive_time":41360,"id":35591616,"line":13753,"name":"reify-until-lazy","allocations":[{"count":15300,"id":19706296,"type":"BOOTCode","jit":15290}],"inclusive_time":43886,"file":"gen/moar/m-CORE.setting","jit_entries":15290,"entries":15300,"callees":[{"exclusive_time":2526,"id":35552400,"line":14088,"name":"sink","inclusive_time":2526,"file":"gen/moar/m-CORE.setting","jit_entries":30600,"entries":30600}]},{"exclusive_time":19974,"id":35629008,"line":15471,"name":"push","allocations":[{"count":30600,"id":29975016,"type":"Scalar","jit":30594}],"inclusive_time":19974,"file":"gen/moar/m-CORE.setting","jit_entries":30594,"entries":30600},{"exclusive_time":1920,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":1920,"file":"gen/moar/m-CORE.setting","inlined_entries":15265,"jit_entries":15300,"entries":15300},{"exclusive_time":8516,"id":35595264,"line":13795,"name":"fully-reified","inclusive_time":11467,"file":"gen/moar/m-CORE.setting","jit_entries":15290,"entries":15300,"callees":[{"exclusive_time":2950,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":2950,"file":"gen/moar/m-CORE.setting","inlined_entries":30580,"jit_entries":30600,"entries":30600}]}]},{"exclusive_time":2682,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":2682,"file":"gen/moar/m-CORE.setting","inlined_entries":15240,"jit_entries":15300,"entries":15300}]}]},{"exclusive_time":29322,"id":38057408,"line":1621,"name":"","allocations":[{"count":30600,"id":29975160,"spesh":30600,"type":"Block"},{"count":30600,"id":19706296,"spesh":30600,"type":"BOOTCode"}],"inclusive_time":29322,"spesh_entries":30600,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":30600},{"exclusive_time":91294,"id":34348560,"line":12668,"name":"GATHER","allocations":[{"count":15300,"id":19706296,"type":"BOOTCode","jit":15262}],"inclusive_time":180453,"file":"gen/moar/m-CORE.setting","jit_entries":15262,"entries":15300,"callees":[{"exclusive_time":21674,"id":34348864,"line":12669,"name":"","allocations":[{"count":15300,"id":19706296,"type":"BOOTCode","jit":15265},{"count":15300,"id":29975016,"type":"Scalar","jit":15265}],"inclusive_time":21674,"file":"gen/moar/m-CORE.setting","jit_entries":15265,"entries":15300},{"exclusive_time":39738,"id":34349472,"line":12676,"name":"new","allocations":[{"count":15300,"id":53652480,"type":"<anon|340889968>","jit":15262}],"inclusive_time":60705,"file":"gen/moar/m-CORE.setting","jit_entries":15262,"entries":15300,"callees":[{"exclusive_time":20966,"id":38057408,"line":1621,"name":"","allocations":[{"count":30600,"id":29975160,"spesh":30600,"type":"Block"},{"count":30600,"id":19706296,"spesh":30600,"type":"BOOTCode"}],"inclusive_time":20966,"spesh_entries":30600,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":30600}]},{"exclusive_time":6778,"id":35446304,"line":12399,"name":"new","allocations":[{"count":15300,"id":53654904,"type":"Seq","jit":15294}],"inclusive_time":6778,"file":"gen/moar/m-CORE.setting","jit_entries":15294,"entries":15300}]},{"exclusive_time":17564,"id":35037728,"line":3690,"name":"lazy-if","allocations":[{"count":15300,"id":29975016,"type":"Scalar","jit":15258}],"inclusive_time":17564,"file":"gen/moar/m-CORE.setting","jit_entries":15258,"entries":15300}]},{"exclusive_time":12338,"id":38057408,"line":1621,"name":"","allocations":[{"count":15300,"id":29975160,"spesh":15300,"type":"Block"},{"count":15300,"id":19706296,"spesh":15300,"type":"BOOTCode"}],"inclusive_time":12338,"spesh_entries":15300,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":15300},{"exclusive_time":129426,"id":35044416,"line":3773,"name":"map","inclusive_time":705237,"spesh_entries":15298,"file":"gen/moar/m-CORE.setting","entries":15300,"callees":[{"exclusive_time":2136,"id":38067136,"line":3008,"name":"","allocations":[{"count":15300,"id":29974584,"type":"List","jit":15300}],"inclusive_time":2136,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":15300,"entries":15300},{"exclusive_time":243608,"id":38060448,"line":2048,"name":"","allocations":[{"count":30600,"id":19706296,"type":"BOOTCode"},{"count":30600,"id":19707232,"type":"NQPArray"},{"count":15300,"id":19706248,"type":"BOOTHash"}],"inclusive_time":245305,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":15300,"callees":[{"exclusive_time":1696,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":1696,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":15300,"entries":15300}]},{"exclusive_time":84599,"id":35045632,"line":3779,"name":"map","allocations":[{"count":30600,"id":29975016,"spesh":30586,"type":"Scalar"}],"inclusive_time":328369,"spesh_entries":15293,"file":"gen/moar/m-CORE.setting","entries":15300,"callees":[{"exclusive_time":49814,"id":35446912,"line":12407,"name":"iterator","inclusive_time":58298,"file":"gen/moar/m-CORE.setting","jit_entries":15300,"entries":15300,"callees":[{"exclusive_time":1612,"id":35552400,"line":14088,"name":"sink","inclusive_time":1612,"file":"gen/moar/m-CORE.setting","jit_entries":15300,"entries":15300},{"exclusive_time":6871,"id":38361936,"line":2635,"name":"type_check","inclusive_time":6871,"file":"gen/moar/m-Metamodel.nqp","jit_entries":15300,"entries":15300}]},{"exclusive_time":124997,"id":35048976,"line":3840,"name":"sequential-map","allocations":[{"count":30600,"id":19706296,"type":"BOOTCode","jit":30584},{"count":45900,"id":29975016,"type":"Scalar","jit":45876}],"inclusive_time":185472,"file":"gen/moar/m-CORE.setting","jit_entries":15292,"entries":15300,"callees":[{"exclusive_time":24448,"id":35157504,"line":6408,"name":"count","inclusive_time":26745,"file":"gen/moar/m-CORE.setting","jit_entries":15300,"entries":15300,"callees":[{"exclusive_time":2296,"id":35839376,"line":18706,"name":"count","inclusive_time":2296,"file":"gen/moar/m-CORE.setting","jit_entries":15300,"entries":15300}]},{"exclusive_time":2631,"id":34228480,"line":8515,"name":"infix:<==>","inclusive_time":2631,"file":"gen/moar/m-CORE.setting","inlined_entries":15292,"jit_entries":15300,"entries":15300},{"exclusive_time":5328,"id":35049888,"line":3847,"name":"","inclusive_time":5328,"file":"gen/moar/m-CORE.setting","jit_entries":15299,"entries":15300},{"exclusive_time":21746,"id":35147168,"line":3827,"name":"new","allocations":[{"count":45900,"id":29975016,"type":"Scalar","jit":45876},{"count":15300,"id":53654184,"type":"<anon|159066640>","jit":15292}],"inclusive_time":21746,"file":"gen/moar/m-CORE.setting","jit_entries":15292,"entries":15300},{"exclusive_time":4023,"id":35446304,"line":12399,"name":"new","allocations":[{"count":15300,"id":53654904,"type":"Seq","jit":15299}],"inclusive_time":4023,"file":"gen/moar/m-CORE.setting","jit_entries":15299,"entries":15300}]}]}]},{"exclusive_time":107945,"id":35451472,"line":12474,"name":"sink","inclusive_time":55266690,"file":"gen/moar/m-CORE.setting","entries":15300,"callees":[{"exclusive_time":34159,"id":35446912,"line":12407,"name":"iterator","inclusive_time":40785,"file":"gen/moar/m-CORE.setting","jit_entries":15300,"entries":15300,"callees":[{"exclusive_time":1398,"id":35552400,"line":14088,"name":"sink","inclusive_time":1398,"file":"gen/moar/m-CORE.setting","jit_entries":15300,"entries":15300},{"exclusive_time":5228,"id":38361936,"line":2635,"name":"type_check","inclusive_time":5228,"file":"gen/moar/m-Metamodel.nqp","jit_entries":15300,"entries":15300}]},{"exclusive_time":1249522,"id":35052016,"line":3921,"name":"sink-all","allocations":[{"count":15300,"id":19706296,"type":"BOOTCode","jit":15259},{"count":91800,"id":29975016,"type":"Scalar","jit":91554}],"inclusive_time":55113681,"file":"gen/moar/m-CORE.setting","deopt_one":15259,"jit_entries":15259,"entries":15300,"callees":[{"exclusive_time":1208,"id":34255840,"line":8705,"name":"prefix:<!>","inclusive_time":1208,"file":"gen/moar/m-CORE.setting","jit_entries":15299,"entries":15300},{"exclusive_time":32676,"id":35163280,"line":6478,"name":"phasers","inclusive_time":35006,"file":"gen/moar/m-CORE.setting","jit_entries":30600,"entries":30600,"callees":[{"exclusive_time":2329,"id":35552400,"line":14088,"name":"sink","inclusive_time":2329,"file":"gen/moar/m-CORE.setting","jit_entries":30600,"entries":30600}]},{"exclusive_time":13654,"id":34151264,"line":7763,"name":"prefix:<+>","inclusive_time":91175,"file":"gen/moar/m-CORE.setting","jit_entries":15299,"entries":15300,"callees":[{"exclusive_time":23065,"id":35541456,"line":13911,"name":"Numeric","inclusive_time":77520,"spesh_entries":15299,"file":"gen/moar/m-CORE.setting","entries":15300,"callees":[{"exclusive_time":49613,"id":35543584,"line":13932,"name":"elems","inclusive_time":54455,"spesh_entries":15299,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":15300,"callees":[{"exclusive_time":2139,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":2139,"file":"gen/moar/m-CORE.setting","jit_entries":15300,"entries":15300},{"exclusive_time":2703,"id":35552400,"line":14088,"name":"sink","inclusive_time":2703,"file":"gen/moar/m-CORE.setting","jit_entries":30600,"entries":30600}]}]}]},{"exclusive_time":39061,"id":34824016,"line":929,"name":"Bool","inclusive_time":85756,"spesh_entries":15299,"file":"gen/moar/m-CORE.setting","entries":15300,"callees":[{"exclusive_time":3762,"id":38067136,"line":3008,"name":"","allocations":[{"count":15300,"id":29974584,"type":"List","jit":15300}],"inclusive_time":3762,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":15300,"entries":15300},{"exclusive_time":39225,"id":35540544,"line":13904,"name":"Bool","inclusive_time":42932,"file":"gen/moar/m-CORE.setting","jit_entries":15300,"entries":15300,"callees":[{"exclusive_time":1616,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":1616,"file":"gen/moar/m-CORE.setting","jit_entries":15300,"entries":15300},{"exclusive_time":1164,"id":35552400,"line":14088,"name":"sink","inclusive_time":1164,"file":"gen/moar/m-CORE.setting","jit_entries":15300,"entries":15300},{"exclusive_time":926,"id":34254320,"line":8699,"name":"prefix:<so>","inclusive_time":926,"file":"gen/moar/m-CORE.setting","jit_entries":15299,"entries":15300}]}]},{"exclusive_time":18095,"id":35552400,"line":14088,"name":"sink","inclusive_time":18095,"file":"gen/moar/m-CORE.setting","jit_entries":229500,"entries":229500},{"exclusive_time":840223,"id":34351296,"line":12707,"name":"pull-one","allocations":[{"count":229500,"id":29975016,"type":"Scalar","jit":229350},{"count":15300,"id":54157808,"type":"IterationBuffer","jit":15290},{"count":198900,"id":19706584,"type":"BOOTContinuation","jit":198770}],"inclusive_time":52836420,"file":"gen/moar/m-CORE.setting","deopt_one":30580,"jit_entries":214060,"entries":214200,"callees":[{"exclusive_time":1790,"id":34818544,"line":856,"name":"sink","inclusive_time":1790,"file":"gen/moar/m-CORE.setting","jit_entries":15295,"entries":15300},{"exclusive_time":117799,"id":34350384,"line":12698,"name":"","allocations":[{"count":15300,"id":19706296,"type":"BOOTCode"},{"count":15300,"id":29975016,"type":"Scalar"}],"inclusive_time":51906731,"file":"gen/moar/m-CORE.setting","entries":214200,"callees":[{"exclusive_time":243641,"id":34691168,"line":29518,"name":"","allocations":[{"count":15300,"id":19706296,"type":"BOOTCode"}],"inclusive_time":51772942,"file":"gen/moar/m-CORE.setting","entries":214200,"callees":[{"exclusive_time":2530059,"id":34691472,"line":29519,"name":"","allocations":[{"count":214200,"id":29975016,"type":"Scalar","jit":214060}],"inclusive_time":51529301,"file":"gen/moar/m-CORE.setting","jit_entries":412830,"entries":413100,"callees":[{"exclusive_time":166002,"id":38057408,"line":1621,"name":"","allocations":[{"count":214200,"id":29975160,"spesh":214200,"type":"Block"},{"count":214200,"id":19706296,"spesh":214200,"type":"BOOTCode"}],"inclusive_time":166002,"spesh_entries":214200,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":214200},{"exclusive_time":730882,"id":35045632,"line":3779,"name":"map","allocations":[{"count":428400,"id":29975016,"type":"Scalar","jit":428388}],"inclusive_time":4142877,"file":"gen/moar/m-CORE.setting","jit_entries":214194,"entries":214200,"callees":[{"exclusive_time":704880,"id":35546624,"line":13990,"name":"iterator","allocations":[{"count":214200,"id":19706296,"type":"BOOTCode","jit":214198}],"inclusive_time":1651409,"file":"gen/moar/m-CORE.setting","jit_entries":214198,"entries":214200,"callees":[{"exclusive_time":34538,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":34538,"file":"gen/moar/m-CORE.setting","jit_entries":214200,"entries":214200},{"exclusive_time":18865,"id":35552400,"line":14088,"name":"sink","inclusive_time":18865,"file":"gen/moar/m-CORE.setting","jit_entries":214200,"entries":214200},{"exclusive_time":151088,"id":35546928,"line":13992,"name":"","allocations":[{"count":214200,"id":29975016,"type":"Scalar","jit":214200}],"inclusive_time":151088,"file":"gen/moar/m-CORE.setting","jit_entries":214200,"entries":214200},{"exclusive_time":416367,"id":35547536,"line":14004,"name":"new","allocations":[{"count":214200,"id":53651952,"type":"<anon|352550624>","jit":214198}],"inclusive_time":742035,"file":"gen/moar/m-CORE.setting","jit_entries":214198,"entries":214200,"callees":[{"exclusive_time":218336,"id":35623536,"line":16147,"name":"of","inclusive_time":245422,"file":"gen/moar/m-CORE.setting","jit_entries":214068,"entries":214200,"callees":[{"exclusive_time":27086,"id":38396896,"line":3777,"name":"of","inclusive_time":27086,"spesh_entries":214065,"file":"gen/moar/m-Metamodel.nqp","entries":214200}]},{"exclusive_time":80245,"id":35547232,"line":13998,"name":"BUILD","inclusive_time":80245,"file":"gen/moar/m-CORE.setting","jit_entries":214198,"entries":214200}]}]},{"exclusive_time":1060834,"id":35048976,"line":3840,"name":"sequential-map","allocations":[{"count":428400,"id":19706296,"type":"BOOTCode","jit":428394},{"count":642600,"id":29975016,"type":"Scalar","jit":642591}],"inclusive_time":1760586,"file":"gen/moar/m-CORE.setting","jit_entries":214197,"entries":214200,"callees":[{"exclusive_time":256188,"id":35157504,"line":6408,"name":"count","inclusive_time":273614,"file":"gen/moar/m-CORE.setting","jit_entries":214200,"entries":214200,"callees":[{"exclusive_time":17426,"id":35839376,"line":18706,"name":"count","inclusive_time":17426,"file":"gen/moar/m-CORE.setting","jit_entries":214200,"entries":214200}]},{"exclusive_time":35331,"id":34228480,"line":8515,"name":"infix:<==>","inclusive_time":35331,"file":"gen/moar/m-CORE.setting","inlined_entries":214197,"jit_entries":214200,"entries":214200},{"exclusive_time":68492,"id":35049888,"line":3847,"name":"","inclusive_time":68492,"file":"gen/moar/m-CORE.setting","jit_entries":214200,"entries":214200},{"exclusive_time":255202,"id":35147168,"line":3827,"name":"new","allocations":[{"count":642600,"id":29975016,"type":"Scalar","jit":642591},{"count":214200,"id":53654184,"type":"<anon|159066640>","jit":214197}],"inclusive_time":255202,"file":"gen/moar/m-CORE.setting","jit_entries":214197,"entries":214200},{"exclusive_time":67110,"id":35446304,"line":12399,"name":"new","allocations":[{"count":214200,"id":53654904,"type":"Seq","jit":214200}],"inclusive_time":67110,"file":"gen/moar/m-CORE.setting","jit_entries":214200,"entries":214200}]}]},{"exclusive_time":512966,"id":35446912,"line":12407,"name":"iterator","inclusive_time":636908,"file":"gen/moar/m-CORE.setting","jit_entries":214200,"entries":214200,"callees":[{"exclusive_time":17665,"id":35552400,"line":14088,"name":"sink","inclusive_time":17665,"file":"gen/moar/m-CORE.setting","jit_entries":214200,"entries":214200},{"exclusive_time":106276,"id":38361936,"line":2635,"name":"type_check","inclusive_time":106276,"file":"gen/moar/m-Metamodel.nqp","jit_entries":214200,"entries":214200}]},{"exclusive_time":266917,"id":35536896,"line":13804,"name":"from-iterator","allocations":[{"count":214200,"id":29974584,"type":"List","jit":214060},{"count":214200,"id":54157808,"type":"IterationBuffer","jit":214060},{"count":214200,"id":51227144,"type":"List::Reifier","jit":214060}],"inclusive_time":636548,"file":"gen/moar/m-CORE.setting","jit_entries":214060,"entries":214200,"callees":[{"exclusive_time":325609,"id":35546320,"line":13985,"name":"reification-target","inclusive_time":369631,"file":"gen/moar/m-CORE.setting","jit_entries":214170,"entries":214200,"callees":[{"exclusive_time":27658,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":27658,"file":"gen/moar/m-CORE.setting","jit_entries":214200,"entries":214200},{"exclusive_time":16363,"id":35552400,"line":14088,"name":"sink","inclusive_time":16363,"file":"gen/moar/m-CORE.setting","jit_entries":214200,"entries":214200}]}]},{"exclusive_time":473040,"id":35567296,"line":14247,"name":"eager","inclusive_time":38216229,"file":"gen/moar/m-CORE.setting","jit_entries":214060,"entries":214200,"callees":[{"exclusive_time":1015470,"id":35594048,"line":13778,"name":"reify-all","allocations":[{"count":214200,"id":19706296,"type":"BOOTCode","jit":214060},{"count":428400,"id":29975016,"type":"Scalar","jit":428120}],"inclusive_time":37726773,"file":"gen/moar/m-CORE.setting","jit_entries":214060,"entries":214200,"callees":[{"exclusive_time":327467,"id":34958992,"line":2463,"name":"push-all","allocations":[{"count":214200,"id":29975016,"type":"Scalar","jit":214060}],"inclusive_time":36520001,"file":"gen/moar/m-CORE.setting","jit_entries":214060,"entries":214200,"callees":[{"exclusive_time":559358,"id":34958688,"line":2454,"name":"push-at-least","allocations":[{"count":214200,"id":29975016,"spesh":214060,"type":"Scalar"}],"inclusive_time":36174795,"spesh_entries":214060,"file":"gen/moar/m-CORE.setting","entries":214200,"callees":[{"exclusive_time":3345567,"id":34958080,"line":2436,"name":"push-exactly","allocations":[{"count":413100,"id":29975016,"type":"Scalar","jit":413007}],"inclusive_time":35615437,"file":"gen/moar/m-CORE.setting","deopt_one":198855,"jit_entries":214152,"entries":214200,"callees":[{"exclusive_time":5894654,"id":35050192,"line":3853,"name":"pull-one","allocations":[{"count":612000,"id":19706296,"type":"BOOTCode","jit":611731},{"count":1453500,"id":29975016,"type":"Scalar","jit":1452861}],"inclusive_time":27375455,"file":"gen/moar/m-CORE.setting","deopt_one":214106,"jit_entries":611731,"entries":612000,"callees":[{"exclusive_time":81223,"id":34255840,"line":8705,"name":"prefix:<!>","inclusive_time":81223,"file":"gen/moar/m-CORE.setting","inlined_entries":397625,"jit_entries":611996,"entries":612000},{"exclusive_time":428974,"id":35163280,"line":6478,"name":"phasers","inclusive_time":462255,"file":"gen/moar/m-CORE.setting","jit_entries":428400,"entries":428400,"callees":[{"exclusive_time":33281,"id":35552400,"line":14088,"name":"sink","inclusive_time":33281,"file":"gen/moar/m-CORE.setting","jit_entries":428400,"entries":428400}]},{"exclusive_time":159095,"id":34151264,"line":7763,"name":"prefix:<+>","inclusive_time":1035765,"file":"gen/moar/m-CORE.setting","jit_entries":214200,"entries":214200,"callees":[{"exclusive_time":225254,"id":35541456,"line":13911,"name":"Numeric","inclusive_time":876670,"spesh_entries":214200,"file":"gen/moar/m-CORE.setting","entries":214200,"callees":[{"exclusive_time":594006,"id":35543584,"line":13932,"name":"elems","inclusive_time":651415,"spesh_entries":214200,"file":"gen/moar/m-CORE.setting","entries":214200,"callees":[{"exclusive_time":23917,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":23917,"file":"gen/moar/m-CORE.setting","jit_entries":214200,"entries":214200},{"exclusive_time":33492,"id":35552400,"line":14088,"name":"sink","inclusive_time":33492,"file":"gen/moar/m-CORE.setting","jit_entries":428400,"entries":428400}]}]}]},{"exclusive_time":493027,"id":34824016,"line":929,"name":"Bool","inclusive_time":1071037,"spesh_entries":214200,"file":"gen/moar/m-CORE.setting","entries":214200,"callees":[{"exclusive_time":32094,"id":38067136,"line":3008,"name":"","allocations":[{"count":214200,"id":29974584,"type":"List","jit":214200}],"inclusive_time":32094,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":214200,"entries":214200},{"exclusive_time":493907,"id":35540544,"line":13904,"name":"Bool","inclusive_time":545915,"file":"gen/moar/m-CORE.setting","jit_entries":214200,"entries":214200,"callees":[{"exclusive_time":22613,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":22613,"file":"gen/moar/m-CORE.setting","jit_entries":214200,"entries":214200},{"exclusive_time":17062,"id":35552400,"line":14088,"name":"sink","inclusive_time":17062,"file":"gen/moar/m-CORE.setting","jit_entries":214200,"entries":214200},{"exclusive_time":12332,"id":34254320,"line":8699,"name":"prefix:<so>","inclusive_time":12332,"file":"gen/moar/m-CORE.setting","jit_entries":214200,"entries":214200}]}]},{"exclusive_time":104092,"id":35552400,"line":14088,"name":"sink","inclusive_time":104092,"file":"gen/moar/m-CORE.setting","jit_entries":1224000,"entries":1224000},{"exclusive_time":384239,"id":35547840,"line":14006,"name":"pull-one","inclusive_time":452387,"file":"gen/moar/m-CORE.setting","jit_entries":612000,"entries":612000,"callees":[{"exclusive_time":68147,"id":35548144,"line":14013,"name":"reify-and-pull-one","inclusive_time":68147,"file":"gen/moar/m-CORE.setting","jit_entries":198898,"entries":198900}]},{"exclusive_time":1261210,"id":25520320,"line":1558,"name":"infix:<=:=>","inclusive_time":5425096,"file":"gen/moar/m-CORE.setting","jit_entries":413065,"entries":413100,"callees":[{"exclusive_time":3890487,"id":38060448,"line":2048,"name":"","allocations":[{"count":826200,"id":19706296,"type":"BOOTCode"},{"count":826200,"id":19707232,"type":"NQPArray"},{"count":413100,"id":19706248,"type":"BOOTHash"}],"inclusive_time":4033885,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":413100,"callees":[{"exclusive_time":143397,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":143397,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":413100,"entries":413100}]},{"exclusive_time":130001,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":130001,"file":"gen/moar/m-CORE.setting","entries":413100}]},{"exclusive_time":1226260,"id":34691776,"line":29520,"name":"","inclusive_time":12401740,"file":"gen/moar/m-CORE.setting","deopt_one":15293,"jit_entries":412894,"entries":413100,"callees":[{"exclusive_time":434348,"id":35000944,"line":2557,"name":"pull-one","allocations":[{"count":413100,"id":19706296,"type":"BOOTCode","jit":412894}],"inclusive_time":6681622,"file":"gen/moar/m-CORE.setting","jit_entries":412894,"entries":413100,"callees":[{"exclusive_time":1229913,"id":35001552,"line":2561,"name":"","allocations":[{"count":413100,"id":29975016,"type":"Scalar","jit":412894}],"inclusive_time":6247274,"file":"gen/moar/m-CORE.setting","deopt_one":15293,"jit_entries":412894,"entries":413100,"callees":[{"exclusive_time":328021,"id":35680384,"line":16499,"name":"pull-one","allocations":[{"count":397800,"id":29974848,"spesh":397600,"type":"IntPosRef"}],"inclusive_time":328021,"spesh_entries":412893,"file":"gen/moar/m-CORE.setting","entries":413100},{"exclusive_time":1073339,"id":25520320,"line":1558,"name":"infix:<=:=>","inclusive_time":4687862,"file":"gen/moar/m-CORE.setting","jit_entries":397767,"entries":397800,"callees":[{"exclusive_time":3379529,"id":38060448,"line":2048,"name":"","allocations":[{"count":795600,"id":19706296,"type":"BOOTCode"},{"count":795600,"id":19707232,"type":"NQPArray"},{"count":397800,"id":19706248,"type":"BOOTHash"}],"inclusive_time":3495415,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":397800,"callees":[{"exclusive_time":115885,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":115885,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":397800,"entries":397800}]},{"exclusive_time":119108,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":119108,"file":"gen/moar/m-CORE.setting","entries":397800}]},{"exclusive_time":1477,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":1477,"file":"gen/moar/m-CORE.setting","jit_entries":15300,"entries":15300}]}]},{"exclusive_time":975843,"id":25520320,"line":1558,"name":"infix:<=:=>","inclusive_time":4374475,"file":"gen/moar/m-CORE.setting","jit_entries":397767,"entries":397800,"callees":[{"exclusive_time":3180139,"id":38060448,"line":2048,"name":"","allocations":[{"count":795600,"id":19706296,"type":"BOOTCode"},{"count":795600,"id":19707232,"type":"NQPArray"},{"count":397800,"id":19706248,"type":"BOOTHash"}],"inclusive_time":3286551,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":397800,"callees":[{"exclusive_time":106411,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":106411,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":397800,"entries":397800}]},{"exclusive_time":112080,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":112080,"file":"gen/moar/m-CORE.setting","entries":397800}]},{"exclusive_time":33648,"id":35552400,"line":14088,"name":"sink","inclusive_time":33648,"file":"gen/moar/m-CORE.setting","jit_entries":397800,"entries":397800},{"exclusive_time":1579,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":1579,"file":"gen/moar/m-CORE.setting","jit_entries":15300,"entries":15300},{"exclusive_time":25449,"id":25500864,"line":655,"name":"last","inclusive_time":84153,"file":"gen/moar/m-CORE.setting","jit_entries":15265,"entries":15300,"callees":[{"exclusive_time":34920,"id":25496304,"line":603,"name":"THROW-NIL","allocations":[{"count":15300,"id":19706488,"spesh":15265,"type":"BOOTException"}],"inclusive_time":58704,"spesh_entries":15265,"file":"gen/moar/m-CORE.setting","entries":15300,"callees":[{"exclusive_time":23783,"id":35051712,"line":3899,"name":"","allocations":[{"count":30600,"id":29974944,"spesh":30424,"type":"Int"},{"count":15300,"id":29975016,"spesh":15212,"type":"Scalar"}],"inclusive_time":23783,"spesh_entries":15212,"file":"gen/moar/m-CORE.setting","entries":15300}]}]}]},{"exclusive_time":20559,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":20559,"file":"gen/moar/m-CORE.setting","jit_entries":198900,"entries":198900},{"exclusive_time":68850,"id":34818544,"line":856,"name":"sink","inclusive_time":68850,"file":"gen/moar/m-CORE.setting","entries":198900},{"exclusive_time":306054,"id":35162368,"line":6469,"name":"fire_phasers","allocations":[{"count":214200,"id":19706296,"spesh":214081,"type":"BOOTCode"}],"inclusive_time":357790,"spesh_entries":214081,"file":"gen/moar/m-CORE.setting","entries":214200,"callees":[{"exclusive_time":51735,"id":34255840,"line":8705,"name":"prefix:<!>","inclusive_time":51735,"spesh_entries":214081,"file":"gen/moar/m-CORE.setting","inlined_entries":214081,"jit_entries":117,"entries":214200}]}]},{"exclusive_time":1018824,"id":25520320,"line":1558,"name":"infix:<=:=>","inclusive_time":4442312,"file":"gen/moar/m-CORE.setting","jit_entries":397767,"entries":397800,"callees":[{"exclusive_time":3203845,"id":38060448,"line":2048,"name":"","allocations":[{"count":795600,"id":19706296,"type":"BOOTCode"},{"count":795600,"id":19707232,"type":"NQPArray"},{"count":397800,"id":19706248,"type":"BOOTHash"}],"inclusive_time":3310914,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":397800,"callees":[{"exclusive_time":107069,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":107069,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":397800,"entries":397800}]},{"exclusive_time":112574,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":112574,"file":"gen/moar/m-CORE.setting","entries":397800}]},{"exclusive_time":82100,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":82100,"file":"gen/moar/m-CORE.setting","inlined_entries":15297,"jit_entries":612000,"entries":612000},{"exclusive_time":5,"id":34916736,"line":1907,"name":"push","inclusive_time":16,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":38067136,"line":3008,"name":"","allocations":[{"count":1,"id":29974584,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":8,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":9,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":35438704,"line":12283,"name":"push","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":352373,"id":35438704,"line":12283,"name":"push","inclusive_time":352373,"file":"gen/moar/m-CORE.setting","entries":397799},{"exclusive_time":17611,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":17611,"file":"gen/moar/m-CORE.setting","inlined_entries":15297,"jit_entries":214200,"entries":214200}]}]},{"exclusive_time":17739,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":17739,"file":"gen/moar/m-CORE.setting","inlined_entries":214060,"jit_entries":214200,"entries":214200}]},{"exclusive_time":68533,"id":34818544,"line":856,"name":"sink","inclusive_time":68533,"file":"gen/moar/m-CORE.setting","entries":214200},{"exclusive_time":104997,"id":38361936,"line":2635,"name":"type_check","inclusive_time":104997,"file":"gen/moar/m-Metamodel.nqp","jit_entries":214200,"entries":214200},{"exclusive_time":17769,"id":35552400,"line":14088,"name":"sink","inclusive_time":17769,"file":"gen/moar/m-CORE.setting","jit_entries":214200,"entries":214200}]},{"exclusive_time":16415,"id":34818544,"line":856,"name":"sink","inclusive_time":16415,"file":"gen/moar/m-CORE.setting","jit_entries":214200,"entries":214200}]},{"exclusive_time":32487,"id":35552400,"line":14088,"name":"sink","inclusive_time":32487,"file":"gen/moar/m-CORE.setting","jit_entries":413094,"entries":413100},{"exclusive_time":1083881,"id":35543584,"line":13932,"name":"elems","allocations":[{"count":214200,"id":29975016,"spesh":214060,"type":"Scalar","jit":133}],"inclusive_time":1743246,"spesh_entries":214060,"file":"gen/moar/m-CORE.setting","jit_entries":133,"entries":214200,"callees":[{"exclusive_time":29773,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":29773,"file":"gen/moar/m-CORE.setting","jit_entries":214200,"entries":214200},{"exclusive_time":17350,"id":35552400,"line":14088,"name":"sink","inclusive_time":17350,"file":"gen/moar/m-CORE.setting","jit_entries":214200,"entries":214200},{"exclusive_time":415790,"id":35591616,"line":13753,"name":"reify-until-lazy","allocations":[{"count":214200,"id":19706296,"type":"BOOTCode","jit":214060}],"inclusive_time":448092,"file":"gen/moar/m-CORE.setting","jit_entries":214060,"entries":214200,"callees":[{"exclusive_time":32301,"id":35552400,"line":14088,"name":"sink","inclusive_time":32301,"file":"gen/moar/m-CORE.setting","jit_entries":428400,"entries":428400}]},{"exclusive_time":15972,"id":34818544,"line":856,"name":"sink","inclusive_time":15972,"file":"gen/moar/m-CORE.setting","jit_entries":214200,"entries":214200},{"exclusive_time":106159,"id":35595264,"line":13795,"name":"fully-reified","inclusive_time":148176,"file":"gen/moar/m-CORE.setting","jit_entries":214060,"entries":214200,"callees":[{"exclusive_time":42017,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":42017,"file":"gen/moar/m-CORE.setting","inlined_entries":428120,"jit_entries":428400,"entries":428400}]}]},{"exclusive_time":34449,"id":34229392,"line":8526,"name":"infix:«<»","inclusive_time":34449,"file":"gen/moar/m-CORE.setting","inlined_entries":214060,"jit_entries":214200,"entries":214200},{"exclusive_time":23366,"id":34228480,"line":8515,"name":"infix:<==>","inclusive_time":23366,"file":"gen/moar/m-CORE.setting","inlined_entries":198770,"jit_entries":198900,"entries":198900},{"exclusive_time":380042,"id":35568208,"line":14273,"name":"FLATTENABLE_LIST","inclusive_time":432830,"file":"gen/moar/m-CORE.setting","jit_entries":198770,"entries":198900,"callees":[{"exclusive_time":24212,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":24212,"file":"gen/moar/m-CORE.setting","jit_entries":198900,"entries":198900},{"exclusive_time":28574,"id":35552400,"line":14088,"name":"sink","inclusive_time":28574,"file":"gen/moar/m-CORE.setting","jit_entries":397800,"entries":397800}]},{"exclusive_time":22443,"id":35568512,"line":14278,"name":"FLATTENABLE_HASH","allocations":[{"count":198900,"id":19706248,"type":"BOOTHash","jit":198770}],"inclusive_time":22443,"file":"gen/moar/m-CORE.setting","jit_entries":198770,"entries":198900},{"exclusive_time":499041,"id":34206592,"line":8023,"name":"infix:<+^>","inclusive_time":630811,"file":"gen/moar/m-CORE.setting","entries":198900,"callees":[{"exclusive_time":13,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"spesh":2,"type":"BOOTCode"},{"count":2,"id":19707232,"spesh":2,"type":"NQPArray"},{"count":1,"id":19706248,"spesh":1,"type":"BOOTHash"}],"inclusive_time":13,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":131756,"id":34233344,"line":8571,"name":"infix:<+^>","inclusive_time":131756,"file":"gen/moar/m-CORE.setting","entries":198900}]},{"exclusive_time":16,"id":25497520,"line":631,"name":"take-rw","inclusive_time":98,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":11,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":61,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":39,"id":38059536,"line":1708,"name":"","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":17,"id":19707232,"type":"NQPArray"},{"count":4,"id":19707280,"type":"NQPArrayIter"},{"count":6,"id":19706248,"type":"BOOTHash"},{"count":6,"id":19706752,"type":"BOOTIntArray"},{"count":4,"id":19706152,"type":"BOOTInt"}],"inclusive_time":48,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":9,"id":38059840,"line":1738,"name":"is_narrower","inclusive_time":9,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":6,"entries":6}]},{"exclusive_time":0,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":3,"id":25498128,"line":633,"name":"take-rw","inclusive_time":20,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":3,"id":25496000,"line":596,"name":"THROW","allocations":[{"count":1,"id":19706488,"type":"BOOTException"}],"inclusive_time":16,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":2,"id":34350992,"line":-1,"name":"","allocations":[{"count":2,"id":29974944,"type":"Int"}],"inclusive_time":13,"file":"/usr/local/src/rakudo/install/share/perl6/runtime/CORE.setting.moarvm","entries":2,"callees":[{"exclusive_time":9,"id":34349776,"line":12680,"name":"","inclusive_time":10,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":0,"id":35438704,"line":12283,"name":"push","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":1,"id":38057408,"line":1621,"name":"","allocations":[{"count":1,"id":29975160,"spesh":1,"type":"Block"},{"count":1,"id":19706296,"spesh":1,"type":"BOOTCode"}],"inclusive_time":1,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]}]}]}]}]},{"exclusive_time":16274,"id":34818544,"line":856,"name":"sink","inclusive_time":16274,"file":"gen/moar/m-CORE.setting","jit_entries":198900,"entries":198900},{"exclusive_time":268010,"id":25498128,"line":633,"name":"take-rw","inclusive_time":2240550,"file":"gen/moar/m-CORE.setting","jit_entries":397540,"entries":397798,"callees":[{"exclusive_time":272227,"id":25496000,"line":596,"name":"THROW","allocations":[{"count":198899,"id":19706488,"spesh":198770,"type":"BOOTException"}],"inclusive_time":1972540,"spesh_entries":397540,"file":"gen/moar/m-CORE.setting","entries":397798,"callees":[{"exclusive_time":339145,"id":34350992,"line":-1,"name":"","allocations":[{"count":397798,"id":29974944,"spesh":397540,"type":"Int"}],"inclusive_time":1700312,"spesh_entries":397540,"file":"/usr/local/src/rakudo/install/share/perl6/runtime/CORE.setting.moarvm","entries":397798,"callees":[{"exclusive_time":1064747,"id":34349776,"line":12680,"name":"","inclusive_time":1361166,"file":"gen/moar/m-CORE.setting","entries":397798,"callees":[{"exclusive_time":123867,"id":35438704,"line":12283,"name":"push","inclusive_time":123867,"file":"gen/moar/m-CORE.setting","entries":198899},{"exclusive_time":172551,"id":38057408,"line":1621,"name":"","allocations":[{"count":198899,"id":29975160,"spesh":198899,"type":"Block"},{"count":198899,"id":19706296,"spesh":198899,"type":"BOOTCode"}],"inclusive_time":172551,"spesh_entries":198899,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":198899}]}]}]}]},{"exclusive_time":15932,"id":25500864,"line":655,"name":"last","inclusive_time":24113,"file":"gen/moar/m-CORE.setting","jit_entries":15265,"entries":15300,"callees":[{"exclusive_time":8181,"id":25496304,"line":603,"name":"THROW-NIL","allocations":[{"count":15300,"id":19706488,"spesh":15265,"type":"BOOTException"}],"inclusive_time":8181,"spesh_entries":15265,"file":"gen/moar/m-CORE.setting","entries":15300}]}]}]},{"exclusive_time":15990,"id":38057408,"line":1621,"name":"","allocations":[{"count":15300,"id":29975160,"spesh":15300,"type":"Block"},{"count":15300,"id":19706296,"spesh":15300,"type":"BOOTCode"}],"inclusive_time":15990,"spesh_entries":15300,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":15300}]},{"exclusive_time":58243,"id":34350080,"line":12692,"name":"","inclusive_time":58243,"file":"gen/moar/m-CORE.setting","jit_entries":198770,"entries":198900},{"exclusive_time":16494,"id":35552400,"line":14088,"name":"sink","inclusive_time":16494,"file":"gen/moar/m-CORE.setting","jit_entries":198900,"entries":198900},{"exclusive_time":12937,"id":34350688,"line":12700,"name":"","inclusive_time":12937,"file":"gen/moar/m-CORE.setting","jit_entries":15240,"entries":15300}]},{"exclusive_time":717443,"id":66501744,"line":31,"name":"","allocations":[{"count":15300,"id":29975016,"spesh":15288,"type":"Scalar"},{"count":199322,"id":29974992,"spesh":198756,"type":"IntLexRef"}],"inclusive_time":764737,"spesh_entries":198756,"file":"hibbified-249.p6","entries":198900,"callees":[{"exclusive_time":11,"id":33997440,"line":2176,"name":"postfix:<++>","inclusive_time":28,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":13,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":13,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":3,"id":34220880,"line":8409,"name":"postfix:<++>","inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":17512,"id":34818544,"line":856,"name":"sink","inclusive_time":17512,"file":"gen/moar/m-CORE.setting","jit_entries":199322,"entries":199322},{"exclusive_time":29752,"id":34220880,"line":8409,"name":"postfix:<++>","inclusive_time":29752,"file":"gen/moar/m-CORE.setting","jit_entries":199308,"entries":199321}]},{"exclusive_time":5655,"id":34818544,"line":856,"name":"sink","inclusive_time":5655,"file":"gen/moar/m-CORE.setting","entries":15300},{"exclusive_time":22303,"id":35162368,"line":6469,"name":"fire_phasers","allocations":[{"count":15300,"id":19706296,"spesh":15292,"type":"BOOTCode"}],"inclusive_time":26103,"spesh_entries":15292,"file":"gen/moar/m-CORE.setting","entries":15300,"callees":[{"exclusive_time":3799,"id":34255840,"line":8705,"name":"prefix:<!>","inclusive_time":3799,"spesh_entries":15292,"file":"gen/moar/m-CORE.setting","inlined_entries":15292,"jit_entries":8,"entries":15300}]}]},{"exclusive_time":4277,"id":34818544,"line":856,"name":"sink","inclusive_time":4277,"file":"gen/moar/m-CORE.setting","entries":15300}]}]}]},{"exclusive_time":63,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":63,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618},{"exclusive_time":206,"id":34818544,"line":856,"name":"sink","inclusive_time":206,"file":"gen/moar/m-CORE.setting","entries":618},{"exclusive_time":821,"id":35162368,"line":6469,"name":"fire_phasers","allocations":[{"count":618,"id":19706296,"spesh":618,"type":"BOOTCode"}],"inclusive_time":942,"spesh_entries":618,"file":"gen/moar/m-CORE.setting","entries":618,"callees":[{"exclusive_time":120,"id":34255840,"line":8705,"name":"prefix:<!>","inclusive_time":120,"spesh_entries":618,"file":"gen/moar/m-CORE.setting","inlined_entries":618,"entries":618}]}]},{"exclusive_time":3617,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":3617,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":15918},{"exclusive_time":2429,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":2429,"file":"gen/moar/m-CORE.setting","jit_entries":15918,"entries":15918},{"exclusive_time":11788,"id":35438704,"line":12283,"name":"push","inclusive_time":11788,"file":"gen/moar/m-CORE.setting","entries":15300}]}]},{"exclusive_time":71,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":71,"file":"gen/moar/m-CORE.setting","inlined_entries":617,"jit_entries":618,"entries":618}]}]},{"exclusive_time":194,"id":34818544,"line":856,"name":"sink","inclusive_time":194,"file":"gen/moar/m-CORE.setting","entries":618},{"exclusive_time":25,"id":34899408,"line":1805,"name":"elems","inclusive_time":105,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":2,"id":38067136,"line":3008,"name":"","allocations":[{"count":1,"id":29974584,"type":"List","jit":1}],"inclusive_time":2,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":12,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":76,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":49,"id":38059536,"line":1708,"name":"","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":17,"id":19707232,"type":"NQPArray"},{"count":4,"id":19707280,"type":"NQPArrayIter"},{"count":6,"id":19706248,"type":"BOOTHash"},{"count":6,"id":19706752,"type":"BOOTIntArray"},{"count":3,"id":19706152,"type":"BOOTInt"}],"inclusive_time":63,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":13,"id":38059840,"line":1738,"name":"is_narrower","inclusive_time":13,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":6,"entries":6}]},{"exclusive_time":0,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":35438400,"line":12279,"name":"elems","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":670,"id":38057408,"line":1621,"name":"","allocations":[{"count":618,"id":29975160,"spesh":618,"type":"Block"},{"count":618,"id":19706296,"spesh":618,"type":"BOOTCode"}],"inclusive_time":670,"spesh_entries":618,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":618},{"exclusive_time":92111,"id":27193424,"line":284,"name":"p6sort","osr":1,"allocations":[{"count":1236,"id":19706752,"spesh":1232,"type":"BOOTIntArray"},{"count":1236,"id":19707280,"spesh":1232,"type":"NQPArrayIter"}],"inclusive_time":291150,"spesh_entries":617,"file":"src/vm/moar/Perl6/Ops.nqp","entries":618,"callees":[{"exclusive_time":13043,"id":35223472,"line":8258,"name":"Num","allocations":[{"count":67715,"id":29974920,"type":"Num","jit":67699}],"inclusive_time":13043,"file":"gen/moar/m-CORE.setting","jit_entries":67699,"entries":67715},{"exclusive_time":85320,"id":35105824,"line":4696,"name":"","inclusive_time":185995,"file":"gen/moar/m-CORE.setting","jit_entries":52258,"entries":52415,"callees":[{"exclusive_time":11561,"id":34271344,"line":8789,"name":"infix:<cmp>","inclusive_time":11561,"file":"gen/moar/m-CORE.setting","jit_entries":52302,"entries":52415},{"exclusive_time":73692,"id":34824016,"line":929,"name":"Bool","inclusive_time":85131,"spesh_entries":52415,"file":"gen/moar/m-CORE.setting","entries":52415,"callees":[{"exclusive_time":6162,"id":38067136,"line":3008,"name":"","allocations":[{"count":52415,"id":29974584,"type":"List","jit":52415}],"inclusive_time":6162,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":52415,"entries":52415},{"exclusive_time":10,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":11,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":5265,"id":35222560,"line":8248,"name":"Bool","inclusive_time":5265,"file":"gen/moar/m-CORE.setting","jit_entries":52407,"entries":52415}]},{"exclusive_time":16,"id":34195952,"line":7968,"name":"infix:«<=>»","inclusive_time":35,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":12,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":13,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":1,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":5,"id":34272256,"line":8799,"name":"infix:«<=>»","inclusive_time":5,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":3946,"id":34272256,"line":8799,"name":"infix:«<=>»","inclusive_time":3946,"file":"gen/moar/m-CORE.setting","jit_entries":19790,"entries":19946}]}]},{"exclusive_time":355,"id":35438400,"line":12279,"name":"elems","allocations":[{"count":608,"id":29974944,"spesh":355,"type":"Int","jit":99}],"inclusive_time":355,"spesh_entries":361,"file":"gen/moar/m-CORE.setting","inlined_entries":361,"jit_entries":100,"entries":617}]},{"exclusive_time":74,"id":38067136,"line":3008,"name":"","allocations":[{"count":618,"id":29974584,"type":"List","jit":618}],"inclusive_time":74,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":618,"entries":618},{"exclusive_time":6215,"id":35129536,"line":4995,"name":"squish","inclusive_time":69711,"spesh_entries":411,"file":"gen/moar/m-CORE.setting","entries":618,"callees":[{"exclusive_time":66,"id":38067136,"line":3008,"name":"","allocations":[{"count":618,"id":29974584,"type":"List","jit":618}],"inclusive_time":66,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":618,"entries":618},{"exclusive_time":11362,"id":38060448,"line":2048,"name":"","allocations":[{"count":1236,"id":19706296,"type":"BOOTCode"},{"count":1236,"id":19707232,"type":"NQPArray"},{"count":618,"id":19706248,"type":"BOOTHash"},{"count":618,"id":19706440,"type":"CallCapture"}],"inclusive_time":42414,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":618,"callees":[{"exclusive_time":22,"id":38059536,"line":1708,"name":"","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":12,"id":19707232,"type":"NQPArray"},{"count":3,"id":19707280,"type":"NQPArrayIter"},{"count":4,"id":19706248,"type":"BOOTHash"},{"count":4,"id":19706752,"type":"BOOTIntArray"},{"count":2,"id":19706152,"type":"BOOTInt"}],"inclusive_time":30,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":7,"id":38059840,"line":1738,"name":"is_narrower","inclusive_time":7,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":2,"entries":2}]},{"exclusive_time":2960,"id":38040688,"line":920,"name":"is_bindable","allocations":[{"count":618,"id":19706296,"spesh":618,"type":"BOOTCode"}],"inclusive_time":31021,"spesh_entries":618,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":618,"callees":[{"exclusive_time":3314,"id":38040992,"line":926,"name":"","inclusive_time":28060,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":618,"callees":[{"exclusive_time":8838,"id":38038560,"line":606,"name":"bind","allocations":[{"count":618,"id":29974560,"spesh":617,"type":"Hash"}],"inclusive_time":24746,"spesh_entries":617,"file":"gen/moar/m-BOOTSTRAP.nqp","deopt_one":617,"entries":618,"callees":[{"exclusive_time":10058,"id":38036736,"line":168,"name":"bind_one_param","allocations":[{"count":3708,"id":19706296,"type":"BOOTCode"},{"count":618,"id":29975016,"type":"Scalar"}],"inclusive_time":13751,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1854,"callees":[{"exclusive_time":3506,"id":38361936,"line":2635,"name":"type_check","allocations":[{"count":1236,"id":19707280,"type":"NQPArrayIter"}],"inclusive_time":3693,"file":"gen/moar/m-Metamodel.nqp","entries":618,"callees":[{"exclusive_time":186,"id":38290800,"line":161,"name":"pretending_to_be","inclusive_time":186,"file":"gen/moar/m-Metamodel.nqp","jit_entries":617,"entries":618}]}]},{"exclusive_time":2016,"id":38038256,"line":573,"name":"handle_optional","inclusive_time":2156,"spesh_entries":616,"file":"gen/moar/m-BOOTSTRAP.nqp","deopt_one":616,"entries":618,"callees":[{"exclusive_time":139,"id":35134400,"line":5050,"name":"","inclusive_time":139,"file":"gen/moar/m-CORE.setting","jit_entries":539,"entries":618}]}]}]}]}]},{"exclusive_time":5664,"id":35134096,"line":5050,"name":"squish","allocations":[{"count":1236,"id":19706296,"spesh":1022,"type":"BOOTCode"}],"inclusive_time":21015,"spesh_entries":511,"file":"gen/moar/m-CORE.setting","entries":618,"callees":[{"exclusive_time":642,"id":38055584,"line":1563,"name":"","allocations":[{"count":618,"id":29975184,"spesh":617,"type":"Code"},{"count":618,"id":19706296,"spesh":617,"type":"BOOTCode"}],"inclusive_time":642,"spesh_entries":617,"file":"gen/moar/m-BOOTSTRAP.nqp","inlined_entries":511,"entries":618},{"exclusive_time":65,"id":35134400,"line":5050,"name":"","inclusive_time":65,"file":"gen/moar/m-CORE.setting","jit_entries":540,"entries":618},{"exclusive_time":1070,"id":35134704,"line":5051,"name":"","allocations":[{"count":618,"id":29975016,"type":"Scalar","jit":461}],"inclusive_time":1070,"file":"gen/moar/m-CORE.setting","jit_entries":461,"entries":618},{"exclusive_time":2098,"id":35135312,"line":5061,"name":"new","allocations":[{"count":618,"id":53653368,"type":"<anon|171669248>","jit":411}],"inclusive_time":12725,"file":"gen/moar/m-CORE.setting","jit_entries":411,"entries":618,"callees":[{"exclusive_time":3286,"id":35135008,"line":5056,"name":"BUILD","allocations":[{"count":1236,"id":29975016,"type":"Scalar","jit":822}],"inclusive_time":10627,"file":"gen/moar/m-CORE.setting","deopt_one":411,"jit_entries":411,"entries":618,"callees":[{"exclusive_time":3280,"id":35546624,"line":13990,"name":"iterator","allocations":[{"count":618,"id":19706296,"type":"BOOTCode","jit":618}],"inclusive_time":7340,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618,"callees":[{"exclusive_time":112,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":112,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618},{"exclusive_time":67,"id":35552400,"line":14088,"name":"sink","inclusive_time":67,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618},{"exclusive_time":512,"id":35546928,"line":13992,"name":"","allocations":[{"count":618,"id":29975016,"type":"Scalar","jit":618}],"inclusive_time":512,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618},{"exclusive_time":2640,"id":35547536,"line":14004,"name":"new","allocations":[{"count":618,"id":53651952,"type":"<anon|352550624>","jit":618}],"inclusive_time":3367,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618,"callees":[{"exclusive_time":171,"id":34798480,"line":495,"name":"of","inclusive_time":171,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618},{"exclusive_time":556,"id":35547232,"line":13998,"name":"BUILD","allocations":[{"count":618,"id":29975016,"type":"Scalar","jit":618}],"inclusive_time":556,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618}]}]}]}]},{"exclusive_time":846,"id":35446304,"line":12399,"name":"new","allocations":[{"count":618,"id":53654904,"type":"Seq"}],"inclusive_time":846,"file":"gen/moar/m-CORE.setting","entries":618}]}]},{"exclusive_time":28,"id":35141088,"line":5123,"name":"head","inclusive_time":274,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":38067136,"line":3008,"name":"","allocations":[{"count":1,"id":29974584,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":12,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":42,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":23,"id":38059536,"line":1708,"name":"","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":9,"id":19707232,"type":"NQPArray"},{"count":2,"id":19707280,"type":"NQPArrayIter"},{"count":4,"id":19706248,"type":"BOOTHash"},{"count":2,"id":19706752,"type":"BOOTIntArray"},{"count":2,"id":19706152,"type":"BOOTInt"}],"inclusive_time":28,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":5,"id":38059840,"line":1738,"name":"is_narrower","inclusive_time":5,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":2,"entries":2}]},{"exclusive_time":1,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":105,"id":35141392,"line":5124,"name":"head","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":202,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":12,"id":34201424,"line":7999,"name":"infix:«<=»","inclusive_time":47,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":33,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":34,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":34230000,"line":8533,"name":"infix:«<=»","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":2,"id":35141696,"line":5127,"name":"","allocations":[{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":34,"id":35142304,"line":5135,"name":"new","allocations":[{"count":1,"id":53653320,"type":"<anon|182679216>"}],"inclusive_time":46,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":6,"id":35142000,"line":5130,"name":"BUILD","allocations":[{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":12,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":4,"id":35446912,"line":12407,"name":"iterator","inclusive_time":5,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":38361936,"line":2635,"name":"type_check","inclusive_time":0,"file":"gen/moar/m-Metamodel.nqp","jit_entries":1,"entries":1}]}]}]},{"exclusive_time":0,"id":35446304,"line":12399,"name":"new","allocations":[{"count":1,"id":53654904,"type":"Seq"}],"inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":6621,"id":35141392,"line":5124,"name":"head","allocations":[{"count":617,"id":19706296,"type":"BOOTCode","jit":485},{"count":617,"id":29975016,"type":"Scalar","jit":485}],"inclusive_time":14266,"file":"gen/moar/m-CORE.setting","jit_entries":485,"entries":617,"callees":[{"exclusive_time":268,"id":34230000,"line":8533,"name":"infix:«<=»","inclusive_time":268,"file":"gen/moar/m-CORE.setting","jit_entries":539,"entries":617},{"exclusive_time":61,"id":35552400,"line":14088,"name":"sink","inclusive_time":61,"file":"gen/moar/m-CORE.setting","jit_entries":617,"entries":617},{"exclusive_time":940,"id":35141696,"line":5127,"name":"","allocations":[{"count":617,"id":29975016,"type":"Scalar","jit":539}],"inclusive_time":940,"file":"gen/moar/m-CORE.setting","jit_entries":539,"entries":617},{"exclusive_time":1715,"id":35142304,"line":5135,"name":"new","allocations":[{"count":617,"id":53653320,"type":"<anon|182679216>","jit":510}],"inclusive_time":5758,"file":"gen/moar/m-CORE.setting","jit_entries":510,"entries":617,"callees":[{"exclusive_time":1660,"id":35142000,"line":5130,"name":"BUILD","allocations":[{"count":617,"id":29975016,"type":"Scalar","jit":510}],"inclusive_time":4042,"file":"gen/moar/m-CORE.setting","jit_entries":510,"entries":617,"callees":[{"exclusive_time":1912,"id":35446912,"line":12407,"name":"iterator","inclusive_time":2382,"file":"gen/moar/m-CORE.setting","jit_entries":617,"entries":617,"callees":[{"exclusive_time":54,"id":35552400,"line":14088,"name":"sink","inclusive_time":54,"file":"gen/moar/m-CORE.setting","jit_entries":617,"entries":617},{"exclusive_time":414,"id":38361936,"line":2635,"name":"type_check","inclusive_time":414,"file":"gen/moar/m-Metamodel.nqp","jit_entries":617,"entries":617}]}]}]},{"exclusive_time":616,"id":35446304,"line":12399,"name":"new","allocations":[{"count":617,"id":53654904,"type":"Seq"}],"inclusive_time":616,"file":"gen/moar/m-CORE.setting","entries":617}]}]},{"exclusive_time":3283,"id":35605296,"line":15771,"name":"STORE","inclusive_time":425933,"spesh_entries":661,"file":"gen/moar/m-CORE.setting","jit_entries":554,"entries":1226,"callees":[{"exclusive_time":9219,"id":35605904,"line":15779,"name":"STORE-ITERABLE","allocations":[{"count":1226,"id":19706296,"type":"BOOTCode","jit":1213},{"count":1226,"id":54157808,"type":"IterationBuffer","jit":1213},{"count":1226,"id":29975016,"type":"Scalar","jit":1213}],"inclusive_time":422650,"file":"gen/moar/m-CORE.setting","jit_entries":1213,"entries":1226,"callees":[{"exclusive_time":1282,"id":35446912,"line":12407,"name":"iterator","inclusive_time":1537,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618,"callees":[{"exclusive_time":53,"id":35552400,"line":14088,"name":"sink","inclusive_time":53,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618},{"exclusive_time":200,"id":38361936,"line":2635,"name":"type_check","inclusive_time":200,"file":"gen/moar/m-Metamodel.nqp","jit_entries":618,"entries":618}]},{"exclusive_time":1146,"id":35628704,"line":15464,"name":"new","allocations":[{"count":1226,"id":54158192,"type":"Array::ArrayReificationTarget","jit":1226}],"inclusive_time":1146,"file":"gen/moar/m-CORE.setting","jit_entries":1226,"entries":1226},{"exclusive_time":3610,"id":34959600,"line":2476,"name":"push-until-lazy","allocations":[{"count":618,"id":29975016,"type":"Scalar","jit":607}],"inclusive_time":239108,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":618,"callees":[{"exclusive_time":110,"id":34961120,"line":2511,"name":"is-lazy","inclusive_time":110,"file":"gen/moar/m-CORE.setting","jit_entries":612,"entries":618},{"exclusive_time":1903,"id":34958992,"line":2463,"name":"push-all","allocations":[{"count":618,"id":29975016,"type":"Scalar","jit":609}],"inclusive_time":235386,"file":"gen/moar/m-CORE.setting","jit_entries":609,"entries":618,"callees":[{"exclusive_time":3118,"id":34958688,"line":2454,"name":"push-at-least","allocations":[{"count":618,"id":29975016,"spesh":617,"type":"Scalar"}],"inclusive_time":233331,"spesh_entries":617,"file":"gen/moar/m-CORE.setting","entries":618,"callees":[{"exclusive_time":33821,"id":34958080,"line":2436,"name":"push-exactly","allocations":[{"count":1236,"id":29975016,"type":"Scalar","jit":1220}],"inclusive_time":230212,"file":"gen/moar/m-CORE.setting","deopt_one":610,"jit_entries":610,"entries":618,"callees":[{"exclusive_time":26966,"id":35142608,"line":5136,"name":"pull-one","allocations":[{"count":6798,"id":29974536,"type":"IntAttrRef","jit":6663}],"inclusive_time":104536,"file":"gen/moar/m-CORE.setting","deopt_one":6057,"jit_entries":6663,"entries":6798,"callees":[{"exclusive_time":2757,"id":34221488,"line":8419,"name":"postfix:<-->","inclusive_time":2757,"file":"gen/moar/m-CORE.setting","jit_entries":6787,"entries":6798},{"exclusive_time":24433,"id":35135616,"line":5062,"name":"pull-one","allocations":[{"count":6180,"id":29974536,"type":"IntAttrRef","jit":5923},{"count":6798,"id":29975016,"type":"Scalar","jit":6515}],"inclusive_time":74812,"file":"gen/moar/m-CORE.setting","jit_entries":5923,"entries":6180,"callees":[{"exclusive_time":2544,"id":35547840,"line":14006,"name":"pull-one","inclusive_time":2544,"file":"gen/moar/m-CORE.setting","jit_entries":6177,"entries":6180},{"exclusive_time":71,"id":34818544,"line":856,"name":"sink","inclusive_time":71,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618},{"exclusive_time":14,"id":33992880,"line":2155,"name":"infix:<===>","inclusive_time":140,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":32,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":33,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":12,"id":33993488,"line":2157,"name":"infix:<===>","allocations":[{"count":2,"id":29975016,"type":"Scalar"}],"inclusive_time":93,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":14,"id":34820368,"line":881,"name":"WHICH","inclusive_time":76,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":38067136,"line":3008,"name":"","allocations":[{"count":1,"id":29974584,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":12,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":39,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":20,"id":38059536,"line":1708,"name":"","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":12,"id":19707232,"type":"NQPArray"},{"count":3,"id":19707280,"type":"NQPArrayIter"},{"count":4,"id":19706248,"type":"BOOTHash"},{"count":4,"id":19706752,"type":"BOOTIntArray"},{"count":2,"id":19706152,"type":"BOOTInt"}],"inclusive_time":26,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":6,"id":38059840,"line":1738,"name":"is_narrower","inclusive_time":6,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":2,"entries":2}]},{"exclusive_time":0,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":19,"id":34820976,"line":885,"name":"WHICH","allocations":[{"count":1,"id":29975040,"type":"ObjAt"}],"inclusive_time":22,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":3,"id":38286544,"line":104,"name":"name","inclusive_time":3,"file":"gen/moar/m-Metamodel.nqp","entries":1}]}]},{"exclusive_time":2,"id":34820976,"line":885,"name":"WHICH","allocations":[{"count":1,"id":29975040,"type":"ObjAt"}],"inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":38286544,"line":104,"name":"name","inclusive_time":0,"file":"gen/moar/m-Metamodel.nqp","entries":1}]}]}]},{"exclusive_time":915,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":915,"file":"gen/moar/m-CORE.setting","inlined_entries":5331,"jit_entries":5562,"entries":5562},{"exclusive_time":13859,"id":33993488,"line":2157,"name":"infix:<===>","allocations":[{"count":11122,"id":29975016,"type":"Scalar","jit":10880}],"inclusive_time":46707,"file":"gen/moar/m-CORE.setting","jit_entries":5440,"entries":5561,"callees":[{"exclusive_time":31763,"id":34820976,"line":885,"name":"WHICH","allocations":[{"count":11122,"id":29975040,"spesh":10967,"type":"ObjAt"}],"inclusive_time":32847,"spesh_entries":10967,"file":"gen/moar/m-CORE.setting","entries":11122,"callees":[{"exclusive_time":1084,"id":38286544,"line":104,"name":"name","inclusive_time":1084,"file":"gen/moar/m-Metamodel.nqp","jit_entries":11116,"entries":11122}]}]}]}]},{"exclusive_time":23614,"id":25520320,"line":1558,"name":"infix:<=:=>","inclusive_time":84195,"file":"gen/moar/m-CORE.setting","jit_entries":6180,"entries":6180,"callees":[{"exclusive_time":56497,"id":38060448,"line":2048,"name":"","allocations":[{"count":12360,"id":19706296,"type":"BOOTCode"},{"count":12360,"id":19707232,"type":"NQPArray"},{"count":6180,"id":19706248,"type":"BOOTHash"}],"inclusive_time":58697,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":6180,"callees":[{"exclusive_time":2199,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":2199,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":6180,"entries":6180}]},{"exclusive_time":1883,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":1883,"file":"gen/moar/m-CORE.setting","entries":6180}]},{"exclusive_time":902,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":902,"file":"gen/moar/m-CORE.setting","jit_entries":6798,"entries":6798},{"exclusive_time":6652,"id":35629008,"line":15471,"name":"push","allocations":[{"count":6180,"id":29975016,"type":"Scalar"}],"inclusive_time":6652,"file":"gen/moar/m-CORE.setting","entries":6180},{"exclusive_time":104,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":104,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618}]}]},{"exclusive_time":151,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":151,"file":"gen/moar/m-CORE.setting","inlined_entries":609,"jit_entries":618,"entries":618}]}]},{"exclusive_time":245,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":245,"file":"gen/moar/m-CORE.setting","inlined_entries":1213,"jit_entries":1226,"entries":1226},{"exclusive_time":2359,"id":35546624,"line":13990,"name":"iterator","allocations":[{"count":608,"id":19706296,"type":"BOOTCode","jit":608}],"inclusive_time":4510,"file":"gen/moar/m-CORE.setting","jit_entries":608,"entries":608,"callees":[{"exclusive_time":71,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":71,"file":"gen/moar/m-CORE.setting","jit_entries":608,"entries":608},{"exclusive_time":53,"id":35552400,"line":14088,"name":"sink","inclusive_time":53,"file":"gen/moar/m-CORE.setting","jit_entries":608,"entries":608},{"exclusive_time":402,"id":35546928,"line":13992,"name":"","allocations":[{"count":608,"id":29975016,"type":"Scalar","jit":608}],"inclusive_time":402,"file":"gen/moar/m-CORE.setting","jit_entries":608,"entries":608},{"exclusive_time":1308,"id":35547536,"line":14004,"name":"new","allocations":[{"count":608,"id":53651952,"type":"<anon|352550624>","jit":608}],"inclusive_time":1623,"file":"gen/moar/m-CORE.setting","jit_entries":608,"entries":608,"callees":[{"exclusive_time":71,"id":34798480,"line":495,"name":"of","inclusive_time":71,"file":"gen/moar/m-CORE.setting","jit_entries":608,"entries":608},{"exclusive_time":243,"id":35547232,"line":13998,"name":"BUILD","inclusive_time":243,"file":"gen/moar/m-CORE.setting","jit_entries":608,"entries":608}]}]},{"exclusive_time":18536,"id":35548448,"line":14020,"name":"push-until-lazy","allocations":[{"count":1216,"id":29975016,"type":"Scalar","jit":1214}],"inclusive_time":166882,"file":"gen/moar/m-CORE.setting","deopt_one":607,"jit_entries":607,"entries":608,"callees":[{"exclusive_time":5185,"id":35591616,"line":13753,"name":"reify-until-lazy","allocations":[{"count":608,"id":19706296,"type":"BOOTCode","jit":608},{"count":1216,"id":29975016,"type":"Scalar","jit":1216},{"count":608,"id":29974944,"type":"Int","jit":608}],"inclusive_time":136947,"file":"gen/moar/m-CORE.setting","deopt_one":608,"jit_entries":608,"entries":608,"callees":[{"exclusive_time":55,"id":35552400,"line":14088,"name":"sink","inclusive_time":55,"file":"gen/moar/m-CORE.setting","jit_entries":608,"entries":608},{"exclusive_time":80,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":80,"file":"gen/moar/m-CORE.setting","jit_entries":608,"entries":608},{"exclusive_time":4007,"id":35592832,"line":13760,"name":"","allocations":[{"count":2432,"id":19706296,"type":"BOOTCode","jit":2428}],"inclusive_time":131626,"file":"gen/moar/m-CORE.setting","deopt_one":1214,"jit_entries":1214,"entries":1216,"callees":[{"exclusive_time":4905,"id":35593136,"line":13762,"name":"","inclusive_time":127497,"file":"gen/moar/m-CORE.setting","jit_entries":1009,"entries":1216,"callees":[{"exclusive_time":4593,"id":35546624,"line":13990,"name":"iterator","allocations":[{"count":1216,"id":19706296,"type":"BOOTCode","jit":1208}],"inclusive_time":9330,"file":"gen/moar/m-CORE.setting","jit_entries":1208,"entries":1216,"callees":[{"exclusive_time":167,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":167,"file":"gen/moar/m-CORE.setting","jit_entries":1211,"entries":1216},{"exclusive_time":100,"id":35552400,"line":14088,"name":"sink","inclusive_time":100,"file":"gen/moar/m-CORE.setting","jit_entries":1216,"entries":1216},{"exclusive_time":791,"id":35546928,"line":13992,"name":"","allocations":[{"count":1216,"id":29975016,"type":"Scalar","jit":1216}],"inclusive_time":791,"file":"gen/moar/m-CORE.setting","jit_entries":1216,"entries":1216},{"exclusive_time":2826,"id":35547536,"line":14004,"name":"new","allocations":[{"count":1216,"id":53651952,"type":"<anon|352550624>","jit":1208}],"inclusive_time":3679,"file":"gen/moar/m-CORE.setting","jit_entries":1208,"entries":1216,"callees":[{"exclusive_time":137,"id":34798480,"line":495,"name":"of","inclusive_time":137,"file":"gen/moar/m-CORE.setting","jit_entries":1208,"entries":1216},{"exclusive_time":716,"id":35547232,"line":13998,"name":"BUILD","allocations":[{"count":608,"id":29975016,"type":"Scalar","jit":604}],"inclusive_time":716,"file":"gen/moar/m-CORE.setting","jit_entries":1208,"entries":1216}]}]},{"exclusive_time":16013,"id":35548448,"line":14020,"name":"push-until-lazy","allocations":[{"count":2432,"id":29975016,"type":"Scalar","jit":2416},{"count":608,"id":29974944,"type":"Int","jit":604}],"inclusive_time":113092,"file":"gen/moar/m-CORE.setting","jit_entries":1208,"entries":1216,"callees":[{"exclusive_time":5755,"id":35591616,"line":13753,"name":"reify-until-lazy","allocations":[{"count":608,"id":19706296,"type":"BOOTCode","jit":608},{"count":1216,"id":29975016,"type":"Scalar","jit":1216}],"inclusive_time":89151,"file":"gen/moar/m-CORE.setting","deopt_one":608,"jit_entries":608,"entries":608,"callees":[{"exclusive_time":3142,"id":34959600,"line":2476,"name":"push-until-lazy","allocations":[{"count":608,"id":29975016,"type":"Scalar","jit":598}],"inclusive_time":82971,"file":"gen/moar/m-CORE.setting","jit_entries":598,"entries":608,"callees":[{"exclusive_time":74,"id":34961120,"line":2511,"name":"is-lazy","inclusive_time":74,"file":"gen/moar/m-CORE.setting","jit_entries":603,"entries":608},{"exclusive_time":1845,"id":34958992,"line":2463,"name":"push-all","allocations":[{"count":608,"id":29975016,"type":"Scalar","jit":600}],"inclusive_time":79754,"file":"gen/moar/m-CORE.setting","jit_entries":600,"entries":608,"callees":[{"exclusive_time":3150,"id":34958688,"line":2454,"name":"push-at-least","allocations":[{"count":608,"id":29975016,"spesh":608,"type":"Scalar"}],"inclusive_time":77848,"spesh_entries":608,"file":"gen/moar/m-CORE.setting","entries":608,"callees":[{"exclusive_time":18239,"id":34958080,"line":2436,"name":"push-exactly","allocations":[{"count":1216,"id":29975016,"type":"Scalar","jit":1200}],"inclusive_time":74697,"file":"gen/moar/m-CORE.setting","deopt_one":600,"jit_entries":600,"entries":608,"callees":[{"exclusive_time":11793,"id":35142608,"line":5136,"name":"pull-one","allocations":[{"count":3648,"id":29974536,"type":"IntAttrRef","jit":3576}],"inclusive_time":14845,"file":"gen/moar/m-CORE.setting","jit_entries":3576,"entries":3648,"callees":[{"exclusive_time":1700,"id":34221488,"line":8419,"name":"postfix:<-->","inclusive_time":1700,"file":"gen/moar/m-CORE.setting","jit_entries":3648,"entries":3648},{"exclusive_time":1350,"id":35547840,"line":14006,"name":"pull-one","inclusive_time":1350,"file":"gen/moar/m-CORE.setting","jit_entries":3040,"entries":3040}]},{"exclusive_time":9000,"id":25520320,"line":1558,"name":"infix:<=:=>","inclusive_time":38859,"file":"gen/moar/m-CORE.setting","jit_entries":3040,"entries":3040,"callees":[{"exclusive_time":27927,"id":38060448,"line":2048,"name":"","allocations":[{"count":6080,"id":19706296,"type":"BOOTCode"},{"count":6080,"id":19707232,"type":"NQPArray"},{"count":3040,"id":19706248,"type":"BOOTHash"}],"inclusive_time":28955,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":3040,"callees":[{"exclusive_time":1028,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":1028,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":3040,"entries":3040}]},{"exclusive_time":903,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":903,"file":"gen/moar/m-CORE.setting","entries":3040}]},{"exclusive_time":506,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":506,"file":"gen/moar/m-CORE.setting","jit_entries":3648,"entries":3648},{"exclusive_time":2165,"id":35438704,"line":12283,"name":"push","inclusive_time":2165,"file":"gen/moar/m-CORE.setting","entries":3040},{"exclusive_time":81,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":81,"file":"gen/moar/m-CORE.setting","jit_entries":608,"entries":608}]}]},{"exclusive_time":61,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":61,"file":"gen/moar/m-CORE.setting","inlined_entries":600,"jit_entries":608,"entries":608}]}]},{"exclusive_time":51,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":51,"file":"gen/moar/m-CORE.setting","jit_entries":608,"entries":608},{"exclusive_time":308,"id":38361936,"line":2635,"name":"type_check","inclusive_time":308,"file":"gen/moar/m-Metamodel.nqp","jit_entries":608,"entries":608},{"exclusive_time":64,"id":35552400,"line":14088,"name":"sink","inclusive_time":64,"file":"gen/moar/m-CORE.setting","jit_entries":608,"entries":608}]},{"exclusive_time":7338,"id":35438704,"line":12283,"name":"push","inclusive_time":7338,"file":"gen/moar/m-CORE.setting","entries":15200},{"exclusive_time":156,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":156,"file":"gen/moar/m-CORE.setting","inlined_entries":1208,"jit_entries":1216,"entries":1216},{"exclusive_time":312,"id":35595264,"line":13795,"name":"fully-reified","inclusive_time":432,"file":"gen/moar/m-CORE.setting","jit_entries":608,"entries":608,"callees":[{"exclusive_time":119,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":119,"file":"gen/moar/m-CORE.setting","inlined_entries":1216,"jit_entries":1216,"entries":1216}]}]},{"exclusive_time":168,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":168,"file":"gen/moar/m-CORE.setting","inlined_entries":1009,"jit_entries":1216,"entries":1216}]},{"exclusive_time":120,"id":35552400,"line":14088,"name":"sink","inclusive_time":120,"file":"gen/moar/m-CORE.setting","jit_entries":1216,"entries":1216}]}]},{"exclusive_time":10903,"id":35629008,"line":15471,"name":"push","allocations":[{"count":15200,"id":29975016,"type":"Scalar"}],"inclusive_time":10903,"file":"gen/moar/m-CORE.setting","entries":15200},{"exclusive_time":68,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":68,"file":"gen/moar/m-CORE.setting","jit_entries":608,"entries":608},{"exclusive_time":314,"id":35595264,"line":13795,"name":"fully-reified","inclusive_time":427,"file":"gen/moar/m-CORE.setting","jit_entries":608,"entries":608,"callees":[{"exclusive_time":113,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":113,"file":"gen/moar/m-CORE.setting","inlined_entries":1216,"jit_entries":1216,"entries":1216}]}]}]}]},{"exclusive_time":1189,"id":34403280,"line":14967,"name":"postcircumfix:<[ ]>","inclusive_time":2224,"file":"gen/moar/m-CORE.setting","inlined_entries":361,"jit_entries":616,"entries":618,"callees":[{"exclusive_time":1034,"id":35608944,"line":15835,"name":"AT-POS","inclusive_time":1034,"spesh_entries":616,"file":"gen/moar/m-CORE.setting","entries":618}]},{"exclusive_time":11969,"id":68917312,"line":29,"name":"hamming-distance","allocations":[{"count":167,"id":29974944,"type":"Int","jit":157}],"inclusive_time":2527450,"file":"hibbified-249.p6","jit_entries":608,"entries":618,"callees":[{"exclusive_time":30470,"id":38350080,"line":2222,"name":"accepts_type","allocations":[{"count":1236,"id":19707232,"type":"NQPArray","jit":1230},{"count":2472,"id":19707280,"type":"NQPArrayIter","jit":2460},{"count":2472,"id":19706176,"type":"BOOTNum","jit":2460}],"inclusive_time":51449,"file":"gen/moar/m-Metamodel.nqp","deopt_one":1230,"jit_entries":1230,"entries":1236,"callees":[{"exclusive_time":133,"id":38370448,"line":3092,"name":"role_typecheck_list","inclusive_time":133,"file":"gen/moar/m-Metamodel.nqp","jit_entries":1232,"entries":1236},{"exclusive_time":9166,"id":38346736,"line":2140,"name":"archetypes","allocations":[{"count":3708,"id":19707280,"type":"NQPArrayIter","jit":3702},{"count":2472,"id":19707304,"type":"NQPHashIter","jit":2468}],"inclusive_time":10182,"file":"gen/moar/m-Metamodel.nqp","jit_entries":3702,"entries":3708,"callees":[{"exclusive_time":234,"id":38373488,"line":3168,"name":"archetypes","inclusive_time":234,"file":"gen/moar/m-Metamodel.nqp","jit_entries":2468,"entries":2472},{"exclusive_time":643,"id":38284416,"line":88,"name":"generic","inclusive_time":643,"file":"gen/moar/m-Metamodel.nqp","inlined_entries":3702,"jit_entries":3708,"entries":3708},{"exclusive_time":138,"id":38297792,"line":304,"name":"archetypes","inclusive_time":138,"file":"gen/moar/m-Metamodel.nqp","jit_entries":1232,"entries":1236}]},{"exclusive_time":732,"id":38284416,"line":88,"name":"generic","inclusive_time":732,"file":"gen/moar/m-Metamodel.nqp","inlined_entries":1230,"jit_entries":3708,"entries":3708},{"exclusive_time":224,"id":38348560,"line":2202,"name":"curried_role","inclusive_time":224,"file":"gen/moar/m-Metamodel.nqp","jit_entries":2468,"entries":2472},{"exclusive_time":417,"id":20424240,"line":596,"name":"push","inclusive_time":417,"file":"gen/moar/stage2/NQPCORE.setting","jit_entries":1236,"entries":1236},{"exclusive_time":113,"id":38348864,"line":2206,"name":"role_arguments","inclusive_time":113,"file":"gen/moar/m-Metamodel.nqp","jit_entries":1232,"entries":1236},{"exclusive_time":8060,"id":38319072,"line":1073,"name":"find_method","allocations":[{"count":1236,"id":19706248,"type":"BOOTHash","jit":1232},{"count":1236,"id":19707280,"type":"NQPArrayIter","jit":1232}],"inclusive_time":9010,"file":"gen/moar/m-Metamodel.nqp","jit_entries":1232,"entries":1236,"callees":[{"exclusive_time":214,"id":38376832,"line":3264,"name":"submethod_table","allocations":[{"count":1236,"id":19706248,"type":"BOOTHash","jit":1232}],"inclusive_time":214,"file":"gen/moar/m-Metamodel.nqp","jit_entries":1232,"entries":1236},{"exclusive_time":294,"id":38318160,"line":1041,"name":"mro","inclusive_time":294,"file":"gen/moar/m-Metamodel.nqp","inlined_entries":1232,"jit_entries":1234,"entries":1236},{"exclusive_time":187,"id":38376528,"line":3263,"name":"method_table","allocations":[{"count":1236,"id":19706248,"type":"BOOTHash","jit":1232}],"inclusive_time":187,"file":"gen/moar/m-Metamodel.nqp","jit_entries":1232,"entries":1236},{"exclusive_time":254,"id":38304176,"line":515,"name":"method_table","inclusive_time":254,"file":"gen/moar/m-Metamodel.nqp","jit_entries":1236,"entries":1236}]},{"exclusive_time":165,"id":34889376,"line":1749,"name":"ACCEPTS","inclusive_time":165,"file":"gen/moar/m-CORE.setting","jit_entries":1232,"entries":1236}]},{"exclusive_time":1609,"id":34689344,"line":29503,"name":"METAOP_ZIP","inclusive_time":2469,"file":"gen/moar/m-CORE.setting","jit_entries":616,"entries":618,"callees":[{"exclusive_time":860,"id":38057408,"line":1621,"name":"","allocations":[{"count":618,"id":29975160,"spesh":618,"type":"Block"},{"count":618,"id":19706296,"spesh":618,"type":"BOOTCode"}],"inclusive_time":860,"spesh_entries":618,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":618}]},{"exclusive_time":11499,"id":34689648,"line":29504,"name":"","allocations":[{"count":618,"id":19706296,"spesh":615,"type":"BOOTCode"},{"count":2472,"id":29975016,"spesh":2460,"type":"Scalar"},{"count":618,"id":29974896,"spesh":615,"type":"Array"}],"inclusive_time":215806,"spesh_entries":615,"file":"gen/moar/m-CORE.setting","entries":618,"callees":[{"exclusive_time":4859,"id":35537504,"line":13831,"name":"from-slurpy-onearg","allocations":[{"count":618,"id":19706296,"spesh":617,"type":"BOOTCode"},{"count":618,"id":29975112,"spesh":617,"type":"Capture"},{"count":618,"id":29975016,"spesh":617,"type":"Scalar"}],"inclusive_time":11915,"spesh_entries":617,"file":"gen/moar/m-CORE.setting","entries":618,"callees":[{"exclusive_time":240,"id":35435664,"line":12248,"name":"FLATTENABLE_LIST","inclusive_time":240,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618},{"exclusive_time":304,"id":35435968,"line":12249,"name":"FLATTENABLE_HASH","allocations":[{"count":618,"id":19706248,"type":"BOOTHash","jit":618}],"inclusive_time":304,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618},{"exclusive_time":4629,"id":35537200,"line":13817,"name":"from-slurpy","allocations":[{"count":618,"id":29974584,"type":"List"},{"count":618,"id":54157808,"type":"IterationBuffer"},{"count":618,"id":51227144,"type":"List::Reifier"}],"inclusive_time":6510,"file":"gen/moar/m-CORE.setting","entries":618,"callees":[{"exclusive_time":128,"id":38067136,"line":3008,"name":"","allocations":[{"count":618,"id":29974584,"type":"List","jit":618}],"inclusive_time":128,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":618,"entries":618},{"exclusive_time":1591,"id":35546320,"line":13985,"name":"reification-target","inclusive_time":1753,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618,"callees":[{"exclusive_time":104,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":104,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618},{"exclusive_time":57,"id":35552400,"line":14088,"name":"sink","inclusive_time":57,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618}]}]}]},{"exclusive_time":4347,"id":35543584,"line":13932,"name":"elems","allocations":[{"count":618,"id":29975016,"spesh":615,"type":"Scalar","jit":3}],"inclusive_time":19256,"spesh_entries":615,"file":"gen/moar/m-CORE.setting","jit_entries":3,"entries":618,"callees":[{"exclusive_time":63,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":63,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618},{"exclusive_time":51,"id":35552400,"line":14088,"name":"sink","inclusive_time":51,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618},{"exclusive_time":5448,"id":35591616,"line":13753,"name":"reify-until-lazy","allocations":[{"count":618,"id":19706296,"type":"BOOTCode","jit":617},{"count":1236,"id":29975016,"type":"Scalar","jit":1234}],"inclusive_time":13954,"file":"gen/moar/m-CORE.setting","deopt_one":617,"jit_entries":617,"entries":618,"callees":[{"exclusive_time":49,"id":35552400,"line":14088,"name":"sink","inclusive_time":49,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618},{"exclusive_time":79,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":79,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618},{"exclusive_time":4089,"id":35592832,"line":13760,"name":"","allocations":[{"count":2472,"id":19706296,"type":"BOOTCode","jit":2468}],"inclusive_time":8376,"file":"gen/moar/m-CORE.setting","jit_entries":1234,"entries":1236,"callees":[{"exclusive_time":3064,"id":35593744,"line":13769,"name":"","allocations":[{"count":1236,"id":29975016,"type":"Scalar","jit":1234}],"inclusive_time":3910,"file":"gen/moar/m-CORE.setting","jit_entries":1234,"entries":1236,"callees":[{"exclusive_time":845,"id":35438704,"line":12283,"name":"push","inclusive_time":845,"file":"gen/moar/m-CORE.setting","entries":1236}]},{"exclusive_time":377,"id":34818544,"line":856,"name":"sink","inclusive_time":377,"file":"gen/moar/m-CORE.setting","entries":1236}]}]},{"exclusive_time":67,"id":34818544,"line":856,"name":"sink","inclusive_time":67,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618},{"exclusive_time":598,"id":35595264,"line":13795,"name":"fully-reified","inclusive_time":771,"file":"gen/moar/m-CORE.setting","jit_entries":617,"entries":618,"callees":[{"exclusive_time":172,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":172,"file":"gen/moar/m-CORE.setting","inlined_entries":1234,"jit_entries":1236,"entries":1236}]}]},{"exclusive_time":302,"id":34228480,"line":8515,"name":"infix:<==>","inclusive_time":302,"spesh_entries":615,"file":"gen/moar/m-CORE.setting","inlined_entries":615,"jit_entries":3,"entries":618},{"exclusive_time":437,"id":38055584,"line":1563,"name":"","allocations":[{"count":618,"id":29975184,"spesh":617,"type":"Code"},{"count":618,"id":19706296,"spesh":617,"type":"BOOTCode"}],"inclusive_time":437,"spesh_entries":617,"file":"gen/moar/m-BOOTSTRAP.nqp","inlined_entries":615,"entries":618},{"exclusive_time":3779,"id":34689952,"line":29508,"name":"","inclusive_time":142405,"file":"gen/moar/m-CORE.setting","jit_entries":616,"entries":618,"callees":[{"exclusive_time":495,"id":38057408,"line":1621,"name":"","allocations":[{"count":618,"id":29975160,"spesh":618,"type":"Block"},{"count":618,"id":19706296,"spesh":618,"type":"BOOTCode"}],"inclusive_time":495,"spesh_entries":618,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":618},{"exclusive_time":4610,"id":35044416,"line":3773,"name":"map","inclusive_time":36380,"spesh_entries":618,"file":"gen/moar/m-CORE.setting","entries":618,"callees":[{"exclusive_time":87,"id":38067136,"line":3008,"name":"","allocations":[{"count":618,"id":29974584,"type":"List","jit":618}],"inclusive_time":87,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":618,"entries":618},{"exclusive_time":11755,"id":38060448,"line":2048,"name":"","allocations":[{"count":1236,"id":19706296,"type":"BOOTCode"},{"count":1236,"id":19707232,"type":"NQPArray"},{"count":618,"id":19706248,"type":"BOOTHash"}],"inclusive_time":11915,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":618,"callees":[{"exclusive_time":160,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":160,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":618,"entries":618}]},{"exclusive_time":4081,"id":35045632,"line":3779,"name":"map","allocations":[{"count":1236,"id":29975016,"spesh":1236,"type":"Scalar"}],"inclusive_time":19766,"spesh_entries":618,"file":"gen/moar/m-CORE.setting","entries":618,"callees":[{"exclusive_time":2793,"id":35546624,"line":13990,"name":"iterator","allocations":[{"count":618,"id":19706296,"type":"BOOTCode","jit":618}],"inclusive_time":5840,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618,"callees":[{"exclusive_time":88,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":88,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618},{"exclusive_time":57,"id":35552400,"line":14088,"name":"sink","inclusive_time":57,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618},{"exclusive_time":607,"id":35546928,"line":13992,"name":"","allocations":[{"count":618,"id":29975016,"type":"Scalar","jit":618}],"inclusive_time":607,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618},{"exclusive_time":1846,"id":35547536,"line":14004,"name":"new","allocations":[{"count":618,"id":53651952,"type":"<anon|352550624>","jit":618}],"inclusive_time":2293,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618,"callees":[{"exclusive_time":89,"id":34798480,"line":495,"name":"of","inclusive_time":89,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618},{"exclusive_time":357,"id":35547232,"line":13998,"name":"BUILD","inclusive_time":357,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618}]}]},{"exclusive_time":6042,"id":35048976,"line":3840,"name":"sequential-map","allocations":[{"count":1236,"id":19706296,"type":"BOOTCode","jit":1236},{"count":1854,"id":29975016,"type":"Scalar","jit":1854}],"inclusive_time":9844,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618,"callees":[{"exclusive_time":1441,"id":35157504,"line":6408,"name":"count","inclusive_time":1530,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618,"callees":[{"exclusive_time":88,"id":35839376,"line":18706,"name":"count","inclusive_time":88,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618}]},{"exclusive_time":154,"id":34228480,"line":8515,"name":"infix:<==>","inclusive_time":154,"file":"gen/moar/m-CORE.setting","inlined_entries":618,"jit_entries":618,"entries":618},{"exclusive_time":421,"id":35049888,"line":3847,"name":"","inclusive_time":421,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618},{"exclusive_time":1321,"id":35147168,"line":3827,"name":"new","allocations":[{"count":1854,"id":29975016,"type":"Scalar","jit":1854},{"count":618,"id":53654184,"type":"<anon|159066640>","jit":618}],"inclusive_time":1321,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618},{"exclusive_time":374,"id":35446304,"line":12399,"name":"new","allocations":[{"count":618,"id":53654904,"type":"Seq","jit":618}],"inclusive_time":374,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618}]}]}]},{"exclusive_time":2972,"id":35447520,"line":12420,"name":"eager","inclusive_time":101749,"file":"gen/moar/m-CORE.setting","jit_entries":616,"entries":618,"callees":[{"exclusive_time":2095,"id":35446912,"line":12407,"name":"iterator","inclusive_time":2665,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618,"callees":[{"exclusive_time":53,"id":35552400,"line":14088,"name":"sink","inclusive_time":53,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618},{"exclusive_time":515,"id":38361936,"line":2635,"name":"type_check","inclusive_time":515,"file":"gen/moar/m-Metamodel.nqp","jit_entries":618,"entries":618}]},{"exclusive_time":1215,"id":35536896,"line":13804,"name":"from-iterator","allocations":[{"count":618,"id":29974584,"type":"List","jit":617},{"count":618,"id":54157808,"type":"IterationBuffer","jit":617},{"count":618,"id":51227144,"type":"List::Reifier","jit":617}],"inclusive_time":2489,"file":"gen/moar/m-CORE.setting","jit_entries":617,"entries":618,"callees":[{"exclusive_time":1149,"id":35546320,"line":13985,"name":"reification-target","inclusive_time":1273,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618,"callees":[{"exclusive_time":76,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":76,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618},{"exclusive_time":47,"id":35552400,"line":14088,"name":"sink","inclusive_time":47,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618}]}]},{"exclusive_time":2056,"id":35567296,"line":14247,"name":"eager","inclusive_time":93622,"file":"gen/moar/m-CORE.setting","jit_entries":617,"entries":618,"callees":[{"exclusive_time":4276,"id":35594048,"line":13778,"name":"reify-all","allocations":[{"count":618,"id":19706296,"type":"BOOTCode","jit":617},{"count":1236,"id":29975016,"type":"Scalar","jit":1234}],"inclusive_time":91518,"file":"gen/moar/m-CORE.setting","jit_entries":617,"entries":618,"callees":[{"exclusive_time":1598,"id":34958992,"line":2463,"name":"push-all","allocations":[{"count":618,"id":29975016,"type":"Scalar","jit":617}],"inclusive_time":86687,"file":"gen/moar/m-CORE.setting","jit_entries":617,"entries":618,"callees":[{"exclusive_time":2045,"id":34958688,"line":2454,"name":"push-at-least","allocations":[{"count":618,"id":29975016,"spesh":617,"type":"Scalar"}],"inclusive_time":85011,"spesh_entries":617,"file":"gen/moar/m-CORE.setting","entries":618,"callees":[{"exclusive_time":10656,"id":34958080,"line":2436,"name":"push-exactly","allocations":[{"count":1236,"id":29975016,"type":"Scalar","jit":1236}],"inclusive_time":82966,"file":"gen/moar/m-CORE.setting","deopt_one":618,"jit_entries":618,"entries":618,"callees":[{"exclusive_time":23417,"id":35050192,"line":3853,"name":"pull-one","allocations":[{"count":1854,"id":19706296,"type":"BOOTCode","jit":1854},{"count":4326,"id":29975016,"type":"Scalar","jit":4326}],"inclusive_time":71451,"file":"gen/moar/m-CORE.setting","deopt_one":1236,"jit_entries":1854,"entries":1854,"callees":[{"exclusive_time":358,"id":34255840,"line":8705,"name":"prefix:<!>","inclusive_time":358,"file":"gen/moar/m-CORE.setting","inlined_entries":1236,"jit_entries":1854,"entries":1854},{"exclusive_time":1772,"id":35163280,"line":6478,"name":"phasers","inclusive_time":1880,"file":"gen/moar/m-CORE.setting","jit_entries":1236,"entries":1236,"callees":[{"exclusive_time":108,"id":35552400,"line":14088,"name":"sink","inclusive_time":108,"file":"gen/moar/m-CORE.setting","jit_entries":1236,"entries":1236}]},{"exclusive_time":796,"id":34151264,"line":7763,"name":"prefix:<+>","inclusive_time":3889,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618,"callees":[{"exclusive_time":829,"id":35541456,"line":13911,"name":"Numeric","inclusive_time":3093,"spesh_entries":618,"file":"gen/moar/m-CORE.setting","entries":618,"callees":[{"exclusive_time":2080,"id":35543584,"line":13932,"name":"elems","inclusive_time":2263,"spesh_entries":618,"file":"gen/moar/m-CORE.setting","entries":618,"callees":[{"exclusive_time":86,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":86,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618},{"exclusive_time":96,"id":35552400,"line":14088,"name":"sink","inclusive_time":96,"file":"gen/moar/m-CORE.setting","jit_entries":1236,"entries":1236}]}]}]},{"exclusive_time":2083,"id":34824016,"line":929,"name":"Bool","inclusive_time":4478,"spesh_entries":618,"file":"gen/moar/m-CORE.setting","entries":618,"callees":[{"exclusive_time":110,"id":38067136,"line":3008,"name":"","allocations":[{"count":618,"id":29974584,"type":"List","jit":618}],"inclusive_time":110,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":618,"entries":618},{"exclusive_time":2119,"id":35540544,"line":13904,"name":"Bool","inclusive_time":2285,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618,"callees":[{"exclusive_time":65,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":65,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618},{"exclusive_time":49,"id":35552400,"line":14088,"name":"sink","inclusive_time":49,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618},{"exclusive_time":50,"id":34254320,"line":8699,"name":"prefix:<so>","inclusive_time":50,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618}]}]},{"exclusive_time":313,"id":35552400,"line":14088,"name":"sink","inclusive_time":313,"file":"gen/moar/m-CORE.setting","jit_entries":3708,"entries":3708},{"exclusive_time":1757,"id":35547840,"line":14006,"name":"pull-one","inclusive_time":2198,"file":"gen/moar/m-CORE.setting","jit_entries":1854,"entries":1854,"callees":[{"exclusive_time":440,"id":35548144,"line":14013,"name":"reify-and-pull-one","inclusive_time":440,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618}]},{"exclusive_time":3574,"id":25520320,"line":1558,"name":"infix:<=:=>","inclusive_time":16365,"file":"gen/moar/m-CORE.setting","jit_entries":1236,"entries":1236,"callees":[{"exclusive_time":11869,"id":38060448,"line":2048,"name":"","allocations":[{"count":2472,"id":19706296,"type":"BOOTCode"},{"count":2472,"id":19707232,"type":"NQPArray"},{"count":1236,"id":19706248,"type":"BOOTHash"}],"inclusive_time":12397,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1236,"callees":[{"exclusive_time":528,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":528,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1236,"entries":1236}]},{"exclusive_time":394,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":394,"file":"gen/moar/m-CORE.setting","entries":1236}]},{"exclusive_time":7872,"id":34690256,"line":29508,"name":"","inclusive_time":16867,"file":"gen/moar/m-CORE.setting","jit_entries":1232,"entries":1236,"callees":[{"exclusive_time":113,"id":35663664,"line":16993,"name":"is-lazy","inclusive_time":113,"file":"gen/moar/m-CORE.setting","jit_entries":1234,"entries":1236},{"exclusive_time":437,"id":34818544,"line":856,"name":"sink","inclusive_time":437,"file":"gen/moar/m-CORE.setting","entries":1236},{"exclusive_time":3491,"id":35679168,"line":16487,"name":"iterator","allocations":[{"count":1236,"id":19706296,"type":"BOOTCode","jit":1234}],"inclusive_time":7538,"file":"gen/moar/m-CORE.setting","jit_entries":1234,"entries":1236,"callees":[{"exclusive_time":1606,"id":35679472,"line":16488,"name":"","allocations":[{"count":1236,"id":29975016,"type":"Scalar","jit":1234}],"inclusive_time":1606,"file":"gen/moar/m-CORE.setting","jit_entries":1234,"entries":1236},{"exclusive_time":2043,"id":35680080,"line":16497,"name":"new","allocations":[{"count":1236,"id":53651592,"type":"<anon|414432224>","jit":1232}],"inclusive_time":2441,"file":"gen/moar/m-CORE.setting","jit_entries":1232,"entries":1236,"callees":[{"exclusive_time":398,"id":35679776,"line":16492,"name":"BUILD","inclusive_time":398,"file":"gen/moar/m-CORE.setting","jit_entries":1232,"entries":1236}]}]},{"exclusive_time":904,"id":35000640,"line":2551,"name":"new","allocations":[{"count":1236,"id":53654424,"type":"Rakudo::Internals::WhateverIterator","jit":1234}],"inclusive_time":904,"file":"gen/moar/m-CORE.setting","jit_entries":1234,"entries":1236}]},{"exclusive_time":68,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":68,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618},{"exclusive_time":217,"id":34818544,"line":856,"name":"sink","inclusive_time":217,"file":"gen/moar/m-CORE.setting","entries":618},{"exclusive_time":1235,"id":35162368,"line":6469,"name":"fire_phasers","allocations":[{"count":618,"id":19706296,"spesh":618,"type":"BOOTCode"}],"inclusive_time":1395,"spesh_entries":618,"file":"gen/moar/m-CORE.setting","entries":618,"callees":[{"exclusive_time":160,"id":34255840,"line":8705,"name":"prefix:<!>","inclusive_time":160,"spesh_entries":618,"file":"gen/moar/m-CORE.setting","inlined_entries":618,"entries":618}]}]},{"exclusive_time":321,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":321,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":1854},{"exclusive_time":257,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":257,"file":"gen/moar/m-CORE.setting","jit_entries":1854,"entries":1854},{"exclusive_time":279,"id":35438704,"line":12283,"name":"push","inclusive_time":279,"file":"gen/moar/m-CORE.setting","jit_entries":1236,"entries":1236}]}]},{"exclusive_time":76,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":76,"file":"gen/moar/m-CORE.setting","inlined_entries":617,"jit_entries":618,"entries":618}]},{"exclusive_time":201,"id":34818544,"line":856,"name":"sink","inclusive_time":201,"file":"gen/moar/m-CORE.setting","entries":618},{"exclusive_time":297,"id":38361936,"line":2635,"name":"type_check","inclusive_time":297,"file":"gen/moar/m-Metamodel.nqp","jit_entries":618,"entries":618},{"exclusive_time":55,"id":35552400,"line":14088,"name":"sink","inclusive_time":55,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618}]},{"exclusive_time":48,"id":34818544,"line":856,"name":"sink","inclusive_time":48,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618}]}]}]},{"exclusive_time":1081,"id":35567296,"line":14247,"name":"eager","inclusive_time":3089,"file":"gen/moar/m-CORE.setting","jit_entries":617,"entries":618,"callees":[{"exclusive_time":1870,"id":35594048,"line":13778,"name":"reify-all","allocations":[{"count":618,"id":19706296,"type":"BOOTCode","jit":617}],"inclusive_time":1961,"file":"gen/moar/m-CORE.setting","deopt_one":617,"jit_entries":617,"entries":618,"callees":[{"exclusive_time":91,"id":35552400,"line":14088,"name":"sink","inclusive_time":91,"file":"gen/moar/m-CORE.setting","jit_entries":1236,"entries":1236}]},{"exclusive_time":46,"id":34818544,"line":856,"name":"sink","inclusive_time":46,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618}]},{"exclusive_time":1338,"id":35605296,"line":15771,"name":"STORE","inclusive_time":17886,"spesh_entries":615,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":618,"callees":[{"exclusive_time":4046,"id":35605904,"line":15779,"name":"STORE-ITERABLE","allocations":[{"count":618,"id":19706296,"type":"BOOTCode","jit":615},{"count":618,"id":54157808,"type":"IterationBuffer","jit":615},{"count":618,"id":29975016,"type":"Scalar","jit":615}],"inclusive_time":16547,"file":"gen/moar/m-CORE.setting","jit_entries":615,"entries":618,"callees":[{"exclusive_time":1898,"id":35546624,"line":13990,"name":"iterator","allocations":[{"count":618,"id":19706296,"type":"BOOTCode","jit":618}],"inclusive_time":3966,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618,"callees":[{"exclusive_time":88,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":88,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618},{"exclusive_time":59,"id":35552400,"line":14088,"name":"sink","inclusive_time":59,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618},{"exclusive_time":477,"id":35546928,"line":13992,"name":"","allocations":[{"count":618,"id":29975016,"type":"Scalar","jit":618}],"inclusive_time":477,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618},{"exclusive_time":1126,"id":35547536,"line":14004,"name":"new","allocations":[{"count":618,"id":53651952,"type":"<anon|352550624>","jit":618}],"inclusive_time":1443,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618,"callees":[{"exclusive_time":88,"id":34798480,"line":495,"name":"of","inclusive_time":88,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618},{"exclusive_time":228,"id":35547232,"line":13998,"name":"BUILD","inclusive_time":228,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618}]}]},{"exclusive_time":479,"id":35628704,"line":15464,"name":"new","allocations":[{"count":618,"id":54158192,"type":"Array::ArrayReificationTarget","jit":618}],"inclusive_time":479,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618},{"exclusive_time":4655,"id":35548448,"line":14020,"name":"push-until-lazy","allocations":[{"count":1236,"id":29975016,"type":"Scalar","jit":1232}],"inclusive_time":7952,"file":"gen/moar/m-CORE.setting","jit_entries":616,"entries":618,"callees":[{"exclusive_time":1931,"id":35591616,"line":13753,"name":"reify-until-lazy","allocations":[{"count":618,"id":19706296,"type":"BOOTCode","jit":617}],"inclusive_time":2033,"file":"gen/moar/m-CORE.setting","jit_entries":617,"entries":618,"callees":[{"exclusive_time":101,"id":35552400,"line":14088,"name":"sink","inclusive_time":101,"file":"gen/moar/m-CORE.setting","jit_entries":1236,"entries":1236}]},{"exclusive_time":706,"id":35629008,"line":15471,"name":"push","allocations":[{"count":1236,"id":29975016,"type":"Scalar","jit":1236}],"inclusive_time":706,"file":"gen/moar/m-CORE.setting","jit_entries":1236,"entries":1236},{"exclusive_time":69,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":69,"file":"gen/moar/m-CORE.setting","inlined_entries":616,"jit_entries":618,"entries":618},{"exclusive_time":374,"id":35595264,"line":13795,"name":"fully-reified","inclusive_time":487,"file":"gen/moar/m-CORE.setting","jit_entries":617,"entries":618,"callees":[{"exclusive_time":112,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":112,"file":"gen/moar/m-CORE.setting","inlined_entries":1234,"jit_entries":1236,"entries":1236}]}]},{"exclusive_time":102,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":102,"file":"gen/moar/m-CORE.setting","inlined_entries":615,"jit_entries":618,"entries":618}]}]},{"exclusive_time":1115,"id":38057408,"line":1621,"name":"","allocations":[{"count":1236,"id":29975160,"spesh":1236,"type":"Block"},{"count":1236,"id":19706296,"spesh":1236,"type":"BOOTCode"}],"inclusive_time":1115,"spesh_entries":1236,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1236},{"exclusive_time":3514,"id":34348560,"line":12668,"name":"GATHER","allocations":[{"count":618,"id":19706296,"type":"BOOTCode","jit":616}],"inclusive_time":7211,"file":"gen/moar/m-CORE.setting","jit_entries":616,"entries":618,"callees":[{"exclusive_time":831,"id":34348864,"line":12669,"name":"","allocations":[{"count":618,"id":19706296,"type":"BOOTCode","jit":616},{"count":618,"id":29975016,"type":"Scalar","jit":616}],"inclusive_time":831,"file":"gen/moar/m-CORE.setting","jit_entries":616,"entries":618},{"exclusive_time":1742,"id":34349472,"line":12676,"name":"new","allocations":[{"count":618,"id":53652480,"type":"<anon|340889968>","jit":616}],"inclusive_time":2561,"file":"gen/moar/m-CORE.setting","jit_entries":616,"entries":618,"callees":[{"exclusive_time":818,"id":38057408,"line":1621,"name":"","allocations":[{"count":1236,"id":29975160,"spesh":1236,"type":"Block"},{"count":1236,"id":19706296,"spesh":1236,"type":"BOOTCode"}],"inclusive_time":818,"spesh_entries":1236,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1236}]},{"exclusive_time":304,"id":35446304,"line":12399,"name":"new","allocations":[{"count":618,"id":53654904,"type":"Seq","jit":618}],"inclusive_time":304,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618}]},{"exclusive_time":686,"id":35037728,"line":3690,"name":"lazy-if","allocations":[{"count":618,"id":29975016,"type":"Scalar","jit":616}],"inclusive_time":686,"file":"gen/moar/m-CORE.setting","jit_entries":616,"entries":618}]},{"exclusive_time":487,"id":38057408,"line":1621,"name":"","allocations":[{"count":618,"id":29975160,"spesh":618,"type":"Block"},{"count":618,"id":19706296,"spesh":618,"type":"BOOTCode"}],"inclusive_time":487,"spesh_entries":618,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":618},{"exclusive_time":6336,"id":35044416,"line":3773,"name":"map","inclusive_time":29801,"spesh_entries":618,"file":"gen/moar/m-CORE.setting","entries":618,"callees":[{"exclusive_time":90,"id":38067136,"line":3008,"name":"","allocations":[{"count":618,"id":29974584,"type":"List","jit":618}],"inclusive_time":90,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":618,"entries":618},{"exclusive_time":10262,"id":38060448,"line":2048,"name":"","allocations":[{"count":1236,"id":19706296,"type":"BOOTCode"},{"count":1236,"id":19707232,"type":"NQPArray"},{"count":618,"id":19706248,"type":"BOOTHash"}],"inclusive_time":10332,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":618,"callees":[{"exclusive_time":69,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":69,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":618,"entries":618}]},{"exclusive_time":3352,"id":35045632,"line":3779,"name":"map","allocations":[{"count":1236,"id":29975016,"spesh":1236,"type":"Scalar"}],"inclusive_time":13042,"spesh_entries":618,"file":"gen/moar/m-CORE.setting","entries":618,"callees":[{"exclusive_time":1893,"id":35446912,"line":12407,"name":"iterator","inclusive_time":2235,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618,"callees":[{"exclusive_time":57,"id":35552400,"line":14088,"name":"sink","inclusive_time":57,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618},{"exclusive_time":284,"id":38361936,"line":2635,"name":"type_check","inclusive_time":284,"file":"gen/moar/m-Metamodel.nqp","jit_entries":618,"entries":618}]},{"exclusive_time":4968,"id":35048976,"line":3840,"name":"sequential-map","allocations":[{"count":1236,"id":19706296,"type":"BOOTCode","jit":1236},{"count":1854,"id":29975016,"type":"Scalar","jit":1854}],"inclusive_time":7454,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618,"callees":[{"exclusive_time":937,"id":35157504,"line":6408,"name":"count","inclusive_time":1019,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618,"callees":[{"exclusive_time":82,"id":35839376,"line":18706,"name":"count","inclusive_time":82,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618}]},{"exclusive_time":153,"id":34228480,"line":8515,"name":"infix:<==>","inclusive_time":153,"file":"gen/moar/m-CORE.setting","inlined_entries":618,"jit_entries":618,"entries":618},{"exclusive_time":221,"id":35049888,"line":3847,"name":"","inclusive_time":221,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618},{"exclusive_time":927,"id":35147168,"line":3827,"name":"new","allocations":[{"count":1854,"id":29975016,"type":"Scalar","jit":1854},{"count":618,"id":53654184,"type":"<anon|159066640>","jit":618}],"inclusive_time":927,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618},{"exclusive_time":163,"id":35446304,"line":12399,"name":"new","allocations":[{"count":618,"id":53654904,"type":"Seq","jit":618}],"inclusive_time":163,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618}]}]}]},{"exclusive_time":4118,"id":35451472,"line":12474,"name":"sink","inclusive_time":2215466,"file":"gen/moar/m-CORE.setting","entries":618,"callees":[{"exclusive_time":1427,"id":35446912,"line":12407,"name":"iterator","inclusive_time":1693,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618,"callees":[{"exclusive_time":54,"id":35552400,"line":14088,"name":"sink","inclusive_time":54,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618},{"exclusive_time":210,"id":38361936,"line":2635,"name":"type_check","inclusive_time":210,"file":"gen/moar/m-Metamodel.nqp","jit_entries":618,"entries":618}]},{"exclusive_time":50449,"id":35052016,"line":3921,"name":"sink-all","allocations":[{"count":618,"id":19706296,"type":"BOOTCode","jit":616},{"count":3708,"id":29975016,"type":"Scalar","jit":3696}],"inclusive_time":2209480,"file":"gen/moar/m-CORE.setting","deopt_one":616,"jit_entries":616,"entries":618,"callees":[{"exclusive_time":54,"id":34255840,"line":8705,"name":"prefix:<!>","inclusive_time":54,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618},{"exclusive_time":1246,"id":35163280,"line":6478,"name":"phasers","inclusive_time":1341,"file":"gen/moar/m-CORE.setting","jit_entries":1236,"entries":1236,"callees":[{"exclusive_time":94,"id":35552400,"line":14088,"name":"sink","inclusive_time":94,"file":"gen/moar/m-CORE.setting","jit_entries":1236,"entries":1236}]},{"exclusive_time":517,"id":34151264,"line":7763,"name":"prefix:<+>","inclusive_time":3541,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618,"callees":[{"exclusive_time":819,"id":35541456,"line":13911,"name":"Numeric","inclusive_time":3024,"spesh_entries":618,"file":"gen/moar/m-CORE.setting","entries":618,"callees":[{"exclusive_time":2019,"id":35543584,"line":13932,"name":"elems","inclusive_time":2204,"spesh_entries":618,"file":"gen/moar/m-CORE.setting","entries":618,"callees":[{"exclusive_time":87,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":87,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618},{"exclusive_time":96,"id":35552400,"line":14088,"name":"sink","inclusive_time":96,"file":"gen/moar/m-CORE.setting","jit_entries":1236,"entries":1236}]}]}]},{"exclusive_time":1472,"id":34824016,"line":929,"name":"Bool","inclusive_time":3195,"spesh_entries":618,"file":"gen/moar/m-CORE.setting","entries":618,"callees":[{"exclusive_time":100,"id":38067136,"line":3008,"name":"","allocations":[{"count":618,"id":29974584,"type":"List","jit":618}],"inclusive_time":100,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":618,"entries":618},{"exclusive_time":1474,"id":35540544,"line":13904,"name":"Bool","inclusive_time":1623,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618,"callees":[{"exclusive_time":65,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":65,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618},{"exclusive_time":46,"id":35552400,"line":14088,"name":"sink","inclusive_time":46,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618},{"exclusive_time":36,"id":34254320,"line":8699,"name":"prefix:<so>","inclusive_time":36,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618}]}]},{"exclusive_time":707,"id":35552400,"line":14088,"name":"sink","inclusive_time":707,"file":"gen/moar/m-CORE.setting","jit_entries":9270,"entries":9270},{"exclusive_time":33104,"id":34351296,"line":12707,"name":"pull-one","allocations":[{"count":9270,"id":29975016,"type":"Scalar","jit":9255},{"count":618,"id":54157808,"type":"IterationBuffer","jit":617},{"count":8034,"id":19706584,"type":"BOOTContinuation","jit":8021}],"inclusive_time":2122096,"file":"gen/moar/m-CORE.setting","deopt_one":1234,"jit_entries":8638,"entries":8652,"callees":[{"exclusive_time":61,"id":34818544,"line":856,"name":"sink","inclusive_time":61,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618},{"exclusive_time":4567,"id":34350384,"line":12698,"name":"","allocations":[{"count":618,"id":19706296,"type":"BOOTCode"},{"count":618,"id":29975016,"type":"Scalar"}],"inclusive_time":2085399,"file":"gen/moar/m-CORE.setting","entries":8652,"callees":[{"exclusive_time":9765,"id":34691168,"line":29518,"name":"","allocations":[{"count":618,"id":19706296,"type":"BOOTCode"}],"inclusive_time":2080220,"file":"gen/moar/m-CORE.setting","entries":8652,"callees":[{"exclusive_time":101447,"id":34691472,"line":29519,"name":"","allocations":[{"count":8652,"id":29975016,"type":"Scalar","jit":8638}],"inclusive_time":2070454,"file":"gen/moar/m-CORE.setting","jit_entries":16659,"entries":16686,"callees":[{"exclusive_time":6830,"id":38057408,"line":1621,"name":"","allocations":[{"count":8652,"id":29975160,"spesh":8652,"type":"Block"},{"count":8652,"id":19706296,"spesh":8652,"type":"BOOTCode"}],"inclusive_time":6830,"spesh_entries":8652,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":8652},{"exclusive_time":29758,"id":35045632,"line":3779,"name":"map","allocations":[{"count":17304,"id":29975016,"type":"Scalar","jit":17304}],"inclusive_time":168341,"file":"gen/moar/m-CORE.setting","jit_entries":8652,"entries":8652,"callees":[{"exclusive_time":28351,"id":35546624,"line":13990,"name":"iterator","allocations":[{"count":8652,"id":19706296,"type":"BOOTCode","jit":8652}],"inclusive_time":67084,"file":"gen/moar/m-CORE.setting","jit_entries":8652,"entries":8652,"callees":[{"exclusive_time":1404,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":1404,"file":"gen/moar/m-CORE.setting","jit_entries":8652,"entries":8652},{"exclusive_time":739,"id":35552400,"line":14088,"name":"sink","inclusive_time":739,"file":"gen/moar/m-CORE.setting","jit_entries":8652,"entries":8652},{"exclusive_time":6323,"id":35546928,"line":13992,"name":"","allocations":[{"count":8652,"id":29975016,"type":"Scalar","jit":8652}],"inclusive_time":6323,"file":"gen/moar/m-CORE.setting","jit_entries":8652,"entries":8652},{"exclusive_time":16957,"id":35547536,"line":14004,"name":"new","allocations":[{"count":8652,"id":53651952,"type":"<anon|352550624>","jit":8652}],"inclusive_time":30264,"file":"gen/moar/m-CORE.setting","jit_entries":8652,"entries":8652,"callees":[{"exclusive_time":8982,"id":35623536,"line":16147,"name":"of","inclusive_time":10082,"file":"gen/moar/m-CORE.setting","jit_entries":8652,"entries":8652,"callees":[{"exclusive_time":1100,"id":38396896,"line":3777,"name":"of","inclusive_time":1100,"spesh_entries":8652,"file":"gen/moar/m-Metamodel.nqp","entries":8652}]},{"exclusive_time":3224,"id":35547232,"line":13998,"name":"BUILD","inclusive_time":3224,"file":"gen/moar/m-CORE.setting","jit_entries":8652,"entries":8652}]}]},{"exclusive_time":43129,"id":35048976,"line":3840,"name":"sequential-map","allocations":[{"count":17304,"id":19706296,"type":"BOOTCode","jit":17304},{"count":25956,"id":29975016,"type":"Scalar","jit":25956}],"inclusive_time":71498,"file":"gen/moar/m-CORE.setting","jit_entries":8652,"entries":8652,"callees":[{"exclusive_time":10343,"id":35157504,"line":6408,"name":"count","inclusive_time":11052,"file":"gen/moar/m-CORE.setting","jit_entries":8652,"entries":8652,"callees":[{"exclusive_time":709,"id":35839376,"line":18706,"name":"count","inclusive_time":709,"file":"gen/moar/m-CORE.setting","jit_entries":8652,"entries":8652}]},{"exclusive_time":1502,"id":34228480,"line":8515,"name":"infix:<==>","inclusive_time":1502,"file":"gen/moar/m-CORE.setting","inlined_entries":8652,"jit_entries":8652,"entries":8652},{"exclusive_time":2710,"id":35049888,"line":3847,"name":"","inclusive_time":2710,"file":"gen/moar/m-CORE.setting","jit_entries":8652,"entries":8652},{"exclusive_time":10375,"id":35147168,"line":3827,"name":"new","allocations":[{"count":25956,"id":29975016,"type":"Scalar","jit":25956},{"count":8652,"id":53654184,"type":"<anon|159066640>","jit":8652}],"inclusive_time":10375,"file":"gen/moar/m-CORE.setting","jit_entries":8652,"entries":8652},{"exclusive_time":2727,"id":35446304,"line":12399,"name":"new","allocations":[{"count":8652,"id":53654904,"type":"Seq","jit":8652}],"inclusive_time":2727,"file":"gen/moar/m-CORE.setting","jit_entries":8652,"entries":8652}]}]},{"exclusive_time":20796,"id":35446912,"line":12407,"name":"iterator","inclusive_time":25745,"file":"gen/moar/m-CORE.setting","jit_entries":8652,"entries":8652,"callees":[{"exclusive_time":727,"id":35552400,"line":14088,"name":"sink","inclusive_time":727,"file":"gen/moar/m-CORE.setting","jit_entries":8652,"entries":8652},{"exclusive_time":4222,"id":38361936,"line":2635,"name":"type_check","inclusive_time":4222,"file":"gen/moar/m-Metamodel.nqp","jit_entries":8652,"entries":8652}]},{"exclusive_time":10877,"id":35536896,"line":13804,"name":"from-iterator","allocations":[{"count":8652,"id":29974584,"type":"List","jit":8638},{"count":8652,"id":54157808,"type":"IterationBuffer","jit":8638},{"count":8652,"id":51227144,"type":"List::Reifier","jit":8638}],"inclusive_time":25598,"file":"gen/moar/m-CORE.setting","jit_entries":8638,"entries":8652,"callees":[{"exclusive_time":12927,"id":35546320,"line":13985,"name":"reification-target","inclusive_time":14721,"file":"gen/moar/m-CORE.setting","jit_entries":8652,"entries":8652,"callees":[{"exclusive_time":1114,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":1114,"file":"gen/moar/m-CORE.setting","jit_entries":8652,"entries":8652},{"exclusive_time":679,"id":35552400,"line":14088,"name":"sink","inclusive_time":679,"file":"gen/moar/m-CORE.setting","jit_entries":8652,"entries":8652}]}]},{"exclusive_time":19172,"id":35567296,"line":14247,"name":"eager","inclusive_time":1529814,"file":"gen/moar/m-CORE.setting","jit_entries":8638,"entries":8652,"callees":[{"exclusive_time":40838,"id":35594048,"line":13778,"name":"reify-all","allocations":[{"count":8652,"id":19706296,"type":"BOOTCode","jit":8638},{"count":17304,"id":29975016,"type":"Scalar","jit":17276}],"inclusive_time":1509941,"file":"gen/moar/m-CORE.setting","jit_entries":8638,"entries":8652,"callees":[{"exclusive_time":13162,"id":34958992,"line":2463,"name":"push-all","allocations":[{"count":8652,"id":29975016,"type":"Scalar","jit":8638}],"inclusive_time":1461422,"file":"gen/moar/m-CORE.setting","jit_entries":8638,"entries":8652,"callees":[{"exclusive_time":22391,"id":34958688,"line":2454,"name":"push-at-least","allocations":[{"count":8652,"id":29975016,"spesh":8638,"type":"Scalar"}],"inclusive_time":1447499,"spesh_entries":8638,"file":"gen/moar/m-CORE.setting","entries":8652,"callees":[{"exclusive_time":127196,"id":34958080,"line":2436,"name":"push-exactly","allocations":[{"count":16686,"id":29975016,"type":"Scalar","jit":16686}],"inclusive_time":1425107,"file":"gen/moar/m-CORE.setting","deopt_one":8034,"jit_entries":8652,"entries":8652,"callees":[{"exclusive_time":235810,"id":35050192,"line":3853,"name":"pull-one","allocations":[{"count":24720,"id":19706296,"type":"BOOTCode","jit":24720},{"count":58710,"id":29975016,"type":"Scalar","jit":58710}],"inclusive_time":1102720,"file":"gen/moar/m-CORE.setting","deopt_one":8652,"jit_entries":24720,"entries":24720,"callees":[{"exclusive_time":3327,"id":34255840,"line":8705,"name":"prefix:<!>","inclusive_time":3327,"file":"gen/moar/m-CORE.setting","inlined_entries":16068,"jit_entries":24720,"entries":24720},{"exclusive_time":17451,"id":35163280,"line":6478,"name":"phasers","inclusive_time":18787,"file":"gen/moar/m-CORE.setting","jit_entries":17304,"entries":17304,"callees":[{"exclusive_time":1335,"id":35552400,"line":14088,"name":"sink","inclusive_time":1335,"file":"gen/moar/m-CORE.setting","jit_entries":17304,"entries":17304}]},{"exclusive_time":6247,"id":34151264,"line":7763,"name":"prefix:<+>","inclusive_time":41804,"file":"gen/moar/m-CORE.setting","jit_entries":8652,"entries":8652,"callees":[{"exclusive_time":9225,"id":35541456,"line":13911,"name":"Numeric","inclusive_time":35557,"spesh_entries":8652,"file":"gen/moar/m-CORE.setting","entries":8652,"callees":[{"exclusive_time":24012,"id":35543584,"line":13932,"name":"elems","inclusive_time":26331,"spesh_entries":8652,"file":"gen/moar/m-CORE.setting","entries":8652,"callees":[{"exclusive_time":1008,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":1008,"file":"gen/moar/m-CORE.setting","jit_entries":8652,"entries":8652},{"exclusive_time":1310,"id":35552400,"line":14088,"name":"sink","inclusive_time":1310,"file":"gen/moar/m-CORE.setting","jit_entries":17304,"entries":17304}]}]}]},{"exclusive_time":20127,"id":34824016,"line":929,"name":"Bool","inclusive_time":43182,"spesh_entries":8652,"file":"gen/moar/m-CORE.setting","entries":8652,"callees":[{"exclusive_time":1299,"id":38067136,"line":3008,"name":"","allocations":[{"count":8652,"id":29974584,"type":"List","jit":8652}],"inclusive_time":1299,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":8652,"entries":8652},{"exclusive_time":19652,"id":35540544,"line":13904,"name":"Bool","inclusive_time":21755,"file":"gen/moar/m-CORE.setting","jit_entries":8652,"entries":8652,"callees":[{"exclusive_time":932,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":932,"file":"gen/moar/m-CORE.setting","jit_entries":8652,"entries":8652},{"exclusive_time":674,"id":35552400,"line":14088,"name":"sink","inclusive_time":674,"file":"gen/moar/m-CORE.setting","jit_entries":8652,"entries":8652},{"exclusive_time":494,"id":34254320,"line":8699,"name":"prefix:<so>","inclusive_time":494,"file":"gen/moar/m-CORE.setting","jit_entries":8652,"entries":8652}]}]},{"exclusive_time":4238,"id":35552400,"line":14088,"name":"sink","inclusive_time":4238,"file":"gen/moar/m-CORE.setting","jit_entries":49440,"entries":49440},{"exclusive_time":15126,"id":35547840,"line":14006,"name":"pull-one","inclusive_time":17800,"file":"gen/moar/m-CORE.setting","jit_entries":24720,"entries":24720,"callees":[{"exclusive_time":2673,"id":35548144,"line":14013,"name":"reify-and-pull-one","inclusive_time":2673,"file":"gen/moar/m-CORE.setting","jit_entries":8034,"entries":8034}]},{"exclusive_time":50709,"id":25520320,"line":1558,"name":"infix:<=:=>","inclusive_time":217776,"file":"gen/moar/m-CORE.setting","jit_entries":16686,"entries":16686,"callees":[{"exclusive_time":156232,"id":38060448,"line":2048,"name":"","allocations":[{"count":33372,"id":19706296,"type":"BOOTCode"},{"count":33372,"id":19707232,"type":"NQPArray"},{"count":16686,"id":19706248,"type":"BOOTHash"}],"inclusive_time":161962,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":16686,"callees":[{"exclusive_time":5730,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":5730,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":16686,"entries":16686}]},{"exclusive_time":5103,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":5103,"file":"gen/moar/m-CORE.setting","entries":16686}]},{"exclusive_time":49844,"id":34691776,"line":29520,"name":"","inclusive_time":501787,"file":"gen/moar/m-CORE.setting","deopt_one":618,"jit_entries":16686,"entries":16686,"callees":[{"exclusive_time":18026,"id":35000944,"line":2557,"name":"pull-one","allocations":[{"count":16686,"id":19706296,"type":"BOOTCode","jit":16686}],"inclusive_time":270644,"file":"gen/moar/m-CORE.setting","jit_entries":16686,"entries":16686,"callees":[{"exclusive_time":49641,"id":35001552,"line":2561,"name":"","allocations":[{"count":16686,"id":29975016,"type":"Scalar","jit":16686}],"inclusive_time":252618,"file":"gen/moar/m-CORE.setting","deopt_one":618,"jit_entries":16686,"entries":16686,"callees":[{"exclusive_time":13086,"id":35680384,"line":16499,"name":"pull-one","allocations":[{"count":16068,"id":29974848,"spesh":16068,"type":"IntPosRef"}],"inclusive_time":13086,"spesh_entries":16686,"file":"gen/moar/m-CORE.setting","entries":16686},{"exclusive_time":44909,"id":25520320,"line":1558,"name":"infix:<=:=>","inclusive_time":189828,"file":"gen/moar/m-CORE.setting","jit_entries":16068,"entries":16068,"callees":[{"exclusive_time":135418,"id":38060448,"line":2048,"name":"","allocations":[{"count":32136,"id":19706296,"type":"BOOTCode"},{"count":32136,"id":19707232,"type":"NQPArray"},{"count":16068,"id":19706248,"type":"BOOTHash"}],"inclusive_time":140172,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":16068,"callees":[{"exclusive_time":4754,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":4754,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":16068,"entries":16068}]},{"exclusive_time":4746,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":4746,"file":"gen/moar/m-CORE.setting","entries":16068}]},{"exclusive_time":61,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":61,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618}]}]},{"exclusive_time":39310,"id":25520320,"line":1558,"name":"infix:<=:=>","inclusive_time":176334,"file":"gen/moar/m-CORE.setting","jit_entries":16068,"entries":16068,"callees":[{"exclusive_time":128134,"id":38060448,"line":2048,"name":"","allocations":[{"count":32136,"id":19706296,"type":"BOOTCode"},{"count":32136,"id":19707232,"type":"NQPArray"},{"count":16068,"id":19706248,"type":"BOOTHash"}],"inclusive_time":132426,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":16068,"callees":[{"exclusive_time":4291,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":4291,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":16068,"entries":16068}]},{"exclusive_time":4598,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":4598,"file":"gen/moar/m-CORE.setting","entries":16068}]},{"exclusive_time":1390,"id":35552400,"line":14088,"name":"sink","inclusive_time":1390,"file":"gen/moar/m-CORE.setting","jit_entries":16068,"entries":16068},{"exclusive_time":42,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":42,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618},{"exclusive_time":1079,"id":25500864,"line":655,"name":"last","inclusive_time":3532,"file":"gen/moar/m-CORE.setting","jit_entries":616,"entries":618,"callees":[{"exclusive_time":1419,"id":25496304,"line":603,"name":"THROW-NIL","allocations":[{"count":618,"id":19706488,"spesh":616,"type":"BOOTException"}],"inclusive_time":2452,"spesh_entries":616,"file":"gen/moar/m-CORE.setting","entries":618,"callees":[{"exclusive_time":1033,"id":35051712,"line":3899,"name":"","allocations":[{"count":1236,"id":29974944,"spesh":1228,"type":"Int"},{"count":618,"id":29975016,"spesh":614,"type":"Scalar"}],"inclusive_time":1033,"spesh_entries":614,"file":"gen/moar/m-CORE.setting","entries":618}]}]}]},{"exclusive_time":839,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":839,"file":"gen/moar/m-CORE.setting","jit_entries":8034,"entries":8034},{"exclusive_time":2735,"id":34818544,"line":856,"name":"sink","inclusive_time":2735,"file":"gen/moar/m-CORE.setting","entries":8034},{"exclusive_time":12580,"id":35162368,"line":6469,"name":"fire_phasers","allocations":[{"count":8652,"id":19706296,"spesh":8652,"type":"BOOTCode"}],"inclusive_time":14631,"spesh_entries":8652,"file":"gen/moar/m-CORE.setting","entries":8652,"callees":[{"exclusive_time":2050,"id":34255840,"line":8705,"name":"prefix:<!>","inclusive_time":2050,"spesh_entries":8652,"file":"gen/moar/m-CORE.setting","inlined_entries":8652,"entries":8652}]}]},{"exclusive_time":39066,"id":25520320,"line":1558,"name":"infix:<=:=>","inclusive_time":176710,"file":"gen/moar/m-CORE.setting","jit_entries":16068,"entries":16068,"callees":[{"exclusive_time":128724,"id":38060448,"line":2048,"name":"","allocations":[{"count":32136,"id":19706296,"type":"BOOTCode"},{"count":32136,"id":19707232,"type":"NQPArray"},{"count":16068,"id":19706248,"type":"BOOTHash"}],"inclusive_time":133055,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":16068,"callees":[{"exclusive_time":4331,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":4331,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":16068,"entries":16068}]},{"exclusive_time":4588,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":4588,"file":"gen/moar/m-CORE.setting","entries":16068}]},{"exclusive_time":3234,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":3234,"file":"gen/moar/m-CORE.setting","inlined_entries":618,"jit_entries":24720,"entries":24720},{"exclusive_time":14531,"id":35438704,"line":12283,"name":"push","inclusive_time":14531,"file":"gen/moar/m-CORE.setting","entries":16068},{"exclusive_time":715,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":715,"file":"gen/moar/m-CORE.setting","inlined_entries":618,"jit_entries":8652,"entries":8652}]}]},{"exclusive_time":760,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":760,"file":"gen/moar/m-CORE.setting","inlined_entries":8638,"jit_entries":8652,"entries":8652}]},{"exclusive_time":2805,"id":34818544,"line":856,"name":"sink","inclusive_time":2805,"file":"gen/moar/m-CORE.setting","entries":8652},{"exclusive_time":4163,"id":38361936,"line":2635,"name":"type_check","inclusive_time":4163,"file":"gen/moar/m-Metamodel.nqp","jit_entries":8652,"entries":8652},{"exclusive_time":711,"id":35552400,"line":14088,"name":"sink","inclusive_time":711,"file":"gen/moar/m-CORE.setting","jit_entries":8652,"entries":8652}]},{"exclusive_time":700,"id":34818544,"line":856,"name":"sink","inclusive_time":700,"file":"gen/moar/m-CORE.setting","jit_entries":8652,"entries":8652}]},{"exclusive_time":1302,"id":35552400,"line":14088,"name":"sink","inclusive_time":1302,"file":"gen/moar/m-CORE.setting","jit_entries":16686,"entries":16686},{"exclusive_time":43575,"id":35543584,"line":13932,"name":"elems","allocations":[{"count":8652,"id":29975016,"spesh":8638,"type":"Scalar","jit":14}],"inclusive_time":70094,"spesh_entries":8638,"file":"gen/moar/m-CORE.setting","jit_entries":14,"entries":8652,"callees":[{"exclusive_time":1230,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":1230,"file":"gen/moar/m-CORE.setting","jit_entries":8652,"entries":8652},{"exclusive_time":669,"id":35552400,"line":14088,"name":"sink","inclusive_time":669,"file":"gen/moar/m-CORE.setting","jit_entries":8652,"entries":8652},{"exclusive_time":17019,"id":35591616,"line":13753,"name":"reify-until-lazy","allocations":[{"count":8652,"id":19706296,"type":"BOOTCode","jit":8644}],"inclusive_time":18264,"file":"gen/moar/m-CORE.setting","jit_entries":8644,"entries":8652,"callees":[{"exclusive_time":1244,"id":35552400,"line":14088,"name":"sink","inclusive_time":1244,"file":"gen/moar/m-CORE.setting","jit_entries":17304,"entries":17304}]},{"exclusive_time":667,"id":34818544,"line":856,"name":"sink","inclusive_time":667,"file":"gen/moar/m-CORE.setting","jit_entries":8652,"entries":8652},{"exclusive_time":4046,"id":35595264,"line":13795,"name":"fully-reified","inclusive_time":5686,"file":"gen/moar/m-CORE.setting","jit_entries":8638,"entries":8652,"callees":[{"exclusive_time":1640,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":1640,"file":"gen/moar/m-CORE.setting","inlined_entries":17276,"jit_entries":17304,"entries":17304}]}]},{"exclusive_time":1383,"id":34229392,"line":8526,"name":"infix:«<»","inclusive_time":1383,"file":"gen/moar/m-CORE.setting","inlined_entries":8638,"jit_entries":8652,"entries":8652},{"exclusive_time":908,"id":34228480,"line":8515,"name":"infix:<==>","inclusive_time":908,"file":"gen/moar/m-CORE.setting","inlined_entries":8021,"jit_entries":8034,"entries":8034},{"exclusive_time":15370,"id":35568208,"line":14273,"name":"FLATTENABLE_LIST","inclusive_time":17506,"file":"gen/moar/m-CORE.setting","jit_entries":8021,"entries":8034,"callees":[{"exclusive_time":1001,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":1001,"file":"gen/moar/m-CORE.setting","jit_entries":8034,"entries":8034},{"exclusive_time":1134,"id":35552400,"line":14088,"name":"sink","inclusive_time":1134,"file":"gen/moar/m-CORE.setting","jit_entries":16068,"entries":16068}]},{"exclusive_time":906,"id":35568512,"line":14278,"name":"FLATTENABLE_HASH","allocations":[{"count":8034,"id":19706248,"type":"BOOTHash","jit":8021}],"inclusive_time":906,"file":"gen/moar/m-CORE.setting","jit_entries":8021,"entries":8034},{"exclusive_time":21382,"id":34206592,"line":8023,"name":"infix:<+^>","inclusive_time":26946,"file":"gen/moar/m-CORE.setting","entries":8034,"callees":[{"exclusive_time":5563,"id":34233344,"line":8571,"name":"infix:<+^>","inclusive_time":5563,"file":"gen/moar/m-CORE.setting","entries":8034}]},{"exclusive_time":10591,"id":25498128,"line":633,"name":"take-rw","inclusive_time":92080,"file":"gen/moar/m-CORE.setting","jit_entries":16042,"entries":16068,"callees":[{"exclusive_time":11675,"id":25496000,"line":596,"name":"THROW","allocations":[{"count":8034,"id":19706488,"spesh":8027,"type":"BOOTException"}],"inclusive_time":81488,"spesh_entries":16054,"file":"gen/moar/m-CORE.setting","entries":16068,"callees":[{"exclusive_time":13774,"id":34350992,"line":-1,"name":"","allocations":[{"count":16068,"id":29974944,"spesh":16046,"type":"Int"}],"inclusive_time":69813,"spesh_entries":16046,"file":"/usr/local/src/rakudo/install/share/perl6/runtime/CORE.setting.moarvm","entries":16068,"callees":[{"exclusive_time":43346,"id":34349776,"line":12680,"name":"","inclusive_time":56038,"file":"gen/moar/m-CORE.setting","entries":16068,"callees":[{"exclusive_time":5685,"id":35438704,"line":12283,"name":"push","inclusive_time":5685,"file":"gen/moar/m-CORE.setting","entries":8034},{"exclusive_time":7005,"id":38057408,"line":1621,"name":"","allocations":[{"count":8034,"id":29975160,"spesh":8034,"type":"Block"},{"count":8034,"id":19706296,"spesh":8034,"type":"BOOTCode"}],"inclusive_time":7005,"spesh_entries":8034,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":8034}]}]}]}]},{"exclusive_time":729,"id":34818544,"line":856,"name":"sink","inclusive_time":729,"file":"gen/moar/m-CORE.setting","jit_entries":8034,"entries":8034},{"exclusive_time":495,"id":25500864,"line":655,"name":"last","inclusive_time":817,"file":"gen/moar/m-CORE.setting","jit_entries":617,"entries":618,"callees":[{"exclusive_time":322,"id":25496304,"line":603,"name":"THROW-NIL","allocations":[{"count":618,"id":19706488,"spesh":617,"type":"BOOTException"}],"inclusive_time":322,"spesh_entries":617,"file":"gen/moar/m-CORE.setting","entries":618}]}]}]},{"exclusive_time":612,"id":38057408,"line":1621,"name":"","allocations":[{"count":618,"id":29975160,"spesh":618,"type":"Block"},{"count":618,"id":19706296,"spesh":618,"type":"BOOTCode"}],"inclusive_time":612,"spesh_entries":618,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":618}]},{"exclusive_time":2328,"id":34350080,"line":12692,"name":"","inclusive_time":2328,"file":"gen/moar/m-CORE.setting","jit_entries":8021,"entries":8034},{"exclusive_time":684,"id":35552400,"line":14088,"name":"sink","inclusive_time":684,"file":"gen/moar/m-CORE.setting","jit_entries":8034,"entries":8034},{"exclusive_time":518,"id":34350688,"line":12700,"name":"","inclusive_time":518,"file":"gen/moar/m-CORE.setting","jit_entries":615,"entries":618}]},{"exclusive_time":25256,"id":66501744,"line":31,"name":"","allocations":[{"count":618,"id":29975016,"spesh":617,"type":"Scalar"},{"count":6460,"id":29974992,"spesh":6415,"type":"IntLexRef"}],"inclusive_time":26844,"spesh_entries":8021,"file":"hibbified-249.p6","entries":8034,"callees":[{"exclusive_time":1023,"id":34220880,"line":8409,"name":"postfix:<++>","inclusive_time":1023,"file":"gen/moar/m-CORE.setting","jit_entries":6460,"entries":6460},{"exclusive_time":564,"id":34818544,"line":856,"name":"sink","inclusive_time":564,"file":"gen/moar/m-CORE.setting","jit_entries":6460,"entries":6460}]},{"exclusive_time":228,"id":34818544,"line":856,"name":"sink","inclusive_time":228,"file":"gen/moar/m-CORE.setting","entries":618},{"exclusive_time":870,"id":35162368,"line":6469,"name":"fire_phasers","allocations":[{"count":618,"id":19706296,"spesh":618,"type":"BOOTCode"}],"inclusive_time":1022,"spesh_entries":618,"file":"gen/moar/m-CORE.setting","entries":618,"callees":[{"exclusive_time":152,"id":34255840,"line":8705,"name":"prefix:<!>","inclusive_time":152,"spesh_entries":618,"file":"gen/moar/m-CORE.setting","inlined_entries":618,"entries":618}]}]},{"exclusive_time":174,"id":34818544,"line":856,"name":"sink","inclusive_time":174,"file":"gen/moar/m-CORE.setting","entries":618}]}]},{"exclusive_time":1275,"id":78987920,"line":89,"name":"","inclusive_time":2103,"file":"hibbified-249.p6","jit_entries":461,"entries":618,"callees":[{"exclusive_time":16,"id":33997440,"line":2176,"name":"postfix:<++>","inclusive_time":46,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":28,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":29,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":1,"id":34220576,"line":8404,"name":"postfix:<++>","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":781,"id":34220576,"line":8404,"name":"postfix:<++>","allocations":[{"count":488,"id":29974944,"type":"Int","jit":370}],"inclusive_time":781,"file":"gen/moar/m-CORE.setting","inlined_entries":461,"jit_entries":461,"entries":617}]},{"exclusive_time":18,"id":34847120,"line":1178,"name":"Stringy","inclusive_time":74,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":0,"id":38067136,"line":3008,"name":"","allocations":[{"count":2,"id":29974584,"type":"List","jit":2}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":2,"entries":2},{"exclusive_time":21,"id":38060448,"line":2048,"name":"","allocations":[{"count":4,"id":19706296,"type":"BOOTCode"},{"count":4,"id":19707232,"type":"NQPArray"},{"count":2,"id":19706248,"type":"BOOTHash"}],"inclusive_time":22,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":2,"callees":[{"exclusive_time":1,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":2,"entries":2}]},{"exclusive_time":25,"id":34848336,"line":1183,"name":"Stringy","inclusive_time":32,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":6,"id":35223168,"line":8254,"name":"Str","allocations":[{"count":2,"id":29975064,"type":"Str"}],"inclusive_time":6,"file":"gen/moar/m-CORE.setting","entries":2}]}]},{"exclusive_time":184,"id":35310416,"line":10027,"name":"Stringy","inclusive_time":184,"file":"gen/moar/m-CORE.setting","inlined_entries":1083,"jit_entries":1842,"entries":1854},{"exclusive_time":4027,"id":34315424,"line":11811,"name":"infix:<~>","allocations":[{"count":3090,"id":29975064,"type":"Str","jit":3086}],"inclusive_time":4027,"file":"gen/moar/m-CORE.setting","inlined_entries":1805,"jit_entries":3086,"entries":3090},{"exclusive_time":8568,"id":21182912,"line":89,"name":"","inclusive_time":808492,"file":"hibbified-249.p6","jit_entries":461,"entries":618,"callees":[{"exclusive_time":1107,"id":34403280,"line":14967,"name":"postcircumfix:<[ ]>","inclusive_time":2292,"file":"gen/moar/m-CORE.setting","inlined_entries":461,"jit_entries":616,"entries":618,"callees":[{"exclusive_time":1185,"id":35608944,"line":15835,"name":"AT-POS","inclusive_time":1185,"spesh_entries":616,"file":"gen/moar/m-CORE.setting","entries":618}]},{"exclusive_time":12046,"id":34874784,"line":1462,"name":"dispatch:<hyper>","allocations":[{"count":1854,"id":29975016,"spesh":1083,"type":"Scalar"},{"count":618,"id":29975112,"spesh":361,"type":"Capture"}],"inclusive_time":385722,"spesh_entries":361,"file":"gen/moar/m-CORE.setting","entries":618,"callees":[{"exclusive_time":3102,"id":34867488,"line":1337,"name":"can","allocations":[{"count":618,"id":29975016,"type":"Scalar","jit":461}],"inclusive_time":16232,"file":"gen/moar/m-CORE.setting","jit_entries":461,"entries":618,"callees":[{"exclusive_time":9955,"id":38319680,"line":1106,"name":"can","allocations":[{"count":618,"id":19707232,"type":"NQPArray","jit":411},{"count":618,"id":19707280,"type":"NQPArrayIter","jit":411}],"inclusive_time":12939,"file":"gen/moar/m-Metamodel.nqp","jit_entries":411,"entries":618,"callees":[{"exclusive_time":433,"id":38304480,"line":520,"name":"submethod_table","inclusive_time":433,"file":"gen/moar/m-Metamodel.nqp","inlined_entries":411,"jit_entries":494,"entries":618},{"exclusive_time":322,"id":38318160,"line":1041,"name":"mro","inclusive_time":322,"file":"gen/moar/m-Metamodel.nqp","inlined_entries":411,"jit_entries":609,"entries":618},{"exclusive_time":1940,"id":38304176,"line":515,"name":"method_table","inclusive_time":1940,"file":"gen/moar/m-Metamodel.nqp","jit_entries":1830,"entries":2472},{"exclusive_time":288,"id":20424240,"line":596,"name":"push","inclusive_time":288,"file":"gen/moar/stage2/NQPCORE.setting","jit_entries":610,"entries":618}]},{"exclusive_time":189,"id":38067136,"line":3008,"name":"","allocations":[{"count":618,"id":29974584,"type":"List","jit":611}],"inclusive_time":189,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":611,"entries":618}]},{"exclusive_time":3663,"id":34824016,"line":929,"name":"Bool","inclusive_time":7925,"spesh_entries":1236,"file":"gen/moar/m-CORE.setting","entries":1236,"callees":[{"exclusive_time":186,"id":38067136,"line":3008,"name":"","allocations":[{"count":1236,"id":29974584,"type":"List","jit":1236}],"inclusive_time":186,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1236,"entries":1236},{"exclusive_time":2766,"id":35540544,"line":13904,"name":"Bool","inclusive_time":3497,"file":"gen/moar/m-CORE.setting","deopt_one":618,"jit_entries":618,"entries":618,"callees":[{"exclusive_time":105,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":105,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618},{"exclusive_time":58,"id":35552400,"line":14088,"name":"sink","inclusive_time":58,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618},{"exclusive_time":429,"id":34254928,"line":8701,"name":"prefix:<so>","inclusive_time":566,"file":"gen/moar/m-CORE.setting","jit_entries":547,"entries":618,"callees":[{"exclusive_time":137,"id":35222560,"line":8248,"name":"Bool","inclusive_time":137,"file":"gen/moar/m-CORE.setting","inlined_entries":547,"jit_entries":611,"entries":618}]}]},{"exclusive_time":11,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":46,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":29,"id":38059536,"line":1708,"name":"","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":12,"id":19707232,"type":"NQPArray"},{"count":3,"id":19707280,"type":"NQPArrayIter"},{"count":4,"id":19706248,"type":"BOOTHash"},{"count":4,"id":19706752,"type":"BOOTIntArray"},{"count":2,"id":19706152,"type":"BOOTInt"}],"inclusive_time":35,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":5,"id":38059840,"line":1738,"name":"is_narrower","inclusive_time":5,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":2,"entries":2}]},{"exclusive_time":0,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":530,"id":35434752,"line":12236,"name":"Bool","inclusive_time":530,"file":"gen/moar/m-CORE.setting","jit_entries":461,"entries":618}]},{"exclusive_time":5,"id":34398416,"line":14916,"name":"postcircumfix:<[ ]>","inclusive_time":276,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":192,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":3,"id":19707232,"type":"NQPArray"},{"count":2,"id":19706248,"type":"BOOTHash"}],"inclusive_time":193,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":3,"id":34403280,"line":14967,"name":"postcircumfix:<[ ]>","inclusive_time":78,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":35,"id":34922816,"line":1964,"name":"AT-POS","inclusive_time":75,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":38067136,"line":3008,"name":"","allocations":[{"count":1,"id":29974584,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":23,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":24,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":14,"id":35544800,"line":13946,"name":"AT-POS","inclusive_time":14,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]}]}]},{"exclusive_time":1770,"id":34872656,"line":1423,"name":"dispatch:<.?>","allocations":[{"count":618,"id":29975016,"spesh":576,"type":"Scalar"},{"count":618,"id":29975112,"spesh":576,"type":"Capture"}],"inclusive_time":1770,"spesh_entries":576,"file":"gen/moar/m-CORE.setting","entries":618},{"exclusive_time":656,"id":38057408,"line":1621,"name":"","allocations":[{"count":618,"id":29975160,"spesh":618,"type":"Block"},{"count":618,"id":19706296,"spesh":618,"type":"BOOTCode"}],"inclusive_time":656,"spesh_entries":618,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":618},{"exclusive_time":23,"id":34717312,"line":29815,"name":"HYPER","inclusive_time":1494,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":13,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":508,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":163,"id":38059536,"line":1708,"name":"","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":42,"id":19707232,"type":"NQPArray"},{"count":9,"id":19707280,"type":"NQPArrayIter"},{"count":16,"id":19706248,"type":"BOOTHash"},{"count":16,"id":19706752,"type":"BOOTIntArray"},{"count":8,"id":19706152,"type":"BOOTInt"}],"inclusive_time":494,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":191,"id":38059840,"line":1738,"name":"is_narrower","inclusive_time":330,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":56,"entries":56,"callees":[{"exclusive_time":131,"id":38361936,"line":2635,"name":"type_check","allocations":[{"count":128,"id":19707280,"type":"NQPArrayIter","jit":6}],"inclusive_time":138,"file":"gen/moar/m-Metamodel.nqp","jit_entries":6,"entries":88,"callees":[{"exclusive_time":6,"id":38290800,"line":161,"name":"pretending_to_be","inclusive_time":6,"spesh_entries":6,"file":"gen/moar/m-Metamodel.nqp","jit_entries":79,"entries":88}]}]}]},{"exclusive_time":0,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":13,"id":34722784,"line":29924,"name":"HYPER","inclusive_time":962,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":2,"id":34872656,"line":1423,"name":"dispatch:<.?>","allocations":[{"count":1,"id":29975016,"type":"Scalar"},{"count":1,"id":29975112,"type":"Capture"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":32,"id":34723088,"line":29930,"name":"deepmap","inclusive_time":946,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":14,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":14,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":184,"id":34723392,"line":29932,"name":"deepmap","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":899,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":3,"id":34723696,"line":29941,"name":"","allocations":[{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":5,"id":35679168,"line":16487,"name":"iterator","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"}],"inclusive_time":12,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":2,"id":35679472,"line":16488,"name":"","allocations":[{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":3,"id":35680080,"line":16497,"name":"new","allocations":[{"count":1,"id":53651592,"type":"<anon|414432224>"}],"inclusive_time":4,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":35679776,"line":16492,"name":"BUILD","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":2,"id":34724000,"line":29945,"name":"new","allocations":[{"count":1,"id":29975016,"type":"Scalar"},{"count":1,"id":53649960,"type":"<anon|668011024>"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":3,"id":34825840,"line":942,"name":"new","allocations":[{"count":1,"id":29974560,"type":"Hash"}],"inclusive_time":29,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":4,"id":34827360,"line":956,"name":"bless","allocations":[{"count":1,"id":29974560,"type":"Hash"},{"count":1,"id":54157808,"type":"IterationBuffer"}],"inclusive_time":25,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":7,"id":35539024,"line":13860,"name":"from-slurpy-flat","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":2,"id":54157808,"type":"IterationBuffer"},{"count":1,"id":29974896,"type":"Array"},{"count":1,"id":51227144,"type":"List::Reifier"}],"inclusive_time":13,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":38067136,"line":3008,"name":"","allocations":[{"count":1,"id":29974584,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":4,"id":35607120,"line":15806,"name":"reification-target","inclusive_time":5,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":35628704,"line":15464,"name":"new","allocations":[{"count":1,"id":54158192,"type":"Array::ArrayReificationTarget"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":5,"id":34827664,"line":960,"name":"BUILDALL","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"}],"inclusive_time":7,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":2,"id":38327888,"line":1475,"name":"BUILDALLPLAN","inclusive_time":2,"file":"gen/moar/m-Metamodel.nqp","entries":1}]}]}]},{"exclusive_time":4,"id":34958992,"line":2463,"name":"push-all","allocations":[{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":497,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":4,"id":34958688,"line":2454,"name":"push-at-least","allocations":[{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":493,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":131,"id":34958080,"line":2436,"name":"push-exactly","allocations":[{"count":2,"id":29975016,"type":"Scalar"}],"inclusive_time":488,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":100,"id":34724608,"line":29955,"name":"pull-one","allocations":[{"count":14,"id":19706296,"type":"BOOTCode"},{"count":14,"id":29975016,"type":"Scalar"}],"inclusive_time":328,"file":"gen/moar/m-CORE.setting","entries":14,"callees":[{"exclusive_time":12,"id":35680384,"line":16499,"name":"pull-one","allocations":[{"count":13,"id":29974848,"spesh":5,"type":"IntPosRef"}],"inclusive_time":12,"spesh_entries":6,"file":"gen/moar/m-CORE.setting","entries":14},{"exclusive_time":29,"id":25520320,"line":1558,"name":"infix:<=:=>","inclusive_time":149,"file":"gen/moar/m-CORE.setting","jit_entries":13,"entries":13,"callees":[{"exclusive_time":112,"id":38060448,"line":2048,"name":"","allocations":[{"count":26,"id":19706296,"type":"BOOTCode"},{"count":26,"id":19707232,"type":"NQPArray"},{"count":13,"id":19706248,"type":"BOOTHash"}],"inclusive_time":116,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":13,"callees":[{"exclusive_time":3,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":3,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":13,"entries":13}]},{"exclusive_time":3,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":13}]},{"exclusive_time":39,"id":34876608,"line":1472,"name":"","inclusive_time":65,"file":"gen/moar/m-CORE.setting","entries":13,"callees":[{"exclusive_time":5,"id":35310416,"line":10027,"name":"Stringy","inclusive_time":5,"file":"gen/moar/m-CORE.setting","entries":13},{"exclusive_time":19,"id":35224992,"line":8277,"name":"chr","allocations":[{"count":13,"id":29975064,"type":"Str"}],"inclusive_time":19,"file":"gen/moar/m-CORE.setting","entries":13}]},{"exclusive_time":0,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]},{"exclusive_time":2,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":2,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":14},{"exclusive_time":1,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":14,"entries":14},{"exclusive_time":6,"id":34916736,"line":1907,"name":"push","inclusive_time":18,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":38067136,"line":3008,"name":"","allocations":[{"count":1,"id":29974584,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":9,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":10,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":35438704,"line":12283,"name":"push","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":5,"id":35438704,"line":12283,"name":"push","inclusive_time":5,"file":"gen/moar/m-CORE.setting","entries":12}]}]},{"exclusive_time":0,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":34818544,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":19,"id":35539632,"line":13890,"name":"new","allocations":[{"count":1,"id":29974584,"type":"List"},{"count":1,"id":54157808,"type":"IterationBuffer"}],"inclusive_time":168,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":5,"id":35537200,"line":13817,"name":"from-slurpy","allocations":[{"count":1,"id":29974896,"type":"Array"},{"count":1,"id":54157808,"type":"IterationBuffer"},{"count":1,"id":51227144,"type":"List::Reifier"}],"inclusive_time":8,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":38067136,"line":3008,"name":"","allocations":[{"count":1,"id":29974584,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":1,"id":35607120,"line":15806,"name":"reification-target","inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":35628704,"line":15464,"name":"new","allocations":[{"count":1,"id":54158192,"type":"Array::ArrayReificationTarget"}],"inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":1,"id":38057408,"line":1621,"name":"","allocations":[{"count":1,"id":29975160,"spesh":1,"type":"Block"},{"count":1,"id":19706296,"spesh":1,"type":"BOOTCode"}],"inclusive_time":1,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1},{"exclusive_time":6,"id":35044416,"line":3773,"name":"map","inclusive_time":67,"spesh_entries":1,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":38067136,"line":3008,"name":"","allocations":[{"count":1,"id":29974584,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":17,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":17,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":8,"id":35045632,"line":3779,"name":"map","allocations":[{"count":2,"id":29975016,"type":"Scalar"}],"inclusive_time":43,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":7,"id":35546624,"line":13990,"name":"iterator","allocations":[{"count":1,"id":19706296,"type":"BOOTCode","jit":1}],"inclusive_time":15,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":0,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":1,"id":35546928,"line":13992,"name":"","allocations":[{"count":1,"id":29975016,"type":"Scalar","jit":1}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":3,"id":35547536,"line":14004,"name":"new","allocations":[{"count":1,"id":53651952,"type":"<anon|352550624>","jit":1}],"inclusive_time":5,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":1,"id":35623536,"line":16147,"name":"of","inclusive_time":1,"file":"gen/moar/m-CORE.setting","deopt_one":1,"jit_entries":1,"entries":1},{"exclusive_time":0,"id":35547232,"line":13998,"name":"BUILD","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]},{"exclusive_time":12,"id":35048976,"line":3840,"name":"sequential-map","allocations":[{"count":2,"id":19706296,"type":"BOOTCode","jit":2},{"count":3,"id":29975016,"type":"Scalar","jit":3}],"inclusive_time":19,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":2,"id":35157504,"line":6408,"name":"count","inclusive_time":2,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":0,"id":35839376,"line":18706,"name":"count","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":34228480,"line":8515,"name":"infix:<==>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","inlined_entries":1,"jit_entries":1,"entries":1},{"exclusive_time":0,"id":35049888,"line":3847,"name":"","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":2,"id":35147168,"line":3827,"name":"new","allocations":[{"count":3,"id":29975016,"type":"Scalar","jit":3},{"count":1,"id":53654184,"type":"<anon|159066640>","jit":1}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":35446304,"line":12399,"name":"new","allocations":[{"count":1,"id":53654904,"type":"Seq","jit":1}],"inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]}]},{"exclusive_time":5,"id":35451472,"line":12474,"name":"sink","inclusive_time":71,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":4,"id":35446912,"line":12407,"name":"iterator","inclusive_time":6,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":1,"id":38361936,"line":2635,"name":"type_check","inclusive_time":1,"file":"gen/moar/m-Metamodel.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":23,"id":35052016,"line":3921,"name":"sink-all","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":6,"id":29975016,"type":"Scalar"}],"inclusive_time":59,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":34255840,"line":8705,"name":"prefix:<!>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":2,"id":35163280,"line":6478,"name":"phasers","inclusive_time":2,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2,"callees":[{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]},{"exclusive_time":1,"id":34151264,"line":7763,"name":"prefix:<+>","inclusive_time":7,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":1,"id":35541456,"line":13911,"name":"Numeric","inclusive_time":6,"spesh_entries":1,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":3,"id":35543584,"line":13932,"name":"elems","inclusive_time":4,"spesh_entries":1,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]}]}]},{"exclusive_time":3,"id":34824016,"line":929,"name":"Bool","inclusive_time":8,"spesh_entries":1,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":38067136,"line":3008,"name":"","allocations":[{"count":1,"id":29974584,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":4,"id":35540544,"line":13904,"name":"Bool","inclusive_time":4,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":0,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":34254320,"line":8699,"name":"prefix:<so>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2},{"exclusive_time":2,"id":35547840,"line":14006,"name":"pull-one","inclusive_time":17,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":9,"id":35548144,"line":14013,"name":"reify-and-pull-one","allocations":[{"count":1,"id":29974992,"type":"IntLexRef","jit":1}],"inclusive_time":14,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":4,"id":35589488,"line":13724,"name":"reify-at-least","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":4,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":34229392,"line":8526,"name":"infix:«<»","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":0,"id":34818544,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":0,"id":34818544,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":1,"id":35032560,"line":3623,"name":"item","allocations":[{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]}]}]}]},{"exclusive_time":1285,"id":34403280,"line":14967,"name":"postcircumfix:<[ ]>","inclusive_time":3453,"spesh_entries":361,"file":"gen/moar/m-CORE.setting","inlined_entries":361,"jit_entries":249,"entries":617,"callees":[{"exclusive_time":2057,"id":35544800,"line":13946,"name":"AT-POS","inclusive_time":2168,"file":"gen/moar/m-CORE.setting","jit_entries":526,"entries":617,"callees":[{"exclusive_time":62,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":62,"file":"gen/moar/m-CORE.setting","jit_entries":617,"entries":617},{"exclusive_time":48,"id":35552400,"line":14088,"name":"sink","inclusive_time":48,"file":"gen/moar/m-CORE.setting","jit_entries":617,"entries":617}]}]},{"exclusive_time":2966,"id":34722784,"line":29924,"name":"HYPER","inclusive_time":341866,"file":"gen/moar/m-CORE.setting","jit_entries":411,"entries":617,"callees":[{"exclusive_time":1013,"id":34872656,"line":1423,"name":"dispatch:<.?>","allocations":[{"count":617,"id":29975016,"spesh":580,"type":"Scalar"},{"count":617,"id":29975112,"spesh":580,"type":"Capture"}],"inclusive_time":1013,"spesh_entries":580,"file":"gen/moar/m-CORE.setting","entries":617},{"exclusive_time":11991,"id":34723392,"line":29932,"name":"deepmap","allocations":[{"count":617,"id":19706296,"type":"BOOTCode","jit":361},{"count":617,"id":29975016,"type":"Scalar","jit":361}],"inclusive_time":337886,"file":"gen/moar/m-CORE.setting","jit_entries":361,"entries":617,"callees":[{"exclusive_time":1171,"id":34723696,"line":29941,"name":"","allocations":[{"count":617,"id":29975016,"type":"Scalar","jit":461}],"inclusive_time":1171,"file":"gen/moar/m-CORE.setting","jit_entries":461,"entries":617},{"exclusive_time":2496,"id":35679168,"line":16487,"name":"iterator","allocations":[{"count":617,"id":19706296,"type":"BOOTCode","jit":609}],"inclusive_time":5323,"file":"gen/moar/m-CORE.setting","jit_entries":609,"entries":617,"callees":[{"exclusive_time":1117,"id":35679472,"line":16488,"name":"","allocations":[{"count":617,"id":29975016,"type":"Scalar","jit":617}],"inclusive_time":1117,"file":"gen/moar/m-CORE.setting","jit_entries":617,"entries":617},{"exclusive_time":1405,"id":35680080,"line":16497,"name":"new","allocations":[{"count":617,"id":53651592,"type":"<anon|414432224>","jit":616}],"inclusive_time":1709,"file":"gen/moar/m-CORE.setting","jit_entries":616,"entries":617,"callees":[{"exclusive_time":303,"id":35679776,"line":16492,"name":"BUILD","inclusive_time":303,"file":"gen/moar/m-CORE.setting","jit_entries":616,"entries":617}]}]},{"exclusive_time":1118,"id":34724000,"line":29945,"name":"new","allocations":[{"count":617,"id":29975016,"type":"Scalar","jit":411},{"count":617,"id":53649960,"type":"<anon|668011024>","jit":411}],"inclusive_time":1118,"file":"gen/moar/m-CORE.setting","jit_entries":411,"entries":617},{"exclusive_time":1705,"id":34825840,"line":942,"name":"new","allocations":[{"count":617,"id":29974560,"spesh":590,"type":"Hash"}],"inclusive_time":15057,"spesh_entries":590,"file":"gen/moar/m-CORE.setting","entries":617,"callees":[{"exclusive_time":2951,"id":34827360,"line":956,"name":"bless","allocations":[{"count":617,"id":29974560,"spesh":575,"type":"Hash"},{"count":617,"id":54157808,"spesh":575,"type":"IterationBuffer"}],"inclusive_time":13352,"spesh_entries":575,"file":"gen/moar/m-CORE.setting","entries":617,"callees":[{"exclusive_time":4694,"id":35539024,"line":13860,"name":"from-slurpy-flat","allocations":[{"count":617,"id":19706296,"spesh":560,"type":"BOOTCode"},{"count":1234,"id":54157808,"spesh":1120,"type":"IterationBuffer"},{"count":617,"id":29974896,"spesh":560,"type":"Array"},{"count":617,"id":51227144,"spesh":560,"type":"List::Reifier"}],"inclusive_time":7386,"spesh_entries":560,"file":"gen/moar/m-CORE.setting","entries":617,"callees":[{"exclusive_time":110,"id":38067136,"line":3008,"name":"","allocations":[{"count":617,"id":29974584,"type":"List","jit":617}],"inclusive_time":110,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":617,"entries":617},{"exclusive_time":1925,"id":35607120,"line":15806,"name":"reification-target","inclusive_time":2580,"file":"gen/moar/m-CORE.setting","jit_entries":602,"entries":617,"callees":[{"exclusive_time":655,"id":35628704,"line":15464,"name":"new","allocations":[{"count":617,"id":54158192,"type":"Array::ArrayReificationTarget","jit":617}],"inclusive_time":655,"file":"gen/moar/m-CORE.setting","jit_entries":617,"entries":617}]}]},{"exclusive_time":2804,"id":34827664,"line":960,"name":"BUILDALL","allocations":[{"count":617,"id":19706296,"type":"BOOTCode","jit":558}],"inclusive_time":3014,"file":"gen/moar/m-CORE.setting","jit_entries":558,"entries":617,"callees":[{"exclusive_time":210,"id":38327888,"line":1475,"name":"BUILDALLPLAN","inclusive_time":210,"file":"gen/moar/m-Metamodel.nqp","jit_entries":591,"entries":617}]}]}]},{"exclusive_time":3074,"id":34958992,"line":2463,"name":"push-all","allocations":[{"count":617,"id":29975016,"type":"Scalar"}],"inclusive_time":221523,"file":"gen/moar/m-CORE.setting","entries":617,"callees":[{"exclusive_time":2833,"id":34958688,"line":2454,"name":"push-at-least","allocations":[{"count":617,"id":29975016,"spesh":617,"type":"Scalar"}],"inclusive_time":218405,"spesh_entries":617,"file":"gen/moar/m-CORE.setting","entries":617,"callees":[{"exclusive_time":42923,"id":34958080,"line":2436,"name":"push-exactly","allocations":[{"count":1234,"id":29975016,"type":"Scalar","jit":1220}],"inclusive_time":215572,"file":"gen/moar/m-CORE.setting","deopt_one":610,"jit_entries":610,"entries":617,"callees":[{"exclusive_time":32445,"id":34724608,"line":29955,"name":"pull-one","allocations":[{"count":8638,"id":19706296,"type":"BOOTCode","jit":8395},{"count":8638,"id":29975016,"type":"Scalar","jit":8395}],"inclusive_time":164784,"file":"gen/moar/m-CORE.setting","jit_entries":8395,"entries":8638,"callees":[{"exclusive_time":5749,"id":35680384,"line":16499,"name":"pull-one","allocations":[{"count":8021,"id":29974848,"spesh":8021,"type":"IntPosRef"}],"inclusive_time":5749,"spesh_entries":8638,"file":"gen/moar/m-CORE.setting","entries":8638},{"exclusive_time":25635,"id":25520320,"line":1558,"name":"infix:<=:=>","inclusive_time":101827,"file":"gen/moar/m-CORE.setting","jit_entries":8021,"entries":8021,"callees":[{"exclusive_time":71332,"id":38060448,"line":2048,"name":"","allocations":[{"count":16042,"id":19706296,"type":"BOOTCode"},{"count":16042,"id":19707232,"type":"NQPArray"},{"count":8021,"id":19706248,"type":"BOOTHash"}],"inclusive_time":73808,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":8021,"callees":[{"exclusive_time":2475,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":2475,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":8021,"entries":8021}]},{"exclusive_time":2382,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":2382,"file":"gen/moar/m-CORE.setting","entries":8021}]},{"exclusive_time":14134,"id":34876608,"line":1472,"name":"","inclusive_time":24669,"file":"gen/moar/m-CORE.setting","jit_entries":7877,"entries":8021,"callees":[{"exclusive_time":520,"id":35310416,"line":10027,"name":"Stringy","inclusive_time":520,"file":"gen/moar/m-CORE.setting","inlined_entries":7877,"jit_entries":8013,"entries":8021},{"exclusive_time":10014,"id":35224992,"line":8277,"name":"chr","allocations":[{"count":8021,"id":29975064,"spesh":7877,"type":"Str"}],"inclusive_time":10014,"spesh_entries":7877,"file":"gen/moar/m-CORE.setting","entries":8021}]},{"exclusive_time":92,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":92,"file":"gen/moar/m-CORE.setting","jit_entries":617,"entries":617}]},{"exclusive_time":2039,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":2039,"file":"gen/moar/m-CORE.setting","jit_entries":617,"entries":8638},{"exclusive_time":1031,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":1031,"file":"gen/moar/m-CORE.setting","jit_entries":8638,"entries":8638},{"exclusive_time":4792,"id":35438704,"line":12283,"name":"push","inclusive_time":4792,"file":"gen/moar/m-CORE.setting","entries":8021}]}]},{"exclusive_time":43,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":43,"file":"gen/moar/m-CORE.setting","jit_entries":617,"entries":617}]},{"exclusive_time":191,"id":34818544,"line":856,"name":"sink","inclusive_time":191,"file":"gen/moar/m-CORE.setting","entries":617},{"exclusive_time":5763,"id":35539632,"line":13890,"name":"new","allocations":[{"count":617,"id":29974584,"spesh":411,"type":"List"},{"count":617,"id":54157808,"spesh":411,"type":"IterationBuffer"}],"inclusive_time":81113,"spesh_entries":411,"file":"gen/moar/m-CORE.setting","entries":617,"callees":[{"exclusive_time":2715,"id":35537200,"line":13817,"name":"from-slurpy","allocations":[{"count":617,"id":29974896,"spesh":609,"type":"Array"},{"count":617,"id":54157808,"spesh":609,"type":"IterationBuffer"},{"count":617,"id":51227144,"spesh":609,"type":"List::Reifier"}],"inclusive_time":3824,"spesh_entries":609,"file":"gen/moar/m-CORE.setting","entries":617,"callees":[{"exclusive_time":130,"id":38067136,"line":3008,"name":"","allocations":[{"count":617,"id":29974584,"type":"List","jit":617}],"inclusive_time":130,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":617,"entries":617},{"exclusive_time":692,"id":35607120,"line":15806,"name":"reification-target","inclusive_time":978,"file":"gen/moar/m-CORE.setting","jit_entries":602,"entries":617,"callees":[{"exclusive_time":285,"id":35628704,"line":15464,"name":"new","allocations":[{"count":617,"id":54158192,"type":"Array::ArrayReificationTarget","jit":617}],"inclusive_time":285,"file":"gen/moar/m-CORE.setting","jit_entries":617,"entries":617}]}]},{"exclusive_time":622,"id":38057408,"line":1621,"name":"","allocations":[{"count":617,"id":29975160,"spesh":617,"type":"Block"},{"count":617,"id":19706296,"spesh":617,"type":"BOOTCode"}],"inclusive_time":622,"spesh_entries":617,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":617},{"exclusive_time":4492,"id":35044416,"line":3773,"name":"map","inclusive_time":35725,"spesh_entries":617,"file":"gen/moar/m-CORE.setting","entries":617,"callees":[{"exclusive_time":102,"id":38067136,"line":3008,"name":"","allocations":[{"count":617,"id":29974584,"type":"List","jit":617}],"inclusive_time":102,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":617,"entries":617},{"exclusive_time":11127,"id":38060448,"line":2048,"name":"","allocations":[{"count":1234,"id":19706296,"type":"BOOTCode"},{"count":1234,"id":19707232,"type":"NQPArray"},{"count":617,"id":19706248,"type":"BOOTHash"}],"inclusive_time":11273,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":617,"callees":[{"exclusive_time":145,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":145,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":617,"entries":617}]},{"exclusive_time":4793,"id":35045632,"line":3779,"name":"map","allocations":[{"count":1234,"id":29975016,"type":"Scalar"}],"inclusive_time":19857,"file":"gen/moar/m-CORE.setting","entries":617,"callees":[{"exclusive_time":3251,"id":35546624,"line":13990,"name":"iterator","allocations":[{"count":617,"id":19706296,"type":"BOOTCode","jit":617}],"inclusive_time":6904,"file":"gen/moar/m-CORE.setting","jit_entries":617,"entries":617,"callees":[{"exclusive_time":127,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":127,"file":"gen/moar/m-CORE.setting","jit_entries":617,"entries":617},{"exclusive_time":61,"id":35552400,"line":14088,"name":"sink","inclusive_time":61,"file":"gen/moar/m-CORE.setting","jit_entries":617,"entries":617},{"exclusive_time":665,"id":35546928,"line":13992,"name":"","allocations":[{"count":617,"id":29975016,"type":"Scalar","jit":617}],"inclusive_time":665,"file":"gen/moar/m-CORE.setting","jit_entries":617,"entries":617},{"exclusive_time":1868,"id":35547536,"line":14004,"name":"new","allocations":[{"count":617,"id":53651952,"type":"<anon|352550624>","jit":617}],"inclusive_time":2798,"file":"gen/moar/m-CORE.setting","jit_entries":617,"entries":617,"callees":[{"exclusive_time":563,"id":35623536,"line":16147,"name":"of","inclusive_time":563,"file":"gen/moar/m-CORE.setting","deopt_one":617,"jit_entries":617,"entries":617},{"exclusive_time":366,"id":35547232,"line":13998,"name":"BUILD","inclusive_time":366,"file":"gen/moar/m-CORE.setting","jit_entries":617,"entries":617}]}]},{"exclusive_time":5169,"id":35048976,"line":3840,"name":"sequential-map","allocations":[{"count":1234,"id":19706296,"type":"BOOTCode","jit":1234},{"count":1851,"id":29975016,"type":"Scalar","jit":1851}],"inclusive_time":8158,"file":"gen/moar/m-CORE.setting","jit_entries":617,"entries":617,"callees":[{"exclusive_time":1017,"id":35157504,"line":6408,"name":"count","inclusive_time":1108,"file":"gen/moar/m-CORE.setting","jit_entries":617,"entries":617,"callees":[{"exclusive_time":90,"id":35839376,"line":18706,"name":"count","inclusive_time":90,"file":"gen/moar/m-CORE.setting","jit_entries":617,"entries":617}]},{"exclusive_time":160,"id":34228480,"line":8515,"name":"infix:<==>","inclusive_time":160,"file":"gen/moar/m-CORE.setting","inlined_entries":617,"jit_entries":617,"entries":617},{"exclusive_time":318,"id":35049888,"line":3847,"name":"","inclusive_time":318,"file":"gen/moar/m-CORE.setting","jit_entries":617,"entries":617},{"exclusive_time":1021,"id":35147168,"line":3827,"name":"new","allocations":[{"count":1851,"id":29975016,"type":"Scalar","jit":1851},{"count":617,"id":53654184,"type":"<anon|159066640>","jit":617}],"inclusive_time":1021,"file":"gen/moar/m-CORE.setting","jit_entries":617,"entries":617},{"exclusive_time":380,"id":35446304,"line":12399,"name":"new","allocations":[{"count":617,"id":53654904,"type":"Seq","jit":617}],"inclusive_time":380,"file":"gen/moar/m-CORE.setting","jit_entries":617,"entries":617}]}]}]},{"exclusive_time":3855,"id":35451472,"line":12474,"name":"sink","inclusive_time":35176,"file":"gen/moar/m-CORE.setting","entries":617,"callees":[{"exclusive_time":2293,"id":35446912,"line":12407,"name":"iterator","inclusive_time":2917,"file":"gen/moar/m-CORE.setting","jit_entries":617,"entries":617,"callees":[{"exclusive_time":65,"id":35552400,"line":14088,"name":"sink","inclusive_time":65,"file":"gen/moar/m-CORE.setting","jit_entries":617,"entries":617},{"exclusive_time":559,"id":38361936,"line":2635,"name":"type_check","inclusive_time":559,"file":"gen/moar/m-Metamodel.nqp","jit_entries":617,"entries":617}]},{"exclusive_time":10724,"id":35052016,"line":3921,"name":"sink-all","allocations":[{"count":617,"id":19706296,"type":"BOOTCode","jit":616},{"count":3702,"id":29975016,"type":"Scalar","jit":3696}],"inclusive_time":28243,"file":"gen/moar/m-CORE.setting","deopt_one":616,"jit_entries":616,"entries":617,"callees":[{"exclusive_time":78,"id":34255840,"line":8705,"name":"prefix:<!>","inclusive_time":78,"file":"gen/moar/m-CORE.setting","jit_entries":617,"entries":617},{"exclusive_time":1600,"id":35163280,"line":6478,"name":"phasers","inclusive_time":1696,"file":"gen/moar/m-CORE.setting","jit_entries":1234,"entries":1234,"callees":[{"exclusive_time":96,"id":35552400,"line":14088,"name":"sink","inclusive_time":96,"file":"gen/moar/m-CORE.setting","jit_entries":1234,"entries":1234}]},{"exclusive_time":619,"id":34151264,"line":7763,"name":"prefix:<+>","inclusive_time":3886,"file":"gen/moar/m-CORE.setting","jit_entries":617,"entries":617,"callees":[{"exclusive_time":831,"id":35541456,"line":13911,"name":"Numeric","inclusive_time":3266,"spesh_entries":617,"file":"gen/moar/m-CORE.setting","entries":617,"callees":[{"exclusive_time":2243,"id":35543584,"line":13932,"name":"elems","inclusive_time":2434,"spesh_entries":617,"file":"gen/moar/m-CORE.setting","entries":617,"callees":[{"exclusive_time":89,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":89,"file":"gen/moar/m-CORE.setting","jit_entries":617,"entries":617},{"exclusive_time":101,"id":35552400,"line":14088,"name":"sink","inclusive_time":101,"file":"gen/moar/m-CORE.setting","jit_entries":1234,"entries":1234}]}]}]},{"exclusive_time":1488,"id":34824016,"line":929,"name":"Bool","inclusive_time":3536,"spesh_entries":617,"file":"gen/moar/m-CORE.setting","entries":617,"callees":[{"exclusive_time":83,"id":38067136,"line":3008,"name":"","allocations":[{"count":617,"id":29974584,"type":"List","jit":617}],"inclusive_time":83,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":617,"entries":617},{"exclusive_time":1776,"id":35540544,"line":13904,"name":"Bool","inclusive_time":1964,"file":"gen/moar/m-CORE.setting","jit_entries":617,"entries":617,"callees":[{"exclusive_time":70,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":70,"file":"gen/moar/m-CORE.setting","jit_entries":617,"entries":617},{"exclusive_time":45,"id":35552400,"line":14088,"name":"sink","inclusive_time":45,"file":"gen/moar/m-CORE.setting","jit_entries":617,"entries":617},{"exclusive_time":71,"id":34254320,"line":8699,"name":"prefix:<so>","inclusive_time":71,"file":"gen/moar/m-CORE.setting","jit_entries":617,"entries":617}]}]},{"exclusive_time":93,"id":35552400,"line":14088,"name":"sink","inclusive_time":93,"file":"gen/moar/m-CORE.setting","jit_entries":1234,"entries":1234},{"exclusive_time":1085,"id":35547840,"line":14006,"name":"pull-one","inclusive_time":8015,"file":"gen/moar/m-CORE.setting","jit_entries":617,"entries":617,"callees":[{"exclusive_time":4326,"id":35548144,"line":14013,"name":"reify-and-pull-one","allocations":[{"count":617,"id":29974992,"type":"IntLexRef","jit":617}],"inclusive_time":6930,"file":"gen/moar/m-CORE.setting","jit_entries":617,"entries":617,"callees":[{"exclusive_time":2330,"id":35589488,"line":13724,"name":"reify-at-least","allocations":[{"count":617,"id":19706296,"type":"BOOTCode","jit":610},{"count":617,"id":29975016,"type":"Scalar","jit":610}],"inclusive_time":2389,"file":"gen/moar/m-CORE.setting","jit_entries":610,"entries":617,"callees":[{"exclusive_time":59,"id":35552400,"line":14088,"name":"sink","inclusive_time":59,"file":"gen/moar/m-CORE.setting","jit_entries":617,"entries":617}]},{"exclusive_time":214,"id":34229392,"line":8526,"name":"infix:«<»","inclusive_time":214,"file":"gen/moar/m-CORE.setting","jit_entries":610,"entries":617}]}]},{"exclusive_time":211,"id":34818544,"line":856,"name":"sink","inclusive_time":211,"file":"gen/moar/m-CORE.setting","entries":617}]},{"exclusive_time":159,"id":34818544,"line":856,"name":"sink","inclusive_time":159,"file":"gen/moar/m-CORE.setting","entries":617}]}]},{"exclusive_time":395,"id":35032560,"line":3623,"name":"item","allocations":[{"count":617,"id":29975016,"type":"Scalar","jit":610}],"inclusive_time":395,"file":"gen/moar/m-CORE.setting","jit_entries":610,"entries":617}]}]}]},{"exclusive_time":11832,"id":35586144,"line":14494,"name":"join","allocations":[{"count":2472,"id":29975016,"type":"Scalar","jit":2000},{"count":618,"id":19706800,"type":"BOOTStrArray","jit":500},{"count":618,"id":29975064,"type":"Str","jit":500}],"inclusive_time":13945,"file":"gen/moar/m-CORE.setting","jit_entries":500,"entries":618,"callees":[{"exclusive_time":91,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":91,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618},{"exclusive_time":148,"id":35552400,"line":14088,"name":"sink","inclusive_time":148,"file":"gen/moar/m-CORE.setting","jit_entries":1854,"entries":1854},{"exclusive_time":1625,"id":35543584,"line":13932,"name":"elems","inclusive_time":1791,"spesh_entries":500,"file":"gen/moar/m-CORE.setting","jit_entries":118,"entries":618,"callees":[{"exclusive_time":75,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":75,"file":"gen/moar/m-CORE.setting","jit_entries":618,"entries":618},{"exclusive_time":91,"id":35552400,"line":14088,"name":"sink","inclusive_time":91,"file":"gen/moar/m-CORE.setting","jit_entries":1236,"entries":1236}]},{"exclusive_time":80,"id":35310112,"line":10026,"name":"Str","inclusive_time":80,"file":"gen/moar/m-CORE.setting","jit_entries":556,"entries":618}]},{"exclusive_time":34,"id":34856848,"line":1245,"name":"perl","inclusive_time":3105,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":38067136,"line":3008,"name":"","allocations":[{"count":1,"id":29974584,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":12,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":66,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":40,"id":38059536,"line":1708,"name":"","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":17,"id":19707232,"type":"NQPArray"},{"count":4,"id":19707280,"type":"NQPArrayIter"},{"count":6,"id":19706248,"type":"BOOTHash"},{"count":6,"id":19706752,"type":"BOOTIntArray"},{"count":3,"id":19706152,"type":"BOOTInt"}],"inclusive_time":53,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":12,"id":38059840,"line":1738,"name":"is_narrower","inclusive_time":12,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":6,"entries":6}]},{"exclusive_time":1,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":52,"id":35316192,"line":10175,"name":"perl","inclusive_time":3004,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":44,"id":34983008,"line":3182,"name":"PERLIFY-STR","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":1,"id":29975064,"type":"Str"}],"inclusive_time":2949,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":38057408,"line":1621,"name":"","allocations":[{"count":1,"id":29974632,"type":"Sub"},{"count":1,"id":19706296,"type":"BOOTCode"}],"inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1},{"exclusive_time":67,"id":34983920,"line":3196,"name":"","allocations":[{"count":1,"id":29975016,"type":"Scalar"},{"count":26,"id":29975064,"type":"Str"},{"count":12,"id":29974968,"type":"StrLexRef"}],"inclusive_time":2903,"file":"gen/moar/m-CORE.setting","entries":13,"callees":[{"exclusive_time":5,"id":33980112,"line":1669,"name":"infix:<~>","inclusive_time":25,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":17,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":18,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":1,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]},{"exclusive_time":1,"id":34315424,"line":11811,"name":"infix:<~>","allocations":[{"count":1,"id":29975064,"type":"Str"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":12,"id":34315424,"line":11811,"name":"infix:<~>","allocations":[{"count":12,"id":29975064,"type":"Str","jit":4}],"inclusive_time":12,"file":"gen/moar/m-CORE.setting","jit_entries":4,"entries":12},{"exclusive_time":51,"id":34983312,"line":3183,"name":"char-to-escapes","inclusive_time":2797,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":2,"id":35382160,"line":11340,"name":"NFC","allocations":[{"count":1,"id":59272528,"type":"NFC"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":6,"id":35295824,"line":9880,"name":"list","inclusive_time":24,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":2,"id":38057408,"line":1621,"name":"","allocations":[{"count":2,"id":29975160,"spesh":2,"type":"Block"},{"count":2,"id":19706296,"spesh":2,"type":"BOOTCode"}],"inclusive_time":2,"spesh_entries":2,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":2},{"exclusive_time":7,"id":34348560,"line":12668,"name":"GATHER","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"}],"inclusive_time":15,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":2,"id":34348864,"line":12669,"name":"","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":4,"id":34349472,"line":12676,"name":"new","allocations":[{"count":1,"id":53652480,"type":"<anon|340889968>"}],"inclusive_time":5,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":38057408,"line":1621,"name":"","allocations":[{"count":2,"id":29975160,"spesh":2,"type":"Block"},{"count":2,"id":19706296,"spesh":2,"type":"BOOTCode"}],"inclusive_time":1,"spesh_entries":2,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":2}]},{"exclusive_time":0,"id":35446304,"line":12399,"name":"new","allocations":[{"count":1,"id":53654904,"type":"Seq","jit":1}],"inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]},{"exclusive_time":0,"id":38057408,"line":1621,"name":"","allocations":[{"count":1,"id":29975160,"spesh":1,"type":"Block"},{"count":1,"id":19706296,"spesh":1,"type":"BOOTCode"}],"inclusive_time":0,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1},{"exclusive_time":7,"id":35044416,"line":3773,"name":"map","inclusive_time":53,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":38067136,"line":3008,"name":"","allocations":[{"count":1,"id":29974584,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":15,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":16,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":7,"id":35045632,"line":3779,"name":"map","allocations":[{"count":2,"id":29975016,"type":"Scalar"}],"inclusive_time":29,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":5,"id":35446912,"line":12407,"name":"iterator","inclusive_time":6,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":1,"id":38361936,"line":2635,"name":"type_check","inclusive_time":1,"file":"gen/moar/m-Metamodel.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":10,"id":35048976,"line":3840,"name":"sequential-map","allocations":[{"count":2,"id":19706296,"type":"BOOTCode","jit":2},{"count":3,"id":29975016,"type":"Scalar","jit":3}],"inclusive_time":16,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":2,"id":35157504,"line":6408,"name":"count","inclusive_time":2,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":0,"id":35839376,"line":18706,"name":"count","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":34228480,"line":8515,"name":"infix:<==>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","inlined_entries":1,"jit_entries":1,"entries":1},{"exclusive_time":0,"id":35049888,"line":3847,"name":"","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":2,"id":35147168,"line":3827,"name":"new","allocations":[{"count":3,"id":29975016,"type":"Scalar","jit":3},{"count":1,"id":53654184,"type":"<anon|159066640>","jit":1}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":35446304,"line":12399,"name":"new","allocations":[{"count":1,"id":53654904,"type":"Seq","jit":1}],"inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]}]},{"exclusive_time":12,"id":34912784,"line":1878,"name":"join","allocations":[{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":2661,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":3,"id":35445088,"line":12384,"name":"list","inclusive_time":14,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":2,"id":35446912,"line":12407,"name":"iterator","inclusive_time":3,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":38361936,"line":2635,"name":"type_check","inclusive_time":0,"file":"gen/moar/m-Metamodel.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":4,"id":35536896,"line":13804,"name":"from-iterator","allocations":[{"count":1,"id":29974584,"type":"List"},{"count":1,"id":54157808,"type":"IterationBuffer"},{"count":1,"id":51227144,"type":"List::Reifier"}],"inclusive_time":7,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":2,"id":35546320,"line":13985,"name":"reification-target","inclusive_time":2,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":0,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]}]},{"exclusive_time":26,"id":35586144,"line":14494,"name":"join","allocations":[{"count":3,"id":29975016,"type":"Scalar"},{"count":1,"id":19706800,"type":"BOOTStrArray"},{"count":1,"id":29975064,"type":"Str"}],"inclusive_time":2634,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2},{"exclusive_time":14,"id":35591616,"line":13753,"name":"reify-until-lazy","allocations":[{"count":1,"id":19706296,"type":"BOOTCode","jit":1},{"count":2,"id":29975016,"type":"Scalar","jit":2}],"inclusive_time":2587,"file":"gen/moar/m-CORE.setting","deopt_one":1,"jit_entries":1,"entries":1,"callees":[{"exclusive_time":4,"id":34959600,"line":2476,"name":"push-until-lazy","allocations":[{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":2570,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":2,"id":35147472,"line":3836,"name":"is-lazy","inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":34961120,"line":2511,"name":"is-lazy","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":4,"id":34958992,"line":2463,"name":"push-all","allocations":[{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":2563,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":4,"id":34958688,"line":2454,"name":"push-at-least","allocations":[{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":2559,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":27,"id":34958080,"line":2436,"name":"push-exactly","allocations":[{"count":2,"id":29975016,"type":"Scalar","jit":2}],"inclusive_time":2554,"file":"gen/moar/m-CORE.setting","deopt_one":1,"jit_entries":1,"entries":1,"callees":[{"exclusive_time":63,"id":35050192,"line":3853,"name":"pull-one","allocations":[{"count":2,"id":19706296,"type":"BOOTCode","jit":2},{"count":6,"id":29975016,"type":"Scalar","jit":6}],"inclusive_time":2525,"file":"gen/moar/m-CORE.setting","deopt_one":2,"jit_entries":2,"entries":2,"callees":[{"exclusive_time":0,"id":34255840,"line":8705,"name":"prefix:<!>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","inlined_entries":1,"jit_entries":2,"entries":2},{"exclusive_time":2,"id":35163280,"line":6478,"name":"phasers","inclusive_time":3,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2,"callees":[{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]},{"exclusive_time":0,"id":34151264,"line":7763,"name":"prefix:<+>","inclusive_time":6,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":1,"id":35541456,"line":13911,"name":"Numeric","inclusive_time":5,"spesh_entries":1,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":3,"id":35543584,"line":13932,"name":"elems","inclusive_time":3,"spesh_entries":1,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]}]}]},{"exclusive_time":3,"id":34824016,"line":929,"name":"Bool","inclusive_time":7,"spesh_entries":1,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":38067136,"line":3008,"name":"","allocations":[{"count":1,"id":29974584,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":3,"id":35540544,"line":13904,"name":"Bool","inclusive_time":3,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":0,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":34254320,"line":8699,"name":"prefix:<so>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":4,"entries":4},{"exclusive_time":49,"id":34351296,"line":12707,"name":"pull-one","allocations":[{"count":3,"id":29975016,"type":"Scalar"},{"count":1,"id":54157808,"type":"IterationBuffer"},{"count":1,"id":19706584,"type":"BOOTContinuation"}],"inclusive_time":93,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":0,"id":34818544,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":7,"id":34350384,"line":12698,"name":"","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":40,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":8,"id":35296128,"line":9881,"name":"","allocations":[{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":30,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":5,"id":25499344,"line":641,"name":"take","allocations":[{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":21,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":3,"id":25496000,"line":596,"name":"THROW","allocations":[{"count":1,"id":19706488,"spesh":1,"type":"BOOTException"}],"inclusive_time":16,"spesh_entries":2,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":2,"id":34350992,"line":-1,"name":"","allocations":[{"count":2,"id":29974944,"spesh":2,"type":"Int"}],"inclusive_time":13,"spesh_entries":2,"file":"/usr/local/src/rakudo/install/share/perl6/runtime/CORE.setting.moarvm","entries":2,"callees":[{"exclusive_time":8,"id":34349776,"line":12680,"name":"","inclusive_time":10,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":0,"id":35438704,"line":12283,"name":"push","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":38057408,"line":1621,"name":"","allocations":[{"count":1,"id":29975160,"spesh":1,"type":"Block"},{"count":1,"id":19706296,"spesh":1,"type":"BOOTCode"}],"inclusive_time":0,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]}]}]}]},{"exclusive_time":0,"id":34818544,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]},{"exclusive_time":2,"id":38057408,"line":1621,"name":"","allocations":[{"count":1,"id":29975160,"spesh":1,"type":"Block"},{"count":1,"id":19706296,"spesh":1,"type":"BOOTCode"}],"inclusive_time":2,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]},{"exclusive_time":0,"id":34350080,"line":12692,"name":"","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":2,"id":34350688,"line":12700,"name":"","inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":0,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":2},{"exclusive_time":24,"id":34983616,"line":3184,"name":"","inclusive_time":2345,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":68,"id":33950736,"line":7351,"name":"fmt","allocations":[{"count":1,"id":29975016,"type":"Scalar"},{"count":1,"id":19706224,"type":"BOOTArray"},{"count":1,"id":29975064,"type":"Str"}],"inclusive_time":2321,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":80,"id":34978752,"line":3092,"name":"initialize-sprintf-handler","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"}],"inclusive_time":149,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":34979360,"line":3093,"name":"","allocations":[{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":5,"id":34825536,"line":941,"name":"new","inclusive_time":61,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":38067136,"line":3008,"name":"","allocations":[{"count":1,"id":29974584,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":10,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":10,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":3,"id":34825840,"line":942,"name":"new","allocations":[{"count":1,"id":29974560,"type":"Hash"}],"inclusive_time":44,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":4,"id":34827360,"line":956,"name":"bless","allocations":[{"count":1,"id":29974560,"type":"Hash"},{"count":1,"id":54157760,"type":"Rakudo::Internals::SprintfHandler"}],"inclusive_time":41,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":5,"id":35539024,"line":13860,"name":"from-slurpy-flat","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":2,"id":54157808,"type":"IterationBuffer"},{"count":1,"id":29974896,"type":"Array"},{"count":1,"id":51227144,"type":"List::Reifier"}],"inclusive_time":9,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":38067136,"line":3008,"name":"","allocations":[{"count":1,"id":29974584,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":3,"id":35607120,"line":15806,"name":"reification-target","inclusive_time":4,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":35628704,"line":15464,"name":"new","allocations":[{"count":1,"id":54158192,"type":"Array::ArrayReificationTarget"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":24,"id":34827664,"line":960,"name":"BUILDALL","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"}],"inclusive_time":26,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":2,"id":38327888,"line":1475,"name":"BUILDALLPLAN","inclusive_time":2,"file":"gen/moar/m-Metamodel.nqp","entries":1}]}]}]}]},{"exclusive_time":4,"id":22234096,"line":2661,"name":"sprintfaddargumenthandler","inclusive_time":5,"file":"gen/moar/stage2/NQPHLL.nqp","entries":1,"callees":[{"exclusive_time":0,"id":20424240,"line":596,"name":"push","inclusive_time":0,"file":"gen/moar/stage2/NQPCORE.setting","entries":1}]},{"exclusive_time":0,"id":34818544,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":35310416,"line":10027,"name":"Stringy","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":142,"id":22233488,"line":2633,"name":"sprintf","allocations":[{"count":1,"id":19706416,"type":"Lexotic"}],"inclusive_time":2103,"file":"gen/moar/stage2/NQPHLL.nqp","entries":1,"callees":[{"exclusive_time":96,"id":21622464,"line":2090,"name":"parse","allocations":[{"count":1,"id":19706200,"type":"BOOTStr"}],"inclusive_time":1961,"file":"gen/moar/stage2/QRegex.nqp","entries":1,"callees":[{"exclusive_time":39,"id":21596320,"line":1143,"name":"!cursor_init","allocations":[{"count":1,"id":29970072,"type":"ParseShared"},{"count":1,"id":19706800,"type":"BOOTStrArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":42,"file":"gen/moar/stage2/QRegex.nqp","entries":1,"callees":[{"exclusive_time":0,"id":20421504,"line":505,"name":"CREATE","allocations":[{"count":1,"id":59275792,"type":"Syntax"}],"inclusive_time":0,"file":"gen/moar/stage2/NQPCORE.setting","entries":1},{"exclusive_time":3,"id":21597232,"line":1228,"name":"!cursor_start_cur","allocations":[{"count":1,"id":59275792,"type":"Syntax"},{"count":1,"id":19706752,"type":"BOOTIntArray"}],"inclusive_time":3,"file":"gen/moar/stage2/QRegex.nqp","entries":1}]},{"exclusive_time":121,"id":22234704,"line":-1,"name":"TOP","inclusive_time":1821,"file":"/usr/local/src/rakudo/install/share/nqp/lib/NQPHLL.moarvm","entries":1,"callees":[{"exclusive_time":2,"id":21596928,"line":1205,"name":"!cursor_start","allocations":[{"count":1,"id":59275792,"type":"Syntax"},{"count":1,"id":19706752,"type":"BOOTIntArray"}],"inclusive_time":2,"file":"gen/moar/stage2/QRegex.nqp","entries":1},{"exclusive_time":48,"id":22235312,"line":-1,"name":"statement","inclusive_time":1593,"file":"/usr/local/src/rakudo/install/share/nqp/lib/NQPHLL.moarvm","entries":2,"callees":[{"exclusive_time":4,"id":21596928,"line":1205,"name":"!cursor_start","allocations":[{"count":2,"id":59275792,"type":"Syntax"},{"count":2,"id":19706752,"type":"BOOTIntArray"}],"inclusive_time":4,"file":"gen/moar/stage2/QRegex.nqp","entries":2},{"exclusive_time":198,"id":21602400,"line":1416,"name":"!alt","inclusive_time":240,"file":"gen/moar/stage2/QRegex.nqp","entries":3,"callees":[{"exclusive_time":3,"id":20605920,"line":1332,"name":"cache_get","inclusive_time":3,"file":"gen/moar/stage2/nqpmo.nqp","entries":3},{"exclusive_time":37,"id":21590544,"line":701,"name":"run_alt","allocations":[{"count":2,"id":19711384,"type":"NFAType"}],"inclusive_time":37,"file":"gen/moar/stage2/QRegex.nqp","entries":3}]},{"exclusive_time":33,"id":22235616,"line":-1,"name":"directive","inclusive_time":1145,"file":"/usr/local/src/rakudo/install/share/nqp/lib/NQPHLL.moarvm","entries":1,"callees":[{"exclusive_time":196,"id":21601184,"line":1356,"name":"!protoregex","inclusive_time":1111,"file":"gen/moar/stage2/QRegex.nqp","entries":1,"callees":[{"exclusive_time":0,"id":20605920,"line":1332,"name":"cache_get","inclusive_time":0,"file":"gen/moar/stage2/nqpmo.nqp","entries":1},{"exclusive_time":28,"id":21590240,"line":682,"name":"run","allocations":[{"count":1,"id":19711384,"type":"NFAType"}],"inclusive_time":28,"file":"gen/moar/stage2/QRegex.nqp","entries":1},{"exclusive_time":0,"id":21582944,"line":116,"name":"states","inclusive_time":0,"file":"gen/moar/stage2/QRegex.nqp","entries":1},{"exclusive_time":216,"id":22238656,"line":-1,"name":"directive:sym<x>","inclusive_time":884,"file":"/usr/local/src/rakudo/install/share/nqp/lib/NQPHLL.moarvm","entries":1,"callees":[{"exclusive_time":2,"id":21596928,"line":1205,"name":"!cursor_start","allocations":[{"count":1,"id":59275792,"type":"Syntax"},{"count":1,"id":19706752,"type":"BOOTIntArray"}],"inclusive_time":2,"file":"gen/moar/stage2/QRegex.nqp","entries":1},{"exclusive_time":80,"id":22239872,"line":-1,"name":"idx","inclusive_time":90,"file":"/usr/local/src/rakudo/install/share/nqp/lib/NQPHLL.moarvm","entries":1,"callees":[{"exclusive_time":2,"id":21596928,"line":1205,"name":"!cursor_start","allocations":[{"count":1,"id":59275792,"type":"Syntax"},{"count":1,"id":19706752,"type":"BOOTIntArray"}],"inclusive_time":2,"file":"gen/moar/stage2/QRegex.nqp","entries":1},{"exclusive_time":1,"id":21597840,"line":1248,"name":"!cursor_start_subcapture","allocations":[{"count":1,"id":59275792,"type":"Syntax"}],"inclusive_time":1,"file":"gen/moar/stage2/QRegex.nqp","entries":1},{"exclusive_time":1,"id":21598752,"line":1296,"name":"!cursor_pass","inclusive_time":1,"file":"gen/moar/stage2/QRegex.nqp","entries":1},{"exclusive_time":3,"id":21598144,"line":1256,"name":"!cursor_capture","allocations":[{"count":1,"id":19707232,"type":"NQPArray"}],"inclusive_time":3,"file":"gen/moar/stage2/QRegex.nqp","entries":1},{"exclusive_time":1,"id":21599056,"line":1307,"name":"!cursor_fail","inclusive_time":1,"file":"gen/moar/stage2/QRegex.nqp","entries":1}]},{"exclusive_time":13,"id":22240176,"line":-1,"name":"flags","inclusive_time":65,"file":"/usr/local/src/rakudo/install/share/nqp/lib/NQPHLL.moarvm","entries":2,"callees":[{"exclusive_time":4,"id":21596928,"line":1205,"name":"!cursor_start","allocations":[{"count":2,"id":59275792,"type":"Syntax"},{"count":2,"id":19706752,"type":"BOOTIntArray"}],"inclusive_time":4,"file":"gen/moar/stage2/QRegex.nqp","entries":2},{"exclusive_time":6,"id":21602400,"line":1416,"name":"!alt","inclusive_time":12,"file":"gen/moar/stage2/QRegex.nqp","entries":2,"callees":[{"exclusive_time":1,"id":20605920,"line":1332,"name":"cache_get","inclusive_time":1,"file":"gen/moar/stage2/nqpmo.nqp","entries":2},{"exclusive_time":3,"id":21590544,"line":701,"name":"run_alt","allocations":[{"count":1,"id":19711384,"type":"NFAType"}],"inclusive_time":3,"file":"gen/moar/stage2/QRegex.nqp","entries":2}]},{"exclusive_time":1,"id":21597840,"line":1248,"name":"!cursor_start_subcapture","allocations":[{"count":1,"id":59275792,"type":"Syntax"}],"inclusive_time":1,"file":"gen/moar/stage2/QRegex.nqp","entries":1},{"exclusive_time":25,"id":21598752,"line":1296,"name":"!cursor_pass","inclusive_time":29,"file":"gen/moar/stage2/QRegex.nqp","entries":2,"callees":[{"exclusive_time":3,"id":21600272,"line":1340,"name":"!reduce","inclusive_time":3,"file":"gen/moar/stage2/QRegex.nqp","entries":1}]},{"exclusive_time":3,"id":21598144,"line":1256,"name":"!cursor_capture","allocations":[{"count":1,"id":19707232,"type":"NQPArray"}],"inclusive_time":3,"file":"gen/moar/stage2/QRegex.nqp","entries":1},{"exclusive_time":1,"id":21599056,"line":1307,"name":"!cursor_fail","inclusive_time":1,"file":"gen/moar/stage2/QRegex.nqp","entries":1}]},{"exclusive_time":8,"id":21598144,"line":1256,"name":"!cursor_capture","allocations":[{"count":1,"id":19707232,"type":"NQPArray"}],"inclusive_time":8,"file":"gen/moar/stage2/QRegex.nqp","entries":3},{"exclusive_time":5,"id":22240480,"line":-1,"name":"size","inclusive_time":216,"file":"/usr/local/src/rakudo/install/share/nqp/lib/NQPHLL.moarvm","entries":1,"callees":[{"exclusive_time":2,"id":21596928,"line":1205,"name":"!cursor_start","allocations":[{"count":1,"id":59275792,"type":"Syntax"},{"count":1,"id":19706752,"type":"BOOTIntArray"}],"inclusive_time":2,"file":"gen/moar/stage2/QRegex.nqp","entries":1},{"exclusive_time":2,"id":21602400,"line":1416,"name":"!alt","inclusive_time":6,"file":"gen/moar/stage2/QRegex.nqp","entries":1,"callees":[{"exclusive_time":1,"id":20605920,"line":1332,"name":"cache_get","inclusive_time":1,"file":"gen/moar/stage2/nqpmo.nqp","entries":1},{"exclusive_time":2,"id":21590544,"line":701,"name":"run_alt","allocations":[{"count":1,"id":19711384,"type":"NFAType"}],"inclusive_time":2,"file":"gen/moar/stage2/QRegex.nqp","entries":1}]},{"exclusive_time":1,"id":21598752,"line":1296,"name":"!cursor_pass","inclusive_time":202,"file":"gen/moar/stage2/QRegex.nqp","entries":1,"callees":[{"exclusive_time":110,"id":21600272,"line":1340,"name":"!reduce","inclusive_time":200,"file":"gen/moar/stage2/QRegex.nqp","entries":1,"callees":[{"exclusive_time":54,"id":21621856,"line":1940,"name":"MATCH","allocations":[{"count":1,"id":19706248,"type":"BOOTHash"},{"count":1,"id":19708408,"type":"NQPMatch"},{"count":1,"id":19706200,"type":"BOOTStr"},{"count":1,"id":19707304,"type":"NQPHashIter"}],"inclusive_time":56,"file":"gen/moar/stage2/QRegex.nqp","entries":1,"callees":[{"exclusive_time":0,"id":21594192,"line":1064,"name":"orig","inclusive_time":0,"file":"gen/moar/stage2/QRegex.nqp","entries":1},{"exclusive_time":0,"id":20418160,"line":446,"name":"CAPS","inclusive_time":0,"file":"gen/moar/stage2/NQPCORE.setting","entries":1}]},{"exclusive_time":32,"id":22250512,"line":2626,"name":"size","allocations":[{"count":1,"id":19706200,"type":"BOOTStr"}],"inclusive_time":34,"file":"gen/moar/stage2/NQPHLL.nqp","entries":1,"callees":[{"exclusive_time":1,"id":21616688,"line":1837,"name":"Str","inclusive_time":1,"file":"gen/moar/stage2/QRegex.nqp","entries":1},{"exclusive_time":0,"id":21618816,"line":1849,"name":"make","inclusive_time":0,"file":"gen/moar/stage2/QRegex.nqp","entries":1}]}]}]}]},{"exclusive_time":1,"id":21597840,"line":1248,"name":"!cursor_start_subcapture","allocations":[{"count":1,"id":59275792,"type":"Syntax"}],"inclusive_time":1,"file":"gen/moar/stage2/QRegex.nqp","entries":1},{"exclusive_time":2,"id":21598752,"line":1296,"name":"!cursor_pass","inclusive_time":281,"file":"gen/moar/stage2/QRegex.nqp","entries":2,"callees":[{"exclusive_time":58,"id":21600272,"line":1340,"name":"!reduce","inclusive_time":278,"file":"gen/moar/stage2/QRegex.nqp","entries":1,"callees":[{"exclusive_time":15,"id":21621856,"line":1940,"name":"MATCH","allocations":[{"count":1,"id":19706248,"type":"BOOTHash"},{"count":1,"id":19708408,"type":"NQPMatch"},{"count":1,"id":19706200,"type":"BOOTStr"},{"count":1,"id":19707304,"type":"NQPHashIter"},{"count":1,"id":19707232,"type":"NQPArray"}],"inclusive_time":32,"file":"gen/moar/stage2/QRegex.nqp","entries":1,"callees":[{"exclusive_time":0,"id":21594192,"line":1064,"name":"orig","inclusive_time":0,"file":"gen/moar/stage2/QRegex.nqp","entries":1},{"exclusive_time":0,"id":20418160,"line":446,"name":"CAPS","inclusive_time":0,"file":"gen/moar/stage2/NQPCORE.setting","entries":1},{"exclusive_time":11,"id":21621856,"line":1940,"name":"MATCH","allocations":[{"count":2,"id":19706248,"type":"BOOTHash"},{"count":2,"id":19708408,"type":"NQPMatch"},{"count":2,"id":19706200,"type":"BOOTStr"},{"count":1,"id":19707304,"type":"NQPHashIter"}],"inclusive_time":16,"file":"gen/moar/stage2/QRegex.nqp","entries":3,"callees":[{"exclusive_time":0,"id":21594192,"line":1064,"name":"orig","inclusive_time":0,"file":"gen/moar/stage2/QRegex.nqp","entries":2},{"exclusive_time":0,"id":20418160,"line":446,"name":"CAPS","inclusive_time":0,"file":"gen/moar/stage2/NQPCORE.setting","entries":1},{"exclusive_time":3,"id":21621856,"line":1940,"name":"MATCH","allocations":[{"count":1,"id":19706248,"type":"BOOTHash"},{"count":1,"id":19708408,"type":"NQPMatch"},{"count":1,"id":19706200,"type":"BOOTStr"}],"inclusive_time":3,"file":"gen/moar/stage2/QRegex.nqp","entries":1,"callees":[{"exclusive_time":0,"id":21594192,"line":1064,"name":"orig","inclusive_time":0,"file":"gen/moar/stage2/QRegex.nqp","entries":1}]}]}]},{"exclusive_time":80,"id":22249296,"line":2598,"name":"directive:sym<x>","allocations":[{"count":3,"id":19706200,"type":"BOOTStr"}],"inclusive_time":187,"file":"gen/moar/stage2/NQPHLL.nqp","entries":1,"callees":[{"exclusive_time":4,"id":22241392,"line":2307,"name":"next_argument","inclusive_time":4,"file":"gen/moar/stage2/NQPHLL.nqp","entries":1},{"exclusive_time":67,"id":22241696,"line":2317,"name":"intify","allocations":[{"count":1,"id":19707280,"type":"NQPArrayIter"}],"inclusive_time":91,"file":"gen/moar/stage2/NQPHLL.nqp","entries":1,"callees":[{"exclusive_time":11,"id":34979664,"line":3094,"name":"mine","allocations":[{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":11,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":11,"id":34979968,"line":3095,"name":"int","allocations":[{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":12,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":35222864,"line":8252,"name":"Int","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":9,"id":22242912,"line":2353,"name":"has_flag","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":1,"id":19707280,"type":"NQPArrayIter"}],"inclusive_time":10,"file":"gen/moar/stage2/NQPHLL.nqp","entries":1,"callees":[{"exclusive_time":0,"id":22243216,"line":2356,"name":"","inclusive_time":0,"file":"gen/moar/stage2/NQPHLL.nqp","entries":1}]},{"exclusive_time":0,"id":21616688,"line":1837,"name":"Str","inclusive_time":0,"file":"gen/moar/stage2/QRegex.nqp","entries":1},{"exclusive_time":0,"id":21618816,"line":1849,"name":"make","inclusive_time":0,"file":"gen/moar/stage2/QRegex.nqp","entries":1}]}]}]}]}]}]},{"exclusive_time":3,"id":21598144,"line":1256,"name":"!cursor_capture","allocations":[{"count":1,"id":19707232,"type":"NQPArray"}],"inclusive_time":3,"file":"gen/moar/stage2/QRegex.nqp","entries":1},{"exclusive_time":2,"id":21598752,"line":1296,"name":"!cursor_pass","inclusive_time":149,"file":"gen/moar/stage2/QRegex.nqp","entries":1,"callees":[{"exclusive_time":41,"id":21600272,"line":1340,"name":"!reduce","inclusive_time":147,"file":"gen/moar/stage2/QRegex.nqp","entries":1,"callees":[{"exclusive_time":9,"id":21621856,"line":1940,"name":"MATCH","allocations":[{"count":1,"id":19706248,"type":"BOOTHash"},{"count":1,"id":19708408,"type":"NQPMatch"},{"count":1,"id":19706200,"type":"BOOTStr"},{"count":1,"id":19707304,"type":"NQPHashIter"}],"inclusive_time":10,"file":"gen/moar/stage2/QRegex.nqp","entries":1,"callees":[{"exclusive_time":0,"id":21594192,"line":1064,"name":"orig","inclusive_time":0,"file":"gen/moar/stage2/QRegex.nqp","entries":1},{"exclusive_time":0,"id":20418160,"line":446,"name":"CAPS","inclusive_time":0,"file":"gen/moar/stage2/NQPCORE.setting","entries":1},{"exclusive_time":0,"id":21621856,"line":1940,"name":"MATCH","inclusive_time":0,"file":"gen/moar/stage2/QRegex.nqp","entries":1}]},{"exclusive_time":70,"id":22246256,"line":2361,"name":"statement","allocations":[{"count":1,"id":19707232,"type":"NQPArray"}],"inclusive_time":95,"file":"gen/moar/stage2/NQPHLL.nqp","entries":1,"callees":[{"exclusive_time":1,"id":21617600,"line":1840,"name":"Bool","inclusive_time":1,"file":"gen/moar/stage2/QRegex.nqp","entries":2},{"exclusive_time":11,"id":22242000,"line":2344,"name":"padding_char","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":1,"id":19706200,"type":"BOOTStr"},{"count":1,"id":19707280,"type":"NQPArrayIter"}],"inclusive_time":15,"file":"gen/moar/stage2/NQPHLL.nqp","entries":1,"callees":[{"exclusive_time":2,"id":22242912,"line":2353,"name":"has_flag","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":1,"id":19707280,"type":"NQPArrayIter"}],"inclusive_time":2,"file":"gen/moar/stage2/NQPHLL.nqp","entries":1,"callees":[{"exclusive_time":0,"id":22243216,"line":2356,"name":"","inclusive_time":0,"file":"gen/moar/stage2/NQPHLL.nqp","entries":1}]},{"exclusive_time":1,"id":22242608,"line":2348,"name":"","allocations":[{"count":1,"id":19706200,"type":"BOOTStr"}],"inclusive_time":1,"file":"gen/moar/stage2/NQPHLL.nqp","entries":1,"callees":[{"exclusive_time":0,"id":21617600,"line":1840,"name":"Bool","inclusive_time":0,"file":"gen/moar/stage2/QRegex.nqp","entries":1}]}]},{"exclusive_time":0,"id":21619120,"line":1850,"name":"made","inclusive_time":0,"file":"gen/moar/stage2/QRegex.nqp","entries":3},{"exclusive_time":1,"id":22241088,"line":2300,"name":"infix_x","allocations":[{"count":1,"id":19707232,"type":"NQPArray"}],"inclusive_time":1,"file":"gen/moar/stage2/NQPHLL.nqp","entries":1},{"exclusive_time":0,"id":20424240,"line":596,"name":"push","inclusive_time":0,"file":"gen/moar/stage2/NQPCORE.setting","entries":2},{"exclusive_time":1,"id":22242912,"line":2353,"name":"has_flag","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":1,"id":19707280,"type":"NQPArrayIter"}],"inclusive_time":2,"file":"gen/moar/stage2/NQPHLL.nqp","entries":1,"callees":[{"exclusive_time":0,"id":22243216,"line":2356,"name":"","inclusive_time":0,"file":"gen/moar/stage2/NQPHLL.nqp","entries":1}]},{"exclusive_time":2,"id":20403440,"line":710,"name":"join","allocations":[{"count":1,"id":19706800,"type":"BOOTStrArray"},{"count":1,"id":19707280,"type":"NQPArrayIter"}],"inclusive_time":2,"file":"gen/moar/stage2/NQPCORE.setting","entries":1},{"exclusive_time":0,"id":21618816,"line":1849,"name":"make","inclusive_time":0,"file":"gen/moar/stage2/QRegex.nqp","entries":1}]}]}]},{"exclusive_time":1,"id":21599056,"line":1307,"name":"!cursor_fail","inclusive_time":1,"file":"gen/moar/stage2/QRegex.nqp","entries":1}]},{"exclusive_time":3,"id":21598144,"line":1256,"name":"!cursor_capture","allocations":[{"count":1,"id":19707232,"type":"NQPArray"}],"inclusive_time":3,"file":"gen/moar/stage2/QRegex.nqp","entries":1},{"exclusive_time":2,"id":21598752,"line":1296,"name":"!cursor_pass","inclusive_time":100,"file":"gen/moar/stage2/QRegex.nqp","entries":1,"callees":[{"exclusive_time":61,"id":21600272,"line":1340,"name":"!reduce","inclusive_time":97,"file":"gen/moar/stage2/QRegex.nqp","entries":1,"callees":[{"exclusive_time":18,"id":21621856,"line":1940,"name":"MATCH","allocations":[{"count":1,"id":19706248,"type":"BOOTHash","jit":1},{"count":1,"id":19708408,"type":"NQPMatch","jit":1},{"count":2,"id":19706200,"type":"BOOTStr","jit":2},{"count":1,"id":19707304,"type":"NQPHashIter","jit":1},{"count":1,"id":19707232,"type":"NQPArray","jit":1}],"inclusive_time":19,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":1,"entries":1,"callees":[{"exclusive_time":0,"id":21594192,"line":1064,"name":"orig","inclusive_time":0,"file":"gen/moar/stage2/QRegex.nqp","entries":1},{"exclusive_time":0,"id":20418160,"line":446,"name":"CAPS","inclusive_time":0,"file":"gen/moar/stage2/NQPCORE.setting","entries":1},{"exclusive_time":0,"id":21621856,"line":1940,"name":"MATCH","inclusive_time":0,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":13,"id":22245648,"line":2284,"name":"TOP","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":1,"id":19707232,"type":"NQPArray"},{"count":1,"id":19707280,"type":"NQPArrayIter"}],"inclusive_time":16,"file":"gen/moar/stage2/NQPHLL.nqp","entries":1,"callees":[{"exclusive_time":2,"id":22245952,"line":2286,"name":"","inclusive_time":2,"file":"gen/moar/stage2/NQPHLL.nqp","entries":1,"callees":[{"exclusive_time":0,"id":21619120,"line":1850,"name":"made","inclusive_time":0,"file":"gen/moar/stage2/QRegex.nqp","entries":1},{"exclusive_time":0,"id":20424240,"line":596,"name":"push","inclusive_time":0,"file":"gen/moar/stage2/NQPCORE.setting","entries":1}]},{"exclusive_time":0,"id":21618816,"line":1849,"name":"make","inclusive_time":0,"file":"gen/moar/stage2/QRegex.nqp","entries":1}]}]}]}]},{"exclusive_time":0,"id":21621856,"line":1940,"name":"MATCH","inclusive_time":0,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":21619120,"line":1850,"name":"made","allocations":[{"count":1,"id":19706200,"type":"BOOTStr"}],"inclusive_time":0,"file":"gen/moar/stage2/QRegex.nqp","entries":1}]}]}]},{"exclusive_time":0,"id":34818544,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":3,"id":35162368,"line":6469,"name":"fire_phasers","allocations":[{"count":1,"id":19706296,"spesh":1,"type":"BOOTCode"}],"inclusive_time":3,"spesh_entries":1,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":34255840,"line":8705,"name":"prefix:<!>","inclusive_time":0,"spesh_entries":1,"file":"gen/moar/m-CORE.setting","inlined_entries":1,"entries":1}]}]},{"exclusive_time":0,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":2},{"exclusive_time":0,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2},{"exclusive_time":1,"id":35438704,"line":12283,"name":"push","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":0,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]},{"exclusive_time":0,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":1,"id":38361936,"line":2635,"name":"type_check","inclusive_time":1,"file":"gen/moar/m-Metamodel.nqp","jit_entries":1,"entries":1},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":34818544,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":2},{"exclusive_time":3,"id":35595264,"line":13795,"name":"fully-reified","inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]},{"exclusive_time":0,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":8,"id":35543584,"line":13932,"name":"elems","allocations":[{"count":1,"id":29975016,"type":"Scalar","jit":1}],"inclusive_time":15,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":0,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":3,"id":35591616,"line":13753,"name":"reify-until-lazy","allocations":[{"count":1,"id":19706296,"type":"BOOTCode","jit":1}],"inclusive_time":3,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]},{"exclusive_time":0,"id":34818544,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":2,"id":35595264,"line":13795,"name":"fully-reified","inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]}]},{"exclusive_time":0,"id":35310112,"line":10026,"name":"Str","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":2,"id":34315424,"line":11811,"name":"infix:<~>","allocations":[{"count":2,"id":29975064,"type":"Str"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":2}]}]}]},{"exclusive_time":2,"id":34315424,"line":11811,"name":"infix:<~>","allocations":[{"count":2,"id":29975064,"type":"Str","jit":1}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":2}]}]},{"exclusive_time":3827,"id":35316192,"line":10175,"name":"perl","inclusive_time":394856,"file":"gen/moar/m-CORE.setting","jit_entries":411,"entries":617,"callees":[{"exclusive_time":8646,"id":34983008,"line":3182,"name":"PERLIFY-STR","allocations":[{"count":617,"id":19706296,"type":"BOOTCode","jit":411},{"count":617,"id":29975064,"type":"Str","jit":411}],"inclusive_time":389937,"file":"gen/moar/m-CORE.setting","jit_entries":411,"entries":617,"callees":[{"exclusive_time":901,"id":38057408,"line":1621,"name":"","allocations":[{"count":617,"id":29974632,"spesh":617,"type":"Sub"},{"count":617,"id":19706296,"spesh":617,"type":"BOOTCode"}],"inclusive_time":901,"spesh_entries":617,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":617},{"exclusive_time":22640,"id":34983920,"line":3196,"name":"","allocations":[{"count":617,"id":29975016,"type":"Scalar","jit":598},{"count":16042,"id":29975064,"type":"Str","jit":15554},{"count":7269,"id":29974968,"type":"StrLexRef","jit":7062}],"inclusive_time":380388,"file":"gen/moar/m-CORE.setting","jit_entries":7777,"entries":8021,"callees":[{"exclusive_time":5177,"id":34315424,"line":11811,"name":"infix:<~>","allocations":[{"count":8021,"id":29975064,"type":"Str","jit":8021}],"inclusive_time":5177,"file":"gen/moar/m-CORE.setting","jit_entries":8021,"entries":8021},{"exclusive_time":7591,"id":34983312,"line":3183,"name":"char-to-escapes","inclusive_time":352570,"file":"gen/moar/m-CORE.setting","jit_entries":435,"entries":641,"callees":[{"exclusive_time":1186,"id":35382160,"line":11340,"name":"NFC","allocations":[{"count":641,"id":59272528,"spesh":488,"type":"NFC"}],"inclusive_time":1186,"spesh_entries":488,"file":"gen/moar/m-CORE.setting","entries":641},{"exclusive_time":3346,"id":35295824,"line":9880,"name":"list","inclusive_time":11579,"file":"gen/moar/m-CORE.setting","jit_entries":438,"entries":641,"callees":[{"exclusive_time":1021,"id":38057408,"line":1621,"name":"","allocations":[{"count":1282,"id":29975160,"spesh":1282,"type":"Block"},{"count":1282,"id":19706296,"spesh":1282,"type":"BOOTCode"}],"inclusive_time":1021,"spesh_entries":1282,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1282},{"exclusive_time":3548,"id":34348560,"line":12668,"name":"GATHER","allocations":[{"count":641,"id":19706296,"type":"BOOTCode","jit":641}],"inclusive_time":7211,"file":"gen/moar/m-CORE.setting","jit_entries":641,"entries":641,"callees":[{"exclusive_time":846,"id":34348864,"line":12669,"name":"","allocations":[{"count":641,"id":19706296,"type":"BOOTCode","jit":641},{"count":641,"id":29975016,"type":"Scalar","jit":641}],"inclusive_time":846,"file":"gen/moar/m-CORE.setting","jit_entries":641,"entries":641},{"exclusive_time":1618,"id":34349472,"line":12676,"name":"new","allocations":[{"count":641,"id":53652480,"type":"<anon|340889968>","jit":641}],"inclusive_time":2472,"file":"gen/moar/m-CORE.setting","jit_entries":641,"entries":641,"callees":[{"exclusive_time":853,"id":38057408,"line":1621,"name":"","allocations":[{"count":1282,"id":29975160,"spesh":1282,"type":"Block"},{"count":1282,"id":19706296,"spesh":1282,"type":"BOOTCode"}],"inclusive_time":853,"spesh_entries":1282,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1282}]},{"exclusive_time":344,"id":35446304,"line":12399,"name":"new","allocations":[{"count":641,"id":53654904,"type":"Seq","jit":641}],"inclusive_time":344,"file":"gen/moar/m-CORE.setting","jit_entries":641,"entries":641}]}]},{"exclusive_time":402,"id":38057408,"line":1621,"name":"","allocations":[{"count":641,"id":29975160,"spesh":641,"type":"Block"},{"count":641,"id":19706296,"spesh":641,"type":"BOOTCode"}],"inclusive_time":402,"spesh_entries":641,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":641},{"exclusive_time":3928,"id":35045632,"line":3779,"name":"map","allocations":[{"count":1282,"id":29975016,"type":"Scalar"}],"inclusive_time":14125,"file":"gen/moar/m-CORE.setting","entries":641,"callees":[{"exclusive_time":2082,"id":35446912,"line":12407,"name":"iterator","inclusive_time":2483,"file":"gen/moar/m-CORE.setting","jit_entries":641,"entries":641,"callees":[{"exclusive_time":66,"id":35552400,"line":14088,"name":"sink","inclusive_time":66,"file":"gen/moar/m-CORE.setting","jit_entries":641,"entries":641},{"exclusive_time":334,"id":38361936,"line":2635,"name":"type_check","inclusive_time":334,"file":"gen/moar/m-Metamodel.nqp","jit_entries":641,"entries":641}]},{"exclusive_time":4989,"id":35048976,"line":3840,"name":"sequential-map","allocations":[{"count":1282,"id":19706296,"type":"BOOTCode","jit":1282},{"count":1923,"id":29975016,"type":"Scalar","jit":1923}],"inclusive_time":7714,"file":"gen/moar/m-CORE.setting","jit_entries":641,"entries":641,"callees":[{"exclusive_time":1040,"id":35157504,"line":6408,"name":"count","inclusive_time":1098,"file":"gen/moar/m-CORE.setting","jit_entries":641,"entries":641,"callees":[{"exclusive_time":58,"id":35839376,"line":18706,"name":"count","inclusive_time":58,"file":"gen/moar/m-CORE.setting","jit_entries":641,"entries":641}]},{"exclusive_time":173,"id":34228480,"line":8515,"name":"infix:<==>","inclusive_time":173,"file":"gen/moar/m-CORE.setting","inlined_entries":641,"jit_entries":641,"entries":641},{"exclusive_time":245,"id":35049888,"line":3847,"name":"","inclusive_time":245,"file":"gen/moar/m-CORE.setting","jit_entries":641,"entries":641},{"exclusive_time":1012,"id":35147168,"line":3827,"name":"new","allocations":[{"count":1923,"id":29975016,"type":"Scalar","jit":1923},{"count":641,"id":53654184,"type":"<anon|159066640>","jit":641}],"inclusive_time":1012,"file":"gen/moar/m-CORE.setting","jit_entries":641,"entries":641},{"exclusive_time":193,"id":35446304,"line":12399,"name":"new","allocations":[{"count":641,"id":53654904,"type":"Seq","jit":641}],"inclusive_time":193,"file":"gen/moar/m-CORE.setting","jit_entries":641,"entries":641}]}]},{"exclusive_time":3147,"id":34912784,"line":1878,"name":"join","allocations":[{"count":641,"id":29975016,"type":"Scalar","jit":435}],"inclusive_time":316598,"file":"gen/moar/m-CORE.setting","jit_entries":435,"entries":641,"callees":[{"exclusive_time":1990,"id":35445088,"line":12384,"name":"list","inclusive_time":6787,"file":"gen/moar/m-CORE.setting","jit_entries":487,"entries":641,"callees":[{"exclusive_time":1535,"id":35446912,"line":12407,"name":"iterator","inclusive_time":1815,"file":"gen/moar/m-CORE.setting","jit_entries":641,"entries":641,"callees":[{"exclusive_time":55,"id":35552400,"line":14088,"name":"sink","inclusive_time":55,"file":"gen/moar/m-CORE.setting","jit_entries":641,"entries":641},{"exclusive_time":225,"id":38361936,"line":2635,"name":"type_check","inclusive_time":225,"file":"gen/moar/m-Metamodel.nqp","jit_entries":641,"entries":641}]},{"exclusive_time":1391,"id":35536896,"line":13804,"name":"from-iterator","allocations":[{"count":641,"id":29974584,"type":"List","jit":641},{"count":641,"id":54157808,"type":"IterationBuffer","jit":641},{"count":641,"id":51227144,"type":"List::Reifier","jit":641}],"inclusive_time":2980,"file":"gen/moar/m-CORE.setting","jit_entries":641,"entries":641,"callees":[{"exclusive_time":1446,"id":35546320,"line":13985,"name":"reification-target","inclusive_time":1588,"file":"gen/moar/m-CORE.setting","jit_entries":641,"entries":641,"callees":[{"exclusive_time":89,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":89,"file":"gen/moar/m-CORE.setting","jit_entries":641,"entries":641},{"exclusive_time":52,"id":35552400,"line":14088,"name":"sink","inclusive_time":52,"file":"gen/moar/m-CORE.setting","jit_entries":641,"entries":641}]}]}]},{"exclusive_time":10619,"id":35586144,"line":14494,"name":"join","allocations":[{"count":1923,"id":29975016,"type":"Scalar","jit":1500},{"count":641,"id":19706800,"type":"BOOTStrArray","jit":500},{"count":641,"id":29975064,"type":"Str","jit":500}],"inclusive_time":306663,"file":"gen/moar/m-CORE.setting","jit_entries":500,"entries":641,"callees":[{"exclusive_time":79,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":79,"file":"gen/moar/m-CORE.setting","jit_entries":641,"entries":641},{"exclusive_time":102,"id":35552400,"line":14088,"name":"sink","inclusive_time":102,"file":"gen/moar/m-CORE.setting","jit_entries":1282,"entries":1282},{"exclusive_time":6737,"id":35591616,"line":13753,"name":"reify-until-lazy","allocations":[{"count":641,"id":19706296,"type":"BOOTCode","jit":641},{"count":1282,"id":29975016,"type":"Scalar","jit":1282}],"inclusive_time":287995,"file":"gen/moar/m-CORE.setting","deopt_one":641,"jit_entries":641,"entries":641,"callees":[{"exclusive_time":2263,"id":34959600,"line":2476,"name":"push-until-lazy","allocations":[{"count":641,"id":29975016,"type":"Scalar","jit":633}],"inclusive_time":280646,"file":"gen/moar/m-CORE.setting","jit_entries":633,"entries":641,"callees":[{"exclusive_time":1928,"id":35147472,"line":3836,"name":"is-lazy","inclusive_time":1997,"file":"gen/moar/m-CORE.setting","jit_entries":488,"entries":641,"callees":[{"exclusive_time":69,"id":34961120,"line":2511,"name":"is-lazy","inclusive_time":69,"file":"gen/moar/m-CORE.setting","jit_entries":633,"entries":641}]},{"exclusive_time":2454,"id":34958992,"line":2463,"name":"push-all","allocations":[{"count":641,"id":29975016,"type":"Scalar"}],"inclusive_time":276385,"file":"gen/moar/m-CORE.setting","entries":641,"callees":[{"exclusive_time":1893,"id":34958688,"line":2454,"name":"push-at-least","allocations":[{"count":641,"id":29975016,"spesh":641,"type":"Scalar"}],"inclusive_time":273886,"spesh_entries":641,"file":"gen/moar/m-CORE.setting","entries":641,"callees":[{"exclusive_time":12828,"id":34958080,"line":2436,"name":"push-exactly","allocations":[{"count":1282,"id":29975016,"type":"Scalar","jit":1282}],"inclusive_time":271992,"file":"gen/moar/m-CORE.setting","deopt_one":641,"jit_entries":641,"entries":641,"callees":[{"exclusive_time":20571,"id":35050192,"line":3853,"name":"pull-one","allocations":[{"count":1282,"id":19706296,"type":"BOOTCode","jit":1282},{"count":3846,"id":29975016,"type":"Scalar","jit":3846}],"inclusive_time":258020,"file":"gen/moar/m-CORE.setting","deopt_one":1282,"jit_entries":1282,"entries":1282,"callees":[{"exclusive_time":234,"id":34255840,"line":8705,"name":"prefix:<!>","inclusive_time":234,"file":"gen/moar/m-CORE.setting","inlined_entries":641,"jit_entries":1282,"entries":1282},{"exclusive_time":1494,"id":35163280,"line":6478,"name":"phasers","inclusive_time":1605,"file":"gen/moar/m-CORE.setting","jit_entries":1282,"entries":1282,"callees":[{"exclusive_time":110,"id":35552400,"line":14088,"name":"sink","inclusive_time":110,"file":"gen/moar/m-CORE.setting","jit_entries":1282,"entries":1282}]},{"exclusive_time":493,"id":34151264,"line":7763,"name":"prefix:<+>","inclusive_time":3448,"file":"gen/moar/m-CORE.setting","jit_entries":641,"entries":641,"callees":[{"exclusive_time":863,"id":35541456,"line":13911,"name":"Numeric","inclusive_time":2954,"spesh_entries":641,"file":"gen/moar/m-CORE.setting","entries":641,"callees":[{"exclusive_time":1918,"id":35543584,"line":13932,"name":"elems","inclusive_time":2091,"spesh_entries":641,"file":"gen/moar/m-CORE.setting","entries":641,"callees":[{"exclusive_time":72,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":72,"file":"gen/moar/m-CORE.setting","jit_entries":641,"entries":641},{"exclusive_time":100,"id":35552400,"line":14088,"name":"sink","inclusive_time":100,"file":"gen/moar/m-CORE.setting","jit_entries":1282,"entries":1282}]}]}]},{"exclusive_time":2161,"id":34824016,"line":929,"name":"Bool","inclusive_time":4178,"spesh_entries":641,"file":"gen/moar/m-CORE.setting","entries":641,"callees":[{"exclusive_time":120,"id":38067136,"line":3008,"name":"","allocations":[{"count":641,"id":29974584,"type":"List","jit":641}],"inclusive_time":120,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":641,"entries":641},{"exclusive_time":1731,"id":35540544,"line":13904,"name":"Bool","inclusive_time":1895,"file":"gen/moar/m-CORE.setting","jit_entries":641,"entries":641,"callees":[{"exclusive_time":68,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":68,"file":"gen/moar/m-CORE.setting","jit_entries":641,"entries":641},{"exclusive_time":48,"id":35552400,"line":14088,"name":"sink","inclusive_time":48,"file":"gen/moar/m-CORE.setting","jit_entries":641,"entries":641},{"exclusive_time":46,"id":34254320,"line":8699,"name":"prefix:<so>","inclusive_time":46,"file":"gen/moar/m-CORE.setting","jit_entries":641,"entries":641}]}]},{"exclusive_time":235,"id":35552400,"line":14088,"name":"sink","inclusive_time":235,"file":"gen/moar/m-CORE.setting","jit_entries":2564,"entries":2564},{"exclusive_time":7965,"id":34351296,"line":12707,"name":"pull-one","allocations":[{"count":1923,"id":29975016,"type":"Scalar","jit":1923},{"count":641,"id":54157808,"type":"IterationBuffer","jit":641},{"count":641,"id":19706584,"type":"BOOTContinuation","jit":641}],"inclusive_time":27920,"file":"gen/moar/m-CORE.setting","deopt_one":1282,"jit_entries":1282,"entries":1282,"callees":[{"exclusive_time":78,"id":34818544,"line":856,"name":"sink","inclusive_time":78,"file":"gen/moar/m-CORE.setting","jit_entries":641,"entries":641},{"exclusive_time":3655,"id":34350384,"line":12698,"name":"","allocations":[{"count":641,"id":19706296,"type":"BOOTCode"},{"count":641,"id":29975016,"type":"Scalar"}],"inclusive_time":18964,"file":"gen/moar/m-CORE.setting","entries":1282,"callees":[{"exclusive_time":3375,"id":35296128,"line":9881,"name":"","allocations":[{"count":641,"id":29975016,"type":"Scalar","jit":438}],"inclusive_time":14641,"file":"gen/moar/m-CORE.setting","jit_entries":876,"entries":1282,"callees":[{"exclusive_time":2437,"id":25499344,"line":641,"name":"take","allocations":[{"count":641,"id":29975016,"spesh":438,"type":"Scalar","jit":189}],"inclusive_time":11198,"spesh_entries":876,"file":"gen/moar/m-CORE.setting","jit_entries":378,"entries":1282,"callees":[{"exclusive_time":1722,"id":25496000,"line":596,"name":"THROW","allocations":[{"count":641,"id":19706488,"spesh":641,"type":"BOOTException"}],"inclusive_time":8761,"spesh_entries":1282,"file":"gen/moar/m-CORE.setting","entries":1282,"callees":[{"exclusive_time":1624,"id":34350992,"line":-1,"name":"","allocations":[{"count":1282,"id":29974944,"spesh":1282,"type":"Int"}],"inclusive_time":7038,"spesh_entries":1282,"file":"/usr/local/src/rakudo/install/share/perl6/runtime/CORE.setting.moarvm","entries":1282,"callees":[{"exclusive_time":4341,"id":34349776,"line":12680,"name":"","inclusive_time":5413,"file":"gen/moar/m-CORE.setting","entries":1282,"callees":[{"exclusive_time":534,"id":35438704,"line":12283,"name":"push","inclusive_time":534,"file":"gen/moar/m-CORE.setting","entries":641},{"exclusive_time":537,"id":38057408,"line":1621,"name":"","allocations":[{"count":641,"id":29975160,"spesh":641,"type":"Block"},{"count":641,"id":19706296,"spesh":641,"type":"BOOTCode"}],"inclusive_time":537,"spesh_entries":641,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":641}]}]}]}]},{"exclusive_time":67,"id":34818544,"line":856,"name":"sink","inclusive_time":67,"file":"gen/moar/m-CORE.setting","jit_entries":641,"entries":641}]},{"exclusive_time":667,"id":38057408,"line":1621,"name":"","allocations":[{"count":641,"id":29975160,"spesh":641,"type":"Block"},{"count":641,"id":19706296,"spesh":641,"type":"BOOTCode"}],"inclusive_time":667,"spesh_entries":641,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":641}]},{"exclusive_time":347,"id":34350080,"line":12692,"name":"","inclusive_time":347,"file":"gen/moar/m-CORE.setting","jit_entries":641,"entries":641},{"exclusive_time":71,"id":35552400,"line":14088,"name":"sink","inclusive_time":71,"file":"gen/moar/m-CORE.setting","jit_entries":641,"entries":641},{"exclusive_time":493,"id":34350688,"line":12700,"name":"","inclusive_time":493,"file":"gen/moar/m-CORE.setting","jit_entries":641,"entries":641}]},{"exclusive_time":267,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":267,"file":"gen/moar/m-CORE.setting","jit_entries":641,"entries":1282},{"exclusive_time":1622,"id":34983616,"line":3184,"name":"","inclusive_time":197793,"file":"gen/moar/m-CORE.setting","jit_entries":485,"entries":641,"callees":[{"exclusive_time":6405,"id":33950736,"line":7351,"name":"fmt","allocations":[{"count":641,"id":29975016,"type":"Scalar","jit":435},{"count":641,"id":19706224,"type":"BOOTArray","jit":435},{"count":641,"id":29975064,"type":"Str","jit":435}],"inclusive_time":196170,"file":"gen/moar/m-CORE.setting","jit_entries":435,"entries":641,"callees":[{"exclusive_time":2237,"id":34978752,"line":3092,"name":"initialize-sprintf-handler","allocations":[{"count":641,"id":19706296,"type":"BOOTCode","jit":435}],"inclusive_time":3174,"file":"gen/moar/m-CORE.setting","jit_entries":435,"entries":641,"callees":[{"exclusive_time":870,"id":34979360,"line":3093,"name":"","allocations":[{"count":641,"id":29975016,"type":"Scalar","jit":485}],"inclusive_time":870,"file":"gen/moar/m-CORE.setting","jit_entries":485,"entries":641},{"exclusive_time":66,"id":35552400,"line":14088,"name":"sink","inclusive_time":66,"file":"gen/moar/m-CORE.setting","jit_entries":641,"entries":641}]},{"exclusive_time":63,"id":35310416,"line":10027,"name":"Stringy","inclusive_time":63,"file":"gen/moar/m-CORE.setting","jit_entries":641,"entries":641},{"exclusive_time":2916,"id":22233488,"line":2633,"name":"sprintf","inclusive_time":186527,"file":"gen/moar/stage2/NQPHLL.nqp","jit_entries":485,"entries":641,"callees":[{"exclusive_time":3792,"id":21622464,"line":2090,"name":"parse","allocations":[{"count":641,"id":19706200,"spesh":545,"type":"BOOTStr"}],"inclusive_time":183530,"spesh_entries":545,"file":"gen/moar/stage2/QRegex.nqp","entries":641,"callees":[{"exclusive_time":6800,"id":21596320,"line":1143,"name":"!cursor_init","allocations":[{"count":641,"id":29970072,"type":"ParseShared"},{"count":641,"id":19706800,"type":"BOOTStrArray"},{"count":641,"id":19706248,"type":"BOOTHash"}],"inclusive_time":7406,"file":"gen/moar/stage2/QRegex.nqp","entries":641,"callees":[{"exclusive_time":134,"id":20421504,"line":505,"name":"CREATE","allocations":[{"count":641,"id":59275792,"type":"Syntax","jit":634}],"inclusive_time":134,"file":"gen/moar/stage2/NQPCORE.setting","jit_entries":634,"entries":641},{"exclusive_time":471,"id":21597232,"line":1228,"name":"!cursor_start_cur","allocations":[{"count":641,"id":59275792,"type":"Syntax","jit":634},{"count":641,"id":19706752,"type":"BOOTIntArray","jit":634}],"inclusive_time":471,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":634,"entries":641}]},{"exclusive_time":5909,"id":22234704,"line":-1,"name":"TOP","inclusive_time":172095,"file":"/usr/local/src/rakudo/install/share/nqp/lib/NQPHLL.moarvm","jit_entries":385,"entries":641,"callees":[{"exclusive_time":586,"id":21596928,"line":1205,"name":"!cursor_start","allocations":[{"count":641,"id":59275792,"spesh":385,"type":"Syntax","jit":256},{"count":641,"id":19706752,"spesh":385,"type":"BOOTIntArray","jit":256}],"inclusive_time":586,"spesh_entries":385,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":256,"entries":641},{"exclusive_time":8265,"id":22235312,"line":-1,"name":"statement","inclusive_time":153469,"spesh_entries":770,"file":"/usr/local/src/rakudo/install/share/nqp/lib/NQPHLL.moarvm","jit_entries":207,"entries":1282,"callees":[{"exclusive_time":822,"id":21596928,"line":1205,"name":"!cursor_start","allocations":[{"count":1282,"id":59275792,"spesh":977,"type":"Syntax","jit":305},{"count":1282,"id":19706752,"spesh":977,"type":"BOOTIntArray","jit":305}],"inclusive_time":822,"spesh_entries":977,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":305,"entries":1282},{"exclusive_time":4842,"id":21602400,"line":1416,"name":"!alt","inclusive_time":14263,"spesh_entries":1465,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":456,"entries":1923,"callees":[{"exclusive_time":1480,"id":20605920,"line":1332,"name":"cache_get","inclusive_time":1480,"file":"gen/moar/stage2/nqpmo.nqp","jit_entries":1921,"entries":1923},{"exclusive_time":7940,"id":21590544,"line":701,"name":"run_alt","inclusive_time":7940,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":1921,"entries":1923}]},{"exclusive_time":987,"id":22235616,"line":-1,"name":"directive","inclusive_time":104138,"spesh_entries":485,"file":"/usr/local/src/rakudo/install/share/nqp/lib/NQPHLL.moarvm","entries":641,"callees":[{"exclusive_time":5089,"id":21601184,"line":1356,"name":"!protoregex","inclusive_time":103151,"spesh_entries":485,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":149,"entries":641,"callees":[{"exclusive_time":359,"id":20605920,"line":1332,"name":"cache_get","inclusive_time":359,"file":"gen/moar/stage2/nqpmo.nqp","jit_entries":634,"entries":641},{"exclusive_time":4905,"id":21590240,"line":682,"name":"run","inclusive_time":4905,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":634,"entries":641},{"exclusive_time":96,"id":21582944,"line":116,"name":"states","inclusive_time":96,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":634,"entries":641},{"exclusive_time":11734,"id":22238656,"line":-1,"name":"directive:sym<x>","inclusive_time":92700,"file":"/usr/local/src/rakudo/install/share/nqp/lib/NQPHLL.moarvm","jit_entries":335,"entries":641,"callees":[{"exclusive_time":380,"id":21596928,"line":1205,"name":"!cursor_start","allocations":[{"count":641,"id":59275792,"spesh":335,"type":"Syntax","jit":306},{"count":641,"id":19706752,"spesh":335,"type":"BOOTIntArray","jit":306}],"inclusive_time":380,"spesh_entries":335,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":306,"entries":641},{"exclusive_time":5126,"id":22239872,"line":-1,"name":"idx","inclusive_time":7340,"spesh_entries":335,"file":"/usr/local/src/rakudo/install/share/nqp/lib/NQPHLL.moarvm","jit_entries":50,"entries":641,"callees":[{"exclusive_time":281,"id":21596928,"line":1205,"name":"!cursor_start","allocations":[{"count":641,"id":59275792,"spesh":385,"type":"Syntax","jit":256},{"count":641,"id":19706752,"spesh":385,"type":"BOOTIntArray","jit":256}],"inclusive_time":281,"spesh_entries":385,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":256,"entries":641},{"exclusive_time":347,"id":21597840,"line":1248,"name":"!cursor_start_subcapture","allocations":[{"count":641,"id":59275792,"spesh":335,"type":"Syntax","jit":304}],"inclusive_time":347,"spesh_entries":335,"file":"gen/moar/stage2/QRegex.nqp","inlined_entries":385,"jit_entries":304,"entries":641},{"exclusive_time":553,"id":21598752,"line":1296,"name":"!cursor_pass","inclusive_time":553,"spesh_entries":385,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":254,"entries":641},{"exclusive_time":836,"id":21598144,"line":1256,"name":"!cursor_capture","allocations":[{"count":641,"id":19707232,"spesh":385,"type":"NQPArray","jit":255}],"inclusive_time":836,"spesh_entries":385,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":255,"entries":641},{"exclusive_time":196,"id":21599056,"line":1307,"name":"!cursor_fail","inclusive_time":196,"spesh_entries":335,"file":"gen/moar/stage2/QRegex.nqp","inlined_entries":385,"jit_entries":304,"entries":641}]},{"exclusive_time":4976,"id":22240176,"line":-1,"name":"flags","inclusive_time":14171,"spesh_entries":670,"file":"/usr/local/src/rakudo/install/share/nqp/lib/NQPHLL.moarvm","jit_entries":307,"entries":1282,"callees":[{"exclusive_time":693,"id":21596928,"line":1205,"name":"!cursor_start","allocations":[{"count":1282,"id":59275792,"spesh":977,"type":"Syntax","jit":305},{"count":1282,"id":19706752,"spesh":977,"type":"BOOTIntArray","jit":305}],"inclusive_time":693,"spesh_entries":977,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":305,"entries":1282},{"exclusive_time":2188,"id":21602400,"line":1416,"name":"!alt","inclusive_time":3642,"spesh_entries":977,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":305,"entries":1282,"callees":[{"exclusive_time":679,"id":20605920,"line":1332,"name":"cache_get","inclusive_time":679,"file":"gen/moar/stage2/nqpmo.nqp","jit_entries":1282,"entries":1282},{"exclusive_time":774,"id":21590544,"line":701,"name":"run_alt","inclusive_time":774,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":1282,"entries":1282}]},{"exclusive_time":292,"id":21597840,"line":1248,"name":"!cursor_start_subcapture","allocations":[{"count":641,"id":59275792,"spesh":335,"type":"Syntax","jit":304}],"inclusive_time":292,"spesh_entries":335,"file":"gen/moar/stage2/QRegex.nqp","inlined_entries":488,"jit_entries":304,"entries":641},{"exclusive_time":1186,"id":21598752,"line":1296,"name":"!cursor_pass","inclusive_time":3507,"spesh_entries":976,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":303,"entries":1282,"callees":[{"exclusive_time":2320,"id":21600272,"line":1340,"name":"!reduce","inclusive_time":2320,"spesh_entries":640,"file":"gen/moar/stage2/QRegex.nqp","entries":641}]},{"exclusive_time":881,"id":21598144,"line":1256,"name":"!cursor_capture","allocations":[{"count":641,"id":19707232,"spesh":488,"type":"NQPArray","jit":153}],"inclusive_time":881,"spesh_entries":488,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":153,"entries":641},{"exclusive_time":178,"id":21599056,"line":1307,"name":"!cursor_fail","inclusive_time":178,"spesh_entries":335,"file":"gen/moar/stage2/QRegex.nqp","inlined_entries":489,"jit_entries":304,"entries":641}]},{"exclusive_time":1349,"id":21598144,"line":1256,"name":"!cursor_capture","allocations":[{"count":641,"id":19707232,"type":"NQPArray","jit":641}],"inclusive_time":1349,"spesh_entries":335,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":1588,"entries":1923},{"exclusive_time":2364,"id":22240480,"line":-1,"name":"size","inclusive_time":16134,"spesh_entries":335,"file":"/usr/local/src/rakudo/install/share/nqp/lib/NQPHLL.moarvm","jit_entries":50,"entries":641,"callees":[{"exclusive_time":307,"id":21596928,"line":1205,"name":"!cursor_start","allocations":[{"count":641,"id":59275792,"spesh":385,"type":"Syntax","jit":256},{"count":641,"id":19706752,"spesh":385,"type":"BOOTIntArray","jit":256}],"inclusive_time":307,"spesh_entries":385,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":256,"entries":641},{"exclusive_time":956,"id":21602400,"line":1416,"name":"!alt","inclusive_time":1754,"spesh_entries":385,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":256,"entries":641,"callees":[{"exclusive_time":313,"id":20605920,"line":1332,"name":"cache_get","inclusive_time":313,"file":"gen/moar/stage2/nqpmo.nqp","jit_entries":641,"entries":641},{"exclusive_time":484,"id":21590544,"line":701,"name":"run_alt","inclusive_time":484,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":641,"entries":641}]},{"exclusive_time":574,"id":21598752,"line":1296,"name":"!cursor_pass","inclusive_time":11708,"spesh_entries":385,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":255,"entries":641,"callees":[{"exclusive_time":2396,"id":21600272,"line":1340,"name":"!reduce","inclusive_time":11133,"spesh_entries":640,"file":"gen/moar/stage2/QRegex.nqp","entries":641,"callees":[{"exclusive_time":5308,"id":21621856,"line":1940,"name":"MATCH","allocations":[{"count":641,"id":19706248,"spesh":640,"type":"BOOTHash","jit":1},{"count":641,"id":19708408,"spesh":640,"type":"NQPMatch","jit":1},{"count":641,"id":19706200,"spesh":640,"type":"BOOTStr","jit":1},{"count":641,"id":19707304,"spesh":640,"type":"NQPHashIter","jit":1}],"inclusive_time":5529,"spesh_entries":640,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":1,"entries":641,"callees":[{"exclusive_time":156,"id":21594192,"line":1064,"name":"orig","inclusive_time":156,"spesh_entries":640,"file":"gen/moar/stage2/QRegex.nqp","entries":641},{"exclusive_time":65,"id":20418160,"line":446,"name":"CAPS","inclusive_time":65,"file":"gen/moar/stage2/NQPCORE.setting","jit_entries":640,"entries":641}]},{"exclusive_time":2919,"id":22250512,"line":2626,"name":"size","allocations":[{"count":641,"id":19706200,"type":"BOOTStr","jit":485}],"inclusive_time":3206,"file":"gen/moar/stage2/NQPHLL.nqp","jit_entries":485,"entries":641,"callees":[{"exclusive_time":228,"id":21616688,"line":1837,"name":"Str","inclusive_time":228,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":638,"entries":641},{"exclusive_time":58,"id":21618816,"line":1849,"name":"make","inclusive_time":58,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":639,"entries":641}]}]}]}]},{"exclusive_time":227,"id":21597840,"line":1248,"name":"!cursor_start_subcapture","allocations":[{"count":641,"id":59275792,"type":"Syntax","jit":640}],"inclusive_time":227,"file":"gen/moar/stage2/QRegex.nqp","inlined_entries":335,"jit_entries":640,"entries":641},{"exclusive_time":845,"id":21598752,"line":1296,"name":"!cursor_pass","inclusive_time":41362,"spesh_entries":670,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":610,"entries":1282,"callees":[{"exclusive_time":1955,"id":21600272,"line":1340,"name":"!reduce","inclusive_time":40517,"spesh_entries":640,"file":"gen/moar/stage2/QRegex.nqp","entries":641,"callees":[{"exclusive_time":9283,"id":21621856,"line":1940,"name":"MATCH","allocations":[{"count":641,"id":19706248,"spesh":640,"type":"BOOTHash","jit":1},{"count":641,"id":19708408,"spesh":640,"type":"NQPMatch","jit":1},{"count":641,"id":19706200,"spesh":640,"type":"BOOTStr","jit":1},{"count":641,"id":19707304,"spesh":640,"type":"NQPHashIter","jit":1},{"count":641,"id":19707232,"spesh":640,"type":"NQPArray","jit":1}],"inclusive_time":17529,"spesh_entries":640,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":1,"entries":641,"callees":[{"exclusive_time":108,"id":21594192,"line":1064,"name":"orig","inclusive_time":108,"spesh_entries":641,"file":"gen/moar/stage2/QRegex.nqp","entries":641},{"exclusive_time":49,"id":20418160,"line":446,"name":"CAPS","inclusive_time":49,"file":"gen/moar/stage2/NQPCORE.setting","jit_entries":640,"entries":641},{"exclusive_time":6421,"id":21621856,"line":1940,"name":"MATCH","allocations":[{"count":1282,"id":19706248,"type":"BOOTHash","jit":1282},{"count":1282,"id":19708408,"type":"NQPMatch","jit":1282},{"count":1282,"id":19706200,"type":"BOOTStr","jit":1282},{"count":641,"id":19707304,"type":"NQPHashIter","jit":641}],"inclusive_time":8089,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":1923,"entries":1923,"callees":[{"exclusive_time":196,"id":21594192,"line":1064,"name":"orig","inclusive_time":196,"spesh_entries":1282,"file":"gen/moar/stage2/QRegex.nqp","entries":1282},{"exclusive_time":69,"id":20418160,"line":446,"name":"CAPS","inclusive_time":69,"file":"gen/moar/stage2/NQPCORE.setting","jit_entries":640,"entries":641},{"exclusive_time":1313,"id":21621856,"line":1940,"name":"MATCH","allocations":[{"count":641,"id":19706248,"type":"BOOTHash","jit":641},{"count":641,"id":19708408,"type":"NQPMatch","jit":641},{"count":641,"id":19706200,"type":"BOOTStr","jit":641}],"inclusive_time":1401,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":641,"entries":641,"callees":[{"exclusive_time":88,"id":21594192,"line":1064,"name":"orig","inclusive_time":88,"spesh_entries":641,"file":"gen/moar/stage2/QRegex.nqp","entries":641}]}]}]},{"exclusive_time":9595,"id":22249296,"line":2598,"name":"directive:sym<x>","allocations":[{"count":1923,"id":19706200,"type":"BOOTStr","jit":1155}],"inclusive_time":21031,"file":"gen/moar/stage2/NQPHLL.nqp","jit_entries":385,"entries":641,"callees":[{"exclusive_time":2308,"id":22241392,"line":2307,"name":"next_argument","inclusive_time":2308,"file":"gen/moar/stage2/NQPHLL.nqp","jit_entries":385,"entries":641},{"exclusive_time":3685,"id":22241696,"line":2317,"name":"intify","allocations":[{"count":641,"id":19707280,"spesh":385,"type":"NQPArrayIter"}],"inclusive_time":7028,"spesh_entries":385,"file":"gen/moar/stage2/NQPHLL.nqp","entries":641,"callees":[{"exclusive_time":1416,"id":34979664,"line":3094,"name":"mine","allocations":[{"count":641,"id":29975016,"spesh":435,"type":"Scalar"}],"inclusive_time":1416,"spesh_entries":435,"file":"gen/moar/m-CORE.setting","entries":641},{"exclusive_time":1830,"id":34979968,"line":3095,"name":"int","allocations":[{"count":641,"id":29975016,"type":"Scalar","jit":435}],"inclusive_time":1927,"file":"gen/moar/m-CORE.setting","jit_entries":435,"entries":641,"callees":[{"exclusive_time":96,"id":35222864,"line":8252,"name":"Int","inclusive_time":96,"file":"gen/moar/m-CORE.setting","jit_entries":485,"entries":641}]}]},{"exclusive_time":1449,"id":22242912,"line":2353,"name":"has_flag","allocations":[{"count":641,"id":19706296,"type":"BOOTCode","jit":589},{"count":641,"id":19707280,"type":"NQPArrayIter","jit":589}],"inclusive_time":1885,"file":"gen/moar/stage2/NQPHLL.nqp","jit_entries":589,"entries":641,"callees":[{"exclusive_time":436,"id":22243216,"line":2356,"name":"","inclusive_time":436,"file":"gen/moar/stage2/NQPHLL.nqp","jit_entries":589,"entries":641}]},{"exclusive_time":165,"id":21616688,"line":1837,"name":"Str","inclusive_time":165,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":638,"entries":641},{"exclusive_time":46,"id":21618816,"line":1849,"name":"make","inclusive_time":46,"file":"gen/moar/stage2/QRegex.nqp","inlined_entries":385,"jit_entries":639,"entries":641}]}]}]}]}]}]},{"exclusive_time":794,"id":21598144,"line":1256,"name":"!cursor_capture","allocations":[{"count":641,"id":19707232,"type":"NQPArray","jit":641}],"inclusive_time":794,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":641,"entries":641},{"exclusive_time":739,"id":21598752,"line":1296,"name":"!cursor_pass","inclusive_time":24999,"spesh_entries":488,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":153,"entries":641,"callees":[{"exclusive_time":1887,"id":21600272,"line":1340,"name":"!reduce","inclusive_time":24260,"spesh_entries":641,"file":"gen/moar/stage2/QRegex.nqp","entries":641,"callees":[{"exclusive_time":4910,"id":21621856,"line":1940,"name":"MATCH","allocations":[{"count":641,"id":19706248,"spesh":641,"type":"BOOTHash"},{"count":641,"id":19708408,"spesh":641,"type":"NQPMatch"},{"count":641,"id":19706200,"spesh":641,"type":"BOOTStr"},{"count":641,"id":19707304,"spesh":641,"type":"NQPHashIter"}],"inclusive_time":5182,"spesh_entries":641,"file":"gen/moar/stage2/QRegex.nqp","entries":641,"callees":[{"exclusive_time":100,"id":21594192,"line":1064,"name":"orig","inclusive_time":100,"spesh_entries":641,"file":"gen/moar/stage2/QRegex.nqp","entries":641},{"exclusive_time":52,"id":20418160,"line":446,"name":"CAPS","inclusive_time":52,"file":"gen/moar/stage2/NQPCORE.setting","jit_entries":641,"entries":641},{"exclusive_time":118,"id":21621856,"line":1940,"name":"MATCH","inclusive_time":118,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":641,"entries":641}]},{"exclusive_time":9712,"id":22246256,"line":2361,"name":"statement","allocations":[{"count":641,"id":19707232,"type":"NQPArray","jit":385}],"inclusive_time":17191,"file":"gen/moar/stage2/NQPHLL.nqp","jit_entries":385,"entries":641,"callees":[{"exclusive_time":105,"id":21617600,"line":1840,"name":"Bool","inclusive_time":105,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":1278,"entries":1282},{"exclusive_time":2609,"id":22242000,"line":2344,"name":"padding_char","allocations":[{"count":1282,"id":19706296,"type":"BOOTCode","jit":770},{"count":641,"id":19706200,"type":"BOOTStr","jit":385},{"count":641,"id":19707280,"type":"NQPArrayIter","jit":385}],"inclusive_time":4345,"file":"gen/moar/stage2/NQPHLL.nqp","jit_entries":385,"entries":641,"callees":[{"exclusive_time":852,"id":22242912,"line":2353,"name":"has_flag","allocations":[{"count":641,"id":19706296,"type":"BOOTCode","jit":590},{"count":641,"id":19707280,"type":"NQPArrayIter","jit":590}],"inclusive_time":1022,"file":"gen/moar/stage2/NQPHLL.nqp","jit_entries":590,"entries":641,"callees":[{"exclusive_time":170,"id":22243216,"line":2356,"name":"","inclusive_time":170,"file":"gen/moar/stage2/NQPHLL.nqp","jit_entries":590,"entries":641}]},{"exclusive_time":668,"id":22242608,"line":2348,"name":"","allocations":[{"count":641,"id":19706200,"type":"BOOTStr","jit":485}],"inclusive_time":712,"file":"gen/moar/stage2/NQPHLL.nqp","jit_entries":485,"entries":641,"callees":[{"exclusive_time":44,"id":21617600,"line":1840,"name":"Bool","inclusive_time":44,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":640,"entries":641}]}]},{"exclusive_time":165,"id":21619120,"line":1850,"name":"made","inclusive_time":165,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":1920,"entries":1923},{"exclusive_time":505,"id":22241088,"line":2300,"name":"infix_x","allocations":[{"count":641,"id":19707232,"type":"NQPArray","jit":485}],"inclusive_time":505,"file":"gen/moar/stage2/NQPHLL.nqp","jit_entries":485,"entries":641},{"exclusive_time":245,"id":20424240,"line":596,"name":"push","inclusive_time":245,"file":"gen/moar/stage2/NQPCORE.setting","inlined_entries":770,"jit_entries":1278,"entries":1282},{"exclusive_time":753,"id":22242912,"line":2353,"name":"has_flag","allocations":[{"count":641,"id":19706296,"type":"BOOTCode","jit":590},{"count":641,"id":19707280,"type":"NQPArrayIter","jit":590}],"inclusive_time":913,"file":"gen/moar/stage2/NQPHLL.nqp","jit_entries":590,"entries":641,"callees":[{"exclusive_time":160,"id":22243216,"line":2356,"name":"","inclusive_time":160,"file":"gen/moar/stage2/NQPHLL.nqp","jit_entries":590,"entries":641}]},{"exclusive_time":1144,"id":20403440,"line":710,"name":"join","allocations":[{"count":641,"id":19706800,"type":"BOOTStrArray","jit":622},{"count":641,"id":19707280,"type":"NQPArrayIter","jit":622}],"inclusive_time":1144,"file":"gen/moar/stage2/NQPCORE.setting","jit_entries":622,"entries":641},{"exclusive_time":52,"id":21618816,"line":1849,"name":"make","inclusive_time":52,"file":"gen/moar/stage2/QRegex.nqp","inlined_entries":385,"jit_entries":640,"entries":641}]}]}]},{"exclusive_time":185,"id":21599056,"line":1307,"name":"!cursor_fail","inclusive_time":185,"spesh_entries":385,"file":"gen/moar/stage2/QRegex.nqp","inlined_entries":489,"jit_entries":255,"entries":641}]},{"exclusive_time":476,"id":21598144,"line":1256,"name":"!cursor_capture","allocations":[{"count":641,"id":19707232,"type":"NQPArray","jit":641}],"inclusive_time":476,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":641,"entries":641},{"exclusive_time":587,"id":21598752,"line":1296,"name":"!cursor_pass","inclusive_time":11653,"spesh_entries":385,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":256,"entries":641,"callees":[{"exclusive_time":1687,"id":21600272,"line":1340,"name":"!reduce","inclusive_time":11066,"spesh_entries":641,"file":"gen/moar/stage2/QRegex.nqp","entries":641,"callees":[{"exclusive_time":4594,"id":21621856,"line":1940,"name":"MATCH","allocations":[{"count":641,"id":19706248,"spesh":641,"type":"BOOTHash"},{"count":641,"id":19708408,"spesh":641,"type":"NQPMatch"},{"count":1282,"id":19706200,"spesh":1282,"type":"BOOTStr"},{"count":641,"id":19707304,"spesh":641,"type":"NQPHashIter"},{"count":641,"id":19707232,"spesh":641,"type":"NQPArray"}],"inclusive_time":4886,"spesh_entries":641,"file":"gen/moar/stage2/QRegex.nqp","entries":641,"callees":[{"exclusive_time":102,"id":21594192,"line":1064,"name":"orig","inclusive_time":102,"spesh_entries":641,"file":"gen/moar/stage2/QRegex.nqp","entries":641},{"exclusive_time":53,"id":20418160,"line":446,"name":"CAPS","inclusive_time":53,"file":"gen/moar/stage2/NQPCORE.setting","jit_entries":641,"entries":641},{"exclusive_time":135,"id":21621856,"line":1940,"name":"MATCH","inclusive_time":135,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":641,"entries":641}]},{"exclusive_time":3654,"id":22245648,"line":2284,"name":"TOP","allocations":[{"count":641,"id":19706296,"type":"BOOTCode","jit":335},{"count":641,"id":19707232,"type":"NQPArray","jit":335},{"count":641,"id":19707280,"type":"NQPArrayIter","jit":335}],"inclusive_time":4492,"file":"gen/moar/stage2/NQPHLL.nqp","jit_entries":335,"entries":641,"callees":[{"exclusive_time":540,"id":22245952,"line":2286,"name":"","inclusive_time":742,"file":"gen/moar/stage2/NQPHLL.nqp","jit_entries":485,"entries":641,"callees":[{"exclusive_time":62,"id":21619120,"line":1850,"name":"made","inclusive_time":62,"file":"gen/moar/stage2/QRegex.nqp","inlined_entries":485,"jit_entries":641,"entries":641},{"exclusive_time":139,"id":20424240,"line":596,"name":"push","inclusive_time":139,"file":"gen/moar/stage2/NQPCORE.setting","inlined_entries":485,"jit_entries":640,"entries":641}]},{"exclusive_time":95,"id":21618816,"line":1849,"name":"make","inclusive_time":95,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":634,"entries":641}]}]}]}]},{"exclusive_time":236,"id":21621856,"line":1940,"name":"MATCH","inclusive_time":236,"spesh_entries":545,"file":"gen/moar/stage2/QRegex.nqp","jit_entries":96,"entries":641}]},{"exclusive_time":80,"id":21619120,"line":1850,"name":"made","allocations":[{"count":641,"id":19706200,"type":"BOOTStr","jit":641}],"inclusive_time":80,"file":"gen/moar/stage2/QRegex.nqp","inlined_entries":485,"jit_entries":641,"entries":641}]}]}]},{"exclusive_time":241,"id":34818544,"line":856,"name":"sink","inclusive_time":241,"file":"gen/moar/m-CORE.setting","entries":641},{"exclusive_time":1314,"id":35162368,"line":6469,"name":"fire_phasers","allocations":[{"count":641,"id":19706296,"spesh":641,"type":"BOOTCode"}],"inclusive_time":1524,"spesh_entries":641,"file":"gen/moar/m-CORE.setting","entries":641,"callees":[{"exclusive_time":209,"id":34255840,"line":8705,"name":"prefix:<!>","inclusive_time":209,"spesh_entries":641,"file":"gen/moar/m-CORE.setting","inlined_entries":641,"entries":641}]}]},{"exclusive_time":270,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":270,"file":"gen/moar/m-CORE.setting","jit_entries":641,"entries":1282},{"exclusive_time":272,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":272,"file":"gen/moar/m-CORE.setting","jit_entries":1282,"entries":1282},{"exclusive_time":600,"id":35438704,"line":12283,"name":"push","inclusive_time":600,"file":"gen/moar/m-CORE.setting","entries":641}]}]},{"exclusive_time":44,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":44,"file":"gen/moar/m-CORE.setting","jit_entries":641,"entries":641}]}]},{"exclusive_time":42,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":42,"file":"gen/moar/m-CORE.setting","jit_entries":641,"entries":641},{"exclusive_time":503,"id":38361936,"line":2635,"name":"type_check","inclusive_time":503,"file":"gen/moar/m-Metamodel.nqp","jit_entries":641,"entries":641},{"exclusive_time":66,"id":35552400,"line":14088,"name":"sink","inclusive_time":66,"file":"gen/moar/m-CORE.setting","jit_entries":641,"entries":641}]},{"exclusive_time":276,"id":34818544,"line":856,"name":"sink","inclusive_time":276,"file":"gen/moar/m-CORE.setting","jit_entries":641,"entries":1282},{"exclusive_time":628,"id":35595264,"line":13795,"name":"fully-reified","inclusive_time":802,"file":"gen/moar/m-CORE.setting","jit_entries":641,"entries":641,"callees":[{"exclusive_time":173,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":173,"file":"gen/moar/m-CORE.setting","inlined_entries":1282,"jit_entries":1282,"entries":1282}]},{"exclusive_time":106,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":106,"file":"gen/moar/m-CORE.setting","inlined_entries":500,"jit_entries":641,"entries":641},{"exclusive_time":4040,"id":35543584,"line":13932,"name":"elems","allocations":[{"count":641,"id":29975016,"spesh":500,"type":"Scalar","jit":141}],"inclusive_time":6605,"spesh_entries":500,"file":"gen/moar/m-CORE.setting","jit_entries":141,"entries":641,"callees":[{"exclusive_time":144,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":144,"file":"gen/moar/m-CORE.setting","jit_entries":641,"entries":641},{"exclusive_time":55,"id":35552400,"line":14088,"name":"sink","inclusive_time":55,"file":"gen/moar/m-CORE.setting","jit_entries":641,"entries":641},{"exclusive_time":1850,"id":35591616,"line":13753,"name":"reify-until-lazy","allocations":[{"count":641,"id":19706296,"type":"BOOTCode","jit":641}],"inclusive_time":1945,"file":"gen/moar/m-CORE.setting","jit_entries":641,"entries":641,"callees":[{"exclusive_time":95,"id":35552400,"line":14088,"name":"sink","inclusive_time":95,"file":"gen/moar/m-CORE.setting","jit_entries":1282,"entries":1282}]},{"exclusive_time":50,"id":34818544,"line":856,"name":"sink","inclusive_time":50,"file":"gen/moar/m-CORE.setting","jit_entries":641,"entries":641},{"exclusive_time":253,"id":35595264,"line":13795,"name":"fully-reified","inclusive_time":368,"file":"gen/moar/m-CORE.setting","jit_entries":641,"entries":641,"callees":[{"exclusive_time":114,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":114,"file":"gen/moar/m-CORE.setting","inlined_entries":1282,"jit_entries":1282,"entries":1282}]}]},{"exclusive_time":75,"id":35310112,"line":10026,"name":"Str","inclusive_time":75,"file":"gen/moar/m-CORE.setting","jit_entries":579,"entries":641}]}]},{"exclusive_time":1085,"id":34315424,"line":11811,"name":"infix:<~>","allocations":[{"count":1282,"id":29975064,"type":"Str","jit":1282}],"inclusive_time":1085,"file":"gen/moar/m-CORE.setting","inlined_entries":870,"jit_entries":1282,"entries":1282}]}]}]},{"exclusive_time":1092,"id":34315424,"line":11811,"name":"infix:<~>","allocations":[{"count":1234,"id":29975064,"type":"Str","jit":1234}],"inclusive_time":1092,"file":"gen/moar/m-CORE.setting","inlined_entries":822,"jit_entries":1234,"entries":1234}]}]},{"exclusive_time":23,"id":34505424,"line":25195,"name":"say","inclusive_time":268,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":19,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":21,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":1,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":32,"id":34506032,"line":25197,"name":"say","allocations":[{"count":1,"id":29974968,"type":"StrLexRef"}],"inclusive_time":223,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":12,"id":25494176,"line":556,"name":"DYNAMIC","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"}],"inclusive_time":25,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":5,"id":25494480,"line":558,"name":"","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":12,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":6,"id":25494784,"line":564,"name":"","inclusive_time":6,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]},{"exclusive_time":1,"id":34944704,"line":2316,"name":"<anon>","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":20,"id":36289296,"line":24411,"name":"print","inclusive_time":164,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":38067136,"line":3008,"name":"","allocations":[{"count":1,"id":29974584,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":19,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":80,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":47,"id":38059536,"line":1708,"name":"","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":17,"id":19707232,"type":"NQPArray"},{"count":4,"id":19707280,"type":"NQPArrayIter"},{"count":6,"id":19706248,"type":"BOOTHash"},{"count":6,"id":19706752,"type":"BOOTIntArray"},{"count":4,"id":19706152,"type":"BOOTInt"}],"inclusive_time":60,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":12,"id":38059840,"line":1738,"name":"is_narrower","inclusive_time":12,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":6,"entries":6}]},{"exclusive_time":1,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":62,"id":36289600,"line":24412,"name":"print","inclusive_time":62,"file":"gen/moar/m-CORE.setting","entries":1}]}]}]},{"exclusive_time":519,"id":34818544,"line":856,"name":"sink","inclusive_time":519,"file":"gen/moar/m-CORE.setting","entries":1226},{"exclusive_time":263,"id":34228480,"line":8515,"name":"infix:<==>","inclusive_time":263,"file":"gen/moar/m-CORE.setting","inlined_entries":361,"jit_entries":618,"entries":618},{"exclusive_time":63,"id":35552400,"line":14088,"name":"sink","inclusive_time":63,"file":"gen/moar/m-CORE.setting","jit_entries":608,"entries":608},{"exclusive_time":15410,"id":70587248,"line":61,"name":"next-generation","allocations":[{"count":608,"id":19706296,"spesh":343,"type":"BOOTCode"},{"count":1824,"id":29975016,"spesh":1029,"type":"Scalar"},{"count":608,"id":29974896,"spesh":343,"type":"Array"}],"inclusive_time":186330393,"spesh_entries":343,"file":"hibbified-249.p6","entries":608,"callees":[{"exclusive_time":840,"id":38055584,"line":1563,"name":"","allocations":[{"count":608,"id":29975184,"spesh":607,"type":"Code"},{"count":608,"id":19706296,"spesh":607,"type":"BOOTCode"}],"inclusive_time":840,"spesh_entries":607,"file":"gen/moar/m-BOOTSTRAP.nqp","inlined_entries":343,"entries":608},{"exclusive_time":5733,"id":74687520,"line":62,"name":"","inclusive_time":186233652,"file":"hibbified-249.p6","jit_entries":451,"entries":608,"callees":[{"exclusive_time":59,"id":34376832,"line":14669,"name":"infix:<X>","inclusive_time":1245,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":13,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"spesh":2,"type":"BOOTCode"},{"count":3,"id":19707232,"spesh":3,"type":"NQPArray"},{"count":2,"id":19706248,"spesh":2,"type":"BOOTHash"}],"inclusive_time":14,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":1,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":72,"id":34377440,"line":14673,"name":"infix:<X>","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":1,"id":29975016,"type":"Scalar"},{"count":1,"id":29974896,"type":"Array"},{"count":1,"id":19706224,"type":"BOOTArray"},{"count":1,"id":19706752,"type":"BOOTIntArray"},{"count":1,"id":29974992,"type":"IntLexRef"}],"inclusive_time":1171,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":12,"id":35537504,"line":13831,"name":"from-slurpy-onearg","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":1,"id":29975112,"type":"Capture"},{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":26,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":35435664,"line":12248,"name":"FLATTENABLE_LIST","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":35435968,"line":12249,"name":"FLATTENABLE_HASH","allocations":[{"count":1,"id":19706248,"type":"BOOTHash","jit":1}],"inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":8,"id":35537200,"line":13817,"name":"from-slurpy","allocations":[{"count":1,"id":29974584,"type":"List"},{"count":1,"id":54157808,"type":"IterationBuffer"},{"count":1,"id":51227144,"type":"List::Reifier"}],"inclusive_time":12,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":38067136,"line":3008,"name":"","allocations":[{"count":1,"id":29974584,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":3,"id":35546320,"line":13985,"name":"reification-target","inclusive_time":3,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":0,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]}]},{"exclusive_time":7,"id":35543584,"line":13932,"name":"elems","allocations":[{"count":1,"id":29975016,"type":"Scalar","jit":1}],"inclusive_time":37,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":0,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":10,"id":35591616,"line":13753,"name":"reify-until-lazy","allocations":[{"count":1,"id":19706296,"type":"BOOTCode","jit":1},{"count":2,"id":29975016,"type":"Scalar","jit":2}],"inclusive_time":26,"file":"gen/moar/m-CORE.setting","deopt_one":1,"jit_entries":1,"entries":1,"callees":[{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":6,"id":35592832,"line":13760,"name":"","allocations":[{"count":4,"id":19706296,"type":"BOOTCode"}],"inclusive_time":15,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":6,"id":35593744,"line":13769,"name":"","allocations":[{"count":2,"id":29975016,"type":"Scalar"}],"inclusive_time":8,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":1,"id":35438704,"line":12283,"name":"push","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":2}]},{"exclusive_time":0,"id":34818544,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":2}]}]},{"exclusive_time":0,"id":34818544,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":3,"id":35595264,"line":13795,"name":"fully-reified","inclusive_time":4,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]}]},{"exclusive_time":1,"id":34223616,"line":8446,"name":"infix:<->","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":38055584,"line":1563,"name":"","allocations":[{"count":1,"id":29975184,"type":"Code"},{"count":1,"id":19706296,"type":"BOOTCode"}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1},{"exclusive_time":16,"id":34377744,"line":14676,"name":"","inclusive_time":712,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":5,"id":34825536,"line":941,"name":"new","inclusive_time":120,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":38067136,"line":3008,"name":"","allocations":[{"count":1,"id":29974584,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":21,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"},{"count":1,"id":19706440,"type":"CallCapture"}],"inclusive_time":83,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":5,"id":38040688,"line":920,"name":"is_bindable","allocations":[{"count":1,"id":19706296,"spesh":1,"type":"BOOTCode"}],"inclusive_time":61,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":2,"id":38040992,"line":926,"name":"","inclusive_time":56,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":15,"id":38038560,"line":606,"name":"bind","allocations":[{"count":1,"id":29974560,"type":"Hash"}],"inclusive_time":53,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":29,"id":38036736,"line":168,"name":"bind_one_param","allocations":[{"count":12,"id":19706296,"type":"BOOTCode"},{"count":1,"id":19707376,"type":"str"},{"count":3,"id":29975016,"type":"Scalar"}],"inclusive_time":37,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":6,"callees":[{"exclusive_time":6,"id":38361936,"line":2635,"name":"type_check","allocations":[{"count":2,"id":19707280,"type":"NQPArrayIter"}],"inclusive_time":7,"file":"gen/moar/m-Metamodel.nqp","entries":1,"callees":[{"exclusive_time":0,"id":38290800,"line":161,"name":"pretending_to_be","inclusive_time":0,"file":"gen/moar/m-Metamodel.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":38357072,"line":2516,"name":"archetypes","inclusive_time":0,"file":"gen/moar/m-Metamodel.nqp","entries":1},{"exclusive_time":0,"id":38284416,"line":88,"name":"generic","inclusive_time":0,"file":"gen/moar/m-Metamodel.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":1,"id":38038256,"line":573,"name":"handle_optional","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":2}]}]}]}]},{"exclusive_time":9,"id":35491904,"line":13100,"name":"new","allocations":[{"count":3,"id":29975016,"type":"Scalar"},{"count":1,"id":51226328,"type":"Range"}],"inclusive_time":31,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":10,"id":34213888,"line":8187,"name":"infix:<==>","inclusive_time":14,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":2,"id":35224688,"line":8273,"name":"Bridge","allocations":[{"count":2,"id":29974920,"type":"Num"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":2},{"exclusive_time":0,"id":35242320,"line":8826,"name":"Bridge","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":2},{"exclusive_time":1,"id":34283504,"line":9200,"name":"infix:<==>","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":2}]},{"exclusive_time":6,"id":35493728,"line":13124,"name":"BUILD","allocations":[{"count":2,"id":29975016,"type":"Scalar"}],"inclusive_time":7,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":34825232,"line":937,"name":"defined","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":2}]}]}]},{"exclusive_time":1,"id":38057408,"line":1621,"name":"","allocations":[{"count":1,"id":29975160,"spesh":1,"type":"Block"},{"count":1,"id":19706296,"spesh":1,"type":"BOOTCode"}],"inclusive_time":1,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1},{"exclusive_time":7,"id":35044416,"line":3773,"name":"map","inclusive_time":106,"spesh_entries":1,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":38067136,"line":3008,"name":"","allocations":[{"count":1,"id":29974584,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":18,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":18,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":9,"id":35045632,"line":3779,"name":"map","allocations":[{"count":2,"id":29975016,"type":"Scalar"}],"inclusive_time":80,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":33,"id":35496464,"line":13159,"name":"iterator","allocations":[{"count":5,"id":19706296,"type":"BOOTCode"},{"count":3,"id":29974536,"type":"IntAttrRef"},{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":45,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":34255840,"line":8705,"name":"prefix:<!>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2},{"exclusive_time":2,"id":35497984,"line":13164,"name":"","inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":34223008,"line":8439,"name":"infix:<+>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":1,"id":34223616,"line":8446,"name":"infix:<->","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":3,"id":35498592,"line":13169,"name":"new","allocations":[{"count":1,"id":53652384,"type":"<anon|349030928>"}],"inclusive_time":7,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":3,"id":35498288,"line":13168,"name":"BUILD","inclusive_time":4,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":34223616,"line":8446,"name":"infix:<->","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]}]}]},{"exclusive_time":17,"id":35048976,"line":3840,"name":"sequential-map","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":3,"id":29975016,"type":"Scalar"}],"inclusive_time":25,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":2,"id":35157504,"line":6408,"name":"count","inclusive_time":3,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":0,"id":35839376,"line":18706,"name":"count","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":34228480,"line":8515,"name":"infix:<==>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":35049888,"line":3847,"name":"","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":3,"id":35147168,"line":3827,"name":"new","allocations":[{"count":3,"id":29975016,"type":"Scalar"},{"count":1,"id":53654184,"type":"<anon|159066640>"}],"inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":1,"id":35446304,"line":12399,"name":"new","allocations":[{"count":1,"id":53654904,"type":"Seq","jit":1}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]}]},{"exclusive_time":6,"id":35447520,"line":12420,"name":"eager","inclusive_time":467,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":4,"id":35446912,"line":12407,"name":"iterator","inclusive_time":6,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":1,"id":38361936,"line":2635,"name":"type_check","inclusive_time":1,"file":"gen/moar/m-Metamodel.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":3,"id":35536896,"line":13804,"name":"from-iterator","allocations":[{"count":1,"id":29974584,"type":"List"},{"count":1,"id":54157808,"type":"IterationBuffer"},{"count":1,"id":51227144,"type":"List::Reifier"}],"inclusive_time":5,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":2,"id":35546320,"line":13985,"name":"reification-target","inclusive_time":2,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":0,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]},{"exclusive_time":3,"id":35567296,"line":14247,"name":"eager","inclusive_time":449,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":8,"id":35594048,"line":13778,"name":"reify-all","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":2,"id":29975016,"type":"Scalar"}],"inclusive_time":445,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":4,"id":34958992,"line":2463,"name":"push-all","allocations":[{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":436,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":4,"id":34958688,"line":2454,"name":"push-at-least","allocations":[{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":432,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":19,"id":34958080,"line":2436,"name":"push-exactly","allocations":[{"count":2,"id":29975016,"type":"Scalar","jit":2}],"inclusive_time":428,"file":"gen/moar/m-CORE.setting","deopt_one":1,"jit_entries":1,"entries":1,"callees":[{"exclusive_time":69,"id":35050192,"line":3853,"name":"pull-one","allocations":[{"count":3,"id":19706296,"type":"BOOTCode","jit":3},{"count":7,"id":29975016,"type":"Scalar","jit":7}],"inclusive_time":380,"file":"gen/moar/m-CORE.setting","deopt_one":3,"jit_entries":3,"entries":3,"callees":[{"exclusive_time":0,"id":34255840,"line":8705,"name":"prefix:<!>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","inlined_entries":2,"jit_entries":3,"entries":3},{"exclusive_time":2,"id":35163280,"line":6478,"name":"phasers","inclusive_time":2,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2,"callees":[{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]},{"exclusive_time":1,"id":34151264,"line":7763,"name":"prefix:<+>","inclusive_time":6,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":1,"id":35541456,"line":13911,"name":"Numeric","inclusive_time":5,"spesh_entries":1,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":3,"id":35543584,"line":13932,"name":"elems","inclusive_time":3,"spesh_entries":1,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]}]}]},{"exclusive_time":3,"id":34824016,"line":929,"name":"Bool","inclusive_time":9,"spesh_entries":1,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":38067136,"line":3008,"name":"","allocations":[{"count":1,"id":29974584,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":4,"id":35540544,"line":13904,"name":"Bool","inclusive_time":5,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":0,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":34254320,"line":8699,"name":"prefix:<so>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":6,"entries":6},{"exclusive_time":3,"id":35498896,"line":13171,"name":"pull-one","allocations":[{"count":2,"id":29974536,"type":"IntAttrRef"}],"inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":3},{"exclusive_time":0,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":3},{"exclusive_time":42,"id":34378048,"line":14676,"name":"","allocations":[{"count":3,"id":29975016,"type":"Scalar"}],"inclusive_time":283,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":6,"id":34398416,"line":14916,"name":"postcircumfix:<[ ]>","inclusive_time":230,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":184,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":3,"id":19707232,"type":"NQPArray"},{"count":2,"id":19706248,"type":"BOOTHash"}],"inclusive_time":185,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":4,"id":34403280,"line":14967,"name":"postcircumfix:<[ ]>","inclusive_time":39,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":5,"id":34922816,"line":1964,"name":"AT-POS","inclusive_time":35,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":38067136,"line":3008,"name":"","allocations":[{"count":1,"id":29974584,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":23,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":23,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":4,"id":35544800,"line":13946,"name":"AT-POS","inclusive_time":5,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]}]}]},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2},{"exclusive_time":0,"id":35551488,"line":14083,"name":"list","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":2},{"exclusive_time":1,"id":34403280,"line":14967,"name":"postcircumfix:<[ ]>","inclusive_time":4,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":3,"id":35544800,"line":13946,"name":"AT-POS","inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]},{"exclusive_time":3,"id":35603472,"line":15753,"name":"is-lazy","allocations":[{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":0,"id":34818544,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":2,"id":35162368,"line":6469,"name":"fire_phasers","allocations":[{"count":1,"id":19706296,"spesh":1,"type":"BOOTCode"}],"inclusive_time":2,"spesh_entries":1,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":34255840,"line":8705,"name":"prefix:<!>","inclusive_time":0,"spesh_entries":1,"file":"gen/moar/m-CORE.setting","inlined_entries":1,"entries":1}]}]},{"exclusive_time":5,"id":25520320,"line":1558,"name":"infix:<=:=>","inclusive_time":25,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2,"callees":[{"exclusive_time":18,"id":38060448,"line":2048,"name":"","allocations":[{"count":4,"id":19706296,"type":"BOOTCode"},{"count":4,"id":19707232,"type":"NQPArray"},{"count":2,"id":19706248,"type":"BOOTHash"}],"inclusive_time":19,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":2,"callees":[{"exclusive_time":0,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":2,"entries":2}]},{"exclusive_time":0,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":2}]},{"exclusive_time":0,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":3,"entries":3},{"exclusive_time":1,"id":35438704,"line":12283,"name":"push","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":2},{"exclusive_time":0,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]},{"exclusive_time":0,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":34818544,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":38361936,"line":2635,"name":"type_check","inclusive_time":0,"file":"gen/moar/m-Metamodel.nqp","jit_entries":1,"entries":1},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":34818544,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]}]},{"exclusive_time":2,"id":35605296,"line":15771,"name":"STORE","inclusive_time":48,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":11,"id":35605904,"line":15779,"name":"STORE-ITERABLE","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":1,"id":54157808,"type":"IterationBuffer"},{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":46,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":5,"id":35546624,"line":13990,"name":"iterator","allocations":[{"count":1,"id":19706296,"type":"BOOTCode","jit":1}],"inclusive_time":12,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":0,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":1,"id":35546928,"line":13992,"name":"","allocations":[{"count":1,"id":29975016,"type":"Scalar","jit":1}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":4,"id":35547536,"line":14004,"name":"new","allocations":[{"count":1,"id":53651952,"type":"<anon|352550624>","jit":1}],"inclusive_time":5,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":0,"id":34798480,"line":495,"name":"of","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":35547232,"line":13998,"name":"BUILD","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]},{"exclusive_time":0,"id":35628704,"line":15464,"name":"new","allocations":[{"count":1,"id":54158192,"type":"Array::ArrayReificationTarget","jit":1}],"inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":12,"id":35548448,"line":14020,"name":"push-until-lazy","allocations":[{"count":2,"id":29975016,"type":"Scalar"}],"inclusive_time":21,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":3,"id":35591616,"line":13753,"name":"reify-until-lazy","allocations":[{"count":1,"id":19706296,"type":"BOOTCode","jit":1}],"inclusive_time":3,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]},{"exclusive_time":2,"id":35629008,"line":15471,"name":"push","allocations":[{"count":2,"id":29975016,"type":"Scalar"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":2},{"exclusive_time":0,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":2,"id":35595264,"line":13795,"name":"fully-reified","inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]}]},{"exclusive_time":0,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2},{"exclusive_time":3,"id":34355552,"line":13594,"name":"infix:<..>","allocations":[{"count":2,"id":29975016,"type":"Scalar"}],"inclusive_time":90,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":4,"id":34825536,"line":941,"name":"new","inclusive_time":87,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":38067136,"line":3008,"name":"","allocations":[{"count":1,"id":29974584,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":17,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"},{"count":1,"id":19706440,"type":"CallCapture"}],"inclusive_time":60,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":2,"id":38040688,"line":920,"name":"is_bindable","allocations":[{"count":1,"id":19706296,"spesh":1,"type":"BOOTCode"}],"inclusive_time":43,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":2,"id":38040992,"line":926,"name":"","inclusive_time":40,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":12,"id":38038560,"line":606,"name":"bind","allocations":[{"count":1,"id":29974560,"type":"Hash"}],"inclusive_time":38,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":21,"id":38036736,"line":168,"name":"bind_one_param","allocations":[{"count":12,"id":19706296,"type":"BOOTCode"},{"count":1,"id":19707376,"type":"str"},{"count":3,"id":29975016,"type":"Scalar"}],"inclusive_time":25,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":6,"callees":[{"exclusive_time":3,"id":38361936,"line":2635,"name":"type_check","allocations":[{"count":2,"id":19707280,"type":"NQPArrayIter"}],"inclusive_time":3,"file":"gen/moar/m-Metamodel.nqp","entries":1,"callees":[{"exclusive_time":0,"id":38290800,"line":161,"name":"pretending_to_be","inclusive_time":0,"file":"gen/moar/m-Metamodel.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":38357072,"line":2516,"name":"archetypes","inclusive_time":0,"file":"gen/moar/m-Metamodel.nqp","entries":1},{"exclusive_time":0,"id":38284416,"line":88,"name":"generic","inclusive_time":0,"file":"gen/moar/m-Metamodel.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":38038256,"line":573,"name":"handle_optional","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":2}]}]}]}]},{"exclusive_time":6,"id":35491904,"line":13100,"name":"new","allocations":[{"count":3,"id":29975016,"type":"Scalar"},{"count":1,"id":51226328,"type":"Range"}],"inclusive_time":21,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":6,"id":34213888,"line":8187,"name":"infix:<==>","inclusive_time":9,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":1,"id":35224688,"line":8273,"name":"Bridge","allocations":[{"count":2,"id":29974920,"type":"Num"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":2},{"exclusive_time":0,"id":35242320,"line":8826,"name":"Bridge","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":2},{"exclusive_time":1,"id":34283504,"line":9200,"name":"infix:<==>","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":2}]},{"exclusive_time":4,"id":35493728,"line":13124,"name":"BUILD","allocations":[{"count":2,"id":29975016,"type":"Scalar"}],"inclusive_time":5,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":34825232,"line":937,"name":"defined","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":2}]}]}]}]},{"exclusive_time":2,"id":38057408,"line":1621,"name":"","allocations":[{"count":3,"id":29975160,"spesh":3,"type":"Block"},{"count":3,"id":19706296,"spesh":3,"type":"BOOTCode"}],"inclusive_time":2,"spesh_entries":3,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":3},{"exclusive_time":5,"id":35044416,"line":3773,"name":"map","inclusive_time":59,"spesh_entries":1,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":38067136,"line":3008,"name":"","allocations":[{"count":1,"id":29974584,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":14,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":14,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":5,"id":35045632,"line":3779,"name":"map","allocations":[{"count":2,"id":29975016,"type":"Scalar"}],"inclusive_time":39,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":11,"id":35496464,"line":13159,"name":"iterator","allocations":[{"count":5,"id":19706296,"type":"BOOTCode"},{"count":3,"id":29974536,"type":"IntAttrRef"},{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":19,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":34255840,"line":8705,"name":"prefix:<!>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2},{"exclusive_time":1,"id":35497984,"line":13164,"name":"","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":34223008,"line":8439,"name":"infix:<+>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":1,"id":34223616,"line":8446,"name":"infix:<->","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":1,"id":35498592,"line":13169,"name":"new","allocations":[{"count":1,"id":53652384,"type":"<anon|349030928>"}],"inclusive_time":4,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":2,"id":35498288,"line":13168,"name":"BUILD","inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":34223616,"line":8446,"name":"infix:<->","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]}]}]},{"exclusive_time":9,"id":35048976,"line":3840,"name":"sequential-map","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":3,"id":29975016,"type":"Scalar"}],"inclusive_time":14,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":35157504,"line":6408,"name":"count","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":0,"id":35839376,"line":18706,"name":"count","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":34228480,"line":8515,"name":"infix:<==>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":35049888,"line":3847,"name":"","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":2,"id":35147168,"line":3827,"name":"new","allocations":[{"count":3,"id":29975016,"type":"Scalar"},{"count":1,"id":53654184,"type":"<anon|159066640>"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":35446304,"line":12399,"name":"new","allocations":[{"count":1,"id":53654904,"type":"Seq","jit":1}],"inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]}]},{"exclusive_time":4,"id":35451472,"line":12474,"name":"sink","inclusive_time":98,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":3,"id":35446912,"line":12407,"name":"iterator","inclusive_time":3,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":38361936,"line":2635,"name":"type_check","inclusive_time":0,"file":"gen/moar/m-Metamodel.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":35,"id":35052016,"line":3921,"name":"sink-all","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":6,"id":29975016,"type":"Scalar"}],"inclusive_time":90,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":34255840,"line":8705,"name":"prefix:<!>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":2,"id":35163280,"line":6478,"name":"phasers","inclusive_time":2,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2,"callees":[{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]},{"exclusive_time":0,"id":34151264,"line":7763,"name":"prefix:<+>","inclusive_time":5,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":1,"id":35541456,"line":13911,"name":"Numeric","inclusive_time":4,"spesh_entries":1,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":3,"id":35543584,"line":13932,"name":"elems","inclusive_time":3,"spesh_entries":1,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]}]}]},{"exclusive_time":2,"id":34824016,"line":929,"name":"Bool","inclusive_time":5,"spesh_entries":1,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":38067136,"line":3008,"name":"","allocations":[{"count":1,"id":29974584,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":2,"id":35540544,"line":13904,"name":"Bool","inclusive_time":2,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":0,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":34254320,"line":8699,"name":"prefix:<so>","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":3,"entries":3},{"exclusive_time":2,"id":35498896,"line":13171,"name":"pull-one","allocations":[{"count":1,"id":29974536,"type":"IntAttrRef"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":2},{"exclusive_time":6,"id":34378960,"line":14711,"name":"","allocations":[{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":36,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":3,"id":34403280,"line":14967,"name":"postcircumfix:<[ ]>","inclusive_time":6,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":2,"id":35608944,"line":15835,"name":"AT-POS","inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":5,"id":34899408,"line":1805,"name":"elems","inclusive_time":23,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":38067136,"line":3008,"name":"","allocations":[{"count":1,"id":29974584,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":9,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":11,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":1,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]},{"exclusive_time":5,"id":35543584,"line":13932,"name":"elems","inclusive_time":5,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]}]}]},{"exclusive_time":0,"id":34818544,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":1,"id":35162368,"line":6469,"name":"fire_phasers","allocations":[{"count":1,"id":19706296,"spesh":1,"type":"BOOTCode"}],"inclusive_time":1,"spesh_entries":1,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":34255840,"line":8705,"name":"prefix:<!>","inclusive_time":0,"spesh_entries":1,"file":"gen/moar/m-CORE.setting","inlined_entries":1,"entries":1}]}]},{"exclusive_time":0,"id":34818544,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":1,"id":34403280,"line":14967,"name":"postcircumfix:<[ ]>","inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":35608944,"line":15835,"name":"AT-POS","inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":1,"id":35603472,"line":15753,"name":"is-lazy","allocations":[{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":6,"id":34348560,"line":12668,"name":"GATHER","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"}],"inclusive_time":13,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":34348864,"line":12669,"name":"","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":3,"id":34349472,"line":12676,"name":"new","allocations":[{"count":1,"id":53652480,"type":"<anon|340889968>"}],"inclusive_time":5,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":38057408,"line":1621,"name":"","allocations":[{"count":2,"id":29975160,"spesh":2,"type":"Block"},{"count":2,"id":19706296,"spesh":2,"type":"BOOTCode"}],"inclusive_time":1,"spesh_entries":2,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":2}]},{"exclusive_time":0,"id":35446304,"line":12399,"name":"new","allocations":[{"count":1,"id":53654904,"type":"Seq","jit":1}],"inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]},{"exclusive_time":1,"id":35037728,"line":3690,"name":"lazy-if","allocations":[{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":456,"id":38057408,"line":1621,"name":"","allocations":[{"count":608,"id":29975160,"spesh":608,"type":"Block"},{"count":608,"id":19706296,"spesh":608,"type":"BOOTCode"}],"inclusive_time":456,"spesh_entries":608,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":608},{"exclusive_time":6095,"id":35044416,"line":3773,"name":"map","inclusive_time":28507,"spesh_entries":608,"file":"gen/moar/m-CORE.setting","entries":608,"callees":[{"exclusive_time":81,"id":38067136,"line":3008,"name":"","allocations":[{"count":608,"id":29974584,"type":"List","jit":608}],"inclusive_time":81,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":608,"entries":608},{"exclusive_time":9894,"id":38060448,"line":2048,"name":"","allocations":[{"count":1216,"id":19706296,"type":"BOOTCode"},{"count":1216,"id":19707232,"type":"NQPArray"},{"count":608,"id":19706248,"type":"BOOTHash"}],"inclusive_time":9956,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":608,"callees":[{"exclusive_time":61,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":61,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":608,"entries":608}]},{"exclusive_time":3146,"id":35045632,"line":3779,"name":"map","allocations":[{"count":1216,"id":29975016,"spesh":1216,"type":"Scalar"}],"inclusive_time":12374,"spesh_entries":608,"file":"gen/moar/m-CORE.setting","entries":608,"callees":[{"exclusive_time":1957,"id":35446912,"line":12407,"name":"iterator","inclusive_time":2303,"file":"gen/moar/m-CORE.setting","jit_entries":608,"entries":608,"callees":[{"exclusive_time":72,"id":35552400,"line":14088,"name":"sink","inclusive_time":72,"file":"gen/moar/m-CORE.setting","jit_entries":608,"entries":608},{"exclusive_time":273,"id":38361936,"line":2635,"name":"type_check","inclusive_time":273,"file":"gen/moar/m-Metamodel.nqp","jit_entries":608,"entries":608}]},{"exclusive_time":4436,"id":35048976,"line":3840,"name":"sequential-map","allocations":[{"count":1216,"id":19706296,"type":"BOOTCode","jit":1216},{"count":1824,"id":29975016,"type":"Scalar","jit":1824}],"inclusive_time":6923,"file":"gen/moar/m-CORE.setting","jit_entries":608,"entries":608,"callees":[{"exclusive_time":946,"id":35157504,"line":6408,"name":"count","inclusive_time":1019,"file":"gen/moar/m-CORE.setting","jit_entries":608,"entries":608,"callees":[{"exclusive_time":72,"id":35839376,"line":18706,"name":"count","inclusive_time":72,"file":"gen/moar/m-CORE.setting","jit_entries":608,"entries":608}]},{"exclusive_time":173,"id":34228480,"line":8515,"name":"infix:<==>","inclusive_time":173,"file":"gen/moar/m-CORE.setting","inlined_entries":608,"jit_entries":608,"entries":608},{"exclusive_time":207,"id":35049888,"line":3847,"name":"","inclusive_time":207,"file":"gen/moar/m-CORE.setting","jit_entries":608,"entries":608},{"exclusive_time":915,"id":35147168,"line":3827,"name":"new","allocations":[{"count":1824,"id":29975016,"type":"Scalar","jit":1824},{"count":608,"id":53654184,"type":"<anon|159066640>","jit":608}],"inclusive_time":915,"file":"gen/moar/m-CORE.setting","jit_entries":608,"entries":608},{"exclusive_time":171,"id":35446304,"line":12399,"name":"new","allocations":[{"count":608,"id":53654904,"type":"Seq","jit":608}],"inclusive_time":171,"file":"gen/moar/m-CORE.setting","jit_entries":608,"entries":608}]}]}]},{"exclusive_time":2462,"id":35447520,"line":12420,"name":"eager","inclusive_time":185733556,"file":"gen/moar/m-CORE.setting","jit_entries":606,"entries":608,"callees":[{"exclusive_time":1361,"id":35446912,"line":12407,"name":"iterator","inclusive_time":1626,"file":"gen/moar/m-CORE.setting","jit_entries":608,"entries":608,"callees":[{"exclusive_time":55,"id":35552400,"line":14088,"name":"sink","inclusive_time":55,"file":"gen/moar/m-CORE.setting","jit_entries":608,"entries":608},{"exclusive_time":210,"id":38361936,"line":2635,"name":"type_check","inclusive_time":210,"file":"gen/moar/m-Metamodel.nqp","jit_entries":608,"entries":608}]},{"exclusive_time":951,"id":35536896,"line":13804,"name":"from-iterator","allocations":[{"count":608,"id":29974584,"type":"List","jit":607},{"count":608,"id":54157808,"type":"IterationBuffer","jit":607},{"count":608,"id":51227144,"type":"List::Reifier","jit":607}],"inclusive_time":2432,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":608,"callees":[{"exclusive_time":1341,"id":35546320,"line":13985,"name":"reification-target","inclusive_time":1480,"file":"gen/moar/m-CORE.setting","jit_entries":608,"entries":608,"callees":[{"exclusive_time":87,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":87,"file":"gen/moar/m-CORE.setting","jit_entries":608,"entries":608},{"exclusive_time":52,"id":35552400,"line":14088,"name":"sink","inclusive_time":52,"file":"gen/moar/m-CORE.setting","jit_entries":608,"entries":608}]}]},{"exclusive_time":2154,"id":35567296,"line":14247,"name":"eager","inclusive_time":185727035,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":608,"callees":[{"exclusive_time":4548,"id":35594048,"line":13778,"name":"reify-all","allocations":[{"count":608,"id":19706296,"type":"BOOTCode","jit":607},{"count":1216,"id":29975016,"type":"Scalar","jit":1214},{"count":608,"id":29974944,"type":"Int","jit":607}],"inclusive_time":185724831,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":608,"callees":[{"exclusive_time":1638,"id":34958992,"line":2463,"name":"push-all","allocations":[{"count":608,"id":29975016,"type":"Scalar","jit":607}],"inclusive_time":185719682,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":608,"callees":[{"exclusive_time":1984,"id":34958688,"line":2454,"name":"push-at-least","allocations":[{"count":608,"id":29975016,"spesh":607,"type":"Scalar"}],"inclusive_time":185717961,"spesh_entries":607,"file":"gen/moar/m-CORE.setting","entries":608,"callees":[{"exclusive_time":97953,"id":34958080,"line":2436,"name":"push-exactly","allocations":[{"count":1216,"id":29975016,"type":"Scalar","jit":1216}],"inclusive_time":185715977,"file":"gen/moar/m-CORE.setting","deopt_one":608,"jit_entries":608,"entries":608,"callees":[{"exclusive_time":180809,"id":35050192,"line":3853,"name":"pull-one","allocations":[{"count":12768,"id":19706296,"type":"BOOTCode","jit":12768},{"count":15200,"id":29975016,"type":"Scalar","jit":15200}],"inclusive_time":185429674,"file":"gen/moar/m-CORE.setting","deopt_one":12768,"jit_entries":12768,"entries":12768,"callees":[{"exclusive_time":2198,"id":34255840,"line":8705,"name":"prefix:<!>","inclusive_time":2198,"file":"gen/moar/m-CORE.setting","inlined_entries":12160,"jit_entries":12768,"entries":12768},{"exclusive_time":1296,"id":35163280,"line":6478,"name":"phasers","inclusive_time":1396,"file":"gen/moar/m-CORE.setting","jit_entries":1216,"entries":1216,"callees":[{"exclusive_time":99,"id":35552400,"line":14088,"name":"sink","inclusive_time":99,"file":"gen/moar/m-CORE.setting","jit_entries":1216,"entries":1216}]},{"exclusive_time":490,"id":34151264,"line":7763,"name":"prefix:<+>","inclusive_time":3319,"file":"gen/moar/m-CORE.setting","jit_entries":608,"entries":608,"callees":[{"exclusive_time":846,"id":35541456,"line":13911,"name":"Numeric","inclusive_time":2829,"spesh_entries":608,"file":"gen/moar/m-CORE.setting","entries":608,"callees":[{"exclusive_time":1813,"id":35543584,"line":13932,"name":"elems","inclusive_time":1982,"spesh_entries":608,"file":"gen/moar/m-CORE.setting","entries":608,"callees":[{"exclusive_time":72,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":72,"file":"gen/moar/m-CORE.setting","jit_entries":608,"entries":608},{"exclusive_time":96,"id":35552400,"line":14088,"name":"sink","inclusive_time":96,"file":"gen/moar/m-CORE.setting","jit_entries":1216,"entries":1216}]}]}]},{"exclusive_time":1532,"id":34824016,"line":929,"name":"Bool","inclusive_time":3206,"spesh_entries":608,"file":"gen/moar/m-CORE.setting","entries":608,"callees":[{"exclusive_time":91,"id":38067136,"line":3008,"name":"","allocations":[{"count":608,"id":29974584,"type":"List","jit":608}],"inclusive_time":91,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":608,"entries":608},{"exclusive_time":1438,"id":35540544,"line":13904,"name":"Bool","inclusive_time":1581,"file":"gen/moar/m-CORE.setting","jit_entries":608,"entries":608,"callees":[{"exclusive_time":62,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":62,"file":"gen/moar/m-CORE.setting","jit_entries":608,"entries":608},{"exclusive_time":46,"id":35552400,"line":14088,"name":"sink","inclusive_time":46,"file":"gen/moar/m-CORE.setting","jit_entries":608,"entries":608},{"exclusive_time":34,"id":34254320,"line":8699,"name":"prefix:<so>","inclusive_time":34,"file":"gen/moar/m-CORE.setting","jit_entries":608,"entries":608}]}]},{"exclusive_time":2218,"id":35552400,"line":14088,"name":"sink","inclusive_time":2218,"file":"gen/moar/m-CORE.setting","jit_entries":25536,"entries":25536},{"exclusive_time":113137,"id":34351296,"line":12707,"name":"pull-one","allocations":[{"count":13376,"id":29975016,"type":"Scalar","jit":13363},{"count":608,"id":54157808,"type":"IterationBuffer","jit":607},{"count":12768,"id":19706584,"type":"BOOTContinuation","jit":12756}],"inclusive_time":660103,"file":"gen/moar/m-CORE.setting","deopt_one":607,"jit_entries":12756,"entries":12768,"callees":[{"exclusive_time":70,"id":34818544,"line":856,"name":"sink","inclusive_time":70,"file":"gen/moar/m-CORE.setting","jit_entries":608,"entries":608},{"exclusive_time":7824,"id":34350384,"line":12698,"name":"","allocations":[{"count":608,"id":19706296,"type":"BOOTCode"},{"count":608,"id":29975016,"type":"Scalar"}],"inclusive_time":536278,"file":"gen/moar/m-CORE.setting","entries":12768,"callees":[{"exclusive_time":23522,"id":34382000,"line":14718,"name":"","allocations":[{"count":608,"id":19706296,"type":"BOOTCode"},{"count":1216,"id":29975016,"type":"Scalar"}],"inclusive_time":528454,"file":"gen/moar/m-CORE.setting","entries":12768,"callees":[{"exclusive_time":1194,"id":34403280,"line":14967,"name":"postcircumfix:<[ ]>","inclusive_time":2188,"file":"gen/moar/m-CORE.setting","deopt_one":1214,"jit_entries":1214,"entries":1216,"callees":[{"exclusive_time":994,"id":35608944,"line":15835,"name":"AT-POS","inclusive_time":994,"spesh_entries":1214,"file":"gen/moar/m-CORE.setting","entries":1216}]},{"exclusive_time":2653,"id":35546624,"line":13990,"name":"iterator","allocations":[{"count":608,"id":19706296,"type":"BOOTCode","jit":600}],"inclusive_time":7410,"file":"gen/moar/m-CORE.setting","jit_entries":600,"entries":608,"callees":[{"exclusive_time":94,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":94,"file":"gen/moar/m-CORE.setting","jit_entries":608,"entries":608},{"exclusive_time":50,"id":35552400,"line":14088,"name":"sink","inclusive_time":50,"file":"gen/moar/m-CORE.setting","jit_entries":608,"entries":608},{"exclusive_time":543,"id":35546928,"line":13992,"name":"","allocations":[{"count":608,"id":29975016,"type":"Scalar","jit":608}],"inclusive_time":543,"file":"gen/moar/m-CORE.setting","jit_entries":608,"entries":608},{"exclusive_time":2140,"id":35547536,"line":14004,"name":"new","allocations":[{"count":608,"id":53651952,"type":"<anon|352550624>","jit":608}],"inclusive_time":4069,"file":"gen/moar/m-CORE.setting","jit_entries":608,"entries":608,"callees":[{"exclusive_time":1342,"id":35623536,"line":16147,"name":"of","inclusive_time":1508,"file":"gen/moar/m-CORE.setting","jit_entries":608,"entries":608,"callees":[{"exclusive_time":165,"id":38396896,"line":3777,"name":"of","inclusive_time":165,"spesh_entries":608,"file":"gen/moar/m-Metamodel.nqp","entries":608}]},{"exclusive_time":421,"id":35547232,"line":13998,"name":"BUILD","inclusive_time":421,"file":"gen/moar/m-CORE.setting","jit_entries":608,"entries":608}]}]},{"exclusive_time":2027,"id":35547840,"line":14006,"name":"pull-one","inclusive_time":2027,"file":"gen/moar/m-CORE.setting","jit_entries":1816,"entries":1824},{"exclusive_time":6475,"id":25520320,"line":1558,"name":"infix:<=:=>","inclusive_time":26000,"file":"gen/moar/m-CORE.setting","jit_entries":1824,"entries":1824,"callees":[{"exclusive_time":18139,"id":38060448,"line":2048,"name":"","allocations":[{"count":3648,"id":19706296,"type":"BOOTCode"},{"count":3648,"id":19707232,"type":"NQPArray"},{"count":1824,"id":19706248,"type":"BOOTHash"}],"inclusive_time":18928,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1824,"callees":[{"exclusive_time":789,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":789,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1824,"entries":1824}]},{"exclusive_time":595,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":595,"file":"gen/moar/m-CORE.setting","entries":1824}]},{"exclusive_time":154804,"id":34382304,"line":14723,"name":"","allocations":[{"count":12768,"id":29974992,"type":"IntLexRef"},{"count":12768,"id":19706224,"type":"BOOTArray"}],"inclusive_time":467303,"file":"gen/moar/m-CORE.setting","entries":13984,"callees":[{"exclusive_time":35,"id":34398416,"line":14916,"name":"postcircumfix:<[ ]>","inclusive_time":128,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":45,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":3,"id":19707232,"type":"NQPArray"},{"count":2,"id":19706248,"type":"BOOTHash"}],"inclusive_time":46,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":3,"id":34400240,"line":14923,"name":"postcircumfix:<[ ]>","inclusive_time":46,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":26,"id":34922816,"line":1964,"name":"AT-POS","inclusive_time":43,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":38067136,"line":3008,"name":"","allocations":[{"count":1,"id":29974584,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":10,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":10,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":6,"id":35608640,"line":15828,"name":"AT-POS","inclusive_time":6,"file":"gen/moar/m-CORE.setting","entries":1}]}]}]},{"exclusive_time":4,"id":25498736,"line":639,"name":"take","inclusive_time":53,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":10,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":11,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":38067136,"line":3008,"name":"","allocations":[{"count":1,"id":29974584,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":0,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":5,"id":25499344,"line":641,"name":"take","allocations":[{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":38,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":0,"id":38067136,"line":3008,"name":"","allocations":[{"count":1,"id":29974584,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":4,"id":25496000,"line":596,"name":"THROW","allocations":[{"count":1,"id":19706488,"type":"BOOTException"}],"inclusive_time":32,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":2,"id":34350992,"line":-1,"name":"","allocations":[{"count":2,"id":29974944,"spesh":2,"type":"Int"}],"inclusive_time":27,"spesh_entries":2,"file":"/usr/local/src/rakudo/install/share/perl6/runtime/CORE.setting.moarvm","entries":2,"callees":[{"exclusive_time":7,"id":34349776,"line":12680,"name":"","inclusive_time":24,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":5,"id":34916736,"line":1907,"name":"push","inclusive_time":16,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":38067136,"line":3008,"name":"","allocations":[{"count":1,"id":29974584,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":9,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":9,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":35438704,"line":12283,"name":"push","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":0,"id":38057408,"line":1621,"name":"","allocations":[{"count":1,"id":29975160,"spesh":1,"type":"Block"},{"count":1,"id":19706296,"spesh":1,"type":"BOOTCode"}],"inclusive_time":0,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]}]}]}]}]},{"exclusive_time":1224,"id":35552400,"line":14088,"name":"sink","inclusive_time":1224,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160},{"exclusive_time":58336,"id":34400240,"line":14923,"name":"postcircumfix:<[ ]>","inclusive_time":79770,"spesh_entries":12611,"file":"gen/moar/m-CORE.setting","entries":12767,"callees":[{"exclusive_time":21434,"id":35608640,"line":15828,"name":"AT-POS","inclusive_time":21434,"file":"gen/moar/m-CORE.setting","jit_entries":12561,"entries":12767}]},{"exclusive_time":61834,"id":25499344,"line":641,"name":"take","allocations":[{"count":12767,"id":29975016,"type":"Scalar","jit":12634}],"inclusive_time":231321,"file":"gen/moar/m-CORE.setting","jit_entries":24666,"entries":24926,"callees":[{"exclusive_time":2243,"id":38067136,"line":3008,"name":"","allocations":[{"count":12767,"id":29974584,"type":"List","jit":12767}],"inclusive_time":2243,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":12767,"entries":12767},{"exclusive_time":31670,"id":25496000,"line":596,"name":"THROW","allocations":[{"count":12767,"id":19706488,"spesh":12760,"type":"BOOTException"}],"inclusive_time":167244,"spesh_entries":24912,"file":"gen/moar/m-CORE.setting","entries":24926,"callees":[{"exclusive_time":30886,"id":34350992,"line":-1,"name":"","allocations":[{"count":25534,"id":29974944,"spesh":25534,"type":"Int"}],"inclusive_time":135574,"spesh_entries":24926,"file":"/usr/local/src/rakudo/install/share/perl6/runtime/CORE.setting.moarvm","entries":24926,"callees":[{"exclusive_time":84260,"id":34349776,"line":12680,"name":"","inclusive_time":104687,"file":"gen/moar/m-CORE.setting","entries":24926,"callees":[{"exclusive_time":9065,"id":35438704,"line":12283,"name":"push","inclusive_time":9065,"file":"gen/moar/m-CORE.setting","entries":12767},{"exclusive_time":11361,"id":38057408,"line":1621,"name":"","allocations":[{"count":12767,"id":29975160,"spesh":12767,"type":"Block"},{"count":12767,"id":19706296,"spesh":12767,"type":"BOOTCode"}],"inclusive_time":11361,"spesh_entries":12767,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":12767}]}]}]}]}]}]}]},{"exclusive_time":9535,"id":34350080,"line":12692,"name":"","inclusive_time":9535,"file":"gen/moar/m-CORE.setting","jit_entries":12767,"entries":12768},{"exclusive_time":1080,"id":35552400,"line":14088,"name":"sink","inclusive_time":1080,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160}]},{"exclusive_time":48857,"id":25520320,"line":1558,"name":"infix:<=:=>","inclusive_time":183808,"file":"gen/moar/m-CORE.setting","jit_entries":12768,"entries":12768,"callees":[{"exclusive_time":126297,"id":38060448,"line":2048,"name":"","allocations":[{"count":25536,"id":19706296,"type":"BOOTCode"},{"count":25536,"id":19707232,"type":"NQPArray"},{"count":12768,"id":19706248,"type":"BOOTHash"}],"inclusive_time":130886,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":12768,"callees":[{"exclusive_time":4589,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":4589,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":12768,"entries":12768}]},{"exclusive_time":4064,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":4064,"file":"gen/moar/m-CORE.setting","entries":12768}]},{"exclusive_time":201041,"id":83571104,"line":62,"name":"","allocations":[{"count":608,"id":29975016,"type":"Scalar","jit":598}],"inclusive_time":184391330,"file":"hibbified-249.p6","deopt_one":1620,"jit_entries":12561,"entries":12768,"callees":[{"exclusive_time":69314,"id":38040384,"line":868,"name":"bind_sig","allocations":[{"count":12768,"id":19707232,"spesh":12511,"type":"NQPArray"},{"count":12768,"id":19706368,"spesh":12511,"type":"BOOTContext"}],"inclusive_time":844684,"spesh_entries":12511,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":12768,"callees":[{"exclusive_time":69231,"id":38038560,"line":606,"name":"bind","inclusive_time":775370,"spesh_entries":12756,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":12768,"callees":[{"exclusive_time":213262,"id":38036736,"line":168,"name":"bind_one_param","allocations":[{"count":25536,"id":19706296,"type":"BOOTCode"}],"inclusive_time":706139,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":12768,"callees":[{"exclusive_time":12701,"id":38361936,"line":2635,"name":"type_check","inclusive_time":12701,"file":"gen/moar/m-Metamodel.nqp","jit_entries":12768,"entries":12768},{"exclusive_time":105085,"id":35567600,"line":14252,"name":"Capture","allocations":[{"count":12768,"id":19706296,"type":"BOOTCode","jit":12512},{"count":12768,"id":29975112,"type":"Capture","jit":12512},{"count":12768,"id":54157808,"type":"IterationBuffer","jit":12512},{"count":12768,"id":19706248,"type":"BOOTHash","jit":12512}],"inclusive_time":259085,"file":"gen/moar/m-CORE.setting","jit_entries":12512,"entries":12768,"callees":[{"exclusive_time":24479,"id":35569424,"line":14286,"name":"is-lazy","allocations":[{"count":25536,"id":29975016,"type":"Scalar","jit":25024}],"inclusive_time":24479,"file":"gen/moar/m-CORE.setting","jit_entries":12512,"entries":12768},{"exclusive_time":1133,"id":35552400,"line":14088,"name":"sink","inclusive_time":1133,"file":"gen/moar/m-CORE.setting","jit_entries":12768,"entries":12768},{"exclusive_time":97361,"id":35567904,"line":14262,"name":"","allocations":[{"count":12768,"id":29975016,"type":"Scalar","jit":12665}],"inclusive_time":128387,"file":"gen/moar/m-CORE.setting","jit_entries":25331,"entries":25536,"callees":[{"exclusive_time":23189,"id":35438704,"line":12283,"name":"push","inclusive_time":23189,"file":"gen/moar/m-CORE.setting","entries":25536},{"exclusive_time":7835,"id":34818544,"line":856,"name":"sink","inclusive_time":7835,"file":"gen/moar/m-CORE.setting","entries":25536}]}]},{"exclusive_time":26053,"id":38038864,"line":911,"name":"make_vm_capture","allocations":[{"count":12768,"id":19706296,"type":"BOOTCode","jit":12612}],"inclusive_time":50820,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":12612,"entries":12768,"callees":[{"exclusive_time":24767,"id":38039168,"line":912,"name":"vm_capture","inclusive_time":24767,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":12768}]},{"exclusive_time":77587,"id":38038560,"line":606,"name":"bind","inclusive_time":170269,"spesh_entries":12756,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":12768,"callees":[{"exclusive_time":92682,"id":38036736,"line":168,"name":"bind_one_param","allocations":[{"count":51072,"id":19706296,"type":"BOOTCode"},{"count":25536,"id":29975016,"type":"Scalar"}],"inclusive_time":92682,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":25536}]}]}]}]},{"exclusive_time":9503,"id":34221184,"line":8414,"name":"postfix:<-->","allocations":[{"count":3040,"id":29974944,"type":"Int","jit":3000}],"inclusive_time":9503,"file":"gen/moar/m-CORE.setting","inlined_entries":12561,"jit_entries":12615,"entries":12768},{"exclusive_time":1413,"id":35552400,"line":14088,"name":"sink","inclusive_time":1413,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160},{"exclusive_time":328134,"id":84647824,"line":41,"name":"crossover","inclusive_time":131887532,"file":"hibbified-249.p6","jit_entries":11903,"entries":12160,"callees":[{"exclusive_time":631066,"id":38350080,"line":2222,"name":"accepts_type","allocations":[{"count":24320,"id":19707232,"type":"NQPArray","jit":24234},{"count":48640,"id":19707280,"type":"NQPArrayIter","jit":48468},{"count":48640,"id":19706176,"type":"BOOTNum","jit":48468}],"inclusive_time":1061775,"file":"gen/moar/m-Metamodel.nqp","deopt_one":24234,"jit_entries":24234,"entries":24320,"callees":[{"exclusive_time":2620,"id":38370448,"line":3092,"name":"role_typecheck_list","inclusive_time":2620,"file":"gen/moar/m-Metamodel.nqp","jit_entries":24272,"entries":24320},{"exclusive_time":185958,"id":38346736,"line":2140,"name":"archetypes","allocations":[{"count":72960,"id":19707280,"type":"NQPArrayIter","jit":72840},{"count":48640,"id":19707304,"type":"NQPHashIter","jit":48560}],"inclusive_time":208420,"file":"gen/moar/m-Metamodel.nqp","jit_entries":72840,"entries":72960,"callees":[{"exclusive_time":5215,"id":38373488,"line":3168,"name":"archetypes","inclusive_time":5215,"file":"gen/moar/m-Metamodel.nqp","jit_entries":48596,"entries":48640},{"exclusive_time":14344,"id":38284416,"line":88,"name":"generic","inclusive_time":14344,"file":"gen/moar/m-Metamodel.nqp","inlined_entries":72840,"jit_entries":72960,"entries":72960},{"exclusive_time":2902,"id":38297792,"line":304,"name":"archetypes","inclusive_time":2902,"file":"gen/moar/m-Metamodel.nqp","jit_entries":24272,"entries":24320}]},{"exclusive_time":13873,"id":38284416,"line":88,"name":"generic","inclusive_time":13873,"file":"gen/moar/m-Metamodel.nqp","inlined_entries":24234,"jit_entries":72960,"entries":72960},{"exclusive_time":4711,"id":38348560,"line":2202,"name":"curried_role","inclusive_time":4711,"file":"gen/moar/m-Metamodel.nqp","jit_entries":48560,"entries":48640},{"exclusive_time":9557,"id":20424240,"line":596,"name":"push","inclusive_time":9557,"file":"gen/moar/stage2/NQPCORE.setting","jit_entries":24320,"entries":24320},{"exclusive_time":2506,"id":38348864,"line":2206,"name":"role_arguments","inclusive_time":2506,"file":"gen/moar/m-Metamodel.nqp","jit_entries":24265,"entries":24320},{"exclusive_time":166434,"id":38319072,"line":1073,"name":"find_method","allocations":[{"count":24320,"id":19706248,"type":"BOOTHash","jit":24240},{"count":24320,"id":19707280,"type":"NQPArrayIter","jit":24240}],"inclusive_time":185785,"file":"gen/moar/m-Metamodel.nqp","jit_entries":24240,"entries":24320,"callees":[{"exclusive_time":3952,"id":38376832,"line":3264,"name":"submethod_table","allocations":[{"count":24320,"id":19706248,"type":"BOOTHash","jit":24265}],"inclusive_time":3952,"file":"gen/moar/m-Metamodel.nqp","jit_entries":24265,"entries":24320},{"exclusive_time":6064,"id":38318160,"line":1041,"name":"mro","inclusive_time":6064,"file":"gen/moar/m-Metamodel.nqp","inlined_entries":24240,"jit_entries":24280,"entries":24320},{"exclusive_time":4122,"id":38376528,"line":3263,"name":"method_table","allocations":[{"count":24320,"id":19706248,"type":"BOOTHash","jit":24265}],"inclusive_time":4122,"file":"gen/moar/m-Metamodel.nqp","jit_entries":24265,"entries":24320},{"exclusive_time":5210,"id":38304176,"line":515,"name":"method_table","inclusive_time":5210,"file":"gen/moar/m-Metamodel.nqp","jit_entries":24320,"entries":24320}]},{"exclusive_time":3232,"id":34889376,"line":1749,"name":"ACCEPTS","inclusive_time":3232,"file":"gen/moar/m-CORE.setting","jit_entries":24266,"entries":24320}]},{"exclusive_time":47425,"id":34689344,"line":29503,"name":"METAOP_ZIP","inclusive_time":77911,"file":"gen/moar/m-CORE.setting","jit_entries":36360,"entries":36480,"callees":[{"exclusive_time":30485,"id":38057408,"line":1621,"name":"","allocations":[{"count":36480,"id":29975160,"spesh":36480,"type":"Block"},{"count":36480,"id":19706296,"spesh":36480,"type":"BOOTCode"}],"inclusive_time":30485,"spesh_entries":36480,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":36480}]},{"exclusive_time":512917,"id":34689648,"line":29504,"name":"","allocations":[{"count":36480,"id":19706296,"spesh":36335,"type":"BOOTCode"},{"count":145920,"id":29975016,"spesh":145340,"type":"Scalar"},{"count":36480,"id":29974896,"spesh":36335,"type":"Array"}],"inclusive_time":10588081,"spesh_entries":36335,"file":"gen/moar/m-CORE.setting","entries":36480,"callees":[{"exclusive_time":206455,"id":35537504,"line":13831,"name":"from-slurpy-onearg","allocations":[{"count":36480,"id":19706296,"spesh":36420,"type":"BOOTCode"},{"count":36480,"id":29975112,"spesh":36420,"type":"Capture"},{"count":36480,"id":29975016,"spesh":36420,"type":"Scalar"}],"inclusive_time":514482,"spesh_entries":36420,"file":"gen/moar/m-CORE.setting","entries":36480,"callees":[{"exclusive_time":12355,"id":35435664,"line":12248,"name":"FLATTENABLE_LIST","inclusive_time":12355,"file":"gen/moar/m-CORE.setting","jit_entries":36480,"entries":36480},{"exclusive_time":12914,"id":35435968,"line":12249,"name":"FLATTENABLE_HASH","allocations":[{"count":36480,"id":19706248,"type":"BOOTHash","jit":36480}],"inclusive_time":12914,"file":"gen/moar/m-CORE.setting","jit_entries":36480,"entries":36480},{"exclusive_time":194570,"id":35537200,"line":13817,"name":"from-slurpy","allocations":[{"count":36480,"id":29974584,"type":"List"},{"count":36480,"id":54157808,"type":"IterationBuffer"},{"count":36480,"id":51227144,"type":"List::Reifier"}],"inclusive_time":282756,"file":"gen/moar/m-CORE.setting","entries":36480,"callees":[{"exclusive_time":5497,"id":38067136,"line":3008,"name":"","allocations":[{"count":36480,"id":29974584,"type":"List","jit":36480}],"inclusive_time":5497,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":36480,"entries":36480},{"exclusive_time":74694,"id":35546320,"line":13985,"name":"reification-target","inclusive_time":82688,"file":"gen/moar/m-CORE.setting","jit_entries":36480,"entries":36480,"callees":[{"exclusive_time":4701,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":4701,"file":"gen/moar/m-CORE.setting","jit_entries":36480,"entries":36480},{"exclusive_time":3292,"id":35552400,"line":14088,"name":"sink","inclusive_time":3292,"file":"gen/moar/m-CORE.setting","jit_entries":36480,"entries":36480}]}]}]},{"exclusive_time":193457,"id":35543584,"line":13932,"name":"elems","allocations":[{"count":36480,"id":29975016,"spesh":36335,"type":"Scalar","jit":145}],"inclusive_time":885397,"spesh_entries":36335,"file":"gen/moar/m-CORE.setting","jit_entries":145,"entries":36480,"callees":[{"exclusive_time":3556,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":3556,"file":"gen/moar/m-CORE.setting","jit_entries":36480,"entries":36480},{"exclusive_time":2980,"id":35552400,"line":14088,"name":"sink","inclusive_time":2980,"file":"gen/moar/m-CORE.setting","jit_entries":36480,"entries":36480},{"exclusive_time":259601,"id":35591616,"line":13753,"name":"reify-until-lazy","allocations":[{"count":36480,"id":19706296,"type":"BOOTCode","jit":36480},{"count":72960,"id":29975016,"type":"Scalar","jit":72960}],"inclusive_time":653357,"file":"gen/moar/m-CORE.setting","deopt_one":36480,"jit_entries":36480,"entries":36480,"callees":[{"exclusive_time":2926,"id":35552400,"line":14088,"name":"sink","inclusive_time":2926,"file":"gen/moar/m-CORE.setting","jit_entries":36480,"entries":36480},{"exclusive_time":5417,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":5417,"file":"gen/moar/m-CORE.setting","jit_entries":36480,"entries":36480},{"exclusive_time":198302,"id":35592832,"line":13760,"name":"","allocations":[{"count":145920,"id":19706296,"type":"BOOTCode","jit":145680}],"inclusive_time":385412,"file":"gen/moar/m-CORE.setting","deopt_one":24280,"jit_entries":72840,"entries":72960,"callees":[{"exclusive_time":133261,"id":35593744,"line":13769,"name":"","allocations":[{"count":72960,"id":29975016,"type":"Scalar","jit":72864}],"inclusive_time":169928,"file":"gen/moar/m-CORE.setting","jit_entries":72864,"entries":72960,"callees":[{"exclusive_time":36666,"id":35438704,"line":12283,"name":"push","inclusive_time":36666,"file":"gen/moar/m-CORE.setting","jit_entries":24314,"entries":72960}]},{"exclusive_time":17181,"id":34818544,"line":856,"name":"sink","inclusive_time":17181,"file":"gen/moar/m-CORE.setting","jit_entries":24314,"entries":72960}]}]},{"exclusive_time":3407,"id":34818544,"line":856,"name":"sink","inclusive_time":3407,"file":"gen/moar/m-CORE.setting","jit_entries":36480,"entries":36480},{"exclusive_time":19953,"id":35595264,"line":13795,"name":"fully-reified","inclusive_time":28639,"file":"gen/moar/m-CORE.setting","jit_entries":36479,"entries":36480,"callees":[{"exclusive_time":8685,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":8685,"file":"gen/moar/m-CORE.setting","inlined_entries":72958,"jit_entries":72960,"entries":72960}]}]},{"exclusive_time":13609,"id":34228480,"line":8515,"name":"infix:<==>","inclusive_time":13609,"spesh_entries":36335,"file":"gen/moar/m-CORE.setting","inlined_entries":36335,"jit_entries":145,"entries":36480},{"exclusive_time":27649,"id":38055584,"line":1563,"name":"","allocations":[{"count":36480,"id":29975184,"spesh":36420,"type":"Code"},{"count":36480,"id":19706296,"spesh":36420,"type":"BOOTCode"}],"inclusive_time":27649,"spesh_entries":36420,"file":"gen/moar/m-BOOTSTRAP.nqp","inlined_entries":36335,"entries":36480},{"exclusive_time":157842,"id":34689952,"line":29508,"name":"","inclusive_time":7126646,"file":"gen/moar/m-CORE.setting","jit_entries":36390,"entries":36480,"callees":[{"exclusive_time":27519,"id":38057408,"line":1621,"name":"","allocations":[{"count":36480,"id":29975160,"spesh":36480,"type":"Block"},{"count":36480,"id":19706296,"spesh":36480,"type":"BOOTCode"}],"inclusive_time":27519,"spesh_entries":36480,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":36480},{"exclusive_time":306685,"id":35044416,"line":3773,"name":"map","inclusive_time":1903824,"spesh_entries":36480,"file":"gen/moar/m-CORE.setting","entries":36480,"callees":[{"exclusive_time":6138,"id":38067136,"line":3008,"name":"","allocations":[{"count":36480,"id":29974584,"type":"List","jit":36480}],"inclusive_time":6138,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":36480,"entries":36480},{"exclusive_time":652369,"id":38060448,"line":2048,"name":"","allocations":[{"count":72960,"id":19706296,"type":"BOOTCode"},{"count":72960,"id":19707232,"type":"NQPArray"},{"count":36480,"id":19706248,"type":"BOOTHash"}],"inclusive_time":658222,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":36480,"callees":[{"exclusive_time":5853,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":5853,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":36480,"entries":36480}]},{"exclusive_time":188575,"id":35045632,"line":3779,"name":"map","allocations":[{"count":72960,"id":29975016,"spesh":72960,"type":"Scalar"}],"inclusive_time":932778,"spesh_entries":36480,"file":"gen/moar/m-CORE.setting","entries":36480,"callees":[{"exclusive_time":155276,"id":35546624,"line":13990,"name":"iterator","allocations":[{"count":36480,"id":19706296,"type":"BOOTCode","jit":36480}],"inclusive_time":336578,"file":"gen/moar/m-CORE.setting","jit_entries":36480,"entries":36480,"callees":[{"exclusive_time":5227,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":5227,"file":"gen/moar/m-CORE.setting","jit_entries":36480,"entries":36480},{"exclusive_time":3373,"id":35552400,"line":14088,"name":"sink","inclusive_time":3373,"file":"gen/moar/m-CORE.setting","jit_entries":36480,"entries":36480},{"exclusive_time":30834,"id":35546928,"line":13992,"name":"","allocations":[{"count":36480,"id":29975016,"type":"Scalar","jit":36480}],"inclusive_time":30834,"file":"gen/moar/m-CORE.setting","jit_entries":36480,"entries":36480},{"exclusive_time":118731,"id":35547536,"line":14004,"name":"new","allocations":[{"count":36480,"id":53651952,"type":"<anon|352550624>","jit":36480}],"inclusive_time":141866,"file":"gen/moar/m-CORE.setting","jit_entries":36480,"entries":36480,"callees":[{"exclusive_time":4994,"id":34798480,"line":495,"name":"of","inclusive_time":4994,"file":"gen/moar/m-CORE.setting","jit_entries":36480,"entries":36480},{"exclusive_time":18140,"id":35547232,"line":13998,"name":"BUILD","inclusive_time":18140,"file":"gen/moar/m-CORE.setting","jit_entries":36480,"entries":36480}]}]},{"exclusive_time":250077,"id":35048976,"line":3840,"name":"sequential-map","allocations":[{"count":72960,"id":19706296,"type":"BOOTCode","jit":72960},{"count":109440,"id":29975016,"type":"Scalar","jit":109440}],"inclusive_time":407624,"file":"gen/moar/m-CORE.setting","jit_entries":36480,"entries":36480,"callees":[{"exclusive_time":59072,"id":35157504,"line":6408,"name":"count","inclusive_time":63289,"file":"gen/moar/m-CORE.setting","jit_entries":36480,"entries":36480,"callees":[{"exclusive_time":4216,"id":35839376,"line":18706,"name":"count","inclusive_time":4216,"file":"gen/moar/m-CORE.setting","jit_entries":36480,"entries":36480}]},{"exclusive_time":6435,"id":34228480,"line":8515,"name":"infix:<==>","inclusive_time":6435,"file":"gen/moar/m-CORE.setting","inlined_entries":36480,"jit_entries":36480,"entries":36480},{"exclusive_time":15011,"id":35049888,"line":3847,"name":"","inclusive_time":15011,"file":"gen/moar/m-CORE.setting","jit_entries":36480,"entries":36480},{"exclusive_time":57361,"id":35147168,"line":3827,"name":"new","allocations":[{"count":109440,"id":29975016,"type":"Scalar","jit":109440},{"count":36480,"id":53654184,"type":"<anon|159066640>","jit":36480}],"inclusive_time":57361,"file":"gen/moar/m-CORE.setting","jit_entries":36480,"entries":36480},{"exclusive_time":15448,"id":35446304,"line":12399,"name":"new","allocations":[{"count":36480,"id":53654904,"type":"Seq","jit":36480}],"inclusive_time":15448,"file":"gen/moar/m-CORE.setting","jit_entries":36480,"entries":36480}]}]}]},{"exclusive_time":119277,"id":35447520,"line":12420,"name":"eager","inclusive_time":5037461,"file":"gen/moar/m-CORE.setting","jit_entries":36360,"entries":36480,"callees":[{"exclusive_time":114104,"id":35446912,"line":12407,"name":"iterator","inclusive_time":139979,"file":"gen/moar/m-CORE.setting","jit_entries":36480,"entries":36480,"callees":[{"exclusive_time":3391,"id":35552400,"line":14088,"name":"sink","inclusive_time":3391,"file":"gen/moar/m-CORE.setting","jit_entries":36480,"entries":36480},{"exclusive_time":22482,"id":38361936,"line":2635,"name":"type_check","inclusive_time":22482,"file":"gen/moar/m-Metamodel.nqp","jit_entries":36480,"entries":36480}]},{"exclusive_time":55402,"id":35536896,"line":13804,"name":"from-iterator","allocations":[{"count":36480,"id":29974584,"type":"List","jit":36477},{"count":36480,"id":54157808,"type":"IterationBuffer","jit":36477},{"count":36480,"id":51227144,"type":"List::Reifier","jit":36477}],"inclusive_time":129886,"file":"gen/moar/m-CORE.setting","jit_entries":36477,"entries":36480,"callees":[{"exclusive_time":67179,"id":35546320,"line":13985,"name":"reification-target","inclusive_time":74484,"file":"gen/moar/m-CORE.setting","jit_entries":36480,"entries":36480,"callees":[{"exclusive_time":4368,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":4368,"file":"gen/moar/m-CORE.setting","jit_entries":36480,"entries":36480},{"exclusive_time":2936,"id":35552400,"line":14088,"name":"sink","inclusive_time":2936,"file":"gen/moar/m-CORE.setting","jit_entries":36480,"entries":36480}]}]},{"exclusive_time":91202,"id":35567296,"line":14247,"name":"eager","inclusive_time":4648318,"file":"gen/moar/m-CORE.setting","jit_entries":36474,"entries":36480,"callees":[{"exclusive_time":198944,"id":35594048,"line":13778,"name":"reify-all","allocations":[{"count":36480,"id":19706296,"type":"BOOTCode","jit":36474},{"count":72960,"id":29975016,"type":"Scalar","jit":72948}],"inclusive_time":4554180,"file":"gen/moar/m-CORE.setting","jit_entries":36474,"entries":36480,"callees":[{"exclusive_time":72220,"id":34958992,"line":2463,"name":"push-all","allocations":[{"count":36480,"id":29975016,"type":"Scalar","jit":36477}],"inclusive_time":4324997,"file":"gen/moar/m-CORE.setting","jit_entries":36477,"entries":36480,"callees":[{"exclusive_time":110494,"id":34958688,"line":2454,"name":"push-at-least","allocations":[{"count":36480,"id":29975016,"spesh":36477,"type":"Scalar"}],"inclusive_time":4249113,"spesh_entries":36477,"file":"gen/moar/m-CORE.setting","entries":36480,"callees":[{"exclusive_time":640643,"id":34958080,"line":2436,"name":"push-exactly","allocations":[{"count":72960,"id":29975016,"type":"Scalar","jit":72960}],"inclusive_time":4138618,"file":"gen/moar/m-CORE.setting","deopt_one":36480,"jit_entries":36480,"entries":36480,"callees":[{"exclusive_time":1181599,"id":35050192,"line":3853,"name":"pull-one","allocations":[{"count":109440,"id":19706296,"type":"BOOTCode","jit":109440},{"count":255360,"id":29975016,"type":"Scalar","jit":255360}],"inclusive_time":3446794,"file":"gen/moar/m-CORE.setting","deopt_one":72960,"jit_entries":109440,"entries":109440,"callees":[{"exclusive_time":15876,"id":34255840,"line":8705,"name":"prefix:<!>","inclusive_time":15876,"file":"gen/moar/m-CORE.setting","inlined_entries":72960,"jit_entries":109440,"entries":109440},{"exclusive_time":87603,"id":35163280,"line":6478,"name":"phasers","inclusive_time":93888,"file":"gen/moar/m-CORE.setting","jit_entries":72960,"entries":72960,"callees":[{"exclusive_time":6284,"id":35552400,"line":14088,"name":"sink","inclusive_time":6284,"file":"gen/moar/m-CORE.setting","jit_entries":72960,"entries":72960}]},{"exclusive_time":32310,"id":34151264,"line":7763,"name":"prefix:<+>","inclusive_time":200287,"file":"gen/moar/m-CORE.setting","jit_entries":36480,"entries":36480,"callees":[{"exclusive_time":43515,"id":35541456,"line":13911,"name":"Numeric","inclusive_time":167977,"spesh_entries":36480,"file":"gen/moar/m-CORE.setting","entries":36480,"callees":[{"exclusive_time":114247,"id":35543584,"line":13932,"name":"elems","inclusive_time":124461,"spesh_entries":36480,"file":"gen/moar/m-CORE.setting","entries":36480,"callees":[{"exclusive_time":4481,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":4481,"file":"gen/moar/m-CORE.setting","jit_entries":36480,"entries":36480},{"exclusive_time":5733,"id":35552400,"line":14088,"name":"sink","inclusive_time":5733,"file":"gen/moar/m-CORE.setting","jit_entries":72960,"entries":72960}]}]}]},{"exclusive_time":99850,"id":34824016,"line":929,"name":"Bool","inclusive_time":214436,"spesh_entries":36480,"file":"gen/moar/m-CORE.setting","entries":36480,"callees":[{"exclusive_time":5904,"id":38067136,"line":3008,"name":"","allocations":[{"count":36480,"id":29974584,"type":"List","jit":36480}],"inclusive_time":5904,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":36480,"entries":36480},{"exclusive_time":99609,"id":35540544,"line":13904,"name":"Bool","inclusive_time":108681,"file":"gen/moar/m-CORE.setting","jit_entries":36480,"entries":36480,"callees":[{"exclusive_time":3900,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":3900,"file":"gen/moar/m-CORE.setting","jit_entries":36480,"entries":36480},{"exclusive_time":2830,"id":35552400,"line":14088,"name":"sink","inclusive_time":2830,"file":"gen/moar/m-CORE.setting","jit_entries":36480,"entries":36480},{"exclusive_time":2341,"id":34254320,"line":8699,"name":"prefix:<so>","inclusive_time":2341,"file":"gen/moar/m-CORE.setting","jit_entries":36480,"entries":36480}]}]},{"exclusive_time":18121,"id":35552400,"line":14088,"name":"sink","inclusive_time":18121,"file":"gen/moar/m-CORE.setting","jit_entries":218880,"entries":218880},{"exclusive_time":77524,"id":35547840,"line":14006,"name":"pull-one","inclusive_time":96105,"file":"gen/moar/m-CORE.setting","jit_entries":109440,"entries":109440,"callees":[{"exclusive_time":18580,"id":35548144,"line":14013,"name":"reify-and-pull-one","inclusive_time":18580,"file":"gen/moar/m-CORE.setting","jit_entries":36480,"entries":36480}]},{"exclusive_time":155010,"id":25520320,"line":1558,"name":"infix:<=:=>","inclusive_time":681455,"file":"gen/moar/m-CORE.setting","jit_entries":48640,"entries":48640,"callees":[{"exclusive_time":485541,"id":38060448,"line":2048,"name":"","allocations":[{"count":97280,"id":19706296,"type":"BOOTCode"},{"count":97280,"id":19707232,"type":"NQPArray"},{"count":48640,"id":19706248,"type":"BOOTHash"}],"inclusive_time":510849,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":48640,"callees":[{"exclusive_time":25307,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":25307,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":48640,"entries":48640}]},{"exclusive_time":15595,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":15595,"file":"gen/moar/m-CORE.setting","entries":48640}]},{"exclusive_time":378074,"id":34690256,"line":29508,"name":"","inclusive_time":852156,"file":"gen/moar/m-CORE.setting","jit_entries":72817,"entries":72960,"callees":[{"exclusive_time":4722,"id":35663664,"line":16993,"name":"is-lazy","inclusive_time":4722,"file":"gen/moar/m-CORE.setting","jit_entries":48560,"entries":48640},{"exclusive_time":26831,"id":34818544,"line":856,"name":"sink","inclusive_time":26831,"file":"gen/moar/m-CORE.setting","entries":72960},{"exclusive_time":121786,"id":35679168,"line":16487,"name":"iterator","allocations":[{"count":48640,"id":19706296,"type":"BOOTCode","jit":48560}],"inclusive_time":264048,"file":"gen/moar/m-CORE.setting","jit_entries":48560,"entries":48640,"callees":[{"exclusive_time":54223,"id":35679472,"line":16488,"name":"","allocations":[{"count":48640,"id":29975016,"type":"Scalar","jit":48560}],"inclusive_time":54223,"file":"gen/moar/m-CORE.setting","jit_entries":48560,"entries":48640},{"exclusive_time":74268,"id":35680080,"line":16497,"name":"new","allocations":[{"count":48640,"id":53651592,"type":"<anon|414432224>","jit":48552}],"inclusive_time":88038,"file":"gen/moar/m-CORE.setting","jit_entries":48552,"entries":48640,"callees":[{"exclusive_time":13770,"id":35679776,"line":16492,"name":"BUILD","inclusive_time":13770,"file":"gen/moar/m-CORE.setting","jit_entries":48552,"entries":48640}]}]},{"exclusive_time":43171,"id":35000640,"line":2551,"name":"new","allocations":[{"count":72960,"id":53654424,"type":"Rakudo::Internals::WhateverIterator","jit":72853}],"inclusive_time":43171,"file":"gen/moar/m-CORE.setting","jit_entries":72853,"entries":72960},{"exclusive_time":62261,"id":35447216,"line":12414,"name":"is-lazy","inclusive_time":67040,"file":"gen/moar/m-CORE.setting","jit_entries":24115,"entries":24320,"callees":[{"exclusive_time":2145,"id":35552400,"line":14088,"name":"sink","inclusive_time":2145,"file":"gen/moar/m-CORE.setting","jit_entries":24320,"entries":24320},{"exclusive_time":2633,"id":34961120,"line":2511,"name":"is-lazy","inclusive_time":2633,"file":"gen/moar/m-CORE.setting","jit_entries":24264,"entries":24320}]},{"exclusive_time":55649,"id":35446912,"line":12407,"name":"iterator","inclusive_time":68267,"file":"gen/moar/m-CORE.setting","jit_entries":24320,"entries":24320,"callees":[{"exclusive_time":1984,"id":35552400,"line":14088,"name":"sink","inclusive_time":1984,"file":"gen/moar/m-CORE.setting","jit_entries":24320,"entries":24320},{"exclusive_time":10633,"id":38361936,"line":2635,"name":"type_check","inclusive_time":10633,"file":"gen/moar/m-Metamodel.nqp","jit_entries":24320,"entries":24320}]}]},{"exclusive_time":7601,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":7601,"file":"gen/moar/m-CORE.setting","jit_entries":60794,"entries":60800},{"exclusive_time":12992,"id":34818544,"line":856,"name":"sink","inclusive_time":12992,"file":"gen/moar/m-CORE.setting","entries":36480},{"exclusive_time":62593,"id":35162368,"line":6469,"name":"fire_phasers","allocations":[{"count":36480,"id":19706296,"spesh":36480,"type":"BOOTCode"}],"inclusive_time":72273,"spesh_entries":36480,"file":"gen/moar/m-CORE.setting","entries":36480,"callees":[{"exclusive_time":9680,"id":34255840,"line":8705,"name":"prefix:<!>","inclusive_time":9680,"spesh_entries":36480,"file":"gen/moar/m-CORE.setting","inlined_entries":36480,"entries":36480}]}]},{"exclusive_time":20654,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":20654,"file":"gen/moar/m-CORE.setting","jit_entries":36480,"entries":109440},{"exclusive_time":13768,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":13768,"file":"gen/moar/m-CORE.setting","jit_entries":109440,"entries":109440},{"exclusive_time":16756,"id":35438704,"line":12283,"name":"push","inclusive_time":16756,"file":"gen/moar/m-CORE.setting","jit_entries":72960,"entries":72960}]}]},{"exclusive_time":3664,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":3664,"file":"gen/moar/m-CORE.setting","inlined_entries":36477,"jit_entries":36480,"entries":36480}]},{"exclusive_time":11548,"id":34818544,"line":856,"name":"sink","inclusive_time":11548,"file":"gen/moar/m-CORE.setting","entries":36480},{"exclusive_time":15578,"id":38361936,"line":2635,"name":"type_check","inclusive_time":15578,"file":"gen/moar/m-Metamodel.nqp","jit_entries":36480,"entries":36480},{"exclusive_time":3111,"id":35552400,"line":14088,"name":"sink","inclusive_time":3111,"file":"gen/moar/m-CORE.setting","jit_entries":36480,"entries":36480}]},{"exclusive_time":2934,"id":34818544,"line":856,"name":"sink","inclusive_time":2934,"file":"gen/moar/m-CORE.setting","jit_entries":36480,"entries":36480}]}]}]},{"exclusive_time":62902,"id":35567296,"line":14247,"name":"eager","inclusive_time":171658,"file":"gen/moar/m-CORE.setting","jit_entries":36474,"entries":36480,"callees":[{"exclusive_time":100354,"id":35594048,"line":13778,"name":"reify-all","allocations":[{"count":36480,"id":19706296,"type":"BOOTCode","jit":36474}],"inclusive_time":105999,"file":"gen/moar/m-CORE.setting","deopt_one":36474,"jit_entries":36474,"entries":36480,"callees":[{"exclusive_time":5645,"id":35552400,"line":14088,"name":"sink","inclusive_time":5645,"file":"gen/moar/m-CORE.setting","jit_entries":72960,"entries":72960}]},{"exclusive_time":2756,"id":34818544,"line":856,"name":"sink","inclusive_time":2756,"file":"gen/moar/m-CORE.setting","jit_entries":36480,"entries":36480}]},{"exclusive_time":74245,"id":35605296,"line":15771,"name":"STORE","inclusive_time":919219,"spesh_entries":36335,"file":"gen/moar/m-CORE.setting","jit_entries":34,"entries":36480,"callees":[{"exclusive_time":211649,"id":35605904,"line":15779,"name":"STORE-ITERABLE","allocations":[{"count":36480,"id":19706296,"type":"BOOTCode","jit":36354},{"count":36480,"id":54157808,"type":"IterationBuffer","jit":36354},{"count":36480,"id":29975016,"type":"Scalar","jit":36354}],"inclusive_time":844974,"file":"gen/moar/m-CORE.setting","jit_entries":36354,"entries":36480,"callees":[{"exclusive_time":104868,"id":35546624,"line":13990,"name":"iterator","allocations":[{"count":36480,"id":19706296,"type":"BOOTCode","jit":36480}],"inclusive_time":216604,"file":"gen/moar/m-CORE.setting","jit_entries":36480,"entries":36480,"callees":[{"exclusive_time":5069,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":5069,"file":"gen/moar/m-CORE.setting","jit_entries":36480,"entries":36480},{"exclusive_time":3270,"id":35552400,"line":14088,"name":"sink","inclusive_time":3270,"file":"gen/moar/m-CORE.setting","jit_entries":36480,"entries":36480},{"exclusive_time":26664,"id":35546928,"line":13992,"name":"","allocations":[{"count":36480,"id":29975016,"type":"Scalar","jit":36480}],"inclusive_time":26664,"file":"gen/moar/m-CORE.setting","jit_entries":36480,"entries":36480},{"exclusive_time":59889,"id":35547536,"line":14004,"name":"new","allocations":[{"count":36480,"id":53651952,"type":"<anon|352550624>","jit":36480}],"inclusive_time":76731,"file":"gen/moar/m-CORE.setting","jit_entries":36480,"entries":36480,"callees":[{"exclusive_time":4393,"id":34798480,"line":495,"name":"of","inclusive_time":4393,"file":"gen/moar/m-CORE.setting","jit_entries":36480,"entries":36480},{"exclusive_time":12448,"id":35547232,"line":13998,"name":"BUILD","inclusive_time":12448,"file":"gen/moar/m-CORE.setting","jit_entries":36480,"entries":36480}]}]},{"exclusive_time":27421,"id":35628704,"line":15464,"name":"new","allocations":[{"count":36480,"id":54158192,"type":"Array::ArrayReificationTarget","jit":36480}],"inclusive_time":27421,"file":"gen/moar/m-CORE.setting","jit_entries":36480,"entries":36480},{"exclusive_time":218124,"id":35548448,"line":14020,"name":"push-until-lazy","allocations":[{"count":72960,"id":29975016,"type":"Scalar","jit":72752}],"inclusive_time":384490,"file":"gen/moar/m-CORE.setting","jit_entries":36376,"entries":36480,"callees":[{"exclusive_time":92323,"id":35591616,"line":13753,"name":"reify-until-lazy","allocations":[{"count":36480,"id":19706296,"type":"BOOTCode","jit":36480}],"inclusive_time":98178,"file":"gen/moar/m-CORE.setting","jit_entries":36480,"entries":36480,"callees":[{"exclusive_time":5854,"id":35552400,"line":14088,"name":"sink","inclusive_time":5854,"file":"gen/moar/m-CORE.setting","jit_entries":72960,"entries":72960}]},{"exclusive_time":39699,"id":35629008,"line":15471,"name":"push","allocations":[{"count":72960,"id":29975016,"type":"Scalar","jit":72960}],"inclusive_time":39699,"file":"gen/moar/m-CORE.setting","jit_entries":72960,"entries":72960},{"exclusive_time":4009,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":4009,"file":"gen/moar/m-CORE.setting","inlined_entries":36376,"jit_entries":36480,"entries":36480},{"exclusive_time":17584,"id":35595264,"line":13795,"name":"fully-reified","inclusive_time":24477,"file":"gen/moar/m-CORE.setting","jit_entries":36479,"entries":36480,"callees":[{"exclusive_time":6893,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":6893,"file":"gen/moar/m-CORE.setting","inlined_entries":72958,"jit_entries":72960,"entries":72960}]}]},{"exclusive_time":4808,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":4808,"file":"gen/moar/m-CORE.setting","inlined_entries":36354,"jit_entries":36480,"entries":36480}]}]},{"exclusive_time":64255,"id":38057408,"line":1621,"name":"","allocations":[{"count":72960,"id":29975160,"spesh":72960,"type":"Block"},{"count":72960,"id":19706296,"spesh":72960,"type":"BOOTCode"}],"inclusive_time":64255,"spesh_entries":72960,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":72960},{"exclusive_time":156271,"id":34348560,"line":12668,"name":"GATHER","allocations":[{"count":36480,"id":19706296,"type":"BOOTCode","jit":36360}],"inclusive_time":325508,"file":"gen/moar/m-CORE.setting","jit_entries":36360,"entries":36480,"callees":[{"exclusive_time":33481,"id":34348864,"line":12669,"name":"","allocations":[{"count":36480,"id":19706296,"type":"BOOTCode","jit":36395},{"count":36480,"id":29975016,"type":"Scalar","jit":36395}],"inclusive_time":33481,"file":"gen/moar/m-CORE.setting","jit_entries":36395,"entries":36480},{"exclusive_time":78375,"id":34349472,"line":12676,"name":"new","allocations":[{"count":36480,"id":53652480,"type":"<anon|340889968>","jit":36360}],"inclusive_time":122528,"file":"gen/moar/m-CORE.setting","jit_entries":36360,"entries":36480,"callees":[{"exclusive_time":44153,"id":38057408,"line":1621,"name":"","allocations":[{"count":72960,"id":29975160,"spesh":72960,"type":"Block"},{"count":72960,"id":19706296,"spesh":72960,"type":"BOOTCode"}],"inclusive_time":44153,"spesh_entries":72960,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":72960}]},{"exclusive_time":13226,"id":35446304,"line":12399,"name":"new","allocations":[{"count":36480,"id":53654904,"type":"Seq","jit":36480}],"inclusive_time":13226,"file":"gen/moar/m-CORE.setting","jit_entries":36480,"entries":36480}]},{"exclusive_time":26735,"id":35037728,"line":3690,"name":"lazy-if","allocations":[{"count":36480,"id":29975016,"type":"Scalar","jit":36360}],"inclusive_time":26735,"file":"gen/moar/m-CORE.setting","jit_entries":36360,"entries":36480}]},{"exclusive_time":2591,"id":35662144,"line":16988,"name":"elems","inclusive_time":2591,"file":"gen/moar/m-CORE.setting","inlined_entries":11903,"jit_entries":12087,"entries":12160},{"exclusive_time":78150,"id":86770960,"line":5,"name":"random-bytes","inclusive_time":3796757,"spesh_entries":11903,"file":"hibbified-249.p6","jit_entries":60,"entries":12160,"callees":[{"exclusive_time":63843,"id":35521696,"line":13419,"name":"roll","allocations":[{"count":12160,"id":19706296,"type":"BOOTCode","jit":11913},{"count":12160,"id":29975016,"type":"Scalar","jit":11913}],"inclusive_time":534780,"file":"gen/moar/m-CORE.setting","jit_entries":11913,"entries":12160,"callees":[{"exclusive_time":150602,"id":35496160,"line":13153,"name":"elems","allocations":[{"count":12160,"id":29974560,"type":"Hash","jit":11913},{"count":36480,"id":29974536,"type":"IntAttrRef","jit":35739}],"inclusive_time":224751,"file":"gen/moar/m-CORE.setting","jit_entries":11913,"entries":12160,"callees":[{"exclusive_time":16829,"id":34223616,"line":8446,"name":"infix:<->","allocations":[{"count":36480,"id":29974944,"type":"Int","jit":36304}],"inclusive_time":16829,"file":"gen/moar/m-CORE.setting","inlined_entries":11913,"jit_entries":36304,"entries":36480},{"exclusive_time":5818,"id":34223008,"line":8439,"name":"infix:<+>","allocations":[{"count":12160,"id":29974944,"type":"Int","jit":12160}],"inclusive_time":5818,"file":"gen/moar/m-CORE.setting","inlined_entries":11913,"jit_entries":12160,"entries":12160},{"exclusive_time":29656,"id":34018112,"line":5211,"name":"infix:<max>","inclusive_time":51501,"spesh_entries":11913,"file":"gen/moar/m-CORE.setting","jit_entries":149,"entries":12160,"callees":[{"exclusive_time":15337,"id":34271344,"line":8789,"name":"infix:<cmp>","inclusive_time":15337,"spesh_entries":12062,"file":"gen/moar/m-CORE.setting","jit_entries":58,"entries":12160},{"exclusive_time":6507,"id":34230608,"line":8540,"name":"infix:«>»","inclusive_time":6507,"spesh_entries":11913,"file":"gen/moar/m-CORE.setting","inlined_entries":12062,"jit_entries":218,"entries":12160}]}]},{"exclusive_time":130881,"id":35522304,"line":13420,"name":"","allocations":[{"count":12160,"id":19706296,"type":"BOOTCode","jit":11913},{"count":24320,"id":29975016,"type":"Scalar","jit":23826},{"count":24320,"id":29974536,"type":"IntAttrRef","jit":23826}],"inclusive_time":246185,"file":"gen/moar/m-CORE.setting","jit_entries":11913,"entries":12160,"callees":[{"exclusive_time":20392,"id":35522608,"line":13422,"name":"","inclusive_time":20392,"file":"gen/moar/m-CORE.setting","jit_entries":12013,"entries":12160},{"exclusive_time":3846,"id":34223008,"line":8439,"name":"infix:<+>","inclusive_time":3846,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160},{"exclusive_time":23255,"id":34018112,"line":5211,"name":"infix:<max>","inclusive_time":33451,"spesh_entries":11913,"file":"gen/moar/m-CORE.setting","jit_entries":150,"entries":12160,"callees":[{"exclusive_time":8224,"id":34271344,"line":8789,"name":"infix:<cmp>","inclusive_time":8224,"spesh_entries":12063,"file":"gen/moar/m-CORE.setting","jit_entries":57,"entries":12160},{"exclusive_time":1970,"id":34230608,"line":8540,"name":"infix:«>»","inclusive_time":1970,"spesh_entries":11913,"file":"gen/moar/m-CORE.setting","inlined_entries":12063,"jit_entries":218,"entries":12160}]},{"exclusive_time":34050,"id":35523216,"line":13432,"name":"new","allocations":[{"count":12160,"id":53652096,"type":"<anon|348661744>","jit":11963}],"inclusive_time":39566,"file":"gen/moar/m-CORE.setting","jit_entries":11963,"entries":12160,"callees":[{"exclusive_time":5515,"id":35522912,"line":13426,"name":"BUILD","inclusive_time":5515,"file":"gen/moar/m-CORE.setting","jit_entries":11963,"entries":12160}]},{"exclusive_time":18047,"id":35446304,"line":12399,"name":"new","allocations":[{"count":12160,"id":53654904,"type":"Seq"}],"inclusive_time":18047,"file":"gen/moar/m-CORE.setting","entries":12160}]}]},{"exclusive_time":92494,"id":34825536,"line":941,"name":"new","inclusive_time":3183826,"spesh_entries":12131,"file":"gen/moar/m-CORE.setting","entries":12160,"callees":[{"exclusive_time":2219,"id":38067136,"line":3008,"name":"","allocations":[{"count":12160,"id":29974584,"type":"List","jit":12160}],"inclusive_time":2219,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":12160,"entries":12160},{"exclusive_time":204015,"id":38060448,"line":2048,"name":"","allocations":[{"count":24320,"id":19706296,"type":"BOOTCode"},{"count":24320,"id":19707232,"type":"NQPArray"},{"count":12160,"id":19706248,"type":"BOOTHash"},{"count":12160,"id":19706440,"type":"CallCapture"}],"inclusive_time":857288,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":12160,"callees":[{"exclusive_time":51140,"id":38040688,"line":920,"name":"is_bindable","allocations":[{"count":12160,"id":19706296,"spesh":12160,"type":"BOOTCode"}],"inclusive_time":653272,"spesh_entries":12160,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":12160,"callees":[{"exclusive_time":40902,"id":38040992,"line":926,"name":"","inclusive_time":602131,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":12160,"callees":[{"exclusive_time":169532,"id":38038560,"line":606,"name":"bind","allocations":[{"count":12160,"id":29974560,"spesh":12150,"type":"Hash"}],"inclusive_time":561229,"spesh_entries":12150,"file":"gen/moar/m-BOOTSTRAP.nqp","deopt_one":12150,"entries":12160,"callees":[{"exclusive_time":228735,"id":38036736,"line":168,"name":"bind_one_param","allocations":[{"count":97280,"id":19706296,"type":"BOOTCode"},{"count":12160,"id":29975016,"type":"Scalar"}],"inclusive_time":384462,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":48640,"callees":[{"exclusive_time":8470,"id":38361936,"line":2635,"name":"type_check","inclusive_time":8470,"file":"gen/moar/m-Metamodel.nqp","jit_entries":12160,"entries":12160},{"exclusive_time":50352,"id":35444784,"line":12379,"name":"cache","allocations":[{"count":12160,"id":29975016,"type":"Scalar","jit":12129}],"inclusive_time":147255,"file":"gen/moar/m-CORE.setting","jit_entries":12129,"entries":12160,"callees":[{"exclusive_time":35750,"id":35446912,"line":12407,"name":"iterator","inclusive_time":41980,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160,"callees":[{"exclusive_time":1182,"id":35552400,"line":14088,"name":"sink","inclusive_time":1182,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160},{"exclusive_time":5047,"id":38361936,"line":2635,"name":"type_check","inclusive_time":5047,"file":"gen/moar/m-Metamodel.nqp","jit_entries":12160,"entries":12160}]},{"exclusive_time":27304,"id":35536896,"line":13804,"name":"from-iterator","allocations":[{"count":12160,"id":29974584,"type":"List","jit":12151},{"count":12160,"id":54157808,"type":"IterationBuffer","jit":12151},{"count":12160,"id":51227144,"type":"List::Reifier","jit":12151}],"inclusive_time":54923,"file":"gen/moar/m-CORE.setting","jit_entries":12151,"entries":12160,"callees":[{"exclusive_time":24713,"id":35546320,"line":13985,"name":"reification-target","inclusive_time":27618,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160,"callees":[{"exclusive_time":1712,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":1712,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160},{"exclusive_time":1192,"id":35552400,"line":14088,"name":"sink","inclusive_time":1192,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160}]}]}]}]},{"exclusive_time":7234,"id":38038256,"line":573,"name":"handle_optional","inclusive_time":7234,"spesh_entries":12133,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":12160}]}]}]}]},{"exclusive_time":77634,"id":35657584,"line":16936,"name":"new","allocations":[{"count":12160,"id":29975016,"type":"Scalar","jit":12135}],"inclusive_time":2231824,"file":"gen/moar/m-CORE.setting","jit_entries":12135,"entries":12160,"callees":[{"exclusive_time":4307,"id":35444784,"line":12379,"name":"cache","inclusive_time":4307,"file":"gen/moar/m-CORE.setting","jit_entries":12129,"entries":12160},{"exclusive_time":36282,"id":35658192,"line":16943,"name":"create","allocations":[{"count":12160,"id":29975016,"type":"Scalar","jit":12111},{"count":12160,"id":59274784,"type":"array[uint8]","jit":12111}],"inclusive_time":37580,"file":"gen/moar/m-CORE.setting","jit_entries":12111,"entries":12160,"callees":[{"exclusive_time":1298,"id":34818544,"line":856,"name":"sink","inclusive_time":1298,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160}]},{"exclusive_time":178895,"id":35673088,"line":16355,"name":"STORE","allocations":[{"count":12160,"id":29975016,"type":"Scalar","jit":12098},{"count":158080,"id":29974992,"type":"IntLexRef","jit":157274}],"inclusive_time":2112302,"file":"gen/moar/m-CORE.setting","jit_entries":12098,"entries":12160,"callees":[{"exclusive_time":80596,"id":35543584,"line":13932,"name":"elems","allocations":[{"count":12160,"id":29975016,"spesh":12098,"type":"Scalar","jit":62}],"inclusive_time":1613572,"spesh_entries":12098,"file":"gen/moar/m-CORE.setting","jit_entries":62,"entries":12160,"callees":[{"exclusive_time":1693,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":1693,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160},{"exclusive_time":1021,"id":35552400,"line":14088,"name":"sink","inclusive_time":1021,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160},{"exclusive_time":129145,"id":35591616,"line":13753,"name":"reify-until-lazy","allocations":[{"count":12160,"id":19706296,"type":"BOOTCode","jit":12160},{"count":24320,"id":29975016,"type":"Scalar","jit":24320}],"inclusive_time":1518914,"file":"gen/moar/m-CORE.setting","deopt_one":12160,"jit_entries":12160,"entries":12160,"callees":[{"exclusive_time":69758,"id":34959600,"line":2476,"name":"push-until-lazy","allocations":[{"count":12160,"id":29975016,"type":"Scalar"}],"inclusive_time":1380557,"file":"gen/moar/m-CORE.setting","entries":12160,"callees":[{"exclusive_time":1248,"id":34961120,"line":2511,"name":"is-lazy","inclusive_time":1248,"file":"gen/moar/m-CORE.setting","jit_entries":12126,"entries":12160},{"exclusive_time":1011804,"id":35523824,"line":13438,"name":"push-all","allocations":[{"count":12160,"id":29975016,"spesh":11963,"type":"Scalar"},{"count":328320,"id":29974536,"spesh":323001,"type":"IntAttrRef"},{"count":158080,"id":29974944,"spesh":155519,"type":"Int"}],"inclusive_time":1309550,"spesh_entries":11963,"file":"gen/moar/m-CORE.setting","entries":12160,"callees":[{"exclusive_time":48058,"id":34221488,"line":8419,"name":"postfix:<-->","inclusive_time":48058,"file":"gen/moar/m-CORE.setting","jit_entries":170234,"entries":170240},{"exclusive_time":163417,"id":34223008,"line":8439,"name":"infix:<+>","allocations":[{"count":158080,"id":29974944,"type":"Int","jit":158080}],"inclusive_time":163417,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080},{"exclusive_time":86269,"id":35438704,"line":12283,"name":"push","inclusive_time":86269,"file":"gen/moar/m-CORE.setting","entries":158080}]}]},{"exclusive_time":1675,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":1675,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160},{"exclusive_time":6245,"id":38361936,"line":2635,"name":"type_check","inclusive_time":6245,"file":"gen/moar/m-Metamodel.nqp","jit_entries":12160,"entries":12160},{"exclusive_time":1290,"id":35552400,"line":14088,"name":"sink","inclusive_time":1290,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160}]},{"exclusive_time":1192,"id":34818544,"line":856,"name":"sink","inclusive_time":1192,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160},{"exclusive_time":7697,"id":35595264,"line":13795,"name":"fully-reified","inclusive_time":10154,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160,"callees":[{"exclusive_time":2456,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":2456,"file":"gen/moar/m-CORE.setting","inlined_entries":24320,"jit_entries":24320,"entries":24320}]}]},{"exclusive_time":292809,"id":35545104,"line":13954,"name":"AT-POS","inclusive_time":319834,"spesh_entries":158055,"file":"gen/moar/m-CORE.setting","entries":158080,"callees":[{"exclusive_time":14797,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":14797,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080},{"exclusive_time":12227,"id":35552400,"line":14088,"name":"sink","inclusive_time":12227,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080}]}]}]}]}]},{"exclusive_time":91068,"id":34825536,"line":941,"name":"new","inclusive_time":116032280,"spesh_entries":12131,"file":"gen/moar/m-CORE.setting","entries":12160,"callees":[{"exclusive_time":1583,"id":38067136,"line":3008,"name":"","allocations":[{"count":12160,"id":29974584,"type":"List","jit":12160}],"inclusive_time":1583,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":12160,"entries":12160},{"exclusive_time":169209,"id":38060448,"line":2048,"name":"","allocations":[{"count":24320,"id":19706296,"type":"BOOTCode"},{"count":24320,"id":19707232,"type":"NQPArray"},{"count":12160,"id":19706248,"type":"BOOTHash"},{"count":12160,"id":19706440,"type":"CallCapture"}],"inclusive_time":704183,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":12160,"callees":[{"exclusive_time":35247,"id":38040688,"line":920,"name":"is_bindable","allocations":[{"count":12160,"id":19706296,"spesh":12160,"type":"BOOTCode"}],"inclusive_time":534974,"spesh_entries":12160,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":12160,"callees":[{"exclusive_time":33291,"id":38040992,"line":926,"name":"","inclusive_time":499727,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":12160,"callees":[{"exclusive_time":134295,"id":38038560,"line":606,"name":"bind","allocations":[{"count":12160,"id":29974560,"spesh":12150,"type":"Hash"}],"inclusive_time":466435,"spesh_entries":12150,"file":"gen/moar/m-BOOTSTRAP.nqp","deopt_one":12150,"entries":12160,"callees":[{"exclusive_time":195009,"id":38036736,"line":168,"name":"bind_one_param","allocations":[{"count":97280,"id":19706296,"type":"BOOTCode"},{"count":12160,"id":29975016,"type":"Scalar"}],"inclusive_time":327038,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":48640,"callees":[{"exclusive_time":7119,"id":38361936,"line":2635,"name":"type_check","inclusive_time":7119,"file":"gen/moar/m-Metamodel.nqp","jit_entries":12160,"entries":12160},{"exclusive_time":36975,"id":35444784,"line":12379,"name":"cache","allocations":[{"count":12160,"id":29975016,"type":"Scalar","jit":12129}],"inclusive_time":124909,"file":"gen/moar/m-CORE.setting","jit_entries":12129,"entries":12160,"callees":[{"exclusive_time":31868,"id":35446912,"line":12407,"name":"iterator","inclusive_time":37428,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160,"callees":[{"exclusive_time":1132,"id":35552400,"line":14088,"name":"sink","inclusive_time":1132,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160},{"exclusive_time":4426,"id":38361936,"line":2635,"name":"type_check","inclusive_time":4426,"file":"gen/moar/m-Metamodel.nqp","jit_entries":12160,"entries":12160}]},{"exclusive_time":24344,"id":35536896,"line":13804,"name":"from-iterator","allocations":[{"count":12160,"id":29974584,"type":"List","jit":12155},{"count":12160,"id":54157808,"type":"IterationBuffer","jit":12155},{"count":12160,"id":51227144,"type":"List::Reifier","jit":12155}],"inclusive_time":50506,"file":"gen/moar/m-CORE.setting","jit_entries":12155,"entries":12160,"callees":[{"exclusive_time":23485,"id":35546320,"line":13985,"name":"reification-target","inclusive_time":26161,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160,"callees":[{"exclusive_time":1644,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":1644,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160},{"exclusive_time":1032,"id":35552400,"line":14088,"name":"sink","inclusive_time":1032,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160}]}]}]}]},{"exclusive_time":5101,"id":38038256,"line":573,"name":"handle_optional","inclusive_time":5101,"spesh_entries":12134,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":12160}]}]}]}]},{"exclusive_time":68711,"id":35657584,"line":16936,"name":"new","allocations":[{"count":12160,"id":29975016,"type":"Scalar","jit":12135}],"inclusive_time":115235445,"file":"gen/moar/m-CORE.setting","jit_entries":12135,"entries":12160,"callees":[{"exclusive_time":3785,"id":35444784,"line":12379,"name":"cache","inclusive_time":3785,"file":"gen/moar/m-CORE.setting","jit_entries":12129,"entries":12160},{"exclusive_time":27151,"id":35658192,"line":16943,"name":"create","allocations":[{"count":12160,"id":29975016,"type":"Scalar","jit":12111},{"count":12160,"id":59274784,"type":"array[uint8]","jit":12111}],"inclusive_time":28209,"file":"gen/moar/m-CORE.setting","jit_entries":12111,"entries":12160,"callees":[{"exclusive_time":1058,"id":34818544,"line":856,"name":"sink","inclusive_time":1058,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160}]},{"exclusive_time":200746,"id":35673088,"line":16355,"name":"STORE","allocations":[{"count":12160,"id":29975016,"type":"Scalar","jit":12099},{"count":158080,"id":29974992,"type":"IntLexRef","jit":157287}],"inclusive_time":115134737,"file":"gen/moar/m-CORE.setting","jit_entries":12099,"entries":12160,"callees":[{"exclusive_time":84827,"id":35543584,"line":13932,"name":"elems","allocations":[{"count":12160,"id":29975016,"spesh":12099,"type":"Scalar","jit":61}],"inclusive_time":114604717,"spesh_entries":12099,"file":"gen/moar/m-CORE.setting","jit_entries":61,"entries":12160,"callees":[{"exclusive_time":1581,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":1581,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160},{"exclusive_time":1081,"id":35552400,"line":14088,"name":"sink","inclusive_time":1081,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160},{"exclusive_time":129901,"id":35591616,"line":13753,"name":"reify-until-lazy","allocations":[{"count":12160,"id":19706296,"type":"BOOTCode","jit":12160},{"count":24320,"id":29975016,"type":"Scalar","jit":24320}],"inclusive_time":114507870,"file":"gen/moar/m-CORE.setting","deopt_one":12160,"jit_entries":12160,"entries":12160,"callees":[{"exclusive_time":54183,"id":34959600,"line":2476,"name":"push-until-lazy","allocations":[{"count":12160,"id":29975016,"type":"Scalar","jit":12097}],"inclusive_time":114370664,"file":"gen/moar/m-CORE.setting","jit_entries":12097,"entries":12160,"callees":[{"exclusive_time":1067,"id":34961120,"line":2511,"name":"is-lazy","inclusive_time":1067,"file":"gen/moar/m-CORE.setting","jit_entries":12132,"entries":12160},{"exclusive_time":48365,"id":34958992,"line":2463,"name":"push-all","allocations":[{"count":12160,"id":29975016,"type":"Scalar","jit":12155}],"inclusive_time":114315412,"file":"gen/moar/m-CORE.setting","jit_entries":12155,"entries":12160,"callees":[{"exclusive_time":56064,"id":34958688,"line":2454,"name":"push-at-least","allocations":[{"count":12160,"id":29975016,"spesh":12159,"type":"Scalar"}],"inclusive_time":114264784,"spesh_entries":12159,"file":"gen/moar/m-CORE.setting","entries":12160,"callees":[{"exclusive_time":86847,"id":34352208,"line":12722,"name":"push-exactly","allocations":[{"count":24320,"id":29975016,"type":"Scalar","jit":24068}],"inclusive_time":114208719,"file":"gen/moar/m-CORE.setting","jit_entries":12034,"entries":12160,"callees":[{"exclusive_time":72110,"id":34350384,"line":12698,"name":"","allocations":[{"count":12160,"id":19706296,"type":"BOOTCode"},{"count":12160,"id":29975016,"type":"Scalar"}],"inclusive_time":114111285,"file":"gen/moar/m-CORE.setting","entries":12160,"callees":[{"exclusive_time":182080,"id":34691168,"line":29518,"name":"","allocations":[{"count":12160,"id":19706296,"type":"BOOTCode"}],"inclusive_time":114026944,"file":"gen/moar/m-CORE.setting","entries":12160,"callees":[{"exclusive_time":2028569,"id":34691472,"line":29519,"name":"","allocations":[{"count":170240,"id":29975016,"type":"Scalar","jit":170212}],"inclusive_time":113844864,"file":"gen/moar/m-CORE.setting","jit_entries":170212,"entries":170240,"callees":[{"exclusive_time":148140,"id":38057408,"line":1621,"name":"","allocations":[{"count":170240,"id":29975160,"spesh":170240,"type":"Block"},{"count":170240,"id":19706296,"spesh":170240,"type":"BOOTCode"}],"inclusive_time":148140,"spesh_entries":170240,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":170240},{"exclusive_time":663712,"id":35045632,"line":3779,"name":"map","allocations":[{"count":340480,"id":29975016,"type":"Scalar","jit":340480}],"inclusive_time":3796316,"file":"gen/moar/m-CORE.setting","jit_entries":170240,"entries":170240,"callees":[{"exclusive_time":661530,"id":35546624,"line":13990,"name":"iterator","allocations":[{"count":170240,"id":19706296,"type":"BOOTCode","jit":170240}],"inclusive_time":1512233,"file":"gen/moar/m-CORE.setting","jit_entries":170240,"entries":170240,"callees":[{"exclusive_time":30260,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":30260,"file":"gen/moar/m-CORE.setting","jit_entries":170240,"entries":170240},{"exclusive_time":14748,"id":35552400,"line":14088,"name":"sink","inclusive_time":14748,"file":"gen/moar/m-CORE.setting","jit_entries":170240,"entries":170240},{"exclusive_time":125904,"id":35546928,"line":13992,"name":"","allocations":[{"count":170240,"id":29975016,"type":"Scalar","jit":170240}],"inclusive_time":125904,"file":"gen/moar/m-CORE.setting","jit_entries":170240,"entries":170240},{"exclusive_time":372306,"id":35547536,"line":14004,"name":"new","allocations":[{"count":170240,"id":53651952,"type":"<anon|352550624>","jit":170240}],"inclusive_time":679789,"file":"gen/moar/m-CORE.setting","jit_entries":170240,"entries":170240,"callees":[{"exclusive_time":205090,"id":35623536,"line":16147,"name":"of","inclusive_time":227407,"file":"gen/moar/m-CORE.setting","jit_entries":170240,"entries":170240,"callees":[{"exclusive_time":22317,"id":38396896,"line":3777,"name":"of","inclusive_time":22317,"spesh_entries":170240,"file":"gen/moar/m-Metamodel.nqp","entries":170240}]},{"exclusive_time":80075,"id":35547232,"line":13998,"name":"BUILD","inclusive_time":80075,"file":"gen/moar/m-CORE.setting","jit_entries":170240,"entries":170240}]}]},{"exclusive_time":990161,"id":35048976,"line":3840,"name":"sequential-map","allocations":[{"count":340480,"id":19706296,"type":"BOOTCode","jit":340480},{"count":510720,"id":29975016,"type":"Scalar","jit":510720}],"inclusive_time":1620370,"file":"gen/moar/m-CORE.setting","jit_entries":170240,"entries":170240,"callees":[{"exclusive_time":236215,"id":35157504,"line":6408,"name":"count","inclusive_time":250247,"file":"gen/moar/m-CORE.setting","jit_entries":170240,"entries":170240,"callees":[{"exclusive_time":14032,"id":35839376,"line":18706,"name":"count","inclusive_time":14032,"file":"gen/moar/m-CORE.setting","jit_entries":170240,"entries":170240}]},{"exclusive_time":32443,"id":34228480,"line":8515,"name":"infix:<==>","inclusive_time":32443,"file":"gen/moar/m-CORE.setting","inlined_entries":170240,"jit_entries":170240,"entries":170240},{"exclusive_time":55094,"id":35049888,"line":3847,"name":"","inclusive_time":55094,"file":"gen/moar/m-CORE.setting","jit_entries":170240,"entries":170240},{"exclusive_time":236707,"id":35147168,"line":3827,"name":"new","allocations":[{"count":510720,"id":29975016,"type":"Scalar","jit":510720},{"count":170240,"id":53654184,"type":"<anon|159066640>","jit":170240}],"inclusive_time":236707,"file":"gen/moar/m-CORE.setting","jit_entries":170240,"entries":170240},{"exclusive_time":55715,"id":35446304,"line":12399,"name":"new","allocations":[{"count":170240,"id":53654904,"type":"Seq","jit":170240}],"inclusive_time":55715,"file":"gen/moar/m-CORE.setting","jit_entries":170240,"entries":170240}]}]},{"exclusive_time":439607,"id":35446912,"line":12407,"name":"iterator","inclusive_time":535411,"file":"gen/moar/m-CORE.setting","jit_entries":170240,"entries":170240,"callees":[{"exclusive_time":14589,"id":35552400,"line":14088,"name":"sink","inclusive_time":14589,"file":"gen/moar/m-CORE.setting","jit_entries":170240,"entries":170240},{"exclusive_time":81215,"id":38361936,"line":2635,"name":"type_check","inclusive_time":81215,"file":"gen/moar/m-Metamodel.nqp","jit_entries":170240,"entries":170240}]},{"exclusive_time":252426,"id":35536896,"line":13804,"name":"from-iterator","allocations":[{"count":170240,"id":29974584,"type":"List","jit":170234},{"count":170240,"id":54157808,"type":"IterationBuffer","jit":170234},{"count":170240,"id":51227144,"type":"List::Reifier","jit":170234}],"inclusive_time":549952,"file":"gen/moar/m-CORE.setting","jit_entries":170234,"entries":170240,"callees":[{"exclusive_time":261452,"id":35546320,"line":13985,"name":"reification-target","inclusive_time":297525,"file":"gen/moar/m-CORE.setting","jit_entries":170240,"entries":170240,"callees":[{"exclusive_time":22079,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":22079,"file":"gen/moar/m-CORE.setting","jit_entries":170240,"entries":170240},{"exclusive_time":13993,"id":35552400,"line":14088,"name":"sink","inclusive_time":13993,"file":"gen/moar/m-CORE.setting","jit_entries":170240,"entries":170240}]}]},{"exclusive_time":402295,"id":35567296,"line":14247,"name":"eager","inclusive_time":103189395,"file":"gen/moar/m-CORE.setting","jit_entries":170233,"entries":170240,"callees":[{"exclusive_time":801707,"id":35594048,"line":13778,"name":"reify-all","allocations":[{"count":170240,"id":19706296,"type":"BOOTCode","jit":170223},{"count":340480,"id":29975016,"type":"Scalar","jit":340446}],"inclusive_time":102773749,"file":"gen/moar/m-CORE.setting","jit_entries":170223,"entries":170240,"callees":[{"exclusive_time":275574,"id":34958992,"line":2463,"name":"push-all","allocations":[{"count":170240,"id":29975016,"type":"Scalar","jit":170231}],"inclusive_time":101831314,"file":"gen/moar/m-CORE.setting","jit_entries":170231,"entries":170240,"callees":[{"exclusive_time":458215,"id":34958688,"line":2454,"name":"push-at-least","allocations":[{"count":170240,"id":29975016,"spesh":170233,"type":"Scalar"}],"inclusive_time":101542151,"spesh_entries":170233,"file":"gen/moar/m-CORE.setting","entries":170240,"callees":[{"exclusive_time":2754991,"id":34958080,"line":2436,"name":"push-exactly","allocations":[{"count":328320,"id":29975016,"type":"Scalar","jit":328320}],"inclusive_time":101083936,"file":"gen/moar/m-CORE.setting","deopt_one":158080,"jit_entries":170240,"entries":170240,"callees":[{"exclusive_time":4937205,"id":35050192,"line":3853,"name":"pull-one","allocations":[{"count":486400,"id":19706296,"type":"BOOTCode","jit":486400},{"count":1155200,"id":29975016,"type":"Scalar","jit":1155200}],"inclusive_time":96199194,"file":"gen/moar/m-CORE.setting","deopt_one":328320,"jit_entries":486400,"entries":486400,"callees":[{"exclusive_time":65977,"id":34255840,"line":8705,"name":"prefix:<!>","inclusive_time":65977,"file":"gen/moar/m-CORE.setting","inlined_entries":316160,"jit_entries":486400,"entries":486400},{"exclusive_time":355178,"id":35163280,"line":6478,"name":"phasers","inclusive_time":382127,"file":"gen/moar/m-CORE.setting","jit_entries":340480,"entries":340480,"callees":[{"exclusive_time":26948,"id":35552400,"line":14088,"name":"sink","inclusive_time":26948,"file":"gen/moar/m-CORE.setting","jit_entries":340480,"entries":340480}]},{"exclusive_time":139979,"id":34151264,"line":7763,"name":"prefix:<+>","inclusive_time":875395,"file":"gen/moar/m-CORE.setting","jit_entries":170240,"entries":170240,"callees":[{"exclusive_time":187819,"id":35541456,"line":13911,"name":"Numeric","inclusive_time":735416,"spesh_entries":170240,"file":"gen/moar/m-CORE.setting","entries":170240,"callees":[{"exclusive_time":502125,"id":35543584,"line":13932,"name":"elems","inclusive_time":547596,"spesh_entries":170240,"file":"gen/moar/m-CORE.setting","entries":170240,"callees":[{"exclusive_time":19167,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":19167,"file":"gen/moar/m-CORE.setting","jit_entries":170240,"entries":170240},{"exclusive_time":26303,"id":35552400,"line":14088,"name":"sink","inclusive_time":26303,"file":"gen/moar/m-CORE.setting","jit_entries":340480,"entries":340480}]}]}]},{"exclusive_time":445725,"id":34824016,"line":929,"name":"Bool","inclusive_time":950432,"spesh_entries":170240,"file":"gen/moar/m-CORE.setting","entries":170240,"callees":[{"exclusive_time":29495,"id":38067136,"line":3008,"name":"","allocations":[{"count":170240,"id":29974584,"type":"List","jit":170240}],"inclusive_time":29495,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":170240,"entries":170240},{"exclusive_time":432826,"id":35540544,"line":13904,"name":"Bool","inclusive_time":475211,"file":"gen/moar/m-CORE.setting","jit_entries":170240,"entries":170240,"callees":[{"exclusive_time":18471,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":18471,"file":"gen/moar/m-CORE.setting","jit_entries":170240,"entries":170240},{"exclusive_time":13498,"id":35552400,"line":14088,"name":"sink","inclusive_time":13498,"file":"gen/moar/m-CORE.setting","jit_entries":170240,"entries":170240},{"exclusive_time":10415,"id":34254320,"line":8699,"name":"prefix:<so>","inclusive_time":10415,"file":"gen/moar/m-CORE.setting","jit_entries":170240,"entries":170240}]}]},{"exclusive_time":81164,"id":35552400,"line":14088,"name":"sink","inclusive_time":81164,"file":"gen/moar/m-CORE.setting","jit_entries":972800,"entries":972800},{"exclusive_time":329420,"id":35547840,"line":14006,"name":"pull-one","inclusive_time":379667,"file":"gen/moar/m-CORE.setting","jit_entries":486400,"entries":486400,"callees":[{"exclusive_time":50247,"id":35548144,"line":14013,"name":"reify-and-pull-one","inclusive_time":50247,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080}]},{"exclusive_time":1008851,"id":25520320,"line":1558,"name":"infix:<=:=>","inclusive_time":4398515,"file":"gen/moar/m-CORE.setting","jit_entries":328320,"entries":328320,"callees":[{"exclusive_time":3168334,"id":38060448,"line":2048,"name":"","allocations":[{"count":656640,"id":19706296,"type":"BOOTCode"},{"count":656640,"id":19707232,"type":"NQPArray"},{"count":328320,"id":19706248,"type":"BOOTHash"}],"inclusive_time":3289089,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":328320,"callees":[{"exclusive_time":120755,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":120755,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":328320,"entries":328320}]},{"exclusive_time":100573,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":100573,"file":"gen/moar/m-CORE.setting","entries":328320}]},{"exclusive_time":1186468,"id":34691776,"line":29520,"name":"","inclusive_time":83790078,"file":"gen/moar/m-CORE.setting","deopt_one":170240,"jit_entries":328320,"entries":328320,"callees":[{"exclusive_time":368774,"id":35000944,"line":2557,"name":"pull-one","allocations":[{"count":328320,"id":19706296,"type":"BOOTCode","jit":328320}],"inclusive_time":80740250,"file":"gen/moar/m-CORE.setting","jit_entries":328320,"entries":328320,"callees":[{"exclusive_time":1299335,"id":35001552,"line":2561,"name":"","allocations":[{"count":328320,"id":29975016,"type":"Scalar","jit":328320}],"inclusive_time":80371476,"file":"gen/moar/m-CORE.setting","deopt_one":170240,"jit_entries":328320,"entries":328320,"callees":[{"exclusive_time":150420,"id":35680384,"line":16499,"name":"pull-one","allocations":[{"count":158080,"id":29974848,"spesh":158080,"type":"IntPosRef"}],"inclusive_time":150420,"spesh_entries":170240,"file":"gen/moar/m-CORE.setting","entries":170240},{"exclusive_time":446242,"id":25520320,"line":1558,"name":"infix:<=:=>","inclusive_time":1913183,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080,"callees":[{"exclusive_time":1371448,"id":38060448,"line":2048,"name":"","allocations":[{"count":316160,"id":19706296,"type":"BOOTCode"},{"count":316160,"id":19707232,"type":"NQPArray"},{"count":158080,"id":19706248,"type":"BOOTHash"}],"inclusive_time":1419331,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":158080,"callees":[{"exclusive_time":47883,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":47883,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":158080,"entries":158080}]},{"exclusive_time":47609,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":47609,"file":"gen/moar/m-CORE.setting","entries":158080}]},{"exclusive_time":737251,"id":34351296,"line":12707,"name":"pull-one","allocations":[{"count":170240,"id":29975016,"type":"Scalar","jit":170188},{"count":12160,"id":54157808,"type":"IterationBuffer","jit":12156},{"count":158080,"id":19706584,"type":"BOOTContinuation","jit":158032}],"inclusive_time":76962916,"file":"gen/moar/m-CORE.setting","deopt_one":12156,"jit_entries":158032,"entries":158080,"callees":[{"exclusive_time":1220,"id":34818544,"line":856,"name":"sink","inclusive_time":1220,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160},{"exclusive_time":46457,"id":34350384,"line":12698,"name":"","allocations":[{"count":12160,"id":19706296,"type":"BOOTCode"},{"count":12160,"id":29975016,"type":"Scalar"}],"inclusive_time":76171840,"file":"gen/moar/m-CORE.setting","entries":158080,"callees":[{"exclusive_time":190126,"id":34691168,"line":29518,"name":"","allocations":[{"count":12160,"id":19706296,"type":"BOOTCode"}],"inclusive_time":76125382,"file":"gen/moar/m-CORE.setting","entries":158080,"callees":[{"exclusive_time":1905924,"id":34691472,"line":29519,"name":"","allocations":[{"count":158080,"id":29975016,"type":"Scalar","jit":158054}],"inclusive_time":75935256,"file":"gen/moar/m-CORE.setting","jit_entries":303950,"entries":304000,"callees":[{"exclusive_time":150749,"id":38057408,"line":1621,"name":"","allocations":[{"count":158080,"id":29975160,"spesh":158080,"type":"Block"},{"count":158080,"id":19706296,"spesh":158080,"type":"BOOTCode"}],"inclusive_time":150749,"spesh_entries":158080,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":158080},{"exclusive_time":530337,"id":35045632,"line":3779,"name":"map","allocations":[{"count":316160,"id":29975016,"type":"Scalar","jit":316160}],"inclusive_time":2992701,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080,"callees":[{"exclusive_time":522317,"id":35546624,"line":13990,"name":"iterator","allocations":[{"count":158080,"id":19706296,"type":"BOOTCode","jit":158080}],"inclusive_time":1195024,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080,"callees":[{"exclusive_time":25227,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":25227,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080},{"exclusive_time":13909,"id":35552400,"line":14088,"name":"sink","inclusive_time":13909,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080},{"exclusive_time":105959,"id":35546928,"line":13992,"name":"","allocations":[{"count":158080,"id":29975016,"type":"Scalar","jit":158080}],"inclusive_time":105959,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080},{"exclusive_time":299261,"id":35547536,"line":14004,"name":"new","allocations":[{"count":158080,"id":53651952,"type":"<anon|352550624>","jit":158080}],"inclusive_time":527610,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080,"callees":[{"exclusive_time":153416,"id":35623536,"line":16147,"name":"of","inclusive_time":171654,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080,"callees":[{"exclusive_time":18238,"id":38396896,"line":3777,"name":"of","inclusive_time":18238,"spesh_entries":158080,"file":"gen/moar/m-Metamodel.nqp","entries":158080}]},{"exclusive_time":56694,"id":35547232,"line":13998,"name":"BUILD","inclusive_time":56694,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080}]}]},{"exclusive_time":783718,"id":35048976,"line":3840,"name":"sequential-map","allocations":[{"count":316160,"id":19706296,"type":"BOOTCode","jit":316160},{"count":474240,"id":29975016,"type":"Scalar","jit":474240}],"inclusive_time":1267338,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080,"callees":[{"exclusive_time":152111,"id":35157504,"line":6408,"name":"count","inclusive_time":165366,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080,"callees":[{"exclusive_time":13254,"id":35839376,"line":18706,"name":"count","inclusive_time":13254,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080}]},{"exclusive_time":27725,"id":34228480,"line":8515,"name":"infix:<==>","inclusive_time":27725,"file":"gen/moar/m-CORE.setting","inlined_entries":158080,"jit_entries":158080,"entries":158080},{"exclusive_time":49134,"id":35049888,"line":3847,"name":"","inclusive_time":49134,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080},{"exclusive_time":193427,"id":35147168,"line":3827,"name":"new","allocations":[{"count":474240,"id":29975016,"type":"Scalar","jit":474240},{"count":158080,"id":53654184,"type":"<anon|159066640>","jit":158080}],"inclusive_time":193427,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080},{"exclusive_time":47967,"id":35446304,"line":12399,"name":"new","allocations":[{"count":158080,"id":53654904,"type":"Seq","jit":158080}],"inclusive_time":47967,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080}]}]},{"exclusive_time":397372,"id":35446912,"line":12407,"name":"iterator","inclusive_time":497793,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080,"callees":[{"exclusive_time":13456,"id":35552400,"line":14088,"name":"sink","inclusive_time":13456,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080},{"exclusive_time":86964,"id":38361936,"line":2635,"name":"type_check","inclusive_time":86964,"file":"gen/moar/m-Metamodel.nqp","jit_entries":158080,"entries":158080}]},{"exclusive_time":200944,"id":35536896,"line":13804,"name":"from-iterator","allocations":[{"count":158080,"id":29974584,"type":"List","jit":158074},{"count":158080,"id":54157808,"type":"IterationBuffer","jit":158074},{"count":158080,"id":51227144,"type":"List::Reifier","jit":158074}],"inclusive_time":475605,"file":"gen/moar/m-CORE.setting","jit_entries":158074,"entries":158080,"callees":[{"exclusive_time":238728,"id":35546320,"line":13985,"name":"reification-target","inclusive_time":274660,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080,"callees":[{"exclusive_time":22764,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":22764,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080},{"exclusive_time":13168,"id":35552400,"line":14088,"name":"sink","inclusive_time":13168,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080}]}]},{"exclusive_time":361872,"id":35567296,"line":14247,"name":"eager","inclusive_time":65856215,"file":"gen/moar/m-CORE.setting","jit_entries":158073,"entries":158080,"callees":[{"exclusive_time":751790,"id":35594048,"line":13778,"name":"reify-all","allocations":[{"count":158080,"id":19706296,"type":"BOOTCode","jit":158064},{"count":316160,"id":29975016,"type":"Scalar","jit":316128}],"inclusive_time":65481830,"file":"gen/moar/m-CORE.setting","jit_entries":158064,"entries":158080,"callees":[{"exclusive_time":274137,"id":34958992,"line":2463,"name":"push-all","allocations":[{"count":158080,"id":29975016,"type":"Scalar","jit":158071}],"inclusive_time":64587994,"file":"gen/moar/m-CORE.setting","jit_entries":158071,"entries":158080,"callees":[{"exclusive_time":422692,"id":34958688,"line":2454,"name":"push-at-least","allocations":[{"count":158080,"id":29975016,"spesh":158073,"type":"Scalar"}],"inclusive_time":64300681,"spesh_entries":158073,"file":"gen/moar/m-CORE.setting","entries":158080,"callees":[{"exclusive_time":2599236,"id":34958080,"line":2436,"name":"push-exactly","allocations":[{"count":316160,"id":29975016,"type":"Scalar","jit":316160}],"inclusive_time":63877989,"file":"gen/moar/m-CORE.setting","deopt_one":158080,"jit_entries":158080,"entries":158080,"callees":[{"exclusive_time":4442098,"id":35050192,"line":3853,"name":"pull-one","allocations":[{"count":474240,"id":19706296,"type":"BOOTCode","jit":474240},{"count":1106560,"id":29975016,"type":"Scalar","jit":1106560}],"inclusive_time":59159088,"file":"gen/moar/m-CORE.setting","deopt_one":158080,"jit_entries":474240,"entries":474240,"callees":[{"exclusive_time":61984,"id":34255840,"line":8705,"name":"prefix:<!>","inclusive_time":61984,"file":"gen/moar/m-CORE.setting","inlined_entries":316160,"jit_entries":474240,"entries":474240},{"exclusive_time":313509,"id":35163280,"line":6478,"name":"phasers","inclusive_time":337878,"file":"gen/moar/m-CORE.setting","jit_entries":316160,"entries":316160,"callees":[{"exclusive_time":24369,"id":35552400,"line":14088,"name":"sink","inclusive_time":24369,"file":"gen/moar/m-CORE.setting","jit_entries":316160,"entries":316160}]},{"exclusive_time":117439,"id":34151264,"line":7763,"name":"prefix:<+>","inclusive_time":794647,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080,"callees":[{"exclusive_time":167511,"id":35541456,"line":13911,"name":"Numeric","inclusive_time":677208,"spesh_entries":158080,"file":"gen/moar/m-CORE.setting","entries":158080,"callees":[{"exclusive_time":468120,"id":35543584,"line":13932,"name":"elems","inclusive_time":509696,"spesh_entries":158080,"file":"gen/moar/m-CORE.setting","entries":158080,"callees":[{"exclusive_time":17481,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":17481,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080},{"exclusive_time":24094,"id":35552400,"line":14088,"name":"sink","inclusive_time":24094,"file":"gen/moar/m-CORE.setting","jit_entries":316160,"entries":316160}]}]}]},{"exclusive_time":392203,"id":34824016,"line":929,"name":"Bool","inclusive_time":807281,"spesh_entries":158080,"file":"gen/moar/m-CORE.setting","entries":158080,"callees":[{"exclusive_time":26679,"id":38067136,"line":3008,"name":"","allocations":[{"count":158080,"id":29974584,"type":"List","jit":158080}],"inclusive_time":26679,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":158080,"entries":158080},{"exclusive_time":350360,"id":35540544,"line":13904,"name":"Bool","inclusive_time":388398,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080,"callees":[{"exclusive_time":16562,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":16562,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080},{"exclusive_time":12254,"id":35552400,"line":14088,"name":"sink","inclusive_time":12254,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080},{"exclusive_time":9220,"id":34254320,"line":8699,"name":"prefix:<so>","inclusive_time":9220,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080}]}]},{"exclusive_time":79562,"id":35552400,"line":14088,"name":"sink","inclusive_time":79562,"file":"gen/moar/m-CORE.setting","jit_entries":948480,"entries":948480},{"exclusive_time":323283,"id":35547840,"line":14006,"name":"pull-one","inclusive_time":375950,"file":"gen/moar/m-CORE.setting","jit_entries":474240,"entries":474240,"callees":[{"exclusive_time":52667,"id":35548144,"line":14013,"name":"reify-and-pull-one","inclusive_time":52667,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080}]},{"exclusive_time":973846,"id":25520320,"line":1558,"name":"infix:<=:=>","inclusive_time":4302411,"file":"gen/moar/m-CORE.setting","jit_entries":316160,"entries":316160,"callees":[{"exclusive_time":3118029,"id":38060448,"line":2048,"name":"","allocations":[{"count":632320,"id":19706296,"type":"BOOTCode"},{"count":632320,"id":19707232,"type":"NQPArray"},{"count":316160,"id":19706248,"type":"BOOTHash"}],"inclusive_time":3233567,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":316160,"callees":[{"exclusive_time":115537,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":115537,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":316160,"entries":316160}]},{"exclusive_time":94997,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":94997,"file":"gen/moar/m-CORE.setting","entries":316160}]},{"exclusive_time":1124751,"id":34691776,"line":29520,"name":"","inclusive_time":47623093,"file":"gen/moar/m-CORE.setting","deopt_one":158080,"jit_entries":316160,"entries":316160,"callees":[{"exclusive_time":335857,"id":35000944,"line":2557,"name":"pull-one","allocations":[{"count":316160,"id":19706296,"type":"BOOTCode","jit":316160}],"inclusive_time":44697553,"file":"gen/moar/m-CORE.setting","jit_entries":316160,"entries":316160,"callees":[{"exclusive_time":1235124,"id":35001552,"line":2561,"name":"","allocations":[{"count":316160,"id":29975016,"type":"Scalar","jit":316160}],"inclusive_time":44361695,"file":"gen/moar/m-CORE.setting","deopt_one":158080,"jit_entries":316160,"entries":316160,"callees":[{"exclusive_time":738162,"id":34351296,"line":12707,"name":"pull-one","allocations":[{"count":170240,"id":29975016,"type":"Scalar","jit":170188},{"count":12160,"id":54157808,"type":"IterationBuffer","jit":12156},{"count":158080,"id":19706584,"type":"BOOTContinuation","jit":158032}],"inclusive_time":41078810,"file":"gen/moar/m-CORE.setting","deopt_one":12156,"jit_entries":158032,"entries":158080,"callees":[{"exclusive_time":1255,"id":34818544,"line":856,"name":"sink","inclusive_time":1255,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160},{"exclusive_time":45858,"id":34350384,"line":12698,"name":"","allocations":[{"count":12160,"id":19706296,"type":"BOOTCode"},{"count":12160,"id":29975016,"type":"Scalar"}],"inclusive_time":40257550,"file":"gen/moar/m-CORE.setting","entries":158080,"callees":[{"exclusive_time":188807,"id":34691168,"line":29518,"name":"","allocations":[{"count":12160,"id":19706296,"type":"BOOTCode"}],"inclusive_time":40211692,"file":"gen/moar/m-CORE.setting","entries":158080,"callees":[{"exclusive_time":2071139,"id":34691472,"line":29519,"name":"","allocations":[{"count":158080,"id":29975016,"type":"Scalar","jit":158054}],"inclusive_time":40022884,"file":"gen/moar/m-CORE.setting","jit_entries":303950,"entries":304000,"callees":[{"exclusive_time":146203,"id":38057408,"line":1621,"name":"","allocations":[{"count":158080,"id":29975160,"spesh":158080,"type":"Block"},{"count":158080,"id":19706296,"spesh":158080,"type":"BOOTCode"}],"inclusive_time":146203,"spesh_entries":158080,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":158080},{"exclusive_time":514550,"id":35045632,"line":3779,"name":"map","allocations":[{"count":316160,"id":29975016,"type":"Scalar","jit":316160}],"inclusive_time":2904471,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080,"callees":[{"exclusive_time":545427,"id":35546624,"line":13990,"name":"iterator","allocations":[{"count":158080,"id":19706296,"type":"BOOTCode","jit":158080}],"inclusive_time":1195873,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080,"callees":[{"exclusive_time":25683,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":25683,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080},{"exclusive_time":13870,"id":35552400,"line":14088,"name":"sink","inclusive_time":13870,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080},{"exclusive_time":108509,"id":35546928,"line":13992,"name":"","allocations":[{"count":158080,"id":29975016,"type":"Scalar","jit":158080}],"inclusive_time":108509,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080},{"exclusive_time":289240,"id":35547536,"line":14004,"name":"new","allocations":[{"count":158080,"id":53651952,"type":"<anon|352550624>","jit":158080}],"inclusive_time":502383,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080,"callees":[{"exclusive_time":140230,"id":35623536,"line":16147,"name":"of","inclusive_time":158377,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080,"callees":[{"exclusive_time":18146,"id":38396896,"line":3777,"name":"of","inclusive_time":18146,"spesh_entries":158080,"file":"gen/moar/m-Metamodel.nqp","entries":158080}]},{"exclusive_time":54765,"id":35547232,"line":13998,"name":"BUILD","inclusive_time":54765,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080}]}]},{"exclusive_time":752247,"id":35048976,"line":3840,"name":"sequential-map","allocations":[{"count":316160,"id":19706296,"type":"BOOTCode","jit":316160},{"count":474240,"id":29975016,"type":"Scalar","jit":474240}],"inclusive_time":1194048,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080,"callees":[{"exclusive_time":138440,"id":35157504,"line":6408,"name":"count","inclusive_time":151857,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080,"callees":[{"exclusive_time":13416,"id":35839376,"line":18706,"name":"count","inclusive_time":13416,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080}]},{"exclusive_time":27000,"id":34228480,"line":8515,"name":"infix:<==>","inclusive_time":27000,"file":"gen/moar/m-CORE.setting","inlined_entries":158080,"jit_entries":158080,"entries":158080},{"exclusive_time":47531,"id":35049888,"line":3847,"name":"","inclusive_time":47531,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080},{"exclusive_time":169865,"id":35147168,"line":3827,"name":"new","allocations":[{"count":474240,"id":29975016,"type":"Scalar","jit":474240},{"count":158080,"id":53654184,"type":"<anon|159066640>","jit":158080}],"inclusive_time":169865,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080},{"exclusive_time":45545,"id":35446304,"line":12399,"name":"new","allocations":[{"count":158080,"id":53654904,"type":"Seq","jit":158080}],"inclusive_time":45545,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080}]}]},{"exclusive_time":379017,"id":35446912,"line":12407,"name":"iterator","inclusive_time":473969,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080,"callees":[{"exclusive_time":13484,"id":35552400,"line":14088,"name":"sink","inclusive_time":13484,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080},{"exclusive_time":81467,"id":38361936,"line":2635,"name":"type_check","inclusive_time":81467,"file":"gen/moar/m-Metamodel.nqp","jit_entries":158080,"entries":158080}]},{"exclusive_time":194939,"id":35536896,"line":13804,"name":"from-iterator","allocations":[{"count":158080,"id":29974584,"type":"List","jit":158074},{"count":158080,"id":54157808,"type":"IterationBuffer","jit":158074},{"count":158080,"id":51227144,"type":"List::Reifier","jit":158074}],"inclusive_time":463000,"file":"gen/moar/m-CORE.setting","jit_entries":158074,"entries":158080,"callees":[{"exclusive_time":232833,"id":35546320,"line":13985,"name":"reification-target","inclusive_time":268060,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080,"callees":[{"exclusive_time":22136,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":22136,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080},{"exclusive_time":13090,"id":35552400,"line":14088,"name":"sink","inclusive_time":13090,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080}]}]},{"exclusive_time":357785,"id":35567296,"line":14247,"name":"eager","inclusive_time":29554094,"file":"gen/moar/m-CORE.setting","jit_entries":158073,"entries":158080,"callees":[{"exclusive_time":753297,"id":35594048,"line":13778,"name":"reify-all","allocations":[{"count":158080,"id":19706296,"type":"BOOTCode","jit":158064},{"count":316160,"id":29975016,"type":"Scalar","jit":316128}],"inclusive_time":29184095,"file":"gen/moar/m-CORE.setting","jit_entries":158064,"entries":158080,"callees":[{"exclusive_time":244275,"id":34958992,"line":2463,"name":"push-all","allocations":[{"count":158080,"id":29975016,"type":"Scalar","jit":158071}],"inclusive_time":28288170,"file":"gen/moar/m-CORE.setting","jit_entries":158071,"entries":158080,"callees":[{"exclusive_time":420456,"id":34958688,"line":2454,"name":"push-at-least","allocations":[{"count":158080,"id":29975016,"spesh":158073,"type":"Scalar"}],"inclusive_time":28028974,"spesh_entries":158073,"file":"gen/moar/m-CORE.setting","entries":158080,"callees":[{"exclusive_time":2634482,"id":34958080,"line":2436,"name":"push-exactly","allocations":[{"count":316160,"id":29975016,"type":"Scalar","jit":316160}],"inclusive_time":27608518,"file":"gen/moar/m-CORE.setting","deopt_one":158080,"jit_entries":158080,"entries":158080,"callees":[{"exclusive_time":4514829,"id":35050192,"line":3853,"name":"pull-one","allocations":[{"count":474240,"id":19706296,"type":"BOOTCode","jit":474240},{"count":1106560,"id":29975016,"type":"Scalar","jit":1106560}],"inclusive_time":21080085,"file":"gen/moar/m-CORE.setting","deopt_one":158080,"jit_entries":474240,"entries":474240,"callees":[{"exclusive_time":62134,"id":34255840,"line":8705,"name":"prefix:<!>","inclusive_time":62134,"file":"gen/moar/m-CORE.setting","inlined_entries":316160,"jit_entries":474240,"entries":474240},{"exclusive_time":312547,"id":35163280,"line":6478,"name":"phasers","inclusive_time":336798,"file":"gen/moar/m-CORE.setting","jit_entries":316160,"entries":316160,"callees":[{"exclusive_time":24250,"id":35552400,"line":14088,"name":"sink","inclusive_time":24250,"file":"gen/moar/m-CORE.setting","jit_entries":316160,"entries":316160}]},{"exclusive_time":117476,"id":34151264,"line":7763,"name":"prefix:<+>","inclusive_time":815106,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080,"callees":[{"exclusive_time":163223,"id":35541456,"line":13911,"name":"Numeric","inclusive_time":697630,"spesh_entries":158080,"file":"gen/moar/m-CORE.setting","entries":158080,"callees":[{"exclusive_time":491887,"id":35543584,"line":13932,"name":"elems","inclusive_time":534407,"spesh_entries":158080,"file":"gen/moar/m-CORE.setting","entries":158080,"callees":[{"exclusive_time":18416,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":18416,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080},{"exclusive_time":24103,"id":35552400,"line":14088,"name":"sink","inclusive_time":24103,"file":"gen/moar/m-CORE.setting","jit_entries":316160,"entries":316160}]}]}]},{"exclusive_time":366781,"id":34824016,"line":929,"name":"Bool","inclusive_time":773972,"spesh_entries":158080,"file":"gen/moar/m-CORE.setting","entries":158080,"callees":[{"exclusive_time":23339,"id":38067136,"line":3008,"name":"","allocations":[{"count":158080,"id":29974584,"type":"List","jit":158080}],"inclusive_time":23339,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":158080,"entries":158080},{"exclusive_time":345438,"id":35540544,"line":13904,"name":"Bool","inclusive_time":383851,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080,"callees":[{"exclusive_time":16437,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":16437,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080},{"exclusive_time":12758,"id":35552400,"line":14088,"name":"sink","inclusive_time":12758,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080},{"exclusive_time":9216,"id":34254320,"line":8699,"name":"prefix:<so>","inclusive_time":9216,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080}]}]},{"exclusive_time":83909,"id":35552400,"line":14088,"name":"sink","inclusive_time":83909,"file":"gen/moar/m-CORE.setting","jit_entries":948480,"entries":948480},{"exclusive_time":331464,"id":35547840,"line":14006,"name":"pull-one","inclusive_time":401201,"file":"gen/moar/m-CORE.setting","jit_entries":474240,"entries":474240,"callees":[{"exclusive_time":69736,"id":35548144,"line":14013,"name":"reify-and-pull-one","inclusive_time":69736,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080}]},{"exclusive_time":945119,"id":25520320,"line":1558,"name":"infix:<=:=>","inclusive_time":4065523,"file":"gen/moar/m-CORE.setting","jit_entries":316160,"entries":316160,"callees":[{"exclusive_time":2922489,"id":38060448,"line":2048,"name":"","allocations":[{"count":632320,"id":19706296,"type":"BOOTCode"},{"count":632320,"id":19707232,"type":"NQPArray"},{"count":316160,"id":19706248,"type":"BOOTHash"}],"inclusive_time":3025925,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":316160,"callees":[{"exclusive_time":103435,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":103435,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":316160,"entries":316160}]},{"exclusive_time":94478,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":94478,"file":"gen/moar/m-CORE.setting","entries":316160}]},{"exclusive_time":890880,"id":34691776,"line":29520,"name":"","inclusive_time":9662085,"file":"gen/moar/m-CORE.setting","jit_entries":316160,"entries":316160,"callees":[{"exclusive_time":342804,"id":35000944,"line":2557,"name":"pull-one","allocations":[{"count":316160,"id":19706296,"type":"BOOTCode","jit":316160}],"inclusive_time":5260359,"file":"gen/moar/m-CORE.setting","jit_entries":316160,"entries":316160,"callees":[{"exclusive_time":903057,"id":35001552,"line":2561,"name":"","allocations":[{"count":316160,"id":29975016,"type":"Scalar","jit":316160}],"inclusive_time":4917555,"file":"gen/moar/m-CORE.setting","jit_entries":316160,"entries":316160,"callees":[{"exclusive_time":255729,"id":35680384,"line":16499,"name":"pull-one","allocations":[{"count":316160,"id":29974848,"spesh":316160,"type":"IntPosRef"}],"inclusive_time":255729,"spesh_entries":316160,"file":"gen/moar/m-CORE.setting","entries":316160},{"exclusive_time":883171,"id":25520320,"line":1558,"name":"infix:<=:=>","inclusive_time":3758768,"file":"gen/moar/m-CORE.setting","jit_entries":316160,"entries":316160,"callees":[{"exclusive_time":2691173,"id":38060448,"line":2048,"name":"","allocations":[{"count":632320,"id":19706296,"type":"BOOTCode"},{"count":632320,"id":19707232,"type":"NQPArray"},{"count":316160,"id":19706248,"type":"BOOTHash"}],"inclusive_time":2782231,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":316160,"callees":[{"exclusive_time":91058,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":91058,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":316160,"entries":316160}]},{"exclusive_time":93365,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":93365,"file":"gen/moar/m-CORE.setting","entries":316160}]}]}]},{"exclusive_time":778301,"id":25520320,"line":1558,"name":"infix:<=:=>","inclusive_time":3482163,"file":"gen/moar/m-CORE.setting","jit_entries":316160,"entries":316160,"callees":[{"exclusive_time":2529615,"id":38060448,"line":2048,"name":"","allocations":[{"count":632320,"id":19706296,"type":"BOOTCode"},{"count":632320,"id":19707232,"type":"NQPArray"},{"count":316160,"id":19706248,"type":"BOOTHash"}],"inclusive_time":2614947,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":316160,"callees":[{"exclusive_time":85332,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":85332,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":316160,"entries":316160}]},{"exclusive_time":88913,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":88913,"file":"gen/moar/m-CORE.setting","entries":316160}]},{"exclusive_time":28681,"id":35552400,"line":14088,"name":"sink","inclusive_time":28681,"file":"gen/moar/m-CORE.setting","jit_entries":316160,"entries":316160}]},{"exclusive_time":16482,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":16482,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080},{"exclusive_time":55365,"id":34818544,"line":856,"name":"sink","inclusive_time":55365,"file":"gen/moar/m-CORE.setting","entries":158080},{"exclusive_time":254953,"id":35162368,"line":6469,"name":"fire_phasers","allocations":[{"count":158080,"id":19706296,"spesh":158080,"type":"BOOTCode"}],"inclusive_time":292677,"spesh_entries":158080,"file":"gen/moar/m-CORE.setting","entries":158080,"callees":[{"exclusive_time":37724,"id":34255840,"line":8705,"name":"prefix:<!>","inclusive_time":37724,"spesh_entries":158080,"file":"gen/moar/m-CORE.setting","inlined_entries":158080,"entries":158080}]}]},{"exclusive_time":808868,"id":25520320,"line":1558,"name":"infix:<=:=>","inclusive_time":3537661,"file":"gen/moar/m-CORE.setting","jit_entries":316160,"entries":316160,"callees":[{"exclusive_time":2554164,"id":38060448,"line":2048,"name":"","allocations":[{"count":632320,"id":19706296,"type":"BOOTCode"},{"count":632320,"id":19707232,"type":"NQPArray"},{"count":316160,"id":19706248,"type":"BOOTHash"}],"inclusive_time":2639757,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":316160,"callees":[{"exclusive_time":85592,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":85592,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":316160,"entries":316160}]},{"exclusive_time":89035,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":89035,"file":"gen/moar/m-CORE.setting","entries":316160}]},{"exclusive_time":62875,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":62875,"file":"gen/moar/m-CORE.setting","jit_entries":474240,"entries":474240},{"exclusive_time":281982,"id":35438704,"line":12283,"name":"push","inclusive_time":281982,"file":"gen/moar/m-CORE.setting","entries":316160},{"exclusive_time":11430,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":11430,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080}]}]},{"exclusive_time":14921,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":14921,"file":"gen/moar/m-CORE.setting","inlined_entries":158071,"jit_entries":158080,"entries":158080}]},{"exclusive_time":51370,"id":34818544,"line":856,"name":"sink","inclusive_time":51370,"file":"gen/moar/m-CORE.setting","entries":158080},{"exclusive_time":78316,"id":38361936,"line":2635,"name":"type_check","inclusive_time":78316,"file":"gen/moar/m-Metamodel.nqp","jit_entries":158080,"entries":158080},{"exclusive_time":12939,"id":35552400,"line":14088,"name":"sink","inclusive_time":12939,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080}]},{"exclusive_time":12213,"id":34818544,"line":856,"name":"sink","inclusive_time":12213,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080}]},{"exclusive_time":30538,"id":35552400,"line":14088,"name":"sink","inclusive_time":30538,"file":"gen/moar/m-CORE.setting","jit_entries":316160,"entries":316160},{"exclusive_time":857276,"id":35543584,"line":13932,"name":"elems","allocations":[{"count":158080,"id":29975016,"spesh":158054,"type":"Scalar","jit":26}],"inclusive_time":1384860,"spesh_entries":158054,"file":"gen/moar/m-CORE.setting","jit_entries":26,"entries":158080,"callees":[{"exclusive_time":22682,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":22682,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080},{"exclusive_time":12541,"id":35552400,"line":14088,"name":"sink","inclusive_time":12541,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080},{"exclusive_time":331356,"id":35591616,"line":13753,"name":"reify-until-lazy","allocations":[{"count":158080,"id":19706296,"type":"BOOTCode","jit":158080}],"inclusive_time":354943,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080,"callees":[{"exclusive_time":23587,"id":35552400,"line":14088,"name":"sink","inclusive_time":23587,"file":"gen/moar/m-CORE.setting","jit_entries":316160,"entries":316160}]},{"exclusive_time":12287,"id":34818544,"line":856,"name":"sink","inclusive_time":12287,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080},{"exclusive_time":94062,"id":35595264,"line":13795,"name":"fully-reified","inclusive_time":125129,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080,"callees":[{"exclusive_time":31066,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":31066,"file":"gen/moar/m-CORE.setting","inlined_entries":316160,"jit_entries":316160,"entries":316160}]}]},{"exclusive_time":28472,"id":34229392,"line":8526,"name":"infix:«<»","inclusive_time":28472,"file":"gen/moar/m-CORE.setting","inlined_entries":158054,"jit_entries":158080,"entries":158080},{"exclusive_time":21082,"id":34228480,"line":8515,"name":"infix:<==>","inclusive_time":21082,"file":"gen/moar/m-CORE.setting","inlined_entries":158054,"jit_entries":158080,"entries":158080},{"exclusive_time":325376,"id":35568208,"line":14273,"name":"FLATTENABLE_LIST","inclusive_time":367593,"file":"gen/moar/m-CORE.setting","jit_entries":158063,"entries":158080,"callees":[{"exclusive_time":19152,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":19152,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080},{"exclusive_time":23064,"id":35552400,"line":14088,"name":"sink","inclusive_time":23064,"file":"gen/moar/m-CORE.setting","jit_entries":316160,"entries":316160}]},{"exclusive_time":19704,"id":35568512,"line":14278,"name":"FLATTENABLE_HASH","allocations":[{"count":158080,"id":19706248,"type":"BOOTHash","jit":158075}],"inclusive_time":19704,"file":"gen/moar/m-CORE.setting","jit_entries":158075,"entries":158080},{"exclusive_time":453177,"id":34206592,"line":8023,"name":"infix:<+^>","inclusive_time":562788,"file":"gen/moar/m-CORE.setting","entries":158080,"callees":[{"exclusive_time":109611,"id":34233344,"line":8571,"name":"infix:<+^>","inclusive_time":109611,"file":"gen/moar/m-CORE.setting","entries":158080}]},{"exclusive_time":226641,"id":25498128,"line":633,"name":"take-rw","inclusive_time":1980095,"file":"gen/moar/m-CORE.setting","jit_entries":303990,"entries":304000,"callees":[{"exclusive_time":264645,"id":25496000,"line":596,"name":"THROW","allocations":[{"count":158080,"id":19706488,"spesh":158080,"type":"BOOTException"}],"inclusive_time":1753454,"spesh_entries":304000,"file":"gen/moar/m-CORE.setting","entries":304000,"callees":[{"exclusive_time":295152,"id":34350992,"line":-1,"name":"","allocations":[{"count":316160,"id":29974944,"spesh":316160,"type":"Int"}],"inclusive_time":1488809,"spesh_entries":304000,"file":"/usr/local/src/rakudo/install/share/perl6/runtime/CORE.setting.moarvm","entries":304000,"callees":[{"exclusive_time":948802,"id":34349776,"line":12680,"name":"","inclusive_time":1193657,"file":"gen/moar/m-CORE.setting","entries":304000,"callees":[{"exclusive_time":104637,"id":35438704,"line":12283,"name":"push","inclusive_time":104637,"file":"gen/moar/m-CORE.setting","entries":158080},{"exclusive_time":140217,"id":38057408,"line":1621,"name":"","allocations":[{"count":158080,"id":29975160,"spesh":158080,"type":"Block"},{"count":158080,"id":19706296,"spesh":158080,"type":"BOOTCode"}],"inclusive_time":140217,"spesh_entries":158080,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":158080}]}]}]}]},{"exclusive_time":14870,"id":34818544,"line":856,"name":"sink","inclusive_time":14870,"file":"gen/moar/m-CORE.setting","jit_entries":145920,"entries":145920}]}]}]},{"exclusive_time":67546,"id":34350080,"line":12692,"name":"","inclusive_time":67546,"file":"gen/moar/m-CORE.setting","jit_entries":158075,"entries":158080},{"exclusive_time":14294,"id":35552400,"line":14088,"name":"sink","inclusive_time":14294,"file":"gen/moar/m-CORE.setting","jit_entries":145920,"entries":145920}]},{"exclusive_time":44615,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":44615,"file":"gen/moar/m-CORE.setting","entries":158080},{"exclusive_time":133031,"id":35680384,"line":16499,"name":"pull-one","allocations":[{"count":158080,"id":29974848,"spesh":158080,"type":"IntPosRef"}],"inclusive_time":133031,"spesh_entries":158080,"file":"gen/moar/m-CORE.setting","entries":158080},{"exclusive_time":422568,"id":25520320,"line":1558,"name":"infix:<=:=>","inclusive_time":1870113,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080,"callees":[{"exclusive_time":1355974,"id":38060448,"line":2048,"name":"","allocations":[{"count":316160,"id":19706296,"type":"BOOTCode"},{"count":316160,"id":19707232,"type":"NQPArray"},{"count":158080,"id":19706248,"type":"BOOTHash"}],"inclusive_time":1401897,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":158080,"callees":[{"exclusive_time":45923,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":45923,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":158080,"entries":158080}]},{"exclusive_time":45647,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":45647,"file":"gen/moar/m-CORE.setting","entries":158080}]}]}]},{"exclusive_time":32993,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":32993,"file":"gen/moar/m-CORE.setting","entries":158080},{"exclusive_time":30299,"id":35552400,"line":14088,"name":"sink","inclusive_time":30299,"file":"gen/moar/m-CORE.setting","jit_entries":316160,"entries":316160},{"exclusive_time":382150,"id":25520320,"line":1558,"name":"infix:<=:=>","inclusive_time":1737495,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080,"callees":[{"exclusive_time":1269067,"id":38060448,"line":2048,"name":"","allocations":[{"count":316160,"id":19706296,"type":"BOOTCode"},{"count":316160,"id":19707232,"type":"NQPArray"},{"count":158080,"id":19706248,"type":"BOOTHash"}],"inclusive_time":1312887,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":158080,"callees":[{"exclusive_time":43819,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":43819,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":158080,"entries":158080}]},{"exclusive_time":42457,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":42457,"file":"gen/moar/m-CORE.setting","entries":158080}]}]},{"exclusive_time":15704,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":15704,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080},{"exclusive_time":54458,"id":34818544,"line":856,"name":"sink","inclusive_time":54458,"file":"gen/moar/m-CORE.setting","entries":158080},{"exclusive_time":226834,"id":35162368,"line":6469,"name":"fire_phasers","allocations":[{"count":158080,"id":19706296,"spesh":158080,"type":"BOOTCode"}],"inclusive_time":264016,"spesh_entries":158080,"file":"gen/moar/m-CORE.setting","entries":158080,"callees":[{"exclusive_time":37181,"id":34255840,"line":8705,"name":"prefix:<!>","inclusive_time":37181,"spesh_entries":158080,"file":"gen/moar/m-CORE.setting","inlined_entries":158080,"entries":158080}]}]},{"exclusive_time":45350,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":45350,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":316160},{"exclusive_time":58824,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":58824,"file":"gen/moar/m-CORE.setting","jit_entries":474240,"entries":474240},{"exclusive_time":243484,"id":35438704,"line":12283,"name":"push","inclusive_time":243484,"file":"gen/moar/m-CORE.setting","entries":316160},{"exclusive_time":400239,"id":25520320,"line":1558,"name":"infix:<=:=>","inclusive_time":1772004,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080,"callees":[{"exclusive_time":1284723,"id":38060448,"line":2048,"name":"","allocations":[{"count":316160,"id":19706296,"type":"BOOTCode"},{"count":316160,"id":19707232,"type":"NQPArray"},{"count":158080,"id":19706248,"type":"BOOTHash"}],"inclusive_time":1328803,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":158080,"callees":[{"exclusive_time":44080,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":44080,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":158080,"entries":158080}]},{"exclusive_time":42962,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":42962,"file":"gen/moar/m-CORE.setting","entries":158080}]}]}]},{"exclusive_time":13174,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":13174,"file":"gen/moar/m-CORE.setting","inlined_entries":158071,"jit_entries":158080,"entries":158080}]},{"exclusive_time":50248,"id":34818544,"line":856,"name":"sink","inclusive_time":50248,"file":"gen/moar/m-CORE.setting","entries":158080},{"exclusive_time":78748,"id":38361936,"line":2635,"name":"type_check","inclusive_time":78748,"file":"gen/moar/m-Metamodel.nqp","jit_entries":158080,"entries":158080},{"exclusive_time":13048,"id":35552400,"line":14088,"name":"sink","inclusive_time":13048,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080}]},{"exclusive_time":12512,"id":34818544,"line":856,"name":"sink","inclusive_time":12512,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080}]},{"exclusive_time":25539,"id":35552400,"line":14088,"name":"sink","inclusive_time":25539,"file":"gen/moar/m-CORE.setting","jit_entries":316160,"entries":316160},{"exclusive_time":799124,"id":35543584,"line":13932,"name":"elems","allocations":[{"count":158080,"id":29975016,"spesh":158054,"type":"Scalar","jit":26}],"inclusive_time":1287814,"spesh_entries":158054,"file":"gen/moar/m-CORE.setting","jit_entries":26,"entries":158080,"callees":[{"exclusive_time":22219,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":22219,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080},{"exclusive_time":12657,"id":35552400,"line":14088,"name":"sink","inclusive_time":12657,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080},{"exclusive_time":304311,"id":35591616,"line":13753,"name":"reify-until-lazy","allocations":[{"count":158080,"id":19706296,"type":"BOOTCode","jit":158080}],"inclusive_time":329460,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080,"callees":[{"exclusive_time":25149,"id":35552400,"line":14088,"name":"sink","inclusive_time":25149,"file":"gen/moar/m-CORE.setting","jit_entries":316160,"entries":316160}]},{"exclusive_time":12129,"id":34818544,"line":856,"name":"sink","inclusive_time":12129,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080},{"exclusive_time":81826,"id":35595264,"line":13795,"name":"fully-reified","inclusive_time":112221,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080,"callees":[{"exclusive_time":30395,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":30395,"file":"gen/moar/m-CORE.setting","inlined_entries":316160,"jit_entries":316160,"entries":316160}]}]},{"exclusive_time":24332,"id":34229392,"line":8526,"name":"infix:«<»","inclusive_time":24332,"file":"gen/moar/m-CORE.setting","inlined_entries":158054,"jit_entries":158080,"entries":158080},{"exclusive_time":16272,"id":34228480,"line":8515,"name":"infix:<==>","inclusive_time":16272,"file":"gen/moar/m-CORE.setting","inlined_entries":158054,"jit_entries":158080,"entries":158080},{"exclusive_time":299493,"id":35568208,"line":14273,"name":"FLATTENABLE_LIST","inclusive_time":343459,"file":"gen/moar/m-CORE.setting","jit_entries":158063,"entries":158080,"callees":[{"exclusive_time":20722,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":20722,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080},{"exclusive_time":23243,"id":35552400,"line":14088,"name":"sink","inclusive_time":23243,"file":"gen/moar/m-CORE.setting","jit_entries":316160,"entries":316160}]},{"exclusive_time":17748,"id":35568512,"line":14278,"name":"FLATTENABLE_HASH","allocations":[{"count":158080,"id":19706248,"type":"BOOTHash","jit":158076}],"inclusive_time":17748,"file":"gen/moar/m-CORE.setting","jit_entries":158076,"entries":158080},{"exclusive_time":404165,"id":34204160,"line":8013,"name":"infix:<+&>","inclusive_time":599800,"file":"gen/moar/m-CORE.setting","entries":158080,"callees":[{"exclusive_time":14,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"spesh":2,"type":"BOOTCode"},{"count":2,"id":19707232,"spesh":2,"type":"NQPArray"},{"count":1,"id":19706248,"spesh":1,"type":"BOOTHash"}],"inclusive_time":15,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":195619,"id":34232432,"line":8561,"name":"infix:<+&>","allocations":[{"count":158080,"id":29974944,"type":"Int"}],"inclusive_time":195619,"file":"gen/moar/m-CORE.setting","entries":158080}]},{"exclusive_time":192579,"id":25498128,"line":633,"name":"take-rw","inclusive_time":1726963,"file":"gen/moar/m-CORE.setting","jit_entries":303990,"entries":304000,"callees":[{"exclusive_time":232068,"id":25496000,"line":596,"name":"THROW","allocations":[{"count":158080,"id":19706488,"spesh":158080,"type":"BOOTException"}],"inclusive_time":1534383,"spesh_entries":304000,"file":"gen/moar/m-CORE.setting","entries":304000,"callees":[{"exclusive_time":256006,"id":34350992,"line":-1,"name":"","allocations":[{"count":316160,"id":29974944,"spesh":316160,"type":"Int"}],"inclusive_time":1302315,"spesh_entries":304000,"file":"/usr/local/src/rakudo/install/share/perl6/runtime/CORE.setting.moarvm","entries":304000,"callees":[{"exclusive_time":815599,"id":34349776,"line":12680,"name":"","inclusive_time":1046308,"file":"gen/moar/m-CORE.setting","entries":304000,"callees":[{"exclusive_time":96032,"id":35438704,"line":12283,"name":"push","inclusive_time":96032,"file":"gen/moar/m-CORE.setting","entries":158080},{"exclusive_time":134677,"id":38057408,"line":1621,"name":"","allocations":[{"count":158080,"id":29975160,"spesh":158080,"type":"Block"},{"count":158080,"id":19706296,"spesh":158080,"type":"BOOTCode"}],"inclusive_time":134677,"spesh_entries":158080,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":158080}]}]}]}]},{"exclusive_time":14335,"id":34818544,"line":856,"name":"sink","inclusive_time":14335,"file":"gen/moar/m-CORE.setting","jit_entries":145920,"entries":145920}]}]}]},{"exclusive_time":38871,"id":34350080,"line":12692,"name":"","inclusive_time":38871,"file":"gen/moar/m-CORE.setting","jit_entries":158076,"entries":158080},{"exclusive_time":13733,"id":35552400,"line":14088,"name":"sink","inclusive_time":13733,"file":"gen/moar/m-CORE.setting","jit_entries":145920,"entries":145920}]},{"exclusive_time":45619,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":45619,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":170240}]}]},{"exclusive_time":374545,"id":25520320,"line":1558,"name":"infix:<=:=>","inclusive_time":1733181,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080,"callees":[{"exclusive_time":1270384,"id":38060448,"line":2048,"name":"","allocations":[{"count":316160,"id":19706296,"type":"BOOTCode"},{"count":316160,"id":19707232,"type":"NQPArray"},{"count":158080,"id":19706248,"type":"BOOTHash"}],"inclusive_time":1312731,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":158080,"callees":[{"exclusive_time":42347,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":42347,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":158080,"entries":158080}]},{"exclusive_time":45905,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":45905,"file":"gen/moar/m-CORE.setting","entries":158080}]},{"exclusive_time":30058,"id":35552400,"line":14088,"name":"sink","inclusive_time":30058,"file":"gen/moar/m-CORE.setting","jit_entries":316160,"entries":316160},{"exclusive_time":33588,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":33588,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":170240},{"exclusive_time":19857,"id":25500864,"line":655,"name":"last","inclusive_time":66530,"file":"gen/moar/m-CORE.setting","jit_entries":12140,"entries":12160,"callees":[{"exclusive_time":27976,"id":25496304,"line":603,"name":"THROW-NIL","allocations":[{"count":12160,"id":19706488,"spesh":12140,"type":"BOOTException"}],"inclusive_time":46672,"spesh_entries":12140,"file":"gen/moar/m-CORE.setting","entries":12160,"callees":[{"exclusive_time":18695,"id":35051712,"line":3899,"name":"","allocations":[{"count":24320,"id":29974944,"spesh":24160,"type":"Int"},{"count":12160,"id":29975016,"spesh":12080,"type":"Scalar"}],"inclusive_time":18695,"spesh_entries":12080,"file":"gen/moar/m-CORE.setting","entries":12160}]}]}]},{"exclusive_time":14959,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":14959,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080},{"exclusive_time":55909,"id":34818544,"line":856,"name":"sink","inclusive_time":55909,"file":"gen/moar/m-CORE.setting","entries":158080},{"exclusive_time":224150,"id":35162368,"line":6469,"name":"fire_phasers","allocations":[{"count":170240,"id":19706296,"spesh":170240,"type":"BOOTCode"}],"inclusive_time":267759,"spesh_entries":170240,"file":"gen/moar/m-CORE.setting","entries":170240,"callees":[{"exclusive_time":43608,"id":34255840,"line":8705,"name":"prefix:<!>","inclusive_time":43608,"spesh_entries":170240,"file":"gen/moar/m-CORE.setting","inlined_entries":170240,"entries":170240}]}]},{"exclusive_time":412310,"id":25520320,"line":1558,"name":"infix:<=:=>","inclusive_time":1779387,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080,"callees":[{"exclusive_time":1281135,"id":38060448,"line":2048,"name":"","allocations":[{"count":316160,"id":19706296,"type":"BOOTCode"},{"count":316160,"id":19707232,"type":"NQPArray"},{"count":158080,"id":19706248,"type":"BOOTHash"}],"inclusive_time":1321482,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":158080,"callees":[{"exclusive_time":40346,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":40346,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":158080,"entries":158080}]},{"exclusive_time":45594,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":45594,"file":"gen/moar/m-CORE.setting","entries":158080}]},{"exclusive_time":63511,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":63511,"file":"gen/moar/m-CORE.setting","inlined_entries":12160,"jit_entries":486400,"entries":486400},{"exclusive_time":241317,"id":35438704,"line":12283,"name":"push","inclusive_time":241317,"file":"gen/moar/m-CORE.setting","entries":316160},{"exclusive_time":45533,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":45533,"file":"gen/moar/m-CORE.setting","inlined_entries":12160,"jit_entries":170240,"entries":328320}]}]},{"exclusive_time":13588,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":13588,"file":"gen/moar/m-CORE.setting","inlined_entries":170231,"jit_entries":170240,"entries":170240}]},{"exclusive_time":51559,"id":34818544,"line":856,"name":"sink","inclusive_time":51559,"file":"gen/moar/m-CORE.setting","entries":170240},{"exclusive_time":75094,"id":38361936,"line":2635,"name":"type_check","inclusive_time":75094,"file":"gen/moar/m-Metamodel.nqp","jit_entries":170240,"entries":170240},{"exclusive_time":14073,"id":35552400,"line":14088,"name":"sink","inclusive_time":14073,"file":"gen/moar/m-CORE.setting","jit_entries":170240,"entries":170240}]},{"exclusive_time":13350,"id":34818544,"line":856,"name":"sink","inclusive_time":13350,"file":"gen/moar/m-CORE.setting","jit_entries":170240,"entries":170240}]},{"exclusive_time":26353,"id":35552400,"line":14088,"name":"sink","inclusive_time":26353,"file":"gen/moar/m-CORE.setting","jit_entries":328320,"entries":328320},{"exclusive_time":829642,"id":35543584,"line":13932,"name":"elems","allocations":[{"count":170240,"id":29975016,"spesh":170212,"type":"Scalar","jit":28}],"inclusive_time":1342979,"spesh_entries":170212,"file":"gen/moar/m-CORE.setting","jit_entries":28,"entries":170240,"callees":[{"exclusive_time":22638,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":22638,"file":"gen/moar/m-CORE.setting","jit_entries":170240,"entries":170240},{"exclusive_time":13503,"id":35552400,"line":14088,"name":"sink","inclusive_time":13503,"file":"gen/moar/m-CORE.setting","jit_entries":170240,"entries":170240},{"exclusive_time":337168,"id":35591616,"line":13753,"name":"reify-until-lazy","allocations":[{"count":170240,"id":19706296,"type":"BOOTCode","jit":170240}],"inclusive_time":363002,"file":"gen/moar/m-CORE.setting","jit_entries":170240,"entries":170240,"callees":[{"exclusive_time":25834,"id":35552400,"line":14088,"name":"sink","inclusive_time":25834,"file":"gen/moar/m-CORE.setting","jit_entries":340480,"entries":340480}]},{"exclusive_time":13384,"id":34818544,"line":856,"name":"sink","inclusive_time":13384,"file":"gen/moar/m-CORE.setting","jit_entries":170240,"entries":170240},{"exclusive_time":69324,"id":35595264,"line":13795,"name":"fully-reified","inclusive_time":100807,"file":"gen/moar/m-CORE.setting","jit_entries":170240,"entries":170240,"callees":[{"exclusive_time":31483,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":31483,"file":"gen/moar/m-CORE.setting","inlined_entries":340480,"jit_entries":340480,"entries":340480}]}]},{"exclusive_time":26124,"id":34229392,"line":8526,"name":"infix:«<»","inclusive_time":26124,"file":"gen/moar/m-CORE.setting","inlined_entries":170212,"jit_entries":170240,"entries":170240},{"exclusive_time":15395,"id":34228480,"line":8515,"name":"infix:<==>","inclusive_time":15395,"file":"gen/moar/m-CORE.setting","inlined_entries":158054,"jit_entries":158080,"entries":158080},{"exclusive_time":296934,"id":35568208,"line":14273,"name":"FLATTENABLE_LIST","inclusive_time":339115,"file":"gen/moar/m-CORE.setting","jit_entries":158064,"entries":158080,"callees":[{"exclusive_time":18305,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":18305,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080},{"exclusive_time":23875,"id":35552400,"line":14088,"name":"sink","inclusive_time":23875,"file":"gen/moar/m-CORE.setting","jit_entries":316160,"entries":316160}]},{"exclusive_time":16383,"id":35568512,"line":14278,"name":"FLATTENABLE_HASH","allocations":[{"count":158080,"id":19706248,"type":"BOOTHash","jit":158076}],"inclusive_time":16383,"file":"gen/moar/m-CORE.setting","jit_entries":158076,"entries":158080},{"exclusive_time":374268,"id":34206592,"line":8023,"name":"infix:<+^>","inclusive_time":571543,"file":"gen/moar/m-CORE.setting","entries":158080,"callees":[{"exclusive_time":15,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"spesh":2,"type":"BOOTCode"},{"count":2,"id":19707232,"spesh":2,"type":"NQPArray"},{"count":1,"id":19706248,"spesh":1,"type":"BOOTHash"}],"inclusive_time":16,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":197258,"id":34233040,"line":8568,"name":"infix:<+^>","allocations":[{"count":158080,"id":29974944,"type":"Int"}],"inclusive_time":197258,"file":"gen/moar/m-CORE.setting","entries":158080}]},{"exclusive_time":169981,"id":25498128,"line":633,"name":"take-rw","inclusive_time":1225955,"file":"gen/moar/m-CORE.setting","jit_entries":158075,"entries":158080,"callees":[{"exclusive_time":193309,"id":25496000,"line":596,"name":"THROW","allocations":[{"count":158080,"id":19706488,"spesh":158080,"type":"BOOTException"}],"inclusive_time":1055973,"spesh_entries":158080,"file":"gen/moar/m-CORE.setting","entries":158080,"callees":[{"exclusive_time":255941,"id":34350992,"line":-1,"name":"","allocations":[{"count":316160,"id":29974944,"spesh":316160,"type":"Int"}],"inclusive_time":862664,"spesh_entries":158080,"file":"/usr/local/src/rakudo/install/share/perl6/runtime/CORE.setting.moarvm","entries":158080,"callees":[{"exclusive_time":502504,"id":34349776,"line":12680,"name":"","inclusive_time":606722,"file":"gen/moar/m-CORE.setting","entries":158080,"callees":[{"exclusive_time":104217,"id":35438704,"line":12283,"name":"push","inclusive_time":104217,"file":"gen/moar/m-CORE.setting","entries":158080}]}]}]}]},{"exclusive_time":16083,"id":34818544,"line":856,"name":"sink","inclusive_time":16083,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080},{"exclusive_time":10461,"id":25500864,"line":655,"name":"last","inclusive_time":17144,"file":"gen/moar/m-CORE.setting","jit_entries":12140,"entries":12160,"callees":[{"exclusive_time":6682,"id":25496304,"line":603,"name":"THROW-NIL","allocations":[{"count":12160,"id":19706488,"spesh":12140,"type":"BOOTException"}],"inclusive_time":6682,"spesh_entries":12140,"file":"gen/moar/m-CORE.setting","entries":12160}]}]}]},{"exclusive_time":12230,"id":38057408,"line":1621,"name":"","allocations":[{"count":12160,"id":29975160,"spesh":12160,"type":"Block"},{"count":12160,"id":19706296,"spesh":12160,"type":"BOOTCode"}],"inclusive_time":12230,"spesh_entries":12160,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":12160}]},{"exclusive_time":10585,"id":34350688,"line":12700,"name":"","inclusive_time":10585,"file":"gen/moar/m-CORE.setting","jit_entries":12115,"entries":12160}]}]},{"exclusive_time":2262,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":2262,"file":"gen/moar/m-CORE.setting","inlined_entries":12155,"jit_entries":12160,"entries":12160}]}]},{"exclusive_time":966,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":966,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160},{"exclusive_time":5220,"id":38361936,"line":2635,"name":"type_check","inclusive_time":5220,"file":"gen/moar/m-Metamodel.nqp","jit_entries":12160,"entries":12160},{"exclusive_time":1118,"id":35552400,"line":14088,"name":"sink","inclusive_time":1118,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160}]},{"exclusive_time":1037,"id":34818544,"line":856,"name":"sink","inclusive_time":1037,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160},{"exclusive_time":6180,"id":35595264,"line":13795,"name":"fully-reified","inclusive_time":8317,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160,"callees":[{"exclusive_time":2137,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":2137,"file":"gen/moar/m-CORE.setting","inlined_entries":24320,"jit_entries":24320,"entries":24320}]}]},{"exclusive_time":302284,"id":35545104,"line":13954,"name":"AT-POS","inclusive_time":329273,"spesh_entries":158067,"file":"gen/moar/m-CORE.setting","entries":158080,"callees":[{"exclusive_time":14950,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":14950,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080},{"exclusive_time":12039,"id":35552400,"line":14088,"name":"sink","inclusive_time":12039,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080}]}]}]}]}]},{"exclusive_time":262999,"id":86217504,"line":47,"name":"mutate","allocations":[{"count":12160,"id":29975016,"type":"Scalar","jit":11895}],"inclusive_time":51444776,"file":"hibbified-249.p6","jit_entries":11895,"entries":12160,"callees":[{"exclusive_time":484664,"id":38350080,"line":2222,"name":"accepts_type","allocations":[{"count":12160,"id":19707232,"type":"NQPArray","jit":12117},{"count":24320,"id":19707280,"type":"NQPArrayIter","jit":24234},{"count":24320,"id":19706176,"type":"BOOTNum","jit":24234}],"inclusive_time":818739,"file":"gen/moar/m-Metamodel.nqp","deopt_one":12117,"jit_entries":12117,"entries":12160,"callees":[{"exclusive_time":1672,"id":38370448,"line":3092,"name":"role_typecheck_list","inclusive_time":1672,"file":"gen/moar/m-Metamodel.nqp","jit_entries":12137,"entries":12160},{"exclusive_time":143852,"id":38346736,"line":2140,"name":"archetypes","allocations":[{"count":36480,"id":19707280,"type":"NQPArrayIter","jit":36420},{"count":24320,"id":19707304,"type":"NQPHashIter","jit":24280}],"inclusive_time":159482,"file":"gen/moar/m-Metamodel.nqp","jit_entries":36420,"entries":36480,"callees":[{"exclusive_time":3362,"id":38373488,"line":3168,"name":"archetypes","inclusive_time":3362,"file":"gen/moar/m-Metamodel.nqp","jit_entries":24298,"entries":24320},{"exclusive_time":10194,"id":38284416,"line":88,"name":"generic","inclusive_time":10194,"file":"gen/moar/m-Metamodel.nqp","inlined_entries":36420,"jit_entries":36480,"entries":36480},{"exclusive_time":2073,"id":38297792,"line":304,"name":"archetypes","inclusive_time":2073,"file":"gen/moar/m-Metamodel.nqp","jit_entries":12136,"entries":12160}]},{"exclusive_time":10060,"id":38284416,"line":88,"name":"generic","inclusive_time":10060,"file":"gen/moar/m-Metamodel.nqp","inlined_entries":12117,"jit_entries":36480,"entries":36480},{"exclusive_time":3160,"id":38348560,"line":2202,"name":"curried_role","inclusive_time":3160,"file":"gen/moar/m-Metamodel.nqp","jit_entries":24280,"entries":24320},{"exclusive_time":6293,"id":20424240,"line":596,"name":"push","inclusive_time":6293,"file":"gen/moar/stage2/NQPCORE.setting","jit_entries":12160,"entries":12160},{"exclusive_time":1618,"id":38348864,"line":2206,"name":"role_arguments","inclusive_time":1618,"file":"gen/moar/m-Metamodel.nqp","jit_entries":12133,"entries":12160},{"exclusive_time":134966,"id":38319072,"line":1073,"name":"find_method","allocations":[{"count":12160,"id":19706248,"type":"BOOTHash","jit":12120},{"count":12160,"id":19707280,"type":"NQPArrayIter","jit":12120}],"inclusive_time":149424,"file":"gen/moar/m-Metamodel.nqp","jit_entries":12120,"entries":12160,"callees":[{"exclusive_time":2796,"id":38376832,"line":3264,"name":"submethod_table","allocations":[{"count":12160,"id":19706248,"type":"BOOTHash","jit":12133}],"inclusive_time":2796,"file":"gen/moar/m-Metamodel.nqp","jit_entries":12133,"entries":12160},{"exclusive_time":4927,"id":38318160,"line":1041,"name":"mro","inclusive_time":4927,"file":"gen/moar/m-Metamodel.nqp","inlined_entries":12120,"jit_entries":12140,"entries":12160},{"exclusive_time":2441,"id":38376528,"line":3263,"name":"method_table","allocations":[{"count":12160,"id":19706248,"type":"BOOTHash","jit":12133}],"inclusive_time":2441,"file":"gen/moar/m-Metamodel.nqp","jit_entries":12133,"entries":12160},{"exclusive_time":4292,"id":38304176,"line":515,"name":"method_table","inclusive_time":4292,"file":"gen/moar/m-Metamodel.nqp","jit_entries":12160,"entries":12160}]},{"exclusive_time":2360,"id":34889376,"line":1749,"name":"ACCEPTS","inclusive_time":2360,"file":"gen/moar/m-CORE.setting","jit_entries":12134,"entries":12160}]},{"exclusive_time":7894,"id":35845760,"line":18807,"name":"Num","allocations":[{"count":1800,"id":29974920,"type":"Num","jit":1612}],"inclusive_time":12503,"file":"gen/moar/m-CORE.setting","jit_entries":1612,"entries":1800,"callees":[{"exclusive_time":4608,"id":34228480,"line":8515,"name":"infix:<==>","inclusive_time":4608,"file":"gen/moar/m-CORE.setting","inlined_entries":1612,"jit_entries":1800,"entries":1800}]},{"exclusive_time":29671,"id":34689344,"line":29503,"name":"METAOP_ZIP","inclusive_time":46277,"file":"gen/moar/m-CORE.setting","jit_entries":12120,"entries":12160,"callees":[{"exclusive_time":16606,"id":38057408,"line":1621,"name":"","allocations":[{"count":12160,"id":29975160,"spesh":12160,"type":"Block"},{"count":12160,"id":19706296,"spesh":12160,"type":"BOOTCode"}],"inclusive_time":16606,"spesh_entries":12160,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":12160}]},{"exclusive_time":3938,"id":35662144,"line":16988,"name":"elems","inclusive_time":3938,"file":"gen/moar/m-CORE.setting","inlined_entries":11895,"jit_entries":12087,"entries":12160},{"exclusive_time":45,"id":82621248,"line":5,"name":"random-bytes","inclusive_time":592,"file":"hibbified-249.p6","entries":1,"callees":[{"exclusive_time":13,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":15,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":1,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]},{"exclusive_time":16,"id":77499056,"line":11,"name":"random-bytes","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":532,"file":"hibbified-249.p6","entries":1,"callees":[{"exclusive_time":1,"id":38057408,"line":1621,"name":"","allocations":[{"count":1,"id":29974632,"type":"Sub"},{"count":1,"id":19706296,"type":"BOOTCode"}],"inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1},{"exclusive_time":1,"id":38055584,"line":1563,"name":"","allocations":[{"count":1,"id":29975184,"type":"Code"},{"count":1,"id":19706296,"type":"BOOTCode"}],"inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1},{"exclusive_time":48,"id":34371056,"line":14616,"name":"infix:<xx>","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":2,"id":29975016,"type":"Scalar"},{"count":1,"id":19706224,"type":"BOOTArray"},{"count":1,"id":29974584,"type":"List"}],"inclusive_time":392,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":83,"id":68890176,"line":25,"name":"","inclusive_time":342,"file":"hibbified-249.p6","entries":13,"callees":[{"exclusive_time":201,"id":70557952,"line":12,"name":"random-byte","allocations":[{"count":104,"id":29974920,"type":"Num"},{"count":14,"id":29974944,"type":"Int"}],"inclusive_time":259,"file":"hibbified-249.p6","entries":13,"callees":[{"exclusive_time":50,"id":34284416,"line":9211,"name":"infix:«<»","inclusive_time":50,"file":"gen/moar/m-CORE.setting","entries":104},{"exclusive_time":7,"id":35552400,"line":14088,"name":"sink","inclusive_time":7,"file":"gen/moar/m-CORE.setting","jit_entries":103,"entries":103},{"exclusive_time":0,"id":34818544,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]},{"exclusive_time":0,"id":34818544,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":13,"entries":13}]},{"exclusive_time":6,"id":34825536,"line":941,"name":"new","inclusive_time":120,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":38067136,"line":3008,"name":"","allocations":[{"count":1,"id":29974584,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":15,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"},{"count":1,"id":19706440,"type":"CallCapture"}],"inclusive_time":53,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":4,"id":38040688,"line":920,"name":"is_bindable","allocations":[{"count":1,"id":19706296,"spesh":1,"type":"BOOTCode"}],"inclusive_time":38,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":3,"id":38040992,"line":926,"name":"","inclusive_time":34,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":11,"id":38038560,"line":606,"name":"bind","allocations":[{"count":1,"id":29974560,"type":"Hash"}],"inclusive_time":31,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":17,"id":38036736,"line":168,"name":"bind_one_param","allocations":[{"count":8,"id":19706296,"type":"BOOTCode"},{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":18,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":4,"callees":[{"exclusive_time":0,"id":38361936,"line":2635,"name":"type_check","inclusive_time":0,"file":"gen/moar/m-Metamodel.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":0,"id":38038256,"line":573,"name":"handle_optional","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]}]}]}]},{"exclusive_time":6,"id":35657584,"line":16936,"name":"new","allocations":[{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":60,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":3,"id":35658192,"line":16943,"name":"create","allocations":[{"count":1,"id":29975016,"type":"Scalar"},{"count":1,"id":59274784,"type":"array[uint8]"}],"inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":34818544,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]},{"exclusive_time":17,"id":35673088,"line":16355,"name":"STORE","allocations":[{"count":1,"id":29975016,"type":"Scalar"},{"count":13,"id":29974992,"type":"IntLexRef"}],"inclusive_time":50,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":3,"id":35543584,"line":13932,"name":"elems","allocations":[{"count":1,"id":29975016,"type":"Scalar","jit":1}],"inclusive_time":4,"file":"gen/moar/m-CORE.setting","deopt_one":1,"jit_entries":1,"entries":1,"callees":[{"exclusive_time":0,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]},{"exclusive_time":26,"id":35545104,"line":13954,"name":"AT-POS","inclusive_time":28,"file":"gen/moar/m-CORE.setting","entries":13,"callees":[{"exclusive_time":1,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":13,"entries":13},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":13,"entries":13}]}]}]}]}]}]},{"exclusive_time":217124,"id":34689648,"line":29504,"name":"","allocations":[{"count":12160,"id":19706296,"spesh":12112,"type":"BOOTCode"},{"count":48640,"id":29975016,"spesh":48448,"type":"Scalar"},{"count":12160,"id":29974896,"spesh":12112,"type":"Array"}],"inclusive_time":4255502,"spesh_entries":12112,"file":"gen/moar/m-CORE.setting","entries":12160,"callees":[{"exclusive_time":87275,"id":35537504,"line":13831,"name":"from-slurpy-onearg","allocations":[{"count":12160,"id":19706296,"spesh":12140,"type":"BOOTCode"},{"count":12160,"id":29975112,"spesh":12140,"type":"Capture"},{"count":12160,"id":29975016,"spesh":12140,"type":"Scalar"}],"inclusive_time":203359,"spesh_entries":12140,"file":"gen/moar/m-CORE.setting","entries":12160,"callees":[{"exclusive_time":5009,"id":35435664,"line":12248,"name":"FLATTENABLE_LIST","inclusive_time":5009,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160},{"exclusive_time":5859,"id":35435968,"line":12249,"name":"FLATTENABLE_HASH","allocations":[{"count":12160,"id":19706248,"type":"BOOTHash","jit":12160}],"inclusive_time":5859,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160},{"exclusive_time":78382,"id":35537200,"line":13817,"name":"from-slurpy","allocations":[{"count":12160,"id":29974584,"type":"List"},{"count":12160,"id":54157808,"type":"IterationBuffer"},{"count":12160,"id":51227144,"type":"List::Reifier"}],"inclusive_time":105214,"file":"gen/moar/m-CORE.setting","entries":12160,"callees":[{"exclusive_time":1984,"id":38067136,"line":3008,"name":"","allocations":[{"count":12160,"id":29974584,"type":"List","jit":12160}],"inclusive_time":1984,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":12160,"entries":12160},{"exclusive_time":22493,"id":35546320,"line":13985,"name":"reification-target","inclusive_time":24848,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160,"callees":[{"exclusive_time":1276,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":1276,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160},{"exclusive_time":1078,"id":35552400,"line":14088,"name":"sink","inclusive_time":1078,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160}]}]}]},{"exclusive_time":70411,"id":35543584,"line":13932,"name":"elems","allocations":[{"count":12160,"id":29975016,"spesh":12112,"type":"Scalar","jit":48}],"inclusive_time":364061,"spesh_entries":12112,"file":"gen/moar/m-CORE.setting","jit_entries":48,"entries":12160,"callees":[{"exclusive_time":1244,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":1244,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160},{"exclusive_time":981,"id":35552400,"line":14088,"name":"sink","inclusive_time":981,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160},{"exclusive_time":112298,"id":35591616,"line":13753,"name":"reify-until-lazy","allocations":[{"count":12160,"id":19706296,"type":"BOOTCode","jit":12160},{"count":24320,"id":29975016,"type":"Scalar","jit":24320}],"inclusive_time":277976,"file":"gen/moar/m-CORE.setting","deopt_one":12160,"jit_entries":12160,"entries":12160,"callees":[{"exclusive_time":985,"id":35552400,"line":14088,"name":"sink","inclusive_time":985,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160},{"exclusive_time":2776,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":2776,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160},{"exclusive_time":78846,"id":35592832,"line":13760,"name":"","allocations":[{"count":48640,"id":19706296,"type":"BOOTCode","jit":48560}],"inclusive_time":161915,"file":"gen/moar/m-CORE.setting","jit_entries":24280,"entries":24320,"callees":[{"exclusive_time":59757,"id":35593744,"line":13769,"name":"","allocations":[{"count":24320,"id":29975016,"type":"Scalar","jit":24290}],"inclusive_time":75745,"file":"gen/moar/m-CORE.setting","jit_entries":24290,"entries":24320,"callees":[{"exclusive_time":15987,"id":35438704,"line":12283,"name":"push","inclusive_time":15987,"file":"gen/moar/m-CORE.setting","entries":24320}]},{"exclusive_time":7323,"id":34818544,"line":856,"name":"sink","inclusive_time":7323,"file":"gen/moar/m-CORE.setting","entries":24320}]}]},{"exclusive_time":957,"id":34818544,"line":856,"name":"sink","inclusive_time":957,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160},{"exclusive_time":9551,"id":35595264,"line":13795,"name":"fully-reified","inclusive_time":12491,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160,"callees":[{"exclusive_time":2939,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":2939,"file":"gen/moar/m-CORE.setting","inlined_entries":24320,"jit_entries":24320,"entries":24320}]}]},{"exclusive_time":6892,"id":34228480,"line":8515,"name":"infix:<==>","inclusive_time":6892,"spesh_entries":12112,"file":"gen/moar/m-CORE.setting","inlined_entries":12112,"jit_entries":48,"entries":12160},{"exclusive_time":9312,"id":38055584,"line":1563,"name":"","allocations":[{"count":12160,"id":29975184,"spesh":12140,"type":"Code"},{"count":12160,"id":19706296,"spesh":12140,"type":"BOOTCode"}],"inclusive_time":9312,"spesh_entries":12140,"file":"gen/moar/m-BOOTSTRAP.nqp","inlined_entries":12112,"entries":12160},{"exclusive_time":74312,"id":34689952,"line":29508,"name":"","inclusive_time":2827859,"file":"gen/moar/m-CORE.setting","jit_entries":12131,"entries":12160,"callees":[{"exclusive_time":10424,"id":38057408,"line":1621,"name":"","allocations":[{"count":12160,"id":29975160,"spesh":12160,"type":"Block"},{"count":12160,"id":19706296,"spesh":12160,"type":"BOOTCode"}],"inclusive_time":10424,"spesh_entries":12160,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":12160},{"exclusive_time":109977,"id":35044416,"line":3773,"name":"map","inclusive_time":741550,"spesh_entries":12160,"file":"gen/moar/m-CORE.setting","entries":12160,"callees":[{"exclusive_time":1614,"id":38067136,"line":3008,"name":"","allocations":[{"count":12160,"id":29974584,"type":"List","jit":12160}],"inclusive_time":1614,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":12160,"entries":12160},{"exclusive_time":238248,"id":38060448,"line":2048,"name":"","allocations":[{"count":24320,"id":19706296,"type":"BOOTCode"},{"count":24320,"id":19707232,"type":"NQPArray"},{"count":12160,"id":19706248,"type":"BOOTHash"}],"inclusive_time":241014,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":12160,"callees":[{"exclusive_time":2766,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":2766,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":12160,"entries":12160}]},{"exclusive_time":74523,"id":35045632,"line":3779,"name":"map","allocations":[{"count":24320,"id":29975016,"spesh":24320,"type":"Scalar"}],"inclusive_time":388943,"spesh_entries":12160,"file":"gen/moar/m-CORE.setting","entries":12160,"callees":[{"exclusive_time":64703,"id":35546624,"line":13990,"name":"iterator","allocations":[{"count":12160,"id":19706296,"type":"BOOTCode","jit":12160}],"inclusive_time":148491,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160,"callees":[{"exclusive_time":1778,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":1778,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160},{"exclusive_time":1117,"id":35552400,"line":14088,"name":"sink","inclusive_time":1117,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160},{"exclusive_time":13408,"id":35546928,"line":13992,"name":"","allocations":[{"count":12160,"id":29975016,"type":"Scalar","jit":12160}],"inclusive_time":13408,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160},{"exclusive_time":56293,"id":35547536,"line":14004,"name":"new","allocations":[{"count":12160,"id":53651952,"type":"<anon|352550624>","jit":12160}],"inclusive_time":67484,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160,"callees":[{"exclusive_time":2705,"id":34798480,"line":495,"name":"of","inclusive_time":2705,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160},{"exclusive_time":8484,"id":35547232,"line":13998,"name":"BUILD","inclusive_time":8484,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160}]}]},{"exclusive_time":102048,"id":35048976,"line":3840,"name":"sequential-map","allocations":[{"count":24320,"id":19706296,"type":"BOOTCode","jit":24320},{"count":36480,"id":29975016,"type":"Scalar","jit":36480}],"inclusive_time":165928,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160,"callees":[{"exclusive_time":23328,"id":35157504,"line":6408,"name":"count","inclusive_time":25134,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160,"callees":[{"exclusive_time":1805,"id":35839376,"line":18706,"name":"count","inclusive_time":1805,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160}]},{"exclusive_time":2850,"id":34228480,"line":8515,"name":"infix:<==>","inclusive_time":2850,"file":"gen/moar/m-CORE.setting","inlined_entries":12160,"jit_entries":12160,"entries":12160},{"exclusive_time":5975,"id":35049888,"line":3847,"name":"","inclusive_time":5975,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160},{"exclusive_time":23222,"id":35147168,"line":3827,"name":"new","allocations":[{"count":36480,"id":29975016,"type":"Scalar","jit":36480},{"count":12160,"id":53654184,"type":"<anon|159066640>","jit":12160}],"inclusive_time":23222,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160},{"exclusive_time":6697,"id":35446304,"line":12399,"name":"new","allocations":[{"count":12160,"id":53654904,"type":"Seq","jit":12160}],"inclusive_time":6697,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160}]}]}]},{"exclusive_time":54688,"id":35447520,"line":12420,"name":"eager","inclusive_time":2001571,"file":"gen/moar/m-CORE.setting","jit_entries":12120,"entries":12160,"callees":[{"exclusive_time":46541,"id":35446912,"line":12407,"name":"iterator","inclusive_time":56793,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160,"callees":[{"exclusive_time":1090,"id":35552400,"line":14088,"name":"sink","inclusive_time":1090,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160},{"exclusive_time":9160,"id":38361936,"line":2635,"name":"type_check","inclusive_time":9160,"file":"gen/moar/m-Metamodel.nqp","jit_entries":12160,"entries":12160}]},{"exclusive_time":22825,"id":35536896,"line":13804,"name":"from-iterator","allocations":[{"count":12160,"id":29974584,"type":"List","jit":12160},{"count":12160,"id":54157808,"type":"IterationBuffer","jit":12160},{"count":12160,"id":51227144,"type":"List::Reifier","jit":12160}],"inclusive_time":48117,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160,"callees":[{"exclusive_time":22639,"id":35546320,"line":13985,"name":"reification-target","inclusive_time":25292,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160,"callees":[{"exclusive_time":1491,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":1491,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160},{"exclusive_time":1161,"id":35552400,"line":14088,"name":"sink","inclusive_time":1161,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160}]}]},{"exclusive_time":36335,"id":35567296,"line":14247,"name":"eager","inclusive_time":1841972,"file":"gen/moar/m-CORE.setting","jit_entries":12159,"entries":12160,"callees":[{"exclusive_time":82122,"id":35594048,"line":13778,"name":"reify-all","allocations":[{"count":12160,"id":19706296,"type":"BOOTCode","jit":12159},{"count":24320,"id":29975016,"type":"Scalar","jit":24318}],"inclusive_time":1804711,"file":"gen/moar/m-CORE.setting","jit_entries":12159,"entries":12160,"callees":[{"exclusive_time":27942,"id":34958992,"line":2463,"name":"push-all","allocations":[{"count":12160,"id":29975016,"type":"Scalar","jit":12160}],"inclusive_time":1711699,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160,"callees":[{"exclusive_time":42944,"id":34958688,"line":2454,"name":"push-at-least","allocations":[{"count":12160,"id":29975016,"spesh":12160,"type":"Scalar"}],"inclusive_time":1682193,"spesh_entries":12160,"file":"gen/moar/m-CORE.setting","entries":12160,"callees":[{"exclusive_time":239888,"id":34958080,"line":2436,"name":"push-exactly","allocations":[{"count":24320,"id":29975016,"type":"Scalar","jit":24320}],"inclusive_time":1639248,"file":"gen/moar/m-CORE.setting","deopt_one":12160,"jit_entries":12160,"entries":12160,"callees":[{"exclusive_time":445888,"id":35050192,"line":3853,"name":"pull-one","allocations":[{"count":36480,"id":19706296,"type":"BOOTCode","jit":36480},{"count":85120,"id":29975016,"type":"Scalar","jit":85120}],"inclusive_time":1381292,"file":"gen/moar/m-CORE.setting","deopt_one":24320,"jit_entries":36480,"entries":36480,"callees":[{"exclusive_time":6087,"id":34255840,"line":8705,"name":"prefix:<!>","inclusive_time":6087,"file":"gen/moar/m-CORE.setting","inlined_entries":24320,"jit_entries":36480,"entries":36480},{"exclusive_time":30599,"id":35163280,"line":6478,"name":"phasers","inclusive_time":32499,"file":"gen/moar/m-CORE.setting","jit_entries":24320,"entries":24320,"callees":[{"exclusive_time":1899,"id":35552400,"line":14088,"name":"sink","inclusive_time":1899,"file":"gen/moar/m-CORE.setting","jit_entries":24320,"entries":24320}]},{"exclusive_time":12593,"id":34151264,"line":7763,"name":"prefix:<+>","inclusive_time":71217,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160,"callees":[{"exclusive_time":15688,"id":35541456,"line":13911,"name":"Numeric","inclusive_time":58623,"spesh_entries":12160,"file":"gen/moar/m-CORE.setting","entries":12160,"callees":[{"exclusive_time":39470,"id":35543584,"line":13932,"name":"elems","inclusive_time":42935,"spesh_entries":12160,"file":"gen/moar/m-CORE.setting","entries":12160,"callees":[{"exclusive_time":1562,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":1562,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160},{"exclusive_time":1903,"id":35552400,"line":14088,"name":"sink","inclusive_time":1903,"file":"gen/moar/m-CORE.setting","jit_entries":24320,"entries":24320}]}]}]},{"exclusive_time":37992,"id":34824016,"line":929,"name":"Bool","inclusive_time":79201,"spesh_entries":12160,"file":"gen/moar/m-CORE.setting","entries":12160,"callees":[{"exclusive_time":1941,"id":38067136,"line":3008,"name":"","allocations":[{"count":12160,"id":29974584,"type":"List","jit":12160}],"inclusive_time":1941,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":12160,"entries":12160},{"exclusive_time":35937,"id":35540544,"line":13904,"name":"Bool","inclusive_time":39268,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160,"callees":[{"exclusive_time":1317,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":1317,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160},{"exclusive_time":968,"id":35552400,"line":14088,"name":"sink","inclusive_time":968,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160},{"exclusive_time":1045,"id":34254320,"line":8699,"name":"prefix:<so>","inclusive_time":1045,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160}]}]},{"exclusive_time":6189,"id":35552400,"line":14088,"name":"sink","inclusive_time":6189,"file":"gen/moar/m-CORE.setting","jit_entries":72960,"entries":72960},{"exclusive_time":32582,"id":35547840,"line":14006,"name":"pull-one","inclusive_time":40523,"file":"gen/moar/m-CORE.setting","jit_entries":36480,"entries":36480,"callees":[{"exclusive_time":7940,"id":35548144,"line":14013,"name":"reify-and-pull-one","inclusive_time":7940,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160}]},{"exclusive_time":77267,"id":25520320,"line":1558,"name":"infix:<=:=>","inclusive_time":341945,"file":"gen/moar/m-CORE.setting","jit_entries":24320,"entries":24320,"callees":[{"exclusive_time":242990,"id":38060448,"line":2048,"name":"","allocations":[{"count":48640,"id":19706296,"type":"BOOTCode"},{"count":48640,"id":19707232,"type":"NQPArray"},{"count":24320,"id":19706248,"type":"BOOTHash"}],"inclusive_time":256684,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":24320,"callees":[{"exclusive_time":13693,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":13693,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":24320,"entries":24320}]},{"exclusive_time":7993,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":7993,"file":"gen/moar/m-CORE.setting","entries":24320}]},{"exclusive_time":146695,"id":34690256,"line":29508,"name":"","inclusive_time":323886,"file":"gen/moar/m-CORE.setting","jit_entries":24274,"entries":24320,"callees":[{"exclusive_time":2266,"id":35663664,"line":16993,"name":"is-lazy","inclusive_time":2266,"file":"gen/moar/m-CORE.setting","jit_entries":24280,"entries":24320},{"exclusive_time":8663,"id":34818544,"line":856,"name":"sink","inclusive_time":8663,"file":"gen/moar/m-CORE.setting","entries":24320},{"exclusive_time":69419,"id":35679168,"line":16487,"name":"iterator","allocations":[{"count":24320,"id":19706296,"type":"BOOTCode","jit":24280}],"inclusive_time":149342,"file":"gen/moar/m-CORE.setting","jit_entries":24280,"entries":24320,"callees":[{"exclusive_time":30922,"id":35679472,"line":16488,"name":"","allocations":[{"count":24320,"id":29975016,"type":"Scalar","jit":24280}],"inclusive_time":30922,"file":"gen/moar/m-CORE.setting","jit_entries":24280,"entries":24320},{"exclusive_time":41226,"id":35680080,"line":16497,"name":"new","allocations":[{"count":24320,"id":53651592,"type":"<anon|414432224>","jit":24277}],"inclusive_time":49000,"file":"gen/moar/m-CORE.setting","jit_entries":24277,"entries":24320,"callees":[{"exclusive_time":7773,"id":35679776,"line":16492,"name":"BUILD","inclusive_time":7773,"file":"gen/moar/m-CORE.setting","jit_entries":24277,"entries":24320}]}]},{"exclusive_time":16919,"id":35000640,"line":2551,"name":"new","allocations":[{"count":24320,"id":53654424,"type":"Rakudo::Internals::WhateverIterator","jit":24286}],"inclusive_time":16919,"file":"gen/moar/m-CORE.setting","jit_entries":24286,"entries":24320}]},{"exclusive_time":1610,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":1610,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160},{"exclusive_time":4288,"id":34818544,"line":856,"name":"sink","inclusive_time":4288,"file":"gen/moar/m-CORE.setting","entries":12160},{"exclusive_time":24649,"id":35162368,"line":6469,"name":"fire_phasers","allocations":[{"count":12160,"id":19706296,"spesh":12160,"type":"BOOTCode"}],"inclusive_time":27954,"spesh_entries":12160,"file":"gen/moar/m-CORE.setting","entries":12160,"callees":[{"exclusive_time":3304,"id":34255840,"line":8705,"name":"prefix:<!>","inclusive_time":3304,"spesh_entries":12160,"file":"gen/moar/m-CORE.setting","inlined_entries":12160,"entries":12160}]}]},{"exclusive_time":7036,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":7036,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":36480},{"exclusive_time":4692,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":4692,"file":"gen/moar/m-CORE.setting","jit_entries":36480,"entries":36480},{"exclusive_time":6339,"id":35438704,"line":12283,"name":"push","inclusive_time":6339,"file":"gen/moar/m-CORE.setting","jit_entries":24320,"entries":24320}]}]},{"exclusive_time":1563,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":1563,"file":"gen/moar/m-CORE.setting","inlined_entries":12160,"jit_entries":12160,"entries":12160}]},{"exclusive_time":3863,"id":34818544,"line":856,"name":"sink","inclusive_time":3863,"file":"gen/moar/m-CORE.setting","entries":12160},{"exclusive_time":5966,"id":38361936,"line":2635,"name":"type_check","inclusive_time":5966,"file":"gen/moar/m-Metamodel.nqp","jit_entries":12160,"entries":12160},{"exclusive_time":1058,"id":35552400,"line":14088,"name":"sink","inclusive_time":1058,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160}]},{"exclusive_time":925,"id":34818544,"line":856,"name":"sink","inclusive_time":925,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160}]}]}]},{"exclusive_time":21319,"id":35567296,"line":14247,"name":"eager","inclusive_time":60666,"file":"gen/moar/m-CORE.setting","jit_entries":12159,"entries":12160,"callees":[{"exclusive_time":36565,"id":35594048,"line":13778,"name":"reify-all","allocations":[{"count":12160,"id":19706296,"type":"BOOTCode","jit":12159}],"inclusive_time":38451,"file":"gen/moar/m-CORE.setting","deopt_one":12159,"jit_entries":12159,"entries":12160,"callees":[{"exclusive_time":1885,"id":35552400,"line":14088,"name":"sink","inclusive_time":1885,"file":"gen/moar/m-CORE.setting","jit_entries":24320,"entries":24320}]},{"exclusive_time":895,"id":34818544,"line":856,"name":"sink","inclusive_time":895,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160}]},{"exclusive_time":34208,"id":35605296,"line":15771,"name":"STORE","inclusive_time":384405,"spesh_entries":12112,"file":"gen/moar/m-CORE.setting","jit_entries":11,"entries":12160,"callees":[{"exclusive_time":95609,"id":35605904,"line":15779,"name":"STORE-ITERABLE","allocations":[{"count":12160,"id":19706296,"type":"BOOTCode","jit":12118},{"count":12160,"id":54157808,"type":"IterationBuffer","jit":12118},{"count":12160,"id":29975016,"type":"Scalar","jit":12118}],"inclusive_time":350196,"file":"gen/moar/m-CORE.setting","jit_entries":12118,"entries":12160,"callees":[{"exclusive_time":37319,"id":35546624,"line":13990,"name":"iterator","allocations":[{"count":12160,"id":19706296,"type":"BOOTCode","jit":12160}],"inclusive_time":76540,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160,"callees":[{"exclusive_time":1715,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":1715,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160},{"exclusive_time":1129,"id":35552400,"line":14088,"name":"sink","inclusive_time":1129,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160},{"exclusive_time":9399,"id":35546928,"line":13992,"name":"","allocations":[{"count":12160,"id":29975016,"type":"Scalar","jit":12160}],"inclusive_time":9399,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160},{"exclusive_time":21297,"id":35547536,"line":14004,"name":"new","allocations":[{"count":12160,"id":53651952,"type":"<anon|352550624>","jit":12160}],"inclusive_time":26976,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160,"callees":[{"exclusive_time":1555,"id":34798480,"line":495,"name":"of","inclusive_time":1555,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160},{"exclusive_time":4123,"id":35547232,"line":13998,"name":"BUILD","inclusive_time":4123,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160}]}]},{"exclusive_time":14566,"id":35628704,"line":15464,"name":"new","allocations":[{"count":12160,"id":54158192,"type":"Array::ArrayReificationTarget","jit":12160}],"inclusive_time":14566,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160},{"exclusive_time":98093,"id":35548448,"line":14020,"name":"push-until-lazy","allocations":[{"count":24320,"id":29975016,"type":"Scalar","jit":24252}],"inclusive_time":161048,"file":"gen/moar/m-CORE.setting","jit_entries":12126,"entries":12160,"callees":[{"exclusive_time":34535,"id":35591616,"line":13753,"name":"reify-until-lazy","allocations":[{"count":12160,"id":19706296,"type":"BOOTCode","jit":12160}],"inclusive_time":36462,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160,"callees":[{"exclusive_time":1927,"id":35552400,"line":14088,"name":"sink","inclusive_time":1927,"file":"gen/moar/m-CORE.setting","jit_entries":24320,"entries":24320}]},{"exclusive_time":16199,"id":35629008,"line":15471,"name":"push","allocations":[{"count":24320,"id":29975016,"type":"Scalar","jit":24320}],"inclusive_time":16199,"file":"gen/moar/m-CORE.setting","jit_entries":24320,"entries":24320},{"exclusive_time":1429,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":1429,"file":"gen/moar/m-CORE.setting","inlined_entries":12126,"jit_entries":12160,"entries":12160},{"exclusive_time":6442,"id":35595264,"line":13795,"name":"fully-reified","inclusive_time":8862,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160,"callees":[{"exclusive_time":2420,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":2420,"file":"gen/moar/m-CORE.setting","inlined_entries":24320,"jit_entries":24320,"entries":24320}]}]},{"exclusive_time":2432,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":2432,"file":"gen/moar/m-CORE.setting","inlined_entries":12118,"jit_entries":12160,"entries":12160}]}]},{"exclusive_time":22583,"id":38057408,"line":1621,"name":"","allocations":[{"count":24320,"id":29975160,"spesh":24320,"type":"Block"},{"count":24320,"id":19706296,"spesh":24320,"type":"BOOTCode"}],"inclusive_time":22583,"spesh_entries":24320,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":24320},{"exclusive_time":72738,"id":34348560,"line":12668,"name":"GATHER","allocations":[{"count":12160,"id":19706296,"type":"BOOTCode","jit":12120}],"inclusive_time":145523,"file":"gen/moar/m-CORE.setting","jit_entries":12120,"entries":12160,"callees":[{"exclusive_time":16722,"id":34348864,"line":12669,"name":"","allocations":[{"count":12160,"id":19706296,"type":"BOOTCode","jit":12132},{"count":12160,"id":29975016,"type":"Scalar","jit":12132}],"inclusive_time":16722,"file":"gen/moar/m-CORE.setting","jit_entries":12132,"entries":12160},{"exclusive_time":34516,"id":34349472,"line":12676,"name":"new","allocations":[{"count":12160,"id":53652480,"type":"<anon|340889968>","jit":12120}],"inclusive_time":50506,"file":"gen/moar/m-CORE.setting","jit_entries":12120,"entries":12160,"callees":[{"exclusive_time":15989,"id":38057408,"line":1621,"name":"","allocations":[{"count":24320,"id":29975160,"spesh":24320,"type":"Block"},{"count":24320,"id":19706296,"spesh":24320,"type":"BOOTCode"}],"inclusive_time":15989,"spesh_entries":24320,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":24320}]},{"exclusive_time":5555,"id":35446304,"line":12399,"name":"new","allocations":[{"count":12160,"id":53654904,"type":"Seq","jit":12160}],"inclusive_time":5555,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160}]},{"exclusive_time":13713,"id":35037728,"line":3690,"name":"lazy-if","allocations":[{"count":12160,"id":29975016,"type":"Scalar","jit":12120}],"inclusive_time":13713,"file":"gen/moar/m-CORE.setting","jit_entries":12120,"entries":12160}]},{"exclusive_time":92720,"id":34825536,"line":941,"name":"new","inclusive_time":42239504,"spesh_entries":12131,"file":"gen/moar/m-CORE.setting","entries":12160,"callees":[{"exclusive_time":2198,"id":38067136,"line":3008,"name":"","allocations":[{"count":12160,"id":29974584,"type":"List","jit":12160}],"inclusive_time":2198,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":12160,"entries":12160},{"exclusive_time":164870,"id":38060448,"line":2048,"name":"","allocations":[{"count":24320,"id":19706296,"type":"BOOTCode"},{"count":24320,"id":19707232,"type":"NQPArray"},{"count":12160,"id":19706248,"type":"BOOTHash"},{"count":12160,"id":19706440,"type":"CallCapture"}],"inclusive_time":714975,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":12160,"callees":[{"exclusive_time":32739,"id":38040688,"line":920,"name":"is_bindable","allocations":[{"count":12160,"id":19706296,"spesh":12160,"type":"BOOTCode"}],"inclusive_time":550104,"spesh_entries":12160,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":12160,"callees":[{"exclusive_time":32856,"id":38040992,"line":926,"name":"","inclusive_time":517364,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":12160,"callees":[{"exclusive_time":131477,"id":38038560,"line":606,"name":"bind","allocations":[{"count":12160,"id":29974560,"spesh":12150,"type":"Hash"}],"inclusive_time":484508,"spesh_entries":12150,"file":"gen/moar/m-BOOTSTRAP.nqp","deopt_one":12150,"entries":12160,"callees":[{"exclusive_time":202682,"id":38036736,"line":168,"name":"bind_one_param","allocations":[{"count":97280,"id":19706296,"type":"BOOTCode"},{"count":12160,"id":29975016,"type":"Scalar"}],"inclusive_time":347948,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":48640,"callees":[{"exclusive_time":6606,"id":38361936,"line":2635,"name":"type_check","inclusive_time":6606,"file":"gen/moar/m-Metamodel.nqp","jit_entries":12160,"entries":12160},{"exclusive_time":46204,"id":35444784,"line":12379,"name":"cache","allocations":[{"count":12160,"id":29975016,"type":"Scalar","jit":12130}],"inclusive_time":138660,"file":"gen/moar/m-CORE.setting","jit_entries":12130,"entries":12160,"callees":[{"exclusive_time":33369,"id":35446912,"line":12407,"name":"iterator","inclusive_time":38912,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160,"callees":[{"exclusive_time":1152,"id":35552400,"line":14088,"name":"sink","inclusive_time":1152,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160},{"exclusive_time":4391,"id":38361936,"line":2635,"name":"type_check","inclusive_time":4391,"file":"gen/moar/m-Metamodel.nqp","jit_entries":12160,"entries":12160}]},{"exclusive_time":26099,"id":35536896,"line":13804,"name":"from-iterator","allocations":[{"count":12160,"id":29974584,"type":"List","jit":12156},{"count":12160,"id":54157808,"type":"IterationBuffer","jit":12156},{"count":12160,"id":51227144,"type":"List::Reifier","jit":12156}],"inclusive_time":53542,"file":"gen/moar/m-CORE.setting","jit_entries":12156,"entries":12160,"callees":[{"exclusive_time":24680,"id":35546320,"line":13985,"name":"reification-target","inclusive_time":27443,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160,"callees":[{"exclusive_time":1709,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":1709,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160},{"exclusive_time":1053,"id":35552400,"line":14088,"name":"sink","inclusive_time":1053,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160}]}]}]}]},{"exclusive_time":5082,"id":38038256,"line":573,"name":"handle_optional","inclusive_time":5082,"spesh_entries":12134,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":12160}]}]}]}]},{"exclusive_time":67816,"id":35657584,"line":16936,"name":"new","allocations":[{"count":12160,"id":29975016,"type":"Scalar","jit":12136}],"inclusive_time":41429610,"file":"gen/moar/m-CORE.setting","jit_entries":12136,"entries":12160,"callees":[{"exclusive_time":4134,"id":35444784,"line":12379,"name":"cache","inclusive_time":4134,"file":"gen/moar/m-CORE.setting","jit_entries":12130,"entries":12160},{"exclusive_time":25312,"id":35658192,"line":16943,"name":"create","allocations":[{"count":12160,"id":29975016,"type":"Scalar","jit":12112},{"count":12160,"id":59274784,"type":"array[uint8]","jit":12112}],"inclusive_time":26677,"file":"gen/moar/m-CORE.setting","jit_entries":12112,"entries":12160,"callees":[{"exclusive_time":1364,"id":34818544,"line":856,"name":"sink","inclusive_time":1364,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160}]},{"exclusive_time":190266,"id":35673088,"line":16355,"name":"STORE","allocations":[{"count":12160,"id":29975016,"type":"Scalar","jit":12099},{"count":158080,"id":29974992,"type":"IntLexRef","jit":157287}],"inclusive_time":41330981,"file":"gen/moar/m-CORE.setting","jit_entries":12099,"entries":12160,"callees":[{"exclusive_time":85387,"id":35543584,"line":13932,"name":"elems","allocations":[{"count":12160,"id":29975016,"spesh":12099,"type":"Scalar","jit":61}],"inclusive_time":40810529,"spesh_entries":12099,"file":"gen/moar/m-CORE.setting","jit_entries":61,"entries":12160,"callees":[{"exclusive_time":1630,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":1630,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160},{"exclusive_time":1300,"id":35552400,"line":14088,"name":"sink","inclusive_time":1300,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160},{"exclusive_time":136410,"id":35591616,"line":13753,"name":"reify-until-lazy","allocations":[{"count":12160,"id":19706296,"type":"BOOTCode","jit":12160},{"count":24320,"id":29975016,"type":"Scalar","jit":24320}],"inclusive_time":40712426,"file":"gen/moar/m-CORE.setting","deopt_one":12160,"jit_entries":12160,"entries":12160,"callees":[{"exclusive_time":64710,"id":34959600,"line":2476,"name":"push-until-lazy","allocations":[{"count":12160,"id":29975016,"type":"Scalar","jit":12097}],"inclusive_time":40568727,"file":"gen/moar/m-CORE.setting","jit_entries":12097,"entries":12160,"callees":[{"exclusive_time":1417,"id":34961120,"line":2511,"name":"is-lazy","inclusive_time":1417,"file":"gen/moar/m-CORE.setting","jit_entries":12132,"entries":12160},{"exclusive_time":46823,"id":34958992,"line":2463,"name":"push-all","allocations":[{"count":12160,"id":29975016,"type":"Scalar","jit":12156}],"inclusive_time":40502599,"file":"gen/moar/m-CORE.setting","jit_entries":12156,"entries":12160,"callees":[{"exclusive_time":54563,"id":34958688,"line":2454,"name":"push-at-least","allocations":[{"count":12160,"id":29975016,"spesh":12160,"type":"Scalar"}],"inclusive_time":40453570,"spesh_entries":12160,"file":"gen/moar/m-CORE.setting","entries":12160,"callees":[{"exclusive_time":86418,"id":34352208,"line":12722,"name":"push-exactly","allocations":[{"count":24320,"id":29975016,"type":"Scalar","jit":24070}],"inclusive_time":40399007,"file":"gen/moar/m-CORE.setting","jit_entries":12035,"entries":12160,"callees":[{"exclusive_time":87422,"id":34350384,"line":12698,"name":"","allocations":[{"count":12160,"id":19706296,"type":"BOOTCode"},{"count":12160,"id":29975016,"type":"Scalar"}],"inclusive_time":40302040,"file":"gen/moar/m-CORE.setting","entries":12160,"callees":[{"exclusive_time":174556,"id":34691168,"line":29518,"name":"","allocations":[{"count":12160,"id":19706296,"type":"BOOTCode"}],"inclusive_time":40202622,"file":"gen/moar/m-CORE.setting","entries":12160,"callees":[{"exclusive_time":1957418,"id":34691472,"line":29519,"name":"","allocations":[{"count":170240,"id":29975016,"type":"Scalar","jit":170218}],"inclusive_time":40028066,"file":"gen/moar/m-CORE.setting","jit_entries":170218,"entries":170240,"callees":[{"exclusive_time":151844,"id":38057408,"line":1621,"name":"","allocations":[{"count":170240,"id":29975160,"spesh":170240,"type":"Block"},{"count":170240,"id":19706296,"spesh":170240,"type":"BOOTCode"}],"inclusive_time":151844,"spesh_entries":170240,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":170240},{"exclusive_time":580305,"id":35045632,"line":3779,"name":"map","allocations":[{"count":340480,"id":29975016,"type":"Scalar","jit":340480}],"inclusive_time":3284604,"file":"gen/moar/m-CORE.setting","jit_entries":170240,"entries":170240,"callees":[{"exclusive_time":558328,"id":35546624,"line":13990,"name":"iterator","allocations":[{"count":170240,"id":19706296,"type":"BOOTCode","jit":170240}],"inclusive_time":1308367,"file":"gen/moar/m-CORE.setting","jit_entries":170240,"entries":170240,"callees":[{"exclusive_time":26581,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":26581,"file":"gen/moar/m-CORE.setting","jit_entries":170240,"entries":170240},{"exclusive_time":14713,"id":35552400,"line":14088,"name":"sink","inclusive_time":14713,"file":"gen/moar/m-CORE.setting","jit_entries":170240,"entries":170240},{"exclusive_time":117289,"id":35546928,"line":13992,"name":"","allocations":[{"count":170240,"id":29975016,"type":"Scalar","jit":170240}],"inclusive_time":117289,"file":"gen/moar/m-CORE.setting","jit_entries":170240,"entries":170240},{"exclusive_time":332818,"id":35547536,"line":14004,"name":"new","allocations":[{"count":170240,"id":53651952,"type":"<anon|352550624>","jit":170240}],"inclusive_time":591453,"file":"gen/moar/m-CORE.setting","jit_entries":170240,"entries":170240,"callees":[{"exclusive_time":171053,"id":35623536,"line":16147,"name":"of","inclusive_time":192598,"file":"gen/moar/m-CORE.setting","jit_entries":170240,"entries":170240,"callees":[{"exclusive_time":21545,"id":38396896,"line":3777,"name":"of","inclusive_time":21545,"spesh_entries":170240,"file":"gen/moar/m-Metamodel.nqp","entries":170240}]},{"exclusive_time":66036,"id":35547232,"line":13998,"name":"BUILD","inclusive_time":66036,"file":"gen/moar/m-CORE.setting","jit_entries":170240,"entries":170240}]}]},{"exclusive_time":839306,"id":35048976,"line":3840,"name":"sequential-map","allocations":[{"count":340480,"id":19706296,"type":"BOOTCode","jit":340480},{"count":510720,"id":29975016,"type":"Scalar","jit":510720}],"inclusive_time":1395931,"file":"gen/moar/m-CORE.setting","jit_entries":170240,"entries":170240,"callees":[{"exclusive_time":204900,"id":35157504,"line":6408,"name":"count","inclusive_time":219068,"file":"gen/moar/m-CORE.setting","jit_entries":170240,"entries":170240,"callees":[{"exclusive_time":14168,"id":35839376,"line":18706,"name":"count","inclusive_time":14168,"file":"gen/moar/m-CORE.setting","jit_entries":170240,"entries":170240}]},{"exclusive_time":29462,"id":34228480,"line":8515,"name":"infix:<==>","inclusive_time":29462,"file":"gen/moar/m-CORE.setting","inlined_entries":170240,"jit_entries":170240,"entries":170240},{"exclusive_time":53776,"id":35049888,"line":3847,"name":"","inclusive_time":53776,"file":"gen/moar/m-CORE.setting","jit_entries":170240,"entries":170240},{"exclusive_time":203292,"id":35147168,"line":3827,"name":"new","allocations":[{"count":510720,"id":29975016,"type":"Scalar","jit":510720},{"count":170240,"id":53654184,"type":"<anon|159066640>","jit":170240}],"inclusive_time":203292,"file":"gen/moar/m-CORE.setting","jit_entries":170240,"entries":170240},{"exclusive_time":51023,"id":35446304,"line":12399,"name":"new","allocations":[{"count":170240,"id":53654904,"type":"Seq","jit":170240}],"inclusive_time":51023,"file":"gen/moar/m-CORE.setting","jit_entries":170240,"entries":170240}]}]},{"exclusive_time":399273,"id":35446912,"line":12407,"name":"iterator","inclusive_time":493231,"file":"gen/moar/m-CORE.setting","jit_entries":170240,"entries":170240,"callees":[{"exclusive_time":14381,"id":35552400,"line":14088,"name":"sink","inclusive_time":14381,"file":"gen/moar/m-CORE.setting","jit_entries":170240,"entries":170240},{"exclusive_time":79576,"id":38361936,"line":2635,"name":"type_check","inclusive_time":79576,"file":"gen/moar/m-Metamodel.nqp","jit_entries":170240,"entries":170240}]},{"exclusive_time":212719,"id":35536896,"line":13804,"name":"from-iterator","allocations":[{"count":170240,"id":29974584,"type":"List","jit":170240},{"count":170240,"id":54157808,"type":"IterationBuffer","jit":170240},{"count":170240,"id":51227144,"type":"List::Reifier","jit":170240}],"inclusive_time":501720,"file":"gen/moar/m-CORE.setting","jit_entries":170240,"entries":170240,"callees":[{"exclusive_time":253839,"id":35546320,"line":13985,"name":"reification-target","inclusive_time":289001,"file":"gen/moar/m-CORE.setting","jit_entries":170240,"entries":170240,"callees":[{"exclusive_time":21805,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":21805,"file":"gen/moar/m-CORE.setting","jit_entries":170240,"entries":170240},{"exclusive_time":13356,"id":35552400,"line":14088,"name":"sink","inclusive_time":13356,"file":"gen/moar/m-CORE.setting","jit_entries":170240,"entries":170240}]}]},{"exclusive_time":341240,"id":35567296,"line":14247,"name":"eager","inclusive_time":30038047,"file":"gen/moar/m-CORE.setting","jit_entries":170240,"entries":170240,"callees":[{"exclusive_time":783050,"id":35594048,"line":13778,"name":"reify-all","allocations":[{"count":170240,"id":19706296,"type":"BOOTCode","jit":170226},{"count":340480,"id":29975016,"type":"Scalar","jit":340452}],"inclusive_time":29683524,"file":"gen/moar/m-CORE.setting","jit_entries":170226,"entries":170240,"callees":[{"exclusive_time":255894,"id":34958992,"line":2463,"name":"push-all","allocations":[{"count":170240,"id":29975016,"type":"Scalar","jit":170240}],"inclusive_time":28752676,"file":"gen/moar/m-CORE.setting","jit_entries":170240,"entries":170240,"callees":[{"exclusive_time":427077,"id":34958688,"line":2454,"name":"push-at-least","allocations":[{"count":170240,"id":29975016,"spesh":170240,"type":"Scalar"}],"inclusive_time":28482838,"spesh_entries":170240,"file":"gen/moar/m-CORE.setting","entries":170240,"callees":[{"exclusive_time":2572531,"id":34958080,"line":2436,"name":"push-exactly","allocations":[{"count":328320,"id":29975016,"type":"Scalar","jit":328320}],"inclusive_time":28055761,"file":"gen/moar/m-CORE.setting","deopt_one":158080,"jit_entries":170240,"entries":170240,"callees":[{"exclusive_time":4658992,"id":35050192,"line":3853,"name":"pull-one","allocations":[{"count":486400,"id":19706296,"type":"BOOTCode","jit":486400},{"count":1155200,"id":29975016,"type":"Scalar","jit":1155200}],"inclusive_time":21640679,"file":"gen/moar/m-CORE.setting","deopt_one":170240,"jit_entries":486400,"entries":486400,"callees":[{"exclusive_time":64982,"id":34255840,"line":8705,"name":"prefix:<!>","inclusive_time":64982,"file":"gen/moar/m-CORE.setting","inlined_entries":316160,"jit_entries":486400,"entries":486400},{"exclusive_time":347740,"id":35163280,"line":6478,"name":"phasers","inclusive_time":374208,"file":"gen/moar/m-CORE.setting","jit_entries":340480,"entries":340480,"callees":[{"exclusive_time":26467,"id":35552400,"line":14088,"name":"sink","inclusive_time":26467,"file":"gen/moar/m-CORE.setting","jit_entries":340480,"entries":340480}]},{"exclusive_time":118600,"id":34151264,"line":7763,"name":"prefix:<+>","inclusive_time":822098,"file":"gen/moar/m-CORE.setting","jit_entries":170240,"entries":170240,"callees":[{"exclusive_time":179611,"id":35541456,"line":13911,"name":"Numeric","inclusive_time":703498,"spesh_entries":170240,"file":"gen/moar/m-CORE.setting","entries":170240,"callees":[{"exclusive_time":479106,"id":35543584,"line":13932,"name":"elems","inclusive_time":523887,"spesh_entries":170240,"file":"gen/moar/m-CORE.setting","entries":170240,"callees":[{"exclusive_time":18554,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":18554,"file":"gen/moar/m-CORE.setting","jit_entries":170240,"entries":170240},{"exclusive_time":26226,"id":35552400,"line":14088,"name":"sink","inclusive_time":26226,"file":"gen/moar/m-CORE.setting","jit_entries":340480,"entries":340480}]}]}]},{"exclusive_time":391398,"id":34824016,"line":929,"name":"Bool","inclusive_time":848382,"spesh_entries":170240,"file":"gen/moar/m-CORE.setting","entries":170240,"callees":[{"exclusive_time":25806,"id":38067136,"line":3008,"name":"","allocations":[{"count":170240,"id":29974584,"type":"List","jit":170240}],"inclusive_time":25806,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":170240,"entries":170240},{"exclusive_time":388951,"id":35540544,"line":13904,"name":"Bool","inclusive_time":431178,"file":"gen/moar/m-CORE.setting","jit_entries":170240,"entries":170240,"callees":[{"exclusive_time":18157,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":18157,"file":"gen/moar/m-CORE.setting","jit_entries":170240,"entries":170240},{"exclusive_time":13646,"id":35552400,"line":14088,"name":"sink","inclusive_time":13646,"file":"gen/moar/m-CORE.setting","jit_entries":170240,"entries":170240},{"exclusive_time":10422,"id":34254320,"line":8699,"name":"prefix:<so>","inclusive_time":10422,"file":"gen/moar/m-CORE.setting","jit_entries":170240,"entries":170240}]}]},{"exclusive_time":82649,"id":35552400,"line":14088,"name":"sink","inclusive_time":82649,"file":"gen/moar/m-CORE.setting","jit_entries":972800,"entries":972800},{"exclusive_time":302844,"id":35547840,"line":14006,"name":"pull-one","inclusive_time":357267,"file":"gen/moar/m-CORE.setting","jit_entries":486400,"entries":486400,"callees":[{"exclusive_time":54423,"id":35548144,"line":14013,"name":"reify-and-pull-one","inclusive_time":54423,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080}]},{"exclusive_time":989670,"id":25520320,"line":1558,"name":"infix:<=:=>","inclusive_time":4281311,"file":"gen/moar/m-CORE.setting","jit_entries":328320,"entries":328320,"callees":[{"exclusive_time":3079821,"id":38060448,"line":2048,"name":"","allocations":[{"count":656640,"id":19706296,"type":"BOOTCode"},{"count":656640,"id":19707232,"type":"NQPArray"},{"count":328320,"id":19706248,"type":"BOOTHash"}],"inclusive_time":3190605,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":328320,"callees":[{"exclusive_time":110784,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":110784,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":328320,"entries":328320}]},{"exclusive_time":101035,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":101035,"file":"gen/moar/m-CORE.setting","entries":328320}]},{"exclusive_time":976594,"id":34691776,"line":29520,"name":"","inclusive_time":9796290,"file":"gen/moar/m-CORE.setting","deopt_one":12160,"jit_entries":328320,"entries":328320,"callees":[{"exclusive_time":356386,"id":35000944,"line":2557,"name":"pull-one","allocations":[{"count":328320,"id":19706296,"type":"BOOTCode","jit":328320}],"inclusive_time":5281584,"file":"gen/moar/m-CORE.setting","jit_entries":328320,"entries":328320,"callees":[{"exclusive_time":938612,"id":35001552,"line":2561,"name":"","allocations":[{"count":328320,"id":29975016,"type":"Scalar","jit":328320}],"inclusive_time":4925198,"file":"gen/moar/m-CORE.setting","deopt_one":12160,"jit_entries":328320,"entries":328320,"callees":[{"exclusive_time":255443,"id":35680384,"line":16499,"name":"pull-one","allocations":[{"count":316160,"id":29974848,"spesh":316160,"type":"IntPosRef"}],"inclusive_time":255443,"spesh_entries":328320,"file":"gen/moar/m-CORE.setting","entries":328320},{"exclusive_time":849365,"id":25520320,"line":1558,"name":"infix:<=:=>","inclusive_time":3729532,"file":"gen/moar/m-CORE.setting","jit_entries":316160,"entries":316160,"callees":[{"exclusive_time":2695134,"id":38060448,"line":2048,"name":"","allocations":[{"count":632320,"id":19706296,"type":"BOOTCode"},{"count":632320,"id":19707232,"type":"NQPArray"},{"count":316160,"id":19706248,"type":"BOOTHash"}],"inclusive_time":2786979,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":316160,"callees":[{"exclusive_time":91844,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":91844,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":316160,"entries":316160}]},{"exclusive_time":93187,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":93187,"file":"gen/moar/m-CORE.setting","entries":316160}]},{"exclusive_time":1609,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":1609,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160}]}]},{"exclusive_time":737569,"id":25520320,"line":1558,"name":"infix:<=:=>","inclusive_time":3439185,"file":"gen/moar/m-CORE.setting","jit_entries":316160,"entries":316160,"callees":[{"exclusive_time":2528426,"id":38060448,"line":2048,"name":"","allocations":[{"count":632320,"id":19706296,"type":"BOOTCode"},{"count":632320,"id":19707232,"type":"NQPArray"},{"count":316160,"id":19706248,"type":"BOOTHash"}],"inclusive_time":2613703,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":316160,"callees":[{"exclusive_time":85277,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":85277,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":316160,"entries":316160}]},{"exclusive_time":87912,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":87912,"file":"gen/moar/m-CORE.setting","entries":316160}]},{"exclusive_time":28522,"id":35552400,"line":14088,"name":"sink","inclusive_time":28522,"file":"gen/moar/m-CORE.setting","jit_entries":316160,"entries":316160},{"exclusive_time":907,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":907,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160},{"exclusive_time":22505,"id":25500864,"line":655,"name":"last","inclusive_time":69496,"file":"gen/moar/m-CORE.setting","jit_entries":12140,"entries":12160,"callees":[{"exclusive_time":28179,"id":25496304,"line":603,"name":"THROW-NIL","allocations":[{"count":12160,"id":19706488,"spesh":12140,"type":"BOOTException"}],"inclusive_time":46991,"spesh_entries":12140,"file":"gen/moar/m-CORE.setting","entries":12160,"callees":[{"exclusive_time":18811,"id":35051712,"line":3899,"name":"","allocations":[{"count":24320,"id":29974944,"spesh":24160,"type":"Int"},{"count":12160,"id":29975016,"spesh":12080,"type":"Scalar"}],"inclusive_time":18811,"spesh_entries":12080,"file":"gen/moar/m-CORE.setting","entries":12160}]}]}]},{"exclusive_time":16449,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":16449,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080},{"exclusive_time":55843,"id":34818544,"line":856,"name":"sink","inclusive_time":55843,"file":"gen/moar/m-CORE.setting","entries":158080},{"exclusive_time":241508,"id":35162368,"line":6469,"name":"fire_phasers","allocations":[{"count":170240,"id":19706296,"spesh":170240,"type":"BOOTCode"}],"inclusive_time":282201,"spesh_entries":170240,"file":"gen/moar/m-CORE.setting","entries":170240,"callees":[{"exclusive_time":40693,"id":34255840,"line":8705,"name":"prefix:<!>","inclusive_time":40693,"spesh_entries":170240,"file":"gen/moar/m-CORE.setting","inlined_entries":170240,"entries":170240}]}]},{"exclusive_time":783256,"id":25520320,"line":1558,"name":"infix:<=:=>","inclusive_time":3502239,"file":"gen/moar/m-CORE.setting","jit_entries":316160,"entries":316160,"callees":[{"exclusive_time":2546687,"id":38060448,"line":2048,"name":"","allocations":[{"count":632320,"id":19706296,"type":"BOOTCode"},{"count":632320,"id":19707232,"type":"NQPArray"},{"count":316160,"id":19706248,"type":"BOOTHash"}],"inclusive_time":2631732,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":316160,"callees":[{"exclusive_time":85045,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":85045,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":316160,"entries":316160}]},{"exclusive_time":87250,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":87250,"file":"gen/moar/m-CORE.setting","entries":316160}]},{"exclusive_time":63096,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":63096,"file":"gen/moar/m-CORE.setting","inlined_entries":12160,"jit_entries":486400,"entries":486400},{"exclusive_time":263466,"id":35438704,"line":12283,"name":"push","inclusive_time":263466,"file":"gen/moar/m-CORE.setting","entries":316160},{"exclusive_time":13748,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":13748,"file":"gen/moar/m-CORE.setting","inlined_entries":12160,"jit_entries":170240,"entries":170240}]}]},{"exclusive_time":13942,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":13942,"file":"gen/moar/m-CORE.setting","inlined_entries":170240,"jit_entries":170240,"entries":170240}]},{"exclusive_time":52966,"id":34818544,"line":856,"name":"sink","inclusive_time":52966,"file":"gen/moar/m-CORE.setting","entries":170240},{"exclusive_time":80897,"id":38361936,"line":2635,"name":"type_check","inclusive_time":80897,"file":"gen/moar/m-Metamodel.nqp","jit_entries":170240,"entries":170240},{"exclusive_time":13934,"id":35552400,"line":14088,"name":"sink","inclusive_time":13934,"file":"gen/moar/m-CORE.setting","jit_entries":170240,"entries":170240}]},{"exclusive_time":13281,"id":34818544,"line":856,"name":"sink","inclusive_time":13281,"file":"gen/moar/m-CORE.setting","jit_entries":170240,"entries":170240}]},{"exclusive_time":26048,"id":35552400,"line":14088,"name":"sink","inclusive_time":26048,"file":"gen/moar/m-CORE.setting","jit_entries":328320,"entries":328320},{"exclusive_time":846118,"id":35543584,"line":13932,"name":"elems","allocations":[{"count":170240,"id":29975016,"spesh":170218,"type":"Scalar","jit":22}],"inclusive_time":1367442,"spesh_entries":170218,"file":"gen/moar/m-CORE.setting","jit_entries":22,"entries":170240,"callees":[{"exclusive_time":23648,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":23648,"file":"gen/moar/m-CORE.setting","jit_entries":170240,"entries":170240},{"exclusive_time":13497,"id":35552400,"line":14088,"name":"sink","inclusive_time":13497,"file":"gen/moar/m-CORE.setting","jit_entries":170240,"entries":170240},{"exclusive_time":329330,"id":35591616,"line":13753,"name":"reify-until-lazy","allocations":[{"count":170240,"id":19706296,"type":"BOOTCode","jit":170240}],"inclusive_time":354809,"file":"gen/moar/m-CORE.setting","jit_entries":170240,"entries":170240,"callees":[{"exclusive_time":25478,"id":35552400,"line":14088,"name":"sink","inclusive_time":25478,"file":"gen/moar/m-CORE.setting","jit_entries":340480,"entries":340480}]},{"exclusive_time":12749,"id":34818544,"line":856,"name":"sink","inclusive_time":12749,"file":"gen/moar/m-CORE.setting","jit_entries":170240,"entries":170240},{"exclusive_time":83171,"id":35595264,"line":13795,"name":"fully-reified","inclusive_time":116618,"file":"gen/moar/m-CORE.setting","jit_entries":170240,"entries":170240,"callees":[{"exclusive_time":33446,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":33446,"file":"gen/moar/m-CORE.setting","inlined_entries":340480,"jit_entries":340480,"entries":340480}]}]},{"exclusive_time":27189,"id":34229392,"line":8526,"name":"infix:«<»","inclusive_time":27189,"file":"gen/moar/m-CORE.setting","inlined_entries":170218,"jit_entries":170240,"entries":170240},{"exclusive_time":17646,"id":34228480,"line":8515,"name":"infix:<==>","inclusive_time":17646,"file":"gen/moar/m-CORE.setting","inlined_entries":158059,"jit_entries":158080,"entries":158080},{"exclusive_time":301297,"id":35568208,"line":14273,"name":"FLATTENABLE_LIST","inclusive_time":343291,"file":"gen/moar/m-CORE.setting","jit_entries":158067,"entries":158080,"callees":[{"exclusive_time":18915,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":18915,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080},{"exclusive_time":23078,"id":35552400,"line":14088,"name":"sink","inclusive_time":23078,"file":"gen/moar/m-CORE.setting","jit_entries":316160,"entries":316160}]},{"exclusive_time":16743,"id":35568512,"line":14278,"name":"FLATTENABLE_HASH","allocations":[{"count":158080,"id":19706248,"type":"BOOTHash","jit":158080}],"inclusive_time":16743,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080},{"exclusive_time":397235,"id":34206592,"line":8023,"name":"infix:<+^>","inclusive_time":498819,"file":"gen/moar/m-CORE.setting","entries":158080,"callees":[{"exclusive_time":101584,"id":34233344,"line":8571,"name":"infix:<+^>","inclusive_time":101584,"file":"gen/moar/m-CORE.setting","entries":158080}]},{"exclusive_time":173997,"id":25498128,"line":633,"name":"take-rw","inclusive_time":1273564,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080,"callees":[{"exclusive_time":206443,"id":25496000,"line":596,"name":"THROW","allocations":[{"count":158080,"id":19706488,"spesh":158080,"type":"BOOTException"}],"inclusive_time":1099566,"spesh_entries":158080,"file":"gen/moar/m-CORE.setting","entries":158080,"callees":[{"exclusive_time":247384,"id":34350992,"line":-1,"name":"","allocations":[{"count":316160,"id":29974944,"spesh":316160,"type":"Int"}],"inclusive_time":893123,"spesh_entries":158080,"file":"/usr/local/src/rakudo/install/share/perl6/runtime/CORE.setting.moarvm","entries":158080,"callees":[{"exclusive_time":536465,"id":34349776,"line":12680,"name":"","inclusive_time":645738,"file":"gen/moar/m-CORE.setting","entries":158080,"callees":[{"exclusive_time":109273,"id":35438704,"line":12283,"name":"push","inclusive_time":109273,"file":"gen/moar/m-CORE.setting","entries":158080}]}]}]}]},{"exclusive_time":14008,"id":34818544,"line":856,"name":"sink","inclusive_time":14008,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080},{"exclusive_time":10393,"id":25500864,"line":655,"name":"last","inclusive_time":16444,"file":"gen/moar/m-CORE.setting","jit_entries":12140,"entries":12160,"callees":[{"exclusive_time":6050,"id":25496304,"line":603,"name":"THROW-NIL","allocations":[{"count":12160,"id":19706488,"spesh":12140,"type":"BOOTException"}],"inclusive_time":6050,"spesh_entries":12140,"file":"gen/moar/m-CORE.setting","entries":12160}]}]}]},{"exclusive_time":11995,"id":38057408,"line":1621,"name":"","allocations":[{"count":12160,"id":29975160,"spesh":12160,"type":"Block"},{"count":12160,"id":19706296,"spesh":12160,"type":"BOOTCode"}],"inclusive_time":11995,"spesh_entries":12160,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":12160}]},{"exclusive_time":10548,"id":34350688,"line":12700,"name":"","inclusive_time":10548,"file":"gen/moar/m-CORE.setting","jit_entries":12116,"entries":12160}]}]},{"exclusive_time":2205,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":2205,"file":"gen/moar/m-CORE.setting","inlined_entries":12156,"jit_entries":12160,"entries":12160}]}]},{"exclusive_time":977,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":977,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160},{"exclusive_time":5169,"id":38361936,"line":2635,"name":"type_check","inclusive_time":5169,"file":"gen/moar/m-Metamodel.nqp","jit_entries":12160,"entries":12160},{"exclusive_time":1140,"id":35552400,"line":14088,"name":"sink","inclusive_time":1140,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160}]},{"exclusive_time":991,"id":34818544,"line":856,"name":"sink","inclusive_time":991,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160},{"exclusive_time":6629,"id":35595264,"line":13795,"name":"fully-reified","inclusive_time":8792,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160,"callees":[{"exclusive_time":2163,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":2163,"file":"gen/moar/m-CORE.setting","inlined_entries":24320,"jit_entries":24320,"entries":24320}]}]},{"exclusive_time":303186,"id":35545104,"line":13954,"name":"AT-POS","inclusive_time":330184,"spesh_entries":158067,"file":"gen/moar/m-CORE.setting","entries":158080,"callees":[{"exclusive_time":14988,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":14988,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080},{"exclusive_time":12009,"id":35552400,"line":14088,"name":"sink","inclusive_time":12009,"file":"gen/moar/m-CORE.setting","jit_entries":158080,"entries":158080}]}]}]}]},{"exclusive_time":122525,"id":77499056,"line":11,"name":"random-bytes","allocations":[{"count":12159,"id":19706296,"spesh":11903,"type":"BOOTCode"},{"count":12159,"id":29975016,"spesh":11903,"type":"Scalar"}],"inclusive_time":3804718,"spesh_entries":11903,"file":"hibbified-249.p6","entries":12159,"callees":[{"exclusive_time":13736,"id":38057408,"line":1621,"name":"","allocations":[{"count":12159,"id":29974632,"spesh":12157,"type":"Sub"},{"count":12159,"id":19706296,"spesh":12157,"type":"BOOTCode"}],"inclusive_time":13736,"spesh_entries":12157,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":12159},{"exclusive_time":10836,"id":38055584,"line":1563,"name":"","allocations":[{"count":12159,"id":29975184,"spesh":12140,"type":"Code"},{"count":12159,"id":19706296,"spesh":12140,"type":"BOOTCode"}],"inclusive_time":10836,"spesh_entries":12140,"file":"gen/moar/m-BOOTSTRAP.nqp","inlined_entries":11903,"entries":12159},{"exclusive_time":273571,"id":34371056,"line":14616,"name":"infix:<xx>","allocations":[{"count":12159,"id":19706296,"type":"BOOTCode","jit":11904},{"count":24318,"id":29975016,"type":"Scalar","jit":23808},{"count":12159,"id":19706224,"type":"BOOTArray","jit":11904},{"count":12159,"id":29974584,"type":"List","jit":11904}],"inclusive_time":2153771,"file":"gen/moar/m-CORE.setting","jit_entries":11904,"entries":12159,"callees":[{"exclusive_time":231075,"id":68890176,"line":25,"name":"","inclusive_time":1868029,"file":"hibbified-249.p6","jit_entries":157923,"entries":158067,"callees":[{"exclusive_time":1349643,"id":70557952,"line":12,"name":"random-byte","allocations":[{"count":1264536,"id":29974920,"spesh":1262184,"type":"Num"},{"count":186261,"id":29974944,"spesh":185901,"type":"Int"}],"inclusive_time":1636954,"spesh_entries":157773,"file":"hibbified-249.p6","entries":158067,"callees":[{"exclusive_time":190472,"id":34284416,"line":9211,"name":"infix:«<»","inclusive_time":190472,"spesh_entries":1262184,"file":"gen/moar/m-CORE.setting","inlined_entries":1262184,"jit_entries":2252,"entries":1264536},{"exclusive_time":94601,"id":35552400,"line":14088,"name":"sink","inclusive_time":94601,"file":"gen/moar/m-CORE.setting","jit_entries":1236342,"entries":1236342},{"exclusive_time":2235,"id":34818544,"line":856,"name":"sink","inclusive_time":2235,"file":"gen/moar/m-CORE.setting","jit_entries":28194,"entries":28194}]}]},{"exclusive_time":12170,"id":34818544,"line":856,"name":"sink","inclusive_time":12170,"file":"gen/moar/m-CORE.setting","jit_entries":158067,"entries":158067}]},{"exclusive_time":103586,"id":34825536,"line":941,"name":"new","inclusive_time":1503848,"spesh_entries":12131,"file":"gen/moar/m-CORE.setting","entries":12159,"callees":[{"exclusive_time":1777,"id":38067136,"line":3008,"name":"","allocations":[{"count":12159,"id":29974584,"type":"List","jit":12159}],"inclusive_time":1777,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":12159,"entries":12159},{"exclusive_time":212082,"id":38060448,"line":2048,"name":"","allocations":[{"count":24318,"id":19706296,"type":"BOOTCode"},{"count":24318,"id":19707232,"type":"NQPArray"},{"count":12159,"id":19706248,"type":"BOOTHash"},{"count":12159,"id":19706440,"type":"CallCapture"}],"inclusive_time":749900,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":12159,"callees":[{"exclusive_time":57186,"id":38040688,"line":920,"name":"is_bindable","allocations":[{"count":12159,"id":19706296,"spesh":12159,"type":"BOOTCode"}],"inclusive_time":537818,"spesh_entries":12159,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":12159,"callees":[{"exclusive_time":51613,"id":38040992,"line":926,"name":"","inclusive_time":480631,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":12159,"callees":[{"exclusive_time":189044,"id":38038560,"line":606,"name":"bind","allocations":[{"count":12159,"id":29974560,"spesh":12150,"type":"Hash"}],"inclusive_time":429018,"spesh_entries":12150,"file":"gen/moar/m-BOOTSTRAP.nqp","deopt_one":12150,"entries":12159,"callees":[{"exclusive_time":220620,"id":38036736,"line":168,"name":"bind_one_param","allocations":[{"count":97272,"id":19706296,"type":"BOOTCode"},{"count":12159,"id":29975016,"type":"Scalar"}],"inclusive_time":232810,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":48636,"callees":[{"exclusive_time":12190,"id":38361936,"line":2635,"name":"type_check","inclusive_time":12190,"file":"gen/moar/m-Metamodel.nqp","jit_entries":12159,"entries":12159}]},{"exclusive_time":7163,"id":38038256,"line":573,"name":"handle_optional","inclusive_time":7163,"spesh_entries":12134,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":12159}]}]}]}]},{"exclusive_time":75507,"id":35657584,"line":16936,"name":"new","allocations":[{"count":12159,"id":29975016,"type":"Scalar","jit":12130}],"inclusive_time":648583,"file":"gen/moar/m-CORE.setting","jit_entries":12130,"entries":12159,"callees":[{"exclusive_time":41257,"id":35658192,"line":16943,"name":"create","allocations":[{"count":12159,"id":29975016,"type":"Scalar","jit":12111},{"count":12159,"id":59274784,"type":"array[uint8]","jit":12111}],"inclusive_time":42271,"file":"gen/moar/m-CORE.setting","jit_entries":12111,"entries":12159,"callees":[{"exclusive_time":1014,"id":34818544,"line":856,"name":"sink","inclusive_time":1014,"file":"gen/moar/m-CORE.setting","jit_entries":12159,"entries":12159}]},{"exclusive_time":148719,"id":35673088,"line":16355,"name":"STORE","allocations":[{"count":12159,"id":29975016,"type":"Scalar","jit":12099},{"count":158067,"id":29974992,"type":"IntLexRef","jit":157287}],"inclusive_time":530804,"file":"gen/moar/m-CORE.setting","jit_entries":12099,"entries":12159,"callees":[{"exclusive_time":53720,"id":35543584,"line":13932,"name":"elems","allocations":[{"count":12159,"id":29975016,"spesh":12099,"type":"Scalar","jit":60}],"inclusive_time":57564,"spesh_entries":12099,"file":"gen/moar/m-CORE.setting","deopt_one":12159,"jit_entries":60,"entries":12159,"callees":[{"exclusive_time":1887,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":1887,"file":"gen/moar/m-CORE.setting","jit_entries":12159,"entries":12159},{"exclusive_time":1956,"id":35552400,"line":14088,"name":"sink","inclusive_time":1956,"file":"gen/moar/m-CORE.setting","jit_entries":24318,"entries":24318}]},{"exclusive_time":297832,"id":35545104,"line":13954,"name":"AT-POS","inclusive_time":324520,"spesh_entries":158067,"file":"gen/moar/m-CORE.setting","deopt_one":158067,"entries":158067,"callees":[{"exclusive_time":15220,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":15220,"file":"gen/moar/m-CORE.setting","jit_entries":158067,"entries":158067},{"exclusive_time":11467,"id":35552400,"line":14088,"name":"sink","inclusive_time":11467,"file":"gen/moar/m-CORE.setting","jit_entries":158067,"entries":158067}]}]}]}]}]}]},{"exclusive_time":568,"id":25500864,"line":655,"name":"last","inclusive_time":2378,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":608,"callees":[{"exclusive_time":1085,"id":25496304,"line":603,"name":"THROW-NIL","allocations":[{"count":608,"id":19706488,"spesh":607,"type":"BOOTException"}],"inclusive_time":1809,"spesh_entries":607,"file":"gen/moar/m-CORE.setting","entries":608,"callees":[{"exclusive_time":724,"id":35051712,"line":3899,"name":"","allocations":[{"count":1216,"id":29974944,"spesh":1208,"type":"Int"}],"inclusive_time":724,"spesh_entries":604,"file":"gen/moar/m-CORE.setting","entries":608}]}]}]},{"exclusive_time":1124,"id":35162368,"line":6469,"name":"fire_phasers","allocations":[{"count":608,"id":19706296,"spesh":608,"type":"BOOTCode"}],"inclusive_time":1284,"spesh_entries":608,"file":"gen/moar/m-CORE.setting","entries":608,"callees":[{"exclusive_time":160,"id":34255840,"line":8705,"name":"prefix:<!>","inclusive_time":160,"spesh_entries":608,"file":"gen/moar/m-CORE.setting","inlined_entries":608,"entries":608}]}]},{"exclusive_time":44517,"id":25520320,"line":1558,"name":"infix:<=:=>","inclusive_time":176593,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160,"callees":[{"exclusive_time":123872,"id":38060448,"line":2048,"name":"","allocations":[{"count":24320,"id":19706296,"type":"BOOTCode"},{"count":24320,"id":19707232,"type":"NQPArray"},{"count":12160,"id":19706248,"type":"BOOTHash"}],"inclusive_time":128265,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":12160,"callees":[{"exclusive_time":4393,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":4393,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":12160,"entries":12160}]},{"exclusive_time":3810,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":3810,"file":"gen/moar/m-CORE.setting","entries":12160}]},{"exclusive_time":2094,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":2094,"file":"gen/moar/m-CORE.setting","jit_entries":12768,"entries":12768},{"exclusive_time":9560,"id":35438704,"line":12283,"name":"push","inclusive_time":9560,"file":"gen/moar/m-CORE.setting","entries":12160},{"exclusive_time":101,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":101,"file":"gen/moar/m-CORE.setting","jit_entries":608,"entries":608}]}]},{"exclusive_time":82,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":82,"file":"gen/moar/m-CORE.setting","inlined_entries":607,"jit_entries":608,"entries":608}]},{"exclusive_time":217,"id":34818544,"line":856,"name":"sink","inclusive_time":217,"file":"gen/moar/m-CORE.setting","entries":608},{"exclusive_time":331,"id":38361936,"line":2635,"name":"type_check","inclusive_time":331,"file":"gen/moar/m-Metamodel.nqp","jit_entries":608,"entries":608},{"exclusive_time":51,"id":35552400,"line":14088,"name":"sink","inclusive_time":51,"file":"gen/moar/m-CORE.setting","jit_entries":608,"entries":608}]},{"exclusive_time":48,"id":34818544,"line":856,"name":"sink","inclusive_time":48,"file":"gen/moar/m-CORE.setting","jit_entries":608,"entries":608}]}]},{"exclusive_time":22457,"id":34377440,"line":14673,"name":"infix:<X>","allocations":[{"count":1214,"id":19706296,"spesh":702,"type":"BOOTCode"},{"count":607,"id":29975016,"spesh":351,"type":"Scalar"},{"count":607,"id":29974896,"spesh":351,"type":"Array"},{"count":607,"id":19706224,"spesh":351,"type":"BOOTArray"},{"count":607,"id":19706752,"spesh":351,"type":"BOOTIntArray"},{"count":607,"id":29974992,"spesh":351,"type":"IntLexRef"}],"inclusive_time":464152,"spesh_entries":351,"file":"gen/moar/m-CORE.setting","entries":607,"callees":[{"exclusive_time":5114,"id":35537504,"line":13831,"name":"from-slurpy-onearg","allocations":[{"count":607,"id":19706296,"spesh":607,"type":"BOOTCode"},{"count":607,"id":29975112,"spesh":607,"type":"Capture"},{"count":607,"id":29975016,"spesh":607,"type":"Scalar"}],"inclusive_time":12199,"spesh_entries":607,"file":"gen/moar/m-CORE.setting","entries":607,"callees":[{"exclusive_time":300,"id":35435664,"line":12248,"name":"FLATTENABLE_LIST","inclusive_time":300,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":607},{"exclusive_time":259,"id":35435968,"line":12249,"name":"FLATTENABLE_HASH","allocations":[{"count":607,"id":19706248,"type":"BOOTHash","jit":607}],"inclusive_time":259,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":607},{"exclusive_time":4677,"id":35537200,"line":13817,"name":"from-slurpy","allocations":[{"count":607,"id":29974584,"type":"List"},{"count":607,"id":54157808,"type":"IterationBuffer"},{"count":607,"id":51227144,"type":"List::Reifier"}],"inclusive_time":6524,"file":"gen/moar/m-CORE.setting","entries":607,"callees":[{"exclusive_time":127,"id":38067136,"line":3008,"name":"","allocations":[{"count":607,"id":29974584,"type":"List","jit":607}],"inclusive_time":127,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":607,"entries":607},{"exclusive_time":1568,"id":35546320,"line":13985,"name":"reification-target","inclusive_time":1720,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":607,"callees":[{"exclusive_time":89,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":89,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":607},{"exclusive_time":62,"id":35552400,"line":14088,"name":"sink","inclusive_time":62,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":607}]}]}]},{"exclusive_time":4178,"id":35543584,"line":13932,"name":"elems","allocations":[{"count":607,"id":29975016,"spesh":351,"type":"Scalar","jit":256}],"inclusive_time":18283,"spesh_entries":351,"file":"gen/moar/m-CORE.setting","jit_entries":256,"entries":607,"callees":[{"exclusive_time":64,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":64,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":607},{"exclusive_time":51,"id":35552400,"line":14088,"name":"sink","inclusive_time":51,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":607},{"exclusive_time":5338,"id":35591616,"line":13753,"name":"reify-until-lazy","allocations":[{"count":607,"id":19706296,"type":"BOOTCode","jit":607},{"count":1214,"id":29975016,"type":"Scalar","jit":1214}],"inclusive_time":13190,"file":"gen/moar/m-CORE.setting","deopt_one":607,"jit_entries":607,"entries":607,"callees":[{"exclusive_time":48,"id":35552400,"line":14088,"name":"sink","inclusive_time":48,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":607},{"exclusive_time":102,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":102,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":607},{"exclusive_time":4126,"id":35592832,"line":13760,"name":"","allocations":[{"count":2428,"id":19706296,"type":"BOOTCode","jit":2428}],"inclusive_time":7700,"file":"gen/moar/m-CORE.setting","deopt_one":1214,"jit_entries":1214,"entries":1214,"callees":[{"exclusive_time":2862,"id":35593744,"line":13769,"name":"","allocations":[{"count":1214,"id":29975016,"type":"Scalar","jit":1214}],"inclusive_time":3141,"file":"gen/moar/m-CORE.setting","jit_entries":1214,"entries":1214,"callees":[{"exclusive_time":278,"id":35438704,"line":12283,"name":"push","inclusive_time":278,"file":"gen/moar/m-CORE.setting","jit_entries":1209,"entries":1214}]},{"exclusive_time":432,"id":34818544,"line":856,"name":"sink","inclusive_time":432,"file":"gen/moar/m-CORE.setting","entries":1214}]}]},{"exclusive_time":56,"id":34818544,"line":856,"name":"sink","inclusive_time":56,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":607},{"exclusive_time":590,"id":35595264,"line":13795,"name":"fully-reified","inclusive_time":742,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":607,"callees":[{"exclusive_time":152,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":152,"file":"gen/moar/m-CORE.setting","inlined_entries":1214,"jit_entries":1214,"entries":1214}]}]},{"exclusive_time":419,"id":34223616,"line":8446,"name":"infix:<->","inclusive_time":419,"spesh_entries":351,"file":"gen/moar/m-CORE.setting","inlined_entries":351,"jit_entries":251,"entries":607},{"exclusive_time":475,"id":38055584,"line":1563,"name":"","allocations":[{"count":607,"id":29975184,"spesh":607,"type":"Code"},{"count":607,"id":19706296,"spesh":607,"type":"BOOTCode"}],"inclusive_time":475,"spesh_entries":607,"file":"gen/moar/m-BOOTSTRAP.nqp","inlined_entries":351,"entries":607},{"exclusive_time":6164,"id":34377744,"line":14676,"name":"","inclusive_time":243354,"file":"gen/moar/m-CORE.setting","jit_entries":401,"entries":607,"callees":[{"exclusive_time":5068,"id":34825536,"line":941,"name":"new","inclusive_time":78773,"spesh_entries":598,"file":"gen/moar/m-CORE.setting","entries":607,"callees":[{"exclusive_time":95,"id":38067136,"line":3008,"name":"","allocations":[{"count":607,"id":29974584,"type":"List","jit":607}],"inclusive_time":95,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":607,"entries":607},{"exclusive_time":15408,"id":38060448,"line":2048,"name":"","allocations":[{"count":1214,"id":19706296,"type":"BOOTCode"},{"count":1214,"id":19707232,"type":"NQPArray"},{"count":607,"id":19706248,"type":"BOOTHash"},{"count":607,"id":19706440,"type":"CallCapture"}],"inclusive_time":55825,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":607,"callees":[{"exclusive_time":2998,"id":38040688,"line":920,"name":"is_bindable","allocations":[{"count":607,"id":19706296,"spesh":607,"type":"BOOTCode"}],"inclusive_time":40416,"spesh_entries":607,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":607,"callees":[{"exclusive_time":2640,"id":38040992,"line":926,"name":"","inclusive_time":37418,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":607,"callees":[{"exclusive_time":12106,"id":38038560,"line":606,"name":"bind","allocations":[{"count":607,"id":29974560,"spesh":607,"type":"Hash"}],"inclusive_time":34777,"spesh_entries":607,"file":"gen/moar/m-BOOTSTRAP.nqp","deopt_one":607,"entries":607,"callees":[{"exclusive_time":18184,"id":38036736,"line":168,"name":"bind_one_param","allocations":[{"count":7284,"id":19706296,"type":"BOOTCode"},{"count":607,"id":19707376,"type":"str"},{"count":1821,"id":29975016,"type":"Scalar"}],"inclusive_time":22044,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":3642,"callees":[{"exclusive_time":3280,"id":38361936,"line":2635,"name":"type_check","allocations":[{"count":1214,"id":19707280,"type":"NQPArrayIter","jit":1208}],"inclusive_time":3461,"file":"gen/moar/m-Metamodel.nqp","jit_entries":604,"entries":607,"callees":[{"exclusive_time":180,"id":38290800,"line":161,"name":"pretending_to_be","inclusive_time":180,"spesh_entries":604,"file":"gen/moar/m-Metamodel.nqp","jit_entries":3,"entries":607}]},{"exclusive_time":197,"id":38357072,"line":2516,"name":"archetypes","inclusive_time":197,"file":"gen/moar/m-Metamodel.nqp","jit_entries":539,"entries":607},{"exclusive_time":201,"id":38284416,"line":88,"name":"generic","inclusive_time":201,"file":"gen/moar/m-Metamodel.nqp","jit_entries":607,"entries":607}]},{"exclusive_time":627,"id":38038256,"line":573,"name":"handle_optional","inclusive_time":627,"spesh_entries":1212,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1214}]}]}]}]},{"exclusive_time":6348,"id":35491904,"line":13100,"name":"new","allocations":[{"count":1821,"id":29975016,"type":"Scalar","jit":1617},{"count":607,"id":51226328,"type":"Range","jit":539}],"inclusive_time":17783,"file":"gen/moar/m-CORE.setting","jit_entries":539,"entries":607,"callees":[{"exclusive_time":4825,"id":34213888,"line":8187,"name":"infix:<==>","inclusive_time":6449,"file":"gen/moar/m-CORE.setting","inlined_entries":539,"jit_entries":1109,"entries":1214,"callees":[{"exclusive_time":1029,"id":35224688,"line":8273,"name":"Bridge","allocations":[{"count":1214,"id":29974920,"type":"Num","jit":1141}],"inclusive_time":1029,"file":"gen/moar/m-CORE.setting","jit_entries":1141,"entries":1214},{"exclusive_time":98,"id":35242320,"line":8826,"name":"Bridge","inclusive_time":98,"file":"gen/moar/m-CORE.setting","jit_entries":1162,"entries":1214},{"exclusive_time":497,"id":34283504,"line":9200,"name":"infix:<==>","inclusive_time":497,"file":"gen/moar/m-CORE.setting","inlined_entries":1109,"jit_entries":1119,"entries":1214}]},{"exclusive_time":4782,"id":35493728,"line":13124,"name":"BUILD","allocations":[{"count":1214,"id":29975016,"type":"Scalar","jit":954}],"inclusive_time":4985,"file":"gen/moar/m-CORE.setting","deopt_one":477,"jit_entries":477,"entries":607,"callees":[{"exclusive_time":203,"id":34825232,"line":937,"name":"defined","inclusive_time":203,"file":"gen/moar/m-CORE.setting","jit_entries":1212,"entries":1214}]}]}]},{"exclusive_time":716,"id":38057408,"line":1621,"name":"","allocations":[{"count":607,"id":29975160,"spesh":607,"type":"Block"},{"count":607,"id":19706296,"spesh":607,"type":"BOOTCode"}],"inclusive_time":716,"spesh_entries":607,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":607},{"exclusive_time":4950,"id":35044416,"line":3773,"name":"map","inclusive_time":48277,"spesh_entries":607,"file":"gen/moar/m-CORE.setting","entries":607,"callees":[{"exclusive_time":117,"id":38067136,"line":3008,"name":"","allocations":[{"count":607,"id":29974584,"type":"List","jit":607}],"inclusive_time":117,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":607,"entries":607},{"exclusive_time":11038,"id":38060448,"line":2048,"name":"","allocations":[{"count":1214,"id":19706296,"type":"BOOTCode"},{"count":1214,"id":19707232,"type":"NQPArray"},{"count":607,"id":19706248,"type":"BOOTHash"}],"inclusive_time":11176,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":607,"callees":[{"exclusive_time":137,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":137,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":607,"entries":607}]},{"exclusive_time":5040,"id":35045632,"line":3779,"name":"map","allocations":[{"count":1214,"id":29975016,"spesh":1208,"type":"Scalar"}],"inclusive_time":32033,"spesh_entries":604,"file":"gen/moar/m-CORE.setting","entries":607,"callees":[{"exclusive_time":10509,"id":35496464,"line":13159,"name":"iterator","allocations":[{"count":3035,"id":19706296,"type":"BOOTCode","jit":2400},{"count":1821,"id":29974536,"type":"IntAttrRef","jit":1440},{"count":607,"id":29975016,"type":"Scalar","jit":480}],"inclusive_time":15773,"file":"gen/moar/m-CORE.setting","jit_entries":480,"entries":607,"callees":[{"exclusive_time":268,"id":34255840,"line":8705,"name":"prefix:<!>","inclusive_time":268,"file":"gen/moar/m-CORE.setting","inlined_entries":960,"jit_entries":1214,"entries":1214},{"exclusive_time":1257,"id":35497984,"line":13164,"name":"","inclusive_time":1257,"file":"gen/moar/m-CORE.setting","jit_entries":530,"entries":607},{"exclusive_time":316,"id":34223008,"line":8439,"name":"infix:<+>","inclusive_time":316,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":607},{"exclusive_time":250,"id":34223616,"line":8446,"name":"infix:<->","inclusive_time":250,"file":"gen/moar/m-CORE.setting","jit_entries":605,"entries":607},{"exclusive_time":2066,"id":35498592,"line":13169,"name":"new","allocations":[{"count":607,"id":53652384,"type":"<anon|349030928>","jit":505}],"inclusive_time":3170,"file":"gen/moar/m-CORE.setting","jit_entries":505,"entries":607,"callees":[{"exclusive_time":958,"id":35498288,"line":13168,"name":"BUILD","inclusive_time":1104,"file":"gen/moar/m-CORE.setting","jit_entries":505,"entries":607,"callees":[{"exclusive_time":146,"id":34223616,"line":8446,"name":"infix:<->","inclusive_time":146,"file":"gen/moar/m-CORE.setting","inlined_entries":505,"jit_entries":602,"entries":607}]}]}]},{"exclusive_time":7365,"id":35048976,"line":3840,"name":"sequential-map","allocations":[{"count":1214,"id":19706296,"type":"BOOTCode","jit":1208},{"count":1821,"id":29975016,"type":"Scalar","jit":1812}],"inclusive_time":11219,"file":"gen/moar/m-CORE.setting","jit_entries":604,"entries":607,"callees":[{"exclusive_time":1407,"id":35157504,"line":6408,"name":"count","inclusive_time":1513,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":607,"callees":[{"exclusive_time":106,"id":35839376,"line":18706,"name":"count","inclusive_time":106,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":607}]},{"exclusive_time":125,"id":34228480,"line":8515,"name":"infix:<==>","inclusive_time":125,"file":"gen/moar/m-CORE.setting","inlined_entries":604,"jit_entries":607,"entries":607},{"exclusive_time":438,"id":35049888,"line":3847,"name":"","inclusive_time":438,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":607},{"exclusive_time":1301,"id":35147168,"line":3827,"name":"new","allocations":[{"count":1821,"id":29975016,"type":"Scalar","jit":1812},{"count":607,"id":53654184,"type":"<anon|159066640>","jit":604}],"inclusive_time":1301,"file":"gen/moar/m-CORE.setting","jit_entries":604,"entries":607},{"exclusive_time":473,"id":35446304,"line":12399,"name":"new","allocations":[{"count":607,"id":53654904,"type":"Seq","jit":607}],"inclusive_time":473,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":607}]}]}]},{"exclusive_time":3786,"id":35447520,"line":12420,"name":"eager","inclusive_time":109423,"file":"gen/moar/m-CORE.setting","jit_entries":606,"entries":607,"callees":[{"exclusive_time":2507,"id":35446912,"line":12407,"name":"iterator","inclusive_time":3064,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":607,"callees":[{"exclusive_time":59,"id":35552400,"line":14088,"name":"sink","inclusive_time":59,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":607},{"exclusive_time":497,"id":38361936,"line":2635,"name":"type_check","inclusive_time":497,"file":"gen/moar/m-Metamodel.nqp","jit_entries":607,"entries":607}]},{"exclusive_time":1357,"id":35536896,"line":13804,"name":"from-iterator","allocations":[{"count":607,"id":29974584,"type":"List","jit":607},{"count":607,"id":54157808,"type":"IterationBuffer","jit":607},{"count":607,"id":51227144,"type":"List::Reifier","jit":607}],"inclusive_time":2838,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":607,"callees":[{"exclusive_time":1309,"id":35546320,"line":13985,"name":"reification-target","inclusive_time":1480,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":607,"callees":[{"exclusive_time":100,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":100,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":607},{"exclusive_time":70,"id":35552400,"line":14088,"name":"sink","inclusive_time":70,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":607}]}]},{"exclusive_time":2357,"id":35567296,"line":14247,"name":"eager","inclusive_time":99734,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":607,"callees":[{"exclusive_time":5456,"id":35594048,"line":13778,"name":"reify-all","allocations":[{"count":607,"id":19706296,"type":"BOOTCode","jit":607},{"count":1214,"id":29975016,"type":"Scalar","jit":1214}],"inclusive_time":97322,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":607,"callees":[{"exclusive_time":2057,"id":34958992,"line":2463,"name":"push-all","allocations":[{"count":607,"id":29975016,"type":"Scalar","jit":607}],"inclusive_time":91203,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":607,"callees":[{"exclusive_time":2423,"id":34958688,"line":2454,"name":"push-at-least","allocations":[{"count":607,"id":29975016,"spesh":607,"type":"Scalar"}],"inclusive_time":89025,"spesh_entries":607,"file":"gen/moar/m-CORE.setting","entries":607,"callees":[{"exclusive_time":11974,"id":34958080,"line":2436,"name":"push-exactly","allocations":[{"count":1214,"id":29975016,"type":"Scalar","jit":1214}],"inclusive_time":86601,"file":"gen/moar/m-CORE.setting","deopt_one":607,"jit_entries":607,"entries":607,"callees":[{"exclusive_time":26824,"id":35050192,"line":3853,"name":"pull-one","allocations":[{"count":1821,"id":19706296,"type":"BOOTCode","jit":1821},{"count":4249,"id":29975016,"type":"Scalar","jit":4249}],"inclusive_time":54699,"file":"gen/moar/m-CORE.setting","deopt_one":1821,"jit_entries":1821,"entries":1821,"callees":[{"exclusive_time":449,"id":34255840,"line":8705,"name":"prefix:<!>","inclusive_time":449,"file":"gen/moar/m-CORE.setting","inlined_entries":1214,"jit_entries":1821,"entries":1821},{"exclusive_time":1817,"id":35163280,"line":6478,"name":"phasers","inclusive_time":1913,"file":"gen/moar/m-CORE.setting","jit_entries":1214,"entries":1214,"callees":[{"exclusive_time":96,"id":35552400,"line":14088,"name":"sink","inclusive_time":96,"file":"gen/moar/m-CORE.setting","jit_entries":1214,"entries":1214}]},{"exclusive_time":759,"id":34151264,"line":7763,"name":"prefix:<+>","inclusive_time":3934,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":607,"callees":[{"exclusive_time":920,"id":35541456,"line":13911,"name":"Numeric","inclusive_time":3174,"spesh_entries":607,"file":"gen/moar/m-CORE.setting","entries":607,"callees":[{"exclusive_time":2071,"id":35543584,"line":13932,"name":"elems","inclusive_time":2254,"spesh_entries":607,"file":"gen/moar/m-CORE.setting","entries":607,"callees":[{"exclusive_time":82,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":82,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":607},{"exclusive_time":100,"id":35552400,"line":14088,"name":"sink","inclusive_time":100,"file":"gen/moar/m-CORE.setting","jit_entries":1214,"entries":1214}]}]}]},{"exclusive_time":2139,"id":34824016,"line":929,"name":"Bool","inclusive_time":4790,"spesh_entries":607,"file":"gen/moar/m-CORE.setting","entries":607,"callees":[{"exclusive_time":112,"id":38067136,"line":3008,"name":"","allocations":[{"count":607,"id":29974584,"type":"List","jit":607}],"inclusive_time":112,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":607,"entries":607},{"exclusive_time":2377,"id":35540544,"line":13904,"name":"Bool","inclusive_time":2538,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":607,"callees":[{"exclusive_time":65,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":65,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":607},{"exclusive_time":46,"id":35552400,"line":14088,"name":"sink","inclusive_time":46,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":607},{"exclusive_time":49,"id":34254320,"line":8699,"name":"prefix:<so>","inclusive_time":49,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":607}]}]},{"exclusive_time":360,"id":35552400,"line":14088,"name":"sink","inclusive_time":360,"file":"gen/moar/m-CORE.setting","jit_entries":3642,"entries":3642},{"exclusive_time":1667,"id":35498896,"line":13171,"name":"pull-one","allocations":[{"count":1214,"id":29974536,"type":"IntAttrRef","jit":1133}],"inclusive_time":1667,"file":"gen/moar/m-CORE.setting","jit_entries":1700,"entries":1821},{"exclusive_time":466,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":466,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":1821},{"exclusive_time":6085,"id":34378048,"line":14676,"name":"","allocations":[{"count":1821,"id":29975016,"type":"Scalar","jit":1438}],"inclusive_time":12420,"file":"gen/moar/m-CORE.setting","jit_entries":959,"entries":1214,"callees":[{"exclusive_time":1744,"id":34403280,"line":14967,"name":"postcircumfix:<[ ]>","inclusive_time":5086,"file":"gen/moar/m-CORE.setting","inlined_entries":959,"jit_entries":1208,"entries":1214,"callees":[{"exclusive_time":3080,"id":35544800,"line":13946,"name":"AT-POS","inclusive_time":3341,"file":"gen/moar/m-CORE.setting","jit_entries":1043,"entries":1214,"callees":[{"exclusive_time":156,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":156,"file":"gen/moar/m-CORE.setting","jit_entries":1214,"entries":1214},{"exclusive_time":104,"id":35552400,"line":14088,"name":"sink","inclusive_time":104,"file":"gen/moar/m-CORE.setting","jit_entries":1214,"entries":1214}]}]},{"exclusive_time":113,"id":35552400,"line":14088,"name":"sink","inclusive_time":113,"file":"gen/moar/m-CORE.setting","jit_entries":1214,"entries":1214},{"exclusive_time":87,"id":35551488,"line":14083,"name":"list","inclusive_time":87,"file":"gen/moar/m-CORE.setting","inlined_entries":959,"jit_entries":1210,"entries":1214},{"exclusive_time":1048,"id":35603472,"line":15753,"name":"is-lazy","allocations":[{"count":607,"id":29975016,"type":"Scalar","jit":475}],"inclusive_time":1048,"file":"gen/moar/m-CORE.setting","jit_entries":475,"entries":607}]},{"exclusive_time":211,"id":34818544,"line":856,"name":"sink","inclusive_time":211,"file":"gen/moar/m-CORE.setting","entries":607},{"exclusive_time":1445,"id":35162368,"line":6469,"name":"fire_phasers","allocations":[{"count":607,"id":19706296,"spesh":607,"type":"BOOTCode"}],"inclusive_time":1661,"spesh_entries":607,"file":"gen/moar/m-CORE.setting","entries":607,"callees":[{"exclusive_time":215,"id":34255840,"line":8705,"name":"prefix:<!>","inclusive_time":215,"spesh_entries":607,"file":"gen/moar/m-CORE.setting","inlined_entries":607,"entries":607}]}]},{"exclusive_time":4228,"id":25520320,"line":1558,"name":"infix:<=:=>","inclusive_time":18598,"file":"gen/moar/m-CORE.setting","jit_entries":1214,"entries":1214,"callees":[{"exclusive_time":13195,"id":38060448,"line":2048,"name":"","allocations":[{"count":2428,"id":19706296,"type":"BOOTCode"},{"count":2428,"id":19707232,"type":"NQPArray"},{"count":1214,"id":19706248,"type":"BOOTHash"}],"inclusive_time":13959,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1214,"callees":[{"exclusive_time":764,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":764,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1214,"entries":1214}]},{"exclusive_time":410,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":410,"file":"gen/moar/m-CORE.setting","entries":1214}]},{"exclusive_time":304,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":304,"file":"gen/moar/m-CORE.setting","jit_entries":1821,"entries":1821},{"exclusive_time":953,"id":35438704,"line":12283,"name":"push","inclusive_time":953,"file":"gen/moar/m-CORE.setting","entries":1214},{"exclusive_time":71,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":71,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":607}]}]},{"exclusive_time":121,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":121,"file":"gen/moar/m-CORE.setting","inlined_entries":607,"jit_entries":607,"entries":607}]},{"exclusive_time":253,"id":34818544,"line":856,"name":"sink","inclusive_time":253,"file":"gen/moar/m-CORE.setting","entries":607},{"exclusive_time":337,"id":38361936,"line":2635,"name":"type_check","inclusive_time":337,"file":"gen/moar/m-Metamodel.nqp","jit_entries":607,"entries":607},{"exclusive_time":71,"id":35552400,"line":14088,"name":"sink","inclusive_time":71,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":607}]},{"exclusive_time":54,"id":34818544,"line":856,"name":"sink","inclusive_time":54,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":607}]}]}]},{"exclusive_time":2021,"id":35605296,"line":15771,"name":"STORE","inclusive_time":28065,"spesh_entries":351,"file":"gen/moar/m-CORE.setting","jit_entries":255,"entries":607,"callees":[{"exclusive_time":5310,"id":35605904,"line":15779,"name":"STORE-ITERABLE","allocations":[{"count":607,"id":19706296,"type":"BOOTCode","jit":605},{"count":607,"id":54157808,"type":"IterationBuffer","jit":605},{"count":607,"id":29975016,"type":"Scalar","jit":605}],"inclusive_time":26043,"file":"gen/moar/m-CORE.setting","jit_entries":605,"entries":607,"callees":[{"exclusive_time":3381,"id":35546624,"line":13990,"name":"iterator","allocations":[{"count":607,"id":19706296,"type":"BOOTCode","jit":607}],"inclusive_time":7543,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":607,"callees":[{"exclusive_time":81,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":81,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":607},{"exclusive_time":56,"id":35552400,"line":14088,"name":"sink","inclusive_time":56,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":607},{"exclusive_time":770,"id":35546928,"line":13992,"name":"","allocations":[{"count":607,"id":29975016,"type":"Scalar","jit":607}],"inclusive_time":770,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":607},{"exclusive_time":2637,"id":35547536,"line":14004,"name":"new","allocations":[{"count":607,"id":53651952,"type":"<anon|352550624>","jit":607}],"inclusive_time":3254,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":607,"callees":[{"exclusive_time":169,"id":34798480,"line":495,"name":"of","inclusive_time":169,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":607},{"exclusive_time":447,"id":35547232,"line":13998,"name":"BUILD","inclusive_time":447,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":607}]}]},{"exclusive_time":721,"id":35628704,"line":15464,"name":"new","allocations":[{"count":607,"id":54158192,"type":"Array::ArrayReificationTarget","jit":607}],"inclusive_time":721,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":607},{"exclusive_time":7895,"id":35548448,"line":14020,"name":"push-until-lazy","allocations":[{"count":1214,"id":29975016,"type":"Scalar","jit":1212}],"inclusive_time":12366,"file":"gen/moar/m-CORE.setting","deopt_one":606,"jit_entries":606,"entries":607,"callees":[{"exclusive_time":1995,"id":35591616,"line":13753,"name":"reify-until-lazy","allocations":[{"count":607,"id":19706296,"type":"BOOTCode","jit":607}],"inclusive_time":2109,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":607,"callees":[{"exclusive_time":113,"id":35552400,"line":14088,"name":"sink","inclusive_time":113,"file":"gen/moar/m-CORE.setting","jit_entries":1214,"entries":1214}]},{"exclusive_time":1744,"id":35629008,"line":15471,"name":"push","allocations":[{"count":1214,"id":29975016,"type":"Scalar"}],"inclusive_time":1744,"file":"gen/moar/m-CORE.setting","entries":1214},{"exclusive_time":79,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":79,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":607},{"exclusive_time":412,"id":35595264,"line":13795,"name":"fully-reified","inclusive_time":537,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":607,"callees":[{"exclusive_time":124,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":124,"file":"gen/moar/m-CORE.setting","inlined_entries":1214,"jit_entries":1214,"entries":1214}]}]},{"exclusive_time":100,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":100,"file":"gen/moar/m-CORE.setting","inlined_entries":605,"jit_entries":607,"entries":607}]}]},{"exclusive_time":95,"id":35552400,"line":14088,"name":"sink","inclusive_time":95,"file":"gen/moar/m-CORE.setting","jit_entries":1214,"entries":1214},{"exclusive_time":1521,"id":34355552,"line":13594,"name":"infix:<..>","allocations":[{"count":1214,"id":29975016,"type":"Scalar","jit":804}],"inclusive_time":55752,"file":"gen/moar/m-CORE.setting","jit_entries":402,"entries":607,"callees":[{"exclusive_time":5790,"id":34825536,"line":941,"name":"new","inclusive_time":54231,"spesh_entries":598,"file":"gen/moar/m-CORE.setting","entries":607,"callees":[{"exclusive_time":119,"id":38067136,"line":3008,"name":"","allocations":[{"count":607,"id":29974584,"type":"List","jit":607}],"inclusive_time":119,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":607,"entries":607},{"exclusive_time":10845,"id":38060448,"line":2048,"name":"","allocations":[{"count":1214,"id":19706296,"type":"BOOTCode"},{"count":1214,"id":19707232,"type":"NQPArray"},{"count":607,"id":19706248,"type":"BOOTHash"},{"count":607,"id":19706440,"type":"CallCapture"}],"inclusive_time":38051,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":607,"callees":[{"exclusive_time":1657,"id":38040688,"line":920,"name":"is_bindable","allocations":[{"count":607,"id":19706296,"spesh":607,"type":"BOOTCode"}],"inclusive_time":27205,"spesh_entries":607,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":607,"callees":[{"exclusive_time":1605,"id":38040992,"line":926,"name":"","inclusive_time":25548,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":607,"callees":[{"exclusive_time":8752,"id":38038560,"line":606,"name":"bind","allocations":[{"count":607,"id":29974560,"spesh":607,"type":"Hash"}],"inclusive_time":23942,"spesh_entries":607,"file":"gen/moar/m-BOOTSTRAP.nqp","deopt_one":607,"entries":607,"callees":[{"exclusive_time":12748,"id":38036736,"line":168,"name":"bind_one_param","allocations":[{"count":7284,"id":19706296,"type":"BOOTCode"},{"count":607,"id":19707376,"type":"str"},{"count":1821,"id":29975016,"type":"Scalar"}],"inclusive_time":14700,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":3642,"callees":[{"exclusive_time":1662,"id":38361936,"line":2635,"name":"type_check","allocations":[{"count":1214,"id":19707280,"type":"NQPArrayIter","jit":1210}],"inclusive_time":1747,"file":"gen/moar/m-Metamodel.nqp","jit_entries":605,"entries":607,"callees":[{"exclusive_time":84,"id":38290800,"line":161,"name":"pretending_to_be","inclusive_time":84,"spesh_entries":605,"file":"gen/moar/m-Metamodel.nqp","jit_entries":2,"entries":607}]},{"exclusive_time":84,"id":38357072,"line":2516,"name":"archetypes","inclusive_time":84,"file":"gen/moar/m-Metamodel.nqp","jit_entries":540,"entries":607},{"exclusive_time":120,"id":38284416,"line":88,"name":"generic","inclusive_time":120,"file":"gen/moar/m-Metamodel.nqp","jit_entries":607,"entries":607}]},{"exclusive_time":489,"id":38038256,"line":573,"name":"handle_optional","inclusive_time":489,"spesh_entries":1212,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1214}]}]}]}]},{"exclusive_time":3748,"id":35491904,"line":13100,"name":"new","allocations":[{"count":1821,"id":29975016,"type":"Scalar","jit":1620},{"count":607,"id":51226328,"type":"Range","jit":540}],"inclusive_time":10269,"file":"gen/moar/m-CORE.setting","jit_entries":540,"entries":607,"callees":[{"exclusive_time":2528,"id":34213888,"line":8187,"name":"infix:<==>","inclusive_time":3422,"file":"gen/moar/m-CORE.setting","inlined_entries":540,"jit_entries":1114,"entries":1214,"callees":[{"exclusive_time":436,"id":35224688,"line":8273,"name":"Bridge","allocations":[{"count":1214,"id":29974920,"type":"Num","jit":1147}],"inclusive_time":436,"file":"gen/moar/m-CORE.setting","jit_entries":1147,"entries":1214},{"exclusive_time":112,"id":35242320,"line":8826,"name":"Bridge","inclusive_time":112,"file":"gen/moar/m-CORE.setting","jit_entries":1162,"entries":1214},{"exclusive_time":345,"id":34283504,"line":9200,"name":"infix:<==>","inclusive_time":345,"file":"gen/moar/m-CORE.setting","inlined_entries":1114,"jit_entries":1120,"entries":1214}]},{"exclusive_time":2985,"id":35493728,"line":13124,"name":"BUILD","allocations":[{"count":1214,"id":29975016,"type":"Scalar","jit":954}],"inclusive_time":3097,"file":"gen/moar/m-CORE.setting","deopt_one":477,"jit_entries":477,"entries":607,"callees":[{"exclusive_time":112,"id":34825232,"line":937,"name":"defined","inclusive_time":112,"file":"gen/moar/m-CORE.setting","jit_entries":1213,"entries":1214}]}]}]}]},{"exclusive_time":1670,"id":38057408,"line":1621,"name":"","allocations":[{"count":1821,"id":29975160,"spesh":1821,"type":"Block"},{"count":1821,"id":19706296,"spesh":1821,"type":"BOOTCode"}],"inclusive_time":1670,"spesh_entries":1821,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1821},{"exclusive_time":5759,"id":35044416,"line":3773,"name":"map","inclusive_time":33210,"spesh_entries":607,"file":"gen/moar/m-CORE.setting","entries":607,"callees":[{"exclusive_time":115,"id":38067136,"line":3008,"name":"","allocations":[{"count":607,"id":29974584,"type":"List","jit":607}],"inclusive_time":115,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":607,"entries":607},{"exclusive_time":9879,"id":38060448,"line":2048,"name":"","allocations":[{"count":1214,"id":19706296,"type":"BOOTCode"},{"count":1214,"id":19707232,"type":"NQPArray"},{"count":607,"id":19706248,"type":"BOOTHash"}],"inclusive_time":9952,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":607,"callees":[{"exclusive_time":72,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":72,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":607,"entries":607}]},{"exclusive_time":3414,"id":35045632,"line":3779,"name":"map","allocations":[{"count":1214,"id":29975016,"spesh":1210,"type":"Scalar"}],"inclusive_time":17383,"spesh_entries":605,"file":"gen/moar/m-CORE.setting","entries":607,"callees":[{"exclusive_time":5062,"id":35496464,"line":13159,"name":"iterator","allocations":[{"count":3035,"id":19706296,"type":"BOOTCode","jit":2400},{"count":1821,"id":29974536,"type":"IntAttrRef","jit":1440},{"count":607,"id":29975016,"type":"Scalar","jit":480}],"inclusive_time":7923,"file":"gen/moar/m-CORE.setting","jit_entries":480,"entries":607,"callees":[{"exclusive_time":158,"id":34255840,"line":8705,"name":"prefix:<!>","inclusive_time":158,"file":"gen/moar/m-CORE.setting","inlined_entries":960,"jit_entries":1214,"entries":1214},{"exclusive_time":521,"id":35497984,"line":13164,"name":"","inclusive_time":521,"file":"gen/moar/m-CORE.setting","jit_entries":530,"entries":607},{"exclusive_time":220,"id":34223008,"line":8439,"name":"infix:<+>","inclusive_time":220,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":607},{"exclusive_time":230,"id":34223616,"line":8446,"name":"infix:<->","inclusive_time":230,"file":"gen/moar/m-CORE.setting","jit_entries":605,"entries":607},{"exclusive_time":1050,"id":35498592,"line":13169,"name":"new","allocations":[{"count":607,"id":53652384,"type":"<anon|349030928>","jit":505}],"inclusive_time":1730,"file":"gen/moar/m-CORE.setting","jit_entries":505,"entries":607,"callees":[{"exclusive_time":572,"id":35498288,"line":13168,"name":"BUILD","inclusive_time":679,"file":"gen/moar/m-CORE.setting","jit_entries":505,"entries":607,"callees":[{"exclusive_time":107,"id":34223616,"line":8446,"name":"infix:<->","inclusive_time":107,"file":"gen/moar/m-CORE.setting","inlined_entries":505,"jit_entries":603,"entries":607}]}]}]},{"exclusive_time":3783,"id":35048976,"line":3840,"name":"sequential-map","allocations":[{"count":1214,"id":19706296,"type":"BOOTCode","jit":1210},{"count":1821,"id":29975016,"type":"Scalar","jit":1815}],"inclusive_time":6045,"file":"gen/moar/m-CORE.setting","jit_entries":605,"entries":607,"callees":[{"exclusive_time":907,"id":35157504,"line":6408,"name":"count","inclusive_time":959,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":607,"callees":[{"exclusive_time":52,"id":35839376,"line":18706,"name":"count","inclusive_time":52,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":607}]},{"exclusive_time":96,"id":34228480,"line":8515,"name":"infix:<==>","inclusive_time":96,"file":"gen/moar/m-CORE.setting","inlined_entries":605,"jit_entries":607,"entries":607},{"exclusive_time":227,"id":35049888,"line":3847,"name":"","inclusive_time":227,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":607},{"exclusive_time":730,"id":35147168,"line":3827,"name":"new","allocations":[{"count":1821,"id":29975016,"type":"Scalar","jit":1815},{"count":607,"id":53654184,"type":"<anon|159066640>","jit":605}],"inclusive_time":730,"file":"gen/moar/m-CORE.setting","jit_entries":605,"entries":607},{"exclusive_time":247,"id":35446304,"line":12399,"name":"new","allocations":[{"count":607,"id":53654904,"type":"Seq","jit":607}],"inclusive_time":247,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":607}]}]}]},{"exclusive_time":3992,"id":35451472,"line":12474,"name":"sink","inclusive_time":38022,"file":"gen/moar/m-CORE.setting","entries":607,"callees":[{"exclusive_time":1948,"id":35446912,"line":12407,"name":"iterator","inclusive_time":2314,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":607,"callees":[{"exclusive_time":59,"id":35552400,"line":14088,"name":"sink","inclusive_time":59,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":607},{"exclusive_time":307,"id":38361936,"line":2635,"name":"type_check","inclusive_time":307,"file":"gen/moar/m-Metamodel.nqp","jit_entries":607,"entries":607}]},{"exclusive_time":12877,"id":35052016,"line":3921,"name":"sink-all","allocations":[{"count":607,"id":19706296,"type":"BOOTCode","jit":606},{"count":3642,"id":29975016,"type":"Scalar","jit":3636}],"inclusive_time":31555,"file":"gen/moar/m-CORE.setting","deopt_one":606,"jit_entries":606,"entries":607,"callees":[{"exclusive_time":61,"id":34255840,"line":8705,"name":"prefix:<!>","inclusive_time":61,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":607},{"exclusive_time":1436,"id":35163280,"line":6478,"name":"phasers","inclusive_time":1531,"file":"gen/moar/m-CORE.setting","jit_entries":1214,"entries":1214,"callees":[{"exclusive_time":95,"id":35552400,"line":14088,"name":"sink","inclusive_time":95,"file":"gen/moar/m-CORE.setting","jit_entries":1214,"entries":1214}]},{"exclusive_time":456,"id":34151264,"line":7763,"name":"prefix:<+>","inclusive_time":3564,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":607,"callees":[{"exclusive_time":905,"id":35541456,"line":13911,"name":"Numeric","inclusive_time":3107,"spesh_entries":607,"file":"gen/moar/m-CORE.setting","entries":607,"callees":[{"exclusive_time":2009,"id":35543584,"line":13932,"name":"elems","inclusive_time":2202,"spesh_entries":607,"file":"gen/moar/m-CORE.setting","entries":607,"callees":[{"exclusive_time":86,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":86,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":607},{"exclusive_time":107,"id":35552400,"line":14088,"name":"sink","inclusive_time":107,"file":"gen/moar/m-CORE.setting","jit_entries":1214,"entries":1214}]}]}]},{"exclusive_time":1480,"id":34824016,"line":929,"name":"Bool","inclusive_time":3208,"spesh_entries":607,"file":"gen/moar/m-CORE.setting","entries":607,"callees":[{"exclusive_time":102,"id":38067136,"line":3008,"name":"","allocations":[{"count":607,"id":29974584,"type":"List","jit":607}],"inclusive_time":102,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":607,"entries":607},{"exclusive_time":1478,"id":35540544,"line":13904,"name":"Bool","inclusive_time":1626,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":607,"callees":[{"exclusive_time":64,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":64,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":607},{"exclusive_time":46,"id":35552400,"line":14088,"name":"sink","inclusive_time":46,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":607},{"exclusive_time":37,"id":34254320,"line":8699,"name":"prefix:<so>","inclusive_time":37,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":607}]}]},{"exclusive_time":147,"id":35552400,"line":14088,"name":"sink","inclusive_time":147,"file":"gen/moar/m-CORE.setting","jit_entries":1821,"entries":1821},{"exclusive_time":594,"id":35498896,"line":13171,"name":"pull-one","allocations":[{"count":607,"id":29974536,"type":"IntAttrRef","jit":567}],"inclusive_time":594,"file":"gen/moar/m-CORE.setting","jit_entries":1134,"entries":1214},{"exclusive_time":4016,"id":34378960,"line":14711,"name":"","allocations":[{"count":607,"id":29975016,"type":"Scalar","jit":451}],"inclusive_time":8293,"file":"gen/moar/m-CORE.setting","jit_entries":451,"entries":607,"callees":[{"exclusive_time":1010,"id":34403280,"line":14967,"name":"postcircumfix:<[ ]>","inclusive_time":1880,"file":"gen/moar/m-CORE.setting","jit_entries":600,"entries":607,"callees":[{"exclusive_time":870,"id":35608944,"line":15835,"name":"AT-POS","inclusive_time":870,"spesh_entries":600,"file":"gen/moar/m-CORE.setting","jit_entries":7,"entries":607}]},{"exclusive_time":2057,"id":35543584,"line":13932,"name":"elems","inclusive_time":2396,"spesh_entries":451,"file":"gen/moar/m-CORE.setting","jit_entries":149,"entries":607,"callees":[{"exclusive_time":244,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":244,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":607},{"exclusive_time":94,"id":35552400,"line":14088,"name":"sink","inclusive_time":94,"file":"gen/moar/m-CORE.setting","jit_entries":1214,"entries":1214}]}]},{"exclusive_time":212,"id":34818544,"line":856,"name":"sink","inclusive_time":212,"file":"gen/moar/m-CORE.setting","entries":607},{"exclusive_time":883,"id":35162368,"line":6469,"name":"fire_phasers","allocations":[{"count":607,"id":19706296,"spesh":607,"type":"BOOTCode"}],"inclusive_time":1063,"spesh_entries":607,"file":"gen/moar/m-CORE.setting","entries":607,"callees":[{"exclusive_time":180,"id":34255840,"line":8705,"name":"prefix:<!>","inclusive_time":180,"spesh_entries":607,"file":"gen/moar/m-CORE.setting","inlined_entries":607,"entries":607}]}]},{"exclusive_time":160,"id":34818544,"line":856,"name":"sink","inclusive_time":160,"file":"gen/moar/m-CORE.setting","entries":607}]},{"exclusive_time":1240,"id":34403280,"line":14967,"name":"postcircumfix:<[ ]>","inclusive_time":1791,"spesh_entries":351,"file":"gen/moar/m-CORE.setting","inlined_entries":351,"deopt_one":606,"jit_entries":255,"entries":607,"callees":[{"exclusive_time":551,"id":35608944,"line":15835,"name":"AT-POS","inclusive_time":551,"spesh_entries":606,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":607}]},{"exclusive_time":708,"id":35603472,"line":15753,"name":"is-lazy","allocations":[{"count":607,"id":29975016,"type":"Scalar","jit":476}],"inclusive_time":708,"file":"gen/moar/m-CORE.setting","jit_entries":476,"entries":607},{"exclusive_time":3387,"id":34348560,"line":12668,"name":"GATHER","allocations":[{"count":607,"id":19706296,"type":"BOOTCode","jit":606}],"inclusive_time":6974,"file":"gen/moar/m-CORE.setting","jit_entries":606,"entries":607,"callees":[{"exclusive_time":855,"id":34348864,"line":12669,"name":"","allocations":[{"count":607,"id":19706296,"type":"BOOTCode","jit":606},{"count":607,"id":29975016,"type":"Scalar","jit":606}],"inclusive_time":855,"file":"gen/moar/m-CORE.setting","jit_entries":606,"entries":607},{"exclusive_time":1655,"id":34349472,"line":12676,"name":"new","allocations":[{"count":607,"id":53652480,"type":"<anon|340889968>","jit":606}],"inclusive_time":2450,"file":"gen/moar/m-CORE.setting","jit_entries":606,"entries":607,"callees":[{"exclusive_time":795,"id":38057408,"line":1621,"name":"","allocations":[{"count":1214,"id":29975160,"spesh":1214,"type":"Block"},{"count":1214,"id":19706296,"spesh":1214,"type":"BOOTCode"}],"inclusive_time":795,"spesh_entries":1214,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1214}]},{"exclusive_time":280,"id":35446304,"line":12399,"name":"new","allocations":[{"count":607,"id":53654904,"type":"Seq","jit":607}],"inclusive_time":280,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":607}]},{"exclusive_time":671,"id":35037728,"line":3690,"name":"lazy-if","allocations":[{"count":607,"id":29975016,"type":"Scalar","jit":606}],"inclusive_time":671,"file":"gen/moar/m-CORE.setting","jit_entries":606,"entries":607}]}]},{"exclusive_time":1861,"id":35605296,"line":15771,"name":"STORE","inclusive_time":40923,"spesh_entries":343,"file":"gen/moar/m-CORE.setting","jit_entries":264,"entries":608,"callees":[{"exclusive_time":5446,"id":35605904,"line":15779,"name":"STORE-ITERABLE","allocations":[{"count":608,"id":19706296,"type":"BOOTCode","jit":606},{"count":608,"id":54157808,"type":"IterationBuffer","jit":606},{"count":608,"id":29975016,"type":"Scalar","jit":606}],"inclusive_time":39061,"file":"gen/moar/m-CORE.setting","jit_entries":606,"entries":608,"callees":[{"exclusive_time":2777,"id":35546624,"line":13990,"name":"iterator","allocations":[{"count":608,"id":19706296,"type":"BOOTCode","jit":608}],"inclusive_time":6444,"file":"gen/moar/m-CORE.setting","jit_entries":608,"entries":608,"callees":[{"exclusive_time":94,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":94,"file":"gen/moar/m-CORE.setting","jit_entries":608,"entries":608},{"exclusive_time":58,"id":35552400,"line":14088,"name":"sink","inclusive_time":58,"file":"gen/moar/m-CORE.setting","jit_entries":608,"entries":608},{"exclusive_time":581,"id":35546928,"line":13992,"name":"","allocations":[{"count":608,"id":29975016,"type":"Scalar","jit":608}],"inclusive_time":581,"file":"gen/moar/m-CORE.setting","jit_entries":608,"entries":608},{"exclusive_time":2352,"id":35547536,"line":14004,"name":"new","allocations":[{"count":608,"id":53651952,"type":"<anon|352550624>","jit":608}],"inclusive_time":2932,"file":"gen/moar/m-CORE.setting","jit_entries":608,"entries":608,"callees":[{"exclusive_time":156,"id":34798480,"line":495,"name":"of","inclusive_time":156,"file":"gen/moar/m-CORE.setting","jit_entries":608,"entries":608},{"exclusive_time":422,"id":35547232,"line":13998,"name":"BUILD","inclusive_time":422,"file":"gen/moar/m-CORE.setting","jit_entries":608,"entries":608}]}]},{"exclusive_time":772,"id":35628704,"line":15464,"name":"new","allocations":[{"count":608,"id":54158192,"type":"Array::ArrayReificationTarget","jit":608}],"inclusive_time":772,"file":"gen/moar/m-CORE.setting","jit_entries":608,"entries":608},{"exclusive_time":19515,"id":35548448,"line":14020,"name":"push-until-lazy","allocations":[{"count":1216,"id":29975016,"type":"Scalar","jit":1214}],"inclusive_time":26268,"file":"gen/moar/m-CORE.setting","deopt_one":607,"jit_entries":607,"entries":608,"callees":[{"exclusive_time":1801,"id":35591616,"line":13753,"name":"reify-until-lazy","allocations":[{"count":608,"id":19706296,"type":"BOOTCode","jit":608},{"count":608,"id":29974944,"type":"Int","jit":608}],"inclusive_time":1904,"file":"gen/moar/m-CORE.setting","jit_entries":608,"entries":608,"callees":[{"exclusive_time":102,"id":35552400,"line":14088,"name":"sink","inclusive_time":102,"file":"gen/moar/m-CORE.setting","jit_entries":1216,"entries":1216}]},{"exclusive_time":4224,"id":35629008,"line":15471,"name":"push","allocations":[{"count":12160,"id":29975016,"type":"Scalar","jit":12160}],"inclusive_time":4224,"file":"gen/moar/m-CORE.setting","jit_entries":12160,"entries":12160},{"exclusive_time":112,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":112,"file":"gen/moar/m-CORE.setting","jit_entries":608,"entries":608},{"exclusive_time":385,"id":35595264,"line":13795,"name":"fully-reified","inclusive_time":511,"file":"gen/moar/m-CORE.setting","jit_entries":608,"entries":608,"callees":[{"exclusive_time":125,"id":34255536,"line":8704,"name":"prefix:<!>","inclusive_time":125,"file":"gen/moar/m-CORE.setting","inlined_entries":1216,"jit_entries":1216,"entries":1216}]}]},{"exclusive_time":130,"id":25520928,"line":1560,"name":"infix:<=:=>","inclusive_time":130,"file":"gen/moar/m-CORE.setting","inlined_entries":606,"jit_entries":608,"entries":608}]}]},{"exclusive_time":5,"id":35141088,"line":5123,"name":"head","inclusive_time":47,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":38067136,"line":3008,"name":"","allocations":[{"count":1,"id":29974584,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":11,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":12,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":1,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":11,"id":35141392,"line":5124,"name":"head","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":29,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":34230000,"line":8533,"name":"infix:«<=»","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":1,"id":35141696,"line":5127,"name":"","allocations":[{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":2,"id":35142304,"line":5135,"name":"new","allocations":[{"count":1,"id":53653320,"type":"<anon|182679216>"}],"inclusive_time":14,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":3,"id":35142000,"line":5130,"name":"BUILD","allocations":[{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":11,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":3,"id":35546624,"line":13990,"name":"iterator","allocations":[{"count":1,"id":19706296,"type":"BOOTCode","jit":1}],"inclusive_time":8,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":0,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":35546928,"line":13992,"name":"","allocations":[{"count":1,"id":29975016,"type":"Scalar","jit":1}],"inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":2,"id":35547536,"line":14004,"name":"new","allocations":[{"count":1,"id":53651952,"type":"<anon|352550624>","jit":1}],"inclusive_time":4,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":1,"id":35623536,"line":16147,"name":"of","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":0,"id":38396896,"line":3777,"name":"of","inclusive_time":0,"spesh_entries":1,"file":"gen/moar/m-Metamodel.nqp","entries":1}]},{"exclusive_time":0,"id":35547232,"line":13998,"name":"BUILD","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]}]}]},{"exclusive_time":1,"id":35446304,"line":12399,"name":"new","allocations":[{"count":1,"id":53654904,"type":"Seq"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":1303,"id":34376224,"line":14663,"name":"prefix:<|>","inclusive_time":9776,"file":"gen/moar/m-CORE.setting","jit_entries":451,"entries":608,"callees":[{"exclusive_time":2513,"id":35448128,"line":12428,"name":"Slip","inclusive_time":8472,"file":"gen/moar/m-CORE.setting","jit_entries":451,"entries":608,"callees":[{"exclusive_time":1831,"id":35446912,"line":12407,"name":"iterator","inclusive_time":2202,"file":"gen/moar/m-CORE.setting","jit_entries":608,"entries":608,"callees":[{"exclusive_time":49,"id":35552400,"line":14088,"name":"sink","inclusive_time":49,"file":"gen/moar/m-CORE.setting","jit_entries":608,"entries":608},{"exclusive_time":321,"id":38361936,"line":2635,"name":"type_check","inclusive_time":321,"file":"gen/moar/m-Metamodel.nqp","jit_entries":608,"entries":608}]},{"exclusive_time":1846,"id":35536896,"line":13804,"name":"from-iterator","allocations":[{"count":608,"id":29974704,"type":"Slip","jit":600},{"count":608,"id":54157808,"type":"IterationBuffer","jit":600},{"count":608,"id":51227144,"type":"List::Reifier","jit":600}],"inclusive_time":3756,"file":"gen/moar/m-CORE.setting","jit_entries":600,"entries":608,"callees":[{"exclusive_time":1700,"id":35546320,"line":13985,"name":"reification-target","inclusive_time":1909,"file":"gen/moar/m-CORE.setting","jit_entries":600,"entries":608,"callees":[{"exclusive_time":160,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":160,"file":"gen/moar/m-CORE.setting","jit_entries":605,"entries":608},{"exclusive_time":48,"id":35552400,"line":14088,"name":"sink","inclusive_time":48,"file":"gen/moar/m-CORE.setting","jit_entries":608,"entries":608}]}]}]}]},{"exclusive_time":82,"id":34896672,"line":1792,"name":"Slip","inclusive_time":114,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":38067136,"line":3008,"name":"","allocations":[{"count":1,"id":29974584,"type":"List","jit":1}],"inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1},{"exclusive_time":10,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"type":"BOOTCode"},{"count":2,"id":19707232,"type":"NQPArray"},{"count":1,"id":19706248,"type":"BOOTHash"}],"inclusive_time":11,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":1,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":16,"id":35566080,"line":14225,"name":"Slip","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"}],"inclusive_time":19,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":2,"id":35566688,"line":14232,"name":"","allocations":[{"count":1,"id":29975016,"type":"Scalar"},{"count":1,"id":29974704,"type":"Slip"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1}]}]},{"exclusive_time":4,"id":34364064,"line":14541,"name":"infix:<,>","inclusive_time":42,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":9,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"spesh":2,"type":"BOOTCode"},{"count":2,"id":19707232,"spesh":2,"type":"NQPArray"},{"count":1,"id":19706248,"spesh":1,"type":"BOOTHash"}],"inclusive_time":9,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":16,"id":34364976,"line":14547,"name":"infix:<,>","allocations":[{"count":1,"id":19706296,"type":"BOOTCode"},{"count":1,"id":29974584,"type":"List"},{"count":1,"id":54157808,"type":"IterationBuffer"},{"count":1,"id":29975016,"type":"Scalar"}],"inclusive_time":27,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":5,"id":34365888,"line":14553,"name":"","allocations":[{"count":1,"id":51227144,"type":"List::Reifier"}],"inclusive_time":10,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":2,"id":35546320,"line":13985,"name":"reification-target","inclusive_time":3,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1,"callees":[{"exclusive_time":0,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]},{"exclusive_time":1,"id":25500864,"line":655,"name":"last","inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":25496304,"line":603,"name":"THROW-NIL","allocations":[{"count":1,"id":19706488,"type":"BOOTException"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]}]}]}]},{"exclusive_time":7600,"id":35141392,"line":5124,"name":"head","allocations":[{"count":607,"id":19706296,"type":"BOOTCode","jit":476},{"count":607,"id":29975016,"type":"Scalar","jit":476}],"inclusive_time":19580,"file":"gen/moar/m-CORE.setting","jit_entries":476,"entries":607,"callees":[{"exclusive_time":257,"id":34230000,"line":8533,"name":"infix:«<=»","inclusive_time":257,"file":"gen/moar/m-CORE.setting","jit_entries":530,"entries":607},{"exclusive_time":49,"id":35552400,"line":14088,"name":"sink","inclusive_time":49,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":607},{"exclusive_time":1040,"id":35141696,"line":5127,"name":"","allocations":[{"count":607,"id":29975016,"type":"Scalar","jit":530}],"inclusive_time":1040,"file":"gen/moar/m-CORE.setting","jit_entries":530,"entries":607},{"exclusive_time":1629,"id":35142304,"line":5135,"name":"new","allocations":[{"count":607,"id":53653320,"type":"<anon|182679216>","jit":501}],"inclusive_time":9585,"file":"gen/moar/m-CORE.setting","jit_entries":501,"entries":607,"callees":[{"exclusive_time":1806,"id":35142000,"line":5130,"name":"BUILD","allocations":[{"count":607,"id":29975016,"type":"Scalar","jit":501}],"inclusive_time":7955,"file":"gen/moar/m-CORE.setting","jit_entries":501,"entries":607,"callees":[{"exclusive_time":2516,"id":35546624,"line":13990,"name":"iterator","allocations":[{"count":607,"id":19706296,"type":"BOOTCode","jit":607}],"inclusive_time":6148,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":607,"callees":[{"exclusive_time":123,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":123,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":607},{"exclusive_time":51,"id":35552400,"line":14088,"name":"sink","inclusive_time":51,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":607},{"exclusive_time":366,"id":35546928,"line":13992,"name":"","allocations":[{"count":607,"id":29975016,"type":"Scalar","jit":607}],"inclusive_time":366,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":607},{"exclusive_time":1619,"id":35547536,"line":14004,"name":"new","allocations":[{"count":607,"id":53651952,"type":"<anon|352550624>","jit":607}],"inclusive_time":3090,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":607,"callees":[{"exclusive_time":972,"id":35623536,"line":16147,"name":"of","inclusive_time":1077,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":607,"callees":[{"exclusive_time":104,"id":38396896,"line":3777,"name":"of","inclusive_time":104,"spesh_entries":607,"file":"gen/moar/m-Metamodel.nqp","entries":607}]},{"exclusive_time":394,"id":35547232,"line":13998,"name":"BUILD","inclusive_time":394,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":607}]}]}]}]},{"exclusive_time":1047,"id":35446304,"line":12399,"name":"new","allocations":[{"count":607,"id":53654904,"type":"Seq"}],"inclusive_time":1047,"file":"gen/moar/m-CORE.setting","entries":607}]},{"exclusive_time":1858,"id":35566080,"line":14225,"name":"Slip","allocations":[{"count":607,"id":19706296,"spesh":343,"type":"BOOTCode","jit":58}],"inclusive_time":2635,"spesh_entries":343,"file":"gen/moar/m-CORE.setting","jit_entries":58,"entries":607,"callees":[{"exclusive_time":776,"id":35566688,"line":14232,"name":"","allocations":[{"count":607,"id":29975016,"type":"Scalar","jit":451},{"count":607,"id":29974704,"type":"Slip","jit":451}],"inclusive_time":776,"file":"gen/moar/m-CORE.setting","jit_entries":451,"entries":607}]},{"exclusive_time":3047,"id":34364976,"line":14547,"name":"infix:<,>","allocations":[{"count":607,"id":19706296,"spesh":355,"type":"BOOTCode"},{"count":607,"id":29974584,"spesh":355,"type":"List"},{"count":607,"id":54157808,"spesh":355,"type":"IterationBuffer"},{"count":607,"id":29975016,"spesh":355,"type":"Scalar"}],"inclusive_time":7369,"spesh_entries":355,"file":"gen/moar/m-CORE.setting","entries":607,"callees":[{"exclusive_time":2250,"id":34365888,"line":14553,"name":"","allocations":[{"count":607,"id":51227144,"type":"List::Reifier","jit":401}],"inclusive_time":4321,"file":"gen/moar/m-CORE.setting","jit_entries":401,"entries":607,"callees":[{"exclusive_time":989,"id":35546320,"line":13985,"name":"reification-target","inclusive_time":1122,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":607,"callees":[{"exclusive_time":81,"id":35540240,"line":13900,"name":"ensure-allocated","inclusive_time":81,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":607},{"exclusive_time":51,"id":35552400,"line":14088,"name":"sink","inclusive_time":51,"file":"gen/moar/m-CORE.setting","jit_entries":607,"entries":607}]},{"exclusive_time":529,"id":25500864,"line":655,"name":"last","inclusive_time":949,"spesh_entries":401,"file":"gen/moar/m-CORE.setting","jit_entries":206,"entries":607,"callees":[{"exclusive_time":419,"id":25496304,"line":603,"name":"THROW-NIL","allocations":[{"count":607,"id":19706488,"spesh":607,"type":"BOOTException"}],"inclusive_time":419,"spesh_entries":607,"file":"gen/moar/m-CORE.setting","entries":607}]}]}]}]},{"exclusive_time":73,"id":34186832,"line":7920,"name":"infix:<*>","inclusive_time":329,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":83,"id":38060448,"line":2048,"name":"","allocations":[{"count":4,"id":19706296,"spesh":4,"type":"BOOTCode"},{"count":4,"id":19707232,"spesh":4,"type":"NQPArray"},{"count":2,"id":19706248,"spesh":2,"type":"BOOTHash"}],"inclusive_time":84,"spesh_entries":2,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":2,"callees":[{"exclusive_time":1,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":2,"entries":2}]},{"exclusive_time":18,"id":34460432,"line":19105,"name":"infix:<*>","inclusive_time":98,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":3,"id":34946224,"line":2339,"name":"<anon>","inclusive_time":3,"file":"gen/moar/m-CORE.setting","entries":4},{"exclusive_time":3,"id":34186832,"line":7920,"name":"infix:<*>","inclusive_time":36,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":28,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"spesh":2,"type":"BOOTCode"},{"count":2,"id":19707232,"spesh":2,"type":"NQPArray"},{"count":1,"id":19706248,"spesh":1,"type":"BOOTHash"}],"inclusive_time":30,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":1,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1}]},{"exclusive_time":2,"id":34224224,"line":8453,"name":"infix:<*>","allocations":[{"count":1,"id":29974944,"type":"Int"}],"inclusive_time":2,"file":"gen/moar/m-CORE.setting","entries":1}]},{"exclusive_time":1,"id":34224224,"line":8453,"name":"infix:<*>","allocations":[{"count":1,"id":29974944,"type":"Int"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":22,"id":34454352,"line":18996,"name":"DIVIDE_NUMBERS","allocations":[{"count":3,"id":29975016,"type":"Scalar"},{"count":1,"id":52430760,"type":"Rat"}],"inclusive_time":38,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":1,"id":34228480,"line":8515,"name":"infix:<==>","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":4,"id":34227264,"line":8500,"name":"infix:<gcd>","allocations":[{"count":1,"id":29974944,"type":"Int"}],"inclusive_time":4,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":8,"id":34224832,"line":8460,"name":"infix:<div>","allocations":[{"count":2,"id":29974944,"type":"Int"}],"inclusive_time":8,"file":"gen/moar/m-CORE.setting","entries":2,"callees":[{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2}]},{"exclusive_time":1,"id":34229392,"line":8526,"name":"infix:«<»","inclusive_time":1,"file":"gen/moar/m-CORE.setting","jit_entries":2,"entries":2},{"exclusive_time":0,"id":35552400,"line":14088,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1},{"exclusive_time":0,"id":34818544,"line":856,"name":"sink","inclusive_time":0,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]},{"exclusive_time":8,"id":34212368,"line":8177,"name":"infix:<*>","inclusive_time":72,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":0,"id":35242320,"line":8826,"name":"Bridge","inclusive_time":0,"file":"gen/moar/m-CORE.setting","entries":1},{"exclusive_time":3,"id":35846976,"line":18832,"name":"Bridge","inclusive_time":14,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":8,"id":35845760,"line":18807,"name":"Num","allocations":[{"count":1,"id":29974920,"type":"Num"}],"inclusive_time":10,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":2,"id":34228480,"line":8515,"name":"infix:<==>","inclusive_time":2,"file":"gen/moar/m-CORE.setting","jit_entries":1,"entries":1}]}]},{"exclusive_time":18,"id":34186832,"line":7920,"name":"infix:<*>","inclusive_time":48,"file":"gen/moar/m-CORE.setting","entries":1,"callees":[{"exclusive_time":28,"id":38060448,"line":2048,"name":"","allocations":[{"count":2,"id":19706296,"spesh":2,"type":"BOOTCode"},{"count":2,"id":19707232,"spesh":2,"type":"NQPArray"},{"count":1,"id":19706248,"spesh":1,"type":"BOOTHash"}],"inclusive_time":28,"spesh_entries":1,"file":"gen/moar/m-BOOTSTRAP.nqp","entries":1,"callees":[{"exclusive_time":0,"id":38060752,"line":2332,"name":"add_to_cache","inclusive_time":0,"file":"gen/moar/m-BOOTSTRAP.nqp","jit_entries":1,"entries":1}]},{"exclusive_time":1,"id":34278944,"line":9129,"name":"infix:<*>","allocations":[{"count":1,"id":29974920,"type":"Num"}],"inclusive_time":1,"file":"gen/moar/m-CORE.setting","entries":1}]}]}]},{"exclusive_time":1266,"id":34848336,"line":1183,"name":"Stringy","inclusive_time":3058,"spesh_entries":722,"file":"gen/moar/m-CORE.setting","jit_entries":362,"entries":1234,"callees":[{"exclusive_time":1791,"id":35223168,"line":8254,"name":"Str","allocations":[{"count":1234,"id":29975064,"spesh":722,"type":"Str","jit":367}],"inclusive_time":1791,"spesh_entries":722,"file":"gen/moar/m-CORE.setting","inlined_entries":1084,"jit_entries":367,"entries":1234}]},{"exclusive_time":6849,"id":34506032,"line":25197,"name":"say","allocations":[{"count":617,"id":29974968,"spesh":361,"type":"StrLexRef","jit":50}],"inclusive_time":53280,"spesh_entries":361,"file":"gen/moar/m-CORE.setting","jit_entries":50,"entries":617,"callees":[{"exclusive_time":7656,"id":25494176,"line":556,"name":"DYNAMIC","allocations":[{"count":617,"id":19706296,"type":"BOOTCode","jit":415}],"inclusive_time":16169,"file":"gen/moar/m-CORE.setting","jit_entries":415,"entries":617,"callees":[{"exclusive_time":3898,"id":25494480,"line":558,"name":"","allocations":[{"count":617,"id":19706296,"spesh":415,"type":"BOOTCode"},{"count":617,"id":29975016,"spesh":415,"type":"Scalar"}],"inclusive_time":8445,"spesh_entries":415,"file":"gen/moar/m-CORE.setting","entries":617,"callees":[{"exclusive_time":66,"id":35552400,"line":14088,"name":"sink","inclusive_time":66,"file":"gen/moar/m-CORE.setting","jit_entries":617,"entries":617},{"exclusive_time":4479,"id":25494784,"line":564,"name":"","inclusive_time":4479,"spesh_entries":415,"file":"gen/moar/m-CORE.setting","entries":617}]},{"exclusive_time":68,"id":35552400,"line":14088,"name":"sink","inclusive_time":68,"file":"gen/moar/m-CORE.setting","jit_entries":617,"entries":617}]},{"exclusive_time":982,"id":34944704,"line":2316,"name":"<anon>","inclusive_time":982,"file":"gen/moar/m-CORE.setting","jit_entries":545,"entries":617},{"exclusive_time":29278,"id":36289600,"line":24412,"name":"print","inclusive_time":29278,"spesh_entries":463,"file":"gen/moar/m-CORE.setting","entries":617}]},{"exclusive_time":1384,"id":34460432,"line":19105,"name":"infix:<*>","inclusive_time":5771,"file":"gen/moar/m-CORE.setting","entries":89,"callees":[{"exclusive_time":181,"id":34946224,"line":2339,"name":"<anon>","inclusive_time":181,"file":"gen/moar/m-CORE.setting","jit_entries":324,"entries":356},{"exclusive_time":314,"id":34224224,"line":8453,"name":"infix:<*>","allocations":[{"count":178,"id":29974944,"type":"Int","jit":144}],"inclusive_time":314,"file":"gen/moar/m-CORE.setting","jit_entries":144,"entries":178},{"exclusive_time":2060,"id":34454352,"line":18996,"name":"DIVIDE_NUMBERS","allocations":[{"count":267,"id":29975016,"type":"Scalar"},{"count":79,"id":52430760,"type":"Rat"},{"count":10,"id":29974920,"type":"Num"}],"inclusive_time":3890,"file":"gen/moar/m-CORE.setting","entries":89,"callees":[{"exclusive_time":175,"id":34228480,"line":8515,"name":"infix:<==>","inclusive_time":175,"file":"gen/moar/m-CORE.setting","jit_entries":89,"entries":89},{"exclusive_time":690,"id":34227264,"line":8500,"name":"infix:<gcd>","allocations":[{"count":89,"id":29974944,"type":"Int","jit":63}],"inclusive_time":690,"file":"gen/moar/m-CORE.setting","jit_entries":63,"entries":89},{"exclusive_time":791,"id":34224832,"line":8460,"name":"infix:<div>","allocations":[{"count":178,"id":29974944,"type":"Int","jit":144}],"inclusive_time":809,"file":"gen/moar/m-CORE.setting","jit_entries":144,"entries":178,"callees":[{"exclusive_time":17,"id":35552400,"line":14088,"name":"sink","inclusive_time":17,"file":"gen/moar/m-CORE.setting","jit_entries":178,"entries":178}]},{"exclusive_time":131,"id":34229392,"line":8526,"name":"infix:«<»","inclusive_time":131,"file":"gen/moar/m-CORE.setting","jit_entries":178,"entries":178},{"exclusive_time":9,"id":35552400,"line":14088,"name":"sink","inclusive_time":9,"file":"gen/moar/m-CORE.setting","jit_entries":89,"entries":89},{"exclusive_time":13,"id":34818544,"line":856,"name":"sink","inclusive_time":13,"file":"gen/moar/m-CORE.setting","jit_entries":79,"entries":89}]}]},{"exclusive_time":4035,"id":34212368,"line":8177,"name":"infix:<*>","inclusive_time":9760,"file":"gen/moar/m-CORE.setting","jit_entries":311,"entries":517,"callees":[{"exclusive_time":47,"id":35242320,"line":8826,"name":"Bridge","inclusive_time":47,"file":"gen/moar/m-CORE.setting","jit_entries":494,"entries":517},{"exclusive_time":2187,"id":35846976,"line":18832,"name":"Bridge","inclusive_time":5285,"file":"gen/moar/m-CORE.setting","jit_entries":412,"entries":517,"callees":[{"exclusive_time":1830,"id":35845760,"line":18807,"name":"Num","allocations":[{"count":517,"id":29974920,"type":"Num","jit":503}],"inclusive_time":3098,"file":"gen/moar/m-CORE.se
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment