Skip to content

Instantly share code, notes, and snippets.

@stepheneb
Created April 3, 2012 04:15
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stepheneb/2289269 to your computer and use it in GitHub Desktop.
Save stepheneb/2289269 to your computer and use it in GitHub Desktop.
running md2d.js with d8 tracing

Build v8 (creates the d8 executable):

git clone git://github.com/v8/v8.git v8-git
cd v8-git/
make dependencies
make native

If you don't have a copy of the lab repo download md2d.js from this gist:

curl https://raw.github.com/gist/2289269/md2d.js -o md2d.js

If you do have a local copy of the Lab repo then make a copy of the md-engine/ folder generated by the lab repo and append add-to-md2d.js to the end of md-engine/md2d.js:

cp -R $PATH_TO_LAB/md-engine ../
curl https://raw.github.com/gist/2289269/add-to-md2d.js >> ../md-engine/md2d.js

Run md2d.js without profiling (use correct path to md2d.js):

$ out/native/d8  md2d.js
initializing to temp 100
*** MD warmup: 1000 steps
*** MD benchmark: 5 runs, 1000 steps
*** MD run 1: 2028
*** MD run 2: 2009.9999999999998
*** MD run 3: 1993
*** MD run 4: 2072
*** MD run 5: 2015.0000000000002
*** MD ave: 2023.6

Running with just d8 I get 2024 average model-steps/s (Mac OS X 10.6.8 2.66 GHz Intel Core i7 with 8GB memory).

Benchmarking the same MD engine while running the Complex Atoms model generated by the tag v0.1.1 in Chrome 20.0.1090.0 I am normally seeing benchmark results for just the model of 550-600 model-steps/s.

However when Chrome is running slowly the rate drops to 120-150.

I do not see the slowdown running the latest Complex Atoms model generated by the master branch in Chrome 20.0.1092.0.

Testing on Windows 7 (on the same machine) I have recorded performance as high as 1724 model-steps/s.

Run d8 (v8) with various tracing flags enabled:

out/native/d8 --trace-opt --trace-inlining --trace-deopt --code-comments --trace-gc md2d.js 

Here is a copy of recent profiling results.

For more info on interpreting the results see Florian Loitsch's series on profiling and optimizing code for V8.

You can also run md2d.js in node with or without the profiling arguments:

$ node --trace-deopt --code-comments md2d.js

[deoptimize context: 102010579]
initializing to temp 100
*** MD warmup: 1000 steps
**** DEOPT: require.define.makeIntegrator.integrate at bailout #307, address 0x0, frame size 1232
[deoptimizing: begin 0x1007baf21 require.define.makeIntegrator.integrate @307]
  translating require.define.makeIntegrator.integrate => node=1792, height=224
    0x7fff5fbfdf60: [top + 272] <- 0x1260643b9 ; [esp + 944]
    0x7fff5fbfdf58: [top + 264] <- 0x1002000b1 <undefined> ; literal
    ...

References:

Resources:

exports = {};
if (typeof console === 'undefined') {
console = {} ;
console.log = console.info = console.warn = console.error = print;
}
var model = require('./md2d').model,
nodes,
integrator, state;
model.createNodes();
nodes = model.nodes;
integrator = model.getIntegrator();
state = integrator.getOutputState();
exports.run = function() {
var n = 1000,
runs = 5,
result,
results = [],
ave,
i, j, begin;
// warm up
console.log( "*** MD warmup: " + n + " steps");
for (i = 0; i < n; i++) {
integrator.integrate();
}
console.log( "*** MD benchmark: " + runs + ' runs, ' + n + " steps");
for (j = 1; j <= runs; j++) {
begin = Date.now();
for (i = 0; i < n; i++) {
integrator.integrate();
}
result = +(Date.now() - begin) / n * 1000;
results.push(result);
console.log( "*** MD run " + j + ': '+ result);
}
ave = results.reduce(function(prev, current) { return prev + current }) / runs;
console.log( "*** MD ave: " + ave);
};
exports.run();
var require = function (file, cwd) {
var resolved = require.resolve(file, cwd || '/');
var mod = require.modules[resolved];
if (!mod) throw new Error(
'Failed to resolve module ' + file + ', tried ' + resolved
);
var res = mod._cached ? mod._cached : mod();
return res;
}
require.paths = [];
require.modules = {};
require.extensions = [".js",".coffee"];
require._core = {
'assert': true,
'events': true,
'fs': true,
'path': true,
'vm': true
};
require.resolve = (function () {
return function (x, cwd) {
if (!cwd) cwd = '/';
if (require._core[x]) return x;
var path = require.modules.path();
cwd = path.resolve('/', cwd);
var y = cwd || '/';
if (x.match(/^(?:\.\.?\/|\/)/)) {
var m = loadAsFileSync(path.resolve(y, x))
|| loadAsDirectorySync(path.resolve(y, x));
if (m) return m;
}
var n = loadNodeModulesSync(x, y);
if (n) return n;
throw new Error("Cannot find module '" + x + "'");
function loadAsFileSync (x) {
if (require.modules[x]) {
return x;
}
for (var i = 0; i < require.extensions.length; i++) {
var ext = require.extensions[i];
if (require.modules[x + ext]) return x + ext;
}
}
function loadAsDirectorySync (x) {
x = x.replace(/\/+$/, '');
var pkgfile = x + '/package.json';
if (require.modules[pkgfile]) {
var pkg = require.modules[pkgfile]();
var b = pkg.browserify;
if (typeof b === 'object' && b.main) {
var m = loadAsFileSync(path.resolve(x, b.main));
if (m) return m;
}
else if (typeof b === 'string') {
var m = loadAsFileSync(path.resolve(x, b));
if (m) return m;
}
else if (pkg.main) {
var m = loadAsFileSync(path.resolve(x, pkg.main));
if (m) return m;
}
}
return loadAsFileSync(x + '/index');
}
function loadNodeModulesSync (x, start) {
var dirs = nodeModulesPathsSync(start);
for (var i = 0; i < dirs.length; i++) {
var dir = dirs[i];
var m = loadAsFileSync(dir + '/' + x);
if (m) return m;
var n = loadAsDirectorySync(dir + '/' + x);
if (n) return n;
}
var m = loadAsFileSync(x);
if (m) return m;
}
function nodeModulesPathsSync (start) {
var parts;
if (start === '/') parts = [ '' ];
else parts = path.normalize(start).split('/');
var dirs = [];
for (var i = parts.length - 1; i >= 0; i--) {
if (parts[i] === 'node_modules') continue;
var dir = parts.slice(0, i + 1).join('/') + '/node_modules';
dirs.push(dir);
}
return dirs;
}
};
})();
require.alias = function (from, to) {
var path = require.modules.path();
var res = null;
try {
res = require.resolve(from + '/package.json', '/');
}
catch (err) {
res = require.resolve(from, '/');
}
var basedir = path.dirname(res);
var keys = (Object.keys || function (obj) {
var res = [];
for (var key in obj) res.push(key)
return res;
})(require.modules);
for (var i = 0; i < keys.length; i++) {
var key = keys[i];
if (key.slice(0, basedir.length + 1) === basedir + '/') {
var f = key.slice(basedir.length);
require.modules[to + f] = require.modules[basedir + f];
}
else if (key === basedir) {
require.modules[to] = require.modules[basedir];
}
}
};
require.define = function (filename, fn) {
var dirname = require._core[filename]
? ''
: require.modules.path().dirname(filename)
;
var require_ = function (file) {
return require(file, dirname)
};
require_.resolve = function (name) {
return require.resolve(name, dirname);
};
require_.modules = require.modules;
require_.define = require.define;
var module_ = { exports : {} };
require.modules[filename] = function () {
require.modules[filename]._cached = module_.exports;
fn.call(
module_.exports,
require_,
module_,
module_.exports,
dirname,
filename
);
require.modules[filename]._cached = module_.exports;
return module_.exports;
};
};
if (typeof process === 'undefined') process = {};
if (!process.nextTick) process.nextTick = (function () {
var queue = [];
var canPost = typeof window !== 'undefined'
&& window.postMessage && window.addEventListener
;
if (canPost) {
window.addEventListener('message', function (ev) {
if (ev.source === window && ev.data === 'browserify-tick') {
ev.stopPropagation();
if (queue.length > 0) {
var fn = queue.shift();
fn();
}
}
}, true);
}
return function (fn) {
if (canPost) {
queue.push(fn);
window.postMessage('browserify-tick', '*');
}
else setTimeout(fn, 0);
};
})();
if (!process.title) process.title = 'browser';
if (!process.binding) process.binding = function (name) {
if (name === 'evals') return require('vm')
else throw new Error('No such module')
};
if (!process.cwd) process.cwd = function () { return '.' };
if (!process.env) process.env = {};
if (!process.argv) process.argv = [];
require.define("path", function (require, module, exports, __dirname, __filename) {
function filter (xs, fn) {
var res = [];
for (var i = 0; i < xs.length; i++) {
if (fn(xs[i], i, xs)) res.push(xs[i]);
}
return res;
}
// resolves . and .. elements in a path array with directory names there
// must be no slashes, empty elements, or device names (c:\) in the array
// (so also no leading and trailing slashes - it does not distinguish
// relative and absolute paths)
function normalizeArray(parts, allowAboveRoot) {
// if the path tries to go above the root, `up` ends up > 0
var up = 0;
for (var i = parts.length; i >= 0; i--) {
var last = parts[i];
if (last == '.') {
parts.splice(i, 1);
} else if (last === '..') {
parts.splice(i, 1);
up++;
} else if (up) {
parts.splice(i, 1);
up--;
}
}
// if the path is allowed to go above the root, restore leading ..s
if (allowAboveRoot) {
for (; up--; up) {
parts.unshift('..');
}
}
return parts;
}
// Regex to split a filename into [*, dir, basename, ext]
// posix version
var splitPathRe = /^(.+\/(?!$)|\/)?((?:.+?)?(\.[^.]*)?)$/;
// path.resolve([from ...], to)
// posix version
exports.resolve = function() {
var resolvedPath = '',
resolvedAbsolute = false;
for (var i = arguments.length; i >= -1 && !resolvedAbsolute; i--) {
var path = (i >= 0)
? arguments[i]
: process.cwd();
// Skip empty and invalid entries
if (typeof path !== 'string' || !path) {
continue;
}
resolvedPath = path + '/' + resolvedPath;
resolvedAbsolute = path.charAt(0) === '/';
}
// At this point the path should be resolved to a full absolute path, but
// handle relative paths to be safe (might happen when process.cwd() fails)
// Normalize the path
resolvedPath = normalizeArray(filter(resolvedPath.split('/'), function(p) {
return !!p;
}), !resolvedAbsolute).join('/');
return ((resolvedAbsolute ? '/' : '') + resolvedPath) || '.';
};
// path.normalize(path)
// posix version
exports.normalize = function(path) {
var isAbsolute = path.charAt(0) === '/',
trailingSlash = path.slice(-1) === '/';
// Normalize the path
path = normalizeArray(filter(path.split('/'), function(p) {
return !!p;
}), !isAbsolute).join('/');
if (!path && !isAbsolute) {
path = '.';
}
if (path && trailingSlash) {
path += '/';
}
return (isAbsolute ? '/' : '') + path;
};
// posix version
exports.join = function() {
var paths = Array.prototype.slice.call(arguments, 0);
return exports.normalize(filter(paths, function(p, index) {
return p && typeof p === 'string';
}).join('/'));
};
exports.dirname = function(path) {
var dir = splitPathRe.exec(path)[1] || '';
var isWindows = false;
if (!dir) {
// No dirname
return '.';
} else if (dir.length === 1 ||
(isWindows && dir.length <= 3 && dir.charAt(1) === ':')) {
// It is just a slash or a drive letter with a slash
return dir;
} else {
// It is a full dirname, strip trailing slash
return dir.substring(0, dir.length - 1);
}
};
exports.basename = function(path, ext) {
var f = splitPathRe.exec(path)[2] || '';
// TODO: make this comparison case-insensitive on windows?
if (ext && f.substr(-1 * ext.length) === ext) {
f = f.substr(0, f.length - ext.length);
}
return f;
};
exports.extname = function(path) {
return splitPathRe.exec(path)[3] || '';
};
});
require.define("/arrays/arrays.js", function (require, module, exports, __dirname, __filename) {
/*globals window Uint8Array Int8Array Uint16Array Int16Array Uint32Array Int32Array Float32Array Float64Array */
/*jshint newcap: false */
//
// 'requirified' version of Typed Array Utilities.
//
var arrays;
arrays = exports.arrays = {};
arrays.version = '0.0.1';
arrays.webgl = (typeof window !== 'undefined') && !!window.WebGLRenderingContext;
arrays.typed = false;
try {
var a = new Float64Array(0);
arrays.typed = true;
} catch(e) {
}
// regular
// Uint8Array
// Uint16Array
// Uint32Array
// Int8Array
// Int16Array
// Int32Array
// Float32Array
arrays.create = function(size, fill, array_type) {
if (!array_type) {
if (arrays.webgl || arrays.typed) {
array_type = "Float32Array";
} else {
array_type = "regular";
}
}
fill = fill || 0;
var a, i;
if (array_type === "regular") {
a = new Array(size);
} else {
switch(array_type) {
case "Float64Array":
a = new Float64Array(size);
break;
case "Float32Array":
a = new Float32Array(size);
break;
case "Int32Array":
a = new Int32Array(size);
break;
case "Int16Array":
a = new Int16Array(size);
break;
case "Int8Array":
a = new Int8Array(size);
break;
case "Uint32Array":
a = new Uint32Array(size);
break;
case "Uint16Array":
a = new Uint16Array(size);
break;
case "Uint8Array":
a = new Uint8Array(size);
break;
default:
a = new Array(size);
break;
}
}
i=-1; while(++i < size) { a[i] = fill; }
return a;
};
arrays.constructor_function = function(source) {
if (source.buffer && source.buffer.__proto__.constructor) {
return source.__proto__.constructor;
}
if (source.constructor === Array) {
return source.constructor;
}
throw new Error(
"arrays.constructor_function: must be an Array or Typed Array: " +
" source: " + source +
", source.constructor: " + source.constructor +
", source.buffer: " + source.buffer +
", source.buffer.slice: " + source.buffer.slice +
", source.buffer.__proto__: " + source.buffer.__proto__ +
", source.buffer.__proto__.constructor: " + source.buffer.__proto__.constructor
);
};
arrays.copy = function(source, dest) {
var len = source.length,
i = -1;
while(++i < len) { dest[i] = source[i]; }
dest.length = len;
return dest;
};
arrays.clone = function(source) {
var i, len = source.length, clone, constructor;
constructor = arrays.constructor_function(source);
if (constructor === Array) {
clone = new constructor(len);
for (i = 0; i < len; i++) { clone[i] = source[i]; }
return clone;
}
if (source.buffer.slice) {
clone = new constructor(source.buffer.slice(0));
return clone;
}
clone = new constructor(len);
for (i = 0; i < len; i++) { clone[i] = source[i]; }
return clone;
};
/** @return true if x is between a and b. */
// float a, float b, float x
arrays.between = function(a, b, x) {
return x < Math.max(a, b) && x > Math.min(a, b);
};
// float[] array
arrays.max = function(array) {
return Math.max.apply( Math, array );
};
// float[] array
arrays.min = function(array) {
return Math.min.apply( Math, array );
};
// FloatxxArray[] array
arrays.maxTypedArray = function(array) {
var test, i,
max = Number.MIN_VALUE,
length = array.length;
for(i = 0; i < length; i++) {
test = array[i];
max = test > max ? test : max;
}
return max;
};
// FloatxxArray[] array
arrays.minTypedArray = function(array) {
var test, i,
min = Number.MAX_VALUE,
length = array.length;
for(i = 0; i < length; i++) {
test = array[i];
min = test < min ? test : min;
}
return min;
};
// float[] array
arrays.maxAnyArray = function(array) {
try {
return Math.max.apply( Math, array );
}
catch (e) {
if (e instanceof TypeError) {
var test, i,
max = Number.MIN_VALUE,
length = array.length;
for(i = 0; i < length; i++) {
test = array[i];
max = test > max ? test : max;
}
return max;
}
}
};
// float[] array
arrays.minAnyArray = function(array) {
try {
return Math.min.apply( Math, array );
}
catch (e) {
if (e instanceof TypeError) {
var test, i,
min = Number.MAX_VALUE,
length = array.length;
for(i = 0; i < length; i++) {
test = array[i];
min = test < min ? test : min;
}
return min;
}
}
};
arrays.average = function(array) {
var i, acc = 0,
length = array.length;
for (i = 0; i < length; i++) {
acc += array[i];
}
return acc / length;
};
});
require.define("/constants/index.js", function (require, module, exports, __dirname, __filename) {
/*jslint loopfunc: true */
/** A list of physical constants. To access any given constant, require() this module
and call the 'as' method of the desired constant to get the constant in the desired unit.
This module also provides a few helper functions for unit conversion.
Usage:
var constants = require('./constants'),
ATOMIC_MASS_IN_GRAMS = constants.ATOMIC_MASS.as(constants.unit.GRAM),
GRAMS_PER_KILOGRAM = constants.ratio(constants.unit.GRAM, { per: constants.unit.KILOGRAM }),
// this works for illustration purposes, although the preferred method would be to pass
// constants.unit.KILOGRAM to the 'as' method:
ATOMIC_MASS_IN_KILOGRAMS = constants.convert(ATOMIC_MASS_IN_GRAMS, {
from: constants.unit.GRAM,
to: constants.unit.KILOGRAM
});
*/
var units = require('./units'),
unit = units.unit,
ratio = units.ratio,
convert = units.convert,
constants = {
ELEMENTARY_CHARGE: {
value: 1,
unit: unit.ELEMENTARY_CHARGE
},
ATOMIC_MASS: {
value: 1,
unit: unit.DALTON
},
BOLTZMANN_CONSTANT: {
value: 1.380658e-23,
unit: unit.JOULES_PER_KELVIN
},
AVAGADRO_CONSTANT: {
// N_A is numerically equal to Dalton per gram
value: ratio( unit.DALTON, { per: unit.GRAM }),
unit: unit.INVERSE_MOLE
},
PERMITTIVITY_OF_FREE_SPACE: {
value: 8.854187e-12,
unit: unit.FARADS_PER_METER
}
},
constantName, constant;
// Derived units
constants.COULOMB_CONSTANT = {
value: 1 / (4 * Math.PI * constants.PERMITTIVITY_OF_FREE_SPACE.value),
unit: unit.METERS_PER_FARAD
};
// Exports
exports.unit = unit;
exports.ratio = ratio;
exports.convert = convert;
// Require explicitness about units by publishing constants as a set of objects with only an 'as' property,
// which will return the constant in the specified unit.
for (constantName in constants) {
if (constants.hasOwnProperty(constantName)) {
constant = constants[constantName];
exports[constantName] = (function(constant) {
return {
as: function(toUnit) {
return units.convert(constant.value, { from: constant.unit, to: toUnit });
}
};
}(constant));
}
}
});
require.define("/constants/units.js", function (require, module, exports, __dirname, __filename) {
/** Provides a few simple helper functions for converting related unit types.
This sub-module doesn't do unit conversion between compound unit types (e.g., knowing that kg*m/s^2 = J)
only simple scaling between units measuring the same type of quantity.
*/
// Prefer the "per" formulation to the "in" formulation.
//
// If KILOGRAMS_PER_AMU is 1.660540e-27 we know the math is:
// "1 amu * 1.660540e-27 kg/amu = 1.660540e-27 kg"
// (Whereas the "in" forumulation might be slighty more error prone:
// given 1 amu and 6.022e-26 kg in an amu, how do you get kg again?)
// These you might have to look up...
var KILOGRAMS_PER_DALTON = 1.660540e-27,
COULOMBS_PER_ELEMENTARY_CHARGE = 1.602177e-19,
// 1 eV = 1 e * 1 V = (COULOMBS_PER_ELEMENTARY_CHARGE) C * 1 J/C
JOULES_PER_EV = COULOMBS_PER_ELEMENTARY_CHARGE,
// though these are equally important!
SECONDS_PER_FEMTOSECOND = 1e-15,
METERS_PER_NANOMETER = 1e-9,
ANGSTROMS_PER_NANOMETER = 10,
GRAMS_PER_KILOGRAM = 1000,
types = {
TIME: "time",
LENGTH: "length",
MASS: "mass",
ENERGY: "energy",
ENTROPY: "entropy",
CHARGE: "charge",
INVERSE_QUANTITY: "inverse quantity",
FARADS_PER_METER: "farads per meter",
METERS_PER_FARAD: "meters per farad",
FORCE: "force",
VELOCITY: "velocity",
// unused as of yet
AREA: "area",
PRESSURE: "pressure"
},
unit,
ratio,
convert;
/**
In each of these units, the reference type we actually use has value 1, and conversion
ratios for the others are listed.
*/
exports.unit = unit = {
FEMTOSECOND: { name: "femtosecond", value: 1, type: types.TIME },
SECOND: { name: "second", value: SECONDS_PER_FEMTOSECOND, type: types.TIME },
NANOMETER: { name: "nanometer", value: 1, type: types.LENGTH },
ANGSTROM: { name: "Angstrom", value: 1 * ANGSTROMS_PER_NANOMETER, type: types.LENGTH },
METER: { name: "meter", value: 1 * METERS_PER_NANOMETER, type: types.LENGTH },
DALTON: { name: "Dalton", value: 1, type: types.MASS },
GRAM: { name: "gram", value: 1 * KILOGRAMS_PER_DALTON * GRAMS_PER_KILOGRAM, type: types.MASS },
KILOGRAM: { name: "kilogram", value: 1 * KILOGRAMS_PER_DALTON, type: types.MASS },
MW_ENERGY_UNIT: {
name: "MW Energy Unit (Dalton * nm^2 / fs^2)",
value: 1,
type: types.ENERGY
},
JOULE: {
name: "Joule",
value: KILOGRAMS_PER_DALTON *
METERS_PER_NANOMETER * METERS_PER_NANOMETER *
(1/SECONDS_PER_FEMTOSECOND) * (1/SECONDS_PER_FEMTOSECOND),
type: types.ENERGY
},
EV: {
name: "electron volt",
value: KILOGRAMS_PER_DALTON *
METERS_PER_NANOMETER * METERS_PER_NANOMETER *
(1/SECONDS_PER_FEMTOSECOND) * (1/SECONDS_PER_FEMTOSECOND) *
(1/JOULES_PER_EV),
type: types.ENERGY
},
EV_PER_KELVIN: { name: "electron volts per Kelvin", value: 1, type: types.ENTROPY },
JOULES_PER_KELVIN: { name: "Joules per Kelvin", value: 1 * JOULES_PER_EV, type: types.ENTROPY },
ELEMENTARY_CHARGE: { name: "elementary charge", value: 1, type: types.CHARGE },
COULOMB: { name: "Coulomb", value: COULOMBS_PER_ELEMENTARY_CHARGE, type: types.CHARGE },
INVERSE_MOLE: { name: "inverse moles", value: 1, type: types.INVERSE_QUANTITY },
FARADS_PER_METER: { name: "Farads per meter", value: 1, type: types.FARADS_PER_METER },
METERS_PER_FARAD: { name: "meters per Farad", value: 1, type: types.METERS_PER_FARAD },
MW_FORCE_UNIT: {
name: "MW force units (Dalton * nm / fs^2)",
value: 1,
type: types.FORCE
},
NEWTON: {
name: "Newton",
value: 1 * KILOGRAMS_PER_DALTON * METERS_PER_NANOMETER * (1/SECONDS_PER_FEMTOSECOND) * (1/SECONDS_PER_FEMTOSECOND),
type: types.FORCE
},
MW_VELOCITY_UNIT: {
name: "MW velocity units (nm / fs)",
value: 1,
type: types.VELOCITY
},
METERS_PER_SECOND: {
name: "meters per second",
value: 1 * METERS_PER_NANOMETER * (1 / SECONDS_PER_FEMTOSECOND),
type: types.VELOCITY
}
};
/** Provide ratios for conversion of one unit to an equivalent unit type.
Usage: ratio(units.GRAM, { per: units.KILOGRAM }) === 1000
ratio(units.GRAM, { as: units.KILOGRAM }) === 0.001
*/
exports.ratio = ratio = function(from, to) {
var checkCompatibility = function(fromUnit, toUnit) {
if (fromUnit.type !== toUnit.type) {
throw new Error("Attempt to convert incompatible type '" + fromUnit.name + "'' to '" + toUnit.name + "'");
}
};
if (to.per) {
checkCompatibility(from, to.per);
return from.value / to.per.value;
} else if (to.as) {
checkCompatibility(from, to.as);
return to.as.value / from.value;
} else {
throw new Error("units.ratio() received arguments it couldn't understand.");
}
};
/** Scale 'val' to a different unit of the same type.
Usage: convert(1, { from: unit.KILOGRAM, to: unit.GRAM }) === 1000
*/
exports.convert = convert = function(val, fromTo) {
var from = fromTo && fromTo.from,
to = fromTo && fromTo.to;
if (!from) {
throw new Error("units.convert() did not receive a \"from\" argument");
}
if (!to) {
throw new Error("units.convert() did not receive a \"to\" argument");
}
return val * ratio(to, { per: from });
};
});
require.define("/math/index.js", function (require, module, exports, __dirname, __filename) {
exports.normal = require('./distributions').normal;
exports.getWindowedAverager = require('./utils').getWindowedAverager;
});
require.define("/math/distributions.js", function (require, module, exports, __dirname, __filename) {
/*jslint eqnull: true */
// Simple (Box-Muller) univariate-normal random number generator.
//
// The 'science.js' library includes a Box-Muller implementation which is likely to be slower, especially in a
// modern Javascript engine, because it uses a rejection method to pick the random point in the unit circle.
// See discussion on pp. 1-3 of:
// http://www.math.nyu.edu/faculty/goodman/teaching/MonteCarlo2005/notes/GaussianSampling.pdf
//
exports.normal = (function() {
var next = null;
return function(mean, sd) {
if (mean == null) mean = 0;
if (sd == null) sd = 1;
var r, ret, theta, u1, u2;
if (next) {
ret = next;
next = null;
return ret;
}
u1 = Math.random();
u2 = Math.random();
theta = 2 * Math.PI * u1;
r = Math.sqrt(-2 * Math.log(u2));
next = mean + sd * (r * Math.sin(theta));
return mean + sd * (r * Math.cos(theta));
};
}());
});
require.define("/math/utils.js", function (require, module, exports, __dirname, __filename) {
/*jslint eqnull: true */
/**
Returns a function which accepts a single numeric argument and returns:
* the arithmetic mean of the windowSize most recent inputs, including the current input
* NaN if there have not been windowSize inputs yet.
The default windowSize is 1000.
*/
exports.getWindowedAverager = function(windowSize) {
if (windowSize == null) windowSize = 1000; // default window size
var i = 0,
vals = [],
sum_vals = 0;
return function(val) {
sum_vals -= (vals[i] || 0);
sum_vals += val;
vals[i] = val;
if (++i === windowSize) i = 0;
if (vals.length === windowSize) {
return sum_vals / windowSize;
}
else {
// don't allow any numerical comparisons with result to be true
return NaN;
}
}
};
});
require.define("/potentials/index.js", function (require, module, exports, __dirname, __filename) {
var potentials = exports.potentials = {};
exports.coulomb = require('./coulomb');
exports.getLennardJonesCalculator = require('./lennard-jones').getLennardJonesCalculator;
});
require.define("/potentials/coulomb.js", function (require, module, exports, __dirname, __filename) {
var
constants = require('../constants'),
unit = constants.unit,
COULOMB_CONSTANT_IN_METERS_PER_FARAD = constants.COULOMB_CONSTANT.as( constants.unit.METERS_PER_FARAD ),
NANOMETERS_PER_METER = constants.ratio(unit.NANOMETER, { per: unit.METER }),
COULOMBS_SQ_PER_ELEMENTARY_CHARGE_SQ = Math.pow( constants.ratio(unit.COULOMB, { per: unit.ELEMENTARY_CHARGE }), 2),
EV_PER_JOULE = constants.ratio(unit.EV, { per: unit.JOULE }),
MW_FORCE_UNITS_PER_NEWTON = constants.ratio(unit.MW_FORCE_UNIT, { per: unit.NEWTON }),
// Coulomb constant for expressing potential in eV given elementary charges, nanometers
k_ePotential = COULOMB_CONSTANT_IN_METERS_PER_FARAD *
COULOMBS_SQ_PER_ELEMENTARY_CHARGE_SQ *
NANOMETERS_PER_METER *
EV_PER_JOULE,
// Coulomb constant for expressing force in Dalton*nm/fs^2 given elementary charges, nanometers
k_eForce = COULOMB_CONSTANT_IN_METERS_PER_FARAD *
COULOMBS_SQ_PER_ELEMENTARY_CHARGE_SQ *
NANOMETERS_PER_METER *
NANOMETERS_PER_METER *
MW_FORCE_UNITS_PER_NEWTON,
// Exports
/** Input units:
r: nanometers,
q1, q2: elementary charges
Output units: eV
*/
potential = exports.potential = function(r, q1, q2) {
return k_ePotential * ((q1 * q2) / r);
},
/** Input units:
r_sq: nanometers^2
q1, q2: elementary charges
Output units: "MW Force Units" (Dalton * nm / fs^2)
*/
forceFromSquaredDistance = exports.forceFromSquaredDistance = function(r_sq, q1, q2) {
return -k_eForce * ((q1 * q2) / r_sq);
},
/** Input units:
r: nanometers,
q1, q2: elementary charges
Output units: "MW Force Units" (Dalton * nm / fs^2)
*/
force = exports.force = function(r, q1, q2) {
return forceFromSquaredDistance(r*r, q1, q2);
};
});
require.define("/potentials/lennard-jones.js", function (require, module, exports, __dirname, __filename) {
var constants = require('../constants'),
unit = constants.unit,
NANOMETERS_PER_METER = constants.ratio( unit.NANOMETER, { per: unit.METER }),
MW_FORCE_UNITS_PER_NEWTON = constants.ratio( unit.MW_FORCE_UNIT, { per: unit.NEWTON });
/**
Returns a new object with methods for calculating the force and potential for a Lennard-Jones
potential with particular values of its parameters epsilon and sigma. These can be adjusted.
To avoid the needing to take square roots during calculation of pairwise forces, there are
also methods which calculate the inter-particle potential directly from a squared distance, and
which calculate the quantity (force/distance) directly from a squared distance.
This function also accepts a callback function which will be called with a hash representing
the new coefficients, whenever the LJ coefficients are changed for the returned calculator.
*/
exports.getLennardJonesCalculator = function(cb) {
var epsilon, // parameter; depth of the potential well, in eV
sigma, // parameter: characteristic distance from particle, in nm
rmin, // distance from particle at which the potential is at its minimum
alpha_Potential, // precalculated; units are eV * nm^12
beta_Potential, // precalculated; units are eV * nm^6
alpha_Force, // units are "MW Force Units" * nm^13
beta_Force, // units are "MW Force Units" * nm^7
coefficients = function(e, s) {
// Input units:
// epsilon: eV
// sigma: nm
if (arguments.length) {
epsilon = e;
sigma = s;
rmin = Math.pow(2, 1/6) * sigma;
alpha_Potential = 4 * epsilon * Math.pow(sigma, 12);
beta_Potential = 4 * epsilon * Math.pow(sigma, 6);
// (1 J * nm^12) = (1 N * m * nm^12)
// (1 N * m * nm^12) * (b nm / m) * (c MWUnits / N) = (abc MWUnits nm^13)
alpha_Force = 12 * constants.convert(alpha_Potential, { from: unit.EV, to: unit.JOULE }) * NANOMETERS_PER_METER * MW_FORCE_UNITS_PER_NEWTON;
beta_Force = 6 * constants.convert(beta_Potential, { from: unit.EV, to: unit.JOULE }) * NANOMETERS_PER_METER * MW_FORCE_UNITS_PER_NEWTON;
}
var coefficients = {
epsilon: epsilon,
sigma : sigma,
rmin : rmin
};
if (typeof cb === 'function') cb(coefficients);
return coefficients;
},
/**
Input units: r_sq: nm^2
Output units: eV
minimum is at r=rmin, V(rmin) = 0
*/
potentialFromSquaredDistance = function(r_sq) {
return alpha_Potential*Math.pow(r_sq, -6) - beta_Potential*Math.pow(r_sq, -3) + epsilon;
},
/**
Input units: r_sq: nm^2
Output units: MW Force Units / nm (= Dalton / fs^2)
*/
forceOverDistanceFromSquaredDistance = function(r_sq) {
// optimizing divisions actually does appear to be *slightly* faster
var r_minus2nd = 1 / r_sq,
r_minus6th = r_minus2nd * r_minus2nd * r_minus2nd,
r_minus8th = r_minus6th * r_minus2nd,
r_minus14th = r_minus8th * r_minus6th;
return alpha_Force*r_minus14th - beta_Force*r_minus8th;
};
return {
coefficients: coefficients,
setEpsilon: function(e) {
return coefficients(e, sigma);
},
setSigma: function(s) {
return coefficients(epsilon, s);
},
// "fast" forms which avoid the need for a square root
potentialFromSquaredDistance: potentialFromSquaredDistance,
/**
Input units: r: nm
Output units: eV
*/
potential: function(r) {
return potentialFromSquaredDistance(r*r);
},
forceOverDistanceFromSquaredDistance: forceOverDistanceFromSquaredDistance,
/**
Input units: r: nm
Output units: MW Force Units (= Dalton * nm / fs^2)
*/
force: function(r) {
return r * forceOverDistanceFromSquaredDistance(r*r);
}
};
};
});
require.define("/md2d.js", function (require, module, exports, __dirname, __filename) {
/*globals Float32Array */
/*globals Float32Array window*/
/*jslint eqnull: true */
if (typeof window === 'undefined') window = {};
var model = exports.model = {},
arrays = require('./arrays/arrays').arrays,
constants = require('./constants'),
unit = constants.unit,
math = require('./math'),
coulomb = require('./potentials').coulomb,
lennardJones = window.lennardJones = require('./potentials').getLennardJonesCalculator(),
// from A. Rahman "Correlations in the Motion of Atoms in Liquid Argon", Physical Review 136 pp. A405–A411 (1964)
ARGON_LJ_EPSILON_IN_EV = -120 * constants.BOLTZMANN_CONSTANT.as(unit.EV_PER_KELVIN),
ARGON_LJ_SIGMA_IN_NM = 0.34,
ARGON_MASS_IN_DALTON = 39.95,
ARGON_MASS_IN_KG = constants.convert(ARGON_MASS_IN_DALTON, { from: unit.DALTON, to: unit.KILOGRAM }),
BOLTZMANN_CONSTANT_IN_JOULES = constants.BOLTZMANN_CONSTANT.as( unit.JOULES_PER_KELVIN ),
makeIntegrator,
ljfLimitsNeedToBeUpdated = true,
setup_ljf_limits,
setup_coulomb_limits,
// TODO: Actually check for Safari. Typed arrays are faster almost everywhere
// ... except Safari.
notSafari = true,
hasTypedArrays = (function() {
try {
new Float32Array();
}
catch(e) {
return false;
}
return true;
}()),
// having finite values for these are a hack that get the relative strength of the forces wrong
maxLJRepulsion = -Infinity,
// determined by sigma
cutoffDistance_LJ,
size = [10, 10],
//
// Individual property arrays for the particles
//
radius, px, py, x, y, vx, vy, speed, ax, ay, mass, charge,
//
// Total mass of all particles in the system
//
totalMass,
// the total mass of all particles
//
// Number of individual properties for a particle
//
nodePropertiesCount = 12,
//
// A two dimensional array consisting of arrays of particle property values
//
nodes,
//
// Indexes into the nodes array for the individual particle property arrays
//
// Access to these within this module will be faster if they are vars in this closure rather than property lookups.
// However, publish the indices to model.INDICES for use outside this module.
//
RADIUS_INDEX = 0,
PX_INDEX = 1,
PY_INDEX = 2,
X_INDEX = 3,
Y_INDEX = 4,
VX_INDEX = 5,
VY_INDEX = 6,
SPEED_INDEX = 7,
AX_INDEX = 8,
AY_INDEX = 9,
MASS_INDEX = 10,
CHARGE_INDEX = 11;
model.INDICES = {
RADIUS : RADIUS_INDEX,
PX : PX_INDEX,
PY : PY_INDEX,
X : X_INDEX,
Y : Y_INDEX,
VX : VX_INDEX,
VY : VY_INDEX,
SPEED : SPEED_INDEX,
AX : AX_INDEX,
AY : AY_INDEX,
MASS : MASS_INDEX,
CHARGE : CHARGE_INDEX
};
lennardJones.setEpsilon(ARGON_LJ_EPSILON_IN_EV);
lennardJones.setSigma(ARGON_LJ_SIGMA_IN_NM);
model.setSize = function(x) {
//size = x;
};
// FIXME: disabled for now, so the view doesn't try to change epsilon
model.setLJEpsilon = function(e) {
lennardJones.setEpsilon(e);
ljfLimitsNeedToBeUpdated = true;
};
// FIXME: disabled for now, so the view doesn't try to change sigma
model.setLJSigma = function(s) {
lennardJones.setSigma(s);
ljfLimitsNeedToBeUpdated = true;
};
model.getLJEpsilon = function() {
return lennardJones.coefficients().epsilon;
};
model.getLJSigma = function() {
return lennardJones.coefficients().sigma;
};
// Returns the LJ calculator. Be careful with it!
model.getLJCalculator = function() {
return lennardJones;
};
//
// Calculate the minimum and maximum distances for applying Lennard-Jones forces
//
setup_ljf_limits = function() {
// for any epsilon:
// 1 - lennardJones.potential(5*lennardJones.coefficients().rmin) / lennardJones.potential(Infinity) ~= 1e-4
cutoffDistance_LJ = lennardJones.coefficients().rmin * 5;
ljfLimitsNeedToBeUpdated = false;
};
//
// Calculate the minimum and maximum distances for applying Coulomb forces
//
setup_coulomb_limits = function() {
};
model.createNodes = function(options) {
options = options || {};
var num = options.num || 50,
temperature = options.temperature || 100,
rmin = lennardJones.coefficients().rmin,
mol_rmin_radius_factor = 0.5,
// special-case:
arrayType = (hasTypedArrays && notSafari) ? 'Float32Array' : 'regular',
k_inJoulesPerKelvin = constants.BOLTZMANN_CONSTANT.as(unit.JOULES_PER_KELVIN),
mass_in_kg, v0_MKS, v0,
i, r, c, nrows, ncols, rowSpacing, colSpacing,
vMagnitude, vDirection,
pCMx = 0,
pCMy = 0,
vCMx, vCMy;
nrows = Math.floor(Math.sqrt(num));
ncols = Math.ceil(num/nrows);
model.nodes = nodes = arrays.create(nodePropertiesCount, null, 'regular');
// model.INDICES.RADIUS = 0
nodes[model.INDICES.RADIUS] = arrays.create(num, rmin * mol_rmin_radius_factor, arrayType );
model.radius = radius = nodes[model.INDICES.RADIUS];
// model.INDICES.PX = 1;
nodes[model.INDICES.PX] = arrays.create(num, 0, arrayType);
model.px = px = nodes[model.INDICES.PX];
// model.INDICES.PY = 2;
nodes[model.INDICES.PY] = arrays.create(num, 0, arrayType);
model.py = py = nodes[model.INDICES.PY];
// model.INDICES.X = 3;
nodes[model.INDICES.X] = arrays.create(num, 0, arrayType);
model.x = x = nodes[model.INDICES.X];
// model.INDICES.Y = 4;
nodes[model.INDICES.Y] = arrays.create(num, 0, arrayType);
model.y = y = nodes[model.INDICES.Y];
// model.INDICES.VX = 5;
nodes[model.INDICES.VX] = arrays.create(num, 0, arrayType);
model.vx = vx = nodes[model.INDICES.VX];
// model.INDICES.VY = 6;
nodes[model.INDICES.VY] = arrays.create(num, 0, arrayType);
model.vy = vy = nodes[model.INDICES.VY];
// model.INDICES.SPEED = 7;
nodes[model.INDICES.SPEED] = arrays.create(num, 0, arrayType);
model.speed = speed = nodes[model.INDICES.SPEED];
// model.INDICES.AX = 8;
nodes[model.INDICES.AX] = arrays.create(num, 0, arrayType);
model.ax = ax = nodes[model.INDICES.AX];
// model.INDICES.AY = 9;
nodes[model.INDICES.AY] = arrays.create(num, 0, arrayType);
model.ay = ay = nodes[model.INDICES.AY];
// model.INDICES.MASS = 10;
nodes[model.INDICES.MASS] = arrays.create(num, ARGON_MASS_IN_DALTON, arrayType);
model.mass = mass = nodes[model.INDICES.MASS];
totalMass = model.totalMass = ARGON_MASS_IN_DALTON * num;
// model.INDICES.CHARGE = 11;
nodes[model.INDICES.CHARGE] = arrays.create(num, 0, arrayType);
model.charge = charge = nodes[model.INDICES.CHARGE];
colSpacing = size[0] / (1+ncols);
rowSpacing = size[1] / (1+nrows);
console.log('initializing to temp', temperature);
// Arrange molecules in a lattice. Not guaranteed to have CM exactly on center, and is an artificially low-energy
// configuration. But it works OK for now.
i = -1;
for (r = 1; r <= nrows; r++) {
for (c = 1; c <= ncols; c++) {
i++;
if (i === num) break;
x[i] = c*colSpacing;
y[i] = r*rowSpacing;
// Randomize velocities, exactly balancing the motion of the center of mass by making the second half of the
// set of atoms have the opposite velocities of the first half. (If the atom number is odd, the "odd atom out"
// should have 0 velocity).
//
// Note that although the instantaneous temperature will be 'temperature' exactly, the temperature will quickly
// settle to a lower value because we are initializing the atoms spaced far apart, in an artificially low-energy
// configuration.
if (i < Math.floor(num/2)) { // 'middle' atom will have 0 velocity
// Note kT = m<v^2>/2 because there are 2 degrees of freedom per atom, not 3
// TODO: define constants to avoid unnecesssary conversions below.
mass_in_kg = constants.convert(mass[i], { from: unit.DALTON, to: unit.KILOGRAM });
v0_MKS = Math.sqrt(2 * k_inJoulesPerKelvin * temperature / mass_in_kg);
// FIXME: why does this velocity need a sqrt(2)/10 correction?
// (no, not because of potentials...)
v0 = constants.convert(v0_MKS, { from: unit.METERS_PER_SECOND, to: unit.MW_VELOCITY_UNIT });
vMagnitude = math.normal(v0, v0/4);
vDirection = 2 * Math.random() * Math.PI;
vx[i] = vMagnitude * Math.cos(vDirection);
vy[i] = vMagnitude * Math.sin(vDirection);
vx[num-i-1] = -vx[i];
vy[num-i-1] = -vy[i];
}
pCMx += vx[i] * mass[i];
pCMy += vy[i] * mass[i];
ax[i] = 0;
ay[i] = 0;
speed[i] = Math.sqrt(vx[i] * vx[i] + vy[i] * vy[i]);
charge[i] = 2*(i%2)-1; // alternate negative and positive charges
}
}
vCMx = pCMx / totalMass;
vCMy = pCMy / totalMass;
};
makeIntegrator = function(args) {
var time = 0,
setOnceState = args.setOnceState,
readWriteState = args.readWriteState,
settableState = args.settableState || {},
outputState = window.state = {},
size = setOnceState.size,
ax = readWriteState.ax,
ay = readWriteState.ay,
charge = readWriteState.charge,
nodes = readWriteState.nodes,
N = nodes[0].length,
radius = readWriteState.radius,
speed = readWriteState.speed,
vx = readWriteState.vx,
vy = readWriteState.vy,
x = readWriteState.x,
y = readWriteState.y,
useCoulombInteraction = settableState.useCoulombInteraction,
useLennardJonesInteraction = settableState.useLennardJonesInteraction,
useThermostat = settableState.useThermostat,
// Desired temperature. We will simulate coupling to an infinitely large heat bath at desired
// temperature T_target.
T_target = settableState.targetTemperature,
// Set to true when a temperature change is requested, reset to false when system approaches temperature
temperatureChangeInProgress = false,
// Whether to immediately break out of the integration loop when the target temperature is reached.
// Used only by relaxToTemperature()
breakOnTargetTemperature = false,
// Coupling factor for Berendsen thermostat. In theory, 1 = "perfectly" constrained temperature.
// (Of course, we're not measuring temperature *quite* correctly.)
thermostatCouplingFactor = 0.1,
// Tolerance for (T_actual - T_target) relative to T_target
tempTolerance = 0.001,
// Take a value T, return an average of the last n values
T_windowed,
getWindowSize = function() {
// Average over a larger window if Coulomb force (which should result in larger temperature excursions)
// is in effect. 50 vs. 10 below were chosen by fiddling around, not for any theoretical reasons.
return useCoulombInteraction ? 1000 : 1000;
},
adjustTemperature = function(options) {
if (options == null) options = {};
var windowSize = options.windowSize || getWindowSize();
temperatureChangeInProgress = true;
T_windowed = math.getWindowedAverager( windowSize );
},
/**
Input units:
KE: "MW Energy Units" (Dalton * nm^2 / fs^2)
Output units:
T: K
*/
KE_to_T = function(internalKEinMWUnits) {
// In 2 dimensions, kT = (2/N_df) * KE
// We are using "internal coordinates" from which 2 (1?) angular and 2 translational degrees of freedom have
// been removed
var N_df = 2 * N - 4,
averageKEinMWUnits = (2 / N_df) * internalKEinMWUnits,
averageKEinJoules = constants.convert(averageKEinMWUnits, { from: unit.MW_ENERGY_UNIT, to: unit.JOULE });
return averageKEinJoules / BOLTZMANN_CONSTANT_IN_JOULES;
},
x_CM, y_CM, // x, y position of center of mass in "real" coordinates
px_CM, py_CM, // x, y velocity of center of mass in "real" coordinates
vx_CM, vy_CM, // x, y velocity of center of mass in "real" coordinates
omega_CM, // angular velocity around the center of mass
cross = function(a, b) {
return a[0]*b[1] - a[1]*b[0];
},
sumSquare = function(a,b) {
return a*a + b*b;
},
calculateOmega_CM = function() {
var i, I_CM = 0, L_CM = 0;
for (i = 0; i < N; i++) {
// I_CM = sum over N of of mr_i x p_i (where r_i and p_i are position & momentum vectors relative to the CM)
I_CM += mass[i] * cross( [x[i]-x_CM, y[i]-y_CM], [vx[i]-vx_CM, vy[i]-vy_CM]);
L_CM += mass[i] * sumSquare( x[i]-x_CM, y[i]-y_CM );
}
return I_CM / L_CM;
},
convertToReal = function(i) {
vx[i] = vx[i] + vx_CM - omega_CM * (y[i] - y_CM);
vy[i] = vy[i] + vy_CM + omega_CM * (x[i] - x_CM);
},
convertToInternal = function(i) {
vx[i] = vx[i] - vx_CM + omega_CM * (y[i] - y_CM);
vy[i] = vy[i] - vy_CM - omega_CM * (x[i] - x_CM);
},
i;
x_CM = y_CM = px_CM = py_CM = vx_CM = vy_CM = 0;
for (i = 0; i < N; i++) {
x_CM += x[i];
y_CM += y[i];
px_CM += vx[i] * mass[i];
py_CM += vy[i] * mass[i];
}
x_CM /= N;
y_CM /= N;
vx_CM = px_CM / totalMass;
vy_CM = py_CM / totalMass;
omega_CM = calculateOmega_CM();
outputState.time = time;
return {
useCoulombInteraction : function(v) {
if (v !== useCoulombInteraction) {
useCoulombInteraction = v;
adjustTemperature();
}
},
useLennardJonesInteraction : function(v) {
if (v !== useLennardJonesInteraction) {
useLennardJonesInteraction = v;
if (useLennardJonesInteraction) {
adjustTemperature();
}
}
},
useThermostat : function(v) {
useThermostat = v;
},
setTargetTemperature : function(v) {
console.log('target temp = ', v);
if (v !== T_target) {
T_target = v;
adjustTemperature();
}
T_target = v;
},
relaxToTemperature: function(T) {
if (T != null) T_target = T;
// doesn't work on IE9
// console.log("T_target = ", T_target);
// override window size
adjustTemperature();
breakOnTargetTemperature = true;
while (temperatureChangeInProgress) {
this.integrate();
}
breakOnTargetTemperature = false;
},
getOutputState: function() {
return outputState;
},
integrate: function(duration, dt) {
// FIXME. Recommended timestep for accurate simulation is τ/200
// using rescaled t where t → τ(mσ²/ϵ)^½ (~= 1 ps for argon)
// This is hardcoded below for the "Argon" case by setting dt = 5 fs:
if (duration == null) duration = 250; // how much "time" to integrate over
if (dt == null) dt = 5;
if (ljfLimitsNeedToBeUpdated) setup_ljf_limits();
var t_start = time,
n_steps = Math.floor(duration/dt), // number of steps
dt_sq = dt*dt, // time step, squared
i,
j,
v_sq, r_sq,
x_sum, y_sum,
cutoffDistance_LJ_sq = cutoffDistance_LJ * cutoffDistance_LJ,
maxLJRepulsion_sq = maxLJRepulsion * maxLJRepulsion,
f, f_over_r, aPair_over_r, aPair_x, aPair_y, // pairwise forces /accelerations and their x, y components
dx, dy,
iloop,
leftwall = radius[0],
bottomwall = radius[0],
rightwall = size[0] - radius[0],
topwall = size[1] - radius[0],
realKEinMWUnits, // KE in "real" coordinates, in MW Units
PE, // potential energy, in eV
twoKE_internal, // 2*KE in "internal" coordinates, in MW Units
T, // instantaneous temperature, in Kelvin
vRescalingFactor; // rescaling factor for Berendsen thermostat
// measurements to be accumulated during the integration loop:
// pressure = 0;
// when coordinates are converted to "real" coordinates when leaving this method, so convert back
twoKE_internal = 0;
for (i = 0; i < N; i++) {
convertToInternal(i);
twoKE_internal += mass[i] * (vx[i] * vx[i] + vy[i] * vy[i]);
}
T = KE_to_T( twoKE_internal/2 );
// update time
for (iloop = 1; iloop <= n_steps; iloop++) {
time = t_start + iloop*dt;
if (temperatureChangeInProgress && Math.abs(T_windowed(T) - T_target) <= T_target * tempTolerance) {
temperatureChangeInProgress = false;
if (breakOnTargetTemperature) break;
}
// rescale velocities based on ratio of target temp to measured temp (Berendsen thermostat)
vRescalingFactor = 1;
if (temperatureChangeInProgress || useThermostat && T > 0) {
vRescalingFactor = Math.sqrt(1 + thermostatCouplingFactor * (T_target / T - 1));
}
// Initialize sums such as 'twoKE_internal' which need be accumulated once per integration loop:
twoKE_internal = 0;
x_sum = 0;
y_sum = 0;
px_CM = 0;
py_CM = 0;
//
// Use velocity Verlet integration to continue particle movement integrating acceleration with
// existing position and previous position while managing collision with boundaries.
//
// Update positions for first half of verlet integration
//
for (i = 0; i < N; i++) {
// Rescale v(t) using T(t)
if (vRescalingFactor !== 1) {
vx[i] *= vRescalingFactor;
vy[i] *= vRescalingFactor;
}
// (1) convert velocities from "internal" to "real" velocities before calculating x, y and updating px, py
convertToReal(i);
// calculate x(t+dt) from v(t) and a(t)
x[i] += vx[i]*dt + 0.5*ax[i]*dt_sq;
y[i] += vy[i]*dt + 0.5*ay[i]*dt_sq;
v_sq = vx[i]*vx[i] + vy[i]*vy[i];
speed[i] = Math.sqrt(v_sq);
// Bounce off vertical walls.
if (x[i] < leftwall) {
x[i] = leftwall + (leftwall - x[i]);
vx[i] *= -1;
} else if (x[i] > rightwall) {
x[i] = rightwall - (x[i] - rightwall);
vx[i] *= -1;
}
// Bounce off horizontal walls
if (y[i] < bottomwall) {
y[i] = bottomwall + (bottomwall - y[i]);
vy[i] *= -1;
} else if (y[i] > topwall) {
y[i] = topwall - (y[i] - topwall);
vy[i] *= -1;
}
// Bouncing of walls like changes the overall momentum and center of mass, so accumulate them for later
px_CM += mass[i] * vx[i];
py_CM += mass[i] * vy[i];
x_sum += x[i];
y_sum += y[i];
}
// (2) recaclulate CM, v_CM, omega_CM for translation back to "internal" coordinates
// Note:
// px_CM = px_CM(t+dt) even though we haven't updated velocities using accelerations a(t) and a(t+dt).
// That is because the accelerations are strictly pairwise and should be momentum-conserving.
// Momentum
x_CM = x_sum / N;
y_CM = y_sum / N;
vx_CM = px_CM / totalMass;
vy_CM = py_CM / totalMass;
omega_CM = calculateOmega_CM();
for (i = 0; i < N; i++) {
// FIRST HALF of calculation of v(t+dt): v1(t+dt) <- v(t) + 0.5*a(t)*dt;
vx[i] += 0.5*ax[i]*dt;
vy[i] += 0.5*ay[i]*dt;
// now that we used ax[i], ay[i] from a(t), zero them out for accumulation of pairwise interactions in a(t+dt)
ax[i] = 0;
ay[i] = 0;
}
// Calculate a(t+dt), step 2: Sum over all pairwise interactions.
if (useLennardJonesInteraction || useCoulombInteraction) {
for (i = 0; i < N; i++) {
for (j = i+1; j < N; j++) {
dx = x[j] - x[i];
dy = y[j] - y[i];
r_sq = dx*dx + dy*dy;
if (useLennardJonesInteraction && r_sq < cutoffDistance_LJ_sq) {
f_over_r = lennardJones.forceOverDistanceFromSquaredDistance(r_sq);
// Cap force to maxLJRepulsion. This should be a relatively rare occurrence, so ignore
// the cost of the (expensive) square root calculation.
if (f_over_r * f_over_r * r_sq > maxLJRepulsion_sq) {
f_over_r = maxLJRepulsion / Math.sqrt(r_sq);
}
// Units of fx, fy are "MW Force Units", Dalton * nm / fs^2
aPair_over_r = f_over_r / mass[i];
aPair_x = aPair_over_r * dx;
aPair_y = aPair_over_r * dy;
// positive = attractive, negative = repulsive
ax[i] += aPair_x;
ay[i] += aPair_y;
ax[j] -= aPair_x;
ay[j] -= aPair_y;
}
if (useCoulombInteraction) {
f = coulomb.forceFromSquaredDistance(r_sq, charge[i], charge[j]);
f_over_r = f / Math.sqrt(r_sq);
aPair_over_r = f_over_r / mass[i];
aPair_x = aPair_over_r * dx;
aPair_y = aPair_over_r * dy;
ax[i] += aPair_x;
ay[i] += aPair_y;
ax[j] -= aPair_x;
ay[j] -= aPair_y;
}
}
}
}
// SECOND HALF of calculation of v(t+dt): v(t+dt) <- v1(t+dt) + 0.5*a(t+dt)*dt
for (i = 0; i < N; i++) {
vx[i] += 0.5*ax[i]*dt;
vy[i] += 0.5*ay[i]*dt;
convertToInternal(i);
v_sq = vx[i]*vx[i] + vy[i]*vy[i];
twoKE_internal += mass[i] * v_sq;
speed[i] = Math.sqrt(v_sq);
}
// Calculate T(t+dt) from v(t+dt)
T = KE_to_T( twoKE_internal/2 );
}
// Calculate potentials in eV. Note that we only want to do this once per call to integrate(), not once per
// integration loop!
PE = 0;
realKEinMWUnits= 0;
for (i = 0; i < N; i++) {
convertToReal(i);
realKEinMWUnits += 0.5 * mass[i] * vx[i] * vx[i] + vy[i] * vy[i];
for (j = i+1; j < N; j++) {
dx = x[j] - x[i];
dy = y[j] - y[i];
r_sq = dx*dx + dy*dy;
// report total potentials as POSITIVE, i.e., - the value returned by potential calculators
if (useLennardJonesInteraction ) {
PE += -lennardJones.potentialFromSquaredDistance(r_sq);
}
if (useCoulombInteraction) {
PE += -coulomb.potential(Math.sqrt(r_sq), charge[i], charge[j]);
}
}
}
// State to be read by the rest of the system:
outputState.time = time;
outputState.pressure = 0;// (time - t_start > 0) ? pressure / (time - t_start) : 0;
outputState.PE = PE;
outputState.KE = constants.convert(realKEinMWUnits, { from: unit.MW_ENERGY_UNIT, to: unit.EV });
outputState.T = T;
outputState.pCM = [px_CM, py_CM];
outputState.CM = [x_CM, y_CM];
outputState.vCM = [vx_CM, vy_CM];
outputState.omega_CM = omega_CM;
}
};
};
model.getIntegrator = function(options, integratorOutputState) {
options = options || {};
var lennard_jones_forces = options.lennard_jones_forces || true,
coulomb_forces = options.coulomb_forces || false,
temperature_control = options.temperature_control || false,
temperature = options.temperature || 1,
integrator;
// just needs to be done once, right now.
setup_coulomb_limits();
integrator = makeIntegrator({
setOnceState: {
size : size
},
settableState: {
useLennardJonesInteraction : lennard_jones_forces,
useCoulombInteraction : coulomb_forces,
useThermostat : temperature_control,
targetTemperature : temperature
},
readWriteState: {
ax : ax,
ay : ay,
charge : charge,
nodes : nodes,
px : px,
py : py,
radius : radius,
speed : speed,
vx : vx,
vy : vy,
x : x,
y : y
},
outputState: integratorOutputState
});
// get initial state
integrator.integrate(0);
return integrator;
};
});
require("/md2d.js");
exports = {};
if (typeof console === 'undefined') {
console = {} ;
console.log = console.info = console.warn = console.error = print;
}
var model = require('./md2d').model,
nodes,
integrator, state;
model.createNodes();
nodes = model.nodes;
integrator = model.getIntegrator();
state = integrator.getOutputState();
exports.run = function() {
var n = 1000,
runs = 5,
result,
results = [],
ave,
i, j, begin;
// warm up
console.log( "*** MD warmup: " + n + " steps");
for (i = 0; i < n; i++) {
integrator.integrate();
}
console.log( "*** MD benchmark: " + runs + ' runs, ' + n + " steps");
for (j = 1; j <= runs; j++) {
begin = Date.now();
for (i = 0; i < n; i++) {
integrator.integrate();
}
result = +(Date.now() - begin) / n * 1000;
results.push(result);
console.log( "*** MD run " + j + ': '+ result);
}
ave = results.reduce(function(prev, current) { return prev + current }) / runs;
console.log( "*** MD ave: " + ave);
};
exports.run();
[marking valueOf 0x4e53a440 for recompilation, reason: small function, ICs with typeinfo: 1/1 (100%)]
[marking toString 0x4e53a3d4 for recompilation, reason: small function, ICs with typeinfo: 1/1 (100%)]
[marking IsPrimitive 0x4e53b304 for recompilation, reason: small function, ICs with typeinfo: 0/0 (100%)]
Did not inline ToObject called from valueOf (target not inlineable).
[optimizing: valueOf / 4e53a441 - took 1.589 ms]
[optimizing: IsPrimitive / 4e53b305 - took 0.118 ms]
Did not inline FunctionSourceString called from toString (target not inlineable).
[optimizing: toString / 4e53a3d5 - took 0.070 ms]
initializing to temp 100
[marking pow 0x4e53b534 for recompilation, reason: small function, ICs with typeinfo: 1/2 (50%)]
Did not inline NonNumberToNumber called from pow (target not inlineable).
Did not inline NonNumberToNumber called from pow (target not inlineable).
[optimizing: pow / 4e53b535 - took 0.430 ms]
[marking exports.getLennardJonesCalculator.potentialFromSquaredDistance 0x30741130 for recompilation, reason: small function, ICs with typeinfo: 8/8 (100%)]
Inlining builtin 0x4e53b535 <JS Function pow>
Inlining builtin 0x4e53b535 <JS Function pow>
[optimizing: exports.getLennardJonesCalculator.potentialFromSquaredDistance / 30741131 - took 0.214 ms]
*** MD warmup: 1000 steps
[marking sqrt 0x4e53b34c for recompilation, reason: small function, ICs with typeinfo: 0/1 (0%)]
Did not inline NonNumberToNumber called from sqrt (target not inlineable).
[disabled optimization for sqrt]
[marking exports.getLennardJonesCalculator.forceOverDistanceFromSquaredDistance 0x30741154 for recompilation, reason: small function, ICs with typeinfo: 8/8 (100%)]
[optimizing: exports.getLennardJonesCalculator.forceOverDistanceFromSquaredDistance / 30741155 - took 0.135 ms]
[marking makeIntegrator.integrate 0x30755990 for recompilation, reason: hot and stable, ICs with typeinfo: 152/285 (53%)]
[marking cross 0x3074fe0c for recompilation, reason: small function, ICs with typeinfo: 7/7 (100%)]
[marking sumSquare 0x3074fe30 for recompilation, reason: small function, ICs with typeinfo: 3/3 (100%)]
[optimizing: cross / 3074fe0d - took 0.186 ms]
[optimizing: sumSquare / 3074fe31 - took 0.067 ms]
Inlined setup_ljf_limits called from makeIntegrator.integrate.
Inlining builtin 0x4e5393c1 <JS Function floor>
Inlined convertToInternal called from makeIntegrator.integrate.
Did not inline exports.ratio.ratio called from exports.convert.convert (target contains unsupported syntax [early]).
Inlined exports.convert.convert called from KE_to_T.
Inlined KE_to_T called from makeIntegrator.integrate.
Inlined convertToReal called from makeIntegrator.integrate.
Inlining builtin 0x4e53b34d <JS Function sqrt>
Did not inline calculateOmega_CM called from makeIntegrator.integrate (target contains unsupported syntax [early]).
Inlined convertToInternal called from makeIntegrator.integrate.
Inlining builtin 0x4e53b34d <JS Function sqrt>
Did not inline KE_to_T called from makeIntegrator.integrate (cumulative AST node limit reached).
Did not inline convertToReal called from makeIntegrator.integrate (cumulative AST node limit reached).
[optimizing: makeIntegrator.integrate / 30755991 - took 13.928 ms]
39 ms: Scavenge 1.7 (18.4) -> 1.0 (18.4) MB, 0 ms [Runtime::PerformGC].
[marking calculateOmega_CM 0x30f0b1b8 for recompilation, reason: hot and stable, ICs with typeinfo: 20/21 (95%)]
42 ms: Scavenge 1.7 (18.4) -> 1.0 (19.4) MB, 0 ms [Runtime::PerformGC].
Inlined cross called from calculateOmega_CM.
Inlined sumSquare called from calculateOmega_CM.
[optimizing: calculateOmega_CM / 3691152d - took 1.123 ms]
**** DEOPT: makeIntegrator.integrate at bailout #436, address 0x0, frame size 1004
;;; @2986: check-maps.
[deoptimizing: begin 0x36911615 makeIntegrator.integrate @436]
translating makeIntegrator.integrate => node=1794, height=112
0xbfffe274: [top + 136] <- 0x369115ed ; [esp + 964] 0x369115ed <an Object>
0xbfffe270: [top + 132] <- 0x4e508091 <undefined> ; literal
0xbfffe26c: [top + 128] <- 5 ; [esp + 724] (smi)
0xbfffe268: [top + 124] <- 0x3c80db41 ; caller's pc
0xbfffe264: [top + 120] <- 0xbfffe284 ; caller's fp
0xbfffe260: [top + 116] <- 0x3691145d ; context
0xbfffe25c: [top + 112] <- 0x36911615 ; function
0xbfffe258: [top + 108] <- 0x4e508091 <undefined> ; literal
0xbfffe254: [top + 104] <- 0x4e508091 <undefined> ; literal
0xbfffe250: [top + 100] <- 2.899928e-05 ; [esp + 32]
0xbfffe24c: [top + 96] <- 0x4e508091 <undefined> ; literal
0xbfffe248: [top + 92] <- 0x307183ad ; [esp + 420] 0x307183ad <Number: 12.66506888820448>
0xbfffe244: [top + 88] <- 0x3070c509 ; [esp + 740] 0x3070c509 <Number: 109.6535405897494>
0xbfffe240: [top + 84] <- 0x4e508091 <undefined> ; literal
0xbfffe23c: [top + 80] <- 9.809181e+00 ; [esp + 200]
0xbfffe238: [top + 76] <- 0x4e508091 <undefined> ; literal
0xbfffe234: [top + 72] <- 0x4e508091 <undefined> ; literal
0xbfffe230: [top + 68] <- 50 ; [esp + 468] (smi)
0xbfffe22c: [top + 64] <- 0x4e508091 <undefined> ; literal
0xbfffe228: [top + 60] <- 1.908185e-01 ; [esp + 208]
0xbfffe224: [top + 56] <- 1.908185e-01 ; [esp + 216]
0xbfffe220: [top + 52] <- 0x4e508091 <undefined> ; literal
0xbfffe21c: [top + 48] <- 0x4e508091 <undefined> ; literal
0xbfffe218: [top + 44] <- 51 ; [esp + 880] (smi)
0xbfffe214: [top + 40] <- 0x4e508091 <undefined> ; literal
0xbfffe210: [top + 36] <- 0x4e508091 <undefined> ; literal
0xbfffe20c: [top + 32] <- 25 ; [esp + 736] (smi)
0xbfffe208: [top + 28] <- 0x4e508091 <undefined> ; literal
0xbfffe204: [top + 24] <- 9.809181e+00 ; [esp + 224]
0xbfffe200: [top + 20] <- 0 ; [esp + 956] (smi)
0xbfffe1fc: [top + 16] <- 0x4e508091 <undefined> ; literal
0xbfffe1f8: [top + 12] <- 50 ; [esp + 936] (smi)
0xbfffe1f4: [top + 8] <- 3.641172e+00 ; [esp + 232]
0xbfffe1f0: [top + 4] <- inf ; [esp + 240]
0xbfffe1ec: [top + 0] <- 0x4e508091 <undefined> ; literal
[deoptimizing: end 0x36911615 makeIntegrator.integrate => node=1794, pc=0x3c838741, state=NO_REGISTERS, took 0.172 ms]
Materializing a new heap number 0x30718419 [2.899928e-05] in slot 0xbfffe250
Materializing a new heap number 0x30718425 [9.809181e+00] in slot 0xbfffe23c
Materializing a new heap number 0x30718431 [1.908185e-01] in slot 0xbfffe228
Materializing a new heap number 0x3071843d [1.908185e-01] in slot 0xbfffe224
Materializing a new heap number 0x30718449 [9.809181e+00] in slot 0xbfffe204
Materializing a new heap number 0x30718455 [3.641172e+00] in slot 0xbfffe1f4
Materializing a new heap number 0x30718461 [inf] in slot 0xbfffe1f0
[removing optimized code for: makeIntegrator.integrate]
[marking makeIntegrator.integrate 0x36911614 for recompilation, reason: hot and stable, ICs with typeinfo: 191/285 (67%)]
[marking convertToInternal 0x3691b7d4 for recompilation, reason: small function, ICs with typeinfo: 14/14 (100%)]
[optimizing: convertToInternal / 3691b7d5 - took 0.360 ms]
[marking convertToReal 0x3691b840 for recompilation, reason: small function, ICs with typeinfo: 14/14 (100%)]
[optimizing: convertToReal / 3691b841 - took 0.292 ms]
Inlined setup_ljf_limits called from makeIntegrator.integrate.
Inlining builtin 0x4e5393c1 <JS Function floor>
Inlined convertToInternal called from makeIntegrator.integrate.
Did not inline exports.ratio.ratio called from exports.convert.convert (target contains unsupported syntax [early]).
Inlined exports.convert.convert called from KE_to_T.
Inlined KE_to_T called from makeIntegrator.integrate.
Inlined convertToReal called from makeIntegrator.integrate.
Inlining builtin 0x4e53b34d <JS Function sqrt>
Did not inline calculateOmega_CM called from makeIntegrator.integrate (target contains unsupported syntax [early]).
Inlined convertToInternal called from makeIntegrator.integrate.
Inlining builtin 0x4e53b34d <JS Function sqrt>
Did not inline KE_to_T called from makeIntegrator.integrate (cumulative AST node limit reached).
Did not inline convertToReal called from makeIntegrator.integrate (cumulative AST node limit reached).
Did not inline exports.convert.convert called from makeIntegrator.integrate (cumulative AST node limit reached).
[optimizing: makeIntegrator.integrate / 36911615 - took 11.812 ms]
[marking exports.ratio.checkCompatibility 0x30790690 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.ratio 0x3691b9dc for recompilation, reason: small function, ICs with typeinfo: 6/13 (46%)]
[optimizing: exports.ratio.ratio / 3691b9dd - took 0.370 ms]
[marking exports.convert.convert 0x3691b81c for recompilation, reason: small function, ICs with typeinfo: 4/6 (66%)]
Did not inline exports.ratio.ratio called from exports.convert.convert (target contains unsupported syntax [early]).
[optimizing: exports.convert.convert / 3691b81d - took 0.324 ms]
60 ms: Scavenge 2.1 (19.4) -> 1.1 (19.4) MB, 0 ms [Runtime::PerformGC].
[marking KE_to_T 0x3691b7f8 for recompilation, reason: small function, ICs with typeinfo: 10/10 (100%)]
Did not inline exports.ratio.ratio called from exports.convert.convert (target contains unsupported syntax [early]).
Inlined exports.convert.convert called from KE_to_T.
[optimizing: KE_to_T / 3691b7f9 - took 0.440 ms]
[marking exports.ratio.checkCompatibility 0x30ffdc6c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
63 ms: Scavenge 2.1 (19.4) -> 1.1 (19.4) MB, 0 ms [Runtime::PerformGC].
66 ms: Scavenge 2.1 (19.4) -> 1.1 (19.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f71f70 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
70 ms: Scavenge 2.1 (19.4) -> 1.1 (19.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307d6068 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
72 ms: Scavenge 2.1 (19.4) -> 1.1 (19.4) MB, 0 ms [Runtime::PerformGC].
75 ms: Scavenge 2.1 (19.4) -> 1.1 (19.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3074b9f0 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
78 ms: Scavenge 2.1 (19.4) -> 1.1 (19.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fac068 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
**** DEOPT: makeIntegrator.integrate at bailout #192, address 0x0, frame size 984
;;; @1420: deoptimize.
[deoptimizing: begin 0x36911615 makeIntegrator.integrate @192]
translating makeIntegrator.integrate => node=745, height=132
0xbfffe274: [top + 156] <- 0x369115ed ; [esp + 944] 0x369115ed <an Object>
0xbfffe270: [top + 152] <- 0x4e508091 <undefined> ; literal
0xbfffe26c: [top + 148] <- 5 ; [esp + 700] (smi)
0xbfffe268: [top + 144] <- 0x3c80db41 ; caller's pc
0xbfffe264: [top + 140] <- 0xbfffe284 ; caller's fp
0xbfffe260: [top + 136] <- 0x3691145d ; context
0xbfffe25c: [top + 132] <- 0x36911615 ; function
0xbfffe258: [top + 128] <- 0x4e508091 <undefined> ; literal
0xbfffe254: [top + 124] <- 1.511559e+02 ; [esp + 104]
0xbfffe250: [top + 120] <- 0x4e508091 <undefined> ; literal
0xbfffe24c: [top + 116] <- 0x4e508091 <undefined> ; literal
0xbfffe248: [top + 112] <- 0x4e508091 <undefined> ; literal
0xbfffe244: [top + 108] <- 0x30fc35f9 ; [esp + 716] 0x30fc35f9 <Number: 119.5661367097682>
0xbfffe240: [top + 104] <- 0x4e508091 <undefined> ; literal
0xbfffe23c: [top + 100] <- 9.809181e+00 ; [esp + 200]
0xbfffe238: [top + 96] <- 0x00000002 ; [esp + 680] 1
0xbfffe234: [top + 92] <- 0x4e508091 <undefined> ; literal
0xbfffe230: [top + 88] <- 40 ; [esp + 676] (smi)
0xbfffe22c: [top + 84] <- 0x4e508091 <undefined> ; literal
0xbfffe228: [top + 80] <- 1.908185e-01 ; [esp + 208]
0xbfffe224: [top + 76] <- 1.908185e-01 ; [esp + 216]
0xbfffe220: [top + 72] <- 0x4e508091 <undefined> ; literal
0xbfffe21c: [top + 68] <- 0x4e508091 <undefined> ; literal
0xbfffe218: [top + 64] <- 3 ; [esp + 860] (smi)
0xbfffe214: [top + 60] <- 0x4e508091 <undefined> ; literal
0xbfffe210: [top + 56] <- 8.065526e-08 ; [esp + 96]
0xbfffe20c: [top + 52] <- 25 ; [esp + 712] (smi)
0xbfffe208: [top + 48] <- 2.033296e+02 ; [esp + 112]
0xbfffe204: [top + 44] <- 9.809181e+00 ; [esp + 224]
0xbfffe200: [top + 40] <- 3500 ; [esp + 936] (smi)
0xbfffe1fc: [top + 36] <- 0 ; literal
0xbfffe1f8: [top + 32] <- 50 ; [esp + 916] (smi)
0xbfffe1f4: [top + 28] <- 3.641172e+00 ; [esp + 232]
0xbfffe1f0: [top + 24] <- inf ; [esp + 240]
0xbfffe1ec: [top + 20] <- 0x4e508091 <undefined> ; literal
0xbfffe1e8: [top + 16] <- 0x3691bc85 ; [esp + 648] 0x3691bc85 <JS Array[50]>
0xbfffe1e4: [top + 12] <- 40 ; [esp + 676] (smi)
0xbfffe1e0: [top + 8] <- 1.908185e-01 ; [esp + 208]
0xbfffe1dc: [top + 4] <- 1.908185e-01 ; [esp + 208]
0xbfffe1d8: [top + 0] <- 0x30fc39c5 ; eax 0x30fc39c5 <Number: 0.1903275831003384>
[deoptimizing: end 0x36911615 makeIntegrator.integrate => node=745, pc=0x3c836fd5, state=TOS_REG, took 0.112 ms]
Materializing a new heap number 0x30fc39d1 [1.511559e+02] in slot 0xbfffe254
Materializing a new heap number 0x30fc39dd [9.809181e+00] in slot 0xbfffe23c
Materializing a new heap number 0x30fc39e9 [1.908185e-01] in slot 0xbfffe228
Materializing a new heap number 0x30fc39f5 [1.908185e-01] in slot 0xbfffe224
Materializing a new heap number 0x30fc3a01 [8.065526e-08] in slot 0xbfffe210
Materializing a new heap number 0x30fc3a0d [2.033296e+02] in slot 0xbfffe208
Materializing a new heap number 0x30fc3a19 [9.809181e+00] in slot 0xbfffe204
Materializing a new heap number 0x30fc3a25 [3.641172e+00] in slot 0xbfffe1f4
Materializing a new heap number 0x30fc3a31 [inf] in slot 0xbfffe1f0
Materializing a new heap number 0x30fc3a3d [1.908185e-01] in slot 0xbfffe1e0
Materializing a new heap number 0x30fc3a49 [1.908185e-01] in slot 0xbfffe1dc
[removing optimized code for: makeIntegrator.integrate]
[marking makeIntegrator.integrate 0x36911614 for recompilation, reason: hot and stable, ICs with typeinfo: 197/285 (69%)]
80 ms: Scavenge 2.1 (19.4) -> 1.1 (19.4) MB, 0 ms [Runtime::PerformGC].
Inlined setup_ljf_limits called from makeIntegrator.integrate.
Inlining builtin 0x4e5393c1 <JS Function floor>
Inlined convertToInternal called from makeIntegrator.integrate.
Did not inline exports.ratio.ratio called from exports.convert.convert (target contains unsupported syntax [early]).
Inlined exports.convert.convert called from KE_to_T.
Inlined KE_to_T called from makeIntegrator.integrate.
Inlined convertToReal called from makeIntegrator.integrate.
Inlining builtin 0x4e53b34d <JS Function sqrt>
Did not inline calculateOmega_CM called from makeIntegrator.integrate (target contains unsupported syntax [early]).
Inlined convertToInternal called from makeIntegrator.integrate.
Inlining builtin 0x4e53b34d <JS Function sqrt>
Did not inline KE_to_T called from makeIntegrator.integrate (cumulative AST node limit reached).
Did not inline convertToReal called from makeIntegrator.integrate (cumulative AST node limit reached).
Did not inline exports.convert.convert called from makeIntegrator.integrate (cumulative AST node limit reached).
[optimizing: makeIntegrator.integrate / 36911615 - took 11.002 ms]
95 ms: Scavenge 2.2 (20.4) -> 1.2 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f6846c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
98 ms: Scavenge 2.2 (20.4) -> 1.2 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307ca9ec for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
102 ms: Scavenge 2.2 (20.4) -> 1.2 (20.4) MB, 0 ms [Runtime::PerformGC].
**** DEOPT: makeIntegrator.integrate at bailout #182, address 0x0, frame size 960
;;; @1368: deoptimize.
[deoptimizing: begin 0x36911615 makeIntegrator.integrate @182]
translating makeIntegrator.integrate => node=794, height=128
0xbfffe274: [top + 152] <- 0x369115ed ; [esp + 920] 0x369115ed <an Object>
0xbfffe270: [top + 148] <- 0x4e508091 <undefined> ; literal
0xbfffe26c: [top + 144] <- 5 ; [esp + 676] (smi)
0xbfffe268: [top + 140] <- 0x3c80db41 ; caller's pc
0xbfffe264: [top + 136] <- 0xbfffe284 ; caller's fp
0xbfffe260: [top + 132] <- 0x3691145d ; context
0xbfffe25c: [top + 128] <- 0x36911615 ; function
0xbfffe258: [top + 124] <- 0x4e508091 <undefined> ; literal
0xbfffe254: [top + 120] <- 1.452418e+02 ; [esp + 96]
0xbfffe250: [top + 116] <- 0x4e508091 <undefined> ; literal
0xbfffe24c: [top + 112] <- 0x4e508091 <undefined> ; literal
0xbfffe248: [top + 108] <- 0x4e508091 <undefined> ; literal
0xbfffe244: [top + 104] <- 0x30f14535 ; [esp + 692] 0x30f14535 <Number: 127.7462098538917>
0xbfffe240: [top + 100] <- 0x4e508091 <undefined> ; literal
0xbfffe23c: [top + 96] <- 9.809181e+00 ; [esp + 200]
0xbfffe238: [top + 92] <- 0x00000002 ; [esp + 656] 1
0xbfffe234: [top + 88] <- 0x4e508091 <undefined> ; literal
0xbfffe230: [top + 84] <- 39 ; [esp + 652] (smi)
0xbfffe22c: [top + 80] <- 0x4e508091 <undefined> ; literal
0xbfffe228: [top + 76] <- 1.908185e-01 ; [esp + 208]
0xbfffe224: [top + 72] <- 1.908185e-01 ; [esp + 216]
0xbfffe220: [top + 68] <- 0x4e508091 <undefined> ; literal
0xbfffe21c: [top + 64] <- 0x4e508091 <undefined> ; literal
0xbfffe218: [top + 60] <- 27 ; [esp + 836] (smi)
0xbfffe214: [top + 56] <- 0x4e508091 <undefined> ; literal
0xbfffe210: [top + 52] <- 3.590381e-08 ; [esp + 88]
0xbfffe20c: [top + 48] <- 25 ; [esp + 688] (smi)
0xbfffe208: [top + 44] <- 1.950513e+02 ; [esp + 104]
0xbfffe204: [top + 40] <- 9.809181e+00 ; [esp + 224]
0xbfffe200: [top + 36] <- 4750 ; [esp + 912] (smi)
0xbfffe1fc: [top + 32] <- 0 ; literal
0xbfffe1f8: [top + 28] <- 50 ; [esp + 892] (smi)
0xbfffe1f4: [top + 24] <- 3.641172e+00 ; [esp + 232]
0xbfffe1f0: [top + 20] <- inf ; [esp + 240]
0xbfffe1ec: [top + 16] <- 0x4e508091 <undefined> ; literal
0xbfffe1e8: [top + 12] <- 0x3691bc85 ; [esp + 624] 0x3691bc85 <JS Array[50]>
0xbfffe1e4: [top + 8] <- 39 ; [esp + 652] (smi)
0xbfffe1e0: [top + 4] <- 9.809181e+00 ; [esp + 200]
0xbfffe1dc: [top + 0] <- 0x30f148e9 ; eax 0x30f148e9 <Number: 9.809912702661403>
[deoptimizing: end 0x36911615 makeIntegrator.integrate => node=794, pc=0x3c8370be, state=NO_REGISTERS, took 0.109 ms]
Materializing a new heap number 0x30f148f5 [1.452418e+02] in slot 0xbfffe254
Materializing a new heap number 0x30f14901 [9.809181e+00] in slot 0xbfffe23c
Materializing a new heap number 0x30f1490d [1.908185e-01] in slot 0xbfffe228
Materializing a new heap number 0x30f14919 [1.908185e-01] in slot 0xbfffe224
Materializing a new heap number 0x30f14925 [3.590381e-08] in slot 0xbfffe210
Materializing a new heap number 0x30f14931 [1.950513e+02] in slot 0xbfffe208
Materializing a new heap number 0x30f1493d [9.809181e+00] in slot 0xbfffe204
Materializing a new heap number 0x30f14949 [3.641172e+00] in slot 0xbfffe1f4
Materializing a new heap number 0x30f14955 [inf] in slot 0xbfffe1f0
Materializing a new heap number 0x30f14961 [9.809181e+00] in slot 0xbfffe1e0
[removing optimized code for: makeIntegrator.integrate]
[marking makeIntegrator.integrate 0x36911614 for recompilation, reason: hot and stable, ICs with typeinfo: 203/285 (71%)]
Inlined setup_ljf_limits called from makeIntegrator.integrate.
Inlining builtin 0x4e5393c1 <JS Function floor>
Inlined convertToInternal called from makeIntegrator.integrate.
Did not inline exports.ratio.ratio called from exports.convert.convert (target contains unsupported syntax [early]).
Inlined exports.convert.convert called from KE_to_T.
Inlined KE_to_T called from makeIntegrator.integrate.
Inlined convertToReal called from makeIntegrator.integrate.
Inlining builtin 0x4e53b34d <JS Function sqrt>
Did not inline calculateOmega_CM called from makeIntegrator.integrate (target contains unsupported syntax [early]).
Inlined convertToInternal called from makeIntegrator.integrate.
Inlining builtin 0x4e53b34d <JS Function sqrt>
Did not inline KE_to_T called from makeIntegrator.integrate (cumulative AST node limit reached).
Did not inline convertToReal called from makeIntegrator.integrate (cumulative AST node limit reached).
Did not inline exports.convert.convert called from makeIntegrator.integrate (cumulative AST node limit reached).
[optimizing: makeIntegrator.integrate / 36911615 - took 9.975 ms]
**** DEOPT: makeIntegrator.integrate at bailout #212, address 0x0, frame size 940
;;; @1566: deoptimize.
[deoptimizing: begin 0x36911615 makeIntegrator.integrate @212]
translating makeIntegrator.integrate => node=853, height=132
0xbfffe274: [top + 156] <- 0x369115ed ; [esp + 900] 0x369115ed <an Object>
0xbfffe270: [top + 152] <- 0x4e508091 <undefined> ; literal
0xbfffe26c: [top + 148] <- 5 ; [esp + 656] (smi)
0xbfffe268: [top + 144] <- 0x3c80db41 ; caller's pc
0xbfffe264: [top + 140] <- 0xbfffe284 ; caller's fp
0xbfffe260: [top + 136] <- 0x3691145d ; context
0xbfffe25c: [top + 132] <- 0x36911615 ; function
0xbfffe258: [top + 128] <- 0x4e508091 <undefined> ; literal
0xbfffe254: [top + 124] <- 5.290859e+00 ; [esp + 96]
0xbfffe250: [top + 120] <- 0x4e508091 <undefined> ; literal
0xbfffe24c: [top + 116] <- 0x4e508091 <undefined> ; literal
0xbfffe248: [top + 112] <- 0x4e508091 <undefined> ; literal
0xbfffe244: [top + 108] <- 0x30fa0a79 ; [esp + 672] 0x30fa0a79 <Number: 128.9404219915817>
0xbfffe240: [top + 104] <- 0x4e508091 <undefined> ; literal
0xbfffe23c: [top + 100] <- 9.809181e+00 ; [esp + 200]
0xbfffe238: [top + 96] <- 0x00000002 ; [esp + 636] 1
0xbfffe234: [top + 92] <- 0x4e508091 <undefined> ; literal
0xbfffe230: [top + 88] <- 3 ; [esp + 632] (smi)
0xbfffe22c: [top + 84] <- 0x4e508091 <undefined> ; literal
0xbfffe228: [top + 80] <- 1.908185e-01 ; [esp + 208]
0xbfffe224: [top + 76] <- 1.908185e-01 ; [esp + 216]
0xbfffe220: [top + 72] <- 0x4e508091 <undefined> ; literal
0xbfffe21c: [top + 68] <- 0x4e508091 <undefined> ; literal
0xbfffe218: [top + 64] <- 50 ; [esp + 816] (smi)
0xbfffe214: [top + 60] <- 0x4e508091 <undefined> ; literal
0xbfffe210: [top + 56] <- 5.161405e-08 ; [esp + 88]
0xbfffe20c: [top + 52] <- 25 ; [esp + 668] (smi)
0xbfffe208: [top + 48] <- 6.351336e+00 ; [esp + 104]
0xbfffe204: [top + 44] <- 9.809181e+00 ; [esp + 224]
0xbfffe200: [top + 40] <- 4750 ; [esp + 892] (smi)
0xbfffe1fc: [top + 36] <- 0 ; literal
0xbfffe1f8: [top + 32] <- 50 ; [esp + 872] (smi)
0xbfffe1f4: [top + 28] <- 3.641172e+00 ; [esp + 232]
0xbfffe1f0: [top + 24] <- inf ; [esp + 240]
0xbfffe1ec: [top + 20] <- 0x4e508091 <undefined> ; literal
0xbfffe1e8: [top + 16] <- 0x3691bc0d ; [esp + 604] 0x3691bc0d <JS Array[50]>
0xbfffe1e4: [top + 12] <- 3 ; [esp + 632] (smi)
0xbfffe1e0: [top + 8] <- 1.908185e-01 ; [esp + 216]
0xbfffe1dc: [top + 4] <- 1.908185e-01 ; [esp + 216]
0xbfffe1d8: [top + 0] <- 0x30fa0acd ; eax 0x30fa0acd <Number: 0.190217007126439>
[deoptimizing: end 0x36911615 makeIntegrator.integrate => node=853, pc=0x3c8371a7, state=TOS_REG, took 0.077 ms]
Materializing a new heap number 0x30fa0ad9 [5.290859e+00] in slot 0xbfffe254
Materializing a new heap number 0x30fa0ae5 [9.809181e+00] in slot 0xbfffe23c
Materializing a new heap number 0x30fa0af1 [1.908185e-01] in slot 0xbfffe228
Materializing a new heap number 0x30fa0afd [1.908185e-01] in slot 0xbfffe224
Materializing a new heap number 0x30fa0b09 [5.161405e-08] in slot 0xbfffe210
Materializing a new heap number 0x30fa0b15 [6.351336e+00] in slot 0xbfffe208
Materializing a new heap number 0x30fa0b21 [9.809181e+00] in slot 0xbfffe204
Materializing a new heap number 0x30fa0b2d [3.641172e+00] in slot 0xbfffe1f4
Materializing a new heap number 0x30fa0b39 [inf] in slot 0xbfffe1f0
Materializing a new heap number 0x30fa0b45 [1.908185e-01] in slot 0xbfffe1e0
Materializing a new heap number 0x30fa0b51 [1.908185e-01] in slot 0xbfffe1dc
[removing optimized code for: makeIntegrator.integrate]
[marking makeIntegrator.integrate 0x36911614 for recompilation, reason: hot and stable, ICs with typeinfo: 209/285 (73%)]
Inlined setup_ljf_limits called from makeIntegrator.integrate.
Inlining builtin 0x4e5393c1 <JS Function floor>
Inlined convertToInternal called from makeIntegrator.integrate.
Did not inline exports.ratio.ratio called from exports.convert.convert (target contains unsupported syntax [early]).
Inlined exports.convert.convert called from KE_to_T.
Inlined KE_to_T called from makeIntegrator.integrate.
Inlined convertToReal called from makeIntegrator.integrate.
Inlining builtin 0x4e53b34d <JS Function sqrt>
Did not inline calculateOmega_CM called from makeIntegrator.integrate (target contains unsupported syntax [early]).
Inlined convertToInternal called from makeIntegrator.integrate.
Inlining builtin 0x4e53b34d <JS Function sqrt>
Did not inline KE_to_T called from makeIntegrator.integrate (cumulative AST node limit reached).
Did not inline convertToReal called from makeIntegrator.integrate (cumulative AST node limit reached).
Did not inline exports.convert.convert called from makeIntegrator.integrate (cumulative AST node limit reached).
[optimizing: makeIntegrator.integrate / 36911615 - took 10.851 ms]
**** DEOPT: makeIntegrator.integrate at bailout #503, address 0x0, frame size 868
;;; Deferred code @2674: tagged-to-i.
[deoptimizing: begin 0x36911615 makeIntegrator.integrate @503]
translating makeIntegrator.integrate => node=1793, height=112
0xbfffe274: [top + 136] <- 0x369115ed ; [esp + 864] 0x369115ed <an Object>
0xbfffe270: [top + 132] <- 0x4e508091 ; [esp + 860] 0x4e508091 <undefined>
0xbfffe26c: [top + 128] <- 0x0000000a ; [esp + 856] 5
0xbfffe268: [top + 124] <- 0x3c80db41 ; caller's pc
0xbfffe264: [top + 120] <- 0xbfffe284 ; caller's fp
0xbfffe260: [top + 116] <- 0x3691145d ; context
0xbfffe25c: [top + 112] <- 0x36911615 ; function
0xbfffe258: [top + 108] <- 0x30fc9a79 ; [esp + 848] 0x30fc9a79 <Number: 1.024436820491647e-10>
0xbfffe254: [top + 104] <- 0x30fa4ed1 ; [esp + 844] 0x30fa4ed1 <Number: 227.5012030821723>
0xbfffe250: [top + 100] <- 0x30ff0911 ; eax 0x30ff0911 <Number: 2.870697929113043e-05>
0xbfffe24c: [top + 96] <- 0x30fc9a49 ; [esp + 836] 0x30fc9a49 <Number: 3.055464748165751e-09>
0xbfffe248: [top + 92] <- 0x30ff0ab5 ; [esp + 832] 0x30ff0ab5 <Number: 12.55424974221436>
0xbfffe244: [top + 88] <- 0x30fcbe79 ; [esp + 828] 0x30fcbe79 <Number: 128.6548441292393>
0xbfffe240: [top + 84] <- 0x00000064 ; [esp + 824] 50
0xbfffe23c: [top + 80] <- 0x30fa0ae5 ; [esp + 820] 0x30fa0ae5 <Number: 9.809181451787406>
0xbfffe238: [top + 76] <- 0x00000002 ; [esp + 816] 1
0xbfffe234: [top + 72] <- 0x4e508091 ; [esp + 812] 0x4e508091 <undefined>
0xbfffe230: [top + 68] <- 0x0000005e ; [esp + 808] 47
0xbfffe22c: [top + 64] <- 0x30ff0a85 ; [esp + 804] 0x30ff0a85 <Number: -0.7056799707491779>
0xbfffe228: [top + 60] <- 0x30fa0af1 ; [esp + 800] 0x30fa0af1 <Number: 0.1908185482125934>
0xbfffe224: [top + 56] <- 0x30fa0afd ; [esp + 796] 0x30fa0afd <Number: 0.1908185482125934>
0xbfffe220: [top + 52] <- 0x30ff0a61 ; [esp + 792] 0x30ff0a61 <Number: -4.33128373368187>
0xbfffe21c: [top + 48] <- 0x30ff0a91 ; [esp + 788] 0x30ff0a91 <Number: 19.25800300277372>
0xbfffe218: [top + 44] <- 0x00000066 ; [esp + 784] 51
0xbfffe214: [top + 40] <- 0x30fc9a85 ; [esp + 780] 0x30fc9a85 <Number: -2.037926509386503e-11>
0xbfffe210: [top + 36] <- 0x30fcbdc5 ; [esp + 776] 0x30fcbdc5 <Number: 9.40892324592782e-08>
0xbfffe20c: [top + 32] <- 0x00000032 ; [esp + 772] 25
0xbfffe208: [top + 28] <- 0x30fa4eb9 ; [esp + 768] 0x30fa4eb9 <Number: 244.348406913072>
0xbfffe204: [top + 24] <- 0x30fa0b21 ; [esp + 764] 0x30fa0b21 <Number: 9.809181451787406>
0xbfffe200: [top + 20] <- 0x0000251c ; [esp + 760] 4750
0xbfffe1fc: [top + 16] <- 0x30fcbe01 ; [esp + 756] 0x30fcbe01 <Number: 0.0001026914173668541>
0xbfffe1f8: [top + 12] <- 0x00000064 ; [esp + 752] 50
0xbfffe1f4: [top + 8] <- 0x30fa0b2d ; [esp + 748] 0x30fa0b2d <Number: 3.641171834196185>
0xbfffe1f0: [top + 4] <- 0x30fa0b39 ; [esp + 744] 0x30fa0b39 <Number: inf>
0xbfffe1ec: [top + 0] <- 0x30fc9a6d ; [esp + 740] 0x30fc9a6d <Number: 7.648222148099501e-11>
[deoptimizing: end 0x36911615 makeIntegrator.integrate => node=1793, pc=0x3c8386fe, state=NO_REGISTERS, took 0.118 ms]
[removing optimized code for: makeIntegrator.integrate]
126 ms: Scavenge 2.4 (20.4) -> 1.4 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking makeIntegrator.integrate 0x36911614 for recompilation, reason: hot and stable, ICs with typeinfo: 209/285 (73%)]
Inlined setup_ljf_limits called from makeIntegrator.integrate.
Inlining builtin 0x4e5393c1 <JS Function floor>
Inlined convertToInternal called from makeIntegrator.integrate.
Did not inline exports.ratio.ratio called from exports.convert.convert (target contains unsupported syntax [early]).
Inlined exports.convert.convert called from KE_to_T.
Inlined KE_to_T called from makeIntegrator.integrate.
Inlined convertToReal called from makeIntegrator.integrate.
Inlining builtin 0x4e53b34d <JS Function sqrt>
Did not inline calculateOmega_CM called from makeIntegrator.integrate (target contains unsupported syntax [early]).
Inlined convertToInternal called from makeIntegrator.integrate.
Inlining builtin 0x4e53b34d <JS Function sqrt>
Did not inline KE_to_T called from makeIntegrator.integrate (cumulative AST node limit reached).
Did not inline convertToReal called from makeIntegrator.integrate (cumulative AST node limit reached).
Did not inline exports.convert.convert called from makeIntegrator.integrate (cumulative AST node limit reached).
[optimizing: makeIntegrator.integrate / 36911615 - took 10.016 ms]
[marking exports.ratio.checkCompatibility 0x307f7d30 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
139 ms: Scavenge 2.5 (20.4) -> 1.5 (20.4) MB, 0 ms [Runtime::PerformGC].
142 ms: Scavenge 2.5 (20.4) -> 1.5 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3076a260 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
145 ms: Scavenge 2.5 (20.4) -> 1.5 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fd0260 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
148 ms: Scavenge 2.5 (20.4) -> 1.5 (20.4) MB, 0 ms [Runtime::PerformGC].
151 ms: Scavenge 2.5 (20.4) -> 1.5 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f46a48 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
154 ms: Scavenge 2.5 (20.4) -> 1.5 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307afb54 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
157 ms: Scavenge 2.5 (20.4) -> 1.5 (20.4) MB, 0 ms [Runtime::PerformGC].
161 ms: Scavenge 2.5 (20.4) -> 1.5 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3072ad34 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
163 ms: Scavenge 2.5 (20.4) -> 1.5 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f97484 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
166 ms: Scavenge 2.5 (20.4) -> 1.5 (20.4) MB, 0 ms [Runtime::PerformGC].
170 ms: Scavenge 2.5 (20.4) -> 1.5 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f130b0 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
174 ms: Scavenge 2.5 (20.4) -> 1.5 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3077d580 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
176 ms: Scavenge 2.5 (20.4) -> 1.5 (20.4) MB, 0 ms [Runtime::PerformGC].
**** DEOPT: makeIntegrator.integrate at bailout #202, address 0x0, frame size 916
;;; @1512: deoptimize.
[deoptimizing: begin 0x36911615 makeIntegrator.integrate @202]
translating makeIntegrator.integrate => node=902, height=128
0xbfffe274: [top + 152] <- 0x369115ed ; [esp + 876] 0x369115ed <an Object>
0xbfffe270: [top + 148] <- 0x4e508091 <undefined> ; literal
0xbfffe26c: [top + 144] <- 5 ; [esp + 632] (smi)
0xbfffe268: [top + 140] <- 0x3c80db41 ; caller's pc
0xbfffe264: [top + 136] <- 0xbfffe284 ; caller's fp
0xbfffe260: [top + 132] <- 0x3691145d ; context
0xbfffe25c: [top + 128] <- 0x36911615 ; function
0xbfffe258: [top + 124] <- 0x4e508091 <undefined> ; literal
0xbfffe254: [top + 120] <- 1.988925e+02 ; [esp + 96]
0xbfffe250: [top + 116] <- 0x4e508091 <undefined> ; literal
0xbfffe24c: [top + 112] <- 0x4e508091 <undefined> ; literal
0xbfffe248: [top + 108] <- 0x4e508091 <undefined> ; literal
0xbfffe244: [top + 104] <- 0x30f88cad ; [esp + 648] 0x30f88cad <Number: 124.8254732640457>
0xbfffe240: [top + 100] <- 0x4e508091 <undefined> ; literal
0xbfffe23c: [top + 96] <- 9.809181e+00 ; [esp + 200]
0xbfffe238: [top + 92] <- 0x00000002 ; [esp + 612] 1
0xbfffe234: [top + 88] <- 0x4e508091 <undefined> ; literal
0xbfffe230: [top + 84] <- 46 ; [esp + 608] (smi)
0xbfffe22c: [top + 80] <- 0x4e508091 <undefined> ; literal
0xbfffe228: [top + 76] <- 1.908185e-01 ; [esp + 208]
0xbfffe224: [top + 72] <- 1.908185e-01 ; [esp + 216]
0xbfffe220: [top + 68] <- 0x4e508091 <undefined> ; literal
0xbfffe21c: [top + 64] <- 0x4e508091 <undefined> ; literal
0xbfffe218: [top + 60] <- 36 ; [esp + 792] (smi)
0xbfffe214: [top + 56] <- 0x4e508091 <undefined> ; literal
0xbfffe210: [top + 52] <- 5.152823e-08 ; [esp + 88]
0xbfffe20c: [top + 48] <- 25 ; [esp + 644] (smi)
0xbfffe208: [top + 44] <- 2.279946e+02 ; [esp + 104]
0xbfffe204: [top + 40] <- 9.809181e+00 ; [esp + 224]
0xbfffe200: [top + 36] <- 10750 ; [esp + 868] (smi)
0xbfffe1fc: [top + 32] <- 0 ; literal
0xbfffe1f8: [top + 28] <- 50 ; [esp + 848] (smi)
0xbfffe1f4: [top + 24] <- 3.641172e+00 ; [esp + 232]
0xbfffe1f0: [top + 20] <- inf ; [esp + 240]
0xbfffe1ec: [top + 16] <- 0x4e508091 <undefined> ; literal
0xbfffe1e8: [top + 12] <- 0x3691bc0d ; [esp + 580] 0x3691bc0d <JS Array[50]>
0xbfffe1e4: [top + 8] <- 46 ; [esp + 608] (smi)
0xbfffe1e0: [top + 4] <- 9.809181e+00 ; [esp + 224]
0xbfffe1dc: [top + 0] <- 0x30f89109 ; eax 0x30f89109 <Number: 9.809396402226904>
[deoptimizing: end 0x36911615 makeIntegrator.integrate => node=902, pc=0x3c837290, state=NO_REGISTERS, took 0.101 ms]
Materializing a new heap number 0x30f89115 [1.988925e+02] in slot 0xbfffe254
Materializing a new heap number 0x30f89121 [9.809181e+00] in slot 0xbfffe23c
Materializing a new heap number 0x30f8912d [1.908185e-01] in slot 0xbfffe228
Materializing a new heap number 0x30f89139 [1.908185e-01] in slot 0xbfffe224
Materializing a new heap number 0x30f89145 [5.152823e-08] in slot 0xbfffe210
Materializing a new heap number 0x30f89151 [2.279946e+02] in slot 0xbfffe208
Materializing a new heap number 0x30f8915d [9.809181e+00] in slot 0xbfffe204
Materializing a new heap number 0x30f89169 [3.641172e+00] in slot 0xbfffe1f4
Materializing a new heap number 0x30f89175 [inf] in slot 0xbfffe1f0
Materializing a new heap number 0x30f89181 [9.809181e+00] in slot 0xbfffe1e0
[removing optimized code for: makeIntegrator.integrate]
[marking makeIntegrator.integrate 0x36911614 for recompilation, reason: hot and stable, ICs with typeinfo: 215/285 (75%)]
Inlined setup_ljf_limits called from makeIntegrator.integrate.
Inlining builtin 0x4e5393c1 <JS Function floor>
Inlined convertToInternal called from makeIntegrator.integrate.
Did not inline exports.ratio.ratio called from exports.convert.convert (target contains unsupported syntax [early]).
Inlined exports.convert.convert called from KE_to_T.
Inlined KE_to_T called from makeIntegrator.integrate.
Inlined convertToReal called from makeIntegrator.integrate.
Inlining builtin 0x4e53b34d <JS Function sqrt>
Did not inline calculateOmega_CM called from makeIntegrator.integrate (target contains unsupported syntax [early]).
Inlined convertToInternal called from makeIntegrator.integrate.
Inlining builtin 0x4e53b34d <JS Function sqrt>
Did not inline KE_to_T called from makeIntegrator.integrate (cumulative AST node limit reached).
Did not inline convertToReal called from makeIntegrator.integrate (cumulative AST node limit reached).
Did not inline exports.convert.convert called from makeIntegrator.integrate (cumulative AST node limit reached).
[optimizing: makeIntegrator.integrate / 36911615 - took 12.318 ms]
192 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30746094 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
195 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fb04f4 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
197 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
200 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f25148 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
203 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3078e878 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
206 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fe90a4 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
209 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
212 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f547a4 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
215 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307af630 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
219 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
222 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30716d68 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
225 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f6c71c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
228 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307c8220 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
232 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
235 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3072438c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
237 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f7e2fc for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
240 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307d0030 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
243 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
245 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3073152c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
248 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f84938 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
252 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307df31c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
255 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
258 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30742f74 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
262 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f93e00 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
265 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307eda1c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
268 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
270 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307486e4 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
273 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fa054c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
276 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307f1b54 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
280 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
283 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3075282c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
286 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fa5f98 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
290 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
292 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f0a7b8 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
296 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3075f734 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
299 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fbbfb4 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
301 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
304 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f17e4c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
307 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30771c2c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
310 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fccc8c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
313 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
316 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f23ff8 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
320 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30779578 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
323 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fca008 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
326 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
330 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f2cad4 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
334 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3077cab8 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
338 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fccc4c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
342 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
346 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f1b844 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
349 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307664a8 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
353 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fac7f8 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
357 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307f741c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
362 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
365 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30743a1c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
369 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f8e99c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
374 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307da808 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
378 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
382 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3072512c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
386 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f7290c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
390 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307bcc2c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
394 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
398 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30713724 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
402 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f5aee4 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
406 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307a85d0 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
411 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fefd78 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
414 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
417 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f4c570 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
421 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307a1544 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
425 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30ffd98c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
428 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
430 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f5d8d4 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
433 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307bce00 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
436 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
439 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30724630 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
441 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f792c4 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
444 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307d6754 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
447 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [allocation failure].
450 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30734738 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
454 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f8da9c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
459 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [allocation failure].
[marking exports.ratio.checkCompatibility 0x307dd31c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
463 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
466 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30739180 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
470 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f884e8 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
474 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307e164c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
477 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
479 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3073bbfc for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
482 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f92058 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
485 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307e343c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
488 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
491 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3073e72c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
494 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f966b0 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
498 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307e6540 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
502 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
505 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307474bc for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
508 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f9bf30 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
510 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307f6e98 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
513 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
516 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30755234 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
519 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fb1360 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
522 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
525 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f13044 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
528 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30770c28 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
531 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fc9a28 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
534 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
537 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f30b1c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
540 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3078e294 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
543 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fef8ec for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
546 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
548 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f58ffc for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
551 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307ad84c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
556 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
560 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3070ccd4 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
563 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f5f26c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
566 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307b75a4 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
569 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
572 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30712e7c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
575 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f687b4 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
578 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307ba14c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
581 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
584 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30716b58 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
587 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f63a94 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
591 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307b7ad8 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
594 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
597 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3070b6cc for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
600 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f5d03c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
603 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307b335c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
605 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
608 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30708488 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
611 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f5f7b4 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
613 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307b1b14 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
616 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
620 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3071051c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
624 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f62d5c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
628 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307bc714 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
630 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
633 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3071c7f0 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
636 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f7bbf8 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
640 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307d5834 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
643 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
646 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3073e3ac for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
648 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f97acc for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
652 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307fb8d4 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
655 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
658 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3076b00c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
661 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fc7d14 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
664 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
667 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f3888c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
670 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3079e714 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
673 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
677 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30711544 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
679 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f7c484 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
683 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307ed320 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
686 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
690 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30761788 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
693 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fcfaf4 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
696 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
699 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f44c48 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
702 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307b7070 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
705 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
708 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3072b69c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
710 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f9e78c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
713 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
717 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f1d880 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
721 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3078768c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
724 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30ff86a4 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
728 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
730 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f69298 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
734 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307d7758 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
737 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
740 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30743aac for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
742 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fa96fc for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
745 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
749 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f0f04c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
752 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3077440c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
757 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fd3cc4 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
761 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
764 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f3f390 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
766 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3079917c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
769 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30ff4110 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
772 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
775 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f597f8 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
778 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307abd54 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
782 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
785 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30710b58 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
789 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f67c54 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
792 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307c6734 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
795 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
798 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3072a33c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
801 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f8baac for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
804 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307e70f4 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
807 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
810 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30753304 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
813 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fae8a4 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
816 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
819 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f1614c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
822 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307719c4 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
825 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fd4718 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
828 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
831 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f40ec4 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
833 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3079ba6c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
836 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
839 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3070b1a8 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
841 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f6f994 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
846 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307dc8a4 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
849 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
852 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3074b6c8 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
856 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fba7ec for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
860 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
865 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f2d170 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
869 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3079dbcc for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
873 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
877 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30712d68 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
881 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f88f8c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
884 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307f71ec for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
888 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
891 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30774504 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
894 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fe9cb0 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
896 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
899 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f5c424 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
902 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307cebcc for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
905 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
907 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30744ac8 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
911 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fb85bc for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
914 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
916 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f30598 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
919 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307a4bc4 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
924 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
927 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307180a0 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
930 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f83174 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
933 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307e87bc for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
936 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
939 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30758b44 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
941 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fb6150 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
944 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
947 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f1ef58 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
951 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3077fb20 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
955 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fd6994 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
960 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
965 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f38cd8 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
969 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307885a8 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
973 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fd8f98 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
977 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
980 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f28e20 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
983 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30774278 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
985 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [allocation failure].
[marking exports.ratio.checkCompatibility 0x30fb7fa0 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
989 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
992 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f0954c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
996 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3074ba30 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
999 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f9871c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1002 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307e0780 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1005 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1009 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30733c6c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1012 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f7ec38 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1015 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307c0e0c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1018 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1021 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3071591c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1024 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f5b96c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1028 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307aa038 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1031 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30ff4788 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1035 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1039 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f51530 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1043 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307a076c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1046 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30ff9724 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1049 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1052 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f56138 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1055 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307adeac for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1059 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1063 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3070cf5c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1066 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f69194 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1069 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307c7924 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1073 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1076 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30727458 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1078 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f8a74c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1081 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307e6e9c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1084 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1087 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30750d6c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1091 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30faeec0 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1095 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1099 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f1b184 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1102 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30777ccc for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1105 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fdde14 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1107 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1110 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f442c0 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1113 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307a87a4 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1115 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1119 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307133bc for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1124 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f7c354 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1127 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307e7b18 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1130 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1133 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30750974 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1136 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fbcac8 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1140 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1144 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f28ffc for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1147 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3079444c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1150 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30ff7998 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1154 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1157 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f68944 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1160 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307ca008 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1163 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1166 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30734978 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1169 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f93cd0 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1172 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307f9c90 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1175 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1178 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3076281c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1180 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fc8d74 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1184 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1187 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f35fa8 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1191 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3078bf68 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1194 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fe7398 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1197 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1200 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f40e74 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1202 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307959a0 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1206 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fe2020 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1209 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1212 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f3c564 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1215 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307860e8 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1218 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fd630c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1222 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1226 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f26568 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1230 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30772c54 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1233 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fba190 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1236 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1239 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f11808 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1241 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30763540 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1244 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30faee34 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1247 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1250 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f0a4f4 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1254 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30755a58 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1258 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fa5f60 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1262 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307f2774 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1265 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1268 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3074eb7c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1270 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f99c70 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1273 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307eadfc for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1276 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1279 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3073e72c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1283 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f8f4b0 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1286 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307dc6e4 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1290 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1293 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3073ac6c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1296 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f920d8 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1299 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307de8f4 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1302 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1306 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3073d5f4 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1309 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f8dcc4 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1312 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307e765c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1316 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1319 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307428c8 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1322 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f9ad6c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1325 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307f02fc for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1328 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1331 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3075102c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1334 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fa4308 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1338 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307fcd60 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1341 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1344 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307572fc for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1347 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fb28a4 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1350 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1354 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f1b25c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1357 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3077192c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1360 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fd17e4 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1364 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1366 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f367dc for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1369 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30798e6c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1373 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30ff2918 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1376 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1380 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f5b3d0 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1384 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307b7e38 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1387 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1391 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30721b10 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1394 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f7df10 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1397 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307e20b4 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1400 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1403 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3074892c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1406 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30faa208 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1409 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1412 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f14474 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1416 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3076a2ac for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1419 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fc8558 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1422 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1425 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f23edc for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1428 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3077b37c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1431 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fcb108 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1434 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1437 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f27fd4 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1440 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30774dfc for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1443 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fc5478 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1446 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1449 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f1480c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1452 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30763cd8 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1455 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fab4d4 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1459 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307f894c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1463 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1466 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30750fb4 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1469 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f95e94 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1473 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307e1210 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1476 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1479 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307281a8 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1482 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f6c6dc for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1485 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307ac21c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1488 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30ff4b48 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1491 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1494 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f3bc00 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1497 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3078049c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1500 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fbf4c0 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1503 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1507 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f0cf38 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1510 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3074febc for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1513 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f99ce8 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1515 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307e5600 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1518 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1522 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30730b4c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1525 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f7d550 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1529 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307c4d28 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1532 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1535 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3071f338 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1538 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f6aaa0 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1541 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307be070 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1544 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1546 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30712d74 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1549 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f66470 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1552 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307b32d4 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1556 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1560 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3070c854 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1564 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f5cf90 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1567 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307b7fa4 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1570 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1573 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3071f460 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1576 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f73c4c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1579 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307cf720 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1581 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1584 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3072e414 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1588 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f8cd14 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1591 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307e4690 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1595 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1598 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3074725c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1600 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f9d890 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1603 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307fc4f0 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1606 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1609 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3075c8e0 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1612 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fb8ec8 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1615 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1618 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f139e4 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1622 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3076a7c8 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1626 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fc3abc for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1629 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1632 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f1f40c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1635 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3077cd68 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1638 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fd8458 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1641 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1645 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f441f4 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1648 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3079f838 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1652 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30ffc924 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1655 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1658 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f5bfc8 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1661 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307b97e0 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1664 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1666 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307194e8 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1669 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f74e74 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1672 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307cbbac for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1675 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1679 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30730004 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1682 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f8ef88 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1686 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307e180c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1689 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1692 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3074498c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1695 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f996f4 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1698 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307f0cc0 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1701 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1704 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30746794 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1707 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f94844 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1710 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307df1bc for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1714 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1717 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30739e78 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1721 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f88164 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1725 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307e252c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1728 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1731 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30740310 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1733 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f9aed4 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1736 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307f742c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1739 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1742 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30750920 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1745 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30faa424 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1748 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307ffa74 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1752 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1756 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30763418 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1759 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fb3d58 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1761 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1764 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f11b98 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1767 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3075f9a4 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1770 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fb3930 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1772 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1775 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f092dc for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1778 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3075c94c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1781 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fabc78 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1784 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307fff38 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1787 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1790 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30760cac for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1793 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30faef74 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1796 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1800 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f0d3a0 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1804 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30757af8 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1808 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fa66e4 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1811 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307e9fcc for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1815 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1818 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3073c1fc for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1821 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f7e920 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1824 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307c63bc for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1827 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1830 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3071081c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
*** MD benchmark: 5 runs, 1000 steps
1833 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1837 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30799074 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1840 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fe4018 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1843 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1846 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f3e69c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1849 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307871c4 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1853 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fd7100 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1856 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1860 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f2af54 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1863 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3077f8ac for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1866 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fd01cc for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1869 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1873 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f3216c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1876 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30787c7c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1880 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fe5808 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1884 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1887 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f46adc for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1890 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307a4f04 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1893 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30ffd1f4 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1896 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1899 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f64408 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1901 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307c3e64 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1904 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1908 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30721450 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1911 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [allocation failure].
[marking exports.ratio.checkCompatibility 0x30f80198 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1914 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307dd184 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1918 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1922 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30747e18 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1925 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fa68c8 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1928 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1930 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f12588 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1933 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30772118 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1936 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fd5cb4 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1939 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1942 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f3ce98 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1944 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307a300c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1947 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1950 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3070a1e4 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1952 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f745e8 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1955 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307e2fd0 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1959 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1962 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3074fb04 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1965 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fbd588 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1968 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1971 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f2e864 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1974 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3079c614 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1977 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1980 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3070cabc for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1982 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f7e7d0 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1985 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307ec288 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1989 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
1992 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30768004 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1995 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fd5230 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
1998 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2001 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f50b94 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2004 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307bd788 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2007 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2010 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30737a50 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2012 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fa9b88 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2015 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2018 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f1685c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2021 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30783674 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2024 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fe8624 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2027 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2030 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f5869c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2033 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307b92a8 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2035 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2038 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307291c8 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2041 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f8aaac for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2044 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307f0730 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2046 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2049 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307573bc for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2052 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fbb6e0 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2055 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2059 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f215d0 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2062 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30788b6c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2065 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30ff0bb0 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2068 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2071 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f57700 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2074 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307bee94 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2077 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2079 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30728bc0 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2082 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f8e098 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2085 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307ec31c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2088 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2092 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3075afa4 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2095 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fbe488 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2098 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2100 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f2ebb8 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2103 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30791530 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2106 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30ffb694 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2109 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2111 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f66870 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2114 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307cf5dc for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2118 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2122 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3073ef7c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2126 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f99424 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2129 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307fc8cc for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2132 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2135 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30762aa4 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2138 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fc621c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2141 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2143 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f2deec for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2146 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307946dc for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2149 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30ff5da4 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2152 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2155 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f66a6c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2159 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307c9958 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2162 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2164 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3073c324 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2167 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fa2b18 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2170 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2173 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f152d8 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2176 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3077df60 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2178 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fd9af0 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2181 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2185 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f4497c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2188 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307a1680 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2191 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2194 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3070a5c0 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2197 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f6104c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2200 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307b9d1c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2203 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2205 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30712120 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2208 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f6a0a8 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2211 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307b8c08 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2214 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2217 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30716cc0 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2221 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f66f0c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2224 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307bc9fc for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2227 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2230 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3071c23c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2233 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f6991c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2235 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307c1cd0 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2238 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2241 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3071c714 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2244 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f74668 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2248 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307c9bf8 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2251 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2254 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3072ef0c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2257 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f86750 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2260 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307e9860 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2263 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2266 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30750f48 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2268 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fb7524 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2271 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2274 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f23c14 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2278 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3078ed68 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2281 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30ffaf64 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2285 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2288 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f61d4c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2291 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307c914c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2294 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2296 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307327cc for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2299 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f99230 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2302 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307f6c94 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2305 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2307 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3076218c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2310 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fc2638 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2313 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2317 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f3175c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2320 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30792f84 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2323 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30ff7dbc for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2325 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2328 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f60f38 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2331 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307c8154 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2334 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2336 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307361e8 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2339 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f91374 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2342 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307f4190 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2346 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2349 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30759b8c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2352 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fbc244 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2355 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2358 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f22294 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2360 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3078262c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2363 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fd94bc for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2366 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2369 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f3c8f0 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2372 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30790774 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2376 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fe8570 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2379 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2382 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f44a9c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2385 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307a0f08 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2388 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2391 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307098e0 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2394 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f63038 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2396 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307c63a4 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2399 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2402 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3072a9fc for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2404 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f8efbc for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2408 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307eb9bc for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2411 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2414 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30757134 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2419 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fb10a8 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2422 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2425 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f1c6c4 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2428 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3077b84c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2431 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fdcc10 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2434 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2437 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f3c64c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2440 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30798174 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2443 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30ff679c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2445 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2448 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f53464 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2451 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307afb44 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2454 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2457 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30710360 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2460 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f7130c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2464 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307cd1f8 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2467 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2470 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307377dc for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2474 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f92898 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2477 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307f2cb4 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2480 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2482 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30758958 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2485 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fbd0e0 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2488 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2492 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f25a94 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2495 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3078ff5c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2498 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30ffe4f4 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2501 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2504 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f6db24 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2507 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307df304 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2510 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2512 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307506b8 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2515 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fbca18 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2519 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2522 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f2b93c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2525 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30796728 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2528 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30ffbedc for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2531 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2534 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f6dda4 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2537 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307cd958 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2540 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2542 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3073a7b8 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2545 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f9c178 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2548 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307ffc20 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2551 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2555 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3076c44c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2558 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fc88d8 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2562 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2565 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f32a04 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2568 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307907dc for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2571 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30ff2c0c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2573 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2576 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f56994 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2579 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307baa84 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2582 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2584 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30721f84 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2588 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f852e8 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2591 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307e3444 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2594 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2597 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3074e9a0 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2599 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fad0d4 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2602 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2605 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f1c544 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2608 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30784cdc for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2611 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fe6008 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2613 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2617 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f5911c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2620 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307c18dc for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2624 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2627 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3073be2c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2630 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fab254 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2633 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2636 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f2b07c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2639 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3079daa0 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2642 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2645 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3071da68 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2648 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f903a4 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2651 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2654 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f10dc8 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2657 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307841c0 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2660 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30ffcc10 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2663 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2665 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f836e4 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2668 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307f1d9c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2671 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2674 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3076c528 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2677 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fd6e6c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2680 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2683 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f4d14c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2686 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307b5b34 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2689 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2692 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3072cd74 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2695 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f9a078 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2698 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2700 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f169cc for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2703 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30780a54 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2706 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fef65c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2709 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2712 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f5f3c4 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2716 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307cc6d0 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2719 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2722 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307415ec for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2725 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f9d92c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2728 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307fe710 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2731 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2734 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3076047c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2737 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fbe5ec for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2739 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2742 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f1df14 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2746 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3077cda4 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2751 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fd684c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2754 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2757 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f3c860 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2760 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30791e78 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2763 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fed720 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2766 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2768 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f4b97c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2771 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307a7dc0 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2774 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2777 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3070ed1c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2781 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f62074 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2784 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307bc2a0 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2788 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2791 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3071a254 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2794 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f7b8f8 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2796 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307d8c30 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2799 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2802 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30744b58 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2805 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fa4d00 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2807 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2810 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f0fc88 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2814 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3076e5cc for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2817 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fd314c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2821 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2824 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f35e54 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2826 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3079513c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2829 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30ffa9d4 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2832 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2835 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f5febc for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2838 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307c99d8 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2842 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2845 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3073c434 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2848 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fac324 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2851 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2855 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f1eb94 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2858 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30791ae0 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2862 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2865 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30708f08 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2868 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f7c878 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2872 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307e66cc for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2875 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2878 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3075b830 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2881 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fc4c6c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2884 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2888 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f38c70 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2891 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307a5470 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2894 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2896 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30708578 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2899 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f6aae4 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2902 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307c8cac for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2905 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2908 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30732c74 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2911 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f8cdb4 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2913 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307ece0c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2916 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2919 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3074f134 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2922 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fb2a84 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2926 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2929 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f195b4 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2931 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3077fd04 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2935 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fe2380 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2938 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2940 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f53a98 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2943 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307c26ac for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2946 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2948 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3072f50c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2951 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f97350 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2954 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307f883c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2958 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2961 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30768a8c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2964 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fce040 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2967 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2970 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f43b5c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2973 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307af40c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2976 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2979 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307297c4 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2982 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f92bac for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2984 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
2988 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f0a49c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2991 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30775154 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2994 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fe488c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
2997 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3000 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f5f8c4 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3003 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307c764c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3005 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3008 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3074053c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3012 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fabe9c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3015 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3019 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f21414 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3022 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3077f5dc for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3025 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fdd3e0 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3028 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3031 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f3bc80 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3034 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30798064 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3037 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fee9fc for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3040 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3043 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f540f8 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3045 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307abd88 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3048 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3051 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3070ec0c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3055 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f6ca7c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3058 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307c1970 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3061 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3064 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30725bdc for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3067 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f7cfbc for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3070 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307df408 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3073 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3076 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307440e0 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3078 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fa4fa8 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3081 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3084 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f0909c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3088 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30769fb0 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3091 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fc56fc for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3094 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3097 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f3452c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3100 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30795cec for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3102 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fffa74 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3105 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3108 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f767ac for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3111 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307dbf14 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3113 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3117 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3074f268 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3120 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30faeb90 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3124 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3126 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f1f248 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3129 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3077fc50 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3132 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fe8af4 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3135 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3138 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f53d74 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3141 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307bbe74 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3144 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3146 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30724d6c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3150 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f87b00 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3153 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307e3cac for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3157 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3160 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3074f4e0 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3162 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fb5294 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3165 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3168 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f1b29c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3171 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30781e24 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3174 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fdc9e4 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3177 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3181 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f3ee30 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3184 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307923bc for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3188 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30feb2a8 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3190 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3193 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f43d4c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3196 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30799864 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3199 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fea1b4 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3202 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3206 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f49384 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3208 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [allocation failure].
[marking exports.ratio.checkCompatibility 0x30798738 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3212 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fed1fc for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3215 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3218 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f4c9cc for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3222 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307986c0 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3225 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fec5d0 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3228 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3231 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f48cfc for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3233 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307a4d70 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3236 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30ffb974 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3239 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3242 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f61094 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3245 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307b9f6c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3248 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3252 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30721768 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3255 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f7b768 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3258 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307d7bfc for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3261 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3263 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30730484 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3266 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f81f04 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3270 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307d5358 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3273 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3276 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3072510c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3280 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f74f64 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3283 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307c08ac for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3287 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3289 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307197b8 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3292 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f6715c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3295 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307ba9e8 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3298 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3301 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30710ea4 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3304 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f674a8 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3309 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307b99c8 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3312 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3315 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3071be00 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3318 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f6ecd0 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3321 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307c83ac for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3324 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3326 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3072d6cc for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3329 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f82a0c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3332 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307dfa94 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3335 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3337 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3073ee0c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3340 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f9e080 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3344 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307f5f64 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3347 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3350 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30758e18 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3353 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30faa83c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3356 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3359 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f0a5cc for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3362 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3075de78 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3364 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fba65c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3367 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3371 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f192a8 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3374 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307760d4 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3377 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fd5418 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3380 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3382 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f348b8 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3385 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307968c0 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3389 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30ff5b94 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3393 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3395 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f67858 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3399 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307ca0c0 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3402 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3405 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3073a954 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3408 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f9c344 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3411 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307ff9d8 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3413 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3416 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307648fc for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3419 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fc6ee0 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3422 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3425 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f28b48 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3429 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30784a8c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3432 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fde194 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3435 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3438 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f34004 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3441 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307897e4 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3443 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fd8598 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3446 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3449 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f3739c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3453 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30787978 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3456 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fdd21c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3460 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3463 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f35da8 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3466 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3078e234 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3469 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fdf9e0 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3472 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3475 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f3c834 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3478 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30787a3c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3481 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fd8464 for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
3484 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3487 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f3315c for recompilation, reason: small function, ICs with typeinfo: 2/10 (20%)]
*** MD run 1: 1658
3490 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3494 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fd42bc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3497 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3500 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f29618 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3503 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3077d7a0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3506 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fcfee0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3509 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3511 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f34fc4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3514 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3078ef28 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3517 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fef4d4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3520 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3523 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f4f6e8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3526 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307a8d4c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3529 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30ff9fa0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3532 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3535 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f5882c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3539 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307b138c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3542 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3545 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307092bc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3548 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f6280c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3551 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307b24ec for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3556 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3560 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3070dc1c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3562 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f5a868 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3565 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307ad49c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3568 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30ffa0cc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3571 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3573 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f560e8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3576 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307a6cdc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3579 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3582 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307089e0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3587 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f5eab4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3591 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307bf388 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3595 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3597 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3072be60 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3600 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f8a1b8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3603 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307f42d0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3605 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3608 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3075eddc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3611 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fc6824 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3613 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3616 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f3013c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3619 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307950d0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3623 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30ff2e4c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3626 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3629 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f5c164 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3631 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307b6200 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3634 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3638 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3071da3c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3641 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f78540 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3643 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307d5d00 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3646 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3650 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3073aa34 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3653 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f8df38 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3656 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307ecb84 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3659 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3662 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30747584 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3665 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f9f520 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3668 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307f39c0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3671 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3674 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30756e08 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3677 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fa93ec for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3680 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307fe6ac for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3684 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3687 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30752acc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3690 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fa455c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3694 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307ed3d4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3697 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3700 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307464f0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3703 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f9c02c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3706 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307e8518 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3709 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3713 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307465e8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3716 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f98a94 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3720 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307ed1a4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3723 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3726 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307413c8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3728 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f916fc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3731 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307dcb3c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3734 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3737 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30736bc8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3739 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f8032c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3742 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307d2090 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3747 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3752 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30726a3c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3755 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f7a00c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3759 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307d225c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3763 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3766 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3072845c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3768 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f80894 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3771 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307cfb40 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3774 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3777 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3072d50c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3781 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f7d1bc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3784 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307d4b98 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3788 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3791 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30732ef4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3795 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f93328 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3798 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307f1894 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3801 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3805 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307607ec for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3808 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fc0ab0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3811 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3815 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f30604 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3818 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3079a2b0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3821 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30ff745c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3824 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3826 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f64954 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3829 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307c62b0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3832 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3835 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307359ac for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3837 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f9463c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3841 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307f8ec4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3843 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3846 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3075e720 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3851 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fc14fc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3854 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3858 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f23840 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3862 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30781844 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3866 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fd7b74 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3871 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3875 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f3b2fc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3879 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30799c34 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3882 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30feafa8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3885 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3889 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f4f7d8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3893 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307a8b68 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3896 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3899 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3071192c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3902 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f6d96c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3905 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307d1824 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3908 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3911 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3073925c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3914 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f9f294 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3917 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307fea4c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3920 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3923 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3076e500 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3927 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fd0018 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3930 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3933 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f3bf34 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3936 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307a0acc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3939 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30ffdee0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3942 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3944 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f6a5ec for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3947 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307c6834 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3950 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3953 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3072ce44 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3957 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f811b8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3960 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307dd220 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3964 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3968 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3073e658 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3971 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f9f25c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3974 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307f8344 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3977 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3981 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3075e65c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3984 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fb6e5c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3988 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
3991 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f1e04c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3994 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3077d94c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
3997 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fd1198 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4000 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4003 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f33de8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4006 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307849ac for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4009 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fd6804 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4012 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4015 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f25c84 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4019 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30771f00 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4022 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fb7338 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4026 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4029 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f09214 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4032 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3074d35c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4035 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f98ea4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4038 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [allocation failure].
[marking exports.ratio.checkCompatibility 0x307de288 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4042 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4045 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30736e8c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4047 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f900d4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4051 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307e0bcc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4055 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4060 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30743988 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4063 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f9a950 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4066 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307f40ec for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4070 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4073 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30750888 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4076 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fae1d4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4078 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4081 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f101e0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4084 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3076fb54 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4088 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fc6e04 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4092 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4094 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f2d028 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4098 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30786228 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4101 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fe1704 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4104 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4107 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f4795c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4110 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3079a86c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4113 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30ff4b2c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4116 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4120 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f519a0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4124 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307ad018 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4127 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4130 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3070eefc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4134 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f6f7d4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4138 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307caa18 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4141 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4145 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30735c20 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4148 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f95044 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4152 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307fdf5c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4155 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4158 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3076bd54 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4161 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fd7a3c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4164 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4166 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f4de10 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4170 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307b12f0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4173 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4176 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30722d80 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4180 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f854b0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4183 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307e9ee4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4187 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4189 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30750504 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4192 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fb5b48 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4195 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4198 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f17ef4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4201 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30779328 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4204 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fd31fc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4206 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4209 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f38b8c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4212 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3078b0ac for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4216 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fdf3ec for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4220 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4224 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f3fa6c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4227 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3078fea4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4230 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fe8180 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4233 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4236 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f46634 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4239 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307a49e0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4242 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30ffc00c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4245 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4249 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f61a3c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4253 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307b9ff0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4257 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4261 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3071d324 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4264 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f72954 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4267 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307ce54c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4269 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4272 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30728144 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4275 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f7ec10 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4278 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307d88b0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4281 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4285 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3072e524 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4287 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f84910 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4291 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307d501c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4294 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4296 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30735cbc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4300 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f8c160 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4304 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307eb6b8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4308 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4312 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3074db38 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4315 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30faf1d8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4318 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4322 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f14af8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4326 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30777adc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4329 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fd308c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4331 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4334 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f373ac for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4337 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307961d0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4342 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fecfec for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4345 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4348 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f53f2c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4350 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307a9b08 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4353 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4356 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30709944 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4359 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f58bfc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4363 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307ad508 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4366 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30ffa0b4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4369 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4373 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f58100 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4377 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307a724c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4379 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fffda4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4382 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4385 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f5d3b0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4389 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307b79d0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4393 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4396 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3071e09c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4399 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f70c4c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4402 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307cb890 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4405 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4408 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3072c964 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4411 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f8c118 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4414 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307e7078 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4418 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4421 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3074d404 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4425 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fa42bc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4429 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307fe86c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4432 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4435 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3075c0dc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4438 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fb66b0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4440 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4443 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f11e50 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4446 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [allocation failure].
[marking exports.ratio.checkCompatibility 0x30769c40 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4449 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fc276c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4452 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4456 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f19e7c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4459 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30776e1c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4463 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fcc9f4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4466 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4470 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f2fb8c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4474 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30782b18 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4477 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fde0ac for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4480 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4483 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f3d13c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4487 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30798c88 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4491 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fed994 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4494 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4497 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f526f4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4500 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307a45ec for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4503 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30ff992c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4506 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4509 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f589ec for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4511 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307a2740 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4514 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30ff5f7c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4517 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4521 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f4a940 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4524 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3079fe50 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4527 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30ff2b5c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4530 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4533 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f55030 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4536 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307a9694 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4539 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4542 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3070a6d4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4545 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f5db64 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4548 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307b993c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4551 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4555 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30717380 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4558 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f7303c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4562 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307d2d64 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4565 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4568 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3072e874 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4572 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f89b8c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4575 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307dfc54 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4578 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4581 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30742aec for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4584 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f90b6c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4588 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307e5740 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4591 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4594 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3073b5bc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4597 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f90014 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4600 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307e204c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4603 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4605 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30745ab4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4608 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f9f0b4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4611 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307fd62c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4614 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4617 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307625b4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4621 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fb48b4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4624 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4627 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f1390c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4630 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307612bc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4632 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fb22ac for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4635 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307fb42c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4638 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4641 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307555c0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4643 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fa2950 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4646 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307f7a40 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4650 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4653 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3074b86c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4656 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f9ab60 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4659 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307e3d8c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4662 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4665 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3073c828 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4668 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f91e5c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4672 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307da590 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4675 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [allocation failure].
4678 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30733408 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4682 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f7cf48 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4685 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307ccd08 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4688 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4691 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3071db00 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4694 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f6f3e8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4698 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307bac14 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4701 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4704 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30710a2c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4707 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f57ad4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4711 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307a5820 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4715 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fea09c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4718 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4722 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f3dbe0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4725 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3078c5f4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4728 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fd2fec for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4731 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4733 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f2b63c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4736 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30773d0c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4739 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fc0968 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4742 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4746 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f0f310 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4751 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3075b5cc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4754 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fa0878 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4758 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307ec69c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4761 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4765 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30736f38 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4768 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f7da3c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4771 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307bd65c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4774 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4777 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3070cec0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4780 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f59550 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4783 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30799548 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4786 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fe2560 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4790 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [allocation failure].
4794 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f2db74 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4797 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30776a58 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4801 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fbc064 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4804 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4807 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f12b74 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4810 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3075c7ec for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4813 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fb1950 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4816 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4819 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f0bc4c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4822 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307663dc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4825 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fb9ef0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4828 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4831 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f1b860 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4833 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30777bb8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4836 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fcc1b4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4840 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4843 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f3181c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4846 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30786a3c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4848 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fe09bc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4851 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4854 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f3e118 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4858 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30799ee8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4862 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30feec64 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4866 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4871 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f50804 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4875 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307a5e8c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4878 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fff230 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4881 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4884 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f58e54 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4888 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307aff6c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4891 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4894 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307129b8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4898 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f61ee8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4901 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307b5e78 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4904 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4907 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3070bcf4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4910 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f5fd3c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4913 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307adb40 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4916 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4919 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3070b57c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4922 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f5c798 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4926 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307b165c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4930 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30ffc8a8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4933 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4937 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f54b28 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4940 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3079c71c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4943 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fec538 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4946 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4949 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f47ec4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4952 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307924c4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4955 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fe3d7c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4958 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4962 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f38a6c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4965 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3078d518 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4968 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fdb3b0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4972 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4975 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f35d34 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4978 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307812b0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4981 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fd58e4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4984 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
4987 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f2f55c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4990 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3078a308 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4993 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fe0068 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
4997 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5000 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f45554 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5004 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307a5a8c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5006 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30ff94cc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5009 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5012 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f5c4d0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5015 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307afab4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5018 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5022 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3071347c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5026 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f6dfbc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5029 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307d3120 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5032 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5035 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3073a028 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5038 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f9c1d4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5041 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307f75d4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5044 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5046 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30762e10 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5049 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fc23a8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5052 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5056 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f2eff4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5059 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3079200c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5063 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30feb89c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5066 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5068 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f53e58 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5071 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307aefb8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5074 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5077 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30715b5c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5080 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f6d438 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5083 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307c9868 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5086 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5090 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30726334 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5093 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f7e83c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5096 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307d1a98 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5098 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5101 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30736e94 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5104 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f92c80 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5107 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307f8324 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5109 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5112 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3076a86c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5115 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fcb98c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5118 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5122 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f3aacc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5125 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307981e4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5128 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30ffa984 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5131 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5133 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f64c58 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5136 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307ca1fc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5139 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5141 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30731c6c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5144 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f95374 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5147 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307ee514 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5150 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5154 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307530ec for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5156 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fa7ac0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5159 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5162 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f0c274 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5165 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30768ba4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5168 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fba438 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5170 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5174 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f1f868 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5177 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307782c0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5181 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fd870c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5184 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
*** MD run 2: 1696
5188 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f3c6d0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5191 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3079ea38 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5194 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30ffd574 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5197 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5199 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f6aa24 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5202 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307cc58c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5205 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5208 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3073bc7c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5211 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f9da9c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5214 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5217 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f0f970 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5220 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30780adc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5223 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fea730 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5226 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5229 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f63960 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5231 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307ce020 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5234 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5237 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30745dc4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5239 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fb2cc8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5242 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5246 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f2be38 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5249 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30798b04 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5252 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5255 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30714c1c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5258 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f80e20 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5261 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307f1864 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5264 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5266 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30763ed4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5269 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fd23c0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5272 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5275 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f4b7e0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5278 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307b0730 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5282 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5285 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30725230 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5288 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f8ba30 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5291 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307f770c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5293 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5296 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30766c44 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5299 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fd43fc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5302 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5305 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f446ec for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5308 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307b2f00 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5311 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5313 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30727e80 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5316 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f99bb8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5319 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5321 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f08d28 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5325 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307730b0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5328 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fdf1ac for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5331 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5334 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f46dd0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5337 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307aefb8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5340 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5342 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3071aa60 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5345 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f836e4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5348 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307e3624 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5351 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5354 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3074c3f4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5357 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fa3430 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5361 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307fd634 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5364 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5367 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30756384 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5370 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30faa934 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5374 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307fa8a0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5377 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5379 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3075b4d4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5382 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fb7abc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5385 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5389 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f1053c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5392 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3076c22c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5395 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fc0f84 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5399 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5402 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f20dfc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5406 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30773368 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5408 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fcd9ec for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5411 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5414 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f2acc8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5417 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30787d6c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5420 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fdf564 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5423 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5426 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f419a0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5429 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30795824 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5432 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fef7a4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5435 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5438 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f537d4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5440 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307a5484 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5443 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30ffc874 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5446 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5448 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f586bc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5451 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307b310c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5455 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5458 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3071130c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5461 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f6d920 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5464 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307c6960 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5467 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5470 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30732ab8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5472 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f96cbc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5476 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307fed14 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5479 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5482 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3076bcf4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5486 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fd8d20 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5489 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5492 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f50f9c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5495 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307ba4e4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5498 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5500 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30733340 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5503 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f9db64 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5506 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5509 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f12f00 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5511 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3077b0a8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5514 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30feb4d0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5517 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5520 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f5ddb4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5523 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307cf128 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5526 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5529 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3073fef0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5532 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30facbb8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5535 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5538 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f17f50 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5541 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3077c534 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5543 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fe2dd8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5546 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5549 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f48b04 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5552 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307b019c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5555 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5559 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3071962c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5562 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f7cb5c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5565 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307db434 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5568 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5570 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3074b810 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5573 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fadf28 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5576 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5579 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f20d3c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5583 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307837c8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5586 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fee3f0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5590 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5593 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f5673c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5596 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307b91e8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5598 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5601 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3072315c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5604 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f79df0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5607 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307db92c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5610 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5613 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3073d4fc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5617 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f9d8c8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5620 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307f61a4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5623 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5626 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3075c7f4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5629 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fb87f8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5632 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5634 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f2256c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5637 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30781ec0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5640 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fe5e08 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5643 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5646 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f4d180 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5649 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307b2774 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5653 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5656 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30722150 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5659 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f7d61c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5662 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307e0de8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5664 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5667 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3074a078 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5670 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fb4db8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5674 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5677 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f239d4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5680 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3078deb0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5683 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30ff019c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5687 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5690 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f5f8f0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5693 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307c2200 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5696 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5699 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307337d0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5702 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f978ac for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5705 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5707 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f0ba84 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5710 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3077ede8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5714 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fe7e7c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5717 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5720 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f5ebdc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5723 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307c52f4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5726 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5729 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3073695c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5731 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f9c400 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5734 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5737 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f0c98c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5740 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3076cdf0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5743 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fcf0b8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5748 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5752 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f316ac for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5755 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30794374 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5758 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30ff3584 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5761 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5764 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f617e8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5766 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307c9b84 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5770 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5774 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3072f98c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5777 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f97c08 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5780 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307f9e74 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5783 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5786 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30765fac for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5789 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fc2bcc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5791 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5794 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f307cc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5797 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3078eafc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5800 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30ff411c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5802 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5805 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f5d19c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5808 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307be06c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5811 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5813 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307212e8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5816 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f84658 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5819 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307ed564 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5822 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5825 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30757460 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5828 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fc2100 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5831 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5834 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f2ff30 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5837 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3079d9fc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5840 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5843 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3070c61c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5845 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f77ae8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5848 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307de480 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5851 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5854 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30754544 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5857 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fb49ac for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5861 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5865 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f2324c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5870 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30784608 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5873 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fea124 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5876 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5879 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f5a544 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5882 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307b6e84 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5884 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5888 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30720e34 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5891 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f7b1f0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5894 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307d6d58 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5898 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5901 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307329ec for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5903 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f8be08 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5906 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307de854 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5909 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5912 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3073ebf4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5915 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f8cd7c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5918 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307dc8bc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5921 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
5925 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3072e580 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5929 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f7dfa4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5932 ms: Scavenge 2.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307cf99c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5938 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f22f70 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30e78da4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5945 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307c6260 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5952 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f21918 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30e6df8c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5958 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307c2830 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5965 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f1a3a4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30e71c5c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5971 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307c5da8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5976 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f26c5c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30e7ac78 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5983 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307d8aac for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5991 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f44474 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30e9d870 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
5997 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307ffdcc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6004 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f65044 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30eca2e4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6009 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30630450 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6015 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f9139c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30eece50 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6021 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30659940 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6028 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fb8f90 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6034 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30723bb8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x3067fb98 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6039 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fe2164 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6045 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3074dd6c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306a5f0c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6051 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e0f17c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6057 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3076b6e4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306d016c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6063 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e37a7c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6069 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307a0754 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6074 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f0986c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30e6c7f0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6080 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307ca728 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6087 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f3924c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30e9f9dc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6093 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30613a34 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6099 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f81840 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30ee2fe0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6104 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3065253c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6111 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30faf7a4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6117 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3071b5b8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30679088 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6125 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fde524 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6131 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307471a8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306ad2c0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6137 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [allocation failure].
[marking exports.ratio.checkCompatibility 0x30e14b94 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6143 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30778a74 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306d2a14 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6149 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e37ea8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6156 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3079a2bc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306f0af8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6161 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e58f14 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6167 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307b4934 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6173 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f1f794 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30e7aecc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6180 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307da66c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6187 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f3c250 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30e991f0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6192 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307f0924 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6198 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f57794 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30eb481c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6205 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30622d48 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6212 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f87710 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30ede538 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6219 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30645e10 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6225 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fa0618 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30efe0d0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6230 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3065c7a4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6236 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fbaecc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6242 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3071b47c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30678700 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6249 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fcd7c0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6255 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3072ddb4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306800a8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6262 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fd74a8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6267 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30734748 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x3067ea28 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6273 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fd1b88 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6279 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30727588 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x3067e7a8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6284 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fd2654 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6291 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307365cc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x3068988c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6298 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fe40a8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6305 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3073ff38 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306989d8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6310 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30feb650 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6316 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3074fa9c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306af850 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6322 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e0b2e0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6328 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30765044 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306ba25c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6335 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e1840c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6341 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30766dd0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306bc044 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6347 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e13b14 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6353 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3076bc38 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306c0a20 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6359 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e22de4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6366 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30779c80 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306da568 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6372 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e471dc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6379 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307a2e94 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6385 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f0f820 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30e6f330 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6391 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307d68b4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6397 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f416b4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30ea9478 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6403 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30617aa0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6409 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f84458 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30ee8d14 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6414 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30656f14 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6420 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fb870c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6427 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30725ffc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x3068c074 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6434 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fe51a0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6439 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3074d12c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306a879c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6444 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e11848 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6450 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3076d120 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306ccd7c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6457 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e2dc74 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6464 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30789ae4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306da5b4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6470 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e37ce0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6475 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30787d84 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306de580 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6481 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e3cadc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6487 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3078af60 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306e3e38 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6495 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e3c40c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6500 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307938dc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306e4b58 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6507 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e42ec0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6513 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30794234 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306eba74 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6519 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e483b0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6526 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307a8134 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6531 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f099f4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30e690b0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6537 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307cdac4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6543 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f2fee0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30e91ab4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6550 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307ee31c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6558 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f569ac for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30eaf8ac for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6563 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30617cbc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6569 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f751b4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30ed3ee0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6575 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3063212c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6582 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f8da10 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30ee3f1c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6589 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3064c6ac for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6595 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fafa44 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6600 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30714fd8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30680a74 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6606 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fe60c8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6612 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30759a74 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306bc2e4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6618 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e2ab3c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6625 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30789bb4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306ec8d0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6631 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e5230c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6636 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307b8840 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6642 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f263dc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30e92ed0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6648 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3060ece0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6655 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f78e20 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30eeaa94 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6662 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3065f034 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6667 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fcebac for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6673 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3073f45c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306ac6d0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6680 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e17c80 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6686 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3077c51c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306d9a88 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6692 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e45efc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6697 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307a7204 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6703 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f1366c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30e77100 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6711 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307cf450 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6717 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f3b358 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30e9bac4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6723 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3060ba90 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6728 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f6b858 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30ed54e4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6734 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30644a3c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6740 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fae24c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6745 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3071e13c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x3068b0f0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6751 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fef4e4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6756 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307600fc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306cb768 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6762 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e320d4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6769 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30798eb8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306f964c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6774 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e67b44 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6780 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307c73a4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6787 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f340b0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30e9054c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6794 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307f0d0c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6801 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f51688 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30eabf70 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6808 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307fee98 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6813 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f5da94 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30eb5cb0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6819 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3060bbc4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6825 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f5d734 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30ea7a24 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6832 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307f80b0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6838 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f4bcac for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30ea0340 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6844 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307f3cec for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6849 ms: Scavenge 3.6 (20.4) -> 1.6 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f56d30 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
*** MD run 3: 1666
[marking exports.ratio.checkCompatibility 0x30ea8374 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6857 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3060a884 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6864 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f622cc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30ebfa18 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6873 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3062abb4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6881 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f844f8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30ee6b84 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6888 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30648074 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6894 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30faa278 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6901 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3070d094 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x3066d3ac for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6907 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fc991c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6912 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30737264 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30696a7c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6918 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30ffa680 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6924 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30760e70 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306c5dc8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6931 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e38a44 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6937 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30798244 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306fa304 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6943 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e5fd00 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6949 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307c1b94 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6955 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [allocation failure].
[marking exports.ratio.checkCompatibility 0x30f23468 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30e84390 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6961 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307dfaa4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6969 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f49698 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30ea52bc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6976 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3060d778 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6983 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f65474 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30ebeba4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6990 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30620868 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
6997 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f73da8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30ecbe84 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7003 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30625aa4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7010 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f80170 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30ed5a54 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7016 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x306397a4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7022 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f8e8a4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30eed3a0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7028 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3064ed48 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7034 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30faf06c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7040 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30715d6c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x3067f33c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7045 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30feaa9c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7052 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30754c94 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306bdb50 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7059 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e27754 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7065 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3079238c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306f7e48 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7071 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e6dee0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7077 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307d75b0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7084 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f540fc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30ec272c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7090 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30640d28 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7097 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fb3200 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7103 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30735c48 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306b4bb4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7109 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e32ad4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7115 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307ad138 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7123 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f26ee4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30e9a6f8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7129 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3060cddc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7135 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f7af1c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30edcbb0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7142 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3064943c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7148 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fa34cc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7156 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3070aaa0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x3066593c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7162 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fc6c58 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7167 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307311e0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30686a20 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7174 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fe36c4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7181 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3073ce70 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30694908 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7187 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fe1dbc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7193 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30737cb0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x3067c884 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7200 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fc5660 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7206 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3070ef80 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306575ec for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7214 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f990ec for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30ee06c4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7220 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30633cb4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7228 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f73798 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30ebed18 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7234 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3060ed64 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7239 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f5eba8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30ea9a28 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7245 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307fc4a4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7250 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f521a0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30ea7264 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7258 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307f92f8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7265 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f5ca40 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30eb56c0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7272 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3061f704 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7278 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f862f8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30ee3904 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7283 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3064be24 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7290 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fa5f94 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7297 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3070f5a4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x3066bbc4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7303 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fce168 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7310 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307352cc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x3069862c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7316 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30ff4f14 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7322 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3075d238 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306b5b40 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7328 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e19e7c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7334 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30775380 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306c2d90 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7342 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e1e56c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7348 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307688fc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306b4da8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7355 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30ffba3c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7363 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30754ffc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306a5480 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7368 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30ffcd28 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7375 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307567ac for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306acb54 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7382 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e09844 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7389 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30765ab4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306bf67c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7396 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e12b8c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7402 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30761ddc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306a6038 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7407 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30ff163c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7413 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3073ed44 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x3068d9a8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7419 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fd3f94 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7426 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30726ebc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x3066cdec for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7433 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fbaeb0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7439 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3070e72c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306631a4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7445 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fc0f04 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7452 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3071b31c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x3067be8c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7459 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fd9924 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7465 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30745080 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306a09c0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7471 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e0c22c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7477 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30768cbc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306cc324 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7484 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e30cc4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7491 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30791904 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306e8708 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7496 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e4a3b4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7502 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307a3e44 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306f2d00 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7509 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e564ec for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7516 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307b036c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7523 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f18380 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30e71710 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7529 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307cf658 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7535 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f30a4c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30e92824 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7542 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307f01c0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7547 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f59e44 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30eb3e28 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7554 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3061b318 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7561 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f7b49c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30eced20 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7567 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3063203c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7573 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f856fc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30edec5c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7579 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3063b164 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7586 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f92768 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30ee3864 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7593 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30644e48 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7599 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f99444 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30ef5c3c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7604 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x306526dc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7610 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fabd90 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7617 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3070d6c0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306599e8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7623 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30faddf4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30efc4fc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7630 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30659d80 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7635 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fad20c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7641 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30710644 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306644fc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7647 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fbc3bc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7655 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30715054 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306668ac for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7662 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30faeaec for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30efc3c0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7668 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x306545d0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7675 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f9bc9c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30eec190 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7681 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x306433f8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7688 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f9a3e0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30eea414 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7694 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30648330 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7699 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f9a814 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30ef3f7c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7705 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3064e3c8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7712 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fa7950 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30ef6688 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7718 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30651bd8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7725 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fa597c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30eef614 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7730 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3064b2d4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7736 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f9ae78 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30ef0f40 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7741 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30647d50 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7747 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f9e388 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30ef2024 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7753 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30655120 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7760 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fa9c40 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7766 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3070b85c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30661b94 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7772 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fbede8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7778 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30727cc4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x3067c074 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7783 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fd575c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7790 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307303b4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30688110 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7797 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fdc544 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7803 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30740414 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30698710 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7810 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30ff7acc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7816 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307578b4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306b525c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7823 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e12558 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7829 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3076be58 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306c7aac for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7835 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e232e8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7841 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3078389c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306de784 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7847 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e45e24 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7852 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3079a6a0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306f1d8c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7861 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e493a8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7869 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3079de38 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306ed28c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7877 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e4bf18 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7883 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3079f528 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306fb76c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7890 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e636f8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7897 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307bb928 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7904 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f23e3c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30e7f2c0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7909 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307e0410 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7916 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f47af0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30eaf80c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7923 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3061d3b4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7929 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f8d1a0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30ef8e38 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7935 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30674d00 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7940 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fe8c14 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7946 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3076a3f4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306e557c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7953 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e5bba4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7960 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307d33b8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7967 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f4a368 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30eb9920 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7973 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3062949c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7978 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f965ec for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30efe540 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7985 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30672864 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7991 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fd8c50 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
7998 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307494cc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306ab778 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8003 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e1b2a4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8010 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30783254 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306dbbcc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8017 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e462fc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8023 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307a6614 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8029 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f139f4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30e7020c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8034 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307d38e4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8040 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f39d68 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30e9f558 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8046 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307fcde4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8055 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f6a43c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30eca938 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8062 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30638508 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8067 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fa3240 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8073 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3070bff4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30675b2c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8079 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fdb7c0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8086 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3074ef94 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306b1e6c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8092 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e20e80 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8098 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30780240 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306e1210 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8104 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e431bc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8109 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3079f998 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306f4bc4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8116 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e534e4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8122 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307aeac0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306fdf54 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8128 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e5bd6c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8133 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307aa714 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306fe208 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8140 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e53694 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8146 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307a7010 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306f3120 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8153 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e4d30c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8159 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30796758 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306e69e8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8165 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e3a85c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8171 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3078da58 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306e40c0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8178 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e374fc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8184 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3078ca04 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306dd6d4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8190 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e4026c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8195 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30795c64 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306f2320 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8201 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e53e7c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8207 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307b6f78 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8214 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f1e41c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30e89004 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8220 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307ef45c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8226 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f6419c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30ed4dc8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8231 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30646384 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8237 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fbb0e0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8242 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30732418 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306a3be4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8248 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e18058 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8253 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307874b4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306f2ddc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8260 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e6a968 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8266 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307d4054 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8271 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f4b870 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30ead9ec for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8277 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30619f5c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8282 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f829fc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30edf2a4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8288 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x306485ac for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8295 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fa2924 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8300 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30709cd4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x3065dfec for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8306 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fb6c74 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8312 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30710f8c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30667924 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8317 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fb9080 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8324 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30713ce8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x3065cf8c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8330 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30faea00 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8336 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3070a8a0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x3065365c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8342 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fa3264 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30eebec0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8347 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x306430a4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8353 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f8b9a8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30ed9fac for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8360 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3062996c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8366 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f76f08 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30ebcccc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8372 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30613548 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8378 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f5ae84 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30eaa19c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8384 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307ff854 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8390 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f51d60 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30ea4c98 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8396 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307f2974 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8402 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f4f7d0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30ea0aa8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8407 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307fbc88 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8413 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f5ac2c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30eb7c50 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8419 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30616870 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8426 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f72fe0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30ec891c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8432 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3062cec0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8437 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f882bc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30ed5fec for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8443 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x306352c4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8449 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f84d2c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30ed8a20 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8456 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3062f348 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8462 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f7fe80 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30ec8d4c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8468 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3061ce34 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8473 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f60fac for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30eaa134 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8479 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307ed920 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8486 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f413f0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30e9161c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8492 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307d8130 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8498 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f30b3c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30e7e670 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8503 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307d4874 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8509 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f2e9bc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30e89a24 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8515 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307dc4d0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8522 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f3be7c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30e91e00 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8528 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307ed1d4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8534 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f491f8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30ea3694 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
*** MD run 4: 1688
8540 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3060a6cc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8546 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f58fe0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30ead3c8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8553 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307fc448 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8559 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f58328 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30ea5e30 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8565 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307fa590 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8571 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f523bc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30ea8394 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8576 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307f69f4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8582 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f4fbc8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30e982fc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8589 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307e87ac for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8595 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f415e8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30e89fb4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8600 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307ddd48 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8606 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f34540 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30e8bd48 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8612 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307de2e0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8618 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f42750 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30e999b4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8625 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307f5fb4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8631 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f542a0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30ead3e8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8636 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30608398 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8642 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f5ee64 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30eb5c20 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8648 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30609ce8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8654 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f6189c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30eb4960 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8660 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30616774 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8666 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f6a39c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30ec655c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8671 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30627324 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8677 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f87560 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30edf574 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8683 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x306450c0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8689 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f9cfb0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30ef9d6c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8695 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30660bcc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8700 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fb882c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8705 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30725140 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x3068758c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8711 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fee414 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8716 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30756868 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306bb188 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8722 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e27424 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8729 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30791b24 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306f51c8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8735 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e62424 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8740 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307c197c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8747 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f2fa24 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30e9b2f4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8755 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307fc310 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8762 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f6db04 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30ecfc94 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8767 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3063e45c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8773 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f9e564 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8778 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3070caec for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x3066b464 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8784 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fcd4d8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8791 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30732300 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306945fc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8797 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30ff14b4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8804 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3075faa0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306cb1c8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8810 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e37210 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8815 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307a2ca4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8822 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f10930 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30e771bc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8828 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307d2db0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8836 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f3a68c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30e9615c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8842 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307f9d5c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8847 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f61024 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30ec50ec for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8854 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3062c09c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8862 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f90d64 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30ef8d4c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8870 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3065bec8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8876 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fbf4a0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8881 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30721e2c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30680b3c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8888 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fda6cc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8895 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3073d88c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30690254 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8901 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fe7f94 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8906 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307454e0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x3069ec70 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8911 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fefaf8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8917 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3074bdf0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306a3928 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8925 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30ff0f68 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8932 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3074e5b4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306a0040 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8937 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30ff7354 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8943 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3074ee74 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306a5798 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8948 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30ff44b0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8955 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307508f4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x3069f130 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8961 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30ff9364 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8967 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307581a4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306b4280 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8973 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e1c7f4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8978 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30770a9c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306cf9a0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8985 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e2e954 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8991 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3078a7d4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306de2a4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
8997 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e428bc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9002 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3079d730 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306feed0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9007 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e654d8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9014 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307c94c0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9021 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f30ab0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30e942c4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9027 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307f76d4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9033 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f57c0c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30eb6de0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9039 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30616b28 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9045 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f74694 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30ecbfe4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9051 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30634a08 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9058 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f8dfa4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30eeb348 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9063 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3064c104 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9069 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fad468 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9074 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307140a4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306793dc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9081 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fdf28c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9087 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307472d4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306aff60 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9093 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e19fc8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9098 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30780c28 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306dfeb8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9104 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e4e87c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9110 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307adf2c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9117 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f1b09c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30e79ea8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9123 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307dde7c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9128 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f43764 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30ea4a84 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9134 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30612f10 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9140 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f6f054 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30ed204c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9147 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30635c3c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9153 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f970ac for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30ef0fdc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9159 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30655390 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9164 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fac374 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9170 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30710f1c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30668404 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9175 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fc4018 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9181 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3071b998 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30671ec4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9186 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fcb1e8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9192 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30725888 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x3067ed74 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9198 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fd2bac for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9205 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30732a48 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30683d2c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9210 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fdcf78 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9215 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3073b7a0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30697ae4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9221 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30feaf80 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9228 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3074d488 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306a2b84 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9234 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30ffe3e4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9240 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30762f98 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306b505c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9246 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e1807c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9251 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3076e074 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306c9d10 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9258 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e25660 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9264 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3077ca6c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306cea6c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9270 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e31ae0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9276 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3078762c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306e2990 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9281 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e4268c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9287 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307a24f8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9295 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f0e8c0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30e6b678 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9301 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307d25dc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9307 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f3ac40 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30ea36c4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9312 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3060f41c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9318 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f777b4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30ed91b0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9324 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30649494 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9331 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fac844 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9337 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3071e42c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x3068279c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9342 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30feba20 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9348 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3075a4e4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306b4938 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9353 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e1d40c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9360 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30775e40 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306d4a20 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9366 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e349fc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9371 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307930fc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306ed0ec for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9377 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e522ec for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9383 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307a8c54 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9390 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f0f6a0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30e69f08 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9397 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307c8e80 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9402 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f35454 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30e904f4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9408 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307f57e0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9414 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f5bfec for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30ec12e0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9420 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3062e188 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9427 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f99d04 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30efe3cc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9433 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30673ffc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9439 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fdff00 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9444 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [allocation failure].
[marking exports.ratio.checkCompatibility 0x3075cd00 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306cb370 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9450 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e4598c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9456 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307bb1c8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9462 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f2d740 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30ea1468 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9468 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30619604 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9474 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f89e80 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30eeea40 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9480 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3065d934 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9487 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fbbc7c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9493 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30729c6c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x3068b44c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9499 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30ff3220 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9504 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3075689c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306b51e0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9510 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e1ef2c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9516 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30775090 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306cf858 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9523 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e2be64 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9528 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30785e40 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306d84ec for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9533 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e3529c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9540 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307826d0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306d2d14 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9546 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e25918 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9552 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30778064 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306c2d1c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9559 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e1bca4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9565 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307703b4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306bc810 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9571 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e1d22c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9576 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30772d1c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306cfd24 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9583 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e3245c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9589 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30795460 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306f6a64 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9595 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e63380 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9601 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307c2da8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9606 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f310c8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30e93374 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9613 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307fbd5c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9620 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f70870 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30ed54e8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9626 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3064924c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9632 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fad10c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9638 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3071e8a0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x3068393c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9644 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30feb1e0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9649 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3075535c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306b9e7c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9655 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e217e0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9661 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30787900 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306e33f0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9667 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e4a168 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9675 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307add00 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9681 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f0d6a0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30e6e2b8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9687 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307cab88 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9693 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f35e4c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30e96e30 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9698 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307ff2c8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9704 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f658d4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30ec8924 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9710 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3062ef78 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9716 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f92374 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30ef0bec for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9722 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3065ca68 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9728 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fc0264 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9734 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307212b8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x3068085c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9740 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fdbfb8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9746 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30745f74 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306a0d08 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9752 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [allocation failure].
[marking exports.ratio.checkCompatibility 0x30fff5c0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9758 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3075f8fc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306be8d4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9765 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e22a24 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9772 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30785e1c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306e4254 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9778 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e4e4b8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9784 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307b5bd4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9791 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f18a74 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30e7c1ec for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9798 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307d7e74 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9805 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f40570 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30e9f1c0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9811 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3060c32c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9816 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f67f78 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30ec8688 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9823 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3062c1ec for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9829 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f89fdc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30ee4170 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9835 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3064b5f0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9841 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fad538 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9847 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3070c0d4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x3066aaac for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9853 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fc0dac for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9862 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30723a18 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x3067b810 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9870 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fdb25c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9876 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3073e130 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x3069d5b0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9883 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30ff80f0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9891 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3075ff28 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306bb1c4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9898 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e22ebc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9904 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3078247c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306d4b70 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9909 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e38c38 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9915 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3078f950 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306e550c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9922 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e3db24 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9928 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30795df4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306ea070 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9934 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e49250 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9939 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30796a4c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306eab30 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9945 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e42ddc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9950 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3079a63c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306f7c0c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9957 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e579dc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9963 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307bf04c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9968 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f2a5f4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30e9418c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9975 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307fcba8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9982 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f7622c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30ee2fa8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9989 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3065b818 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
9995 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fc2cd4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
10001 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30736fdc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x3069e59c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
10008 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e10ddc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
10015 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3077a03c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306d4180 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
10022 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e405a0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
10027 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3079ca64 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306ff43c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
10033 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e626e4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
10038 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307c17bc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
10044 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f21ea4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30e82054 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
10051 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307db370 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
10059 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f43f54 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30e9c188 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
10066 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307f8360 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
10072 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f61504 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30eba00c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
10078 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3062626c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
10085 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f82fc0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30ee8460 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
10093 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30651db8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
10100 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fb95ac for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
10106 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30724b24 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x3068925c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
10112 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fe6ad4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
10118 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x3074f048 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306ab2d0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
10125 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e1899c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
10131 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30784534 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306e5d8c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
10137 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e59ae4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
10143 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307c116c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
10150 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [allocation failure].
[marking exports.ratio.checkCompatibility 0x30f344e8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30e9f290 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
10156 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30618358 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
10162 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f850e8 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30ef9fcc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
10167 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30671534 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
10174 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30fe79f0 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
10181 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307617cc for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x306d9734 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
10186 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30e5de70 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
10193 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x307ccbc4 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
10199 ms: Scavenge 3.7 (20.4) -> 1.7 (20.4) MB, 0 ms [Runtime::PerformGC].
[marking exports.ratio.checkCompatibility 0x30f4d02c for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
[marking exports.ratio.checkCompatibility 0x30ebf168 for recompilation, reason: hot and stable, ICs with typeinfo: 2/10 (20%)]
*** MD run 5: 1666
*** MD ave: 1674.8
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment